cozy-bar 1.17.1
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 +7 -0
- package/.github/auto-merge.yml +7 -0
- package/.nvmrc +1 -0
- package/.transifexrc.tpl +4 -0
- package/.travis.yml +28 -0
- package/.tx/config +8 -0
- package/CHANGELOG.md +493 -0
- package/CODEOWNERS +2 -0
- package/CONTRIBUTING.md +135 -0
- package/LICENSE +21 -0
- package/README.md +172 -0
- package/babel.config.js +3 -0
- package/config/aliases/globalReact.js +1 -0
- package/config/aliases/globalReactDOM.js +1 -0
- package/config/webpack.config.analyzer.js +10 -0
- package/config/webpack.config.base.js +61 -0
- package/config/webpack.config.dev.js +16 -0
- package/config/webpack.config.extract.js +84 -0
- package/config/webpack.config.inline-styles.js +82 -0
- package/config/webpack.config.jsx.js +14 -0
- package/config/webpack.config.prod.js +18 -0
- package/config/webpack.js +31 -0
- package/config/webpack.vars.js +11 -0
- package/dist/cozy-bar.css +9445 -0
- package/dist/cozy-bar.css.map +1 -0
- package/dist/cozy-bar.js +122668 -0
- package/dist/cozy-bar.js.map +1 -0
- package/dist/cozy-bar.min.css +9 -0
- package/dist/cozy-bar.min.css.map +1 -0
- package/dist/cozy-bar.min.js +57 -0
- package/dist/cozy-bar.min.js.map +1 -0
- package/dist/cozy-bar.mobile.js +123719 -0
- package/dist/cozy-bar.mobile.js.map +1 -0
- package/dist/cozy-bar.mobile.min.js +57 -0
- package/dist/cozy-bar.mobile.min.js.map +1 -0
- package/docs/dev.md +20 -0
- package/examples/Procfile +3 -0
- package/examples/icon.png +0 -0
- package/examples/index.html +7 -0
- package/examples/index.jsx +122 -0
- package/examples/logs.js +3 -0
- package/package.json +163 -0
- package/postcss.config.js +23 -0
- package/public/fonts/Lato-Bold.woff2 +0 -0
- package/public/fonts/Lato-Regular.woff2 +0 -0
- package/public/fonts.css +13 -0
- package/public/icon-type-folder-32.png +0 -0
- package/public/index.html +63 -0
- package/renovate.json +5 -0
- package/src/assets/icons/16/icon-claudy.svg +5 -0
- package/src/assets/icons/16/icon-cozy-16.svg +1 -0
- package/src/assets/icons/16/icon-cube-16.svg +6 -0
- package/src/assets/icons/16/icon-logout-16.svg +3 -0
- package/src/assets/icons/16/icon-magnifier-16.svg +6 -0
- package/src/assets/icons/16/icon-people-16.svg +3 -0
- package/src/assets/icons/16/icon-phone-16.svg +3 -0
- package/src/assets/icons/16/icon-question-mark-16.svg +3 -0
- package/src/assets/icons/16/icon-storage-16.svg +3 -0
- package/src/assets/icons/24/icon-arrow-left.svg +3 -0
- package/src/assets/icons/32/icon-claudy.svg +1 -0
- package/src/assets/icons/apps/icon-collect.svg +25 -0
- package/src/assets/icons/apps/icon-drive.svg +17 -0
- package/src/assets/icons/apps/icon-market-soon.svg +25 -0
- package/src/assets/icons/apps/icon-photos.svg +19 -0
- package/src/assets/icons/apps/icon-soon.svg +21 -0
- package/src/assets/icons/apps/icon-store.svg +19 -0
- package/src/assets/icons/claudyActions/icon-bills.svg +6 -0
- package/src/assets/icons/claudyActions/icon-laptop.svg +7 -0
- package/src/assets/icons/claudyActions/icon-phone.svg +8 -0
- package/src/assets/icons/claudyActions/icon-question-mark.svg +6 -0
- package/src/assets/icons/comingsoon/icon-bank.svg +12 -0
- package/src/assets/icons/comingsoon/icon-sante.svg +12 -0
- package/src/assets/icons/comingsoon/icon-store.svg +6 -0
- package/src/assets/icons/icon-cozy.svg +3 -0
- package/src/assets/icons/icon-shield.svg +3 -0
- package/src/assets/icons/spinner.svg +4 -0
- package/src/assets/sprites/icon-apps.svg +1 -0
- package/src/assets/sprites/icon-cozy-home.svg +16 -0
- package/src/components/Apps/AppItem.jsx +117 -0
- package/src/components/Apps/AppItemPlaceholder.jsx +12 -0
- package/src/components/Apps/AppNavButtons.jsx +88 -0
- package/src/components/Apps/AppsContent.jsx +89 -0
- package/src/components/Apps/ButtonCozyHome.jsx +30 -0
- package/src/components/Apps/ButtonCozyHome.spec.jsx +53 -0
- package/src/components/Apps/IconCozyHome.jsx +24 -0
- package/src/components/Apps/index.jsx +81 -0
- package/src/components/Banner.jsx +41 -0
- package/src/components/Bar.jsx +293 -0
- package/src/components/Bar.spec.jsx +133 -0
- package/src/components/Claudy.jsx +81 -0
- package/src/components/Drawer.jsx +227 -0
- package/src/components/Drawer.spec.jsx +98 -0
- package/src/components/SearchBar.jsx +358 -0
- package/src/components/Settings/SettingsContent.jsx +145 -0
- package/src/components/Settings/StorageData.jsx +29 -0
- package/src/components/Settings/helper.js +8 -0
- package/src/components/Settings/index.jsx +218 -0
- package/src/components/SupportModal.jsx +59 -0
- package/src/components/__snapshots__/Bar.spec.jsx.snap +302 -0
- package/src/config/claudyActions.yaml +14 -0
- package/src/config/persistWhitelist.yaml +2 -0
- package/src/dom.js +80 -0
- package/src/index.jsx +235 -0
- package/src/index.spec.jsx +34 -0
- package/src/lib/api/helpers.js +13 -0
- package/src/lib/api/index.jsx +145 -0
- package/src/lib/exceptions.js +89 -0
- package/src/lib/expiringMemoize.js +13 -0
- package/src/lib/icon.js +77 -0
- package/src/lib/importIcons.js +14 -0
- package/src/lib/intents.js +16 -0
- package/src/lib/logger.js +6 -0
- package/src/lib/middlewares/appsI18n.js +57 -0
- package/src/lib/realtime.js +43 -0
- package/src/lib/reducers/apps.js +175 -0
- package/src/lib/reducers/apps.spec.js +59 -0
- package/src/lib/reducers/content.js +50 -0
- package/src/lib/reducers/context.js +83 -0
- package/src/lib/reducers/index.js +73 -0
- package/src/lib/reducers/locale.js +22 -0
- package/src/lib/reducers/settings.js +111 -0
- package/src/lib/reducers/theme.js +48 -0
- package/src/lib/reducers/unserializable.js +26 -0
- package/src/lib/stack-client.js +401 -0
- package/src/lib/stack.js +79 -0
- package/src/lib/store/index.js +54 -0
- package/src/locales/de.json +57 -0
- package/src/locales/en.json +57 -0
- package/src/locales/es.json +57 -0
- package/src/locales/fr.json +57 -0
- package/src/locales/it.json +57 -0
- package/src/locales/ja.json +57 -0
- package/src/locales/nl_NL.json +57 -0
- package/src/locales/pl.json +57 -0
- package/src/locales/ru.json +57 -0
- package/src/locales/sq.json +57 -0
- package/src/locales/zh_CN.json +57 -0
- package/src/proptypes/index.js +10 -0
- package/src/queries/index.js +16 -0
- package/src/styles/apps.css +248 -0
- package/src/styles/banner.css +64 -0
- package/src/styles/bar.css +106 -0
- package/src/styles/base.css +41 -0
- package/src/styles/claudy.css +99 -0
- package/src/styles/drawer.css +126 -0
- package/src/styles/index.styl +33 -0
- package/src/styles/indicators.css +58 -0
- package/src/styles/nav.css +81 -0
- package/src/styles/navigation_item.css +39 -0
- package/src/styles/searchbar.css +158 -0
- package/src/styles/settings.css +44 -0
- package/src/styles/storage.css +22 -0
- package/src/styles/supportModal.css +20 -0
- package/src/styles/theme.styl +25 -0
- package/test/__mocks__/fileMock.js +3 -0
- package/test/__snapshots__/index.spec.js.snap +41 -0
- package/test/components/AppItem.spec.jsx +113 -0
- package/test/components/AppsContent.spec.jsx +116 -0
- package/test/components/Settings/helper.spec.js +23 -0
- package/test/components/__snapshots__/AppsContent.spec.jsx.snap +90 -0
- package/test/index.spec.js +24 -0
- package/test/jestLib/I18n.js +15 -0
- package/test/jestLib/setup.js +14 -0
- package/test/lib/__snapshots__/api.spec.jsx.snap +67 -0
- package/test/lib/__snapshots__/stack.spec.js.snap +3 -0
- package/test/lib/api.spec.jsx +142 -0
- package/test/lib/mockStackClient.js +7 -0
- package/test/lib/stack-client/stack-client.appiconprops.spec.js +65 -0
- package/test/lib/stack-client/stack-client.compare.spec.js +20 -0
- package/test/lib/stack-client/stack-client.cozyfetchjson.spec.js +46 -0
- package/test/lib/stack-client/stack-client.cozyurl.spec.js +29 -0
- package/test/lib/stack-client/stack-client.getapp.spec.js +72 -0
- package/test/lib/stack-client/stack-client.getapps.spec.js +72 -0
- package/test/lib/stack-client/stack-client.getcontext.spec.js +96 -0
- package/test/lib/stack-client/stack-client.getstoragedata.spec.js +85 -0
- package/test/lib/stack-client/stack-client.init.spec.js +56 -0
- package/test/lib/stack-client/stack-client.intents.spec.js +27 -0
- package/test/lib/stack-client/stack-client.logout.spec.js +40 -0
- package/test/lib/stack.spec.js +60 -0
- package/test/store/__snapshots__/index.spec.js.snap +14 -0
- package/test/store/index.spec.js +41 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
[role=banner] .coz-sep-flex{margin:0;border:none;flex:1 0}[role=banner] .blurry{opacity:.5;filter:blur(5px)}[role=banner] [data-icon]{background-repeat:no-repeat;background-position:0 50%;padding-left:calc(16px + .5em)}[role=banner] [data-icon=icon-profile]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBmaWxsPSIjNUQ2MTY1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMzYsNzMgQzEzOC4yMDkxMzksNzMgMTQwLDcwLjk4NTI4MTQgMTQwLDY4LjUgQzE0MCw2Ni4wMTQ3MTg2IDEzOC4yMDkxMzksNjQgMTM2LDY0IEMxMzMuNzkwODYxLDY0IDEzMiw2Ni4wMTQ3MTg2IDEzMiw2OC41IEMxMzIsNzAuOTg1MjgxNCAxMzMuNzkwODYxLDczIDEzNiw3MyBaIE0xMjgsNzggQzEyOCw3NyAxMzAsNzQgMTMyLDc0IEMxMzQsNzQgMTMzLDc1IDEzNiw3NSBDMTM5LDc1IDEzOCw3NCAxNDAsNzQgQzE0Miw3NCAxNDQsNzcgMTQ0LDc4IEMxNDQsNzkgMTQ0LDgwIDE0Myw4MCBMMTI5LDgwIEMxMjgsODAgMTI4LDc5IDEyOCw3OCBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTI4IC02NCkiLz4KPC9zdmc+Cg==)}[role=banner] [data-icon=icon-connectedDevices]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBmaWxsPSIjNUQ2MTY1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNjIsNjUuMDAwODcxNyBDMTYyLDY0LjQ0ODEwNTUgMTYyLjQ1NTc2MSw2NCAxNjMuMDAyNDczLDY0IEwxNzIuOTk3NTI3LDY0IEMxNzMuNTUxMTc3LDY0IDE3NCw2NC40NDQ2MzA5IDE3NCw2NS4wMDA4NzE3IEwxNzQsNzguOTk5MTI4MyBDMTc0LDc5LjU1MTg5NDUgMTczLjU0NDIzOSw4MCAxNzIuOTk3NTI3LDgwIEwxNjMuMDAyNDczLDgwIEMxNjIuNDQ4ODIzLDgwIDE2Miw3OS41NTUzNjkxIDE2Miw3OC45OTkxMjgzIEwxNjIsNjUuMDAwODcxNyBaIE0xNjQsNjYgTDE3Miw2NiBMMTcyLDc2IEwxNjQsNzYgTDE2NCw2NiBaIE0xNjgsNzkgQzE2OC41NTIyODUsNzkgMTY5LDc4LjU1MjI4NDcgMTY5LDc4IEMxNjksNzcuNDQ3NzE1MyAxNjguNTUyMjg1LDc3IDE2OCw3NyBDMTY3LjQ0NzcxNSw3NyAxNjcsNzcuNDQ3NzE1MyAxNjcsNzggQzE2Nyw3OC41NTIyODQ3IDE2Ny40NDc3MTUsNzkgMTY4LDc5IFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNjAgLTY0KSIvPgo8L3N2Zz4K)}[role=banner] [data-icon=icon-help]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBmaWxsPSIjNUQ2MTY1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOTYsODAgQzMwMC40MTgyNzgsODAgMzA0LDc2LjQxODI3OCAzMDQsNzIgQzMwNCw2Ny41ODE3MjIgMzAwLjQxODI3OCw2NCAyOTYsNjQgQzI5MS41ODE3MjIsNjQgMjg4LDY3LjU4MTcyMiAyODgsNzIgQzI4OCw3Ni40MTgyNzggMjkxLjU4MTcyMiw4MCAyOTYsODAgWiBNMjk3LDcyLjgwMjExMyBDMjk4LjEyMTgwOSw3Mi4zNTQ1NTY4IDI5OSw3MS4yMDg5OTQ2IDI5OSw3MCBDMjk5LDY4LjQ0NzcxNTMgMjk3LjU1MjI4NSw2NyAyOTYsNjcgQzI5NC40NDc3MTUsNjcgMjkzLDY4LjQ0NzcxNTMgMjkzLDcwIEwyOTUsNzAgQzI5NSw2OS41NTIyODQ3IDI5NS41NTIyODUsNjkgMjk2LDY5IEMyOTYuNDQ3NzE1LDY5IDI5Nyw2OS41NTIyODQ3IDI5Nyw3MCBDMjk3LDcwLjQ0NzcxNTMgMjk2LjQ0NzcxNSw3MSAyOTYsNzEgQzI5NS40NDc3MTUsNzEgMjk1LDcxLjQ0NzcxNTMgMjk1LDcyIEwyOTUsNzQgTDI5Nyw3NCBMMjk3LDcyLjgwMjExMyBaIE0yOTUsNzUgTDI5Nyw3NSBMMjk3LDc3IEwyOTUsNzcgTDI5NSw3NSBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjg4IC02NCkiLz4KPC9zdmc+Cg==)}[role=banner] [data-icon=icon-logout]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBmaWxsPSIjNUQ2MTY1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zMjcsOTkuNDE0MjEzNiBMMzI1LjcwNzEwNywxMDAuNzA3MTA3IEMzMjUuMzE2NTgyLDEwMS4wOTc2MzEgMzI0LjY4MzQxOCwxMDEuMDk3NjMxIDMyNC4yOTI4OTMsMTAwLjcwNzEwNyBDMzIzLjkwMjM2OSwxMDAuMzE2NTgyIDMyMy45MDIzNjksOTkuNjgzNDE3NSAzMjQuMjkyODkzLDk5LjI5Mjg5MzIgTDMyNy4yOTI4OTMsOTYuMjkyODkzMiBDMzI3LjY4MzQxOCw5NS45MDIzNjg5IDMyOC4zMTY1ODIsOTUuOTAyMzY4OSAzMjguNzA3MTA3LDk2LjI5Mjg5MzIgTDMzMS43MDcxMDcsOTkuMjkyODkzMiBDMzMyLjA5NzYzMSw5OS42ODM0MTc1IDMzMi4wOTc2MzEsMTAwLjMxNjU4MiAzMzEuNzA3MTA3LDEwMC43MDcxMDcgQzMzMS4zMTY1ODIsMTAxLjA5NzYzMSAzMzAuNjgzNDE4LDEwMS4wOTc2MzEgMzMwLjI5Mjg5MywxMDAuNzA3MTA3IEwzMjksOTkuNDE0MjEzNiBMMzI5LDEwNyBDMzI5LDEwNy41NTIyODUgMzI4LjU1MjI4NSwxMDggMzI4LDEwOCBDMzI3LjQ0NzcxNSwxMDggMzI3LDEwNy41NTIyODUgMzI3LDEwNyBMMzI3LDk5LjQxNDIxMzYgWiBNMzIxLDExMiBMMzM1LDExMiBDMzM1LjU1MjI4NSwxMTIgMzM2LDExMS41NTIyODUgMzM2LDExMSBDMzM2LDExMC40NDc3MTUgMzM1LjU1MjI4NSwxMTAgMzM1LDExMCBMMzIxLDExMCBDMzIwLjQ0NzcxNSwxMTAgMzIwLDExMC40NDc3MTUgMzIwLDExMSBDMzIwLDExMS41NTIyODUgMzIwLjQ0NzcxNSwxMTIgMzIxLDExMiBaIiB0cmFuc2Zvcm09InJvdGF0ZSg5MCAyMTYgLTEwNCkiLz4KPC9zdmc+Cg==)}[role=banner] [data-icon=icon-storage]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBmaWxsPSIjNUQ2MTY1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMjUsNjggTDIzOSw2OCBMMjM5LDc4LjAwNDQyMjUgQzIzOSw3OC41NTQyNjQ4IDIzOC41NTAwNTEsNzkgMjM3Ljk5MzE1NSw3OSBMMjI2LjAwNjg0NSw3OSBDMjI1LjQ1MDc4LDc5IDIyNSw3OC41NTUxNjMgMjI1LDc4LjAwNDQyMjUgTDIyNSw2OCBaIE0yMjQsNjYgQzIyNCw2NS40NDc3MTUzIDIyNC40NDQ2MzEsNjUgMjI1LjAwMDg3Miw2NSBMMjM4Ljk5OTEyOCw2NSBDMjM5LjU1MTg5NCw2NSAyNDAsNjUuNDQzODY0OCAyNDAsNjYgTDI0MCw2NyBMMjI0LDY3IEwyMjQsNjYgWiBNMjI5LDcwIEwyMzUsNzAgTDIzNSw3MiBMMjI5LDcyIEwyMjksNzAgWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIyNCAtNjQpIi8+Cjwvc3ZnPgo=)}[role=banner] .u-flex-grow{display:flex;flex-grow:1}[role=banner] progress[value]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--paleGrey);border:solid 1px var(--silver);border-radius:2px;color:var(--dodgerBlue)}[role=banner] progress[value]::-webkit-progress-bar{background:var(--paleGrey);border-radius:2px}[role=banner] progress[value]::-webkit-progress-value{background:var(--dodgerBlue);border-radius:1px}[role=banner] progress[value]::-moz-progress-bar{background:var(--dodgerBlue);border-radius:1px}[role=banner] .coz-nav--error{margin:0 0 .1em;font-weight:400;font-size:.875em;color:var(--pomegranate)}[role=banner] .coz-claudy [data-claudy-loading=true]:before{position:absolute;content:'';width:100%;height:100%;bottom:0;right:0;background:none;border-radius:100%;border:.2em solid var(--scienceBlue);border-right:.2em solid white;box-sizing:border-box;-webkit-animation:1s linear infinite spin;animation:1s linear infinite spin}[role=banner]{position:fixed;top:0;left:0;z-index:var(--z-index-bar);display:flex;align-items:stretch;flex-shrink:0;box-sizing:border-box;width:100%;min-height:3em;font-family:Lato,sans-serif;font-size:1rem}[role=banner] .coz-bar-wrapper{display:flex;flex-direction:column;width:100%}[role=banner] .coz-bar-container{display:flex;height:3rem;width:100%;padding:0 1.25em 0 1em;box-sizing:border-box}[role=banner] .coz-bar-title{display:flex;margin:0;align-items:center;min-width:8em;font-size:1.5em;font-weight:400;color:var(--charcoalGrey)}[role=banner] .coz-bar-title img{margin-right:.45em}[role=banner] .coz-bar-title span{margin-right:.25em}[role=banner] .coz-bar-title strong{font-weight:700}[role=banner] .coz-bar-btn{padding:0;border:none;background-color:transparent;background-position:center;flex:0 0 2.5rem;cursor:pointer}[role=banner] .coz-bar-burger{margin-right:.25em}[role=banner] .coz-bar-banner.unmounted{height:0}[role=banner] .coz-bar-banner{display:flex;background:var(--dodgerBlue);box-sizing:border-box;width:100%;height:3rem;padding:0 1rem;justify-content:space-between;align-items:center;color:white;overflow:hidden;box-shadow:0 4px 4px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.06);transition:height 1s;transition-delay:1s}[role=banner] .coz-bar-banner-button,[role=banner] .coz-bar-banner-button:hover,[role=banner] .coz-bar-banner-button:visited [role=banner] .coz-bar-banner-button:active [role=banner] .coz-bar-banner-button:focus{border-color:white!important;min-height:2rem;height:2rem;flex-shrink:0;max-width:10rem}[role=banner] .coz-nav{display:flex;margin:0;padding:0;list-style-type:none;position:relative}[role=banner] [aria-controls][aria-busy]:after{position:relative;top:.12em;margin:0 .355em;font-size:.875em}[role=banner] [aria-controls][aria-busy=true]{padding-right:0}[role=banner] .coz-nav [aria-controls][data-icon]{padding-left:calc(1.25em + 16px + .5em);background-position:1em calc(50% - 1px)}[role=banner] .coz-nav-pop[aria-hidden=true]{display:flex;transform:scale(0);opacity:0;transition:.2s transform ease-in,.1s opacity ease-in}[role=banner] .coz-nav-pop{position:absolute;top:calc(100% - .25em);box-sizing:border-box;min-width:100%;max-height:calc(100vh - 4rem);overflow-y:auto;background-color:#fff;border-radius:8px;border:solid 1px rgba(50,54,63,.12);box-shadow:0 1px 3px 0 rgba(50,54,63,.19),0 6px 18px 0 rgba(50,54,63,.19);opacity:1;transform:scale(1);transform-origin:80% 0;transition:.2s transform cubic-bezier(.2,.75,.3,1.15);-ms-overflow-style:none}[role=banner] .coz-nav-pop::-webkit-scrollbar{display:none}[role=banner] .coz-nav-pop-content .coz-nav-group{padding:0;margin:0}[role=banner] .coz-nav-pop-content .coz-nav-group:last-of-type{border-radius:0 0 8px 8px}[role=banner] .coz-nav-pop-content .coz-nav-group:first-of-type{border-radius:8px 8px 0 0}[role=banner] .coz-nav-pop .coz-nav-group{border-bottom:solid 1px var(--silver)}[role=banner] .coz-nav-pop .coz-nav-group:last-child{border:0}[role=banner] a[role=menuitem],[role=banner] button[role=menuitem]{cursor:pointer;border-left:4px solid transparent}[role=banner] a[role=menuitem]:hover,[role=banner] a[role=menuitem]:focus,[role=banner] button[role=menuitem]:hover,[role=banner] button[role=menuitem]:focus{background-color:var(--paleGrey)}[role=banner] [role=menuitem][aria-busy=true]:after{right:1.5em;top:.5em}[role=banner] .coz-drawer-wrapper [role=menuitem][aria-busy=true]:after{top:.8em}[role=banner] .coz-nav-group.coz-nav--error{padding:.75em;min-width:20em}[role=banner] a[role=menuitem] p.coz-label{margin:0}[role=banner] div[role=menuitem]:not([data-icon]){margin:0;padding-left:1.5em}[role=banner] .coz-nav-apps-btns{display:flex;align-items:center;font-size:1rem;text-decoration:none;border:none;background-color:transparent;line-height:1rem}[role=banner] .coz-nav-apps-btns-main{display:flex;justify-content:center;align-items:center;height:3rem;margin:0 .75rem;padding:0;background-color:transparent;border:none;color:black;font-size:1rem}[role=banner] .coz-nav-apps-btns-main:hover,[role=banner] .coz-nav-apps-btns-main:focus,[role=banner] .coz-nav-apps-btns-main:active{cursor:pointer;color:black}[role=banner] .coz-nav-apps-btns-main[disabled]:hover,[role=banner] .coz-nav-apps-btns-main[disabled]:focus,[role=banner] .coz-nav-apps-btns-main[disabled]:active{cursor:default}[role=banner] .coz-nav-app-name{margin:0 .4rem;font-weight:700}[role=banner] .coz-nav-apps-btns-sep{height:1.75rem;background-color:#d8d8d8;width:1px}[role=banner] .coz-nav-apps-btns-home{height:2rem;margin-right:.75rem}[role=banner] .coz-nav-apps-btns-home.\--flagship{background:none;border:0;height:100%}[role=banner] .coz-nav-apps-btns-home-svg{max-width:2rem;max-height:2rem}[role=banner] .coz-nav-apps-btns-home,[role=banner] .coz-nav-apps-btns-home[href]:visited{color:var(--dodgerBlue)}[role=banner] .coz-nav-apps-btns-home[href]:hover,[role=banner] .coz-nav-apps-btns-home[href]:active,[role=banner] .coz-nav-apps-btns-home[href]:focus{color:var(--scienceBlue)}[role=banner] .coz-nav-apps-btns.\--currentHome .coz-nav-apps-btns-main{margin-left:0}[role=banner] .coz-nav-apps-btns.\--currentHome .coz-nav-apps-btns-home{margin-right:0}[role=banner] .coz-nav-pop--apps{width:20rem;max-height:20rem;left:3.5rem;transform-origin:10% 0}[role=banner] .coz-nav .\--currentHome+.coz-nav-pop--apps{left:0}[role=banner] .coz-nav-pop--apps .coz-nav-pop-content{display:flex;flex-direction:column;max-height:calc(20rem - 2px);width:100%}[role=banner] .coz-nav-pop--apps .coz-nav-pop-content .coz-nav-group{flex-grow:1;flex-shrink:1;overflow-y:auto}[role=banner] .coz-nav-apps-item{display:flex}[role=banner] .coz-nav-apps-item.\--current a[role=menuitem]{font-weight:700;background-color:var(--paleGrey);border-left:4px solid var(--dodgerBlue)}[role=banner] .coz-nav-apps-item [role=menuitem],[role=banner] [role=menuitem].coz-apps-home-btn{display:flex;box-sizing:border-box;justify-content:flex-start;flex-shrink:0;align-items:center;width:100%;height:3rem;padding:.5rem 1rem .5rem calc(1rem - 4px);color:var(--charcoalGrey);text-decoration:none;outline:none}[role=banner] .coz-nav-apps-item:first-of-type [role=menuitem]{margin-top:.5rem}[role=banner] .coz-nav-apps-item:last-of-type [role=menuitem]{margin-bottom:.5rem}[role=banner] .coz-nav-apps-item-icon{margin-right:.5rem;height:2rem;width:2rem;min-width:2rem}[role=banner] .coz-nav-apps-item [role=menuitem] .coz-label{padding-right:.5rem;width:100%;overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}[role=banner] [role=menuitem].coz-apps-home-btn{display:flex;margin-top:0;color:#5d6165;font-weight:700;font-size:14px;justify-content:center;align-items:center}[role=banner] [role=menuitem].coz-apps-home-btn.\--mobile>span{display:flex;justify-content:flex-start}[role=banner] [role=menuitem].coz-apps-home-btn img{width:1rem;height:1rem;margin-right:.5rem}@-webkit-keyframes barPlaceHolderShimmer{0%{background-position:-20rem 0}80%{background-position:20rem 0}80.1%{background-position:-20rem 0}100%{background-position:-20rem 0}}@keyframes barPlaceHolderShimmer{0%{background-position:-20rem 0}80%{background-position:20rem 0}80.1%{background-position:-20rem 0}100%{background-position:-20rem 0}}[role=banner] .coz-loading-placeholder{display:inline-block;width:100%;height:100%;min-height:1em;-webkit-animation:barPlaceHolderShimmer 1s linear infinite;animation:barPlaceHolderShimmer 1s linear infinite;-webkit-animation-delay:.1s;animation-delay:.1s;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear;background-position:-20rem 0;background-image:linear-gradient(to right,var(--silver) 0,var(--paleGrey) 50%,var(--silver) 100%);background-size:20rem 10rem;background-repeat:no-repeat;background-color:var(--silver);border-radius:.15rem;margin:.1rem 0}[role=banner] .coz-nav-apps-item-icon.coz-loading-placeholder{width:2rem;height:2rem;margin:0 1rem;display:block}[role=banner] .coz-nav-apps-item [role=menuitem] .coz-label.coz-loading-placeholder{height:1em;width:7rem}[role=banner] .coz-nav-apps-btns.\--loading{width:12rem}[role=banner] .coz-nav-apps-btns-home.coz-loading-placeholder{height:2rem;width:2rem;border-radius:2rem;background-color:var(--silver);flex-shrink:0}[role=banner] .coz-nav-apps-btns-main.coz-loading-placeholder{height:1.5rem;margin:0;background-color:var(--silver)}[role=banner] .coz-nav-settings-btn{color:var(--slateGrey)}[role=banner] .coz-nav-settings-btn svg{fill:var(--coolGrey)}[role=banner] .coz-nav-settings-btn:hover,[role=banner] .coz-nav-settings-btn:focus{background-color:var(--paleGrey);box-shadow:inset 0 -1px 0 0 var(--silver);color:var(--charcoalGrey)}[role=banner] .coz-nav-pop--settings{right:0}[role=banner] .coz-nav-settings-item [role=menuitem]{position:relative;z-index:0;display:block;box-sizing:border-box;margin:0;width:100%;padding:.8em 1.5em .8em calc(1.5em + 16px + .5em);border:none;align-items:center;background-position:1.5em 50%;background-color:transparent;text-align:left;font-size:1rem;font-weight:400;white-space:nowrap;color:var(--charcoalGrey);text-transform:none;text-decoration:none;outline:none}[role=banner] .coz-nav-settings-item .coz-nav-settings-item-btn[role=menuitem]{padding-left:1.5rem}[role=banner] .coz-nav-settings-item .coz-nav-settings-item-btn[role=menuitem]>span>span{margin-right:auto}[role=banner] [role=menuitem][data-icon=icon-storage]{background-position:1.5em calc(.8em + 1px)}[role=banner] .coz-nav-storage{display:flex;flex-direction:column;align-items:left;padding-top:.5em;color:var(--coolGrey)}[role=banner] .coz-nav-storage-text{margin:0 0 .1em;font-weight:400;font-size:.875em}[role=banner] .cozy-nav-storage-bar{height:.5em;margin:.2em 0 .1em}[role=banner] .coz-drawer-wrapper{position:fixed;top:0;left:0;width:100vw;height:100%;display:flex}[role=banner] .coz-drawer-wrapper[aria-hidden=true]{pointer-events:none}[role=banner] .coz-drawer-wrapper[aria-hidden=false]{pointer-events:auto}[role=banner] .coz-drawer-wrapper:before{content:'';display:block;position:absolute;top:0;left:0;width:100%;height:100%;background-color:var(--charcoalGrey);opacity:0;transition:opacity .2s ease-out .1s}[role=banner] .coz-drawer-wrapper[aria-hidden=false]:before{opacity:.5;transition:opacity .2s ease-out}[role=banner] .coz-drawer-wrapper aside{position:absolute;bottom:0;left:0;width:90%;max-width:30em;height:100%;display:flex;flex-direction:column;background-color:#fff;transform:translateX(-100%);transform-origin:0 0}[role=banner] .coz-drawer-wrapper aside.with-transition{transition:transform .2s ease-out}[role=banner] .coz-drawer-wrapper[aria-hidden=false] aside{transform:translateX(0)}[role=banner] .coz-drawer-wrapper[aria-hidden=false] aside.with-transition{transition:transform .3s cubic-bezier(.2,.75,.3,1.0)}[role=banner] .coz-drawer-wrapper ul{margin:0;padding:0;list-style-type:none}[role=banner] .coz-drawer-wrapper nav hr{margin:0;border:none;border-bottom:solid 1px var(--silver)}[role=banner] .coz-drawer-wrapper .coz-nav-icon{margin-right:.5em}[role=banner] .coz-drawer--apps{flex:0 1 100%;overflow-y:scroll;touch-action:pan-y;position:relative;overflow-x:hidden}[role=banner] .coz-drawer--apps ul li{flex:0 0 100%;max-width:100%}[role=banner] .coz-drawer--apps ul:last-of-type+hr{display:none}[role=banner] .coz-drawer--apps [role=menuitem]{display:flex;flex-direction:row;padding:.3em .3em .3em 1.3em;height:3rem}[role=banner] .coz-drawer--apps .coz-nav-item img{width:2rem;margin-right:.5rem;max-height:2rem}[role=banner] .coz-drawer--apps .coz-nav-category{font-size:1em;padding:2em 2em .5em;margin:0}[role=banner] .coz-drawer--settings{padding-bottom:env(safe-area-inset-bottom)}[role=banner][data-drawer-visible=true]+[role=application]{position:fixed;width:100%}[role=banner] .coz-claudy{position:fixed;bottom:5em;right:2em}[role=banner] .coz-claudy-icon{width:3.5em;height:3.5em;border-radius:100%;border:none;background-color:var(--dodgerBlue);background-image:url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMzIgMzIiPjxzdHlsZT4uc3Qwe2ZpbGw6bm9uZX08L3N0eWxlPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMiAxMmgtN2MtLjYgMC0xIC40LTEgMXMuNCAxIDEgMWg3Yy42IDAgMS0uNCAxLTFzLS40LTEtMS0xek0yNSA3SDE1Yy0uNSAwLTEgLjQtMSAxcy40IDEgMSAxaDEwYy41IDAgMS0uNCAxLTFzLS40LTEtMS0xeiIvPjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0zMSAxSDljLS42IDAtMSAuNS0xIDF2MTVjMi4yIDAgNC4xIDEuMiA1LjIgM0gxOHYxLjljMCAuNi40LjcuOC40bDMuMy0yLjNIMzFjLjYgMCAxLS41IDEtMVYyYzAtLjYtLjQtMS0xLTF6bS05IDEzaC03Yy0uNiAwLTEtLjQtMS0xcy40LTEgMS0xaDdjLjYgMCAxIC40IDEgMXMtLjQgMS0xIDF6bTMtNUgxNWMtLjYgMC0xLS40LTEtMXMuNS0xIDEtMWgxMGMuNiAwIDEgLjQgMSAxcy0uNSAxLTEgMXoiLz48cGF0aCBmaWxsPSIjRkZGRkZGIiBpZD0icGF0aC0zXzFfIiBkPSJNMTAuNCAyNi43YzAgLjEtLjcgMS4zLTIuNCAxLjMtMS44IDAtMi40LTEuMi0yLjQtMS4zLS4xLS4yIDAtLjUuMi0uNy4yLS4xLjUgMCAuNy4yIDAgMCAuNC43IDEuNi43IDEuMSAwIDEuNS0uNyAxLjYtLjcuMS0uMi40LS4zLjctLjIuMS4yLjIuNSAwIC43TTEyIDIzYzAtMi4yLTEuOC00LTQtNHMtNCAxLjgtNCA0Yy0yLjIgMC00IDEuOC00IDRzMS44IDQgNCA0aDhjMi4yIDAgNC0xLjggNC00cy0xLjgtNC00LTQiLz48L3N2Zz4K);background-repeat:no-repeat;background-size:2em;background-position:.75em;box-shadow:0 1px 3px 0 rgba(50,54,63,.19),0 6px 18px 0 rgba(50,54,63,.39);-webkit-animation:none;animation:none;cursor:pointer;opacity:.5;transition:all .2s ease-out;outline:0}[role=banner] .coz-claudy-icon:hover,[role=banner] .coz-claudy-icon:focus,[role=banner] .coz-claudy-icon:active,[role=banner] .coz-claudy [data-claudy-opened=true]{-webkit-animation:none;animation:none;transform:scale(1.1);opacity:1;transition:all .2s ease-out}[role=banner] .coz-claudy .coz-claudy-intent-wrapper{position:fixed;bottom:9.5em;right:2em;width:25em;border-radius:.3em;background:white;transform-origin:100% 100% 0;transform:scale(0) translateY(6em);filter:drop-shadow(0 4px 6px rgba(50,54,63,.5));opacity:0;transition:.2s transform ease-in,.1s opacity ease-in}[role=banner] .coz-claudy--opened .coz-claudy-intent-wrapper{transform:scale(1) translateY(0);opacity:1;transition:.2s transform cubic-bezier(.2,.75,.3,1.15),.1s opacity ease-in}[role=banner] .coz-claudy-intent-wrapper:after{position:fixed;content:'';right:3em;width:0;height:0;border-bottom:.8em solid transparent;border-right:1.5em solid white;bottom:-.6em}[role=banner] .coz-claudy .coz-claudy-intent-wrapper .coz-intent{width:100%;height:100%;border:none;border-radius:.3em}[role=banner] .coz-searchbar{height:100%;display:flex;justify-content:flex-start;align-items:center;flex-grow:1;padding:.3em .8em .3em .7em;box-sizing:border-box;position:relative}[role=banner] .coz-searchbar-autosuggest-container{position:relative;width:100%;opacity:.4;transition:all .2s ease-out}[role=banner] .coz-searchbar-autosuggest-container.\--focused{opacity:1}[role=banner] .coz-searchbar-autosuggest-container:before{content:'';display:inline-block;width:1.6em;height:100%;position:absolute;left:0;top:0;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMjAgLTMyKSI+CiAgICA8cGF0aCBmaWxsPSIjOTU5OTlEIiBkPSJNMzMwLjQ3MjIxMyw0MiBMMzMxLjUsNDIgTDMzNC43OTQwODgsNDUuMjk0MDg3OSBDMzM1LjE4NjEyNyw0NS42ODYxMjY3IDMzNS4xODM4NzksNDYuMzE2MTIxNSAzMzQuNzkzOTIzLDQ2LjcwNjA3NyBMMzM0LjcwNjA3Nyw0Ni43OTM5MjMgQzMzNC4zMTgxMTEsNDcuMTgxODg4NiAzMzMuNjgzOTUyLDQ3LjE4Mzk1MjQgMzMzLjI5NDA4OCw0Ni43OTQwODc5IEwzMzAsNDMuNSBMMzMwLDQyLjQ3MjIxMyBDMzI4LjkzODQ4Nyw0My40MjIyOTI5IDMyNy41MzY3MDksNDQgMzI2LDQ0IEMzMjIuNjg2MjkyLDQ0IDMyMCw0MS4zMTM3MDg1IDMyMCwzOCBDMzIwLDM0LjY4NjI5MTUgMzIyLjY4NjI5MiwzMiAzMjYsMzIgQzMyOS4zMTM3MDgsMzIgMzMyLDM0LjY4NjI5MTUgMzMyLDM4IEMzMzIsMzkuNTM2NzA4OSAzMzEuNDIyMjkzLDQwLjkzODQ4NyAzMzAuNDcyMjEzLDQyIFogTTMyNiw0MiBDMzI4LjIwOTEzOSw0MiAzMzAsNDAuMjA5MTM5IDMzMCwzOCBDMzMwLDM1Ljc5MDg2MSAzMjguMjA5MTM5LDM0IDMyNiwzNCBDMzIzLjc5MDg2MSwzNCAzMjIsMzUuNzkwODYxIDMyMiwzOCBDMzIyLDQwLjIwOTEzOSAzMjMuNzkwODYxLDQyIDMyNiw0MiBaIi8+CiAgICA8cGF0aCBmaWxsPSIjOTU5OTlEIiBkPSJNMzMwLjQ3MjIxMyw0MiBMMzMxLjUsNDIgTDMzNC43OTQwODgsNDUuMjk0MDg3OSBDMzM1LjE4NjEyNyw0NS42ODYxMjY3IDMzNS4xODM4NzksNDYuMzE2MTIxNSAzMzQuNzkzOTIzLDQ2LjcwNjA3NyBMMzM0LjcwNjA3Nyw0Ni43OTM5MjMgQzMzNC4zMTgxMTEsNDcuMTgxODg4NiAzMzMuNjgzOTUyLDQ3LjE4Mzk1MjQgMzMzLjI5NDA4OCw0Ni43OTQwODc5IEwzMzAsNDMuNSBMMzMwLDQyLjQ3MjIxMyBDMzI4LjkzODQ4Nyw0My40MjIyOTI5IDMyNy41MzY3MDksNDQgMzI2LDQ0IEMzMjIuNjg2MjkyLDQ0IDMyMCw0MS4zMTM3MDg1IDMyMCwzOCBDMzIwLDM0LjY4NjI5MTUgMzIyLjY4NjI5MiwzMiAzMjYsMzIgQzMyOS4zMTM3MDgsMzIgMzMyLDM0LjY4NjI5MTUgMzMyLDM4IEMzMzIsMzkuNTM2NzA4OSAzMzEuNDIyMjkzLDQwLjkzODQ4NyAzMzAuNDcyMjEzLDQyIFogTTMyNiw0MiBDMzI4LjIwOTEzOSw0MiAzMzAsNDAuMjA5MTM5IDMzMCwzOCBDMzMwLDM1Ljc5MDg2MSAzMjguMjA5MTM5LDM0IDMyNiwzNCBDMzIzLjc5MDg2MSwzNCAzMjIsMzUuNzkwODYxIDMyMiwzOCBDMzIyLDQwLjIwOTEzOSAzMjMuNzkwODYxLDQyIDMyNiw0MiBaIi8+CiAgPC9nPgo8L3N2Zz4K) .6em center no-repeat}[role=banner] .coz-searchbar-autosuggest-container.\--searching:before{padding-left:.5em;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAzMiAzMicgd2lkdGg9JzEyJyBoZWlnaHQ9JzEyJyBmaWxsPScjMjk3RUYyJz4KICA8cGF0aCBvcGFjaXR5PScuMjUnIGQ9J00xNiAwYTE2IDE2IDAgMCAwIDAgMzIgMTYgMTYgMCAwIDAgMC0zMm0wIDRhMTIgMTIgMCAwIDEgMCAyNCAxMiAxMiAwIDAgMSAwLTI0Jy8+CiAgPHBhdGggZD0nTTE2IDBhMTYgMTYgMCAwIDEgMTYgMTZoLTRhMTIgMTIgMCAwIDAtMTItMTJ6Jy8+Cjwvc3ZnPgo=) center no-repeat;background-size:1em;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}[role=banner] .coz-searchbar-autosuggest-input{box-sizing:border-box;width:100%;padding:.5em;padding-left:2em;border-width:1px;border-style:solid;border-color:transparent;border-radius:4px;transition:all .2s ease-out}[role=banner] .coz-searchbar-autosuggest-input:hover{border-color:var(--silver)}[role=banner] .coz-searchbar-autosuggest-input:focus,[role=banner] .coz-searchbar-autosuggest-input-focused{outline:none;border-color:var(--dodgerBlue)}[role=banner] .coz-searchbar-autosuggest-suggestions-container{position:absolute;top:100%;margin-top:3px;width:100%;max-height:em(170px);overflow:auto;border-width:1px;border-style:solid;border-color:var(--silver);border-radius:4px;background:white;box-shadow:0 1px 3px 0 rgba(50,54,63,.19),0 6px 18px 0 rgba(50,54,63,.19);display:none}[role=banner] .coz-searchbar-autosuggest-suggestions-container--open{display:block}[role=banner] .coz-searchbar-autosuggest-status-container{position:absolute;top:100%;left:0;right:0;margin:-.3em .8em .3em;padding:.8em .5em;max-height:em(170px);overflow:auto;border-width:1px;border-style:solid;border-color:var(--silver);border-radius:4px;background:white;box-shadow:0 1px 3px 0 rgba(50,54,63,.19),0 6px 18px 0 rgba(50,54,63,.19)}[role=banner] .coz-searchbar-autosuggest-suggestions-list{margin:0;padding:0;list-style:none}[role=banner] .coz-searchbar-autosuggest-suggestions-list b{font-weight:bolder;color:var(--scienceBlue)}[role=banner] .coz-searchbar-autosuggest-suggestion{padding:.8em .5em;border-width:0;border-bottom-width:1px;border-style:solid;border-color:var(--silver);cursor:pointer}[role=banner] .coz-searchbar-autosuggest-suggestion:last-child{border-bottom-width:0}[role=banner] .coz-searchbar-autosuggest-suggestion-item{display:flex;flex-direction:row;justify-content:flex-start;align-items:center}[role=banner] .coz-searchbar-autosuggest-suggestion-icon{max-height:2rem;min-height:2rem;margin-right:1rem}[role=banner] .coz-searchbar-autosuggest-suggestion-content{flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:flex;flex-direction:column}[role=banner] .coz-searchbar-autosuggest-suggestion-subtitle{color:var(--coolGrey)}[role=banner] .coz-searchbar-autosuggest-suggestion-highlighted{background:var(--paleGrey);box-shadow:inset 4px 0 0 0 var(--dodgerBlue)}[role=banner] .coz-searchbar-autosuggest-section-title{padding:.5em;font-size:.8em}[role=banner] .coz-support-modal .coz-support-modal-content{min-height:8em}[role=banner] .coz-support-modal .coz-support-intent-wrapper .coz-intent{width:100%;height:24em;border:none}[role=banner] .coz-support-modal .coz-support-modal-close{margin-top:.7rem;margin-right:1rem}[role=banner] .coz-bar-wrapper{box-shadow:inset 0 -1px 0 0 var(--silver);--cozBarThemePrimaryColor:var(--primaryColor);--cozBarThemePrimaryContrastTextColor:var(--primaryContrastTextColor)}[role=banner] .coz-bar-wrapper .coz-nav-apps-btns{color:var(--slateGrey)}[role=banner] .coz-bar-wrapper .coz-bar-burger{color:var(--coolGrey)}:root{--white:#fff;--paleGrey:#f5f6f7;--silver:#d6d8da;--coolGrey:#95999d;--slateGrey:#5d6165;--charcoalGrey:#32363f;--black:#000;--overlay:rgba(50,54,63,.5);--zircon:#f5faff;--hawkesBlue:#eef5fe;--frenchPass:#c2dcff;--azure:#1fa8f1;--dodgerBlue:#297ef2;--scienceBlue:#0b61d6;--puertoRico:#0dcbcf;--grannyApple:#def7e7;--weirdGreen:#40de8e;--emerald:#35ce68;--malachite:#08b442;--seafoamGreen:#3da67e;--brightSun:#ffc644;--texasRose:#ffae5f;--mango:#ff962f;--pumpkinOrange:#ff7f1b;--blazeOrange:#fc6d00;--melon:#fd7461;--chablis:#fff2f2;--yourPink:#fdcbcb;--fuchsia:#fc4c83;--pomegranate:#f52d2d;--monza:#dd0505;--lavender:#c2adf4;--darkPeriwinkle:#6984ce;--purpley:#7f6bee;--portage:#9169f2;--lightishPurple:#b449e7;--barney:#922bc2}:root,.CozyTheme--normal{--primaryColor:var(--dodgerBlue);--primaryColorDark:var(--scienceBlue);--primaryColorLight:#5c9df5;--primaryColorLighter:#4b93f7;--primaryColorLightest:#9fc4fb;--primaryTextColor:var(--charcoalGrey);--secondaryTextColor:var(--coolGrey);--primaryContrastTextColor:var(--white);--regularButtonPrimaryColor:var(--primaryColor);--regularButtonSecondaryColor:var(--primaryColor);--regularButtonActiveColor:var(--primaryColorDark);--regularButtonConstrastColor:var(--primaryContrastTextColor);--secondaryButtonPrimaryColor:var(--white);--secondaryButtonSecondaryColor:var(--silver);--secondaryButtonActiveColor:var(--silver);--secondaryButtonContrastColor:var(--black);--iconColor:currentColor;--actionMenuIconColor:var(--slateGrey)}:root{--zIndex-below:-1;--zIndex-app:0;--zIndex-low:1;--zIndex-alertMobile:10;--zIndex-nav:20;--zIndex-bar:21;--zIndex-selection:30;--zIndex-popover:40;--zIndex-overlay:50;--zIndex-fileActionMenu:60;--zIndex-drawer:60;--zIndex-modal:70;--zindex-alert:80}.u-p-0{padding:0!important}.u-pt-0{padding-top:0!important}.u-pb-0{padding-bottom:0!important}.u-pl-0{padding-left:0!important}.u-pr-0{padding-right:0!important}.u-pv-0{padding-top:0!important;padding-bottom:0!important}.u-ph-0{padding-left:0!important;padding-right:0!important}.u-p-1{padding:1rem!important}.u-pt-1{padding-top:1rem!important}.u-pb-1{padding-bottom:1rem!important}.u-pl-1{padding-left:1rem!important}.u-pr-1{padding-right:1rem!important}.u-pv-1{padding-top:1rem!important;padding-bottom:1rem!important}.u-ph-1{padding-left:1rem!important;padding-right:1rem!important}.u-p-2{padding:2rem!important}.u-pt-2{padding-top:2rem!important}.u-pb-2{padding-bottom:2rem!important}.u-pl-2{padding-left:2rem!important}.u-pr-2{padding-right:2rem!important}.u-pv-2{padding-top:2rem!important;padding-bottom:2rem!important}.u-ph-2{padding-left:2rem!important;padding-right:2rem!important}.u-p-3{padding:3rem!important}.u-pt-3{padding-top:3rem!important}.u-pb-3{padding-bottom:3rem!important}.u-pl-3{padding-left:3rem!important}.u-pr-3{padding-right:3rem!important}.u-pv-3{padding-top:3rem!important;padding-bottom:3rem!important}.u-ph-3{padding-left:3rem!important;padding-right:3rem!important}.u-p-auto{padding:auto!important}.u-pt-auto{padding-top:auto!important}.u-pb-auto{padding-bottom:auto!important}.u-pl-auto{padding-left:auto!important}.u-pr-auto{padding-right:auto!important}.u-pv-auto{padding-top:auto!important;padding-bottom:auto!important}.u-ph-auto{padding-left:auto!important;padding-right:auto!important}.u-p-half{padding:.5rem!important}.u-pt-half{padding-top:.5rem!important}.u-pb-half{padding-bottom:.5rem!important}.u-pl-half{padding-left:.5rem!important}.u-pr-half{padding-right:.5rem!important}.u-pv-half{padding-top:.5rem!important;padding-bottom:.5rem!important}.u-ph-half{padding-left:.5rem!important;padding-right:.5rem!important}.u-p-1-half{padding:1.5rem!important}.u-pt-1-half{padding-top:1.5rem!important}.u-pb-1-half{padding-bottom:1.5rem!important}.u-pl-1-half{padding-left:1.5rem!important}.u-pr-1-half{padding-right:1.5rem!important}.u-pv-1-half{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.u-ph-1-half{padding-left:1.5rem!important;padding-right:1.5rem!important}.u-p-2-half{padding:2.5rem!important}.u-pt-2-half{padding-top:2.5rem!important}.u-pb-2-half{padding-bottom:2.5rem!important}.u-pl-2-half{padding-left:2.5rem!important}.u-pr-2-half{padding-right:2.5rem!important}.u-pv-2-half{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.u-ph-2-half{padding-left:2.5rem!important;padding-right:2.5rem!important}.u-m-0{margin:0!important}.u-mt-0{margin-top:0!important}.u-mb-0{margin-bottom:0!important}.u-ml-0{margin-left:0!important}.u-mr-0{margin-right:0!important}.u-mv-0{margin-top:0!important;margin-bottom:0!important}.u-mh-0{margin-left:0!important;margin-right:0!important}.u-m-1{margin:1rem!important}.u-mt-1{margin-top:1rem!important}.u-mb-1{margin-bottom:1rem!important}.u-ml-1{margin-left:1rem!important}.u-mr-1{margin-right:1rem!important}.u-mv-1{margin-top:1rem!important;margin-bottom:1rem!important}.u-mh-1{margin-left:1rem!important;margin-right:1rem!important}.u-m-2{margin:2rem!important}.u-mt-2{margin-top:2rem!important}.u-mb-2{margin-bottom:2rem!important}.u-ml-2{margin-left:2rem!important}.u-mr-2{margin-right:2rem!important}.u-mv-2{margin-top:2rem!important;margin-bottom:2rem!important}.u-mh-2{margin-left:2rem!important;margin-right:2rem!important}.u-m-3{margin:3rem!important}.u-mt-3{margin-top:3rem!important}.u-mb-3{margin-bottom:3rem!important}.u-ml-3{margin-left:3rem!important}.u-mr-3{margin-right:3rem!important}.u-mv-3{margin-top:3rem!important;margin-bottom:3rem!important}.u-mh-3{margin-left:3rem!important;margin-right:3rem!important}.u-m-auto{margin:auto!important}.u-mt-auto{margin-top:auto!important}.u-mb-auto{margin-bottom:auto!important}.u-ml-auto{margin-left:auto!important}.u-mr-auto{margin-right:auto!important}.u-mv-auto{margin-top:auto!important;margin-bottom:auto!important}.u-mh-auto{margin-left:auto!important;margin-right:auto!important}.u-m-half{margin:.5rem!important}.u-mt-half{margin-top:.5rem!important}.u-mb-half{margin-bottom:.5rem!important}.u-ml-half{margin-left:.5rem!important}.u-mr-half{margin-right:.5rem!important}.u-mv-half{margin-top:.5rem!important;margin-bottom:.5rem!important}.u-mh-half{margin-left:.5rem!important;margin-right:.5rem!important}.u-m-1-half{margin:1.5rem!important}.u-mt-1-half{margin-top:1.5rem!important}.u-mb-1-half{margin-bottom:1.5rem!important}.u-ml-1-half{margin-left:1.5rem!important}.u-mr-1-half{margin-right:1.5rem!important}.u-mv-1-half{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.u-mh-1-half{margin-left:1.5rem!important;margin-right:1.5rem!important}.u-m-2-half{margin:2.5rem!important}.u-mt-2-half{margin-top:2.5rem!important}.u-mb-2-half{margin-bottom:2.5rem!important}.u-ml-2-half{margin-left:2.5rem!important}.u-mr-2-half{margin-right:2.5rem!important}.u-mv-2-half{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.u-mh-2-half{margin-left:2.5rem!important;margin-right:2.5rem!important}.u-pos-absolute{position:absolute}.u-pos-relative{position:relative}.u-pos-fixed{position:fixed}.u-pos-sticky{position:sticky}.u-pos-static{position:static}.u-top-m{top:1rem}.u-top-xs{top:.5rem}.u-top-s{top:.75rem}.u-top-l{top:1.5rem}.u-top-xl{top:2rem}.u-top-xxl{top:3rem}.u-top-0{top:0}.u-bottom-m{bottom:1rem}.u-bottom-xs{bottom:.5rem}.u-bottom-s{bottom:.75rem}.u-bottom-l{bottom:1.5rem}.u-bottom-xl{bottom:2rem}.u-bottom-xxl{bottom:3rem}.u-bottom-0{bottom:0}.u-left-m{left:1rem}.u-left-xs{left:.5rem}.u-left-s{left:.75rem}.u-left-l{left:1.5rem}.u-left-xl{left:2rem}.u-left-xxl{left:3rem}.u-left-0{left:0}.u-right-m{right:1rem}.u-right-xs{right:.5rem}.u-right-s{right:.75rem}.u-right-l{right:1.5rem}.u-right-xl{right:2rem}.u-right-xxl{right:3rem}.u-right-0{right:0}.u-miw-1{min-width:1rem!important}.u-maw-1{max-width:1rem!important}.u-mih-1{min-height:1rem!important}.u-mah-1{max-height:1rem!important}.u-miw-2{min-width:2rem!important}.u-maw-2{max-width:2rem!important}.u-mih-2{min-height:2rem!important}.u-mah-2{max-height:2rem!important}.u-miw-3{min-width:4rem!important}.u-maw-3{max-width:4rem!important}.u-mih-3{min-height:4rem!important}.u-mah-3{max-height:4rem!important}.u-miw-4{min-width:8rem!important}.u-maw-4{max-width:8rem!important}.u-mih-4{min-height:8rem!important}.u-mah-4{max-height:8rem!important}.u-miw-5{min-width:16rem!important}.u-maw-5{max-width:16rem!important}.u-mih-5{min-height:16rem!important}.u-mah-5{max-height:16rem!important}.u-miw-6{min-width:32rem!important}.u-maw-6{max-width:32rem!important}.u-mih-6{min-height:32rem!important}.u-mah-6{max-height:32rem!important}.u-miw-7{min-width:48rem!important}.u-maw-7{max-width:48rem!important}.u-mih-7{min-height:48rem!important}.u-mah-7{max-height:48rem!important}.u-miw-8{min-width:64rem!important}.u-maw-8{max-width:64rem!important}.u-mih-8{min-height:64rem!important}.u-mah-8{max-height:64rem!important}.u-miw-9{min-width:96rem!important}.u-maw-9{max-width:96rem!important}.u-mih-9{min-height:96rem!important}.u-mah-9{max-height:96rem!important}.u-miw-100{min-width:100%!important}.u-maw-100{max-width:100%!important}.u-mih-100{min-height:100%!important}.u-mah-100{max-height:100%!important}.u-maw-none{max-width:none!important}.u-mah-none{max-height:none!important}.u-miw-auto{min-width:auto!important}.u-mih-auto{min-height:auto!important}.u-miw-half{min-width:.5rem!important}.u-maw-half{max-width:.5rem!important}.u-mih-half{min-height:.5rem!important}.u-mah-half{max-height:.5rem!important}.u-miw-1-half{min-width:1.5rem!important}.u-maw-1-half{max-width:1.5rem!important}.u-mih-1-half{min-height:1.5rem!important}.u-mah-1-half{max-height:1.5rem!important}.u-miw-2-half{min-width:2.5rem!important}.u-maw-2-half{max-width:2.5rem!important}.u-mih-2-half{min-height:2.5rem!important}.u-mah-2-half{max-height:2.5rem!important}.u-w-1{width:1rem!important}.u-h-1{height:1rem!important}.u-w-2{width:2rem!important}.u-h-2{height:2rem!important}.u-w-3{width:4rem!important}.u-h-3{height:4rem!important}.u-w-4{width:8rem!important}.u-h-4{height:8rem!important}.u-w-5{width:16rem!important}.u-h-5{height:16rem!important}.u-w-6{width:32rem!important}.u-h-6{height:32rem!important}.u-w-7{width:48rem!important}.u-h-7{height:48rem!important}.u-w-8{width:64rem!important}.u-h-8{height:64rem!important}.u-w-9{width:96rem!important}.u-h-9{height:96rem!important}.u-w-100{width:100%!important}.u-h-100{height:100%!important}.u-w-auto{width:auto!important}.u-h-auto{height:auto!important}.u-w-half{width:.5rem!important}.u-h-half{height:.5rem!important}.u-w-1-half{width:1.5rem!important}.u-h-1-half{height:1.5rem!important}.u-w-2-half{width:2.5rem!important}.u-h-2-half{height:2.5rem!important}@-webkit-keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@-webkit-keyframes shake{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}@keyframes shake{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}.u-visuallyhidden,.coz-bar-hidden{position:absolute!important;border:0!important;width:.063rem!important;height:.063rem!important;overflow:hidden!important;padding:0!important;white-space:nowrap!important;clip:rect(.063rem,.063rem,.063rem,.063rem)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important}.u-hide{display:none!important;visibility:hidden!important}.u-dn{display:none}.u-di{display:inline}.u-db{display:block}.u-dib{display:inline-block}.u-dit{display:inline-table}.u-dt{display:table}.u-dtc{display:table-cell}.u-dt-row{display:table-row}.u-dt-row-group{display:table-row-group}.u-dt-column{display:table-column}.u-dt-column-group{display:table-column-group}.u-error{color:var(--pomegranate)}.u-valid{color:var(--emerald)}.u-warn{color:var(--texasRose)}.u-black{color:var(--black)!important}.u-white{color:var(--white)!important}.u-paleGrey{color:var(--paleGrey)!important}.u-silver{color:var(--silver)!important}.u-coolGrey{color:var(--coolGrey)!important}.u-slateGrey{color:var(--slateGrey)!important}.u-charcoalGrey{color:var(--charcoalGrey)!important}.u-overlay{color:var(--overlay)!important}.u-zircon{color:var(--zircon)!important}.u-frenchPass{color:var(--frenchPass)!important}.u-dodgerBlue{color:var(--dodgerBlue)!important}.u-scienceBlue{color:var(--scienceBlue)!important}.u-puertoRico{color:var(--puertoRico)!important}.u-grannyApple{color:var(--grannyApple)!important}.u-emerald{color:var(--emerald)!important}.u-malachite{color:var(--malachite)!important}.u-seafoamGreen{color:var(--seafoamGreen)!important}.u-brightSun{color:var(--brightSun)!important}.u-texasRose{color:var(--texasRose)!important}.u-chablis{color:var(--chablis)!important}.u-yourPink{color:var(--yourPink)!important}.u-fuchsia{color:var(--fuchsia)!important}.u-pomegranate{color:var(--pomegranate)!important}.u-monza{color:var(--monza)!important}.u-portage{color:var(--portage)!important}.u-azure{color:var(--azure)!important}.u-melon{color:var(--melon)!important}.u-blazeOrange{color:var(--blazeOrange)!important}.u-mango{color:var(--mango)!important}.u-pumpkinOrange{color:var(--pumpkinOrange)!important}.u-lavender{color:var(--lavender)!important}.u-darkPeriwinkle{color:var(--darkPeriwinkle)!important}.u-purpley{color:var(--purpley)!important}.u-lightishPurple{color:var(--lightishPurple)!important}.u-barney{color:var(--barney)!important}.u-weirdGreen{color:var(--weirdGreen)!important}.u-primaryColor{color:var(--primaryColor)!important}.u-primaryColorLight{color:var(--primaryColorLight)!important}.u-primaryContrastTextColor{color:var(--primaryContrastTextColor)!important}.u-breakword{word-break:break-word}.u-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.u-midellipsis{display:flex;flex-wrap:nowrap}.u-midellipsis>*{display:inline-block;max-width:50%;overflow:hidden;white-space:pre}.u-midellipsis>:first-child{text-overflow:ellipsis}.u-midellipsis>:last-child{text-overflow:clip;direction:rtl}@supports(text-overflow:'[...]'){.u-midellipsis>:first-child{text-overflow:'[...]'}}.u-link:link{color:var(--dodgerBlue);text-decoration:none}.u-link:visited,.u-link:active,.u-link:hover,.u-link:focus{color:var(--scienceBlue)}.u-lh-tiny{line-height:1!important}.u-lh-xsmall{line-height:1.1!important}.u-lh-small{line-height:1.2!important}.u-lh-medium{line-height:1.3!important}.u-lh-large{line-height:1.4!important}.u-lh-xlarge{line-height:1.5!important}.u-fz-tiny{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall{font-size:.813rem!important;line-height:1.4!important}.u-fz-small{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium{font-size:1rem!important;line-height:1.5!important}.u-fz-large{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left{text-align:left!important}.u-ta-right{text-align:right!important}.u-ta-center{text-align:center!important}.u-ta-justify{text-align:justify!important}.u-fs-normal{font-style:normal!important}.u-fs-italic{font-style:italic!important}:root{--z-index-bar:21;--z-index-selection:30;--z-index-over-selection:31}@media(min-width:64rem){[role=banner]{position:relative}.u-hide--tablet{display:none!important}}@media(max-width:48em){[role=banner] .coz-bar-container{padding:0 1em 0 0}[role=banner] .coz-bar-title{font-size:1.25em}[role=banner] .coz-bar-hide-sm{display:none}[role=banner] .coz-nav{display:none}[role=banner] .coz-claudy .coz-claudy-intent-wrapper{width:calc(100% - 2em);height:calc(100% - 2em)!important;right:1em;top:1em;transform-origin:50% 50% 0}[role=banner] .coz-claudy-intent-wrapper:after{display:none}[role=banner] .coz-searchbar{display:none}[role=banner] .coz-support-modal .coz-support-intent-wrapper .coz-intent{height:27em}[role=banner] .coz-bar-wrapper.coz-theme-primary{box-shadow:inherit;background-color:var(--cozBarThemePrimaryColor)}[role=banner] .coz-bar-wrapper.coz-theme-primary .coz-nav-apps-btns,[role=banner] .coz-bar-wrapper.coz-theme-primary .coz-bar-burger{color:var(--cozBarThemePrimaryContrastTextColor)}}@media(max-width:30em){[role=banner] .coz-bar-hide-sm{display:none}[role=banner] .coz-bar-title strong{padding:0;text-transform:capitalize}}@media(min-width:48.0625em){[role=banner] .coz-bar-burger,[role=banner] .coz-drawer-wrapper{display:none}}@media(max-width:63.9375rem){.has-banner [role=application] .o-layout-2panes:before{height:6rem}[role=banner] .coz-bar-banner{font-size:14px;transition:none;transition-delay:none}[role=banner] .coz-bar-banner-button{max-width:7rem}}@media(max-width:30rem){.has-banner [role=application] .o-layout-2panes:before{height:7rem}[role=banner] .coz-bar-banner{height:auto;font-size:13px}.u-p-0-t{padding:0!important}.u-pt-0-t{padding-top:0!important}.u-pb-0-t{padding-bottom:0!important}.u-pl-0-t{padding-left:0!important}.u-pr-0-t{padding-right:0!important}.u-pv-0-t{padding-top:0!important;padding-bottom:0!important}.u-ph-0-t{padding-left:0!important;padding-right:0!important}.u-p-1-t{padding:1rem!important}.u-pt-1-t{padding-top:1rem!important}.u-pb-1-t{padding-bottom:1rem!important}.u-pl-1-t{padding-left:1rem!important}.u-pr-1-t{padding-right:1rem!important}.u-pv-1-t{padding-top:1rem!important;padding-bottom:1rem!important}.u-ph-1-t{padding-left:1rem!important;padding-right:1rem!important}.u-p-2-t{padding:2rem!important}.u-pt-2-t{padding-top:2rem!important}.u-pb-2-t{padding-bottom:2rem!important}.u-pl-2-t{padding-left:2rem!important}.u-pr-2-t{padding-right:2rem!important}.u-pv-2-t{padding-top:2rem!important;padding-bottom:2rem!important}.u-ph-2-t{padding-left:2rem!important;padding-right:2rem!important}.u-p-3-t{padding:3rem!important}.u-pt-3-t{padding-top:3rem!important}.u-pb-3-t{padding-bottom:3rem!important}.u-pl-3-t{padding-left:3rem!important}.u-pr-3-t{padding-right:3rem!important}.u-pv-3-t{padding-top:3rem!important;padding-bottom:3rem!important}.u-ph-3-t{padding-left:3rem!important;padding-right:3rem!important}.u-p-auto-t{padding:auto!important}.u-pt-auto-t{padding-top:auto!important}.u-pb-auto-t{padding-bottom:auto!important}.u-pl-auto-t{padding-left:auto!important}.u-pr-auto-t{padding-right:auto!important}.u-pv-auto-t{padding-top:auto!important;padding-bottom:auto!important}.u-ph-auto-t{padding-left:auto!important;padding-right:auto!important}.u-p-half-t{padding:.5rem!important}.u-pt-half-t{padding-top:.5rem!important}.u-pb-half-t{padding-bottom:.5rem!important}.u-pl-half-t{padding-left:.5rem!important}.u-pr-half-t{padding-right:.5rem!important}.u-pv-half-t{padding-top:.5rem!important;padding-bottom:.5rem!important}.u-ph-half-t{padding-left:.5rem!important;padding-right:.5rem!important}.u-p-1-half-t{padding:1.5rem!important}.u-pt-1-half-t{padding-top:1.5rem!important}.u-pb-1-half-t{padding-bottom:1.5rem!important}.u-pl-1-half-t{padding-left:1.5rem!important}.u-pr-1-half-t{padding-right:1.5rem!important}.u-pv-1-half-t{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.u-ph-1-half-t{padding-left:1.5rem!important;padding-right:1.5rem!important}.u-p-2-half-t{padding:2.5rem!important}.u-pt-2-half-t{padding-top:2.5rem!important}.u-pb-2-half-t{padding-bottom:2.5rem!important}.u-pl-2-half-t{padding-left:2.5rem!important}.u-pr-2-half-t{padding-right:2.5rem!important}.u-pv-2-half-t{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.u-ph-2-half-t{padding-left:2.5rem!important;padding-right:2.5rem!important}.u-m-0-t{margin:0!important}.u-mt-0-t{margin-top:0!important}.u-mb-0-t{margin-bottom:0!important}.u-ml-0-t{margin-left:0!important}.u-mr-0-t{margin-right:0!important}.u-mv-0-t{margin-top:0!important;margin-bottom:0!important}.u-mh-0-t{margin-left:0!important;margin-right:0!important}.u-m-1-t{margin:1rem!important}.u-mt-1-t{margin-top:1rem!important}.u-mb-1-t{margin-bottom:1rem!important}.u-ml-1-t{margin-left:1rem!important}.u-mr-1-t{margin-right:1rem!important}.u-mv-1-t{margin-top:1rem!important;margin-bottom:1rem!important}.u-mh-1-t{margin-left:1rem!important;margin-right:1rem!important}.u-m-2-t{margin:2rem!important}.u-mt-2-t{margin-top:2rem!important}.u-mb-2-t{margin-bottom:2rem!important}.u-ml-2-t{margin-left:2rem!important}.u-mr-2-t{margin-right:2rem!important}.u-mv-2-t{margin-top:2rem!important;margin-bottom:2rem!important}.u-mh-2-t{margin-left:2rem!important;margin-right:2rem!important}.u-m-3-t{margin:3rem!important}.u-mt-3-t{margin-top:3rem!important}.u-mb-3-t{margin-bottom:3rem!important}.u-ml-3-t{margin-left:3rem!important}.u-mr-3-t{margin-right:3rem!important}.u-mv-3-t{margin-top:3rem!important;margin-bottom:3rem!important}.u-mh-3-t{margin-left:3rem!important;margin-right:3rem!important}.u-m-auto-t{margin:auto!important}.u-mt-auto-t{margin-top:auto!important}.u-mb-auto-t{margin-bottom:auto!important}.u-ml-auto-t{margin-left:auto!important}.u-mr-auto-t{margin-right:auto!important}.u-mv-auto-t{margin-top:auto!important;margin-bottom:auto!important}.u-mh-auto-t{margin-left:auto!important;margin-right:auto!important}.u-m-half-t{margin:.5rem!important}.u-mt-half-t{margin-top:.5rem!important}.u-mb-half-t{margin-bottom:.5rem!important}.u-ml-half-t{margin-left:.5rem!important}.u-mr-half-t{margin-right:.5rem!important}.u-mv-half-t{margin-top:.5rem!important;margin-bottom:.5rem!important}.u-mh-half-t{margin-left:.5rem!important;margin-right:.5rem!important}.u-m-1-half-t{margin:1.5rem!important}.u-mt-1-half-t{margin-top:1.5rem!important}.u-mb-1-half-t{margin-bottom:1.5rem!important}.u-ml-1-half-t{margin-left:1.5rem!important}.u-mr-1-half-t{margin-right:1.5rem!important}.u-mv-1-half-t{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.u-mh-1-half-t{margin-left:1.5rem!important;margin-right:1.5rem!important}.u-m-2-half-t{margin:2.5rem!important}.u-mt-2-half-t{margin-top:2.5rem!important}.u-mb-2-half-t{margin-bottom:2.5rem!important}.u-ml-2-half-t{margin-left:2.5rem!important}.u-mr-2-half-t{margin-right:2.5rem!important}.u-mv-2-half-t{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.u-mh-2-half-t{margin-left:2.5rem!important;margin-right:2.5rem!important}.u-pos-absolute-t{position:absolute}.u-pos-relative-t{position:relative}.u-pos-fixed-t{position:fixed}.u-pos-sticky-t{position:sticky}.u-pos-static-t{position:static}.u-miw-1-t{min-width:1rem!important}.u-maw-1-t{max-width:1rem!important}.u-mih-1-t{min-height:1rem!important}.u-mah-1-t{max-height:1rem!important}.u-miw-2-t{min-width:2rem!important}.u-maw-2-t{max-width:2rem!important}.u-mih-2-t{min-height:2rem!important}.u-mah-2-t{max-height:2rem!important}.u-miw-3-t{min-width:4rem!important}.u-maw-3-t{max-width:4rem!important}.u-mih-3-t{min-height:4rem!important}.u-mah-3-t{max-height:4rem!important}.u-miw-4-t{min-width:8rem!important}.u-maw-4-t{max-width:8rem!important}.u-mih-4-t{min-height:8rem!important}.u-mah-4-t{max-height:8rem!important}.u-miw-5-t{min-width:16rem!important}.u-maw-5-t{max-width:16rem!important}.u-mih-5-t{min-height:16rem!important}.u-mah-5-t{max-height:16rem!important}.u-miw-6-t{min-width:32rem!important}.u-maw-6-t{max-width:32rem!important}.u-mih-6-t{min-height:32rem!important}.u-mah-6-t{max-height:32rem!important}.u-miw-7-t{min-width:48rem!important}.u-maw-7-t{max-width:48rem!important}.u-mih-7-t{min-height:48rem!important}.u-mah-7-t{max-height:48rem!important}.u-miw-8-t{min-width:64rem!important}.u-maw-8-t{max-width:64rem!important}.u-mih-8-t{min-height:64rem!important}.u-mah-8-t{max-height:64rem!important}.u-miw-9-t{min-width:96rem!important}.u-maw-9-t{max-width:96rem!important}.u-mih-9-t{min-height:96rem!important}.u-mah-9-t{max-height:96rem!important}.u-miw-100-t{min-width:100%!important}.u-maw-100-t{max-width:100%!important}.u-mih-100-t{min-height:100%!important}.u-mah-100-t{max-height:100%!important}.u-maw-none-t{max-width:none!important}.u-mah-none-t{max-height:none!important}.u-miw-auto-t{min-width:auto!important}.u-mih-auto-t{min-height:auto!important}.u-miw-half-t{min-width:.5rem!important}.u-maw-half-t{max-width:.5rem!important}.u-mih-half-t{min-height:.5rem!important}.u-mah-half-t{max-height:.5rem!important}.u-miw-1-half-t{min-width:1.5rem!important}.u-maw-1-half-t{max-width:1.5rem!important}.u-mih-1-half-t{min-height:1.5rem!important}.u-mah-1-half-t{max-height:1.5rem!important}.u-miw-2-half-t{min-width:2.5rem!important}.u-maw-2-half-t{max-width:2.5rem!important}.u-mih-2-half-t{min-height:2.5rem!important}.u-mah-2-half-t{max-height:2.5rem!important}.u-w-1-t{width:1rem!important}.u-h-1-t{height:1rem!important}.u-w-2-t{width:2rem!important}.u-h-2-t{height:2rem!important}.u-w-3-t{width:4rem!important}.u-h-3-t{height:4rem!important}.u-w-4-t{width:8rem!important}.u-h-4-t{height:8rem!important}.u-w-5-t{width:16rem!important}.u-h-5-t{height:16rem!important}.u-w-6-t{width:32rem!important}.u-h-6-t{height:32rem!important}.u-w-7-t{width:48rem!important}.u-h-7-t{height:48rem!important}.u-w-8-t{width:64rem!important}.u-h-8-t{height:64rem!important}.u-w-9-t{width:96rem!important}.u-h-9-t{height:96rem!important}.u-w-100-t{width:100%!important}.u-h-100-t{height:100%!important}.u-w-auto-t{width:auto!important}.u-h-auto-t{height:auto!important}.u-w-half-t{width:.5rem!important}.u-h-half-t{height:.5rem!important}.u-w-1-half-t{width:1.5rem!important}.u-h-1-half-t{height:1.5rem!important}.u-w-2-half-t{width:2.5rem!important}.u-h-2-half-t{height:2.5rem!important}.u-dn-t{display:none}.u-di-t{display:inline}.u-db-t{display:block}.u-dib-t{display:inline-block}.u-dit-t{display:inline-table}.u-dt-t{display:table}.u-dtc-t{display:table-cell}.u-dt-row-t{display:table-row}.u-dt-row-group-t{display:table-row-group}.u-dt-column-t{display:table-column}.u-dt-column-group-t{display:table-column-group}.u-fz-tiny-t{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall-t{font-size:.813rem!important;line-height:1.4!important}.u-fz-small-t{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium-t{font-size:1rem!important;line-height:1.5!important}.u-fz-large-t{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left-t{text-align:left!important}.u-ta-right-t{text-align:right!important}.u-ta-center-t{text-align:center!important}.u-ta-justify-t{text-align:justify!important}.u-fs-normal-t{font-style:normal!important}.u-fs-italic-t{font-style:italic!important}}@media(max-width:18rem){.has-banner [role=application] .o-layout-2panes:before{height:8rem}}@media(max-height:21rem){[role=banner] .coz-nav-pop--apps{max-height:calc(100vh - 4rem)}[role=banner] .coz-nav-pop--apps .coz-nav-pop-content{max-height:calc(100vh - 4rem - 2px)}}@media(min-width:64em){[role=banner] .coz-claudy{bottom:2em}[role=banner] .coz-claudy .coz-claudy-intent-wrapper{bottom:6.5em}}@media(max-width:64em){[role=banner] .coz-bar-wrapper{background-color:var(--white)}}@media(max-width:48rem){.u-p-0-s{padding:0!important}.u-pt-0-s{padding-top:0!important}.u-pb-0-s{padding-bottom:0!important}.u-pl-0-s{padding-left:0!important}.u-pr-0-s{padding-right:0!important}.u-pv-0-s{padding-top:0!important;padding-bottom:0!important}.u-ph-0-s{padding-left:0!important;padding-right:0!important}.u-p-1-s{padding:1rem!important}.u-pt-1-s{padding-top:1rem!important}.u-pb-1-s{padding-bottom:1rem!important}.u-pl-1-s{padding-left:1rem!important}.u-pr-1-s{padding-right:1rem!important}.u-pv-1-s{padding-top:1rem!important;padding-bottom:1rem!important}.u-ph-1-s{padding-left:1rem!important;padding-right:1rem!important}.u-p-2-s{padding:2rem!important}.u-pt-2-s{padding-top:2rem!important}.u-pb-2-s{padding-bottom:2rem!important}.u-pl-2-s{padding-left:2rem!important}.u-pr-2-s{padding-right:2rem!important}.u-pv-2-s{padding-top:2rem!important;padding-bottom:2rem!important}.u-ph-2-s{padding-left:2rem!important;padding-right:2rem!important}.u-p-3-s{padding:3rem!important}.u-pt-3-s{padding-top:3rem!important}.u-pb-3-s{padding-bottom:3rem!important}.u-pl-3-s{padding-left:3rem!important}.u-pr-3-s{padding-right:3rem!important}.u-pv-3-s{padding-top:3rem!important;padding-bottom:3rem!important}.u-ph-3-s{padding-left:3rem!important;padding-right:3rem!important}.u-p-auto-s{padding:auto!important}.u-pt-auto-s{padding-top:auto!important}.u-pb-auto-s{padding-bottom:auto!important}.u-pl-auto-s{padding-left:auto!important}.u-pr-auto-s{padding-right:auto!important}.u-pv-auto-s{padding-top:auto!important;padding-bottom:auto!important}.u-ph-auto-s{padding-left:auto!important;padding-right:auto!important}.u-p-half-s{padding:.5rem!important}.u-pt-half-s{padding-top:.5rem!important}.u-pb-half-s{padding-bottom:.5rem!important}.u-pl-half-s{padding-left:.5rem!important}.u-pr-half-s{padding-right:.5rem!important}.u-pv-half-s{padding-top:.5rem!important;padding-bottom:.5rem!important}.u-ph-half-s{padding-left:.5rem!important;padding-right:.5rem!important}.u-p-1-half-s{padding:1.5rem!important}.u-pt-1-half-s{padding-top:1.5rem!important}.u-pb-1-half-s{padding-bottom:1.5rem!important}.u-pl-1-half-s{padding-left:1.5rem!important}.u-pr-1-half-s{padding-right:1.5rem!important}.u-pv-1-half-s{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.u-ph-1-half-s{padding-left:1.5rem!important;padding-right:1.5rem!important}.u-p-2-half-s{padding:2.5rem!important}.u-pt-2-half-s{padding-top:2.5rem!important}.u-pb-2-half-s{padding-bottom:2.5rem!important}.u-pl-2-half-s{padding-left:2.5rem!important}.u-pr-2-half-s{padding-right:2.5rem!important}.u-pv-2-half-s{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.u-ph-2-half-s{padding-left:2.5rem!important;padding-right:2.5rem!important}.u-m-0-s{margin:0!important}.u-mt-0-s{margin-top:0!important}.u-mb-0-s{margin-bottom:0!important}.u-ml-0-s{margin-left:0!important}.u-mr-0-s{margin-right:0!important}.u-mv-0-s{margin-top:0!important;margin-bottom:0!important}.u-mh-0-s{margin-left:0!important;margin-right:0!important}.u-m-1-s{margin:1rem!important}.u-mt-1-s{margin-top:1rem!important}.u-mb-1-s{margin-bottom:1rem!important}.u-ml-1-s{margin-left:1rem!important}.u-mr-1-s{margin-right:1rem!important}.u-mv-1-s{margin-top:1rem!important;margin-bottom:1rem!important}.u-mh-1-s{margin-left:1rem!important;margin-right:1rem!important}.u-m-2-s{margin:2rem!important}.u-mt-2-s{margin-top:2rem!important}.u-mb-2-s{margin-bottom:2rem!important}.u-ml-2-s{margin-left:2rem!important}.u-mr-2-s{margin-right:2rem!important}.u-mv-2-s{margin-top:2rem!important;margin-bottom:2rem!important}.u-mh-2-s{margin-left:2rem!important;margin-right:2rem!important}.u-m-3-s{margin:3rem!important}.u-mt-3-s{margin-top:3rem!important}.u-mb-3-s{margin-bottom:3rem!important}.u-ml-3-s{margin-left:3rem!important}.u-mr-3-s{margin-right:3rem!important}.u-mv-3-s{margin-top:3rem!important;margin-bottom:3rem!important}.u-mh-3-s{margin-left:3rem!important;margin-right:3rem!important}.u-m-auto-s{margin:auto!important}.u-mt-auto-s{margin-top:auto!important}.u-mb-auto-s{margin-bottom:auto!important}.u-ml-auto-s{margin-left:auto!important}.u-mr-auto-s{margin-right:auto!important}.u-mv-auto-s{margin-top:auto!important;margin-bottom:auto!important}.u-mh-auto-s{margin-left:auto!important;margin-right:auto!important}.u-m-half-s{margin:.5rem!important}.u-mt-half-s{margin-top:.5rem!important}.u-mb-half-s{margin-bottom:.5rem!important}.u-ml-half-s{margin-left:.5rem!important}.u-mr-half-s{margin-right:.5rem!important}.u-mv-half-s{margin-top:.5rem!important;margin-bottom:.5rem!important}.u-mh-half-s{margin-left:.5rem!important;margin-right:.5rem!important}.u-m-1-half-s{margin:1.5rem!important}.u-mt-1-half-s{margin-top:1.5rem!important}.u-mb-1-half-s{margin-bottom:1.5rem!important}.u-ml-1-half-s{margin-left:1.5rem!important}.u-mr-1-half-s{margin-right:1.5rem!important}.u-mv-1-half-s{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.u-mh-1-half-s{margin-left:1.5rem!important;margin-right:1.5rem!important}.u-m-2-half-s{margin:2.5rem!important}.u-mt-2-half-s{margin-top:2.5rem!important}.u-mb-2-half-s{margin-bottom:2.5rem!important}.u-ml-2-half-s{margin-left:2.5rem!important}.u-mr-2-half-s{margin-right:2.5rem!important}.u-mv-2-half-s{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.u-mh-2-half-s{margin-left:2.5rem!important;margin-right:2.5rem!important}.u-pos-absolute-s{position:absolute}.u-pos-relative-s{position:relative}.u-pos-fixed-s{position:fixed}.u-pos-sticky-s{position:sticky}.u-pos-static-s{position:static}.u-miw-1-s{min-width:1rem!important}.u-maw-1-s{max-width:1rem!important}.u-mih-1-s{min-height:1rem!important}.u-mah-1-s{max-height:1rem!important}.u-miw-2-s{min-width:2rem!important}.u-maw-2-s{max-width:2rem!important}.u-mih-2-s{min-height:2rem!important}.u-mah-2-s{max-height:2rem!important}.u-miw-3-s{min-width:4rem!important}.u-maw-3-s{max-width:4rem!important}.u-mih-3-s{min-height:4rem!important}.u-mah-3-s{max-height:4rem!important}.u-miw-4-s{min-width:8rem!important}.u-maw-4-s{max-width:8rem!important}.u-mih-4-s{min-height:8rem!important}.u-mah-4-s{max-height:8rem!important}.u-miw-5-s{min-width:16rem!important}.u-maw-5-s{max-width:16rem!important}.u-mih-5-s{min-height:16rem!important}.u-mah-5-s{max-height:16rem!important}.u-miw-6-s{min-width:32rem!important}.u-maw-6-s{max-width:32rem!important}.u-mih-6-s{min-height:32rem!important}.u-mah-6-s{max-height:32rem!important}.u-miw-7-s{min-width:48rem!important}.u-maw-7-s{max-width:48rem!important}.u-mih-7-s{min-height:48rem!important}.u-mah-7-s{max-height:48rem!important}.u-miw-8-s{min-width:64rem!important}.u-maw-8-s{max-width:64rem!important}.u-mih-8-s{min-height:64rem!important}.u-mah-8-s{max-height:64rem!important}.u-miw-9-s{min-width:96rem!important}.u-maw-9-s{max-width:96rem!important}.u-mih-9-s{min-height:96rem!important}.u-mah-9-s{max-height:96rem!important}.u-miw-100-s{min-width:100%!important}.u-maw-100-s{max-width:100%!important}.u-mih-100-s{min-height:100%!important}.u-mah-100-s{max-height:100%!important}.u-maw-none-s{max-width:none!important}.u-mah-none-s{max-height:none!important}.u-miw-auto-s{min-width:auto!important}.u-mih-auto-s{min-height:auto!important}.u-miw-half-s{min-width:.5rem!important}.u-maw-half-s{max-width:.5rem!important}.u-mih-half-s{min-height:.5rem!important}.u-mah-half-s{max-height:.5rem!important}.u-miw-1-half-s{min-width:1.5rem!important}.u-maw-1-half-s{max-width:1.5rem!important}.u-mih-1-half-s{min-height:1.5rem!important}.u-mah-1-half-s{max-height:1.5rem!important}.u-miw-2-half-s{min-width:2.5rem!important}.u-maw-2-half-s{max-width:2.5rem!important}.u-mih-2-half-s{min-height:2.5rem!important}.u-mah-2-half-s{max-height:2.5rem!important}.u-w-1-s{width:1rem!important}.u-h-1-s{height:1rem!important}.u-w-2-s{width:2rem!important}.u-h-2-s{height:2rem!important}.u-w-3-s{width:4rem!important}.u-h-3-s{height:4rem!important}.u-w-4-s{width:8rem!important}.u-h-4-s{height:8rem!important}.u-w-5-s{width:16rem!important}.u-h-5-s{height:16rem!important}.u-w-6-s{width:32rem!important}.u-h-6-s{height:32rem!important}.u-w-7-s{width:48rem!important}.u-h-7-s{height:48rem!important}.u-w-8-s{width:64rem!important}.u-h-8-s{height:64rem!important}.u-w-9-s{width:96rem!important}.u-h-9-s{height:96rem!important}.u-w-100-s{width:100%!important}.u-h-100-s{height:100%!important}.u-w-auto-s{width:auto!important}.u-h-auto-s{height:auto!important}.u-w-half-s{width:.5rem!important}.u-h-half-s{height:.5rem!important}.u-w-1-half-s{width:1.5rem!important}.u-h-1-half-s{height:1.5rem!important}.u-w-2-half-s{width:2.5rem!important}.u-h-2-half-s{height:2.5rem!important}.u-dn-s{display:none}.u-di-s{display:inline}.u-db-s{display:block}.u-dib-s{display:inline-block}.u-dit-s{display:inline-table}.u-dt-s{display:table}.u-dtc-s{display:table-cell}.u-dt-row-s{display:table-row}.u-dt-row-group-s{display:table-row-group}.u-dt-column-s{display:table-column}.u-dt-column-group-s{display:table-column-group}.u-fz-tiny-s{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall-s{font-size:.813rem!important;line-height:1.4!important}.u-fz-small-s{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium-s{font-size:1rem!important;line-height:1.5!important}.u-fz-large-s{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left-s{text-align:left!important}.u-ta-right-s{text-align:right!important}.u-ta-center-s{text-align:center!important}.u-ta-justify-s{text-align:justify!important}.u-fs-normal-s{font-style:normal!important}.u-fs-italic-s{font-style:italic!important}}@media(max-width:63.938rem){.u-p-0-m{padding:0!important}.u-pt-0-m{padding-top:0!important}.u-pb-0-m{padding-bottom:0!important}.u-pl-0-m{padding-left:0!important}.u-pr-0-m{padding-right:0!important}.u-pv-0-m{padding-top:0!important;padding-bottom:0!important}.u-ph-0-m{padding-left:0!important;padding-right:0!important}.u-p-1-m{padding:1rem!important}.u-pt-1-m{padding-top:1rem!important}.u-pb-1-m{padding-bottom:1rem!important}.u-pl-1-m{padding-left:1rem!important}.u-pr-1-m{padding-right:1rem!important}.u-pv-1-m{padding-top:1rem!important;padding-bottom:1rem!important}.u-ph-1-m{padding-left:1rem!important;padding-right:1rem!important}.u-p-2-m{padding:2rem!important}.u-pt-2-m{padding-top:2rem!important}.u-pb-2-m{padding-bottom:2rem!important}.u-pl-2-m{padding-left:2rem!important}.u-pr-2-m{padding-right:2rem!important}.u-pv-2-m{padding-top:2rem!important;padding-bottom:2rem!important}.u-ph-2-m{padding-left:2rem!important;padding-right:2rem!important}.u-p-3-m{padding:3rem!important}.u-pt-3-m{padding-top:3rem!important}.u-pb-3-m{padding-bottom:3rem!important}.u-pl-3-m{padding-left:3rem!important}.u-pr-3-m{padding-right:3rem!important}.u-pv-3-m{padding-top:3rem!important;padding-bottom:3rem!important}.u-ph-3-m{padding-left:3rem!important;padding-right:3rem!important}.u-p-auto-m{padding:auto!important}.u-pt-auto-m{padding-top:auto!important}.u-pb-auto-m{padding-bottom:auto!important}.u-pl-auto-m{padding-left:auto!important}.u-pr-auto-m{padding-right:auto!important}.u-pv-auto-m{padding-top:auto!important;padding-bottom:auto!important}.u-ph-auto-m{padding-left:auto!important;padding-right:auto!important}.u-p-half-m{padding:.5rem!important}.u-pt-half-m{padding-top:.5rem!important}.u-pb-half-m{padding-bottom:.5rem!important}.u-pl-half-m{padding-left:.5rem!important}.u-pr-half-m{padding-right:.5rem!important}.u-pv-half-m{padding-top:.5rem!important;padding-bottom:.5rem!important}.u-ph-half-m{padding-left:.5rem!important;padding-right:.5rem!important}.u-p-1-half-m{padding:1.5rem!important}.u-pt-1-half-m{padding-top:1.5rem!important}.u-pb-1-half-m{padding-bottom:1.5rem!important}.u-pl-1-half-m{padding-left:1.5rem!important}.u-pr-1-half-m{padding-right:1.5rem!important}.u-pv-1-half-m{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.u-ph-1-half-m{padding-left:1.5rem!important;padding-right:1.5rem!important}.u-p-2-half-m{padding:2.5rem!important}.u-pt-2-half-m{padding-top:2.5rem!important}.u-pb-2-half-m{padding-bottom:2.5rem!important}.u-pl-2-half-m{padding-left:2.5rem!important}.u-pr-2-half-m{padding-right:2.5rem!important}.u-pv-2-half-m{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.u-ph-2-half-m{padding-left:2.5rem!important;padding-right:2.5rem!important}.u-m-0-m{margin:0!important}.u-mt-0-m{margin-top:0!important}.u-mb-0-m{margin-bottom:0!important}.u-ml-0-m{margin-left:0!important}.u-mr-0-m{margin-right:0!important}.u-mv-0-m{margin-top:0!important;margin-bottom:0!important}.u-mh-0-m{margin-left:0!important;margin-right:0!important}.u-m-1-m{margin:1rem!important}.u-mt-1-m{margin-top:1rem!important}.u-mb-1-m{margin-bottom:1rem!important}.u-ml-1-m{margin-left:1rem!important}.u-mr-1-m{margin-right:1rem!important}.u-mv-1-m{margin-top:1rem!important;margin-bottom:1rem!important}.u-mh-1-m{margin-left:1rem!important;margin-right:1rem!important}.u-m-2-m{margin:2rem!important}.u-mt-2-m{margin-top:2rem!important}.u-mb-2-m{margin-bottom:2rem!important}.u-ml-2-m{margin-left:2rem!important}.u-mr-2-m{margin-right:2rem!important}.u-mv-2-m{margin-top:2rem!important;margin-bottom:2rem!important}.u-mh-2-m{margin-left:2rem!important;margin-right:2rem!important}.u-m-3-m{margin:3rem!important}.u-mt-3-m{margin-top:3rem!important}.u-mb-3-m{margin-bottom:3rem!important}.u-ml-3-m{margin-left:3rem!important}.u-mr-3-m{margin-right:3rem!important}.u-mv-3-m{margin-top:3rem!important;margin-bottom:3rem!important}.u-mh-3-m{margin-left:3rem!important;margin-right:3rem!important}.u-m-auto-m{margin:auto!important}.u-mt-auto-m{margin-top:auto!important}.u-mb-auto-m{margin-bottom:auto!important}.u-ml-auto-m{margin-left:auto!important}.u-mr-auto-m{margin-right:auto!important}.u-mv-auto-m{margin-top:auto!important;margin-bottom:auto!important}.u-mh-auto-m{margin-left:auto!important;margin-right:auto!important}.u-m-half-m{margin:.5rem!important}.u-mt-half-m{margin-top:.5rem!important}.u-mb-half-m{margin-bottom:.5rem!important}.u-ml-half-m{margin-left:.5rem!important}.u-mr-half-m{margin-right:.5rem!important}.u-mv-half-m{margin-top:.5rem!important;margin-bottom:.5rem!important}.u-mh-half-m{margin-left:.5rem!important;margin-right:.5rem!important}.u-m-1-half-m{margin:1.5rem!important}.u-mt-1-half-m{margin-top:1.5rem!important}.u-mb-1-half-m{margin-bottom:1.5rem!important}.u-ml-1-half-m{margin-left:1.5rem!important}.u-mr-1-half-m{margin-right:1.5rem!important}.u-mv-1-half-m{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.u-mh-1-half-m{margin-left:1.5rem!important;margin-right:1.5rem!important}.u-m-2-half-m{margin:2.5rem!important}.u-mt-2-half-m{margin-top:2.5rem!important}.u-mb-2-half-m{margin-bottom:2.5rem!important}.u-ml-2-half-m{margin-left:2.5rem!important}.u-mr-2-half-m{margin-right:2.5rem!important}.u-mv-2-half-m{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.u-mh-2-half-m{margin-left:2.5rem!important;margin-right:2.5rem!important}.u-pos-absolute-m{position:absolute}.u-pos-relative-m{position:relative}.u-pos-fixed-m{position:fixed}.u-pos-sticky-m{position:sticky}.u-pos-static-m{position:static}.u-miw-1-m{min-width:1rem!important}.u-maw-1-m{max-width:1rem!important}.u-mih-1-m{min-height:1rem!important}.u-mah-1-m{max-height:1rem!important}.u-miw-2-m{min-width:2rem!important}.u-maw-2-m{max-width:2rem!important}.u-mih-2-m{min-height:2rem!important}.u-mah-2-m{max-height:2rem!important}.u-miw-3-m{min-width:4rem!important}.u-maw-3-m{max-width:4rem!important}.u-mih-3-m{min-height:4rem!important}.u-mah-3-m{max-height:4rem!important}.u-miw-4-m{min-width:8rem!important}.u-maw-4-m{max-width:8rem!important}.u-mih-4-m{min-height:8rem!important}.u-mah-4-m{max-height:8rem!important}.u-miw-5-m{min-width:16rem!important}.u-maw-5-m{max-width:16rem!important}.u-mih-5-m{min-height:16rem!important}.u-mah-5-m{max-height:16rem!important}.u-miw-6-m{min-width:32rem!important}.u-maw-6-m{max-width:32rem!important}.u-mih-6-m{min-height:32rem!important}.u-mah-6-m{max-height:32rem!important}.u-miw-7-m{min-width:48rem!important}.u-maw-7-m{max-width:48rem!important}.u-mih-7-m{min-height:48rem!important}.u-mah-7-m{max-height:48rem!important}.u-miw-8-m{min-width:64rem!important}.u-maw-8-m{max-width:64rem!important}.u-mih-8-m{min-height:64rem!important}.u-mah-8-m{max-height:64rem!important}.u-miw-9-m{min-width:96rem!important}.u-maw-9-m{max-width:96rem!important}.u-mih-9-m{min-height:96rem!important}.u-mah-9-m{max-height:96rem!important}.u-miw-100-m{min-width:100%!important}.u-maw-100-m{max-width:100%!important}.u-mih-100-m{min-height:100%!important}.u-mah-100-m{max-height:100%!important}.u-maw-none-m{max-width:none!important}.u-mah-none-m{max-height:none!important}.u-miw-auto-m{min-width:auto!important}.u-mih-auto-m{min-height:auto!important}.u-miw-half-m{min-width:.5rem!important}.u-maw-half-m{max-width:.5rem!important}.u-mih-half-m{min-height:.5rem!important}.u-mah-half-m{max-height:.5rem!important}.u-miw-1-half-m{min-width:1.5rem!important}.u-maw-1-half-m{max-width:1.5rem!important}.u-mih-1-half-m{min-height:1.5rem!important}.u-mah-1-half-m{max-height:1.5rem!important}.u-miw-2-half-m{min-width:2.5rem!important}.u-maw-2-half-m{max-width:2.5rem!important}.u-mih-2-half-m{min-height:2.5rem!important}.u-mah-2-half-m{max-height:2.5rem!important}.u-w-1-m{width:1rem!important}.u-h-1-m{height:1rem!important}.u-w-2-m{width:2rem!important}.u-h-2-m{height:2rem!important}.u-w-3-m{width:4rem!important}.u-h-3-m{height:4rem!important}.u-w-4-m{width:8rem!important}.u-h-4-m{height:8rem!important}.u-w-5-m{width:16rem!important}.u-h-5-m{height:16rem!important}.u-w-6-m{width:32rem!important}.u-h-6-m{height:32rem!important}.u-w-7-m{width:48rem!important}.u-h-7-m{height:48rem!important}.u-w-8-m{width:64rem!important}.u-h-8-m{height:64rem!important}.u-w-9-m{width:96rem!important}.u-h-9-m{height:96rem!important}.u-w-100-m{width:100%!important}.u-h-100-m{height:100%!important}.u-w-auto-m{width:auto!important}.u-h-auto-m{height:auto!important}.u-w-half-m{width:.5rem!important}.u-h-half-m{height:.5rem!important}.u-w-1-half-m{width:1.5rem!important}.u-h-1-half-m{height:1.5rem!important}.u-w-2-half-m{width:2.5rem!important}.u-h-2-half-m{height:2.5rem!important}.u-hide--mob{display:none!important}.u-dn-m{display:none}.u-di-m{display:inline}.u-db-m{display:block}.u-dib-m{display:inline-block}.u-dit-m{display:inline-table}.u-dt-m{display:table}.u-dtc-m{display:table-cell}.u-dt-row-m{display:table-row}.u-dt-row-group-m{display:table-row-group}.u-dt-column-m{display:table-column}.u-dt-column-group-m{display:table-column-group}.u-fz-tiny-m{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall-m{font-size:.813rem!important;line-height:1.4!important}.u-fz-small-m{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium-m{font-size:1rem!important;line-height:1.5!important}.u-fz-large-m{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left-m{text-align:left!important}.u-ta-right-m{text-align:right!important}.u-ta-center-m{text-align:center!important}.u-ta-justify-m{text-align:justify!important}.u-fs-normal-m{font-style:normal!important}.u-fs-italic-m{font-style:italic!important}}@media(min-width:48.063rem){.u-hide--desk{display:none!important}}
|
|
2
|
+
.cozy-ui-bar-c-loading-placeholder--215aK{-webkit-animation-delay:.1s;animation-delay:.1s;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:cozy-ui-bar-placeHolderShimmer--3-jlD;animation-name:cozy-ui-bar-placeHolderShimmer--3-jlD;-webkit-animation-timing-function:linear;animation-timing-function:linear;background-position:-20rem 0;background-image:linear-gradient(to right,silver 0,#fcfcfc 50%,silver 100%);background-size:20rem 10rem;background-repeat:no-repeat;background-color:silver;border-radius:.15rem;max-width:100%;position:relative;margin:.1rem 0}.cozy-ui-bar-c-app-icon--3Xbeb,.cozy-ui-bar-c-app-icon--3Xbeb svg{height:100%;width:100%;flex-grow:0;flex-shrink:0;-o-object-fit:contain;object-fit:contain}.cozy-ui-bar-c-app-icon-default--2Jv93{color:var(--silver)}@-webkit-keyframes cozy-ui-bar-placeHolderShimmer--3-jlD{0%{background-position:-20rem 0}80%{background-position:20rem 0}80.1%{background-position:-20rem 0}100%{background-position:-20rem 0}}@keyframes cozy-ui-bar-placeHolderShimmer--3-jlD{0%{background-position:-20rem 0}80%{background-position:20rem 0}80.1%{background-position:-20rem 0}100%{background-position:-20rem 0}}
|
|
3
|
+
.cozy-ui-bar-icon--spin--3IvCw{-webkit-animation:cozy-ui-bar-spin--3r0RK 1s linear infinite;animation:cozy-ui-bar-spin--3r0RK 1s linear infinite}@-webkit-keyframes cozy-ui-bar-spin--3r0RK{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes cozy-ui-bar-spin--3r0RK{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@-webkit-keyframes cozy-ui-bar-shake--1Tqb8{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}@keyframes cozy-ui-bar-shake--1Tqb8{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}.cozy-ui-bar-icon--3NURx{fill:var(--iconColor);transform:translateZ(0)}.cozy-ui-bar-icon--preserveColor--bqA0L{fill:inherit}@media(prefers-reduced-motion:reduce){.cozy-ui-bar-icon--spin--3IvCw{-webkit-animation:none;animation:none}}
|
|
4
|
+
@-webkit-keyframes cozy-ui-bar-spin--39OaW{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes cozy-ui-bar-spin--39OaW{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@-webkit-keyframes cozy-ui-bar-shake--34qwk{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}@keyframes cozy-ui-bar-shake--34qwk{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}.u-visuallyhidden{position:absolute!important;border:0!important;width:.063rem!important;height:.063rem!important;overflow:hidden!important;padding:0!important;white-space:nowrap!important;clip:rect(.063rem,.063rem,.063rem,.063rem)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important}.u-hide{display:none!important;visibility:hidden!important}.u-dn{display:none}.u-di{display:inline}.u-db{display:block}.u-dib{display:inline-block}.u-dit{display:inline-table}.u-dt{display:table}.u-dtc{display:table-cell}.u-dt-row{display:table-row}.u-dt-row-group{display:table-row-group}.u-dt-column{display:table-column}.u-dt-column-group{display:table-column-group}.u-error{color:var(--pomegranate)}.u-valid{color:var(--emerald)}.u-warn{color:var(--texasRose)}.u-black{color:var(--black)!important}.u-white{color:var(--white)!important}.u-paleGrey{color:var(--paleGrey)!important}.u-silver{color:var(--silver)!important}.u-coolGrey{color:var(--coolGrey)!important}.u-slateGrey{color:var(--slateGrey)!important}.u-charcoalGrey{color:var(--charcoalGrey)!important}.u-overlay{color:var(--overlay)!important}.u-zircon{color:var(--zircon)!important}.u-frenchPass{color:var(--frenchPass)!important}.u-dodgerBlue{color:var(--dodgerBlue)!important}.u-scienceBlue{color:var(--scienceBlue)!important}.u-puertoRico{color:var(--puertoRico)!important}.u-grannyApple{color:var(--grannyApple)!important}.u-emerald{color:var(--emerald)!important}.u-malachite{color:var(--malachite)!important}.u-seafoamGreen{color:var(--seafoamGreen)!important}.u-brightSun{color:var(--brightSun)!important}.u-texasRose{color:var(--texasRose)!important}.u-chablis{color:var(--chablis)!important}.u-yourPink{color:var(--yourPink)!important}.u-fuchsia{color:var(--fuchsia)!important}.u-pomegranate{color:var(--pomegranate)!important}.u-monza{color:var(--monza)!important}.u-portage{color:var(--portage)!important}.u-azure{color:var(--azure)!important}.u-melon{color:var(--melon)!important}.u-blazeOrange{color:var(--blazeOrange)!important}.u-mango{color:var(--mango)!important}.u-pumpkinOrange{color:var(--pumpkinOrange)!important}.u-lavender{color:var(--lavender)!important}.u-darkPeriwinkle{color:var(--darkPeriwinkle)!important}.u-purpley{color:var(--purpley)!important}.u-lightishPurple{color:var(--lightishPurple)!important}.u-barney{color:var(--barney)!important}.u-weirdGreen{color:var(--weirdGreen)!important}.u-primaryColor{color:var(--primaryColor)!important}.u-primaryColorLight{color:var(--primaryColorLight)!important}.u-primaryContrastTextColor{color:var(--primaryContrastTextColor)!important}.u-breakword{word-break:break-word}.u-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.u-midellipsis{display:flex;flex-wrap:nowrap}.u-midellipsis>*{display:inline-block;max-width:50%;overflow:hidden;white-space:pre}.u-midellipsis>:first-child{text-overflow:ellipsis}.u-midellipsis>:last-child{text-overflow:clip;direction:rtl}@supports(text-overflow:'[...]'){.u-midellipsis>:first-child{text-overflow:'[...]'}}.u-link:link{color:var(--dodgerBlue);text-decoration:none}.u-link:visited,.u-link:active,.u-link:hover,.u-link:focus{color:var(--scienceBlue)}.u-lh-tiny{line-height:1!important}.u-lh-xsmall{line-height:1.1!important}.u-lh-small{line-height:1.2!important}.u-lh-medium{line-height:1.3!important}.u-lh-large{line-height:1.4!important}.u-lh-xlarge{line-height:1.5!important}.u-fz-tiny{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall{font-size:.813rem!important;line-height:1.4!important}.u-fz-small{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium{font-size:1rem!important;line-height:1.5!important}.u-fz-large{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left{text-align:left!important}.u-ta-right{text-align:right!important}.u-ta-center{text-align:center!important}.u-ta-justify{text-align:justify!important}.u-fs-normal{font-style:normal!important}.u-fs-italic{font-style:italic!important}.cozy-ui-bar-c-btn--3Vk8q,.cozy-ui-bar-c-btn--regular--2vXm9{position:relative;box-sizing:border-box;display:inline-flex;margin:0 .25rem;border-width:.063rem;border-style:solid;border-radius:.125rem;min-height:2.5rem;min-width:7rem;padding:.188rem 1rem;vertical-align:top;text-align:center;font-size:.875rem;font-weight:700;line-height:1;text-transform:uppercase;text-decoration:none;cursor:pointer;align-items:center;background-color:var(--regularButtonPrimaryColor);color:var(--regularButtonConstrastColor);border-color:var(--regularButtonSecondaryColor)}.cozy-ui-bar-c-btn--3Vk8q svg,.cozy-ui-bar-c-btn--regular--2vXm9 svg{fill:currentColor}.cozy-ui-bar-c-btn--3Vk8q svg+span,.cozy-ui-bar-c-btn--regular--2vXm9 svg+span{margin-left:.375rem}.cozy-ui-bar-c-btn--3Vk8q input,.cozy-ui-bar-c-btn--regular--2vXm9 input{cursor:pointer}.cozy-ui-bar-c-btn--3Vk8q>span,.cozy-ui-bar-c-btn--regular--2vXm9>span{display:flex;align-items:center;justify-content:center;width:100%}.cozy-ui-bar-c-btn--3Vk8q[disabled],.cozy-ui-bar-c-btn--regular--2vXm9[disabled],.cozy-ui-bar-c-btn--3Vk8q[aria-disabled=true],.cozy-ui-bar-c-btn--regular--2vXm9[aria-disabled=true]{opacity:.5;cursor:not-allowed}.cozy-ui-bar-c-btn--3Vk8q[disabled] input,.cozy-ui-bar-c-btn--regular--2vXm9[disabled] input,.cozy-ui-bar-c-btn--3Vk8q[aria-disabled=true] input,.cozy-ui-bar-c-btn--regular--2vXm9[aria-disabled=true] input{cursor:not-allowed}.cozy-ui-bar-c-btn--3Vk8q[aria-busy=true],.cozy-ui-bar-c-btn--regular--2vXm9[aria-busy=true]{opacity:.5;pointer-events:none}.cozy-ui-bar-c-btn--3Vk8q:visited,.cozy-ui-bar-c-btn--regular--2vXm9:visited{color:var(--regularButtonConstrastColor)}.cozy-ui-bar-c-btn--3Vk8q:active,.cozy-ui-bar-c-btn--regular--2vXm9:active,.cozy-ui-bar-c-btn--3Vk8q:hover,.cozy-ui-bar-c-btn--regular--2vXm9:hover,.cozy-ui-bar-c-btn--3Vk8q:focus,.cozy-ui-bar-c-btn--regular--2vXm9:focus{border-color:var(--regularButtonActiveColor);background-color:var(--regularButtonActiveColor)}.cozy-ui-bar-c-btn--3Vk8q[disabled]:hover,.cozy-ui-bar-c-btn--regular--2vXm9[disabled]:hover,.cozy-ui-bar-c-btn--3Vk8q[aria-disabled=true]:hover,.cozy-ui-bar-c-btn--regular--2vXm9[aria-disabled=true]:hover{border-color:var(--regularButtonSecondaryColor);background-color:var(--regularButtonPrimaryColor)}.cozy-ui-bar-c-btn--ghost--2erzD{background-color:var(--zircon);color:var(--primaryColor);border-color:var(--frenchPass);border-style:dashed}.cozy-ui-bar-c-btn--ghost--2erzD:visited{color:var(--primaryColor)}.cozy-ui-bar-c-btn--ghost--2erzD:active,.cozy-ui-bar-c-btn--ghost--2erzD:hover,.cozy-ui-bar-c-btn--ghost--2erzD:focus{border-color:var(--frenchPass);background-color:var(--frenchPass)}.cozy-ui-bar-c-btn--ghost--2erzD[disabled]:hover,.cozy-ui-bar-c-btn--ghost--2erzD[aria-disabled=true]:hover{border-color:var(--frenchPass);background-color:var(--zircon)}.cozy-ui-bar-c-btn--highlight--139k0{background-color:var(--emerald);color:var(--white);border-color:var(--emerald)}.cozy-ui-bar-c-btn--highlight--139k0:visited{color:var(--white)}.cozy-ui-bar-c-btn--highlight--139k0:active,.cozy-ui-bar-c-btn--highlight--139k0:hover,.cozy-ui-bar-c-btn--highlight--139k0:focus{border-color:var(--malachite);background-color:var(--malachite)}.cozy-ui-bar-c-btn--highlight--139k0[disabled]:hover,.cozy-ui-bar-c-btn--highlight--139k0[aria-disabled=true]:hover{border-color:var(--emerald);background-color:var(--emerald)}.cozy-ui-bar-c-btn--alpha--3xuwd,.cozy-ui-bar-c-btn--action--1mNtp,.cozy-ui-bar-c-btn--close--m97vB{background-color:transparent;color:var(--white);border-color:var(--white)}.cozy-ui-bar-c-btn--alpha--3xuwd:visited,.cozy-ui-bar-c-btn--action--1mNtp:visited,.cozy-ui-bar-c-btn--close--m97vB:visited{color:var(--white)}.cozy-ui-bar-c-btn--alpha--3xuwd:active,.cozy-ui-bar-c-btn--action--1mNtp:active,.cozy-ui-bar-c-btn--close--m97vB:active,.cozy-ui-bar-c-btn--alpha--3xuwd:hover,.cozy-ui-bar-c-btn--action--1mNtp:hover,.cozy-ui-bar-c-btn--close--m97vB:hover,.cozy-ui-bar-c-btn--alpha--3xuwd:focus,.cozy-ui-bar-c-btn--action--1mNtp:focus,.cozy-ui-bar-c-btn--close--m97vB:focus{border-color:var(--scienceBlue);background-color:var(--scienceBlue)}.cozy-ui-bar-c-btn--alpha--3xuwd[disabled]:hover,.cozy-ui-bar-c-btn--action--1mNtp[disabled]:hover,.cozy-ui-bar-c-btn--close--m97vB[disabled]:hover,.cozy-ui-bar-c-btn--alpha--3xuwd[aria-disabled=true]:hover,.cozy-ui-bar-c-btn--action--1mNtp[aria-disabled=true]:hover,.cozy-ui-bar-c-btn--close--m97vB[aria-disabled=true]:hover{border-color:var(--white);background-color:transparent}.cozy-ui-bar-c-btn--danger--3pdnK{background-color:var(--pomegranate);color:var(--white);border-color:var(--pomegranate)}.cozy-ui-bar-c-btn--danger--3pdnK:visited{color:var(--white)}.cozy-ui-bar-c-btn--danger--3pdnK:active,.cozy-ui-bar-c-btn--danger--3pdnK:hover,.cozy-ui-bar-c-btn--danger--3pdnK:focus{border-color:var(--monza);background-color:var(--monza)}.cozy-ui-bar-c-btn--danger--3pdnK[disabled]:hover,.cozy-ui-bar-c-btn--danger--3pdnK[aria-disabled=true]:hover{border-color:var(--pomegranate);background-color:var(--pomegranate)}.cozy-ui-bar-c-btn--secondary--2JUsA{background-color:var(--secondaryButtonPrimaryColor);color:var(--secondaryButtonContrastColor);border-color:var(--secondaryButtonSecondaryColor)}.cozy-ui-bar-c-btn--secondary--2JUsA:visited{color:var(--secondaryButtonContrastColor)}.cozy-ui-bar-c-btn--secondary--2JUsA:active,.cozy-ui-bar-c-btn--secondary--2JUsA:hover,.cozy-ui-bar-c-btn--secondary--2JUsA:focus{border-color:var(--secondaryButtonActiveColor);background-color:var(--secondaryButtonActiveColor)}.cozy-ui-bar-c-btn--secondary--2JUsA[disabled]:hover,.cozy-ui-bar-c-btn--secondary--2JUsA[aria-disabled=true]:hover{border-color:var(--secondaryButtonSecondaryColor);background-color:var(--secondaryButtonPrimaryColor)}.cozy-ui-bar-c-btn--danger-outline--2Bltk{background-color:var(--white);color:var(--pomegranate);border-color:var(--yourPink)}.cozy-ui-bar-c-btn--danger-outline--2Bltk:visited{color:var(--pomegranate)}.cozy-ui-bar-c-btn--danger-outline--2Bltk:active,.cozy-ui-bar-c-btn--danger-outline--2Bltk:hover,.cozy-ui-bar-c-btn--danger-outline--2Bltk:focus{border-color:var(--yourPink);background-color:var(--yourPink)}.cozy-ui-bar-c-btn--danger-outline--2Bltk[disabled]:hover,.cozy-ui-bar-c-btn--danger-outline--2Bltk[aria-disabled=true]:hover{border-color:var(--yourPink);background-color:var(--white)}.cozy-ui-bar-c-btn--text--1M_ap{background-color:transparent;color:var(--primaryColor);border-color:transparent}.cozy-ui-bar-c-btn--text--1M_ap:visited{color:var(--primaryColor)}.cozy-ui-bar-c-btn--text--1M_ap:active,.cozy-ui-bar-c-btn--text--1M_ap:hover,.cozy-ui-bar-c-btn--text--1M_ap:focus{border-color:transparent;background-color:transparent}.cozy-ui-bar-c-btn--text--1M_ap[disabled]:hover,.cozy-ui-bar-c-btn--text--1M_ap[aria-disabled=true]:hover{border-color:transparent;background-color:transparent}.cozy-ui-bar-c-btn--text--1M_ap:hover,.cozy-ui-bar-c-btn--text--1M_ap:focus{color:var(--scienceBlue)}.cozy-ui-bar-c-btn--action--1mNtp{border-color:transparent;padding:.5rem;opacity:.5}.cozy-ui-bar-c-btn--action--1mNtp:active,.cozy-ui-bar-c-btn--action--1mNtp:hover,.cozy-ui-bar-c-btn--action--1mNtp:focus{background-color:transparent;border-color:transparent}.cozy-ui-bar-c-btn--close--m97vB{border-color:transparent;padding:.5rem}.cozy-ui-bar-c-btn--close--m97vB:active,.cozy-ui-bar-c-btn--close--m97vB:hover,.cozy-ui-bar-c-btn--close--m97vB:focus{background-color:transparent;border-color:transparent}.cozy-ui-bar-c-btn--left--3xEmE>span{justify-content:flex-start}.cozy-ui-bar-c-btn--center--T8nT8>span{justify-content:center}.cozy-ui-bar-c-btn--right--3pX-0>span{justify-content:flex-end}.cozy-ui-bar-c-btn--3Vk8q.cozy-ui-bar-c-btn--tiny--15Am0{min-height:1.5rem;min-width:5rem;padding:.125rem 1rem;font-size:.75rem;line-height:1.3}.cozy-ui-bar-c-btn--3Vk8q.cozy-ui-bar-c-btn--small--gNd1_{min-height:2rem;min-width:6rem;padding:.188rem .5rem;font-size:.813rem;line-height:1.4}.cozy-ui-bar-c-btn--3Vk8q.cozy-ui-bar-c-btn--large--VoQ1T{min-height:3rem;min-width:10rem;padding:.5rem 1.5rem;font-size:1rem;line-height:1.5}.cozy-ui-bar-c-btn--3Vk8q.cozy-ui-bar-c-btn--full--257V_{width:100%;margin:0}.cozy-ui-bar-c-btn--3Vk8q.cozy-ui-bar-c-btn--narrow--37r_T,.cozy-ui-bar-c-btn--3Vk8q.cozy-ui-bar-c-btn--round--TSd9o{min-width:auto}.cozy-ui-bar-c-btn--3Vk8q.cozy-ui-bar-c-btn--round--TSd9o{border-radius:100%;min-height:auto;padding:.25rem}.cozy-ui-bar-c-btn--3Vk8q.cozy-ui-bar-c-btn--round--TSd9o svg{width:.625rem;height:.625rem}.cozy-ui-bar-c-btn--subtle--225Zu{color:var(--regularButtonSecondaryColor);min-height:auto;min-width:auto;border:0;margin:1rem 0;padding:0;vertical-align:baseline;background:transparent;cursor:pointer;font-size:.875rem;font-weight:700;text-transform:uppercase}.cozy-ui-bar-c-btn--subtle--225Zu:active,.cozy-ui-bar-c-btn--subtle--225Zu:focus,.cozy-ui-bar-c-btn--subtle--225Zu:hover{color:var(--regularButtonActiveColor)}.cozy-ui-bar-c-btn--subtle--225Zu>span{display:flex;align-items:center;justify-content:center;width:100%}.cozy-ui-bar-c-btn--subtle--225Zu[disabled],.cozy-ui-bar-c-btn--subtle--225Zu[aria-disabled=true]{opacity:.5;cursor:not-allowed}.cozy-ui-bar-c-btn--subtle--225Zu[disabled]:hover,.cozy-ui-bar-c-btn--subtle--225Zu[aria-disabled=true]:hover{background:transparent}.cozy-ui-bar-c-btn--subtle--225Zu[aria-busy=true]{opacity:.5;cursor:not-allowed;pointer-events:none}.cozy-ui-bar-c-btn--subtle--225Zu[aria-busy=true]:hover{background:transparent}.cozy-ui-bar-c-btn--subtle--225Zu:active,.cozy-ui-bar-c-btn--subtle--225Zu:hover,.cozy-ui-bar-c-btn--subtle--225Zu:focus,.cozy-ui-bar-c-btn--subtle--225Zu:visited{color:var(--scienceBlue);background:transparent}*+.cozy-ui-bar-c-btn--subtle--225Zu{margin-left:.063rem}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--tiny--15Am0{min-height:0;min-width:0;padding:0;font-size:.563rem}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--small--gNd1_{min-height:0;min-width:0;padding:0;font-size:.75rem}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--large--VoQ1T{min-height:0;min-width:0;padding:0;font-size:1rem}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--danger--3pdnK{color:var(--pomegranate)}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--danger--3pdnK:active,.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--danger--3pdnK:focus,.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--danger--3pdnK:hover{color:var(--monza)}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--highlight--139k0{color:var(--emerald)}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--highlight--139k0:active,.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--highlight--139k0:focus,.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--highlight--139k0:hover{color:var(--malachite)}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--regular--2vXm9{color:var(--regularButtonSecondaryColor)}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--regular--2vXm9:active,.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--regular--2vXm9:focus,.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--regular--2vXm9:hover{color:var(--regularButtonActiveColor)}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--secondary--2JUsA{color:var(--slateGrey)}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--secondary--2JUsA:active,.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--secondary--2JUsA:focus,.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--secondary--2JUsA:hover{color:var(--charcoalGrey)}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--secondary--2JUsA:active svg,.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--secondary--2JUsA:focus svg,.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--secondary--2JUsA:hover svg{color:var(--slateGrey)}.cozy-ui-bar-c-btn--subtle--225Zu.cozy-ui-bar-c-btn--secondary--2JUsA svg{color:var(--coolGrey)}@media(max-width:63.938rem){.u-hide--mob{display:none!important}.u-dn-m{display:none}.u-di-m{display:inline}.u-db-m{display:block}.u-dib-m{display:inline-block}.u-dit-m{display:inline-table}.u-dt-m{display:table}.u-dtc-m{display:table-cell}.u-dt-row-m{display:table-row}.u-dt-row-group-m{display:table-row-group}.u-dt-column-m{display:table-column}.u-dt-column-group-m{display:table-column-group}.u-fz-tiny-m{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall-m{font-size:.813rem!important;line-height:1.4!important}.u-fz-small-m{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium-m{font-size:1rem!important;line-height:1.5!important}.u-fz-large-m{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left-m{text-align:left!important}.u-ta-right-m{text-align:right!important}.u-ta-center-m{text-align:center!important}.u-ta-justify-m{text-align:justify!important}.u-fs-normal-m{font-style:normal!important}.u-fs-italic-m{font-style:italic!important}}@media(min-width:64rem){.u-hide--tablet{display:none!important}}@media(min-width:48.063rem){.u-hide--desk{display:none!important}}@media(max-width:30rem){.u-dn-t{display:none}.u-di-t{display:inline}.u-db-t{display:block}.u-dib-t{display:inline-block}.u-dit-t{display:inline-table}.u-dt-t{display:table}.u-dtc-t{display:table-cell}.u-dt-row-t{display:table-row}.u-dt-row-group-t{display:table-row-group}.u-dt-column-t{display:table-column}.u-dt-column-group-t{display:table-column-group}.u-fz-tiny-t{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall-t{font-size:.813rem!important;line-height:1.4!important}.u-fz-small-t{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium-t{font-size:1rem!important;line-height:1.5!important}.u-fz-large-t{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left-t{text-align:left!important}.u-ta-right-t{text-align:right!important}.u-ta-center-t{text-align:center!important}.u-ta-justify-t{text-align:justify!important}.u-fs-normal-t{font-style:normal!important}.u-fs-italic-t{font-style:italic!important}}@media(max-width:48rem){.u-dn-s{display:none}.u-di-s{display:inline}.u-db-s{display:block}.u-dib-s{display:inline-block}.u-dit-s{display:inline-table}.u-dt-s{display:table}.u-dtc-s{display:table-cell}.u-dt-row-s{display:table-row}.u-dt-row-group-s{display:table-row-group}.u-dt-column-s{display:table-column}.u-dt-column-group-s{display:table-column-group}.u-fz-tiny-s{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall-s{font-size:.813rem!important;line-height:1.4!important}.u-fz-small-s{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium-s{font-size:1rem!important;line-height:1.5!important}.u-fz-large-s{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left-s{text-align:left!important}.u-ta-right-s{text-align:right!important}.u-ta-center-s{text-align:center!important}.u-ta-justify-s{text-align:justify!important}.u-fs-normal-s{font-style:normal!important}.u-fs-italic-s{font-style:italic!important}}@media(pointer:coarse){.cozy-ui-bar-c-btn--3Vk8q.cozy-ui-bar-c-btn--round--TSd9o:after{content:'';position:absolute;top:-.875rem;right:-.875rem;bottom:-.875rem;left:-.875rem}}
|
|
5
|
+
:root{--white:#fff;--paleGrey:#f5f6f7;--silver:#d6d8da;--coolGrey:#95999d;--slateGrey:#5d6165;--charcoalGrey:#32363f;--black:#000;--overlay:rgba(50,54,63,.5);--zircon:#f5faff;--hawkesBlue:#eef5fe;--frenchPass:#c2dcff;--azure:#1fa8f1;--dodgerBlue:#297ef2;--scienceBlue:#0b61d6;--puertoRico:#0dcbcf;--grannyApple:#def7e7;--weirdGreen:#40de8e;--emerald:#35ce68;--malachite:#08b442;--seafoamGreen:#3da67e;--brightSun:#ffc644;--texasRose:#ffae5f;--mango:#ff962f;--pumpkinOrange:#ff7f1b;--blazeOrange:#fc6d00;--melon:#fd7461;--chablis:#fff2f2;--yourPink:#fdcbcb;--fuchsia:#fc4c83;--pomegranate:#f52d2d;--monza:#dd0505;--lavender:#c2adf4;--darkPeriwinkle:#6984ce;--purpley:#7f6bee;--portage:#9169f2;--lightishPurple:#b449e7;--barney:#922bc2}:root,.cozy-ui-bar-CozyTheme--normal--GgDII{--primaryColor:var(--dodgerBlue);--primaryColorDark:var(--scienceBlue);--primaryColorLight:#5c9df5;--primaryColorLighter:#4b93f7;--primaryColorLightest:#9fc4fb;--primaryTextColor:var(--charcoalGrey);--secondaryTextColor:var(--coolGrey);--primaryContrastTextColor:var(--white);--regularButtonPrimaryColor:var(--primaryColor);--regularButtonSecondaryColor:var(--primaryColor);--regularButtonActiveColor:var(--primaryColorDark);--regularButtonConstrastColor:var(--primaryContrastTextColor);--secondaryButtonPrimaryColor:var(--white);--secondaryButtonSecondaryColor:var(--silver);--secondaryButtonActiveColor:var(--silver);--secondaryButtonContrastColor:var(--black);--iconColor:currentColor;--actionMenuIconColor:var(--slateGrey)}@-webkit-keyframes cozy-ui-bar-spin--1NeSh{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes cozy-ui-bar-spin--1NeSh{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@-webkit-keyframes cozy-ui-bar-shake--8T61M{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}@keyframes cozy-ui-bar-shake--8T61M{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}.u-visuallyhidden{position:absolute!important;border:0!important;width:.063rem!important;height:.063rem!important;overflow:hidden!important;padding:0!important;white-space:nowrap!important;clip:rect(.063rem,.063rem,.063rem,.063rem)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important}.u-hide{display:none!important;visibility:hidden!important}.u-dn{display:none}.u-di{display:inline}.u-db{display:block}.u-dib{display:inline-block}.u-dit{display:inline-table}.u-dt{display:table}.u-dtc{display:table-cell}.u-dt-row{display:table-row}.u-dt-row-group{display:table-row-group}.u-dt-column{display:table-column}.u-dt-column-group{display:table-column-group}.u-error{color:var(--pomegranate)}.u-valid{color:var(--emerald)}.u-warn{color:var(--texasRose)}.u-black{color:var(--black)!important}.u-white{color:var(--white)!important}.u-paleGrey{color:var(--paleGrey)!important}.u-silver{color:var(--silver)!important}.u-coolGrey{color:var(--coolGrey)!important}.u-slateGrey{color:var(--slateGrey)!important}.u-charcoalGrey{color:var(--charcoalGrey)!important}.u-overlay{color:var(--overlay)!important}.u-zircon{color:var(--zircon)!important}.u-frenchPass{color:var(--frenchPass)!important}.u-dodgerBlue{color:var(--dodgerBlue)!important}.u-scienceBlue{color:var(--scienceBlue)!important}.u-puertoRico{color:var(--puertoRico)!important}.u-grannyApple{color:var(--grannyApple)!important}.u-emerald{color:var(--emerald)!important}.u-malachite{color:var(--malachite)!important}.u-seafoamGreen{color:var(--seafoamGreen)!important}.u-brightSun{color:var(--brightSun)!important}.u-texasRose{color:var(--texasRose)!important}.u-chablis{color:var(--chablis)!important}.u-yourPink{color:var(--yourPink)!important}.u-fuchsia{color:var(--fuchsia)!important}.u-pomegranate{color:var(--pomegranate)!important}.u-monza{color:var(--monza)!important}.u-portage{color:var(--portage)!important}.u-azure{color:var(--azure)!important}.u-melon{color:var(--melon)!important}.u-blazeOrange{color:var(--blazeOrange)!important}.u-mango{color:var(--mango)!important}.u-pumpkinOrange{color:var(--pumpkinOrange)!important}.u-lavender{color:var(--lavender)!important}.u-darkPeriwinkle{color:var(--darkPeriwinkle)!important}.u-purpley{color:var(--purpley)!important}.u-lightishPurple{color:var(--lightishPurple)!important}.u-barney{color:var(--barney)!important}.u-weirdGreen{color:var(--weirdGreen)!important}.u-primaryColor{color:var(--primaryColor)!important}.u-primaryColorLight{color:var(--primaryColorLight)!important}.u-primaryContrastTextColor{color:var(--primaryContrastTextColor)!important}.u-breakword{word-break:break-word}.u-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.u-midellipsis{display:flex;flex-wrap:nowrap}.u-midellipsis>*{display:inline-block;max-width:50%;overflow:hidden;white-space:pre}.u-midellipsis>:first-child{text-overflow:ellipsis}.u-midellipsis>:last-child{text-overflow:clip;direction:rtl}@supports(text-overflow:'[...]'){.u-midellipsis>:first-child{text-overflow:'[...]'}}.u-link:link{color:var(--dodgerBlue);text-decoration:none}.u-link:visited,.u-link:active,.u-link:hover,.u-link:focus{color:var(--scienceBlue)}.u-lh-tiny{line-height:1!important}.u-lh-xsmall{line-height:1.1!important}.u-lh-small{line-height:1.2!important}.u-lh-medium{line-height:1.3!important}.u-lh-large{line-height:1.4!important}.u-lh-xlarge{line-height:1.5!important}.u-fz-tiny{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall{font-size:.813rem!important;line-height:1.4!important}.u-fz-small{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium{font-size:1rem!important;line-height:1.5!important}.u-fz-large{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left{text-align:left!important}.u-ta-right{text-align:right!important}.u-ta-center{text-align:center!important}.u-ta-justify{text-align:justify!important}.u-fs-normal{font-style:normal!important}.u-fs-italic{font-style:italic!important}:root{--zIndex-below:-1;--zIndex-app:0;--zIndex-low:1;--zIndex-alertMobile:10;--zIndex-nav:20;--zIndex-bar:21;--zIndex-selection:30;--zIndex-popover:40;--zIndex-overlay:50;--zIndex-fileActionMenu:60;--zIndex-drawer:60;--zIndex-modal:70;--zindex-alert:80}:root{--primaryFont:Lato,sans-serif}body,body button,body input,body optgroup,body select,body textarea{font-family:var(--primaryFont)}html{font-size:100%}body{font:100%/1.5;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}html{height:100%}body{display:flex;flex-direction:column;align-items:stretch;width:100vw;height:100%;margin:0}[role=application]{display:flex;height:inherit;flex:1 1 100%;overflow-x:hidden;overflow-y:auto}html,body{background-color:var(--white);color:var(--black)}[data-input=radio],[data-input=checkbox]{display:flex}[data-input=radio] input[type=radio],[data-input=checkbox] input[type=radio],[data-input=radio] input[type=checkbox],[data-input=checkbox] input[type=checkbox]{display:none!important;visibility:hidden!important}[data-input=radio] label,[data-input=checkbox] label{position:relative;display:inline-block;width:1rem;height:1rem;padding-left:1.4rem;cursor:pointer}[data-input=radio] label:before,[data-input=checkbox] label:before,[data-input=radio] label:after,[data-input=checkbox] label:after{content:'';position:absolute;left:0;top:0;box-sizing:border-box;width:1rem;height:1rem}[data-input=radio] label:before,[data-input=checkbox] label:before{transition:box-shadow .35s cubic-bezier(0,.89,.44,1)}[data-input=radio] label:after,[data-input=checkbox] label:after{transition-duration:.2s;transition-property:opacity,transform}[data-input=radio] label:before{border-radius:50%;border:.125rem solid var(--coolGrey);box-shadow:inset 0 0 0 1rem transparent}[data-input=radio] input[type=radio]:checked+label:before{box-shadow:inset 0 0 0 .188rem var(--paleGrey),inset 0 0 0 1rem var(--dodgerBlue)}[data-input=checkbox] label:before,[data-input=checkbox] label:after{border-radius:.125rem}[data-input=checkbox] label:before{background-color:var(--white);box-shadow:inset 0 0 0 .125rem var(--silver)}[data-input=checkbox] label:before:hover{box-shadow:inset 0 0 0 .125rem var(--dodgerBlue)}[data-input=checkbox] label:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMjAnIGhlaWdodD0nMjAnIHZpZXdCb3g9JzAgMCAyMCAyMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz4KICAgIDxwYXRoIGQ9J00zIDEwLjAxOWw0LjUyMyA0LjUyMyA5LjU0MS05LjU0MScgc3Ryb2tlPScjRkZGJyBzdHJva2Utd2lkdGg9JzInIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==);background-size:contain}[data-input=checkbox][aria-checked=mixed] label:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48cGF0aCBkPSJNMy40OTcgMTBoMTMuMDA2IiBzdHJva2U9IiNGRkYiIHN0cm9rZS13aWR0aD0iMiIgLz48L3N2Zz4K);background-size:contain}[data-input=checkbox] input[type=checkbox]:checked+label:before{box-shadow:inset 0 0 0 1rem var(--dodgerBlue)}[data-input=checkbox] input[type=checkbox]:checked+label:after{opacity:1;transform:scale(1)}[data-input=checkbox] input[type=checkbox]:not(:checked)+label:after{opacity:0;transform:scale(0)}.cozy-ui-bar-c-modal--2ICub{display:flex;flex-flow:column nowrap;align-items:stretch}.cozy-ui-bar-c-modal-content--KVDws{background:linear-gradient(#fff 30%,rgba(255,255,255,0)),linear-gradient(rgba(255,255,255,0),#fff 70%) 0 100%,linear-gradient(rgba(214,216,218,.25) 0,rgba(214,216,218,.25) 25%,rgba(255,255,255,0) 26%,rgba(255,255,255,0) 100%),linear-gradient(rgba(255,255,255,0) 0,rgba(255,255,255,0) 74%,rgba(214,216,218,.25) 75%,rgba(214,216,218,.25) 100%) 0 100%;background-repeat:no-repeat;background-color:var(--white);background-size:100% 2rem,100% 2rem,100% .5rem,100% .5rem;background-attachment:local,local,scroll,scroll;background-clip:padding-box;overflow:auto;-webkit-overflow-scrolling:touch}.cozy-ui-bar-c-modal-header--XED91,.cozy-ui-bar-c-modal-header--branded--uEj-8,.cozy-ui-bar-c-modal-footer--14fzp{flex:0 0 auto}.cozy-ui-bar-c-modal-container--30qmf{position:relative;z-index:70}.cozy-ui-bar-c-modal-wrapper--17kzj{position:fixed;top:0;left:0;display:flex;flex-direction:column;align-items:center;box-sizing:border-box;width:100vw;height:100%;overflow-y:auto;padding:3rem}.cozy-ui-bar-c-modal--2ICub{position:relative;border-radius:.5rem;max-height:100%;max-width:100%;background-color:var(--white);color:var(--charcoalGrey)}.cozy-ui-bar-c-modal--xsmall--35998{width:24rem}.cozy-ui-bar-c-modal--small--3G05m{width:34rem}.cozy-ui-bar-c-modal--medium--39Q8p{width:36rem}.cozy-ui-bar-c-modal--large--NVdKg{width:40rem}.cozy-ui-bar-c-modal--xlarge--2JDmw{width:50rem}.cozy-ui-bar-c-modal--xxlarge--2GW6J{width:60rem}.cozy-ui-bar-c-modal-header--XED91,.cozy-ui-bar-c-modal-header--branded--uEj-8{margin:0 0 1rem;padding:1.687rem 3rem 0 2rem;overflow:visible;min-height:2.5rem}.cozy-ui-bar-c-modal-header--XED91 h2,.cozy-ui-bar-c-modal-header--branded--uEj-8 h2{margin:0;font-weight:700}.cozy-ui-bar-c-modal-header--branded--uEj-8{padding:1rem 3rem}.cozy-ui-bar-c-modal-header--branded--uEj-8 img{display:block;max-height:3.5rem;margin:0 auto}.cozy-ui-bar-c-modal-illu-header--2k0gQ,.cozy-ui-bar-c-modal-illu-header--ghost--3zgoT{display:flex;align-items:center;justify-content:center;margin:0 0 1rem;max-width:100%}.cozy-ui-bar-c-modal-illu-header--2k0gQ>*,.cozy-ui-bar-c-modal-illu-header--ghost--3zgoT>*{max-width:inherit}.cozy-ui-bar-c-modal-illu-header--ghost--3zgoT{position:absolute;left:0;right:0;top:1rem;margin:.5rem 0;opacity:0;max-height:2rem;transition:opacity .15s ease-in,top .15s 50ms ease-in}.cozy-ui-bar-c-modal-illu-header--ghost--3zgoT>*{max-height:inherit}.cozy-ui-bar-c-modal-illu-header--ghost--3zgoT.cozy-ui-bar-is-active--M5uQG{top:0;opacity:1;transition:opacity .15s 50ms ease-in,top .15s ease-in}.cozy-ui-bar-c-modal--small-spacing--2NmIi .cozy-ui-bar-c-modal-header--XED91{padding:1.187rem 3rem 0 1.5rem}.cozy-ui-bar-c-modal--large-spacing--oIddB .cozy-ui-bar-c-modal-header--XED91{padding:2.687rem 3rem 0}.cozy-ui-bar-c-modal-app--1Vluy{display:flex;align-items:center;font-size:1.25rem;color:var(--charcoalGrey)}.cozy-ui-bar-c-app-editor--2Ha3Y{font-weight:400}.cozy-ui-bar-c-modal-app-icon--2Pyc-{height:1.125rem;margin-right:.5rem}.cozy-ui-bar-c-modal-content-fixed--2C_-7{border-bottom:.063rem solid var(--silver);flex:0 0 auto;padding:0 2rem}.cozy-ui-bar-c-modal--small-spacing--2NmIi .cozy-ui-bar-c-modal-content-fixed--2C_-7{padding:0 1.5rem}.cozy-ui-bar-c-modal--large-spacing--oIddB .cozy-ui-bar-c-modal-content-fixed--2C_-7{padding:0 3rem}.cozy-ui-bar-c-modal-content--KVDws{padding:0 2rem}.cozy-ui-bar-c-modal-content--KVDws:last-child{padding-bottom:2rem;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.cozy-ui-bar-c-modal--small-spacing--2NmIi .cozy-ui-bar-c-modal-content--KVDws{padding:0 1.5rem}.cozy-ui-bar-c-modal--small-spacing--2NmIi .cozy-ui-bar-c-modal-content--KVDws:last-child{padding-bottom:1.5rem}.cozy-ui-bar-c-modal--large-spacing--oIddB .cozy-ui-bar-c-modal-content--KVDws{padding:0 3rem}.cozy-ui-bar-c-modal--large-spacing--oIddB .cozy-ui-bar-c-modal-content--KVDws:last-child{padding-bottom:3rem}.cozy-ui-bar-c-modal-footer--14fzp{padding:1rem 1.25rem 1.25rem}.cozy-ui-bar-c-modal-footer--button--3yPje button{margin-bottom:.25rem}.cozy-ui-bar-c-modal-section--2tQ5k{border-top:.063rem solid var(--silver)}.cozy-ui-bar-c-modal-close--HM_QO{box-sizing:border-box;position:absolute;top:1.5rem;right:1.5rem;margin:0;padding:.5rem;background-color:transparent;border:0;cursor:pointer;display:block;width:2.5rem;height:2.5rem;z-index:1}.cozy-ui-bar-c-modal--small-spacing--2NmIi .cozy-ui-bar-c-modal-close--HM_QO{top:1rem;right:1rem}.cozy-ui-bar-c-modal--closable--2sytJ .cozy-ui-bar-c-modal-header--XED91{padding-right:4.5rem}.cozy-ui-bar-c-modal--large-spacing--oIddB .cozy-ui-bar-c-modal-close--HM_QO{top:2.5rem;right:2.5rem}.cozy-ui-bar-c-modal-close--notitle--2a-O4{top:.375rem;right:.375rem}.cozy-ui-bar-c-modal--overflowHidden--JNfIY{overflow:hidden}.cozy-ui-bar-c-modal-back-button--aTdxE{top:.375rem;left:.375rem;color:var(--coolGrey)}.cozy-ui-bar-c-modal-close--notitle--2a-O4+.cozy-ui-bar-c-modal-content--KVDws{margin-top:3rem}@media(max-width:63.938rem){.u-hide--mob{display:none!important}.u-dn-m{display:none}.u-di-m{display:inline}.u-db-m{display:block}.u-dib-m{display:inline-block}.u-dit-m{display:inline-table}.u-dt-m{display:table}.u-dtc-m{display:table-cell}.u-dt-row-m{display:table-row}.u-dt-row-group-m{display:table-row-group}.u-dt-column-m{display:table-column}.u-dt-column-group-m{display:table-column-group}.u-fz-tiny-m{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall-m{font-size:.813rem!important;line-height:1.4!important}.u-fz-small-m{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium-m{font-size:1rem!important;line-height:1.5!important}.u-fz-large-m{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left-m{text-align:left!important}.u-ta-right-m{text-align:right!important}.u-ta-center-m{text-align:center!important}.u-ta-justify-m{text-align:justify!important}.u-fs-normal-m{font-style:normal!important}.u-fs-italic-m{font-style:italic!important}html,body{display:block;height:auto}[role=application]{overflow:visible}}@media(min-width:64rem){.u-hide--tablet{display:none!important}}@media(min-width:48.063rem){.u-hide--desk{display:none!important}}@media(max-width:30rem){.u-dn-t{display:none}.u-di-t{display:inline}.u-db-t{display:block}.u-dib-t{display:inline-block}.u-dit-t{display:inline-table}.u-dt-t{display:table}.u-dtc-t{display:table-cell}.u-dt-row-t{display:table-row}.u-dt-row-group-t{display:table-row-group}.u-dt-column-t{display:table-column}.u-dt-column-group-t{display:table-column-group}.u-fz-tiny-t{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall-t{font-size:.813rem!important;line-height:1.4!important}.u-fz-small-t{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium-t{font-size:1rem!important;line-height:1.5!important}.u-fz-large-t{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left-t{text-align:left!important}.u-ta-right-t{text-align:right!important}.u-ta-center-t{text-align:center!important}.u-ta-justify-t{text-align:justify!important}.u-fs-normal-t{font-style:normal!important}.u-fs-italic-t{font-style:italic!important}.cozy-ui-bar-c-modal-wrapper--17kzj{padding:.5rem}.cozy-ui-bar-c-modal-header--XED91,.cozy-ui-bar-c-modal-header--branded--uEj-8{margin-bottom:.5rem;padding:1.187rem 2rem 0 1.5rem}.cozy-ui-bar-c-modal-header--XED91 h2,.cozy-ui-bar-c-modal-header--branded--uEj-8 h2{font-size:1.25rem}.cozy-ui-bar-c-modal--small-spacing--2NmIi .cozy-ui-bar-c-modal-header--XED91{padding:.687rem 2rem 0 1rem}.cozy-ui-bar-c-modal--small-spacing--2NmIi .cozy-ui-bar-c-modal-content-fixed--2C_-7{padding:0 1rem}.cozy-ui-bar-c-modal--large-spacing--oIddB .cozy-ui-bar-c-modal-content-fixed--2C_-7{padding:0 2rem}.cozy-ui-bar-c-modal-content--KVDws{padding:0 1.5rem}.cozy-ui-bar-c-modal-content--KVDws:last-child{padding-bottom:1.5rem}.cozy-ui-bar-c-modal--small-spacing--2NmIi .cozy-ui-bar-c-modal-content--KVDws{padding:0 1rem}.cozy-ui-bar-c-modal--small-spacing--2NmIi .cozy-ui-bar-c-modal-content--KVDws:last-child{padding-bottom:1rem}.cozy-ui-bar-c-modal-close--HM_QO{top:.813rem;right:1rem}.cozy-ui-bar-c-modal--small-spacing--2NmIi .cozy-ui-bar-c-modal-close--HM_QO{top:.313rem;right:.5rem}}@media(max-width:48rem){.u-dn-s{display:none}.u-di-s{display:inline}.u-db-s{display:block}.u-dib-s{display:inline-block}.u-dit-s{display:inline-table}.u-dt-s{display:table}.u-dtc-s{display:table-cell}.u-dt-row-s{display:table-row}.u-dt-row-group-s{display:table-row-group}.u-dt-column-s{display:table-column}.u-dt-column-group-s{display:table-column-group}.u-fz-tiny-s{font-size:.75rem!important;line-height:1.3!important}.u-fz-xsmall-s{font-size:.813rem!important;line-height:1.4!important}.u-fz-small-s{font-size:.875rem!important;line-height:1.4!important}.u-fz-medium-s{font-size:1rem!important;line-height:1.5!important}.u-fz-large-s{font-size:1.125rem!important;line-height:1.5!important}.u-ta-left-s{text-align:left!important}.u-ta-right-s{text-align:right!important}.u-ta-center-s{text-align:center!important}.u-ta-justify-s{text-align:justify!important}.u-fs-normal-s{font-style:normal!important}.u-fs-italic-s{font-style:italic!important}.cozy-ui-bar-c-modal-wrapper--17kzj{justify-content:center;padding:1.5rem}.cozy-ui-bar-c-modal-wrapper--17kzj.cozy-ui-bar-c-modal-wrapper--fullscreen--12m40{padding:0}.cozy-ui-bar-c-modal--2ICub.cozy-ui-bar-c-modal--fullscreen--1k9gf{height:100%;width:100%;border-radius:0;box-sizing:border-box}.cozy-ui-bar-c-modal--large-spacing--oIddB .cozy-ui-bar-c-modal-header--XED91{padding:1.687rem 2rem 0}.cozy-ui-bar-c-modal--large-spacing--oIddB .cozy-ui-bar-c-modal-content--KVDws{padding:0 2rem}.cozy-ui-bar-c-modal--large-spacing--oIddB .cozy-ui-bar-c-modal-content--KVDws:last-child{padding-bottom:2rem}.cozy-ui-bar-c-modal-footer--button--3yPje button{min-width:calc(50% - .5rem)}.cozy-ui-bar-c-modal--large-spacing--oIddB .cozy-ui-bar-c-modal-close--HM_QO{top:1.313rem;right:1.5rem}.cozy-ui-bar-c-modal-back-button--aTdxE{top:0;left:0}}@media(max-width:25rem){.cozy-ui-bar-c-modal--xsmall--35998{width:100%}}@media(max-width:35rem){.cozy-ui-bar-c-modal--small--3G05m{width:100%}}@media(max-width:39rem){.cozy-ui-bar-c-modal--medium--39Q8p{width:100%}}@media(max-width:46rem){.cozy-ui-bar-c-modal--large--NVdKg{width:100%}}@media(max-width:56rem){.cozy-ui-bar-c-modal--xlarge--2JDmw{width:100%}}@media(max-width:66rem){.cozy-ui-bar-c-modal--xxlarge--2GW6J{width:100%}}
|
|
6
|
+
:root{--zIndex-below:-1;--zIndex-app:0;--zIndex-low:1;--zIndex-alertMobile:10;--zIndex-nav:20;--zIndex-bar:21;--zIndex-selection:30;--zIndex-popover:40;--zIndex-overlay:50;--zIndex-fileActionMenu:60;--zIndex-drawer:60;--zIndex-modal:70;--zindex-alert:80}.cozy-ui-bar-c-overlay--3097A{z-index:50;position:fixed;top:0;left:0;height:100%;width:100%;background:var(--overlay);visibility:visible;transition:opacity .3s,visibility 0s ease-out}
|
|
7
|
+
:root{--white:#fff;--paleGrey:#f5f6f7;--silver:#d6d8da;--coolGrey:#95999d;--slateGrey:#5d6165;--charcoalGrey:#32363f;--black:#000;--overlay:rgba(50,54,63,.5);--zircon:#f5faff;--hawkesBlue:#eef5fe;--frenchPass:#c2dcff;--azure:#1fa8f1;--dodgerBlue:#297ef2;--scienceBlue:#0b61d6;--puertoRico:#0dcbcf;--grannyApple:#def7e7;--weirdGreen:#40de8e;--emerald:#35ce68;--malachite:#08b442;--seafoamGreen:#3da67e;--brightSun:#ffc644;--texasRose:#ffae5f;--mango:#ff962f;--pumpkinOrange:#ff7f1b;--blazeOrange:#fc6d00;--melon:#fd7461;--chablis:#fff2f2;--yourPink:#fdcbcb;--fuchsia:#fc4c83;--pomegranate:#f52d2d;--monza:#dd0505;--lavender:#c2adf4;--darkPeriwinkle:#6984ce;--purpley:#7f6bee;--portage:#9169f2;--lightishPurple:#b449e7;--barney:#922bc2}:root,.cozy-ui-bar-CozyTheme--normal--1OuNS{--primaryColor:var(--dodgerBlue);--primaryColorDark:var(--scienceBlue);--primaryColorLight:#5c9df5;--primaryColorLighter:#4b93f7;--primaryColorLightest:#9fc4fb;--primaryTextColor:var(--charcoalGrey);--secondaryTextColor:var(--coolGrey);--primaryContrastTextColor:var(--white);--regularButtonPrimaryColor:var(--primaryColor);--regularButtonSecondaryColor:var(--primaryColor);--regularButtonActiveColor:var(--primaryColorDark);--regularButtonConstrastColor:var(--primaryContrastTextColor);--secondaryButtonPrimaryColor:var(--white);--secondaryButtonSecondaryColor:var(--silver);--secondaryButtonActiveColor:var(--silver);--secondaryButtonContrastColor:var(--black);--iconColor:currentColor;--actionMenuIconColor:var(--slateGrey)}@-webkit-keyframes cozy-ui-bar-spin--3DZqI{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes cozy-ui-bar-spin--3DZqI{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}@-webkit-keyframes cozy-ui-bar-shake--1gzL2{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}@keyframes cozy-ui-bar-shake--1gzL2{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}.cozy-ui-bar-c-spinner--3vDLT{display:inline-block;margin:0 .5rem}.cozy-ui-bar-c-spinner--3vDLT:before{content:''}.cozy-ui-bar-c-spinner--3vDLT p{margin-top:.938rem;color:var(--coolGrey);line-height:1.5}.cozy-ui-bar-c-spinner--middle--1Nmj_{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);text-align:center}.cozy-ui-bar-c-spinner--middle--1Nmj_:before{display:block;margin:0 auto}.cozy-ui-bar-c-spinner--nomargin--2GQe1{margin:0}
|
|
8
|
+
|
|
9
|
+
/*# sourceMappingURL=cozy-bar.min.css.map*/
|