@shortfuse/materialdesignweb 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +136 -30
- package/.stylelintrc.json +6 -40
- package/.vscode/launch.json +20 -5
- package/CHANGELOG.md +24 -0
- package/README.md +12 -9
- package/adapters/datatable/column.js +82 -74
- package/adapters/datatable/index.js +173 -131
- package/adapters/dom/index.js +529 -75
- package/adapters/list/index.js +25 -12
- package/adapters/search/index.js +13 -13
- package/components/appbar/_spec.scss +87 -64
- package/components/appbar/index.scss +2 -2
- package/components/banner/_spec.scss +8 -8
- package/components/banner/index.scss +2 -2
- package/components/bottomnav/_spec.scss +22 -17
- package/components/bottomnav/index.js +61 -52
- package/components/bottomnav/index.scss +2 -2
- package/components/bottomnav/item.js +44 -25
- package/components/button/README.md +14 -14
- package/components/button/_spec.scss +23 -22
- package/components/button/_theme.scss +37 -21
- package/components/button/index.eta +32 -0
- package/components/button/index.js +12 -12
- package/components/button/index.scss +2 -2
- package/components/card/_spec.scss +40 -36
- package/components/card/index.scss +2 -2
- package/components/chip/_spec.scss +7 -8
- package/components/chip/_theme.scss +31 -31
- package/components/chip/index.js +3 -2
- package/components/chip/index.scss +2 -2
- package/components/chip/item.js +1 -16
- package/components/datatable/_spec.scss +71 -85
- package/components/datatable/_theme.scss +61 -156
- package/components/datatable/cell.js +45 -0
- package/components/datatable/columnheader.js +47 -0
- package/components/datatable/index.js +279 -366
- package/components/datatable/index.scss +2 -2
- package/components/datatable/row.js +49 -0
- package/components/datatable/rowheader.js +18 -0
- package/components/dialog/_spec.scss +61 -41
- package/components/dialog/index.js +325 -297
- package/components/dialog/index.scss +2 -2
- package/components/divider/_spec.scss +8 -6
- package/components/divider/index.scss +2 -2
- package/components/elevation/_spec.scss +2 -2
- package/components/elevation/index.scss +2 -2
- package/components/fab/_spec.scss +23 -24
- package/components/fab/index.js +50 -50
- package/components/fab/index.scss +2 -2
- package/components/grid/_spec.scss +33 -31
- package/components/grid/index.scss +2 -2
- package/components/layout/_mixins.scss +5 -5
- package/components/layout/_spec.scss +206 -176
- package/components/layout/_theme.scss +14 -16
- package/components/layout/index.js +181 -153
- package/components/layout/index.scss +2 -2
- package/components/list/_spec.scss +117 -104
- package/components/list/_theme.scss +31 -34
- package/components/list/content.js +68 -52
- package/components/list/index.js +194 -61
- package/components/list/index.scss +2 -2
- package/components/list/item.js +136 -12
- package/components/list/secondary.js +46 -0
- package/components/menu/_spec.scss +32 -19
- package/components/menu/index.js +242 -229
- package/components/menu/index.scss +2 -2
- package/components/menu/item.js +95 -110
- package/components/progress/_spec.scss +35 -27
- package/components/progress/index.js +21 -0
- package/components/progress/index.scss +2 -1
- package/components/selection/_spec.scss +242 -224
- package/components/selection/_theme.scss +100 -95
- package/components/selection/index.eta +60 -0
- package/components/selection/index.js +76 -0
- package/components/selection/index.pug +15 -8
- package/components/selection/index.scss +2 -2
- package/components/selection/input.js +56 -0
- package/components/selection/radiogroup.js +47 -0
- package/components/slider/_spec.scss +10 -8
- package/components/slider/index.scss +2 -2
- package/components/snackbar/_spec.scss +22 -21
- package/components/snackbar/index.js +102 -111
- package/components/snackbar/index.scss +2 -2
- package/components/tab/_spec.scss +20 -19
- package/components/tab/content.js +41 -40
- package/components/tab/index.js +192 -99
- package/components/tab/index.scss +2 -2
- package/components/tab/item.js +38 -55
- package/components/tab/list.js +96 -72
- package/components/tab/panel.js +12 -13
- package/components/template/_theme.scss +11 -11
- package/components/textfield/_mixins.scss +52 -0
- package/components/textfield/_spec.scss +215 -266
- package/components/textfield/_theme.scss +95 -72
- package/components/textfield/index.eta +74 -0
- package/components/textfield/index.js +63 -57
- package/components/textfield/index.scss +2 -2
- package/components/tooltip/_spec.scss +27 -25
- package/components/tooltip/index.scss +2 -2
- package/components/type/_spec.scss +51 -38
- package/components/type/index.scss +2 -2
- package/core/_breakpoint.scss +75 -91
- package/core/_elevation.scss +10 -10
- package/core/_length.scss +9 -0
- package/core/_motion.scss +14 -14
- package/core/_platform.scss +9 -15
- package/core/_type.scss +33 -32
- package/core/aria/attributes.js +125 -25
- package/core/aria/button.js +23 -23
- package/core/aria/keyboard.js +93 -0
- package/core/aria/rovingtabindex.js +69 -154
- package/core/aria/tab.js +31 -28
- package/core/color/_theme.scss +240 -280
- package/core/color/index.scss +2 -2
- package/core/document/index.js +39 -0
- package/core/dom.js +12 -12
- package/core/overlay/_spec.scss +0 -3
- package/core/overlay/_theme.scss +56 -74
- package/core/overlay/index.js +49 -18
- package/core/overlay/index.scss +2 -2
- package/core/ripple/_spec.scss +22 -39
- package/core/ripple/_theme.scss +13 -13
- package/core/ripple/index.js +137 -134
- package/core/ripple/index.scss +2 -2
- package/core/theme/_config.scss +2 -0
- package/core/theme/_mixins.scss +172 -0
- package/core/theme/_palettes.scss +155 -135
- package/core/theme/_variables.scss +24 -15
- package/core/theme/index.js +50 -0
- package/core/throttler.js +1 -1
- package/core/transition/index.js +36 -20
- package/{docs-src → docs}/_flex.scss +0 -0
- package/{docs-src → docs}/_menuoptions.js +21 -34
- package/{docs-src → docs}/_mixins.pug +39 -26
- package/docs/_partials/_androidnavbar.eta +5 -0
- package/docs/_partials/_androidstatusbar.eta +13 -0
- package/docs/_partials/_appbar.eta +29 -0
- package/docs/_partials/_buttontest.eta +31 -0
- package/docs/_partials/_header.eta +149 -0
- package/docs/_partials/_navlistitem.eta +16 -0
- package/docs/_partials/_target.eta +1 -0
- package/{docs-src → docs}/_sample-utils.js +8 -6
- package/{docs-src → docs}/_storage.js +0 -0
- package/{docs-src → docs}/docs.scss +5 -2
- package/docs/index.eta +16 -0
- package/{docs-src → docs}/index.js +0 -0
- package/docs/pages/appbar.eta +114 -0
- package/{docs-src/components → docs/pages}/appbar.js +0 -0
- package/{docs-src/components → docs/pages}/appbar.pug +15 -18
- package/docs/pages/bottomnav.eta +188 -0
- package/{docs-src/components → docs/pages}/bottomnav.js +23 -24
- package/{docs-src/components → docs/pages}/bottomnav.pug +4 -4
- package/docs/pages/button.eta +124 -0
- package/{docs-src/components → docs/pages}/button.js +19 -19
- package/{docs-src/components → docs/pages}/button.pug +15 -15
- package/docs/pages/card.eta +90 -0
- package/{docs-src/components → docs/pages}/card.js +3 -3
- package/{docs-src/components → docs/pages}/card.pug +7 -7
- package/docs/pages/chip.eta +122 -0
- package/{docs-src/components → docs/pages}/chip.js +3 -6
- package/{docs-src/components → docs/pages}/chip.pug +2 -2
- package/docs/pages/color.eta +143 -0
- package/{docs-src/core → docs/pages}/color.js +95 -20
- package/docs/pages/color.pug +121 -0
- package/docs/pages/datatable.eta +323 -0
- package/{docs-src/components → docs/pages}/datatable.js +26 -13
- package/docs/pages/datatable.pug +283 -0
- package/docs/pages/dialog.eta +186 -0
- package/{docs-src/components → docs/pages}/dialog.js +26 -13
- package/{docs-src/components → docs/pages}/dialog.pug +46 -28
- package/docs/pages/dom.eta +26 -0
- package/docs/pages/dom.js +143 -0
- package/docs/pages/dom.pug +22 -0
- package/docs/pages/elevation.eta +35 -0
- package/{docs-src/components → docs/pages}/elevation.js +0 -0
- package/{docs-src/components → docs/pages}/elevation.pug +0 -0
- package/docs/pages/fab.eta +99 -0
- package/{docs-src/components → docs/pages}/fab.js +3 -3
- package/{docs-src/components → docs/pages}/fab.pug +2 -2
- package/docs/pages/grid.eta +135 -0
- package/{docs-src/components → docs/pages}/grid.js +1 -1
- package/{docs-src/components → docs/pages}/grid.pug +3 -3
- package/docs/pages/layout.eta +8 -0
- package/{docs-src/components → docs/pages}/layout.js +0 -0
- package/{docs-src/components → docs/pages}/layout.pug +0 -0
- package/docs/pages/list.eta +465 -0
- package/{docs-src/components → docs/pages}/list.js +2 -2
- package/{docs-src/components → docs/pages}/list.pug +7 -14
- package/docs/pages/menu.eta +276 -0
- package/{docs-src/components → docs/pages}/menu.js +14 -10
- package/{docs-src/components → docs/pages}/menu.pug +0 -0
- package/docs/pages/overlay.eta +69 -0
- package/docs/pages/overlay.js +4 -0
- package/{docs-src/core → docs/pages}/overlay.pug +14 -11
- package/docs/pages/progress.eta +23 -0
- package/{docs-src/components → docs/pages}/progress.js +1 -1
- package/{docs-src/components → docs/pages}/progress.pug +1 -1
- package/docs/pages/ripple.eta +27 -0
- package/docs/pages/ripple.js +4 -0
- package/{docs-src/core → docs/pages}/ripple.pug +4 -4
- package/docs/pages/search.eta +246 -0
- package/{docs-src/components → docs/pages}/search.js +59 -42
- package/{docs-src/components → docs/pages}/search.pug +50 -51
- package/docs/pages/selection.eta +111 -0
- package/docs/pages/selection.js +13 -0
- package/docs/pages/selection.pug +74 -0
- package/docs/pages/slider.eta +23 -0
- package/{docs-src/components → docs/pages}/slider.js +0 -0
- package/{docs-src/components → docs/pages}/slider.pug +0 -0
- package/docs/pages/snackbar.eta +83 -0
- package/{docs-src/components → docs/pages}/snackbar.js +3 -3
- package/{docs-src/components → docs/pages}/snackbar.pug +0 -0
- package/docs/pages/tab.eta +421 -0
- package/{docs-src/components → docs/pages}/tab.js +18 -35
- package/{docs-src/components → docs/pages}/tab.pug +4 -4
- package/docs/pages/textfield.eta +486 -0
- package/{docs-src/components → docs/pages}/textfield.js +3 -4
- package/{docs-src/components → docs/pages}/textfield.pug +87 -35
- package/docs/pages/tooltip.eta +94 -0
- package/{docs-src/components → docs/pages}/tooltip.js +0 -0
- package/{docs-src/components → docs/pages}/tooltip.pug +0 -1
- package/docs/pages/transition.eta +117 -0
- package/{docs-src/core → docs/pages}/transition.js +7 -8
- package/{docs-src/core → docs/pages}/transition.pug +0 -0
- package/docs/pages/type.eta +31 -0
- package/{docs-src/components → docs/pages}/type.js +0 -0
- package/{docs-src/components → docs/pages}/type.pug +0 -1
- package/docs/postrender.js +39 -0
- package/{docs-src → docs}/prerender.js +3 -9
- package/docs/pwa/_dialogs.eta +143 -0
- package/docs/pwa/_dialogs.pug +96 -0
- package/docs/pwa/_menus.eta +16 -0
- package/{docs-src → docs}/pwa/_menus.pug +0 -0
- package/docs/pwa/pwa-prerender.js +3 -0
- package/docs/pwa/pwa.eta +480 -0
- package/docs/pwa/pwa.js +306 -0
- package/{docs-src → docs}/pwa/pwa.pug +166 -263
- package/docs/pwa/pwa.scss +26 -0
- package/docs/spec.scss +26 -0
- package/docs/themes/_component-themes.scss +26 -0
- package/docs/themes/theme-colored-fallbacks.scss +17 -0
- package/docs/themes/theme-colored.scss +17 -0
- package/docs/themes/theme-default-fallbacks.scss +17 -0
- package/docs/themes/theme-default.scss +17 -0
- package/jsconfig.json +4 -2
- package/package.json +40 -27
- package/scripts/deploy-docs.sh +9 -0
- package/templates/index.eta +2 -0
- package/utils/function.js +3 -0
- package/webpack.config.cjs +257 -0
- package/_spec.scss +0 -27
- package/_theme.scss +0 -27
- package/components/list/expander.js +0 -142
- package/components/list/itemgroup.js +0 -22
- package/core/theme/_builder.scss +0 -116
- package/core/theme/index.scss +0 -68
- package/docs/appbar.html +0 -1
- package/docs/appbar.min.js +0 -2
- package/docs/appbar.min.js.map +0 -1
- package/docs/bottomnav.html +0 -1
- package/docs/bottomnav.min.js +0 -2
- package/docs/bottomnav.min.js.map +0 -1
- package/docs/button.html +0 -1
- package/docs/button.min.js +0 -2
- package/docs/button.min.js.map +0 -1
- package/docs/card.html +0 -1
- package/docs/card.min.js +0 -2
- package/docs/card.min.js.map +0 -1
- package/docs/chip.html +0 -1
- package/docs/chip.min.js +0 -2
- package/docs/chip.min.js.map +0 -1
- package/docs/color.html +0 -1
- package/docs/color.min.js +0 -2
- package/docs/color.min.js.map +0 -1
- package/docs/datatable.html +0 -1
- package/docs/datatable.min.js +0 -2
- package/docs/datatable.min.js.map +0 -1
- package/docs/default.common.min.js +0 -2
- package/docs/default.common.min.js.map +0 -1
- package/docs/dialog.html +0 -1
- package/docs/dialog.min.js +0 -2
- package/docs/dialog.min.js.map +0 -1
- package/docs/docs.min.css +0 -1
- package/docs/docs.min.js +0 -2
- package/docs/docs.min.js.map +0 -1
- package/docs/elevation.html +0 -1
- package/docs/elevation.min.js +0 -2
- package/docs/elevation.min.js.map +0 -1
- package/docs/fab.html +0 -1
- package/docs/fab.min.js +0 -2
- package/docs/fab.min.js.map +0 -1
- package/docs/grid.html +0 -1
- package/docs/grid.min.js +0 -2
- package/docs/grid.min.js.map +0 -1
- package/docs/index.html +0 -1
- package/docs/index.min.js +0 -2
- package/docs/index.min.js.map +0 -1
- package/docs/ink.html +0 -1
- package/docs/ink.min.js +0 -2
- package/docs/ink.min.js.map +0 -1
- package/docs/layout.html +0 -1
- package/docs/layout.min.js +0 -2
- package/docs/layout.min.js.map +0 -1
- package/docs/list.html +0 -1
- package/docs/list.min.js +0 -2
- package/docs/list.min.js.map +0 -1
- package/docs/menu.html +0 -1
- package/docs/menu.min.js +0 -2
- package/docs/menu.min.js.map +0 -1
- package/docs/overlay.html +0 -1
- package/docs/overlay.min.js +0 -2
- package/docs/overlay.min.js.map +0 -1
- package/docs/prerender.common.min.js +0 -2
- package/docs/prerender.common.min.js.map +0 -1
- package/docs/prerender.min.js +0 -2
- package/docs/prerender.min.js.map +0 -1
- package/docs/progress.html +0 -1
- package/docs/progress.min.js +0 -2
- package/docs/progress.min.js.map +0 -1
- package/docs/pwa-prerender.min.js +0 -2
- package/docs/pwa-prerender.min.js.map +0 -1
- package/docs/pwa.html +0 -11
- package/docs/pwa.min.css +0 -1
- package/docs/pwa.min.js +0 -2
- package/docs/pwa.min.js.map +0 -1
- package/docs/ripple.html +0 -1
- package/docs/ripple.min.js +0 -2
- package/docs/ripple.min.js.map +0 -1
- package/docs/search.html +0 -1
- package/docs/search.min.js +0 -2
- package/docs/search.min.js.map +0 -1
- package/docs/selection.html +0 -1
- package/docs/selection.min.js +0 -2
- package/docs/selection.min.js.map +0 -1
- package/docs/slider.html +0 -1
- package/docs/slider.min.js +0 -2
- package/docs/slider.min.js.map +0 -1
- package/docs/snackbar.html +0 -1
- package/docs/snackbar.min.js +0 -2
- package/docs/snackbar.min.js.map +0 -1
- package/docs/spec.min.css +0 -1
- package/docs/spec.min.js +0 -2
- package/docs/spec.min.js.map +0 -1
- package/docs/surface.html +0 -1
- package/docs/surface.min.js +0 -2
- package/docs/surface.min.js.map +0 -1
- package/docs/tab.html +0 -1
- package/docs/tab.min.js +0 -2
- package/docs/tab.min.js.map +0 -1
- package/docs/textfield.html +0 -2
- package/docs/textfield.min.js +0 -2
- package/docs/textfield.min.js.map +0 -1
- package/docs/theme-colored-fallbacks.min.css +0 -1
- package/docs/theme-colored-fallbacks.min.js +0 -2
- package/docs/theme-colored-fallbacks.min.js.map +0 -1
- package/docs/theme-colored.min.css +0 -1
- package/docs/theme-colored.min.js +0 -2
- package/docs/theme-colored.min.js.map +0 -1
- package/docs/theme-default-fallbacks.min.css +0 -1
- package/docs/theme-default-fallbacks.min.js +0 -2
- package/docs/theme-default-fallbacks.min.js.map +0 -1
- package/docs/theme-default.min.css +0 -1
- package/docs/theme-default.min.js +0 -2
- package/docs/theme-default.min.js.map +0 -1
- package/docs/themes-fallbacks.min.css +0 -1
- package/docs/themes-fallbacks.min.js +0 -2
- package/docs/themes-fallbacks.min.js.map +0 -1
- package/docs/themes.min.css +0 -1
- package/docs/themes.min.js +0 -2
- package/docs/themes.min.js.map +0 -1
- package/docs/tooltip.html +0 -1
- package/docs/tooltip.min.js +0 -2
- package/docs/tooltip.min.js.map +0 -1
- package/docs/transition.html +0 -1
- package/docs/transition.min.js +0 -2
- package/docs/transition.min.js.map +0 -1
- package/docs/type.html +0 -1
- package/docs/type.min.js +0 -2
- package/docs/type.min.js.map +0 -1
- package/docs-src/components/datatable.pug +0 -327
- package/docs-src/components/selection.js +0 -9
- package/docs-src/components/selection.pug +0 -77
- package/docs-src/core/color.pug +0 -201
- package/docs-src/core/overlay.js +0 -4
- package/docs-src/core/ripple.js +0 -4
- package/docs-src/index.pug +0 -9
- package/docs-src/pwa/_dialogs.pug +0 -15
- package/docs-src/pwa/pwa-prerender.js +0 -3
- package/docs-src/pwa/pwa.js +0 -182
- package/docs-src/pwa/pwa.scss +0 -25
- package/docs-src/spec.scss +0 -1
- package/docs-src/themes/theme-colored-fallbacks.scss +0 -14
- package/docs-src/themes/theme-colored.scss +0 -14
- package/docs-src/themes/theme-default-fallbacks.scss +0 -14
- package/docs-src/themes/theme-default.scss +0 -14
- package/index.js +0 -51
- package/index.scss +0 -2
- package/webpack.config.js +0 -187
package/docs/snackbar.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
!function(e){function t(t){for(var a,o,s=t[0],u=t[1],c=t[2],l=0,m=[];l<s.length;l++)o=s[l],r[o]&&m.push(r[o][0]),r[o]=0;for(a in u)Object.prototype.hasOwnProperty.call(u,a)&&(e[a]=u[a]);for(d&&d(t);m.length;)m.shift()();return i.push.apply(i,c||[]),n()}function n(){for(var e,t=0;t<i.length;t++){for(var n=i[t],a=!0,s=1;s<n.length;s++){var u=n[s];0!==r[u]&&(a=!1)}a&&(i.splice(t--,1),e=o(o.s=n[0]))}return e}var a={},r={27:0},i=[];function o(t){if(a[t])return a[t].exports;var n=a[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.m=e,o.c=a,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)o.d(n,a,function(t){return e[t]}.bind(null,a));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="";var s=window.webpackJsonp=window.webpackJsonp||[],u=s.push.bind(s);s.push=t,s=s.slice();for(var c=0;c<s.length;c++)t(s[c]);var d=u;i.push([86,1,0]),n()}({113:function(e,t,n){"use strict";n.r(t);var a=n(6),r=n(0),i=n(3);function o(e,t){for(var n=0;n<t.length;n++){var a=t[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}var s,u=function(){function e(t,n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.element=t,this.options=n,this.hideTimeout=null}var t,n,a;return t=e,(n=[{key:"clearHideTimeout",value:function(){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=null)}}])&&o(t.prototype,n),a&&o(t,a),e}(),c=[],d="mdw:snackbar-hide",l="mdw:snackbar-show";function m(e){var t=e.getElementsByClassName("mdw-button")[0];t&&(i.a(t),t.addEventListener("click",f)),e.setAttribute("mdw-js",""),e.addEventListener("animationend",h),e.addEventListener("keydown",b),function(e){if(e.hasAttribute("mdw-no-aria"))return;e.setAttribute("role","alert"),e.setAttribute("tabindex","-1")}(e)}function b(e){"Escape"!==e.key&&"Esc"!==e.key||(e.stopPropagation(),e.preventDefault(),v(e.currentTarget))}function f(e){var t=e.currentTarget;t instanceof HTMLAnchorElement&&e.preventDefault(),v(Object(r.c)(t,"mdw-snackbar"))}function p(e){var t=null;return c.some(function(n){return n.element===e&&(t=n,!0)}),t}function h(e){w(e.currentTarget)}function w(e){if("false"===e.getAttribute("aria-hidden")){var t=p(e);if(t&&t.hideTimeout)return;var n=e.getAttribute("mdw-autohide");if(null==n)return;var a=parseFloat(n)||4;if(a<0)return;var r=setTimeout(function(){v(e)},1e3*a);t&&(t.hideTimeout=r)}else{var i=p(e);if(i)return y(e,i.options),void k(e);e.hasAttribute("mdw-autodestroy")&&e.parentElement&&e.parentElement.removeChild(e)}}function v(e){if("true"===e.getAttribute("aria-hidden"))return!1;if(!Object(r.b)(e,d))return!1;e.setAttribute("aria-hidden","true");var t=p(e);return t&&c.splice(c.indexOf(t),1),"none"===window.getComputedStyle(e).animationName&&Object(r.k)(function(){return w(e)}),!0}function k(e){return"false"!==e.getAttribute("aria-hidden")&&(!!Object(r.b)(e,l)&&(e.setAttribute("aria-hidden","false"),m(e),"none"===window.getComputedStyle(e).animationName&&Object(r.k)(function(){return w(e)}),!0))}function y(e,t){e.classList.add("mdw-snackbar"),e.classList.contains("mdw-theme")||(e.classList.add("mdw-theme"),e.setAttribute("mdw-surface","background 900"),e.setAttribute("mdw-dark",""));var n=e.getElementsByTagName("span")[0];n&&n.parentElement.removeChild(n),n=document.createElement("span"),e.firstChild?e.insertBefore(n,e.firstChild):e.appendChild(n);var a=document.createTextNode(t.text);n.appendChild(a);var i,o=e.getElementsByClassName("mdw-button")[0];(t.buttonText?(o||(o=document.createElement("a"),e.appendChild(o)),Object(r.m)(o,t.buttonText),o.classList.add("mdw-button"),void 0===t.buttonInk?(o.classList.add("mdw-theme"),o.setAttribute("mdw-ink","secondary")):"string"==typeof t.buttonInk&&(o.classList.add("mdw-theme"),o.setAttribute("mdw-ink",t.buttonInk))):o&&o.parentElement&&o.parentElement.removeChild(o),t.stacked&&e.setAttribute("mdw-stacked",""),!1!==t.autoHide)&&((i=!0===t.autoHide?4:null==t.autoHide?4:t.autoHide)>0&&e.setAttribute("mdw-autohide",i.toString()));!1!==t.autoDestroy&&e.setAttribute("mdw-autodestroy","")}function g(){var e,t,n=document.querySelector('input[name="javascript"][value="required"]').checked,r=document.querySelector('input[name="javascript"][value="optional"]').checked,o=n||r,u=s.getElementsByClassName("mdw-snackbar")[0];(t=(e=u).getElementsByClassName("mdw-button")[0])&&(i.c(t),t.removeEventListener("click",f)),c.slice().reverse().forEach(function(t,n,a){if(t.element===e){t.clearHideTimeout();var r=a.length-n-1;c.splice(r,1)}}),e.removeAttribute("mdw-js"),document.getElementsByClassName("component-html")[0].textContent=Object(a.a)(s),o&&m(u),document.getElementsByClassName("component-js")[0].textContent=["Snackbar.create({"," text: 'Required text.',"," buttonText: 'Optional button text',"," buttonInk: 'secondary',"," stacked: false,"," autoHide: 4,"," autoDestroy: true,"," parent: document.getElementsByClassName('.mdw-snackbar__container')[0],"," show: true,"," skipQueue: false","})"].join("\n")}function A(e){var t=e.target,n=t.name,a=t.value,r=t.checked,i=s.getElementsByClassName("mdw-snackbar")[0],o=s.getElementsByTagName("span")[0],u=s.getElementsByClassName("mdw-button")[0];switch(n){case"stacked":r?i.setAttribute("mdw-stacked",""):i.removeAttribute("mdw-stacked");break;case"text":switch(a){case"short":o.textContent="Short message snackbar.";break;case"long":o.textContent="Long message snackbar that wraps text on smaller screens.";break;case"line-break":o.textContent="Two-line message\n with explicit line break."}break;case"visibility":switch(a){default:case"show":i.setAttribute("aria-hidden","false");break;case"hide":i.setAttribute("aria-hidden","true")}break;case"autohide":switch(a){case"none":i.removeAttribute("mdw-autohide");break;case"4":i.setAttribute("mdw-autohide","");break;default:i.setAttribute("mdw-autohide",a)}break;case"position":switch(a){default:case"start":s.removeAttribute("mdw-position");break;case"center":s.setAttribute("mdw-position","center");break;case"end":s.setAttribute("mdw-position","end")}break;case"button":if("none"===a){u&&u.parentElement.removeChild(u);break}switch(u||((u=document.createElement("a")).classList.add("mdw-button"),u.classList.add("mdw-theme"),u.setAttribute("mdw-ink","secondary"),i.appendChild(u)),a){case"short":u.textContent="Action";break;case"long":u.textContent="Longer Action Text"}}g()}!function(){s=document.querySelector(".mdw-snackbar__container");var e=document.querySelector(".mdw-snackbar__container.js-sample");document.querySelector(".component-sample .mdw-button").addEventListener("click",function(){!function(e){var t,n=!1;e.parent&&(t=e.parent.getElementsByClassName("mdw-snackbar")[0]),t||(t=document.createElement("div"),e.parent&&e.parent.appendChild(t),n=!0);var a=new u(t,e);e.skipQueue?c.splice(0,0,a):c.push(a),!1!==e.show&&(n?(y(t,e),k(t),y(t,e)):k(t))}({text:"Snackbar created at: ".concat((new Date).toLocaleTimeString()),parent:e})}),Object(r.h)(document.querySelectorAll("input[name]"),function(e){e.addEventListener("change",A)})}(),g()},86:function(e,t,n){n(113),e.exports=n(87)},87:function(e,t,n){e.exports=n.p+"snackbar.html"}});
|
|
2
|
-
//# sourceMappingURL=snackbar.min.js.map
|
package/docs/snackbar.min.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./components/snackbar.js","webpack:///../components/snackbar/index.js","webpack:///./components/snackbar.pug"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","installedChunks","push","Object","prototype","hasOwnProperty","call","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","27","exports","module","l","m","c","d","name","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","p","jsonpArray","window","oldJsonpFunction","slice","sampleComponent","SnackbarQueueItem","element","options","_classCallCheck","this","hideTimeout","clearTimeout","SNACKBAR_QUEUE","HIDE_EVENT","SHOW_EVENT","attach","snackbarElement","button","getElementsByClassName","Button","addEventListener","onButtonClick","setAttribute","onAnimationEnd","onKeyDown","hasAttribute","setupARIA","event","stopPropagation","preventDefault","hide","currentTarget","buttonElement","HTMLAnchorElement","findElementParentByClassName","findNextQueueItem","queue","some","q","handleAnimationChange","getAttribute","currentQueueItem","autoHideString","timeInSeconds","parseFloat","timeout","setTimeout","nextQueueItem","update","show","parentElement","removeChild","dispatchDomEvent","indexOf","getComputedStyle","animationName","nextTick","classList","add","contains","span","getElementsByTagName","document","createElement","firstChild","insertBefore","appendChild","textNode","createTextNode","text","buttonText","setTextNode","buttonInk","stacked","autoHide","toString","autoDestroy","updateSampleCode","jsRequired","querySelector","checked","jsOptional","useJS","snackbar","removeEventListener","reverse","forEach","reverseIndex","array","clearHideTimeout","index","removeAttribute","textContent","convertElementToCode","Snackbar","join","onOptionChange","_event$target","target","jsSnackbarContainer","newlyCreated","parent","skipQueue","concat","Date","toLocaleTimeString","iterateArrayLike","querySelectorAll","el","setupComponentOptions"],"mappings":"aACA,SAAAA,EAAAC,GAQA,IAPA,IAMAC,EAAAC,EANAC,EAAAH,EAAA,GACAI,EAAAJ,EAAA,GACAK,EAAAL,EAAA,GAIAM,EAAA,EAAAC,EAAA,GACQD,EAAAH,EAAAK,OAAoBF,IAC5BJ,EAAAC,EAAAG,GACAG,EAAAP,IACAK,EAAAG,KAAAD,EAAAP,GAAA,IAEAO,EAAAP,GAAA,EAEA,IAAAD,KAAAG,EACAO,OAAAC,UAAAC,eAAAC,KAAAV,EAAAH,KACAc,EAAAd,GAAAG,EAAAH,IAKA,IAFAe,KAAAhB,GAEAO,EAAAC,QACAD,EAAAU,OAAAV,GAOA,OAHAW,EAAAR,KAAAS,MAAAD,EAAAb,GAAA,IAGAe,IAEA,SAAAA,IAEA,IADA,IAAAC,EACAf,EAAA,EAAiBA,EAAAY,EAAAV,OAA4BF,IAAA,CAG7C,IAFA,IAAAgB,EAAAJ,EAAAZ,GACAiB,GAAA,EACAC,EAAA,EAAkBA,EAAAF,EAAAd,OAA2BgB,IAAA,CAC7C,IAAAC,EAAAH,EAAAE,GACA,IAAAf,EAAAgB,KAAAF,GAAA,GAEAA,IACAL,EAAAQ,OAAApB,IAAA,GACAe,EAAAM,IAAAC,EAAAN,EAAA,KAGA,OAAAD,EAIA,IAAAQ,EAAA,GAKApB,EAAA,CACAqB,GAAA,GAGAZ,EAAA,GAGA,SAAAS,EAAA1B,GAGA,GAAA4B,EAAA5B,GACA,OAAA4B,EAAA5B,GAAA8B,QAGA,IAAAC,EAAAH,EAAA5B,GAAA,CACAK,EAAAL,EACAgC,GAAA,EACAF,QAAA,IAUA,OANAhB,EAAAd,GAAAa,KAAAkB,EAAAD,QAAAC,IAAAD,QAAAJ,GAGAK,EAAAC,GAAA,EAGAD,EAAAD,QAKAJ,EAAAO,EAAAnB,EAGAY,EAAAQ,EAAAN,EAGAF,EAAAS,EAAA,SAAAL,EAAAM,EAAAC,GACAX,EAAAY,EAAAR,EAAAM,IACA1B,OAAA6B,eAAAT,EAAAM,EAAA,CAA0CI,YAAA,EAAAC,IAAAJ,KAK1CX,EAAAgB,EAAA,SAAAZ,GACA,oBAAAa,eAAAC,aACAlC,OAAA6B,eAAAT,EAAAa,OAAAC,YAAA,CAAwDC,MAAA,WAExDnC,OAAA6B,eAAAT,EAAA,cAAiDe,OAAA,KAQjDnB,EAAAoB,EAAA,SAAAD,EAAAE,GAEA,GADA,EAAAA,IAAAF,EAAAnB,EAAAmB,IACA,EAAAE,EAAA,OAAAF,EACA,KAAAE,GAAA,iBAAAF,QAAAG,WAAA,OAAAH,EACA,IAAAI,EAAAvC,OAAAwC,OAAA,MAGA,GAFAxB,EAAAgB,EAAAO,GACAvC,OAAA6B,eAAAU,EAAA,WAAyCT,YAAA,EAAAK,UACzC,EAAAE,GAAA,iBAAAF,EAAA,QAAAM,KAAAN,EAAAnB,EAAAS,EAAAc,EAAAE,EAAA,SAAAA,GAAgH,OAAAN,EAAAM,IAAqBC,KAAA,KAAAD,IACrI,OAAAF,GAIAvB,EAAA2B,EAAA,SAAAtB,GACA,IAAAM,EAAAN,KAAAiB,WACA,WAA2B,OAAAjB,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAL,EAAAS,EAAAE,EAAA,IAAAA,GACAA,GAIAX,EAAAY,EAAA,SAAAgB,EAAAC,GAAsD,OAAA7C,OAAAC,UAAAC,eAAAC,KAAAyC,EAAAC,IAGtD7B,EAAA8B,EAAA,GAEA,IAAAC,EAAAC,OAAA,aAAAA,OAAA,iBACAC,EAAAF,EAAAhD,KAAA2C,KAAAK,GACAA,EAAAhD,KAAAX,EACA2D,IAAAG,QACA,QAAAvD,EAAA,EAAgBA,EAAAoD,EAAAlD,OAAuBF,IAAAP,EAAA2D,EAAApD,IACvC,IAAAU,EAAA4C,EAIA1C,EAAAR,KAAA,UAEAU,iPCjJI0C,ECoBEC,aAKJ,SAAAA,EAAYC,EAASC,gGAASC,CAAAC,KAAAJ,GAC5BI,KAAKH,QAAUA,EACfG,KAAKF,QAAUA,EACfE,KAAKC,YAAc,uEAKfD,KAAKC,cACPC,aAAaF,KAAKC,aAClBD,KAAKC,YAAc,2CAMnBE,EAAiB,GAEVC,EAAa,oBACbC,EAAa,oBAMnB,SAASC,EAAOC,GACrB,IAAMC,EAASD,EAAgBE,uBAAuB,cAAc,GAChED,IACFE,IAAcF,GACdA,EAAOG,iBAAiB,QAASC,IAEnCL,EAAgBM,aAAa,SAAU,IACvCN,EAAgBI,iBAAiB,eAAgBG,GACjDP,EAAgBI,iBAAiB,UAAWI,GAQvC,SAAmBR,GACxB,GAAIA,EAAgBS,aAAa,eAC/B,OAEFT,EAAgBM,aAAa,OAAQ,SACrCN,EAAgBM,aAAa,WAAY,MAZzCI,CAAUV,GAmBL,SAASQ,EAAUG,GACN,WAAdA,EAAMjC,KAAkC,QAAdiC,EAAMjC,MAElCiC,EAAMC,kBACND,EAAME,iBAGNC,EADyBH,EAAMI,gBA8B5B,SAASV,EAAcM,GAE5B,IAAMK,EAAiBL,EAAMI,cACzBC,aAAyBC,mBAC3BN,EAAME,iBAGRC,EADwBI,YAA6BF,EAAe,iBAmB/D,SAASG,EAAkB7B,GAChC,IAAI8B,EAAQ,KAQZ,OAPAxB,EAAeyB,KAAK,SAACC,GACnB,OAAIA,EAAEhC,UAAYA,IAChB8B,EAAQE,GACD,KAIJF,EAOF,SAASb,EAAeI,GAC7BY,EAA8CZ,EAAMI,eAO/C,SAASQ,EAAsBvB,GAEpC,GADgE,UAAhDA,EAAgBwB,aAAa,eAC7C,CACE,IAAMC,EAAmBN,EAAkBnB,GAC3C,GAAIyB,GAAoBA,EAAiB/B,YACvC,OAEF,IAAMgC,EAAiB1B,EAAgBwB,aAAa,gBACpD,GAAsB,MAAlBE,EACF,OAEF,IAAMC,EAAgBC,WAAWF,IAAmB,EACpD,GAAIC,EAAgB,EAClB,OAEF,IAAME,EAAUC,WAAW,WACzBhB,EAAKd,IACY,IAAhB2B,GACCF,IACFA,EAAiB/B,YAAcmC,OAjBnC,CAsBA,IAAME,EAAgBZ,EAAkBnB,GACxC,GAAI+B,EAGF,OAFAC,EAAOhC,EAAiB+B,EAAcxC,cACtC0C,EAAKjC,GAGHA,EAAgBS,aAAa,oBAC3BT,EAAgBkC,eAClBlC,EAAgBkC,cAAcC,YAAYnC,IASzC,SAASc,EAAKd,GACnB,GAAoD,SAAhDA,EAAgBwB,aAAa,eAC/B,OAAO,EAET,IAAKY,YAAiBpC,EAAiBH,GACrC,OAAO,EAETG,EAAgBM,aAAa,cAAe,QAC5C,IAAMmB,EAAmBN,EAAkBnB,GAO3C,OANIyB,GACF7B,EAAe5C,OAAO4C,EAAeyC,QAAQZ,GAAmB,GAEH,SAA3DxC,OAAOqD,iBAAiBtC,GAAiBuC,eAC3CC,YAAS,kBAAMjB,EAAsBvB,MAEhC,EAOF,SAASiC,EAAKjC,GACnB,MAAoD,UAAhDA,EAAgBwB,aAAa,mBAG5BY,YAAiBpC,EAAiBF,KAGvCE,EAAgBM,aAAa,cAAe,SAC5CP,EAAOC,GACwD,SAA3Df,OAAOqD,iBAAiBtC,GAAiBuC,eAC3CC,YAAS,kBAAMjB,EAAsBvB,MAEhC,IAQF,SAASgC,EAAO1C,EAASC,GAC9BD,EAAQmD,UAAUC,IAAI,gBACjBpD,EAAQmD,UAAUE,SAAS,eAI9BrD,EAAQmD,UAAUC,IAAI,aACtBpD,EAAQgB,aAAa,cAAe,kBACpChB,EAAQgB,aAAa,WAAY,KAEnC,IAAIsC,EAAOtD,EAAQuD,qBAAqB,QAAQ,GAC5CD,GAEFA,EAAKV,cAAcC,YAAYS,GAEjCA,EAAOE,SAASC,cAAc,QAC1BzD,EAAQ0D,WACV1D,EAAQ2D,aAAaL,EAAMtD,EAAQ0D,YAEnC1D,EAAQ4D,YAAYN,GAEtB,IAAMO,EAAWL,SAASM,eAAe7D,EAAQ8D,MACjDT,EAAKM,YAAYC,GACjB,IAwBMxB,EAxBF1B,EAASX,EAAQY,uBAAuB,cAAc,IACtDX,EAAQ+D,YACLrD,IACHA,EAAS6C,SAASC,cAAc,KAChCzD,EAAQ4D,YAAYjD,IAEtBsD,YAAYtD,EAAQV,EAAQ+D,YAC5BrD,EAAOwC,UAAUC,IAAI,mBACY,IAAtBnD,EAAQiE,WACjBvD,EAAOwC,UAAUC,IAAI,aACrBzC,EAAOK,aAAa,UAAW,cACO,iBAAtBf,EAAQiE,YACxBvD,EAAOwC,UAAUC,IAAI,aACrBzC,EAAOK,aAAa,UAAWf,EAAQiE,aAIhCvD,GAAUA,EAAOiC,eAC1BjC,EAAOiC,cAAcC,YAAYlC,GAE/BV,EAAQkE,SACVnE,EAAQgB,aAAa,cAAe,KAEb,IAArBf,EAAQmE,aAGR/B,GADuB,IAArBpC,EAAQmE,SACM,EACa,MAApBnE,EAAQmE,SACD,EAEAnE,EAAQmE,UAEN,GAClBpE,EAAQgB,aAAa,eAAgBqB,EAAcgC,cAG3B,IAAxBpE,EAAQqE,aACVtE,EAAQgB,aAAa,kBAAmB,ID/S5C,SAASuD,IACP,ICyFqB7D,EACfC,ED1FA6D,EAAahB,SAASiB,cAAc,8CAA8CC,QAClFC,EAAanB,SAASiB,cAAc,8CAA8CC,QAClFE,EAAQJ,GAAcG,EAEtBE,EAAW/E,EAAgBc,uBAAuB,gBAAgB,ICsFlED,GADeD,EDlFLmE,GCmFejE,uBAAuB,cAAc,MAElEC,IAAcF,GACdA,EAAOmE,oBAAoB,QAAS/D,IAGtCT,EAAeT,QAAQkF,UAAUC,QAAQ,SAAClD,EAAOmD,EAAcC,GAC7D,GAAIpD,EAAM9B,UAAYU,EAAiB,CACrCoB,EAAMqD,mBACN,IAAMC,EAAQF,EAAM1I,OAASyI,EAAe,EAC5C3E,EAAe5C,OAAO0H,EAAO,MAGjC1E,EAAgB2E,gBAAgB,UD9FR7B,SAAS5C,uBAAuB,kBAAkB,GAC1D0E,YAAcC,YAAqBzF,GAG/C8E,GACFY,EAAgBX,GAGIrB,SAAS5C,uBAAuB,gBAAgB,GACxD0E,YAAc,CAC1B,oBACA,4BACA,wCACA,4BACA,oBACA,iBACA,uBACA,4EACA,gBACA,qBACA,MACAG,KAAK,MAOT,SAASC,EAAerE,GAAO,IAAAsE,EACItE,EAAMuE,OAA/BvH,EADqBsH,EACrBtH,KAAMS,EADe6G,EACf7G,MAAO4F,EADQiB,EACRjB,QACfG,EAAW/E,EAAgBc,uBAAuB,gBAAgB,GAClE0C,EAAOxD,EAAgByD,qBAAqB,QAAQ,GACtD7B,EAAgB5B,EAAgBc,uBAAuB,cAAc,GACzE,OAAQvC,GACN,IAAK,UACCqG,EACFG,EAAS7D,aAAa,cAAe,IAErC6D,EAASQ,gBAAgB,eAE3B,MACF,IAAK,OACH,OAAQvG,GACN,IAAK,QACHwE,EAAKgC,YAAc,0BACnB,MACF,IAAK,OACHhC,EAAKgC,YAAc,4DACnB,MACF,IAAK,aACHhC,EAAKgC,YAAc,+CAIvB,MACF,IAAK,aACH,OAAQxG,GACN,QACA,IAAK,OACH+F,EAAS7D,aAAa,cAAe,SACrC,MACF,IAAK,OACH6D,EAAS7D,aAAa,cAAe,QAGzC,MACF,IAAK,WACH,OAAQlC,GACN,IAAK,OACH+F,EAASQ,gBAAgB,gBACzB,MACF,IAAK,IACHR,EAAS7D,aAAa,eAAgB,IACtC,MACF,QACE6D,EAAS7D,aAAa,eAAgBlC,GAG1C,MACF,IAAK,WACH,OAAQA,GACN,QACA,IAAK,QACHgB,EAAgBuF,gBAAgB,gBAChC,MACF,IAAK,SACHvF,EAAgBkB,aAAa,eAAgB,UAC7C,MACF,IAAK,MACHlB,EAAgBkB,aAAa,eAAgB,OAGjD,MACF,IAAK,SACH,GAAc,SAAVlC,EAAkB,CAChB4C,GACFA,EAAckB,cAAcC,YAAYnB,GAE1C,MASF,OAPKA,KACHA,EAAgB8B,SAASC,cAAc,MACzBN,UAAUC,IAAI,cAC5B1B,EAAcyB,UAAUC,IAAI,aAC5B1B,EAAcV,aAAa,UAAW,aACtC6D,EAASjB,YAAYlC,IAEf5C,GACN,IAAK,QACH4C,EAAc4D,YAAc,SAC5B,MACF,IAAK,OACH5D,EAAc4D,YAAc,sBAOpCf,KAIF,WACEzE,EAAkB0D,SAASiB,cAAc,4BAEzC,IAAMoB,EAAuBrC,SAASiB,cAAc,sCACpDjB,SAASiB,cAAc,iCAAiC3D,iBAAiB,QAAS,YC+K7E,SAAgBb,GACrB,IAAID,EACA8F,GAAe,EACf7F,EAAQ8F,SAEV/F,EAAWC,EAAQ8F,OAAOnF,uBAAuB,gBAAgB,IAE9DZ,IACHA,EAAUwD,SAASC,cAAc,OAC7BxD,EAAQ8F,QACV9F,EAAQ8F,OAAOnC,YAAY5D,GAE7B8F,GAAe,GAEjB,IAAMhE,EAAQ,IAAI/B,EAAkBC,EAASC,GACzCA,EAAQ+F,UACV1F,EAAe5C,OAAO,EAAG,EAAGoE,GAE5BxB,EAAe5D,KAAKoF,IAGD,IAAjB7B,EAAQ0C,OACNmD,GAEFpD,EAAO1C,EAASC,GAChB0C,EAAK3C,GACL0C,EAAO1C,EAASC,IAEhB0C,EAAK3C,ID1MPwF,CAAgB,CACdzB,KAAI,wBAAAkC,QAA0B,IAAIC,MAAOC,sBACzCJ,OAAQF,MAGZO,YAAiB5C,SAAS6C,iBAAiB,eAAgB,SAACC,GAC1DA,EAAGxF,iBAAiB,SAAU4E,KAIlCa,GACAhC,mEE7JAvG,EAAAD,QAAiBJ,EAAA8B,EAAuB","file":"snackbar.min.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t27: 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \tvar jsonpArray = window[\"webpackJsonp\"] = window[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// add entry module to deferred list\n \tdeferredModules.push([86,1,0]);\n \t// run deferred modules when ready\n \treturn checkDeferredModules();\n","import { convertElementToCode } from '../_sample-utils';\nimport * as Snackbar from '../../components/snackbar/index';\nimport { iterateArrayLike } from '../../core/dom';\n\n/** @type {HTMLElement} */\nlet sampleComponent;\n\n/** @return {void} */\nfunction updateSampleCode() {\n const jsRequired = document.querySelector('input[name=\"javascript\"][value=\"required\"]').checked;\n const jsOptional = document.querySelector('input[name=\"javascript\"][value=\"optional\"]').checked;\n const useJS = jsRequired || jsOptional;\n\n const snackbar = sampleComponent.getElementsByClassName('mdw-snackbar')[0];\n\n // Strip JS related elements and attributes\n Snackbar.detach(snackbar);\n\n const htmlCodeElement = document.getElementsByClassName('component-html')[0];\n htmlCodeElement.textContent = convertElementToCode(sampleComponent);\n\n // Reattach JS if requested\n if (useJS) {\n Snackbar.attach(snackbar);\n }\n\n const jsCodeElement = document.getElementsByClassName('component-js')[0];\n jsCodeElement.textContent = [\n 'Snackbar.create({',\n \" text: 'Required text.',\",\n \" buttonText: 'Optional button text',\",\n \" buttonInk: 'secondary',\",\n ' stacked: false,',\n ' autoHide: 4,',\n ' autoDestroy: true,',\n \" parent: document.getElementsByClassName('.mdw-snackbar__container')[0],\",\n ' show: true,',\n ' skipQueue: false',\n '})',\n ].join('\\n');\n}\n\n/**\n * @param {Event} event\n * @return {void}\n */\nfunction onOptionChange(event) {\n const { name, value, checked } = event.target;\n const snackbar = sampleComponent.getElementsByClassName('mdw-snackbar')[0];\n const span = sampleComponent.getElementsByTagName('span')[0];\n let buttonElement = sampleComponent.getElementsByClassName('mdw-button')[0];\n switch (name) {\n case 'stacked':\n if (checked) {\n snackbar.setAttribute('mdw-stacked', '');\n } else {\n snackbar.removeAttribute('mdw-stacked');\n }\n break;\n case 'text':\n switch (value) {\n case 'short':\n span.textContent = 'Short message snackbar.';\n break;\n case 'long':\n span.textContent = 'Long message snackbar that wraps text on smaller screens.';\n break;\n case 'line-break':\n span.textContent = 'Two-line message\\n with explicit line break.';\n break;\n default:\n }\n break;\n case 'visibility':\n switch (value) {\n default:\n case 'show':\n snackbar.setAttribute('aria-hidden', 'false');\n break;\n case 'hide':\n snackbar.setAttribute('aria-hidden', 'true');\n break;\n }\n break;\n case 'autohide':\n switch (value) {\n case 'none':\n snackbar.removeAttribute('mdw-autohide');\n break;\n case '4':\n snackbar.setAttribute('mdw-autohide', '');\n break;\n default:\n snackbar.setAttribute('mdw-autohide', value);\n break;\n }\n break;\n case 'position':\n switch (value) {\n default:\n case 'start':\n sampleComponent.removeAttribute('mdw-position');\n break;\n case 'center':\n sampleComponent.setAttribute('mdw-position', 'center');\n break;\n case 'end':\n sampleComponent.setAttribute('mdw-position', 'end');\n break;\n }\n break;\n case 'button':\n if (value === 'none') {\n if (buttonElement) {\n buttonElement.parentElement.removeChild(buttonElement);\n }\n break;\n }\n if (!buttonElement) {\n buttonElement = document.createElement('a');\n buttonElement.classList.add('mdw-button');\n buttonElement.classList.add('mdw-theme');\n buttonElement.setAttribute('mdw-ink', 'secondary');\n snackbar.appendChild(buttonElement);\n }\n switch (value) {\n case 'short':\n buttonElement.textContent = 'Action';\n break;\n case 'long':\n buttonElement.textContent = 'Longer Action Text';\n break;\n default:\n }\n break;\n default:\n }\n updateSampleCode();\n}\n\n/** @return {void} */\nfunction setupComponentOptions() {\n sampleComponent = document.querySelector('.mdw-snackbar__container');\n /** @type {HTMLElement} */\n const jsSnackbarContainer = (document.querySelector('.mdw-snackbar__container.js-sample'));\n document.querySelector('.component-sample .mdw-button').addEventListener('click', () => {\n Snackbar.create({\n text: `Snackbar created at: ${new Date().toLocaleTimeString()}`,\n parent: jsSnackbarContainer,\n });\n });\n iterateArrayLike(document.querySelectorAll('input[name]'), (el) => {\n el.addEventListener('change', onOptionChange);\n });\n}\n\nsetupComponentOptions();\nupdateSampleCode();\n","// https://www.w3.org/TR/wai-aria-1.1/#alert\n// https://www.w3.org/TR/wai-aria-practices/#alert\n\nimport {\n dispatchDomEvent,\n findElementParentByClassName,\n nextTick,\n setTextNode,\n} from '../../core/dom';\n\nimport * as Button from '../button/index';\n\n/**\n * @typedef SnackbarCreateOptions\n * @property {!string} text\n * @property {!string=} buttonText\n * @property {string=} [buttonInk='primary']\n * @property {boolean} [stacked=false]\n * @property {number|boolean} [autoHide=4] Auto hide time in seconds\n * @property {boolean} [autoDestroy=true] Destroy element after hide\n * @property {Element=} parent Parent element to which to append\n * @property {boolean=} [show=true] Show element after creation\n * @property {boolean=} [skipQueue=false] Skip queue\n */\n\nclass SnackbarQueueItem {\n /**\n * @param {Element} element\n * @param {SnackbarCreateOptions=} options\n */\n constructor(element, options) {\n this.element = element;\n this.options = options;\n this.hideTimeout = null;\n }\n\n /** @return {void} */\n clearHideTimeout() {\n if (this.hideTimeout) {\n clearTimeout(this.hideTimeout);\n this.hideTimeout = null;\n }\n }\n}\n\n/** @type {SnackbarQueueItem[]} */\nconst SNACKBAR_QUEUE = [];\n\nexport const HIDE_EVENT = 'mdw:snackbar-hide';\nexport const SHOW_EVENT = 'mdw:snackbar-show';\n\n/**\n * @param {Element} snackbarElement\n * @return {void}\n */\nexport function attach(snackbarElement) {\n const button = snackbarElement.getElementsByClassName('mdw-button')[0];\n if (button) {\n Button.attach(button);\n button.addEventListener('click', onButtonClick);\n }\n snackbarElement.setAttribute('mdw-js', '');\n snackbarElement.addEventListener('animationend', onAnimationEnd);\n snackbarElement.addEventListener('keydown', onKeyDown);\n setupARIA(snackbarElement);\n}\n\n/**\n * @param {Element} snackbarElement\n * @return {void}\n */\nexport function setupARIA(snackbarElement) {\n if (snackbarElement.hasAttribute('mdw-no-aria')) {\n return;\n }\n snackbarElement.setAttribute('role', 'alert');\n snackbarElement.setAttribute('tabindex', '-1');\n}\n\n/**\n * @param {KeyboardEvent} event\n * @return {void}\n */\nexport function onKeyDown(event) {\n if (event.key === 'Escape' || event.key === 'Esc') {\n // Allow users to close snackbar with escape, for accessibilty reasons\n event.stopPropagation();\n event.preventDefault();\n /** @type {Element} */\n const snackbarElement = (event.currentTarget);\n hide(snackbarElement);\n }\n}\n\n/**\n * @param {Element} snackbarElement\n * @return {void}\n */\nexport function detach(snackbarElement) {\n const button = snackbarElement.getElementsByClassName('mdw-button')[0];\n if (button) {\n Button.detach(button);\n button.removeEventListener('click', onButtonClick);\n }\n // Remove timeouts and stacks\n SNACKBAR_QUEUE.slice().reverse().forEach((queue, reverseIndex, array) => {\n if (queue.element === snackbarElement) {\n queue.clearHideTimeout();\n const index = array.length - reverseIndex - 1;\n SNACKBAR_QUEUE.splice(index, 1);\n }\n });\n snackbarElement.removeAttribute('mdw-js');\n}\n\n/**\n * @param {MouseEvent} event\n * @return {void}\n */\nexport function onButtonClick(event) {\n /** @type {HTMLElement} */\n const buttonElement = (event.currentTarget);\n if (buttonElement instanceof HTMLAnchorElement) {\n event.preventDefault();\n }\n const snackbarElement = findElementParentByClassName(buttonElement, 'mdw-snackbar');\n hide(snackbarElement);\n}\n\n/** @return {SnackbarQueueItem} */\nexport function getNextSnackbarQueueItem() {\n const nextSnackbar = SnackbarQueueItem[0];\n if (nextSnackbar && (!nextSnackbar.element || !nextSnackbar.element.parentElement)) {\n // Item was removed from DOM externally\n SNACKBAR_QUEUE.splice(0, 1);\n return getNextSnackbarQueueItem();\n }\n return nextSnackbar;\n}\n\n/**\n * @param {Element} element\n * @return {SnackbarQueueItem}\n */\nexport function findNextQueueItem(element) {\n let queue = null;\n SNACKBAR_QUEUE.some((q) => {\n if (q.element === element) {\n queue = q;\n return true;\n }\n return false;\n });\n return queue;\n}\n\n/**\n * @param {AnimationEvent} event\n * @return {void}\n */\nexport function onAnimationEnd(event) {\n handleAnimationChange(/** @type {Element} */ (event.currentTarget));\n}\n\n/**\n * @param {Element} snackbarElement\n * @return {void}\n */\nexport function handleAnimationChange(snackbarElement) {\n const showing = snackbarElement.getAttribute('aria-hidden') === 'false';\n if (showing) {\n const currentQueueItem = findNextQueueItem(snackbarElement);\n if (currentQueueItem && currentQueueItem.hideTimeout) {\n return;\n }\n const autoHideString = snackbarElement.getAttribute('mdw-autohide');\n if (autoHideString == null) {\n return;\n }\n const timeInSeconds = parseFloat(autoHideString) || 4;\n if (timeInSeconds < 0) {\n return;\n }\n const timeout = setTimeout(() => {\n hide(snackbarElement);\n }, timeInSeconds * 1000);\n if (currentQueueItem) {\n currentQueueItem.hideTimeout = timeout;\n }\n return;\n }\n\n const nextQueueItem = findNextQueueItem(snackbarElement);\n if (nextQueueItem) {\n update(snackbarElement, nextQueueItem.options);\n show(snackbarElement);\n return;\n }\n if (snackbarElement.hasAttribute('mdw-autodestroy')) {\n if (snackbarElement.parentElement) {\n snackbarElement.parentElement.removeChild(snackbarElement);\n }\n }\n}\n\n/**\n * @param {Element} snackbarElement\n * @return {boolean} changed\n */\nexport function hide(snackbarElement) {\n if (snackbarElement.getAttribute('aria-hidden') === 'true') {\n return false;\n }\n if (!dispatchDomEvent(snackbarElement, HIDE_EVENT)) {\n return false;\n }\n snackbarElement.setAttribute('aria-hidden', 'true');\n const currentQueueItem = findNextQueueItem(snackbarElement);\n if (currentQueueItem) {\n SNACKBAR_QUEUE.splice(SNACKBAR_QUEUE.indexOf(currentQueueItem), 1);\n }\n if (window.getComputedStyle(snackbarElement).animationName === 'none') {\n nextTick(() => handleAnimationChange(snackbarElement));\n }\n return true;\n}\n\n/**\n * @param {?Element} snackbarElement\n * @return {boolean} changed\n */\nexport function show(snackbarElement) {\n if (snackbarElement.getAttribute('aria-hidden') === 'false') {\n return false;\n }\n if (!dispatchDomEvent(snackbarElement, SHOW_EVENT)) {\n return false;\n }\n snackbarElement.setAttribute('aria-hidden', 'false');\n attach(snackbarElement);\n if (window.getComputedStyle(snackbarElement).animationName === 'none') {\n nextTick(() => handleAnimationChange(snackbarElement));\n }\n return true;\n}\n\n/**\n * @param {Element} element\n * @param {SnackbarCreateOptions} options\n * @return {void}\n */\nexport function update(element, options) {\n element.classList.add('mdw-snackbar');\n if (!element.classList.contains('mdw-theme')) {\n // Guidelines conflict stating a background should be fully opaque\n // But says spec says to use #000000 with 87% opacity\n // Calculated against white, opaque value is #212121 (Gray-900)\n element.classList.add('mdw-theme');\n element.setAttribute('mdw-surface', 'background 900');\n element.setAttribute('mdw-dark', '');\n }\n let span = element.getElementsByTagName('span')[0];\n if (span) {\n // To trigger screen readers, we destroy and create a new span and textnode\n span.parentElement.removeChild(span);\n }\n span = document.createElement('span');\n if (element.firstChild) {\n element.insertBefore(span, element.firstChild);\n } else {\n element.appendChild(span);\n }\n const textNode = document.createTextNode(options.text);\n span.appendChild(textNode);\n let button = element.getElementsByClassName('mdw-button')[0];\n if (options.buttonText) {\n if (!button) {\n button = document.createElement('a');\n element.appendChild(button);\n }\n setTextNode(button, options.buttonText);\n button.classList.add('mdw-button');\n if (typeof options.buttonInk === 'undefined') {\n button.classList.add('mdw-theme');\n button.setAttribute('mdw-ink', 'secondary');\n } else if (typeof options.buttonInk === 'string') {\n button.classList.add('mdw-theme');\n button.setAttribute('mdw-ink', options.buttonInk);\n } else {\n // Don't set attribute if null is passed\n }\n } else if (button && button.parentElement) {\n button.parentElement.removeChild(button);\n }\n if (options.stacked) {\n element.setAttribute('mdw-stacked', '');\n }\n if (options.autoHide !== false) {\n let timeInSeconds;\n if (options.autoHide === true) {\n timeInSeconds = 4;\n } else if (options.autoHide == null) {\n timeInSeconds = 4;\n } else {\n timeInSeconds = options.autoHide;\n }\n if (timeInSeconds > 0) {\n element.setAttribute('mdw-autohide', timeInSeconds.toString());\n }\n }\n if (options.autoDestroy !== false) {\n element.setAttribute('mdw-autodestroy', '');\n }\n}\n\n/**\n * Creates a Snackbar element if required and adds to show queue\n * @param {SnackbarCreateOptions} options\n * @return {HTMLElement}\n */\nexport function create(options) {\n let element;\n let newlyCreated = false;\n if (options.parent) {\n /** @type {HTMLElement} */\n element = (options.parent.getElementsByClassName('mdw-snackbar')[0]);\n }\n if (!element) {\n element = document.createElement('div');\n if (options.parent) {\n options.parent.appendChild(element);\n }\n newlyCreated = true;\n }\n const queue = new SnackbarQueueItem(element, options);\n if (options.skipQueue) {\n SNACKBAR_QUEUE.splice(0, 0, queue);\n } else {\n SNACKBAR_QUEUE.push(queue);\n }\n\n if (options.show !== false) {\n if (newlyCreated) {\n // Update after show to trigger a text change\n update(element, options);\n show(element);\n update(element, options);\n } else {\n show(element);\n }\n }\n return element;\n}\n","module.exports = __webpack_public_path__ + \"snackbar.html\";"],"sourceRoot":""}
|
package/docs/spec.min.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.mdw-overlay{position:relative;outline:none;-webkit-tap-highlight-color:transparent}.mdw-overlay::-moz-focus-inner{border:0}.mdw-overlay:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;transition-delay:1ms;transition-duration:0ms;transition-property:opacity,color,background-color;opacity:0;pointer-events:none;background-color:currentColor;border-radius:inherit}.mdw-ripple{position:relative;-webkit-tap-highlight-color:transparent}.mdw-ripple:not([mdw-ripple-js]){overflow:hidden}.mdw-ripple__container{position:absolute;top:0;right:0;bottom:0;left:0;overflow:hidden;box-sizing:border-box;pointer-events:none;z-index:1;border-radius:inherit}.mdw-ripple__inner{display:block;position:absolute;animation-name:none;animation-duration:.25s;animation-timing-function:linear;animation-direction:normal;animation-fill-mode:forwards;transition-delay:0s;transition-duration:.1s;transition-property:background-color,color;transition-timing-function:cubic-bezier(.4,0,.2,1);opacity:.16;pointer-events:none;transform:scale(0);background-color:currentColor;border-radius:50%}.mdw-ripple__inner[mdw-fade-in-out]{animation-name:ripple-fade-in,ripple-fade-out;animation-duration:.25s,.33333333s;animation-timing-function:linear,cubic-bezier(0,0,.2,1);animation-delay:0ms,.25s}.mdw-ripple__inner[mdw-fade-in]{animation-name:ripple-fade-in}.mdw-ripple__inner[mdw-fade-in-repeat]{animation-name:ripple-fade-in-repeat}.mdw-ripple:not(:active)>.mdw-ripple__container>.mdw-ripple__inner[mdw-fade-in-complete][mdw-fade-in],.mdw-ripple__inner[mdw-fade-out]{animation-name:ripple-fade-out;animation-duration:.33333333s;animation-timing-function:cubic-bezier(0,0,.2,1)}@keyframes ripple-fade-in{0%{transform:scale(0)}to{transform:scale(2)}}@keyframes ripple-fade-in-repeat{0%{transform:scale(0)}to{transform:scale(2)}}@keyframes ripple-fade-out{0%{transform:scale(2)}to{transform:scale(2);opacity:0}}.mdw-ripple:after{display:table;position:absolute;top:50%;left:50%;height:0;width:0;padding:50%;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;transition-delay:80ms,.33s;transition-duration:583.33333ms,.33333333s;transition-property:transform,background-color;transition-timing-function:linear,cubic-bezier(0,0,.2,1);will-change:transform,background-color;opacity:.16;pointer-events:none;transform:translateX(-50%) translateY(-50%) scale(2);background-color:transparent;border-radius:50%;color:inherit;content:""}.mdw-ripple:active:after{transition-delay:0s;transition-duration:0s;transform:translateX(-50%) translateY(-50%) scale(0);background-color:currentColor}.mdw-ripple[aria-disabled=true]:after,.mdw-ripple[aria-disabled=true]>.mdw-ripple__container,.mdw-ripple[disabled]:after,.mdw-ripple[disabled]>.mdw-ripple__container,.mdw-ripple[mdw-ripple-js]:after{display:none}.mdw-appbar{display:flex;flex-direction:column}.mdw-appbar__action{display:flex;flex-direction:row;justify-content:space-between;min-height:64px;transition-duration:inherit;transition-property:min-height;transition-timing-function:inherit;z-index:1}.mdw-appbar[mdw-prominent]>.mdw-appbar__action{min-height:128px}.mdw-appbar[mdw-dense]>.mdw-appbar__action{min-height:48px}.mdw-appbar[mdw-dense][mdw-prominent]>.mdw-appbar__action{min-height:96px}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense][mdw-prominent]>.mdw-appbar__action{min-height:128px}}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense]>.mdw-appbar__action,.mdw-appbar__action{min-height:56px}}@media screen and (max-device-width:959px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense]>.mdw-appbar__action,.mdw-appbar__action{min-height:48px}}.mdw-appbar__content{display:flex;flex-direction:column;flex-grow:1;margin-right:24px;margin-left:80px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-appbar__content{margin-right:16px;margin-left:72px}}.mdw-appbar__title{font-weight:500;letter-spacing:.00937rem;font-size:1.25rem;line-height:1.5rem;align-self:flex-end;justify-content:space-around;overflow-x:hidden;height:auto;flex-grow:1;margin:0 16px;transition-duration:inherit;transition-property:font,letter-spacing;transition-timing-function:inherit;text-overflow:ellipsis;white-space:nowrap}.mdw-appbar__title:after{content:"";display:inline-block;vertical-align:-24px}.mdw-appbar__title[mdw-centered]{flex-grow:0}.mdw-appbar[mdw-dense] .mdw-appbar__title:after{content:"";display:inline-block;vertical-align:-16px}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense] .mdw-appbar__title:after,.mdw-appbar__title:after{content:"";display:inline-block;vertical-align:-20px}}@media screen and (max-device-width:959px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense] .mdw-appbar__title:after,.mdw-appbar__title:after{content:"";display:inline-block;vertical-align:-16px}}.mdw-appbar[mdw-prominent] .mdw-appbar__title{white-space:normal;font-weight:400;letter-spacing:0;font-size:1.5rem;line-height:1.75rem}.mdw-appbar[mdw-prominent] .mdw-appbar__title:after{content:"";display:inline-block;vertical-align:-28px}.mdw-appbar__title[mdw-custom]{margin-top:0}.mdw-appbar__title[mdw-custom]:after{display:none}.mdw-appbar__start{order:-1;margin-left:8px;padding:0 8px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-appbar__start{margin-left:0}}.mdw-appbar__end{order:1;margin-left:0;margin-right:12px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-appbar__end{margin-left:0;margin-right:4px}}[dir=rtl] .mdw-appbar__end{margin-left:12px;margin-right:0}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){[dir=rtl] .mdw-appbar__end{margin-left:4px;margin-right:0}}.mdw-appbar__end,.mdw-appbar__start{display:flex;align-items:flex-start;flex-direction:row}.mdw-appbar__end,.mdw-appbar__start,.mdw-appbar__title{margin-top:12px;transition-property:margin-top}.mdw-appbar[mdw-dense] .mdw-appbar__end,.mdw-appbar[mdw-dense] .mdw-appbar__start,.mdw-appbar[mdw-dense] .mdw-appbar__title{margin-top:4px}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense] .mdw-appbar__end,.mdw-appbar[mdw-dense] .mdw-appbar__start,.mdw-appbar[mdw-dense] .mdw-appbar__title,.mdw-appbar__end,.mdw-appbar__start,.mdw-appbar__title{margin-top:8px}}@media screen and (max-device-width:959px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense] .mdw-appbar__end,.mdw-appbar[mdw-dense] .mdw-appbar__start,.mdw-appbar[mdw-dense] .mdw-appbar__title,.mdw-appbar__end,.mdw-appbar__start,.mdw-appbar__title{margin-top:4px}}.mdw-appbar__start .mdw-button{margin:0}.mdw-appbar__end .mdw-button{margin:0 4px}.mdw-appbar__end .mdw-button[mdw-more-button]{margin-right:-2px;margin-left:0}:root[dir=rtl] .mdw-appbar__end .mdw-button[mdw-more-button]{margin-right:0;margin-left:-2px}.mdw-banner{display:flex;align-items:center;flex-direction:row;justify-content:center;width:100%;border-bottom:1px solid}.mdw-banner__container{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;display:flex;position:relative;align-items:center;flex-wrap:wrap;justify-content:flex-end;box-sizing:border-box;max-width:960px;flex:1;padding-top:8px;padding-bottom:7px}.mdw-banner__icon{position:absolute;top:24px;right:auto;left:16px}:root[dir=rtl] .mdw-banner__icon{right:16px;left:auto}.mdw-banner__icon~.mdw-banner__text{margin-right:0;margin-left:56px}:root[dir=rtl] .mdw-banner__icon~.mdw-banner__text{margin-right:56px;margin-left:0}.mdw-banner__text{flex-grow:1;padding-right:0;padding-left:24px;white-space:pre-line}.mdw-banner__text:before{content:"";display:inline-block;height:1em;margin-top:12px}.mdw-banner__text:after{content:"";display:inline-block;vertical-align:-12px}.mdw-banner__text :root[dir=rtl]{padding-right:24px;padding-left:0}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-banner__text{padding-right:0;padding-left:16px}:root[dir=rtl] .mdw-banner__text{padding-right:16px;padding-left:0}}.mdw-banner__buttons{display:flex;flex-direction:row-reverse;flex-wrap:wrap;justify-content:flex-start;max-width:100%;flex:none}.mdw-banner__buttons .mdw-button{margin-right:8px;margin-left:0;text-align:end}:root[dir=rtl] .mdw-banner__buttons .mdw-button{margin-right:0;margin-left:8px}@media screen and (min-width:1024px){.mdw-banner{flex-wrap:nowrap}.mdw-banner__buttons{margin-right:0;margin-left:90px}:root[dir=rtl] .mdw-banner__buttons{margin-right:90px;margin-left:0}}.mdw-bottomnav{display:flex;position:relative;align-items:stretch;flex-direction:row;justify-content:center;overflow:hidden;min-height:56px;width:100%}.mdw-bottomnav__item{display:flex;position:relative;align-items:center;flex-direction:column;justify-content:flex-start;overflow:visible;min-width:80px;max-width:168px;flex:1;margin:0;padding:0;cursor:pointer;-webkit-tap-highlight-color:transparent;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;z-index:0;border-radius:0;box-shadow:none}.mdw-bottomnav__icon{position:absolute;top:0;left:50%;margin:0 0 0 -12px;padding:0;transition-duration:.2s,.1s;transition-property:transform,color;transition-timing-function:cubic-bezier(.4,0,.2,1);pointer-events:none;transform:translateY(8px)}.mdw-bottomnav__icon:last-child{transform:translateY(16px)}.mdw-bottomnav__badge{visibility:hidden;position:absolute;top:0;right:auto;left:16px;box-sizing:border-box;min-height:8px;min-width:8px;padding:2px;z-index:1;border-radius:8px;font:inherit;font-weight:400;font-size:10px;line-height:12px;letter-spacing:normal}:root[dir=rtl] .mdw-bottomnav__badge{right:16px;left:auto}.mdw-bottomnav__badge[mdw-badge]{visibility:visible}.mdw-bottomnav__badge[mdw-badge]:before{content:attr(mdw-badge)}.mdw-bottomnav__badge[data-mdw-badge]{visibility:visible}.mdw-bottomnav__badge[data-mdw-badge]:before{content:attr(data-mdw-badge)}.mdw-bottomnav__label{font-weight:400;letter-spacing:.025rem;font-size:.75rem;line-height:1rem;box-sizing:border-box;max-width:100%;padding:0 12px;transition-duration:.2s;transition-property:transform,opacity,color;transition-timing-function:cubic-bezier(.4,0,.2,1);pointer-events:none;text-align:center;word-break:break-all;word-break:break-word}.mdw-bottomnav__label:before{content:"";display:inline-block;height:1em;margin-top:32px}.mdw-bottomnav__label:after{content:"";display:inline-block;vertical-align:-8px}.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__icon{transform:translateY(16px)}.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__label{opacity:0;transform:translateY(8px)}.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__item[aria-selected=true]>.mdw-bottomnav__label{opacity:1;transform:translateY(0)}.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__item[aria-selected=true]>.mdw-bottomnav__icon{transform:translateY(8px)}.mdw-button{display:inline-flex;position:relative;align-items:center;justify-content:center;overflow:hidden;box-sizing:border-box;height:36px;min-width:64px;margin:0 8px;border:none;padding:0 8px;-moz-appearance:none;-webkit-appearance:none;appearance:none;cursor:pointer;-webkit-tap-highlight-color:transparent;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;transition-duration:.2s,.1s;transition-property:box-shadow,background-color,color;transition-timing-function:cubic-bezier(.4,0,.2,1);z-index:0;border-radius:4px;color:inherit;text-align:center;text-decoration:none}.mdw-button::-moz-focus-inner{border:0}.mdw-button[mdw-border-ink],.mdw-button[mdw-surface]{padding:0 16px}.mdw-button:not([mdw-surface]){background-color:transparent}.mdw-button:not([mdw-icon]){font-weight:500;text-transform:uppercase;letter-spacing:.07812rem;font-size:.875rem;line-height:1rem;font-family:inherit;word-spacing:normal}.mdw-button[mdw-border-ink]{border-style:solid;border-width:1px}.mdw-button[mdw-border-ink]:before,.mdw-button[mdw-border-ink]>.mdw-ripple{box-sizing:content-box;height:100%;width:100%;margin-top:-1px;margin-left:-1px;padding-right:2px;padding-bottom:2px}.mdw-button[mdw-icon]{height:40px;min-width:40px;padding:8px;font-size:24px}.mdw-button[mdw-icon],.mdw-button[mdw-image]{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;border-radius:50%}.mdw-button[mdw-image]{height:24px;min-width:24px;margin:0;padding:0}.mdw-button[mdw-image]>{position:absolute;top:0;left:0;height:100%;width:auto}.mdw-button[mdw-raised]{box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)}.mdw-button[mdw-raised]:active{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}.mdw-button[aria-disabled=true],.mdw-button[disabled]{cursor:not-allowed}.mdw-button[aria-disabled=true],.mdw-button[aria-disabled=true][mdw-raised],.mdw-button[disabled],.mdw-button[disabled][mdw-raised],.mdw-card{box-shadow:none}.mdw-card{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;display:block;position:relative;outline:none;transition-duration:.2s;transition-property:box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1);border-radius:4px}.mdw-card:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:1px solid;border-color:inherit;border-radius:inherit}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-card:not([mdw-elevation]){box-shadow:0 0 2px 0 rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.12),0 1px 3px 0 rgba(0,0,0,.2)}.mdw-card:not([mdw-elevation]):before{border-color:transparent}}.mdw-card[mdw-elevation="1"]{box-shadow:0 0 2px 0 rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.12),0 1px 3px 0 rgba(0,0,0,.2)}.mdw-card[mdw-elevation="8"],.mdw-card[mdw-raised~=focus-within]:focus-within,.mdw-card[mdw-raised~=focus]:focus,.mdw-card[mdw-raised~=hover]:hover{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}.mdw-card[mdw-elevation="1"]:before,.mdw-card[mdw-elevation="8"]:before{border-color:transparent}.mdw-card__actions,.mdw-card__end,.mdw-card__start{position:relative;z-index:2}.mdw-card__content,.mdw-card__header,.mdw-card__subheader,.mdw-card__supporting-text{padding:0 16px}.mdw-card__supporting-text:before{content:"";display:inline-block;height:1em;margin-top:14px}.mdw-card__supporting-text:after{content:"";display:inline-block;vertical-align:-16px}.mdw-card>.mdw-divider{width:calc(100% - 32px);margin-right:16px;margin-left:16px}.mdw-card__thumbnail{margin:16px 16px 0}.mdw-card__start{float:left}.mdw-card__end,:root[dir=rtl] .mdw-card__start{float:right}:root[dir=rtl] .mdw-card__end{float:left}.mdw-card__image{height:auto;width:100%}.mdw-card__media{position:relative;line-height:0}.mdw-card__media[mdw-ratio]>.mdw-card__image{position:absolute;height:100%;object-fit:cover}.mdw-card__media[mdw-ratio]:after{content:"";display:inline-block;height:0;width:auto}.mdw-card__media[mdw-ratio="16:9"]:after{padding-bottom:56.25%}.mdw-card__media[mdw-ratio="3:2"]:after{padding-bottom:66.66667%}.mdw-card__media[mdw-ratio="4:3"]:after{padding-bottom:75%}.mdw-card__media[mdw-ratio="1:1"]:after{padding-bottom:100%}.mdw-card__header-thumbnail{align-self:center;min-height:40px;min-width:40px;margin-right:16px;margin-left:0}:root[dir=rtl] .mdw-card__header-thumbnail{margin-right:0;margin-left:16px}.mdw-card__header{margin:0}h5.mdw-card__header{font-weight:400;letter-spacing:0;font-size:1.5rem;line-height:1.75rem;margin-bottom:-28px}h5.mdw-card__header:before{content:"";display:inline-block;height:1em;margin-top:16px}h5.mdw-card__header:after{content:"";display:inline-block;vertical-align:-28px}h6.mdw-card__header{font-weight:500;letter-spacing:.00937rem;font-size:1.25rem;line-height:1.5rem}h6.mdw-card__header:before{content:"";display:inline-block;height:1em;margin-top:14px}.mdw-card__header[mdw-two-line]{margin-bottom:-22px}.mdw-card__header[mdw-two-line]:after{content:"";display:inline-block;vertical-align:-22px}.mdw-card__header[mdw-two-line]~.mdw-card__subheader:before{content:"";display:inline-block;height:1em;margin-top:8px}.mdw-card__header[mdw-two-line]~.mdw-card__subheader:after{content:"";display:inline-block;vertical-align:-16px}.mdw-card__actions{display:flex;padding-top:8px;padding-right:4px;padding-left:4px}.mdw-card__actions>.mdw-button{margin:0 4px}.mdw-card__actions>span{flex:1}.mdw-card__actions:last-child,.mdw-card__supporting-text:last-child{padding-bottom:8px}.mdw-button.mdw-card__button{position:absolute;top:0;left:0;height:100%;width:100%;margin:0;padding:0;z-index:1;border-radius:inherit}.mdw-chip{margin:0 0 -8px -8px}:root[dir=rtl] .mdw-chip{margin:0 -8px -8px 0}.mdw-chip__item{display:inline-flex;position:relative;align-items:center;overflow:hidden;min-height:32px;margin:0 0 8px 8px;padding:0 12px;transition:inherit;border-radius:32px}:root[dir=rtl] .mdw-chip__item{margin:0 8px 8px 0}.mdw-chip__checkmark,.mdw-chip__thumbnail{display:flex;align-items:center;order:-1;margin-right:8px;margin-left:-8px;transition:inherit;transition-property:max-width,opacity}:root[dir=rtl] .mdw-chip__checkmark,:root[dir=rtl] .mdw-chip__thumbnail{margin-right:-8px;margin-left:8px}.mdw-chip__input{position:absolute;top:0;left:0;box-sizing:border-box;height:100%;width:100%;margin:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;outline:none;-webkit-tap-highlight-color:transparent;transition:inherit;transition-property:none;border:1px solid transparent;border-radius:inherit}.mdw-chip__input:before{content:"";position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;transition:inherit;transition-property:background-color,opacity;border-radius:inherit}.mdw-chip__input~.mdw-chip__checkmark{max-width:0;opacity:0}.mdw-chip__input:checked~.mdw-chip__checkmark{max-width:24px;opacity:1}.mdw-chip__text{transition:inherit;transition-property:color}.mdw-chip__remove{display:flex;align-items:center;order:1;margin-right:-4px;margin-left:8px;cursor:pointer;z-index:1}:root[dir=rtl] .mdw-chip__remove{margin-right:8px;margin-left:-4px}.mdw-chip__remove.material-icons{font-size:18px}.mdw-datatable{display:flex;flex-direction:column}.mdw-datatable table{display:table;border-collapse:collapse;width:100%}.mdw-datatable__header,.mdw-datatable caption{font-weight:500;letter-spacing:.00937rem;font-size:1.25rem;line-height:1.5rem;min-height:64px}.mdw-datatable caption{caption-side:top;padding:0 16px;line-height:64px;text-align:left;text-align:start}:root[dir=rtl] .mdw-datatable caption{text-align:right;text-align:start}.mdw-datatable__header{display:flex;align-items:center;flex-direction:row;flex:none}.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-right:0;padding-left:16px}:root[dir=rtl] .mdw-datatable__header-text{padding-right:16px;padding-left:0}.mdw-datatable tr{height:48px;border-bottom-style:solid;border-bottom-width:1px;outline:none}.mdw-datatable thead>tr{height:48px}.mdw-datatable td{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;padding-top:4px;padding-bottom:3px;outline:none}.mdw-datatable td[mdw-selector]+td{padding-right:16px;padding-left:12px}:root[dir=rtl] .mdw-datatable td[mdw-selector]+td{padding-right:12px;padding-left:16px}.mdw-datatable td[mdw-selector],.mdw-datatable th[mdw-selector]{width:24px;padding-right:0;padding-left:16px}:root[dir=rtl] .mdw-datatable td[mdw-selector],:root[dir=rtl] .mdw-datatable th[mdw-selector]{padding-right:16px;padding-left:0}.mdw-datatable th{font-weight:400;letter-spacing:.025rem;font-size:.75rem;line-height:1rem;white-space:nowrap}.mdw-datatable th[mdw-selector]+th{padding-right:16px;padding-left:12px}:root[dir=rtl] .mdw-datatable th[mdw-selector]+th{padding-right:12px;padding-left:16px}.mdw-datatable td,.mdw-datatable th{padding-right:16px;padding-left: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]{width:100%;border-right-style:solid;border-width:1px}:root[dir=rtl] .mdw-datatable td[mdw-primary-column],:root[dir=rtl] .mdw-datatable th[mdw-primary-column]{border-right-style:none;border-left-style:solid}.mdw-datatable__sort-icon{display:inline-block;vertical-align:bottom;max-width:0;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transform:translateX(-16px) rotate(180deg);transform-origin:8px 8px;color:transparent}.mdw-datatable__sort-icon.material-icons{font-size:16px}.mdw-datatable th[mdw-sortable]{cursor:pointer;-webkit-tap-highlight-color:transparent;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.mdw-datatable th[mdw-sortable]:hover .mdw-datatable__sort-icon,.mdw-datatable th[mdw-sortable][mdw-sorted] .mdw-datatable__sort-icon{transform:translateX(-16px) rotate(180deg);color:inherit}.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}:root[dir=rtl] .mdw-datatable td[data-type=text],:root[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}:root[dir=rtl] .mdw-datatable td[data-type=number],:root[dir=rtl] .mdw-datatable th[data-type=number]{text-align:left;text-align:end}.mdw-datatable__scroller{overflow:auto}.mdw-datatable__footer{font-weight:400;letter-spacing:.025rem;font-size:.75rem;line-height:1rem;display:flex;align-items:center;flex-direction:row;justify-content:flex-end;min-height:56px;flex:none}@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-right:28px;margin-left:2px}:root[dir=rtl] .mdw-datatable__footer-details,:root[dir=rtl] .mdw-datatable__footer-options{margin-right:2px;margin-left:28px}.mdw-datatable__footer-controls,.mdw-datatable__header-controls{display:inline-flex;margin-right:4px;margin-left:4px}.mdw-datatable__footer-controls .mdw-button,.mdw-datatable__header-controls .mdw-button{margin:0 4px}.mdw-datatable__footer-controls{direction:ltr}:root[dir=rtl] .mdw-datatable__footer-controls{transform:scaleX(-1)}.mdw-datatable__footer-options{display:flex;align-items:center}.mdw-datatable__footer-options select.mdw-textfield__input{min-width:64px;direction:rtl}:root[dir=rtl] .mdw-datatable__footer-options select.mdw-textfield__input{direction:ltr}.mdw-dialog__close{position:absolute;top:0;left:0;-ms-overflow-style:none;overflow-y:scroll;overscroll-behavior:none;overscroll-behavior:contain;-ms-scroll-chaining:none;scrollbar-width:none;height:100%;width:100%;cursor:default;pointer-events:inherit;z-index:8}.mdw-dialog__close::-webkit-scrollbar{display:none}.mdw-dialog__close:after{display:block;content:"";height:200%;width:200%}.mdw-dialog{display:flex;position:absolute;top:0;left:0;align-items:center;flex-direction:row;justify-content:center;box-sizing:border-box;height:100%;width:100%;padding:84px 40px;transition-duration:75ms;transition-property:opacity,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:0;pointer-events:none;visibility:hidden;z-index:24;background-color:rgba(0,0,0,.5)}.mdw-dialog:not([aria-hidden]){transition:none}.mdw-dialog[mdw-width-units="3"] .mdw-dialog__popup{min-width:168px}.mdw-dialog[mdw-width-units="4"] .mdw-dialog__popup{min-width:224px}.mdw-dialog[mdw-width-units="5"] .mdw-dialog__popup{min-width:280px}.mdw-dialog[mdw-width-units="6"] .mdw-dialog__popup{min-width:336px}.mdw-dialog[mdw-width-units="7"] .mdw-dialog__popup{min-width:392px}.mdw-dialog[aria-hidden=false],.mdw-dialog[id]:target{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(0,0,.2,1);opacity:1;pointer-events:auto;visibility:visible}.mdw-dialog[aria-hidden=false] .mdw-dialog__popup,.mdw-dialog[id]:target .mdw-dialog__popup{transform:scale(1)}.mdw-dialog__popup{display:flex;position:relative;flex-direction:column;overflow-y:auto;overscroll-behavior:none;overscroll-behavior:contain;-ms-scroll-chaining:none;max-height:100%;min-width:224px;max-width:100%;flex-shrink:1;transition-duration:inherit;transition-property:transform;transition-timing-function:inherit;transform:scale(0);transform-origin:bottom center;z-index:24;border-radius:4px;box-shadow:0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12),0 11px 15px 0 rgba(0,0,0,.2)}.mdw-dialog__title{font-weight:500;letter-spacing:.00937rem;font-size:1.25rem;line-height:1.5rem;margin-bottom:-36px;padding:0 24px}.mdw-dialog__title:before{content:"";display:inline-block;height:1em;margin-top:20px}.mdw-dialog__title:after{content:"";display:inline-block;vertical-align:-36px}.mdw-dialog__body{font-weight:400;letter-spacing:.03125rem;font-size:1rem;line-height:1.5rem;padding:0 24px}.mdw-dialog__body:before{content:"";display:inline-block;height:1em;margin-top:20px}.mdw-dialog__body:after{content:"";display:inline-block;vertical-align:-28px}.mdw-dialog__header{min-height:64px}.mdw-dialog__scrolling{overflow-y:scroll}.mdw-dialog__button-area{display:flex;flex-direction:row-reverse;flex-wrap:wrap;justify-content:flex-start;flex:none;margin-top:8px;margin-bottom:8px}.mdw-dialog__button-area[mdw-stacked]{margin-top:0}.mdw-dialog__button-area[mdw-stacked] .mdw-button{justify-content:flex-end;min-height:48px;flex-basis:100%;margin-right:0;padding-right:16px;padding-left:16px}.mdw-dialog__button-area[mdw-stacked] .mdw-button,:root[dir=rtl] .mdw-dialog__button-area[mdw-stacked] .mdw-button{margin-left:0}.mdw-dialog__button-area .mdw-button{margin-right:8px;margin-left:0;text-align:end}:root[dir=rtl] .mdw-dialog__button-area .mdw-button{margin-right:0;margin-left:8px}.mdw-divider{min-height:1px;height:1px;width:100%;margin-top:-1px;background-color:currentColor}.mdw-elevation[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[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[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[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[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[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[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[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[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[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{display:flex;position:relative;align-items:flex-end;flex-direction:column-reverse;justify-content:center;height:56px;pointer-events:none;z-index:6}.mdw-fab[mdw-horizontal]{flex-direction:row-reverse}.mdw-fab__close{position:fixed;top:0;right:0;bottom:0;left:0;cursor:default;pointer-events:auto;visibility:hidden}.mdw-fab__button.mdw-button{order:-1;box-sizing:content-box;height:24px;min-width:24px;margin:0;padding:16px;pointer-events:auto;border-radius:32px;box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2)}.mdw-fab__button.mdw-button:active{box-shadow:0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12),0 7px 8px 0 rgba(0,0,0,.2)}.mdw-fab__button.mdw-button[mdw-extended]{padding:12px}.mdw-fab__button.mdw-button[mdw-mini]{padding:8px}.mdw-fab__speed-dial{display:flex;position:absolute;right:0;bottom:100%;left:auto;align-items:center;flex-direction:inherit;order:1;pointer-events:none;z-index:inherit}:root[dir=rtl] .mdw-fab__speed-dial{right:auto;left:0}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button{margin:0 0 16px;transition-duration:.2s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:0;transform:scale(0)}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button[mdw-mini]{margin:0 8px 16px}.mdw-fab__button[mdw-mini]~.mdw-fab__speed-dial>.mdw-fab__button.mdw-button[mdw-mini]{margin:0 0 16px}.mdw-fab__button[mdw-extended]~.mdw-fab__speed-dial>.mdw-fab__button.mdw-button[mdw-mini]{margin:0 4px 16px}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:last-child{transition-delay:0ms}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(2){transition-delay:40ms}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(3){transition-delay:80ms}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(4){transition-delay:.12s}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(5){transition-delay:.16s}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(6){transition-delay:.2s}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(7){transition-delay:.24s}.mdw-fab__icon{position:relative;height:24px;width:24px;transition-duration:.2s;transition-property:margin;transition-timing-function:linear}.mdw-fab__text{overflow:hidden;transition-duration:.2s;transition-property:font-size,margin-left,margin-right;transition-timing-function:linear;will-change:font-size;font-size:0;letter-spacing:0}.mdw-fab__button[mdw-extended=hover]:hover,.mdw-fab__button[mdw-extended]:not([mdw-extended=hover]){padding:12px 16px}.mdw-fab__button[mdw-extended=hover]:hover .mdw-fab__text,.mdw-fab__button[mdw-extended]:not([mdw-extended=hover]) .mdw-fab__text{font-size:inherit;letter-spacing:inherit}.mdw-fab__button[mdw-extended=hover]:hover .mdw-fab__icon+.mdw-fab__text,.mdw-fab__button[mdw-extended]:not([mdw-extended=hover]) .mdw-fab__icon+.mdw-fab__text{margin-right:4px;margin-left:8px}:root[dir=rtl] .mdw-fab__button[mdw-extended=hover]:hover .mdw-fab__icon+.mdw-fab__text,:root[dir=rtl] .mdw-fab__button[mdw-extended]:not([mdw-extended=hover]) .mdw-fab__icon+.mdw-fab__text{margin-right:8px;margin-left:4px}.mdw-fab__hidden-icon,.mdw-fab__shown-icon{position:absolute;top:0;left:0}.mdw-fab__shown-icon{display:none}.mdw-fab:target>.mdw-fab__button{pointer-events:none}.mdw-fab:target>.mdw-fab__button .mdw-fab__hidden-icon,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__button .mdw-fab__hidden-icon{display:none}.mdw-fab:target>.mdw-fab__button .mdw-fab__shown-icon,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__button .mdw-fab__shown-icon{display:block}.mdw-fab:target>.mdw-fab__close,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__close{visibility:visible}.mdw-fab:target>.mdw-fab__speed-dial,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial,.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover],.mdw-fab__speed-dial[mdw-hover]:hover{pointer-events:auto}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button,.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button,.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button{transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);opacity:1;transform:scale(1);box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2)}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:active,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:active,.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:active,.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:active{box-shadow:0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12),0 7px 8px 0 rgba(0,0,0,.2)}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:first-child,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:first-child,.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:first-child,.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:first-child{transition-delay:0ms}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(2),.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(2),.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:nth-child(2),.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:nth-child(2){transition-delay:40ms}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(3),.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(3),.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:nth-child(3),.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:nth-child(3){transition-delay:80ms}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(4),.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(4),.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:nth-child(4),.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:nth-child(4){transition-delay:.12s}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(5),.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(5),.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:nth-child(5),.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:nth-child(5){transition-delay:.16s}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(6),.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(6),.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:nth-child(6),.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:nth-child(6){transition-delay:.2s}.mdw-grid{display:flex;flex-wrap:wrap;grid-auto-flow:row;grid-auto-rows:auto;grid-template-columns:repeat(12,1fr);margin-top:-24px;margin-left:-24px;padding-right:24px;padding-left:24px;-ms-grid-columns:(1fr)[12];-ms-grid-rows:auto}.mdw-grid[mdw-grid]{display:grid;display:-ms-grid}.mdw-grid[mdw-dense]{grid-auto-flow:row dense}.mdw-grid[mdw-center]{justify-content:center}.mdw-grid[mdw-margin-top]{padding-top:24px}.mdw-grid[mdw-margin-bottom]{padding-bottom:24px}.mdw-grid__item{box-sizing:border-box;max-width:100%;flex-grow:0;flex-shrink:1;padding-top:24px;padding-left:24px;transition-duration:.2s;transition-property:flex,width,padding;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-grid__item:not([mdw-colspan]),.mdw-grid__item[mdw-colspan="1"]{width:8.33333%}.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid__item[mdw-colspan="2"]{width:16.66667%}.mdw-grid__item[mdw-colspan="3"]{width:25%}.mdw-grid__item[mdw-colspan="4"]{width:33.33333%}.mdw-grid__item[mdw-colspan="5"]{width:41.66667%}.mdw-grid__item[mdw-colspan="6"]{width:50%}.mdw-grid__item[mdw-colspan="7"]{width:58.33333%}.mdw-grid__item[mdw-colspan="8"]{width:66.66667%}.mdw-grid__item[mdw-colspan="9"]{width:75%}.mdw-grid__item[mdw-colspan="10"]{width:83.33333%}.mdw-grid__item[mdw-colspan="11"]{width:91.66667%}.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:9;grid-column-end:span 9}.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:12;grid-column-end:span 12}.mdw-grid[mdw-grid]>.mdw-grid__item{min-width:100%}.mdw-grid[mdw-stretch]>.mdw-grid__item{flex-grow:1}.mdw-grid__item[mdw-colspan="25%"]{width:25%}.mdw-grid__item[mdw-colspan="50%"]{width:50%}.mdw-grid__item[mdw-colspan="75%"]{width:75%}.mdw-grid__item[mdw-colspan="100%"]{width:100%}.mdw-grid__item[mdw-rowspan="2"]{-ms-grid-row-span:2;grid-row-end:span 2}.mdw-grid__item[mdw-colspan="2"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-grid__item[mdw-rowspan="3"]{-ms-grid-row-span:3;grid-row-end:span 3}.mdw-grid__item[mdw-colspan="3"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-grid__item[mdw-rowspan="4"]{-ms-grid-row-span:4;grid-row-end:span 4}.mdw-grid__item[mdw-colspan="4"]{-ms-grid-column-span:4;grid-column-end:span 4}.mdw-grid__item[mdw-rowspan="5"]{-ms-grid-row-span:5;grid-row-end:span 5}.mdw-grid__item[mdw-colspan="5"]{-ms-grid-column-span:5;grid-column-end:span 5}.mdw-grid__item[mdw-rowspan="6"]{-ms-grid-row-span:6;grid-row-end:span 6}.mdw-grid__item[mdw-colspan="6"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-grid__item[mdw-rowspan="7"]{-ms-grid-row-span:7;grid-row-end:span 7}.mdw-grid__item[mdw-colspan="7"]{-ms-grid-column-span:7;grid-column-end:span 7}.mdw-grid__item[mdw-rowspan="8"]{-ms-grid-row-span:8;grid-row-end:span 8}.mdw-grid__item[mdw-colspan="8"]{-ms-grid-column-span:8;grid-column-end:span 8}.mdw-grid__item[mdw-rowspan="9"]{-ms-grid-row-span:9;grid-row-end:span 9}.mdw-grid__item[mdw-colspan="9"]{-ms-grid-column-span:9;grid-column-end:span 9}.mdw-grid__item[mdw-rowspan="10"]{-ms-grid-row-span:10;grid-row-end:span 10}.mdw-grid__item[mdw-colspan="10"]{-ms-grid-column-span:10;grid-column-end:span 10}.mdw-grid__item[mdw-rowspan="11"]{-ms-grid-row-span:11;grid-row-end:span 11}.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:11;grid-column-end:span 11}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-grid{margin-top:-16px;margin-left:-16px;padding-right:16px;padding-left:16px}.mdw-grid[mdw-margin-top]{padding-top:16px}.mdw-grid[mdw-margin-bottom]{padding-bottom:16px}.mdw-grid>.mdw-grid__item{padding-top:16px;padding-left:16px}}.mdw-grid__content{box-sizing:border-box;max-height:100%;height:100%;max-width:100%;width:100%;flex:100%}.mdw-grid[mdw-columns="8"]{grid-template-columns:repeat(8,1fr);-ms-grid-columns:(1fr)[8]}.mdw-grid[mdw-columns="8"]>.mdw-grid__item:not([mdw-colspan]),.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="1"]{width:12.5%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="2"]{width:25%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="3"]{width:37.5%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="4"]{width:50%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="5"]{width:62.5%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="6"]{width:75%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="7"]{width:87.5%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="8"]{width:100%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="9"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="10"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:8;grid-column-end:span 8;width:100%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:4;grid-column-end:span 4}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:8;grid-column-end:span 8}@media screen and (max-width:839px){.mdw-grid{grid-template-columns:repeat(8,1fr);-ms-grid-columns:(1fr)[8]}.mdw-grid__item:not([mdw-colspan]),.mdw-grid__item[mdw-colspan="1"]{width:12.5%}.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid__item[mdw-colspan="2"]{width:25%}.mdw-grid__item[mdw-colspan="3"]{width:37.5%}.mdw-grid__item[mdw-colspan="4"]{width:50%}.mdw-grid__item[mdw-colspan="5"]{width:62.5%}.mdw-grid__item[mdw-colspan="6"]{width:75%}.mdw-grid__item[mdw-colspan="7"]{width:87.5%}.mdw-grid__item[mdw-colspan="8"]{width:100%}.mdw-grid__item[mdw-colspan="9"],.mdw-grid__item[mdw-colspan="10"],.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:8;grid-column-end:span 8;width:100%}.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:4;grid-column-end:span 4}.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:8;grid-column-end:span 8}}.mdw-grid[mdw-columns="4"]{grid-template-columns:repeat(4,1fr);-ms-grid-columns:(1fr)[4]}.mdw-grid[mdw-columns="4"]>.mdw-grid__item:not([mdw-colspan]),.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="1"]{width:25%}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="2"]{width:50%}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="3"]{width:75%}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="4"]{width:100%}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="5"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="6"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="7"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="8"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="9"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="10"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:4;grid-column-end:span 4;width:100%}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:1;grid-column-end:span 1}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:4;grid-column-end:span 4}@media screen and (max-width:599px){.mdw-grid,.mdw-grid[mdw-columns="8"]{grid-template-columns:repeat(4,1fr);-ms-grid-columns:(1fr)[4]}.mdw-grid[mdw-columns="8"]>.mdw-grid__item:not([mdw-colspan]),.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="1"],.mdw-grid__item:not([mdw-colspan]),.mdw-grid__item[mdw-colspan="1"]{width:25%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-stretch],.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="2"],.mdw-grid__item[mdw-colspan="2"]{width:50%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="3"],.mdw-grid__item[mdw-colspan="3"]{width:75%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="4"],.mdw-grid__item[mdw-colspan="4"]{width:100%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="5"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="6"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="7"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="8"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="9"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="10"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="11"],.mdw-grid__item[mdw-colspan="5"],.mdw-grid__item[mdw-colspan="6"],.mdw-grid__item[mdw-colspan="7"],.mdw-grid__item[mdw-colspan="8"],.mdw-grid__item[mdw-colspan="9"],.mdw-grid__item[mdw-colspan="10"],.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:4;grid-column-end:span 4;width:100%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="25%"],.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:1;grid-column-end:span 1}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="50%"],.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="75%"],.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="100%"],.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:4;grid-column-end:span 4}}.mdw-grid[mdw-columns="1"]{grid-template-columns:1fr;-ms-grid-columns:1fr}.mdw-grid[mdw-columns="1"]>.mdw-grid__item:not([mdw-colspan]),.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="1"]{width:100%}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="2"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="3"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="4"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="5"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="6"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="7"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="8"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="9"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="10"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:1;grid-column-end:span 1;width:100%}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:.25;grid-column-end:span .25;width:100%}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:.5;grid-column-end:span .5;width:100%}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:.75;grid-column-end:span .75;width:100%}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:1;grid-column-end:span 1}.mdw-grid[mdw-columns="1"][mdw-margin="0"],.mdw-grid[mdw-columns="4"][mdw-margin-4col="0"],.mdw-grid[mdw-columns="8"][mdw-margin-8col="0"],.mdw-grid[mdw-margin="0"]{padding-right:0;padding-left:0}.mdw-grid[mdw-columns="1"][mdw-margin="0"][mdw-margin-bottom],.mdw-grid[mdw-columns="4"][mdw-margin-4col="0"][mdw-margin-bottom],.mdw-grid[mdw-columns="8"][mdw-margin-8col="0"][mdw-margin-bottom],.mdw-grid[mdw-margin="0"][mdw-margin-bottom]{padding-bottom:0}.mdw-grid[mdw-columns="1"][mdw-margin="0"][mdw-margin-top],.mdw-grid[mdw-columns="4"][mdw-margin-4col="0"][mdw-margin-top],.mdw-grid[mdw-columns="8"][mdw-margin-8col="0"][mdw-margin-top],.mdw-grid[mdw-margin="0"][mdw-margin-top]{padding-top:0}.mdw-grid[mdw-columns="1"][mdw-gutter="0"],.mdw-grid[mdw-columns="4"][mdw-gutter-4col="0"],.mdw-grid[mdw-columns="8"][mdw-gutter-8col="0"],.mdw-grid[mdw-gutter="0"]{margin-top:0;margin-left:0}.mdw-grid[mdw-columns="1"][mdw-gutter="0"]>.mdw-grid__item,.mdw-grid[mdw-columns="4"][mdw-gutter-4col="0"]>.mdw-grid__item,.mdw-grid[mdw-columns="8"][mdw-gutter-8col="0"]>.mdw-grid__item,.mdw-grid[mdw-gutter="0"]>.mdw-grid__item{padding-top:0;padding-left:0}.mdw-grid[mdw-columns="1"][mdw-margin="8"],.mdw-grid[mdw-columns="4"][mdw-margin-4col="8"],.mdw-grid[mdw-columns="8"][mdw-margin-8col="8"],.mdw-grid[mdw-margin="8"]{padding-right:8px;padding-left:8px}.mdw-grid[mdw-columns="1"][mdw-margin="8"][mdw-margin-bottom],.mdw-grid[mdw-columns="4"][mdw-margin-4col="8"][mdw-margin-bottom],.mdw-grid[mdw-columns="8"][mdw-margin-8col="8"][mdw-margin-bottom],.mdw-grid[mdw-margin="8"][mdw-margin-bottom]{padding-bottom:8px}.mdw-grid[mdw-columns="1"][mdw-margin="8"][mdw-margin-top],.mdw-grid[mdw-columns="4"][mdw-margin-4col="8"][mdw-margin-top],.mdw-grid[mdw-columns="8"][mdw-margin-8col="8"][mdw-margin-top],.mdw-grid[mdw-margin="8"][mdw-margin-top]{padding-top:8px}.mdw-grid[mdw-columns="1"][mdw-gutter="8"],.mdw-grid[mdw-columns="4"][mdw-gutter-4col="8"],.mdw-grid[mdw-columns="8"][mdw-gutter-8col="8"],.mdw-grid[mdw-gutter="8"]{margin-top:-8px;margin-left:-8px}.mdw-grid[mdw-columns="1"][mdw-gutter="8"]>.mdw-grid__item,.mdw-grid[mdw-columns="4"][mdw-gutter-4col="8"]>.mdw-grid__item,.mdw-grid[mdw-columns="8"][mdw-gutter-8col="8"]>.mdw-grid__item,.mdw-grid[mdw-gutter="8"]>.mdw-grid__item{padding-top:8px;padding-left:8px}.mdw-grid[mdw-columns="1"][mdw-margin="16"],.mdw-grid[mdw-columns="4"][mdw-margin-4col="16"],.mdw-grid[mdw-columns="8"][mdw-margin-8col="16"],.mdw-grid[mdw-margin="16"]{padding-right:16px;padding-left:16px}.mdw-grid[mdw-columns="1"][mdw-margin="16"][mdw-margin-bottom],.mdw-grid[mdw-columns="4"][mdw-margin-4col="16"][mdw-margin-bottom],.mdw-grid[mdw-columns="8"][mdw-margin-8col="16"][mdw-margin-bottom],.mdw-grid[mdw-margin="16"][mdw-margin-bottom]{padding-bottom:16px}.mdw-grid[mdw-columns="1"][mdw-margin="16"][mdw-margin-top],.mdw-grid[mdw-columns="4"][mdw-margin-4col="16"][mdw-margin-top],.mdw-grid[mdw-columns="8"][mdw-margin-8col="16"][mdw-margin-top],.mdw-grid[mdw-margin="16"][mdw-margin-top]{padding-top:16px}.mdw-grid[mdw-columns="1"][mdw-gutter="16"],.mdw-grid[mdw-columns="4"][mdw-gutter-4col="16"],.mdw-grid[mdw-columns="8"][mdw-gutter-8col="16"],.mdw-grid[mdw-gutter="16"]{margin-top:-16px;margin-left:-16px}.mdw-grid[mdw-columns="1"][mdw-gutter="16"]>.mdw-grid__item,.mdw-grid[mdw-columns="4"][mdw-gutter-4col="16"]>.mdw-grid__item,.mdw-grid[mdw-columns="8"][mdw-gutter-8col="16"]>.mdw-grid__item,.mdw-grid[mdw-gutter="16"]>.mdw-grid__item{padding-top:16px;padding-left:16px}.mdw-grid[mdw-columns="1"][mdw-margin="24"],.mdw-grid[mdw-columns="4"][mdw-margin-4col="24"],.mdw-grid[mdw-columns="8"][mdw-margin-8col="24"],.mdw-grid[mdw-margin="24"]{padding-right:24px;padding-left:24px}.mdw-grid[mdw-columns="1"][mdw-margin="24"][mdw-margin-bottom],.mdw-grid[mdw-columns="4"][mdw-margin-4col="24"][mdw-margin-bottom],.mdw-grid[mdw-columns="8"][mdw-margin-8col="24"][mdw-margin-bottom],.mdw-grid[mdw-margin="24"][mdw-margin-bottom]{padding-bottom:24px}.mdw-grid[mdw-columns="1"][mdw-margin="24"][mdw-margin-top],.mdw-grid[mdw-columns="4"][mdw-margin-4col="24"][mdw-margin-top],.mdw-grid[mdw-columns="8"][mdw-margin-8col="24"][mdw-margin-top],.mdw-grid[mdw-margin="24"][mdw-margin-top]{padding-top:24px}.mdw-grid[mdw-columns="1"][mdw-gutter="24"],.mdw-grid[mdw-columns="4"][mdw-gutter-4col="24"],.mdw-grid[mdw-columns="8"][mdw-gutter-8col="24"],.mdw-grid[mdw-gutter="24"]{margin-top:-24px;margin-left:-24px}.mdw-grid[mdw-columns="1"][mdw-gutter="24"]>.mdw-grid__item,.mdw-grid[mdw-columns="4"][mdw-gutter-4col="24"]>.mdw-grid__item,.mdw-grid[mdw-columns="8"][mdw-gutter-8col="24"]>.mdw-grid__item,.mdw-grid[mdw-gutter="24"]>.mdw-grid__item{padding-top:24px;padding-left:24px}.mdw-grid[mdw-columns="1"][mdw-margin="40"],.mdw-grid[mdw-columns="4"][mdw-margin-4col="40"],.mdw-grid[mdw-columns="8"][mdw-margin-8col="40"],.mdw-grid[mdw-margin="40"]{padding-right:40px;padding-left:40px}.mdw-grid[mdw-columns="1"][mdw-margin="40"][mdw-margin-bottom],.mdw-grid[mdw-columns="4"][mdw-margin-4col="40"][mdw-margin-bottom],.mdw-grid[mdw-columns="8"][mdw-margin-8col="40"][mdw-margin-bottom],.mdw-grid[mdw-margin="40"][mdw-margin-bottom]{padding-bottom:40px}.mdw-grid[mdw-columns="1"][mdw-margin="40"][mdw-margin-top],.mdw-grid[mdw-columns="4"][mdw-margin-4col="40"][mdw-margin-top],.mdw-grid[mdw-columns="8"][mdw-margin-8col="40"][mdw-margin-top],.mdw-grid[mdw-margin="40"][mdw-margin-top]{padding-top:40px}.mdw-grid[mdw-columns="1"][mdw-gutter="40"],.mdw-grid[mdw-columns="4"][mdw-gutter-4col="40"],.mdw-grid[mdw-columns="8"][mdw-gutter-8col="40"],.mdw-grid[mdw-gutter="40"]{margin-top:-40px;margin-left:-40px}.mdw-grid[mdw-columns="1"][mdw-gutter="40"]>.mdw-grid__item,.mdw-grid[mdw-columns="4"][mdw-gutter-4col="40"]>.mdw-grid__item,.mdw-grid[mdw-columns="8"][mdw-gutter-8col="40"]>.mdw-grid__item,.mdw-grid[mdw-gutter="40"]>.mdw-grid__item{padding-top:40px;padding-left:40px}@media screen and (max-width:839px){.mdw-grid[mdw-margin-8col="0"]{padding-right:0;padding-left:0}.mdw-grid[mdw-margin-8col="0"][mdw-margin-bottom]{padding-bottom:0}.mdw-grid[mdw-margin-8col="0"][mdw-margin-top]{padding-top:0}.mdw-grid[mdw-gutter-8col="0"]{margin-top:0;margin-left:0}.mdw-grid[mdw-gutter-8col="0"]>.mdw-grid__item{padding-top:0;padding-left:0}.mdw-grid[mdw-margin-8col="8"]{padding-right:8px;padding-left:8px}.mdw-grid[mdw-margin-8col="8"][mdw-margin-bottom]{padding-bottom:8px}.mdw-grid[mdw-margin-8col="8"][mdw-margin-top]{padding-top:8px}.mdw-grid[mdw-gutter-8col="8"]{margin-top:-8px;margin-left:-8px}.mdw-grid[mdw-gutter-8col="8"]>.mdw-grid__item{padding-top:8px;padding-left:8px}.mdw-grid[mdw-margin-8col="16"]{padding-right:16px;padding-left:16px}.mdw-grid[mdw-margin-8col="16"][mdw-margin-bottom]{padding-bottom:16px}.mdw-grid[mdw-margin-8col="16"][mdw-margin-top]{padding-top:16px}.mdw-grid[mdw-gutter-8col="16"]{margin-top:-16px;margin-left:-16px}.mdw-grid[mdw-gutter-8col="16"]>.mdw-grid__item{padding-top:16px;padding-left:16px}.mdw-grid[mdw-margin-8col="24"]{padding-right:24px;padding-left:24px}.mdw-grid[mdw-margin-8col="24"][mdw-margin-bottom]{padding-bottom:24px}.mdw-grid[mdw-margin-8col="24"][mdw-margin-top]{padding-top:24px}.mdw-grid[mdw-gutter-8col="24"]{margin-top:-24px;margin-left:-24px}.mdw-grid[mdw-gutter-8col="24"]>.mdw-grid__item{padding-top:24px;padding-left:24px}.mdw-grid[mdw-margin-8col="40"]{padding-right:40px;padding-left:40px}.mdw-grid[mdw-margin-8col="40"][mdw-margin-bottom]{padding-bottom:40px}.mdw-grid[mdw-margin-8col="40"][mdw-margin-top]{padding-top:40px}.mdw-grid[mdw-gutter-8col="40"]{margin-top:-40px;margin-left:-40px}.mdw-grid[mdw-gutter-8col="40"]>.mdw-grid__item{padding-top:40px;padding-left:40px}}@media screen and (max-width:599px){.mdw-grid[mdw-columns="8"][mdw-margin-4col="0"],.mdw-grid[mdw-margin-4col="0"]{padding-right:0;padding-left:0}.mdw-grid[mdw-columns="8"][mdw-margin-4col="0"][mdw-margin-bottom],.mdw-grid[mdw-margin-4col="0"][mdw-margin-bottom]{padding-bottom:0}.mdw-grid[mdw-columns="8"][mdw-margin-4col="0"][mdw-margin-top],.mdw-grid[mdw-margin-4col="0"][mdw-margin-top]{padding-top:0}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="0"],.mdw-grid[mdw-gutter-4col="0"]{margin-top:0;margin-left:0}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="0"]>.mdw-grid__item,.mdw-grid[mdw-gutter-4col="0"]>.mdw-grid__item{padding-top:0;padding-left:0}.mdw-grid[mdw-columns="8"][mdw-margin-4col="8"],.mdw-grid[mdw-margin-4col="8"]{padding-right:8px;padding-left:8px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="8"][mdw-margin-bottom],.mdw-grid[mdw-margin-4col="8"][mdw-margin-bottom]{padding-bottom:8px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="8"][mdw-margin-top],.mdw-grid[mdw-margin-4col="8"][mdw-margin-top]{padding-top:8px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="8"],.mdw-grid[mdw-gutter-4col="8"]{margin-top:-8px;margin-left:-8px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="8"]>.mdw-grid__item,.mdw-grid[mdw-gutter-4col="8"]>.mdw-grid__item{padding-top:8px;padding-left:8px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="16"],.mdw-grid[mdw-margin-4col="16"]{padding-right:16px;padding-left:16px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="16"][mdw-margin-bottom],.mdw-grid[mdw-margin-4col="16"][mdw-margin-bottom]{padding-bottom:16px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="16"][mdw-margin-top],.mdw-grid[mdw-margin-4col="16"][mdw-margin-top]{padding-top:16px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="16"],.mdw-grid[mdw-gutter-4col="16"]{margin-top:-16px;margin-left:-16px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="16"]>.mdw-grid__item,.mdw-grid[mdw-gutter-4col="16"]>.mdw-grid__item{padding-top:16px;padding-left:16px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="24"],.mdw-grid[mdw-margin-4col="24"]{padding-right:24px;padding-left:24px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="24"][mdw-margin-bottom],.mdw-grid[mdw-margin-4col="24"][mdw-margin-bottom]{padding-bottom:24px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="24"][mdw-margin-top],.mdw-grid[mdw-margin-4col="24"][mdw-margin-top]{padding-top:24px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="24"],.mdw-grid[mdw-gutter-4col="24"]{margin-top:-24px;margin-left:-24px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="24"]>.mdw-grid__item,.mdw-grid[mdw-gutter-4col="24"]>.mdw-grid__item{padding-top:24px;padding-left:24px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="40"],.mdw-grid[mdw-margin-4col="40"]{padding-right:40px;padding-left:40px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="40"][mdw-margin-bottom],.mdw-grid[mdw-margin-4col="40"][mdw-margin-bottom]{padding-bottom:40px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="40"][mdw-margin-top],.mdw-grid[mdw-margin-4col="40"][mdw-margin-top]{padding-top:40px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="40"],.mdw-grid[mdw-gutter-4col="40"]{margin-top:-40px;margin-left:-40px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="40"]>.mdw-grid__item,.mdw-grid[mdw-gutter-4col="40"]>.mdw-grid__item{padding-top:40px;padding-left:40px}}.mdw-layout{min-height:100vh;min-width:100vw;font:-apple-system-body;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif}.mdw-layout,.mdw-layout__body{overflow-y:hidden;height:100vh;margin:0;padding:0}.mdw-layout__body{font-weight:400;letter-spacing:.03125rem;font-size:1rem;line-height:1.5rem;display:-ms-grid;display:grid;position:relative;grid-template-columns:auto minmax(0,1fr) auto;-ms-grid-columns:auto minmax(0,1fr) auto;grid-template-rows:auto auto 1fr auto;-ms-grid-rows:auto auto 1fr auto;overflow-x:hidden;max-width:100vw;width:100vw;transition-duration:.1s;transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:inherit}.mdw-layout__appbar{-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:1;grid-column-end:span 1;-ms-grid-row:1;grid-row-start:1;-ms-grid-row-span:1;grid-row-end:span 1;position:static;position:-webkit-sticky;position:-moz-sticky;position:sticky;top:0;margin-top:0;transition-duration:.25s;transition-property:transform,margin-top;transition-timing-function:cubic-bezier(0,0,.2,1);will-change:transform,margin-top;transform:translateY(0);z-index:4}.mdw-layout[mdw-ios][mdw-standalone] .mdw-layout__appbar{padding-top:env(safe-area-inset-top)}.mdw-layout__appbar[mdw-hide]{transition-duration:.2s;transition-timing-function:cubic-bezier(.4,0,1,1)}.mdw-layout__scrim{content:"";position:fixed;top:0;left:0;-ms-overflow-style:none;overflow-y:scroll;overscroll-behavior:none;overscroll-behavior:contain;-ms-scroll-chaining:none;scrollbar-width:none;height:100%;width:100%;cursor:auto;transition-duration:75ms;transition-property:background-color;transition-timing-function:cubic-bezier(.4,0,1,1);pointer-events:none;z-index:16;background-color:transparent}.mdw-layout__scrim::-webkit-scrollbar{display:none}.mdw-layout__scrim:after{display:block;content:"";height:200%;width:200%}.mdw-layout__navdrawer,.mdw-layout__sidesheet{-ms-grid-row:1;grid-row-start:1;-ms-grid-row-span:4;grid-row-end:span 4;box-sizing:border-box;max-height:100vh;height:100%;max-width:calc(100vw - 56px);width:256px;transition-duration:.25s;transition-property:width,max-width,transform;transition-timing-function:cubic-bezier(0,0,.2,1);will-change:max-width,transform,position;transform:translateX(0);z-index:5;background-color:inherit;box-shadow:none}.mdw-layout__sheet-content{overflow-y:auto;box-sizing:border-box;max-height:100%;height:100%;border-width:1px}.mdw-layout__navdrawer{-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:1;grid-column-end:span 1}.mdw-layout__navdrawer .mdw-list__content.mdw-overlay:before,.mdw-layout__navdrawer .mdw-list__content.mdw-overlay>.mdw-ripple__container{margin:4px 8px;border-radius:4px}.mdw-layout__sidesheet{-ms-grid-column:3;grid-column-start:3;-ms-grid-column-span:1;grid-column-end:span 1}.mdw-layout__navdrawer .mdw-layout__sheet-content,:root[dir=rtl] .mdw-layout__sidesheet .mdw-layout__sheet-content{border-right-style:solid;border-left-style:none}.mdw-layout__sidesheet .mdw-layout__sheet-content,:root[dir=rtl] .mdw-layout__navdrawer .mdw-layout__sheet-content{border-right-style:none;border-left-style:solid}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer-hide{display:none}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer{display:inline-block;position:fixed;top:0;bottom:0;flex-direction:column;transition-duration:.2s;transition-property:max-width,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);visibility:hidden;z-index:17;right:auto;left:0;transform:translateX(-100%)}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer .mdw-layout__sheet-content{border-width:0}:root[dir=rtl] .mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer{right:0;left:auto;transform:translateX(100%)}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer[aria-hidden=false]{transition-duration:.25s;transition-property:max-width,transform;transition-timing-function:cubic-bezier(0,0,.2,1);transform:translateX(0);visibility:visible;box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.2)}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer[aria-hidden=false]~.mdw-layout__scrim{pointer-events:auto;background-color:rgba(0,0,0,.5)}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer[aria-hidden=false].mdw-layout__appbar .mdw-layout__navdrawer-show,.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer[aria-hidden=false] .mdw-layout__navdrawer-show{display:none}@media screen and (max-width:1023px){.mdw-layout__navdrawer-hide{display:none}.mdw-layout__navdrawer{display:inline-block;position:fixed;top:0;bottom:0;flex-direction:column;transition-duration:.2s;transition-property:max-width,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);visibility:hidden;z-index:17;right:auto;left:0;transform:translateX(-100%)}.mdw-layout__navdrawer .mdw-layout__sheet-content{border-width:0}:root[dir=rtl] .mdw-layout__navdrawer{right:0;left:auto;transform:translateX(100%)}.mdw-layout__navdrawer[aria-hidden=false]{transition-duration:.25s;transition-property:max-width,transform;transition-timing-function:cubic-bezier(0,0,.2,1);transform:translateX(0);visibility:visible;box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.2)}.mdw-layout__navdrawer[aria-hidden=false]~.mdw-layout__scrim{pointer-events:auto;background-color:rgba(0,0,0,.5)}.mdw-layout__navdrawer[aria-hidden=false].mdw-layout__appbar .mdw-layout__navdrawer-show,.mdw-layout__navdrawer[aria-hidden=false] .mdw-layout__navdrawer-show{display:none}}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet-hide{display:none}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet{display:inline-block;position:fixed;top:0;bottom:0;flex-direction:column;transition-duration:.2s;transition-property:max-width,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);visibility:hidden;z-index:17;right:0;left:auto;transform:translateX(100%)}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet .mdw-layout__sheet-content{border-width:0}:root[dir=rtl] .mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet{right:auto;left:0;transform:translateX(-100%)}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet[aria-hidden=false]{transition-duration:.25s;transition-property:max-width,transform;transition-timing-function:cubic-bezier(0,0,.2,1);transform:translateX(0);visibility:visible;box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.2)}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet[aria-hidden=false]~.mdw-layout__scrim{pointer-events:auto;background-color:rgba(0,0,0,.5)}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet[aria-hidden=false].mdw-layout__appbar .mdw-layout__sidesheet-show,.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet[aria-hidden=false] .mdw-layout__sidesheet-show{display:none}@media screen and (max-width:1023px){.mdw-layout__sidesheet-hide{display:none}.mdw-layout__sidesheet{display:inline-block;position:fixed;top:0;bottom:0;flex-direction:column;transition-duration:.2s;transition-property:max-width,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);visibility:hidden;z-index:17;right:0;left:auto;transform:translateX(100%)}.mdw-layout__sidesheet .mdw-layout__sheet-content{border-width:0}:root[dir=rtl] .mdw-layout__sidesheet{right:auto;left:0;transform:translateX(-100%)}.mdw-layout__sidesheet[aria-hidden=false]{transition-duration:.25s;transition-property:max-width,transform;transition-timing-function:cubic-bezier(0,0,.2,1);transform:translateX(0);visibility:visible;box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.2)}.mdw-layout__sidesheet[aria-hidden=false]~.mdw-layout__scrim{pointer-events:auto;background-color:rgba(0,0,0,.5)}.mdw-layout__sidesheet[aria-hidden=false].mdw-layout__appbar .mdw-layout__sidesheet-show,.mdw-layout__sidesheet[aria-hidden=false] .mdw-layout__sidesheet-show{display:none}}.mdw-layout__banner{-ms-grid-row:2;grid-row-start:2;-ms-grid-row-span:1;grid-row-end:span 1;-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:1;grid-column-end:span 1;z-index:0}.mdw-layout__content{-ms-grid-row:3;grid-row-start:3;-ms-grid-row-span:1;grid-row-end:span 1;-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:1;grid-column-end:span 1;display:flex;position:relative;align-items:center;flex-direction:column;overflow-x:visible;overflow-y:auto}.mdw-layout__content-page{width:100%}.mdw-layout__fab,.mdw-layout__snackbar{-ms-grid-row:4;grid-row-start:4;-ms-grid-row-span:1;grid-row-end:span 1;-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:1;grid-column-end:span 1;position:static;position:-webkit-sticky;position:-moz-sticky;position:sticky;top:auto;bottom:0;width:auto;transition-duration:.25s;transition-property:transform;transition-timing-function:cubic-bezier(0,0,.2,1);pointer-events:none;transform:translateY(-100%);z-index:6}.mdw-layout__menus{position:absolute;z-index:8}.mdw-layout__dialogs{position:fixed;top:0;right:0;bottom:0;left:0;pointer-events:none;z-index:24}.mdw-layout__snackbar-anchor{position:absolute;right:auto;bottom:0;left:0;box-sizing:border-box;padding:12px 0 12px 12px;transition-duration:inherit;transition-property:transform,bottom;transition-timing-function:inherit}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-layout__snackbar-anchor{padding:8px 0 8px 8px}}:root[dir=rtl] .mdw-layout__snackbar-anchor{right:0;left:auto;padding:12px 12px 12px 0}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){:root[dir=rtl] .mdw-layout__snackbar-anchor{padding:8px 8px 8px 0}}.mdw-layout__snackbar .mdw-snackbar__container{position:relative}.mdw-layout__fab-anchor{position:absolute;right:0;bottom:0;left:auto;padding:24px;transition-duration:inherit;transition-property:transform,right,padding-top,padding-bottom;transition-timing-function:inherit}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-layout__fab-anchor{padding:16px}}:root[dir=rtl] .mdw-layout__fab-anchor{right:100%;transform:translateX(100%)}.mdw-layout__fab-anchor .mdw-fab{transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);transform:scale(0)}.mdw-layout__bottomnav{-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:1;grid-column-end:span 1;-ms-grid-row:4;grid-row-start:4;-ms-grid-row-span:1;grid-row-end:span 1;position:static;position:-webkit-sticky;position:-moz-sticky;position:sticky;bottom:0;z-index:4}.mdw-layout__appbar-shape{display:flex;position:absolute;top:0;left:0;overflow:hidden;height:100%;width:100%;transition-duration:inherit;transition-property:box-shadow;transition-timing-function:inherit;box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);color:transparent}.mdw-layout__appbar[mdw-autoraise]:not([mdw-raise]) .mdw-layout__appbar-shape{filter:none;box-shadow:none}.mdw-layout__appbar-shape:after,.mdw-layout__appbar-shape:before{content:"";min-width:24px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-layout__appbar-shape:after,.mdw-layout__appbar-shape:before{min-width:16px}}.mdw-layout__fab-cut-track{display:flex;position:relative;top:0;left:0;flex-direction:row;height:100%;width:100%;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transform:translateX(100%) translateX(-28px)}.mdw-layout__fab-cut-track:after,.mdw-layout__fab-cut-track:before,.mdw-layout__fab-cut-track>svg{position:absolute;top:0;height:100%}.mdw-layout__fab-cut-track:after,.mdw-layout__fab-cut-track:before{content:"";width:100%;margin-left:-36px;background-color:currentColor}.mdw-layout__fab-cut-track:before{left:-100%}.mdw-layout__fab-cut-track:after{left:72px}.mdw-layout__fab-cut-track>svg{left:-36px;width:72px;fill:currentColor}.mdw-layout__fab-mask-shape{transition-delay:.1s;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);transform:scale(0)}@media screen and (max-width:599px){.mdw-layout__appbar[mdw-autohide~=mobile][mdw-hide]{transform:translateY(-100%)}.mdw-layout__appbar[mdw-autohide~=mobile][mdw-hide][mdw-bottom]{transform:translateY(100%)}.mdw-layout__appbar[mdw-autohide~=mobile][mdw-hide][mdw-bottom]~.mdw-layout__fab,.mdw-layout__appbar[mdw-autohide~=mobile][mdw-hide][mdw-bottom]~.mdw-layout__snackbar{transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);transform:translateY(0)}.mdw-layout__appbar[mdw-autohide~=mobile][mdw-hide] .mdw-layout__appbar-shape{filter:none;box-shadow:none}}@media screen and (min-width:600px) and (max-width:1023px){.mdw-layout__appbar[mdw-autohide~=tablet][mdw-hide]{transform:translateY(-100%)}.mdw-layout__appbar[mdw-autohide~=tablet][mdw-hide][mdw-bottom]{transform:translateY(100%)}.mdw-layout__appbar[mdw-autohide~=tablet][mdw-hide][mdw-bottom]~.mdw-layout__fab,.mdw-layout__appbar[mdw-autohide~=tablet][mdw-hide][mdw-bottom]~.mdw-layout__snackbar{transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);transform:translateY(0)}.mdw-layout__appbar[mdw-autohide~=tablet][mdw-hide] .mdw-layout__appbar-shape{filter:none;box-shadow:none}}@media screen and (max-width:1023px){.mdw-layout__appbar[mdw-bottom]{-ms-grid-row:4;grid-row-start:4;-ms-grid-row-span:1;grid-row-end:span 1;top:auto;bottom:0;z-index:8}.mdw-layout__appbar[mdw-bottom] .mdw-layout__appbar-shape{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}.mdw-layout__appbar[mdw-bottom][mdw-fab-cut]~.mdw-layout__fab{transform:translateY(-100%) translateY(28px)}.mdw-layout__appbar[mdw-bottom][mdw-fab-cut] .mdw-layout__appbar-shape{transition-property:filter;filter:drop-shadow(0 7.33px 4px rgba(0,0,0,.26)) drop-shadow(0 0 5.33px rgba(0,0,0,.08));box-shadow:none}.mdw-layout__appbar[mdw-bottom][mdw-fab-cut] .mdw-layout__fab-mask-shape{transform:scale(0)}.mdw-layout__appbar[mdw-bottom][mdw-fab-cut~=open] .mdw-layout__fab-mask-shape{transition-delay:0s;transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:scale(1)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide]{transform:translateY(-100%)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide][mdw-bottom]{transform:translateY(100%)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide][mdw-bottom]~.mdw-layout__fab,.mdw-layout__appbar[mdw-autohide=""][mdw-hide][mdw-bottom]~.mdw-layout__snackbar{transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);transform:translateY(0)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide] .mdw-layout__appbar-shape{filter:none;box-shadow:none}.mdw-layout__snackbar-anchor,:root[dir=rtl] .mdw-layout__snackbar-anchor{right:0;left:0;padding:12px}}@media screen and (max-width:1023px) and (orientation:landscape) and (max-height:599px),screen and (max-width:1023px) and (orientation:portrait) and (max-width:599px){.mdw-layout__snackbar-anchor,:root[dir=rtl] .mdw-layout__snackbar-anchor{padding:8px}}@media screen and (max-width:1023px){.mdw-layout__fab[mdw-mobile]~.mdw-layout__snackbar .mdw-layout__snackbar-anchor{bottom:24px;transform:translateY(-56px)}}@media screen and (max-width:1023px) and (orientation:landscape) and (max-height:599px),screen and (max-width:1023px) and (orientation:portrait) and (max-width:599px){.mdw-layout__fab[mdw-mobile]~.mdw-layout__snackbar .mdw-layout__snackbar-anchor{bottom:16px}}@media screen and (max-width:1023px){.mdw-layout__fab[mdw-mobile]~.mdw-layout__content{padding-bottom:80px}.mdw-layout__fab[mdw-mobile][aria-hidden=false] .mdw-fab{transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:scale(1)}.mdw-layout__appbar[mdw-fab-cut~=center] .mdw-layout__fab-cut-track,.mdw-layout__fab[mdw-mobile=center] .mdw-layout__fab-anchor{right:50%;transform:translateX(50%)}.mdw-layout__appbar[mdw-fab-cut~=full] .mdw-layout__fab-cut-track,.mdw-layout__fab[mdw-mobile=full] .mdw-layout__fab-anchor{right:0;left:0;transform:none}.mdw-layout__fab[mdw-mobile=full] .mdw-fab__button{width:100%;padding-right:0;padding-left:0}.mdw-layout__appbar[mdw-fab-cut][mdw-bottom]:not([mdw-hide])~.mdw-layout__fab{z-index:8}.mdw-layout__appbar[mdw-fab-cut][mdw-bottom]:not([mdw-hide])~.mdw-layout__fab .mdw-fab{transform:scale(0)}.mdw-layout__appbar[mdw-fab-cut][mdw-bottom]:not([mdw-hide])~.mdw-layout__fab[aria-hidden=false] .mdw-fab{transition-delay:.1s;transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:scale(1)}.mdw-layout__appbar[mdw-fab-cut][mdw-bottom]:not([mdw-hide])~.mdw-layout__fab .mdw-layout__fab-anchor{padding-top:0;padding-bottom:0}.mdw-layout__appbar[mdw-fab-cut][mdw-bottom]:not([mdw-hide])~.mdw-layout__snackbar .mdw-layout__snackbar-anchor{bottom:0;transform:translateY(-28px)}}@media screen and (min-width:1024px){.mdw-layout__body:not([mdw-navdrawer-toggle]):not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer-hide,.mdw-layout__body:not([mdw-navdrawer-toggle]):not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer-show,.mdw-layout__body:not([mdw-navdrawer-toggle]):not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer-toggle,.mdw-layout__body:not([mdw-sidesheet-toggle]):not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet-hide,.mdw-layout__body:not([mdw-sidesheet-toggle]):not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet-show,.mdw-layout__body:not([mdw-sidesheet-toggle]):not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet-toggle{display:none}.mdw-layout__navdrawer,.mdw-layout__sidesheet{position:static;position:-webkit-sticky;position:-moz-sticky;position:sticky;top:0;bottom:auto;transform:none}.mdw-layout__snackbar-anchor{width:50%}.mdw-layout__body[mdw-navdrawer-style~=clipped],.mdw-layout__body[mdw-sidesheet-style~=clipped]{overflow-y:hidden}.mdw-layout__body[mdw-navdrawer-style~=clipped]>.mdw-layout__content,.mdw-layout__body[mdw-sidesheet-style~=clipped]>.mdw-layout__content{overflow-y:auto}.mdw-layout__fab[mdw-desktop][aria-hidden=false] .mdw-fab{transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:scale(1)}.mdw-layout__fab[mdw-desktop]:not([mdw-desktop=appbar])~.mdw-layout__content{padding-bottom:80px}.mdw-layout__fab[mdw-desktop=appbar]{-ms-grid-row:1;grid-row-start:1;-ms-grid-row-span:1;grid-row-end:span 1;top:0;bottom:auto;transform:translateY(100%)}.mdw-layout__fab[mdw-desktop=appbar][aria-hidden=false] .mdw-fab{transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:translateY(-50%) scale(1)}.mdw-layout__fab[mdw-desktop=appbar]~.mdw-layout__snackbar .mdw-layout__snackbar-anchor{width:75%}.mdw-layout__fab[mdw-desktop=appbar] .mdw-layout__fab-anchor{top:0;right:auto;bottom:auto;left:0;padding:0 8px;transform:none}:root[dir=rtl] .mdw-layout__fab[mdw-desktop=appbar] .mdw-layout__fab-anchor{right:0;left:auto}.mdw-layout__appbar[mdw-hide]~.mdw-layout__fab[mdw-desktop=appbar] .mdw-fab,.mdw-layout__fab[mdw-desktop=appbar][aria-hidden=true] .mdw-fab{transform:translateY(-50%) scale(0)}.mdw-layout__body[mdw-navdrawer-style~=clipped] .mdw-layout__navdrawer,.mdw-layout__body[mdw-sidesheet-style~=clipped] .mdw-layout__sidesheet{-ms-grid-row:2;grid-row-start:2;-ms-grid-row-span:3;grid-row-end:span 3;z-index:0}.mdw-layout__body[mdw-navdrawer-style~=clipped] .mdw-layout__appbar,.mdw-layout__body[mdw-navdrawer-style~=clipped] .mdw-layout__fab[mdw-desktop=appbar]{-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout__body[mdw-sidesheet-style~=clipped] .mdw-layout__appbar,.mdw-layout__body[mdw-sidesheet-style~=clipped] .mdw-layout__fab[mdw-desktop=appbar]{-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout__body[mdw-navdrawer-style~=clipped][mdw-sidesheet-style~=clipped] .mdw-layout__appbar,.mdw-layout__body[mdw-navdrawer-style~=clipped][mdw-sidesheet-style~=clipped] .mdw-layout__fab[mdw-desktop=appbar]{-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:3;grid-column-end:span 3}.mdw-layout__body[mdw-navdrawer-style~=floating] .mdw-layout__navdrawer,.mdw-layout__body[mdw-sidesheet-style~=floating] .mdw-layout__sidesheet{-ms-grid-row:3;grid-row-start:3;-ms-grid-row-span:2;grid-row-end:span 2}.mdw-layout__body[mdw-navdrawer-style~=floating] .mdw-layout__navdrawer .mdw-layout__sheet-content,.mdw-layout__body[mdw-sidesheet-style~=floating] .mdw-layout__sidesheet .mdw-layout__sheet-content{height:auto;border-width:0}.mdw-layout__body[mdw-navdrawer-style~=floating] .mdw-layout__banner,.mdw-layout__body[mdw-navdrawer-style~=floating] .mdw-layout__bottomnav{-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout__body[mdw-sidesheet-style~=floating] .mdw-layout__banner,.mdw-layout__body[mdw-sidesheet-style~=floating] .mdw-layout__bottomnav{-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout__body[mdw-navdrawer-style~=floating][mdw-sidesheet-style~=floating] .mdw-layout__banner,.mdw-layout__body[mdw-navdrawer-style~=floating][mdw-sidesheet-style~=floating] .mdw-layout__bottomnav{-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:3;grid-column-end:span 3}.mdw-layout__body[mdw-navdrawer-style~=card] .mdw-layout__navdrawer,.mdw-layout__body[mdw-sidesheet-style~=card] .mdw-layout__sidesheet{margin:0 24px;padding:24px 0}.mdw-layout__body[mdw-navdrawer-style~=card] .mdw-layout__navdrawer>.mdw-layout__sheet-content,.mdw-layout__body[mdw-sidesheet-style~=card] .mdw-layout__sidesheet>.mdw-layout__sheet-content{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}.mdw-layout__body[mdw-navdrawer-toggle~=dismissible]:not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer:not([aria-hidden=false]),.mdw-layout__body[mdw-sidesheet-toggle~=dismissible]:not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet:not([aria-hidden=false]){max-width:0;width:0;margin-right:0;margin-left:0;transition-duration:.2s;transition-property:width,max-width,margin,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);visibility:hidden}.mdw-layout__body[mdw-navdrawer-toggle~=dismissible]:not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer:not([aria-hidden=false]) .mdw-layout__sheet-content,.mdw-layout__body[mdw-sidesheet-toggle~=dismissible]:not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet:not([aria-hidden=false]) .mdw-layout__sheet-content{box-shadow:none}.mdw-layout__body[mdw-navdrawer-toggle~=mini]:not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer:not([aria-hidden=false]),.mdw-layout__body[mdw-sidesheet-toggle~=mini]:not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet:not([aria-hidden=false]){max-width:72px;width:72px;transition-duration:.2s;transition-timing-function:cubic-bezier(.4,0,1,1)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide]{transform:translateY(-100%)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide] .mdw-layout__appbar-shape{filter:none;box-shadow:none}}@supports (position:sticky) or (position:-webkit-sticky) or (position:-moz-sticky){.mdw-layout__body{overflow-y:auto}.mdw-layout__body>.mdw-layout__content{overflow-y:visible}}.mdw-list{padding-top:8px;padding-bottom:8px}.mdw-list__item-group{display:flex;flex-direction:column}ul.mdw-list,ul.mdw-list__item-group{margin:0;padding-right:0;padding-left:0;list-style-type:none}li.mdw-list__item{position:relative;margin:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;text-align:start;text-decoration:none;text-transform:none}.mdw-list__item{display:flex;position:relative;align-content:flex-start;flex-direction:row;overflow:hidden}a.mdw-list__content,a.mdw-list__expander-content{text-decoration:none}.mdw-list__content,.mdw-list__expander-content{font-weight:400;letter-spacing:.00937rem;font-size:1rem;line-height:1.25rem;display:flex;align-items:center;flex-direction:row;justify-content:stretch;overflow:hidden;min-height:48px;flex:1;padding:0 24px;cursor:pointer;text-align:start;text-overflow:ellipsis;white-space:nowrap}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-list__content,.mdw-list__expander-content{padding:0 16px}}.mdw-list__content[aria-hidden=true],.mdw-list__expander-content[aria-hidden=true]{display:none}.mdw-list__subheader{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;display:flex;align-items:center;flex-direction:row;justify-content:stretch;min-height:48px;padding-right:16px;padding-left:16px}.mdw-list__avatar,.mdw-list__icon{display:flex;align-self:flex-start;flex-direction:row;justify-content:flex-start;order:-1;min-width:56px;max-width:56px;margin:16px 0}.mdw-list__avatar{min-height:40px}.mdw-list__expander{display:flex;position:relative;flex-direction:column;outline:none}.mdw-list__expander:after,.mdw-list__expander:before{content:"";position:absolute;right:0;left:0;background-color:transparent;transition-property:background-color;transition-duration:.2s;transition-timing-function:cubic-bezier(.4,0,.2,1);height:1px}.mdw-list__expander:before{top:-1px}.mdw-list__expander:after{bottom:0}.mdw-list__expander>.mdw-list__expander-content .mdw-list__secondary{min-height:48px;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);pointer-events:none;transform:rotate(0deg)}.mdw-list__expander>.mdw-list__item-group .mdw-list__item{flex-basis:0;animation-duration:.2s;animation-timing-function:cubic-bezier(.4,0,1,1);animation-fill-mode:forwards}.mdw-list__expander[aria-expanded=false]>.mdw-list__item-group .mdw-list__item{animation-name:collapseRow}.mdw-list__expander[aria-expanded=true]>.mdw-list__item .mdw-list__secondary{transform:rotate(180deg)}.mdw-list__expander[aria-expanded=true]>.mdw-list__item-group .mdw-list__item{animation-name:expandRow;animation-duration:.25s;animation-timing-function:cubic-bezier(0,0,.2,1)}.mdw-list__expander:not([mdw-expander-js])>.mdw-list__item-group .mdw-list__item{animation-duration:0s}.mdw-list__expander[aria-expanded=true]+.mdw-list__expander[aria-expanded=true]:before{display:none}@keyframes expandRow{0%{min-height:0;flex-basis:0}99.99%{min-height:48px;flex-basis:0}to{min-height:48px;flex-basis:100%}}@keyframes collapseRow{0%{min-height:48px;flex-basis:0}to{min-height:0;flex-basis:0}}.mdw-list__expand-checkbox{display:none;max-height:0;max-width:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;pointer-events:none}.mdw-list__secondary{display:flex;align-items:center;flex-direction:row;-ms-grid-column:3;grid-column:3;-ms-grid-column-span:1;grid-column-end:span 1;justify-content:center;order:1;min-height:56px;min-width:24px;margin-right:0;margin-left:16px;z-index:1;pointer-events:none}:root[dir=rtl] .mdw-list__secondary{margin-right:16px;margin-left:0}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-list__icon:after,.mdw-list__secondary:after{content:"";min-height:inherit;width:0}}.mdw-list__text{position:static;overflow-x:hidden;flex-grow:1;pointer-events:none;text-overflow:ellipsis}.mdw-list[mdw-divider] .mdw-list__item:not(:last-child) .mdw-list__text:after{content:"";position:absolute;right:0;bottom:0;left:0;height:1px;width:100%}.mdw-list[mdw-divider] .mdw-list__item:not(:last-child) .mdw-list[mdw-divider]>.mdw-list__item:not(:last-child) .mdw-list__icon~.mdw-list__text:after,.mdw-list[mdw-divider] .mdw-list__item:not(:last-child) .mdw-list__avatar~.mdw-list__text:after{margin-left:72px}.mdw-list__text-line{overflow-x:hidden;overflow-y:hidden;text-overflow:ellipsis}.mdw-list__meta:before,.mdw-list__text-block:first-child:before,.mdw-list__text-line:first-child:before{content:"";display:inline-block;height:28px}.mdw-list__meta{font-weight:400;letter-spacing:.025rem;font-size:.75rem;line-height:1rem;align-self:flex-start;margin-right:0;margin-left:28px}:root[dir=rtl] .mdw-list__meta{margin-right:28px;margin-left:0}.mdw-list__text-line:first-child:after{content:"";display:inline-block;vertical-align:-20px}.mdw-list__text-block:not(:first-child),.mdw-list__text-line:not(:first-child){font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;margin-top:-20px}.mdw-list__text-block:not(:first-child):before,.mdw-list__text-line:not(:first-child):before{content:"";display:inline-block;height:20px}.mdw-list__text-line:last-child:after{content:"";display:inline-block;vertical-align:-16px}.mdw-list__text-line:not(:first-child):not(:last-child):after,.mdw-list__text-line:nth-child(3):after{content:"";display:inline-block;vertical-align:-20px}.mdw-list__text-block{display:block;display:-webkit-box;overflow-x:hidden;overflow-y:hidden;pointer-events:none;text-align:start;text-overflow:ellipsis;text-transform:none;white-space:normal;-webkit-box-orient:vertical;-webkit-line-clamp:2;word-break:break-word}.mdw-list__text-block:not(:only-child){max-height:2.5rem;height:2.5rem;margin-bottom:16px;padding-bottom:4px}.mdw-list__text-block:only-child:after{content:"";display:inline-block;vertical-align:-16px}.mdw-menu__wrapper{display:inline-flex;position:relative}.mdw-menu__close{position:fixed;top:0;left:0;height:100%;width:100%;cursor:default;pointer-events:inherit;z-index:8}.mdw-menu{display:block;position:absolute;top:100%;right:auto;bottom:auto;left:0;-ms-overflow-style:none;overscroll-behavior:none;overscroll-behavior:contain;-ms-scroll-chaining:none;scrollbar-width:none;transition-duration:75ms;transition-property:none;transition-timing-function:cubic-bezier(0,0,.2,1);pointer-events:none;transform-origin:left top}:root[dir=rtl] .mdw-menu{right:0;left:auto;transform-origin:right top}.mdw-menu:after{display:block;height:200%;width:200%;content:""}.mdw-menu::-webkit-scrollbar{display:none}.mdw-menu[aria-hidden=false],.mdw-menu[id]:target{pointer-events:auto}.mdw-menu[aria-hidden=false] .mdw-menu__popup,.mdw-menu[id]:target .mdw-menu__popup{transition-delay:0s;transition-duration:0s;transition-property:box-shadow,opacity,transform;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:1;transform:scale(1);visibility:visible;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-menu[aria-hidden=false] .mdw-menu__popup,.mdw-menu[id]:target .mdw-menu__popup{transition-duration:.25s}}.mdw-menu[mdw-position~=top]{top:0}.mdw-menu[mdw-position~=vcenter]{top:50%}.mdw-menu[mdw-position~=hcenter]{left:50%}.mdw-menu[mdw-position~=end],.mdw-menu[mdw-position~=right]{right:auto;left:100%}:root[dir=rtl] .mdw-menu[mdw-position~=end],:root[dir=rtl] .mdw-menu[mdw-position~=right]{right:100%;left:auto}.mdw-menu[mdw-direction~=reverse],.mdw-menu[mdw-direction~=rtl]{right:100%;left:auto;transform-origin:right top}:root[dir=rtl] .mdw-menu[mdw-direction~=reverse],:root[dir=rtl] .mdw-menu[mdw-direction~=rtl]{right:auto;left:100%;transform-origin:left top}.mdw-menu[mdw-direction~=reverse][mdw-position~=end],.mdw-menu[mdw-direction~=reverse][mdw-position~=right],.mdw-menu[mdw-direction~=rtl][mdw-position~=end],.mdw-menu[mdw-direction~=rtl][mdw-position~=right]{right:0;left:auto}:root[dir=rtl] .mdw-menu[mdw-direction~=reverse][mdw-position~=end],:root[dir=rtl] .mdw-menu[mdw-direction~=reverse][mdw-position~=right],:root[dir=rtl] .mdw-menu[mdw-direction~=rtl][mdw-position~=end],:root[dir=rtl] .mdw-menu[mdw-direction~=rtl][mdw-position~=right]{right:auto;left:0}.mdw-menu[mdw-direction~=up]{top:auto;bottom:0;transform-origin:left bottom}:root[dir=rtl] .mdw-menu[mdw-direction~=up]{transform-origin:right bottom}.mdw-menu[mdw-direction~=up][mdw-position~=top]{bottom:100%}.mdw-menu[mdw-direction~=up][mdw-position~=vcenter]{bottom:50%}.mdw-menu[mdw-direction~=up][mdw-direction~=reverse],.mdw-menu[mdw-direction~=up][mdw-direction~=rtl]{transform-origin:right bottom}:root[dir=rtl] .mdw-menu[mdw-direction~=up][mdw-direction~=reverse],:root[dir=rtl] .mdw-menu[mdw-direction~=up][mdw-direction~=rtl]{transform-origin:left bottom}.mdw-menu[mdw-width-units="3"] .mdw-menu__popup{width:168px}.mdw-menu[mdw-width-units="4"] .mdw-menu__popup{width:224px}.mdw-menu[mdw-width-units="5"] .mdw-menu__popup{width:280px}.mdw-menu[mdw-width-units="6"] .mdw-menu__popup{width:336px}.mdw-menu[mdw-width-units="7"] .mdw-menu__popup{width:392px}.mdw-menu[mdw-menu-js]{position:fixed;top:0;right:auto;bottom:auto;left:0;overflow-y:scroll;height:100%;width:100%;margin:0;cursor:default;z-index:8}:root[dir=rtl] .mdw-menu[mdw-menu-js]{right:0;left:auto}.mdw-menu[mdw-menu-js] .mdw-menu__close{display:none}.mdw-menu[mdw-menu-js] .mdw-menu__popup{margin:0}.mdw-menu__popup{display:inline-flex;position:absolute;top:inherit;right:inherit;bottom:inherit;left:inherit;flex-direction:column;-ms-overflow-style:-ms-autohiding-scrollbar;overflow-y:auto;overscroll-behavior:none;overscroll-behavior:contain;-ms-scroll-chaining:none;max-height:50vh;min-width:112px;max-width:392px;margin-right:8px;margin-left:8px;padding-top:8px;padding-bottom:8px;outline:none;transition-delay:0s,0s,75ms,75ms;transition-duration:75ms;transition-property:box-shadow,opacity,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:0;pointer-events:inherit;transform:scale(0);transform-origin:inherit;z-index:8;border-radius:4px;box-shadow:none}.mdw-menu__text{overflow-x:hidden;flex:auto;text-overflow:ellipsis;white-space:nowrap}.mdw-menu__check,.mdw-menu__icon,.mdw-menu__radio{min-width:40px}.mdw-menu__check,.mdw-menu__radio{visibility:hidden}.mdw-menu__item[aria-checked=true] .mdw-menu__check,.mdw-menu__item[aria-checked=true] .mdw-menu__radio{visibility:visible}.mdw-menu__popup>.mdw-divider{height:1px;margin-top:7px;margin-bottom:8px}.mdw-menu__item{font-weight:400;letter-spacing:.03125rem;font-size:1rem;line-height:1.5rem;display:flex;position:relative;align-items:center;flex-direction:row;overflow:hidden;box-sizing:border-box;min-height:48px;padding-right:16px;padding-left:16px;cursor:pointer;outline:none;-webkit-tap-highlight-color:transparent;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;z-index:0}.mdw-menu__item[aria-disabled=true]{cursor:not-allowed}.mdw-menu[mdw-dense]:not([mdw-dense=never]) .mdw-menu__item,.mdw-menu[mdw-dropdown] .mdw-menu__item{min-height:32px;padding-right:24px;padding-left:24px}@media not all and (any-pointer:coarse){.mdw-menu:not([mdw-dense=never]) .mdw-menu__item{min-height:32px;padding-right:24px;padding-left:24px}}.mdw-menu__info{padding-right:0;padding-left:16px;text-align:right;text-align:end}:root[dir=rtl] .mdw-menu__info{padding-right:16px;padding-left:0;text-align:left;text-align:end}@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{width:48px;height:48px;stroke-width:2.5;margin:8px}.mdw-progress-circle svg{width:100%;height:100%;transform:rotate(0deg);will-change:transform;animation-name:rotate-clockwise;animation-duration:1.5s;animation-timing-function:linear;animation-iteration-count:infinite}.mdw-progress-circle svg>path{fill:none;stroke-width:inherit;stroke:currentColor;transform-origin:center center}.mdw-progress-circle svg>path:first-child{stroke-linecap:square;stroke-dasharray:41.2334;stroke-dashoffset:105.37609;transform:rotate(0deg);will-change:stroke-dashoffset,transform;animation-name:mdw-progress-dash,rotate-counterclockwise;animation-duration:1.5s,6s;animation-timing-function:cubic-bezier(.4,0,.2,1),steps(4);animation-iteration-count:infinite}.mdw-progress-circle svg>path:nth-child(2){display:none;transition-property:stroke-dashoffset;transition-duration:1.5s;stroke-dashoffset:164.93361;stroke-dasharray:54.97787}@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;will-change:none;transform:none}.mdw-progress-circle[mdw-determinate] svg>path:first-child{display:none;animation:none;will-change:none;transform: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{display:inline-flex;position:relative;flex-direction:row}.mdw-selection__input{display:inline-flex;order:1;min-height:24px;min-width:24px;margin:auto 0;padding:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;cursor:pointer;outline:none;-webkit-tap-highlight-color:transparent;transition-property:transform,color,opacity;opacity:0;transform:scale(0);background-color:currentColor;border-radius:50%;color:inherit}.mdw-selection__input::-ms-check{background-color:transparent;border-color:transparent;border-radius:50%;color:transparent}.mdw-selection__input:disabled{cursor:not-allowed}.mdw-selection:active>.mdw-selection__input:not([disabled]),.mdw-selection:hover>.mdw-selection__input:not([disabled]),.mdw-selection__input:active:not([disabled]),.mdw-selection__input:focus,.mdw-selection__input:hover:not([disabled]){transform:scale(2)}.mdw-selection__icon{display:inline-flex;position:relative;box-sizing:border-box;height:24px;max-width:0;width:24px;margin:auto 0;padding:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;cursor:pointer;outline:none;-webkit-tap-highlight-color:transparent;transition-property:background-color,border-color;pointer-events:none;z-index:1;background-color:transparent}.mdw-selection__input:disabled~.mdw-selection__icon{cursor:not-allowed}.mdw-selection__icon:before{top:0;left:0;box-sizing:border-box;transition-property:border-width,border-color,background-color,color;background-color:transparent;border:2px solid}.mdw-selection__icon:after,.mdw-selection__icon:before{position:absolute;content:""}.mdw-selection__label{order:-1;padding-right:8px;padding-left:0;cursor:pointer;-webkit-tap-highlight-color:transparent;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;z-index:1}.mdw-selection__input:disabled~.mdw-selection__label{cursor:not-allowed}.mdw-selection__icon~.mdw-selection__label{order:1;padding-right:0;padding-left:8px}:root[dir=rtl] .mdw-selection__icon{order:1}:root[dir=rtl] .mdw-selection__label{padding-right:0;padding-left:8px}:root[dir=rtl] .mdw-selection__icon~.mdw-selection__label{padding-right:8px;padding-left:0}.mdw-selection>.mdw-selection__input[type=checkbox]~.mdw-selection__icon:before{top:3px;left:3px;height:18px;width:18px;border-radius:2px}.mdw-selection>.mdw-selection__input[type=checkbox]:active:not(:disabled)~.mdw-selection__icon:before,.mdw-selection>.mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:before{border-width:9px}.mdw-selection>.mdw-selection__input[type=checkbox]:checked:not(:active):not(:disabled)~.mdw-selection__icon:before{background-color:currentColor}.mdw-selection>.mdw-selection__input[type=checkbox]~.mdw-selection__icon:after{top:5px;left:5px;height:12.73px;width:5.93px;margin-top:-.86px;margin-left:4.04px}.mdw-selection>.mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:after{box-sizing:border-box;border-right-style:solid;border-bottom-style:solid;border-width:2px;animation-name:showCheck;animation-direction:normal;animation-fill-mode:forwards;transform:rotate(45deg);background-color:transparent}.mdw-selection>.mdw-selection__input[type=radio]~.mdw-selection__icon:before{top:2px;left:2px;height:20px;width:20px;border-color:currentColor;border-radius:50%}.mdw-selection>.mdw-selection__input[type=radio]:active:not(:disabled)~.mdw-selection__icon:before{border-width:10px}.mdw-selection>.mdw-selection__input[type=radio]~.mdw-selection__icon:after{top:2px;left:2px;height:20px;width:20px;transition-property:transform,background-color;transform:scale(0);background-color:currentColor;border-radius:50%}.mdw-selection>.mdw-selection__input[type=radio]:checked~.mdw-selection__icon:after{transform:scale(.5)}.mdw-selection__input.mdw-overlay:before{display:none;content:none}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]{margin-right:12px;transform:scale(0) translateX(-2px)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked{transform:scale(0) translateX(14px)}.mdw-selection:active:not(:disabled)>.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox],.mdw-selection:hover:not(:disabled)>.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox],.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:active:not(:disabled),.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:focus,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:hover:not(:disabled){transform:translateX(-2px) scale(2)}.mdw-selection:active:not(:disabled)>.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked,.mdw-selection:hover:not(:disabled)>.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:active:not(:disabled):checked,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:focus:checked,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:hover:not(:disabled):checked{transform:translateX(14px) scale(2)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:active:not(:disabled)~.mdw-selection__icon{color:inherit}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]~.mdw-selection__icon:before{top:2px;left:0;height:20px;width:20px;border-style:none;transition-property:background-color,transform;transform:translateX(0);z-index:1;border-radius:50%;box-shadow:0 0 2px 0 rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.12),0 1px 3px 0 rgba(0,0,0,.2)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:before{transform:translateX(16px)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:active~.mdw-selection__icon:before,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:before{color:inherit}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]~.mdw-selection__icon:after{top:5px;bottom:5px;left:0;height:14px;width:36px;margin:0;border-style:none;animation-name:none;transform:none;border-radius:7px}.mdw-selection__icon,.mdw-selection__icon:after,.mdw-selection__icon:before,.mdw-selection__input{animation-duration:.1s;animation-timing-function:cubic-bezier(.4,0,.2,1);animation-delay:0s;transition-delay:0s;transition-duration:.1s;transition-timing-function:cubic-bezier(.4,0,.2,1)}@keyframes showCheck{0%{clip:rect(11.23px,0,auto,auto)}31.77921%{clip:rect(11.23px,5.93px,auto,auto)}to{clip:rect(0,5.93px,auto,auto)}}.mdw-slider__input{-moz-appearance:none;-webkit-appearance:none;width:100%;color:inherit;background:transparent}.mdw-slider__input:focus{outline:none}.mdw-slider__input::-ms-track{cursor:pointer;background:transparent;color:transparent}.mdw-slider__input::-moz-range-track{width:100%;height:2px;background-color:currentColor;border-color:transparent;color:inherit}.mdw-slider__input::-ms-track{width:100%;height:2px;background-color:currentColor;border-color:transparent;color:inherit}.mdw-slider__input::-webkit-slider-runnable-track{width:100%;height:2px;background-color:currentColor;border-color:transparent;color:inherit}.mdw-slider__input::-ms-thumb{height:12px;width:12px;border-radius:50%;background-color:currentColor;color:inherit;cursor:pointer}.mdw-slider__input::-moz-range-thumb{height:12px;width:12px;border-radius:50%;background-color:currentColor;color:inherit;cursor:pointer}.mdw-slider__input::-webkit-slider-thumb{height:12px;width:12px;border-radius:50%;background-color:currentColor;color:inherit;cursor:pointer;-webkit-appearance:none;margin-top:-5px}.mdw-snackbar__wrapper{position:relative;z-index:6}.mdw-snackbar__container{display:flex;position:absolute;right:0;bottom:0;left:0;flex-direction:row;justify-content:flex-start;z-index:6}.mdw-snackbar__container[mdw-position=end]{justify-content:flex-end}.mdw-snackbar__container[mdw-position=center]{justify-content:center}.mdw-snackbar{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;display:flex;position:absolute;bottom:0;align-items:center;justify-content:space-between;min-height:48px;max-width:100%;padding-right:8px;padding-left:8px;animation-name:none;animation-duration:.15s;animation-timing-function:cubic-bezier(0,0,.2,1);animation-direction:normal;animation-fill-mode:forwards;will-change:opacity,transform,visibility;opacity:0;pointer-events:auto;transform:scale(.85);visibility:hidden;border-radius:4px;box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2)}.mdw-snackbar[aria-hidden=false]{animation-name:showSnackbar;opacity:1;transform:scale(1);visibility:visible}.mdw-snackbar[aria-hidden=true]{animation-name:hideSnackbar;animation-duration:75ms;animation-timing-function:cubic-bezier(.4,0,1,1)}.mdw-snackbar:focus{outline:none}@keyframes hideSnackbar{0%{opacity:1;transform:scale(1);visibility:visible}to{opacity:0;transform:scale(.85);visibility:hidden}}@keyframes showSnackbar{0%{opacity:0;transform:scale(.85);visibility:hidden}to{opacity:1;transform:scale(1);visibility:visible}}.mdw-snackbar .mdw-button{order:1;flex:none;margin:6px 0}.mdw-snackbar>span{box-sizing:border-box;padding:0 8px;white-space:pre-line}.mdw-snackbar>span:before{content:"";display:inline-block;height:1em;margin-top:16px}.mdw-snackbar>span:after{content:"";display:inline-block;vertical-align:-18px}@media screen and (max-width:599px){.mdw-snackbar{right:0;left:0}.mdw-snackbar[mdw-stacked]{align-items:flex-end;flex-direction:column;justify-content:center}.mdw-snackbar[mdw-stacked]>span{width:100%}.mdw-snackbar[mdw-stacked] .mdw-button{margin-top:2px;margin-bottom:8px}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-snackbar:after{min-height:inherit;min-width:0;content:""}.mdw-snackbar__container[mdw-position=center] .mdw-snackbar{transform:translateX(-50%)}html[dir=rtl] .mdw-snackbar__container[mdw-position=center] .mdw-snackbar{transform:translateX(50%)}html[dir=rtl] .mdw-snackbar__container[mdw-position=center] .mdw-snackbar[mdw-hide]{transform:translateX(50%) scale(.85)}.mdw-snackbar__container[mdw-position=center] .mdw-snackbar[mdw-hide]{transform:translateX(-50%) scale(.85)}.mdw-snackbar__container[mdw-position=end] .mdw-snackbar{right:0}html[dir=rtl] .mdw-snackbar__container[mdw-position=end] .mdw-snackbar{right:auto;left:0}}.mdw-tab{display:flex;flex-direction:column}.mdw-tab__list{display:flex;display:grid;position:relative;flex-direction:row;grid-auto-columns:1fr;justify-content:flex-start;-ms-overflow-style:none;overflow-x:auto;overflow-y:hidden;scrollbar-width:none;flex:none;overscroll-behavior-x:none}.mdw-tab__list::-webkit-scrollbar{display:none}.mdw-tab__list[mdw-scrollable]{display:flex;overflow-x:auto;box-sizing:border-box}.mdw-tab__list[mdw-scrollable]:after,.mdw-tab__list[mdw-scrollable]:before{min-width:52px;content:""}.mdw-tab__list[mdw-scrollable]>.mdw-tab__item{min-width:90px;max-width:100%;flex:none}.mdw-tab__icon,.mdw-tab__indicator,.mdw-tab__label{transition-duration:.1s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-tab__indicator{position:absolute;right:auto;bottom:0;left:0;height:2px;width:0;width:1000px;transition-property:none;transform:translateX(0) scaleX(0);transform-origin:0 0 0;background-color:currentColor}.mdw-tab__indicator[mdw-animate]{transition-property:transform}.mdw-tab__item{display:flex;position:relative;align-items:center;flex-direction:column;grid-row:1;overflow:hidden;box-sizing:content-box;min-height:48px;flex:auto;cursor:pointer;-webkit-tap-highlight-color:transparent;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;z-index:0;border-radius:0;box-shadow:none}.mdw-tab__icon{margin-top:12px;margin-bottom:-20px;transition-property:color;pointer-events:none}.mdw-tab__icon:after{content:"";display:inline-block;vertical-align:-20px}.mdw-tab__label{font-weight:500;text-transform:uppercase;letter-spacing:.07812rem;font-size:.875rem;line-height:1rem;box-sizing:border-box;margin-top:auto;margin-bottom:auto;padding:0 16px;transition-property:color;pointer-events:none;text-align:center}.mdw-tab__icon~.mdw-tab__label{display:block;min-height:0;margin: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__content{display:flex;position:relative;align-items:stretch;flex-direction:row;-ms-overflow-style:none;overflow-x:hidden;overflow-x:scroll;scroll-behavior:smooth;scroll-snap-type:x mandatory;scrollbar-width:none;flex-grow:1;-webkit-scroll-snap-type-x:mandatory;scroll-snap-type-x:mandatory;-webkit-scroll-snap-points-x:repeat(100%);scroll-snap-points-x:repeat(100%);-ms-scroll-snap-x:mandatory snapInterval(0,100%);overscroll-behavior-x:none}.mdw-tab[mdw-resize-stage] .mdw-tab__content{scroll-behavior:auto}.mdw-tab__content::-webkit-scrollbar{display:none}.mdw-tab__panel{scroll-snap-align:center;min-width:100%;max-width:100%;flex-shrink:0;flex-basis:100%;will-change:visibility;visibility:visible}.mdw-tab__panel[aria-expanded=false] .mdw-tabs__panel__inactive-hide,.mdw-tab__panel[aria-expanded=true] .mdw-tabs__panel__active-hide,.mdw-tab__panel[aria-hidden=true]{visibility:hidden}.mdw-tab__panel[aria-expanded=false] .mdw-tabs__panel__inactive-remove,.mdw-tab__panel[aria-expanded=true] .mdw-tabs__panel__active-remove{display:none}.mdw-tab__content[mdw-no-scroll]{overflow-x:hidden;scroll-behavior:auto}.mdw-textfield{display:-ms-grid;display:grid;position:relative;align-items:baseline;grid-template-columns:12px auto auto 1fr auto auto 8px;-ms-grid-columns:12px auto auto 1fr auto auto 8px;grid-template-rows:auto auto;-ms-grid-rows:auto auto;padding:8px 0;transition-duration:.1s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-textfield[mdw-solo]{grid-template-columns:0 auto auto 1fr auto auto 0;-ms-grid-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-weight:400;letter-spacing:.00937rem;font-size:1rem;line-height:1.25rem}.mdw-textfield:before{content:"";display:inline-block;-ms-grid-column:4;grid-column:4;-ms-grid-row:1;grid-row:1;box-sizing:content-box;height:1em;margin-top:12px;margin-bottom:16px;padding-top:.75rem}.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-top:0;margin-bottom: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-top:8px;margin-bottom:8px}.mdw-textfield__prefix,.mdw-textfield__suffix{-ms-grid-row:1;grid-row:1;transition-duration:.1s;transition-property:color;transition-timing-function:cubic-bezier(.4,0,.2,1);will-change:color;pointer-events:none}.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{position:absolute;top:2px;right:12px;bottom:0;left:12px;-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1;margin-top:-2px;margin-bottom:-1px}.mdw-textfield__outline-gap:after,.mdw-textfield__outline-gap:before{content:none;position:absolute;top:0;border-top-style:solid;border-top-width:1px;transition-delay:1ms;transition-duration:50ms;transition-property:left,right;transition-timing-function:cubic-bezier(.4,0,.2,1);border-color:inherit}.mdw-textfield__outline-gap:before,:root[dir=rtl] .mdw-textfield__outline-gap:after{right:100%;left:0}.mdw-textfield__outline-gap:after,:root[dir=rtl] .mdw-textfield__outline-gap:before{right:0;left:100%}.mdw-textfield__border{display:flex;position:relative;-ms-grid-row-align:stretch;align-self:stretch;-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:7;grid-column-end:span 7;-ms-grid-row:1;grid-row:1;box-sizing:border-box;min-width:100%;cursor:pointer;-webkit-tap-highlight-color:transparent;transition-delay:1ms;transition-duration:.1s;transition-property:color,border-color;transition-timing-function:cubic-bezier(.4,0,.2,1);border:1px transparent;border-bottom:1px solid;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.mdw-textfield__input:focus~.mdw-textfield__border{pointer-events:none}.mdw-textfield__input:disabled~.mdw-textfield__border{cursor:not-allowed}.mdw-textfield__border:after,.mdw-textfield__border:before{content:"";position:absolute;right:0;bottom:-2px;left:0;height:100%;border-bottom-style:solid;border-width:2px;transition-delay:1ms;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);will-change:transform;transform:scaleX(0) translateY(-.5px);border-radius:inherit;color:transparent}.mdw-textfield[mdw-outlined] .mdw-textfield__border{border-style:solid;transition:none;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.mdw-textfield[mdw-outlined] .mdw-textfield__border:after,.mdw-textfield[mdw-outlined] .mdw-textfield__border:before{content:"";position:relative;top:auto;right:auto;bottom:auto;left:auto;transition:none;will-change:auto;transform:none;color:inherit}.mdw-textfield[mdw-outlined] .mdw-textfield__border:after{flex-grow:1}.mdw-textfield[mdw-outlined] .mdw-textfield__border:before,:root[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__border:after{min-width:9px;margin-top:-1px;margin-right:0;margin-left:-1px;border-style:solid none solid solid;border-width:inherit;border-color:currentColor transparent transparent currentColor;border-top-left-radius:inherit;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:inherit}.mdw-textfield[mdw-outlined] .mdw-textfield__border:after,:root[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__border:before{min-width:7px;margin-top:-1px;margin-right:-1px;margin-left:0;border-style:solid solid solid none;border-width:inherit;border-color:currentColor currentColor transparent transparent;border-top-left-radius:0;border-top-right-radius:inherit;border-bottom-right-radius:inherit;border-bottom-left-radius:0}.mdw-textfield[mdw-outlined] .mdw-textfield__border .mdw-textfield__outline-gap{position:relative;top:auto;right:auto;bottom:auto;left:auto;max-width:calc(100% - 24px);margin-top:-1px;margin-bottom:-1px;color:inherit}.mdw-textfield[mdw-outlined] .mdw-textfield__border .mdw-textfield__outline-gap:after,.mdw-textfield[mdw-outlined] .mdw-textfield__border .mdw-textfield__outline-gap:before{content:"";bottom:0;border-style:solid none;border-top-color:currentColor;border-bottom-color:transparent;border-radius:0;color:inherit}.mdw-textfield[mdw-outlined] .mdw-textfield__input{-ms-grid-row-align:center;align-self:center;margin:8px 0;border-right:none;border-left:2px solid transparent}:root[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__input{border-right:2px solid transparent;border-left:none}.mdw-textfield[mdw-outlined] .mdw-textfield__label{position:relative;top:0;padding:0 4px;transform:translateY(-50%)}.mdw-textfield[mdw-outlined] .mdw-textfield__label:before{content:none}.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-weight:400;letter-spacing:.00937rem;font-size:1rem;line-height:1.25rem;top:50%;transform:translateY(-50%)}.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:before,:root[dir=rtl] .mdw-textfield[mdw-value-empty]>input.mdw-textfield__input:not(:focus)~.mdw-textfield__border .mdw-textfield__outline-gap:after,:root[dir=rtl] .mdw-textfield[mdw-value-empty]>textarea.mdw-textfield__input:not(:focus)~.mdw-textfield__border .mdw-textfield__outline-gap:after{right:50%;left:0}.mdw-textfield[mdw-value-empty]>input.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:after,:root[dir=rtl] .mdw-textfield[mdw-value-empty]>input.mdw-textfield__input:not(:focus)~.mdw-textfield__border .mdw-textfield__outline-gap:before,:root[dir=rtl] .mdw-textfield[mdw-value-empty]>textarea.mdw-textfield__input:not(:focus)~.mdw-textfield__border .mdw-textfield__outline-gap:before{right:0;left:50%}.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-weight:400;letter-spacing:.00937rem;font-size:1rem;line-height:1.25rem;top:50%;transform:translateY(-50%)}.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:before,:root[dir=rtl] .mdw-textfield>input.mdw-textfield__input:not(:focus):placeholder-shown~.mdw-textfield__border .mdw-textfield__outline-gap:after,:root[dir=rtl] .mdw-textfield>textarea.mdw-textfield__input:not(:focus):placeholder-shown~.mdw-textfield__border .mdw-textfield__outline-gap:after{right:50%;left:0}.mdw-textfield>input.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:after,:root[dir=rtl] .mdw-textfield>input.mdw-textfield__input:not(:focus):placeholder-shown~.mdw-textfield__border .mdw-textfield__outline-gap:before,:root[dir=rtl] .mdw-textfield>textarea.mdw-textfield__input:not(:focus):placeholder-shown~.mdw-textfield__border .mdw-textfield__outline-gap:before{right:0;left:50%}.mdw-textfield__label{position:absolute;top:0;right:0;left:0;-ms-grid-row-align:start;align-self:flex-start;overflow-x:hidden;margin:0;padding:0;transition-duration:.2s;transition-property:top,transform,font-size;transition-timing-function:cubic-bezier(.4,0,.2,1);will-change:top,transform,font-size;pointer-events:none;transform:translateY(0);text-overflow:ellipsis;white-space:nowrap}.mdw-textfield__label,.mdw-textfield__label:before{font-weight:400;letter-spacing:.025rem;font-size:.75rem;line-height:1rem}.mdw-textfield__label:before{content:"";display:inline-block;vertical-align:-8px;box-sizing:content-box;height:1em;margin-top:8px;padding-top:8px}.mdw-textfield__signifier{-ms-grid-row-align:center;align-self:center;-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1;margin-top:8px;margin-bottom:8px}.mdw-textfield__signifier:after{content:"";display:inline-block;width:8px}.mdw-textfield__signifier~.mdw-textfield__border .mdw-textfield__outline-gap{margin-right:0;margin-left:32px}:root[dir=rtl] .mdw-textfield__signifier~.mdw-textfield__border .mdw-textfield__outline-gap{margin-right:32px;margin-left:0}.mdw-textfield[mdw-outlined] .mdw-textfield__signifier~.mdw-textfield__border:before{padding-right:32px;padding-left:0}:root[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__signifier~.mdw-textfield__border:before{padding-right:0;padding-left:32px}.mdw-textfield[mdw-outlined] .mdw-textfield__signifier~.mdw-textfield__border .mdw-textfield__outline-gap{max-width:calc(100% - 56px);margin-left:0}:root[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__signifier~.mdw-textfield__border .mdw-textfield__outline-gap{margin-right:0}.mdw-textfield__input{-ms-grid-column:4;grid-column-start:4;-ms-grid-column-span:2;grid-column-end:span 2;-ms-grid-row:1;grid-row:1;box-sizing:border-box;min-width:0;width:100%;margin:0;border:none;padding:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;outline:none;-webkit-tap-highlight-color:transparent;z-index:1;background:none;box-shadow:none;font-weight:inherit;font-size:inherit;line-height:inherit;font-family:inherit;letter-spacing:inherit}.mdw-textfield__input::placeholder{transition-delay:1ms;transition-duration:.1s;transition-property:color;transition-timing-function:cubic-bezier(.4,0,.2,1);will-change:color}.mdw-textfield__input:not(:focus){cursor:pointer}.mdw-textfield__input:disabled{cursor:not-allowed}.mdw-textfield__input,.mdw-textfield__prefix,.mdw-textfield__suffix{-ms-grid-row-align:flex-start;align-self:flex-start;margin-top:calc(12px + .75rem);margin-bottom:8px}textarea.mdw-textfield__input{-ms-overflow-style:-ms-autohiding-scrollbar;overflow-y:auto;min-height:1em;min-width:100%;max-width:100%;padding-right:16px;padding-bottom:0;padding-left:0}:root[dir=rtl] textarea.mdw-textfield__input{padding-right:0;padding-left:16px}.mdw-textfield[mdw-autosize]>textarea.mdw-textfield__input{min-height:1em;resize:none}select.mdw-textfield__input{padding-right:24px;padding-left:0;cursor:pointer}:root[dir=rtl] select.mdw-textfield__input{padding-right:0;padding-left:24px}select.mdw-textfield__input::-ms-expand{display:none}select.mdw-textfield__input option{-moz-appearance:none;-webkit-appearance:none;appearance:none;font-weight:inherit;font-size:inherit;font-family:inherit}.mdw-textfield__error-text{opacity:0;transform:translateY(-25%)}.mdw-textfield__error-text,.mdw-textfield__helper-text{font-weight:400;letter-spacing:.025rem;font-size:.75rem;line-height:1rem;-ms-grid-column:3;grid-column:3;-ms-grid-column-span:4;grid-column-end:span 4;-ms-grid-row:2;grid-row:2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mdw-textfield__error-text:before,.mdw-textfield__helper-text:before{content:"";display:inline-block;height:1em;margin-top:4px}.mdw-textfield__icon{display:flex;-ms-grid-row-align:center;align-self:center;-ms-grid-column:5;grid-column:5;-ms-grid-row:1;grid-row:1;height:24px;width:24px}.mdw-textfield__icon[mdw-dropdown]{pointer-events:none}.mdw-textfield__icon[mdw-dropdown]:after{content:"";width:0;margin-top:10px;margin-right:auto;margin-left:auto;border-top:5px solid;border-right:5px solid transparent;border-left:5px solid transparent}.mdw-textfield__dropdown{position:absolute;-ms-grid-column:1;grid-column:1;-ms-grid-column-span:7;grid-column-end:span 7;-ms-grid-row:2;grid-row:2;overflow:hidden;max-height:0;max-width:100%;width:100%;margin-top:0;margin-bottom:8px;transition-duration:.2s;transition-property:box-shadow,max-height;transition-timing-function:cubic-bezier(.4,0,1,1);z-index:2;border-bottom-right-radius:4px;border-bottom-left-radius:4px;box-shadow:none}.mdw-textfield[mdw-outlined] .mdw-textfield__dropdown{margin-top:8px;border-top-left-radius:4px;border-top-right-radius:4px}.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:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);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-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}.mdw-textfield__dropdown[mdw-type=list]{-ms-overflow-style:-ms-autohiding-scrollbar;overflow-y:auto}.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-name:labelShake;animation-duration:.2s;animation-timing-function:linear;animation-delay:.1s}.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{transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:scaleX(1) translateY(-.5px)}.mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border,.mdw-textfield[mdw-outlined]>.mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border{border-width:2px}.mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border:before,.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:after,html[dir=rtl] .mdw-textfield[mdw-outlined]>.mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border:after{min-width:8px;margin-top:-2px;margin-right:0;margin-left:-2px}.mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border:after,.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:before,html[dir=rtl] .mdw-textfield[mdw-outlined]>.mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border:before{min-width:6px;margin-top:-2px;margin-right:-2px;margin-left:0}.mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border .mdw-textfield__outline-gap,.mdw-textfield[mdw-outlined]>.mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border .mdw-textfield__outline-gap{margin-top:-2px;margin-bottom:-2px}.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,.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{border-top-width:2px}.mdw-textfield__input:focus:invalid~.mdw-textfield__error-text{transition-duration:.15s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(0,0,.2,1);will-change:transform,opacity;opacity:1;transform:translateY(0)}@keyframes labelShake{0%{transform:translateX(0)}33%{transform:translateX(4px)}66%{transform:translateX(-4px)}to{transform:translateX(0)}}.mdw-tooltip__wrapper{position:relative;overflow:visible}.mdw-tooltip,.mdw-tooltip__target{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;-webkit-touch-callout:none}.mdw-tooltip{font-weight:400;letter-spacing:.025rem;font-size:.75rem;line-height:1rem;position:absolute;top:100%;left:50%;align-items:center;flex-direction:column;justify-content:center;width:auto;padding:6px 8px;cursor:none;transition-duration:75ms;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:0;pointer-events:none;transform:translateX(-50%) translateY(14px);z-index:8;border-radius:4px;line-height:1;white-space:nowrap}.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{transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:.9}.mdw-tooltip[mdw-align=start],:root[dir=rtl] .mdw-tooltip[mdw-align=end]{right:auto;left:0}.mdw-tooltip[mdw-align=end],:root[dir=rtl] .mdw-tooltip[mdw-align=start]{right:0;left:auto}.mdw-tooltip[mdw-align=end],.mdw-tooltip[mdw-align=start]{transform:translateY(14px)}.mdw-tooltip[mdw-position=end],.mdw-tooltip[mdw-position=left],.mdw-tooltip[mdw-position=right],.mdw-tooltip[mdw-position=start]{top:50%;left:0}.mdw-tooltip[mdw-position=left],.mdw-tooltip[mdw-position=start],:root[dir=rtl] .mdw-tooltip[mdw-position=end]{margin:0;transform:translateY(-50%) translateX(-100%)}.mdw-tooltip[mdw-position=end],.mdw-tooltip[mdw-position=right],:root[dir=rtl] .mdw-tooltip[mdw-position=start]{transform:translateY(-50%) translateX(100%)}.mdw-tooltip[mdw-position=top]{top:0;transform:translateX(-50%) translateY(-100%) translateY(-14px)}.mdw-tooltip[mdw-position=top][mdw-align=end],.mdw-tooltip[mdw-position=top][mdw-align=start]{transform:translateY(-100%) translateY(-14px)}.mdw-tooltip__wrapper>.mdw-button[mdw-icon]~.mdw-tooltip:not([mdw-position]){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{transition-delay:0;opacity:0}@media (any-pointer:coarse){.mdw-tooltip{padding:10px 16px;transition-delay:.5s;transform:translateX(-50%) translateY(24px);font-size:.875rem}.mdw-tooltip[mdw-align=end],.mdw-tooltip[mdw-align=start]{transform:translateY(24px)}.mdw-tooltip[mdw-position=top]{transform:translateX(-50%) translateY(-100%) translateY(-24px)}.mdw-tooltip[mdw-position=top][mdw-align=end],.mdw-tooltip[mdw-position=top][mdw-align=start]{transform: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{transition-delay:1.5s;opacity:0}.mdw-tooltip .mdw-tooltip__wrapper>.mdw-tooltip__target:active~.mdw-tooltip,.mdw-tooltip__target:active>.mdw-tooltip{transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:.9}}h1.mdw-type,h2.mdw-type,h3.mdw-type,h4.mdw-type,h5.mdw-type,h6.mdw-type,p.mdw-type{margin:0}p.mdw-type{hyphens:auto;-webkit-hyphens:auto;-ms-hyphens:auto}.mdw-type[mdw-style=h1],h1.mdw-type{font-weight:300;letter-spacing:-.09375rem;font-size:6rem;line-height:7rem}.mdw-type[mdw-style=h2],h2.mdw-type{font-weight:300;letter-spacing:-.03125rem;font-size:3.75rem;line-height:4.5rem}.mdw-type[mdw-style=h3],h3.mdw-type{font-weight:400;letter-spacing:0;font-size:3rem;line-height:3.5rem}.mdw-type[mdw-style=h4],h4.mdw-type{font-weight:400;letter-spacing:.01562rem;font-size:2.125rem;line-height:2.5rem}.mdw-type[mdw-style=h5],h5.mdw-type{font-weight:400;letter-spacing:0;font-size:1.5rem;line-height:1.75rem}.mdw-type[mdw-style=h6],h6.mdw-type{font-weight:500;letter-spacing:.00937rem;font-size:1.25rem;line-height:1.5rem}.mdw-type[mdw-style=subtitle]{font-weight:400;letter-spacing:.00937rem;font-size:1rem;line-height:1.25rem}.mdw-type[mdw-style=subtitle-2]{font-weight:500;letter-spacing:.00625rem;font-size:.875rem;line-height:1rem}.mdw-type[mdw-style=body],body.mdw-type,p.mdw-type{font-weight:400;letter-spacing:.03125rem;font-size:1rem;line-height:1.5rem}.mdw-type[mdw-style=body-2]{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem}.mdw-type[mdw-style=button]{font-weight:500;text-transform:uppercase;letter-spacing:.07812rem;font-size:.875rem;line-height:1rem}.mdw-type[mdw-style=caption]{font-weight:400;letter-spacing:.025rem;font-size:.75rem;line-height:1rem}.mdw-type[mdw-style=overline]{font-weight:400;letter-spacing:.09375rem;font-size:.625rem;line-height:.75rem}.mdw-type[mdw-style|=display]{font-weight:400;font-size:2.125rem;line-height:2.5rem}.mdw-type[mdw-style=display-4]{font-size:7rem;line-height:normal;font-weight:300;white-space:nowrap}.mdw-type[mdw-style=display-3]{font-size:3.5rem;line-height:normal;white-space:nowrap}.mdw-type[mdw-style=display-2]{font-size:2.8125rem;line-height:3rem}.mdw-type[mdw-style=headline]{font-size:1.5rem;line-height:2rem;font-weight:400}.mdw-type[mdw-style=title]{font-size:1.25rem;font-weight:500;white-space:nowrap}.mdw-type[mdw-style|=subheading]{font-size:.9375rem;font-weight:400;line-height:1.5rem}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-type[mdw-style|=subheading]{font-size:1rem}}.mdw-type[mdw-style=subheading-2]{line-height:1.75rem}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-type[mdw-style=subheading-2]{line-height:1.75rem}}.mdw-type[mdw-texttop-top]:before{content:"";display:inline-block;height:1em}.mdw-type[mdw-baseline-bottom]:after,.mdw-type[mdw-baseline-next]+.mdw-type:before,.mdw-type[mdw-baseline-next]:after,.mdw-type[mdw-baseline-top]:before{content:"";display:inline-block}.mdw-type[mdw-texttop-top="4dp"]:before{margin-top:4px}.mdw-type[mdw-texttop-top="4"]:before{margin-top:.25rem}.mdw-type[mdw-baseline-top="4dp"]:before{height:4px}.mdw-type[mdw-baseline-top="4"]:before{height:.25rem}.mdw-type[mdw-baseline-bottom="4dp"]:after{vertical-align:-4px}.mdw-type[mdw-baseline-bottom="4"]:after{vertical-align:-.25rem}.mdw-type[mdw-baseline-next="4dp"]{margin-bottom:-4px}.mdw-type[mdw-baseline-next="4dp"]:after{vertical-align:-4px}.mdw-type[mdw-baseline-next="4dp"]+.mdw-type:before{height:4px}.mdw-type[mdw-baseline-next="4"]{margin-bottom:-.25rem}.mdw-type[mdw-baseline-next="4"]:after{vertical-align:-.25rem}.mdw-type[mdw-baseline-next="4"]+.mdw-type:before{height:.25rem}.mdw-type[mdw-texttop-top="8dp"]:before{margin-top:8px}.mdw-type[mdw-texttop-top="8"]:before{margin-top:.5rem}.mdw-type[mdw-baseline-top="8dp"]:before{height:8px}.mdw-type[mdw-baseline-top="8"]:before{height:.5rem}.mdw-type[mdw-baseline-bottom="8dp"]:after{vertical-align:-8px}.mdw-type[mdw-baseline-bottom="8"]:after{vertical-align:-.5rem}.mdw-type[mdw-baseline-next="8dp"]{margin-bottom:-8px}.mdw-type[mdw-baseline-next="8dp"]:after{vertical-align:-8px}.mdw-type[mdw-baseline-next="8dp"]+.mdw-type:before{height:8px}.mdw-type[mdw-baseline-next="8"]{margin-bottom:-.5rem}.mdw-type[mdw-baseline-next="8"]:after{vertical-align:-.5rem}.mdw-type[mdw-baseline-next="8"]+.mdw-type:before{height:.5rem}.mdw-type[mdw-texttop-top="12dp"]:before{margin-top:12px}.mdw-type[mdw-texttop-top="12"]:before{margin-top:.75rem}.mdw-type[mdw-baseline-top="12dp"]:before{height:12px}.mdw-type[mdw-baseline-top="12"]:before{height:.75rem}.mdw-type[mdw-baseline-bottom="12dp"]:after{vertical-align:-12px}.mdw-type[mdw-baseline-bottom="12"]:after{vertical-align:-.75rem}.mdw-type[mdw-baseline-next="12dp"]{margin-bottom:-12px}.mdw-type[mdw-baseline-next="12dp"]:after{vertical-align:-12px}.mdw-type[mdw-baseline-next="12dp"]+.mdw-type:before{height:12px}.mdw-type[mdw-baseline-next="12"]{margin-bottom:-.75rem}.mdw-type[mdw-baseline-next="12"]:after{vertical-align:-.75rem}.mdw-type[mdw-baseline-next="12"]+.mdw-type:before{height:.75rem}.mdw-type[mdw-texttop-top="16dp"]:before{margin-top:16px}.mdw-type[mdw-texttop-top="16"]:before{margin-top:1rem}.mdw-type[mdw-baseline-top="16dp"]:before{height:16px}.mdw-type[mdw-baseline-top="16"]:before{height:1rem}.mdw-type[mdw-baseline-bottom="16dp"]:after{vertical-align:-16px}.mdw-type[mdw-baseline-bottom="16"]:after{vertical-align:-1rem}.mdw-type[mdw-baseline-next="16dp"]{margin-bottom:-16px}.mdw-type[mdw-baseline-next="16dp"]:after{vertical-align:-16px}.mdw-type[mdw-baseline-next="16dp"]+.mdw-type:before{height:16px}.mdw-type[mdw-baseline-next="16"]{margin-bottom:-1rem}.mdw-type[mdw-baseline-next="16"]:after{vertical-align:-1rem}.mdw-type[mdw-baseline-next="16"]+.mdw-type:before{height:1rem}.mdw-type[mdw-texttop-top="20dp"]:before{margin-top:20px}.mdw-type[mdw-texttop-top="20"]:before{margin-top:1.25rem}.mdw-type[mdw-baseline-top="20dp"]:before{height:20px}.mdw-type[mdw-baseline-top="20"]:before{height:1.25rem}.mdw-type[mdw-baseline-bottom="20dp"]:after{vertical-align:-20px}.mdw-type[mdw-baseline-bottom="20"]:after{vertical-align:-1.25rem}.mdw-type[mdw-baseline-next="20dp"]{margin-bottom:-20px}.mdw-type[mdw-baseline-next="20dp"]:after{vertical-align:-20px}.mdw-type[mdw-baseline-next="20dp"]+.mdw-type:before{height:20px}.mdw-type[mdw-baseline-next="20"]{margin-bottom:-1.25rem}.mdw-type[mdw-baseline-next="20"]:after{vertical-align:-1.25rem}.mdw-type[mdw-baseline-next="20"]+.mdw-type:before{height:1.25rem}.mdw-type[mdw-texttop-top="24dp"]:before{margin-top:24px}.mdw-type[mdw-texttop-top="24"]:before{margin-top:1.5rem}.mdw-type[mdw-baseline-top="24dp"]:before{height:24px}.mdw-type[mdw-baseline-top="24"]:before{height:1.5rem}.mdw-type[mdw-baseline-bottom="24dp"]:after{vertical-align:-24px}.mdw-type[mdw-baseline-bottom="24"]:after{vertical-align:-1.5rem}.mdw-type[mdw-baseline-next="24dp"]{margin-bottom:-24px}.mdw-type[mdw-baseline-next="24dp"]:after{vertical-align:-24px}.mdw-type[mdw-baseline-next="24dp"]+.mdw-type:before{height:24px}.mdw-type[mdw-baseline-next="24"]{margin-bottom:-1.5rem}.mdw-type[mdw-baseline-next="24"]:after{vertical-align:-1.5rem}.mdw-type[mdw-baseline-next="24"]+.mdw-type:before{height:1.5rem}.mdw-type[mdw-texttop-top="28dp"]:before{margin-top:28px}.mdw-type[mdw-texttop-top="28"]:before{margin-top:1.75rem}.mdw-type[mdw-baseline-top="28dp"]:before{height:28px}.mdw-type[mdw-baseline-top="28"]:before{height:1.75rem}.mdw-type[mdw-baseline-bottom="28dp"]:after{vertical-align:-28px}.mdw-type[mdw-baseline-bottom="28"]:after{vertical-align:-1.75rem}.mdw-type[mdw-baseline-next="28dp"]{margin-bottom:-28px}.mdw-type[mdw-baseline-next="28dp"]:after{vertical-align:-28px}.mdw-type[mdw-baseline-next="28dp"]+.mdw-type:before{height:28px}.mdw-type[mdw-baseline-next="28"]{margin-bottom:-1.75rem}.mdw-type[mdw-baseline-next="28"]:after{vertical-align:-1.75rem}.mdw-type[mdw-baseline-next="28"]+.mdw-type:before{height:1.75rem}.mdw-type[mdw-texttop-top="32dp"]:before{margin-top:32px}.mdw-type[mdw-texttop-top="32"]:before{margin-top:2rem}.mdw-type[mdw-baseline-top="32dp"]:before{height:32px}.mdw-type[mdw-baseline-top="32"]:before{height:2rem}.mdw-type[mdw-baseline-bottom="32dp"]:after{vertical-align:-32px}.mdw-type[mdw-baseline-bottom="32"]:after{vertical-align:-2rem}.mdw-type[mdw-baseline-next="32dp"]{margin-bottom:-32px}.mdw-type[mdw-baseline-next="32dp"]:after{vertical-align:-32px}.mdw-type[mdw-baseline-next="32dp"]+.mdw-type:before{height:32px}.mdw-type[mdw-baseline-next="32"]{margin-bottom:-2rem}.mdw-type[mdw-baseline-next="32"]:after{vertical-align:-2rem}.mdw-type[mdw-baseline-next="32"]+.mdw-type:before{height:2rem}.mdw-type[mdw-texttop-top="36dp"]:before{margin-top:36px}.mdw-type[mdw-texttop-top="36"]:before{margin-top:2.25rem}.mdw-type[mdw-baseline-top="36dp"]:before{height:36px}.mdw-type[mdw-baseline-top="36"]:before{height:2.25rem}.mdw-type[mdw-baseline-bottom="36dp"]:after{vertical-align:-36px}.mdw-type[mdw-baseline-bottom="36"]:after{vertical-align:-2.25rem}.mdw-type[mdw-baseline-next="36dp"]{margin-bottom:-36px}.mdw-type[mdw-baseline-next="36dp"]:after{vertical-align:-36px}.mdw-type[mdw-baseline-next="36dp"]+.mdw-type:before{height:36px}.mdw-type[mdw-baseline-next="36"]{margin-bottom:-2.25rem}.mdw-type[mdw-baseline-next="36"]:after{vertical-align:-2.25rem}.mdw-type[mdw-baseline-next="36"]+.mdw-type:before{height:2.25rem}.mdw-type[mdw-texttop-top="40dp"]:before{margin-top:40px}.mdw-type[mdw-texttop-top="40"]:before{margin-top:2.5rem}.mdw-type[mdw-baseline-top="40dp"]:before{height:40px}.mdw-type[mdw-baseline-top="40"]:before{height:2.5rem}.mdw-type[mdw-baseline-bottom="40dp"]:after{vertical-align:-40px}.mdw-type[mdw-baseline-bottom="40"]:after{vertical-align:-2.5rem}.mdw-type[mdw-baseline-next="40dp"]{margin-bottom:-40px}.mdw-type[mdw-baseline-next="40dp"]:after{vertical-align:-40px}.mdw-type[mdw-baseline-next="40dp"]+.mdw-type:before{height:40px}.mdw-type[mdw-baseline-next="40"]{margin-bottom:-2.5rem}.mdw-type[mdw-baseline-next="40"]:after{vertical-align:-2.5rem}.mdw-type[mdw-baseline-next="40"]+.mdw-type:before{height:2.5rem}.mdw-type[mdw-texttop-top="48dp"]:before{margin-top:48px}.mdw-type[mdw-texttop-top="48"]:before{margin-top:3rem}.mdw-type[mdw-baseline-top="48dp"]:before{height:48px}.mdw-type[mdw-baseline-top="48"]:before{height:3rem}.mdw-type[mdw-baseline-bottom="48dp"]:after{vertical-align:-48px}.mdw-type[mdw-baseline-bottom="48"]:after{vertical-align:-3rem}.mdw-type[mdw-baseline-next="48dp"]{margin-bottom:-48px}.mdw-type[mdw-baseline-next="48dp"]:after{vertical-align:-48px}.mdw-type[mdw-baseline-next="48dp"]+.mdw-type:before{height:48px}.mdw-type[mdw-baseline-next="48"]{margin-bottom:-3rem}.mdw-type[mdw-baseline-next="48"]:after{vertical-align:-3rem}.mdw-type[mdw-baseline-next="48"]+.mdw-type:before{height:3rem}.mdw-type[mdw-texttop-top="56dp"]:before{margin-top:56px}.mdw-type[mdw-texttop-top="56"]:before{margin-top:3.5rem}.mdw-type[mdw-baseline-top="56dp"]:before{height:56px}.mdw-type[mdw-baseline-top="56"]:before{height:3.5rem}.mdw-type[mdw-baseline-bottom="56dp"]:after{vertical-align:-56px}.mdw-type[mdw-baseline-bottom="56"]:after{vertical-align:-3.5rem}.mdw-type[mdw-baseline-next="56dp"]{margin-bottom:-56px}.mdw-type[mdw-baseline-next="56dp"]:after{vertical-align:-56px}.mdw-type[mdw-baseline-next="56dp"]+.mdw-type:before{height:56px}.mdw-type[mdw-baseline-next="56"]{margin-bottom:-3.5rem}.mdw-type[mdw-baseline-next="56"]:after{vertical-align:-3.5rem}.mdw-type[mdw-baseline-next="56"]+.mdw-type:before{height:3.5rem}.mdw-type[mdw-texttop-top="64dp"]:before{margin-top:64px}.mdw-type[mdw-texttop-top="64"]:before{margin-top:4rem}.mdw-type[mdw-baseline-top="64dp"]:before{height:64px}.mdw-type[mdw-baseline-top="64"]:before{height:4rem}.mdw-type[mdw-baseline-bottom="64dp"]:after{vertical-align:-64px}.mdw-type[mdw-baseline-bottom="64"]:after{vertical-align:-4rem}.mdw-type[mdw-baseline-next="64dp"]{margin-bottom:-64px}.mdw-type[mdw-baseline-next="64dp"]:after{vertical-align:-64px}.mdw-type[mdw-baseline-next="64dp"]+.mdw-type:before{height:64px}.mdw-type[mdw-baseline-next="64"]{margin-bottom:-4rem}.mdw-type[mdw-baseline-next="64"]:after{vertical-align:-4rem}.mdw-type[mdw-baseline-next="64"]+.mdw-type:before{height:4rem}
|
package/docs/spec.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=22)}({22:function(e,t,n){e.exports=n(23)},23:function(e,t,n){e.exports=n.p+"spec.min.css"}});
|
|
2
|
-
//# sourceMappingURL=spec.min.js.map
|
package/docs/spec.min.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./spec.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","object","property","prototype","hasOwnProperty","p","s"],"mappings":"aACA,IAAAA,EAAA,GAGA,SAAAC,EAAAC,GAGA,GAAAF,EAAAE,GACA,OAAAF,EAAAE,GAAAC,QAGA,IAAAC,EAAAJ,EAAAE,GAAA,CACAG,EAAAH,EACAI,GAAA,EACAH,QAAA,IAUA,OANAI,EAAAL,GAAAM,KAAAJ,EAAAD,QAAAC,IAAAD,QAAAF,GAGAG,EAAAE,GAAA,EAGAF,EAAAD,QAKAF,EAAAQ,EAAAF,EAGAN,EAAAS,EAAAV,EAGAC,EAAAU,EAAA,SAAAR,EAAAS,EAAAC,GACAZ,EAAAa,EAAAX,EAAAS,IACAG,OAAAC,eAAAb,EAAAS,EAAA,CAA0CK,YAAA,EAAAC,IAAAL,KAK1CZ,EAAAkB,EAAA,SAAAhB,GACA,oBAAAiB,eAAAC,aACAN,OAAAC,eAAAb,EAAAiB,OAAAC,YAAA,CAAwDC,MAAA,WAExDP,OAAAC,eAAAb,EAAA,cAAiDmB,OAAA,KAQjDrB,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,YAAA,EAAAK,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,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAH,EAAAU,EAAAE,EAAA,IAAAA,GACAA,GAIAZ,EAAAa,EAAA,SAAAiB,EAAAC,GAAsD,OAAAjB,OAAAkB,UAAAC,eAAA1B,KAAAuB,EAAAC,IAGtD/B,EAAAkC,EAAA,GAIAlC,IAAAmC,EAAA,6DClFAhC,EAAAD,QAAiBF,EAAAkC,EAAuB","file":"spec.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 = 22);\n","module.exports = __webpack_public_path__ + \"spec.min.css\";"],"sourceRoot":""}
|
package/docs/surface.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="mdw-layout mdw-theme" lang="en" mdw-theme="default"><head><title>Material Design Web</title><meta charset="utf-8"><meta content="IE=edge" http-equiv="X-UA-Compatible"><meta content="Material Design Web - CSS/JS Framework" 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"><link rel="stylesheet" href="//fonts.googleapis.com/css?family=Merriweather:300,400,500"><link rel="stylesheet" href="docs.min.css"><link rel="stylesheet" href="spec.min.css"><link rel="stylesheet" href="themes-fallbacks.min.css" media="screen and (-ms-high-contrast: active), (-ms-high-contrast: none)"><link rel="stylesheet" href="themes.min.css"><script src="prerender.common.min.js"></script><script src="prerender.min.js"></script></head><body class="mdw-layout__body mdw-theme" mdw-surface="content" mdw-sidesheet-toggle="dismissible" mdw-sidesheet-style="modal"><div class="mdw-layout__menus"></div><div class="mdw-layout__dialogs"></div><nav class="mdw-layout__navdrawer"><div class="mdw-layout__sheet-content mdw-theme" mdw-surface="card"><ul class="mdw-list" role="tree"><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" href="index.html" mdw-ink="primary"><div class="mdw-list__text">Home</div></a></li><div class="mdw-list__subheader mdw-theme" mdw-ink="medium">Core</div><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="overlay.html" mdw-ink="primary-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">tonality</div><div class="mdw-list__text"><div class="mdw-list__text-block">Overlay</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="ripple.html" mdw-ink="primary-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">center_focus_strong</div><div class="mdw-list__text"><div class="mdw-list__text-block">Ripple</div></div></a></li><li class="mdw-list__expander mdw-theme" aria-expanded="true"><span class="mdw-list__expander-content"><div class="mdw-list__text">Theme</div><div class="mdw-list__secondary mdw-theme material-icons" mdw-ink="medium">expand_more</div></span><ul class="mdw-list__item-group" role="group"><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="ink.html" mdw-ink="primary-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">border_color</div><div class="mdw-list__text"><div class="mdw-list__text-block">Ink</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-current="page" aria-selected="true" href="surface.html" mdw-ink="primary-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">format_color_fill</div><div class="mdw-list__text"><div class="mdw-list__text-block">Surface</div></div></a></li></ul></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="transition.html" mdw-ink="primary-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">open_in_new</div><div class="mdw-list__text"><div class="mdw-list__text-block">Transition</div></div></a></li><div class="mdw-list__subheader mdw-theme" mdw-ink="medium">Components</div><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="appbar.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">web_asset</div><div class="mdw-list__text"><div class="mdw-list__text-block">App Bar</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="bottomnav.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">call_to_action</div><div class="mdw-list__text"><div class="mdw-list__text-block">Bottom Navigation</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="button.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">crop_landscape</div><div class="mdw-list__text"><div class="mdw-list__text-block">Button</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="card.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">crop_square</div><div class="mdw-list__text"><div class="mdw-list__text-block">Card</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="chip.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">check_circle</div><div class="mdw-list__text"><div class="mdw-list__text-block">Chip</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="datatable.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">format_align_justify</div><div class="mdw-list__text"><div class="mdw-list__text-block">Data Table</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="dialog.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">select_all</div><div class="mdw-list__text"><div class="mdw-list__text-block">Dialog</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="elevation.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">layers</div><div class="mdw-list__text"><div class="mdw-list__text-block">Elevation</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="fab.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">add_circle</div><div class="mdw-list__text"><div class="mdw-list__text-block">Floating Action Button</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="grid.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">view_compact</div><div class="mdw-list__text"><div class="mdw-list__text-block">Grid</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="layout.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">view_quilt</div><div class="mdw-list__text"><div class="mdw-list__text-block">Layout</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="list.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">view_list</div><div class="mdw-list__text"><div class="mdw-list__text-block">List</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="menu.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">picture_in_picture</div><div class="mdw-list__text"><div class="mdw-list__text-block">Menu</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="progress.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">timelapse</div><div class="mdw-list__text"><div class="mdw-list__text-block">Progress</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="search.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">search</div><div class="mdw-list__text"><div class="mdw-list__text-block">Search</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="selection.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">toggle_on</div><div class="mdw-list__text"><div class="mdw-list__text-block">Selection</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="slider.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">tune</div><div class="mdw-list__text"><div class="mdw-list__text-block">Slider</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="snackbar.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">video_label</div><div class="mdw-list__text"><div class="mdw-list__text-block">Snackbar</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="tab.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">tab</div><div class="mdw-list__text"><div class="mdw-list__text-block">Tab</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="textfield.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">text_fields</div><div class="mdw-list__text"><div class="mdw-list__text-block">Text Field</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="tooltip.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">info</div><div class="mdw-list__text"><div class="mdw-list__text-block">Tooltip</div></div></a></li><li class="mdw-list__item"><a class="mdw-list__content mdw-overlay mdw-ripple mdw-theme" aria-selected="false" href="type.html" mdw-ink="accent-contrast"><div class="mdw-list__icon mdw-theme material-icons" mdw-ink="medium">font_download</div><div class="mdw-list__text"><div class="mdw-list__text-block">Typography</div></div></a></li></ul></div></nav><div class="mdw-layout__scrim"></div><div class="mdw-layout__appbar mdw-appbar mdw-theme" mdw-autohide="mobile tablet" mdw-surface="accent 500" mdw-dark><div class="mdw-layout__appbar-shape"></div><div class="mdw-appbar__action"><div class="mdw-appbar__start"><div class="mdw-tooltip__wrapper"><a class="mdw-tooltip__target mdw-button mdw-overlay mdw-ripple mdw-layout__navdrawer-toggle material-icons" mdw-icon href="#docs-navdrawer">menu</a><div class="mdw-tooltip mdw-theme" mdw-surface="background 700" mdw-align="start">Menu</div></div></div><div class="mdw-appbar__title">surface</div><div class="mdw-appbar__end" id="docs-menu-buttons"><div class="mdw-tooltip__wrapper"><button class="mdw-tooltip__target mdw-button mdw-overlay mdw-ripple material-icons" id="altThemeButton" mdw-icon mdw-overlay-off="activated" aria-pressed="false">palette</button><div class="mdw-tooltip mdw-theme" mdw-surface="background 700" mdw-align="end">Alt Theme</div></div><div class="mdw-tooltip__wrapper"><button class="mdw-tooltip__target mdw-button mdw-overlay mdw-ripple material-icons" id="darkModeButton" mdw-icon mdw-overlay-off="activated" aria-pressed="false">brightness_3</button><div class="mdw-tooltip mdw-theme" mdw-surface="background 700" mdw-align="end">Dark Mode</div></div><div class="mdw-tooltip__wrapper"><button class="mdw-tooltip__target mdw-button mdw-overlay mdw-ripple material-icons" id="rtlButton" mdw-icon mdw-overlay-off="activated" aria-pressed="false">format_align_right</button><div class="mdw-tooltip mdw-theme" mdw-surface="background 700" mdw-align="end">Right-to-Left</div></div><div class="mdw-tooltip__wrapper"><button class="mdw-tooltip__target mdw-button mdw-overlay mdw-ripple material-icons" id="largeFontButton" mdw-icon mdw-overlay-off="activated" aria-pressed="false">format_size</button><div class="mdw-tooltip mdw-theme" mdw-surface="background 700" mdw-align="end">200% Text</div></div></div></div></div><div class="mdw-layout__fab"></div><div class="mdw-layout__snackbar"></div><div class="mdw-layout__content"><div class="mdw-layout__content-page"><div class="mdw-grid" mdw-margin-top mdw-margin-bottom mdw-stretch><div class="mdw-grid__item" mdw-colspan="4"><div class="mdw-grid__content"><h6 class="mdw-type">Default</h6><div class="display-flex flex-column"><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="content">Content</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="card">Card</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="monochrome">Monochrome</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="black" mdw-dark>Black</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="white" mdw-light>White</div></div></div></div><div class="mdw-grid__item" mdw-colspan="4"><div class="mdw-grid__content"><h6 class="mdw-type">Primary</h6><div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 50" mdw-light>50</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 100" mdw-light>100</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary A100" mdw-light>A100</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 200" mdw-light>200</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary A200" mdw-light>A200</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 300" mdw-light>300</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 400" mdw-light>400</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary A400" mdw-light>A400</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 500" mdw-dark>500</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 600" mdw-dark>600</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 700" mdw-dark>700</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary A700" mdw-dark>A700</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 800" mdw-dark>800</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="primary 900" mdw-dark>900</div></div></div></div><div class="mdw-grid__item" mdw-colspan="4"><div class="mdw-grid__content"><h6 class="mdw-type">Accent</h6><div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent 50" mdw-light>50</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent 100" mdw-light>100</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent A100" mdw-light>A100</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent 200" mdw-light>200</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent A200" mdw-light>A200</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent 300" mdw-light>300</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent 400" mdw-light>400</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent A400" mdw-light>A400</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent 500" mdw-dark>500</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent 600" mdw-dark>600</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent 700" mdw-dark>700</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent A700" mdw-dark>A700</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent 800" mdw-dark>800</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="accent 900" mdw-dark>900</div></div></div></div><div class="mdw-grid__item" mdw-colspan="4"><div class="mdw-grid__content"><h6 class="mdw-type">Warn</h6><div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 50" mdw-light>50</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 100" mdw-light>100</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn A100" mdw-light>A100</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 200" mdw-light>200</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn A200" mdw-light>A200</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 300" mdw-light>300</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 400" mdw-light>400</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn A400" mdw-light>A400</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 500" mdw-dark>500</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 600" mdw-dark>600</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 700" mdw-dark>700</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn A700" mdw-dark>A700</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 800" mdw-dark>800</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="warn 900" mdw-dark>900</div></div></div></div><div class="mdw-grid__item" mdw-colspan="4"><div class="mdw-grid__content"><h6 class="mdw-type">Background</h6><div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background 50" mdw-light>50</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background 100" mdw-light>100</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background A100" mdw-light>A100</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background 200" mdw-light>200</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background A200" mdw-light>A200</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background 300" mdw-light>300</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background 400" mdw-light>400</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background A400" mdw-light>A400</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background 500" mdw-dark>500</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background 600" mdw-dark>600</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background 700" mdw-dark>700</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background A700" mdw-dark>A700</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background 800" mdw-dark>800</div><div class="demo-core-item mdw-elevation mdw-overlay mdw-ripple mdw-theme" mdw-elevation="1" mdw-surface="background 900" mdw-dark>900</div></div></div></div></div><script src="ink.min.js"></script></div></div></body><script src="default.common.min.js"></script></html>
|
package/docs/surface.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
!function(e){function t(t){for(var n,l,a=t[0],i=t[1],c=t[2],p=0,s=[];p<a.length;p++)l=a[p],o[l]&&s.push(o[l][0]),o[l]=0;for(n in i)Object.prototype.hasOwnProperty.call(i,n)&&(e[n]=i[n]);for(f&&f(t);s.length;)s.shift()();return u.push.apply(u,c||[]),r()}function r(){for(var e,t=0;t<u.length;t++){for(var r=u[t],n=!0,a=1;a<r.length;a++){var i=r[a];0!==o[i]&&(n=!1)}n&&(u.splice(t--,1),e=l(l.s=r[0]))}return e}var n={},o={29:0},u=[];function l(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,l),r.l=!0,r.exports}l.m=e,l.c=n,l.d=function(e,t,r){l.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},l.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,t){if(1&t&&(e=l(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(l.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)l.d(r,n,function(t){return e[t]}.bind(null,n));return r},l.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return l.d(t,"a",t),t},l.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},l.p="";var a=window.webpackJsonp=window.webpackJsonp||[],i=a.push.bind(a);a.push=t,a=a.slice();for(var c=0;c<a.length;c++)t(a[c]);var f=i;u.push([43,0]),r()}({43:function(e,t,r){r(44),e.exports=r(45)},44:function(e,t,r){"use strict";r.r(t);var n=r(3),o=r(1),u=r(0);Object(u.h)(document.getElementsByClassName("mdw-overlay"),n.a),Object(u.h)(document.getElementsByClassName("mdw-ripple"),o.a)},45:function(e,t,r){e.exports=r.p+"surface.html"}});
|
|
2
|
-
//# sourceMappingURL=surface.min.js.map
|
package/docs/surface.min.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./core/surface.js","webpack:///./core/surface.pug"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","installedChunks","push","Object","prototype","hasOwnProperty","call","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","29","exports","module","l","m","c","d","name","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","p","jsonpArray","window","oldJsonpFunction","slice","__webpack_exports__","_core_overlay_index__WEBPACK_IMPORTED_MODULE_0__","_core_ripple_index__WEBPACK_IMPORTED_MODULE_1__","_core_dom__WEBPACK_IMPORTED_MODULE_2__","iterateArrayLike","document","getElementsByClassName","Overlay","Ripple"],"mappings":"aACA,SAAAA,EAAAC,GAQA,IAPA,IAMAC,EAAAC,EANAC,EAAAH,EAAA,GACAI,EAAAJ,EAAA,GACAK,EAAAL,EAAA,GAIAM,EAAA,EAAAC,EAAA,GACQD,EAAAH,EAAAK,OAAoBF,IAC5BJ,EAAAC,EAAAG,GACAG,EAAAP,IACAK,EAAAG,KAAAD,EAAAP,GAAA,IAEAO,EAAAP,GAAA,EAEA,IAAAD,KAAAG,EACAO,OAAAC,UAAAC,eAAAC,KAAAV,EAAAH,KACAc,EAAAd,GAAAG,EAAAH,IAKA,IAFAe,KAAAhB,GAEAO,EAAAC,QACAD,EAAAU,OAAAV,GAOA,OAHAW,EAAAR,KAAAS,MAAAD,EAAAb,GAAA,IAGAe,IAEA,SAAAA,IAEA,IADA,IAAAC,EACAf,EAAA,EAAiBA,EAAAY,EAAAV,OAA4BF,IAAA,CAG7C,IAFA,IAAAgB,EAAAJ,EAAAZ,GACAiB,GAAA,EACAC,EAAA,EAAkBA,EAAAF,EAAAd,OAA2BgB,IAAA,CAC7C,IAAAC,EAAAH,EAAAE,GACA,IAAAf,EAAAgB,KAAAF,GAAA,GAEAA,IACAL,EAAAQ,OAAApB,IAAA,GACAe,EAAAM,IAAAC,EAAAN,EAAA,KAGA,OAAAD,EAIA,IAAAQ,EAAA,GAKApB,EAAA,CACAqB,GAAA,GAGAZ,EAAA,GAGA,SAAAS,EAAA1B,GAGA,GAAA4B,EAAA5B,GACA,OAAA4B,EAAA5B,GAAA8B,QAGA,IAAAC,EAAAH,EAAA5B,GAAA,CACAK,EAAAL,EACAgC,GAAA,EACAF,QAAA,IAUA,OANAhB,EAAAd,GAAAa,KAAAkB,EAAAD,QAAAC,IAAAD,QAAAJ,GAGAK,EAAAC,GAAA,EAGAD,EAAAD,QAKAJ,EAAAO,EAAAnB,EAGAY,EAAAQ,EAAAN,EAGAF,EAAAS,EAAA,SAAAL,EAAAM,EAAAC,GACAX,EAAAY,EAAAR,EAAAM,IACA1B,OAAA6B,eAAAT,EAAAM,EAAA,CAA0CI,YAAA,EAAAC,IAAAJ,KAK1CX,EAAAgB,EAAA,SAAAZ,GACA,oBAAAa,eAAAC,aACAlC,OAAA6B,eAAAT,EAAAa,OAAAC,YAAA,CAAwDC,MAAA,WAExDnC,OAAA6B,eAAAT,EAAA,cAAiDe,OAAA,KAQjDnB,EAAAoB,EAAA,SAAAD,EAAAE,GAEA,GADA,EAAAA,IAAAF,EAAAnB,EAAAmB,IACA,EAAAE,EAAA,OAAAF,EACA,KAAAE,GAAA,iBAAAF,QAAAG,WAAA,OAAAH,EACA,IAAAI,EAAAvC,OAAAwC,OAAA,MAGA,GAFAxB,EAAAgB,EAAAO,GACAvC,OAAA6B,eAAAU,EAAA,WAAyCT,YAAA,EAAAK,UACzC,EAAAE,GAAA,iBAAAF,EAAA,QAAAM,KAAAN,EAAAnB,EAAAS,EAAAc,EAAAE,EAAA,SAAAA,GAAgH,OAAAN,EAAAM,IAAqBC,KAAA,KAAAD,IACrI,OAAAF,GAIAvB,EAAA2B,EAAA,SAAAtB,GACA,IAAAM,EAAAN,KAAAiB,WACA,WAA2B,OAAAjB,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAL,EAAAS,EAAAE,EAAA,IAAAA,GACAA,GAIAX,EAAAY,EAAA,SAAAgB,EAAAC,GAAsD,OAAA7C,OAAAC,UAAAC,eAAAC,KAAAyC,EAAAC,IAGtD7B,EAAA8B,EAAA,GAEA,IAAAC,EAAAC,OAAA,aAAAA,OAAA,iBACAC,EAAAF,EAAAhD,KAAA2C,KAAAK,GACAA,EAAAhD,KAAAX,EACA2D,IAAAG,QACA,QAAAvD,EAAA,EAAgBA,EAAAoD,EAAAlD,OAAuBF,IAAAP,EAAA2D,EAAApD,IACvC,IAAAU,EAAA4C,EAIA1C,EAAAR,KAAA,QAEAU,gFCtJAO,EAAAgB,EAAAmB,GAAA,IAAAC,EAAApC,EAAA,GAAAqC,EAAArC,EAAA,GAAAsC,EAAAtC,EAAA,GAIAuC,YAAiBC,SAASC,uBAAuB,eAAgBC,KACjEH,YAAiBC,SAASC,uBAAuB,cAAeE,yBCLhEtC,EAAAD,QAAiBJ,EAAA8B,EAAuB","file":"surface.min.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t29: 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \tvar jsonpArray = window[\"webpackJsonp\"] = window[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// add entry module to deferred list\n \tdeferredModules.push([43,0]);\n \t// run deferred modules when ready\n \treturn checkDeferredModules();\n","import * as Overlay from '../../core/overlay/index';\nimport * as Ripple from '../../core/ripple/index';\nimport { iterateArrayLike } from '../../core/dom';\n\niterateArrayLike(document.getElementsByClassName('mdw-overlay'), Overlay.attach);\niterateArrayLike(document.getElementsByClassName('mdw-ripple'), Ripple.attach);\n","module.exports = __webpack_public_path__ + \"surface.html\";"],"sourceRoot":""}
|