vuetiwatch 0.2.0 → 0.2.2
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/README.md +25 -202
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/plugin.d.ts.map +1 -1
- package/dist/plugin.js +19 -3
- package/dist/plugin.js.map +1 -1
- package/dist/styles/aurora.css +1 -1
- package/dist/styles/aurora.min.css +1 -1
- package/dist/styles/brutalist.css +1 -1
- package/dist/styles/brutalist.min.css +1 -1
- package/dist/styles/calm.css +1 -1
- package/dist/styles/calm.min.css +1 -1
- package/dist/styles/candy.css +1 -4
- package/dist/styles/candy.min.css +1 -1
- package/dist/styles/clay.css +1 -1
- package/dist/styles/clay.min.css +1 -1
- package/dist/styles/core.css +44 -2
- package/dist/styles/core.min.css +1 -1
- package/dist/styles/darkGlass.css +1 -1
- package/dist/styles/darkGlass.min.css +1 -1
- package/dist/styles/liquidGlass.css +10 -1
- package/dist/styles/liquidGlass.min.css +1 -1
- package/dist/styles/lux.css +1 -1
- package/dist/styles/lux.min.css +1 -1
- package/dist/styles/neon.css +1 -1
- package/dist/styles/neon.min.css +1 -1
- package/dist/styles/slate.css +1 -1
- package/dist/styles/slate.min.css +1 -1
- package/dist/styles/soft.css +3 -2
- package/dist/styles/soft.min.css +1 -1
- package/dist/styles.css +66 -17
- package/dist/styles.min.css +1 -1
- package/dist/themes/atlas.d.ts +35 -0
- package/dist/themes/atlas.d.ts.map +1 -1
- package/dist/themes/atlas.js +75 -1
- package/dist/themes/atlas.js.map +1 -1
- package/dist/themes/atlasDark.d.ts.map +1 -1
- package/dist/themes/atlasDark.js +5 -0
- package/dist/themes/atlasDark.js.map +1 -1
- package/dist/themes/atlasSepia.d.ts.map +1 -1
- package/dist/themes/atlasSepia.js +5 -0
- package/dist/themes/atlasSepia.js.map +1 -1
- package/dist/themes/aurora.d.ts.map +1 -1
- package/dist/themes/aurora.js +20 -1
- package/dist/themes/aurora.js.map +1 -1
- package/dist/themes/brutalist.d.ts.map +1 -1
- package/dist/themes/brutalist.js +63 -5
- package/dist/themes/brutalist.js.map +1 -1
- package/dist/themes/calm.d.ts.map +1 -1
- package/dist/themes/calm.js +22 -1
- package/dist/themes/calm.js.map +1 -1
- package/dist/themes/candy.d.ts.map +1 -1
- package/dist/themes/candy.js +23 -1
- package/dist/themes/candy.js.map +1 -1
- package/dist/themes/clay.d.ts.map +1 -1
- package/dist/themes/clay.js +14 -1
- package/dist/themes/clay.js.map +1 -1
- package/dist/themes/darkGlass.d.ts.map +1 -1
- package/dist/themes/darkGlass.js +13 -1
- package/dist/themes/darkGlass.js.map +1 -1
- package/dist/themes/graphite.d.ts.map +1 -1
- package/dist/themes/graphite.js +42 -7
- package/dist/themes/graphite.js.map +1 -1
- package/dist/themes/liquidGlass.d.ts.map +1 -1
- package/dist/themes/liquidGlass.js +41 -5
- package/dist/themes/liquidGlass.js.map +1 -1
- package/dist/themes/lux.d.ts.map +1 -1
- package/dist/themes/lux.js +48 -6
- package/dist/themes/lux.js.map +1 -1
- package/dist/themes/morph.d.ts.map +1 -1
- package/dist/themes/morph.js +21 -1
- package/dist/themes/morph.js.map +1 -1
- package/dist/themes/neon.d.ts.map +1 -1
- package/dist/themes/neon.js +35 -1
- package/dist/themes/neon.js.map +1 -1
- package/dist/themes/paper.d.ts.map +1 -1
- package/dist/themes/paper.js +38 -1
- package/dist/themes/paper.js.map +1 -1
- package/dist/themes/sketchy.d.ts.map +1 -1
- package/dist/themes/sketchy.js +27 -1
- package/dist/themes/sketchy.js.map +1 -1
- package/dist/themes/slate.d.ts.map +1 -1
- package/dist/themes/slate.js +42 -6
- package/dist/themes/slate.js.map +1 -1
- package/dist/themes/soft.d.ts.map +1 -1
- package/dist/themes/soft.js +49 -8
- package/dist/themes/soft.js.map +1 -1
- package/dist/util/defaults.d.ts +35 -0
- package/dist/util/defaults.d.ts.map +1 -1
- package/dist/util/defaults.js +51 -0
- package/dist/util/defaults.js.map +1 -1
- package/package.json +2 -1
- package/src/index.ts +2 -2
- package/src/plugin.ts +20 -3
- package/src/styles/core.css +152 -3
- package/src/styles/themes/aurora.css +1 -0
- package/src/styles/themes/brutalist.css +1 -0
- package/src/styles/themes/calm.css +1 -0
- package/src/styles/themes/candy.css +9 -4
- package/src/styles/themes/clay.css +1 -0
- package/src/styles/themes/darkGlass.css +1 -0
- package/src/styles/themes/liquidGlass.css +41 -0
- package/src/styles/themes/lux.css +1 -0
- package/src/styles/themes/neon.css +1 -0
- package/src/styles/themes/slate.css +1 -0
- package/src/styles/themes/soft.css +10 -0
- package/src/themes/atlas.ts +76 -1
- package/src/themes/atlasDark.ts +5 -0
- package/src/themes/atlasSepia.ts +5 -0
- package/src/themes/aurora.ts +21 -1
- package/src/themes/brutalist.ts +65 -5
- package/src/themes/calm.ts +23 -1
- package/src/themes/candy.ts +24 -1
- package/src/themes/clay.ts +15 -1
- package/src/themes/darkGlass.ts +14 -1
- package/src/themes/graphite.ts +44 -7
- package/src/themes/liquidGlass.ts +42 -5
- package/src/themes/lux.ts +50 -6
- package/src/themes/morph.ts +22 -1
- package/src/themes/neon.ts +37 -1
- package/src/themes/paper.ts +40 -1
- package/src/themes/sketchy.ts +29 -1
- package/src/themes/slate.ts +43 -6
- package/src/themes/soft.ts +50 -8
- package/src/util/defaults.ts +84 -0
package/dist/styles.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn--icon:not([class*=rounded-],.v-btn-group *,.v-pagination *){border-radius:var(--v-vw-radius-icon-btn,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn:not(.v-btn--icon,.v-btn--rounded,[class*=rounded-],.v-btn-group *,.v-toolbar-items *,.v-tabs *){border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list,.v-sheet,.v-banner,.v-table,.v-skeleton-loader):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border-radius:var(--v-vw-radius-lg,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list,.v-sheet,.v-banner,.v-table):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border:var(--v-vw-panel-border,revert-layer);box-shadow:var(--v-vw-panel-shadow,revert-layer);background-color:var(--v-vw-panel-fill,revert-layer);background-image:var(--v-vw-panel-image,revert-layer);backdrop-filter:var(--v-vw-panel-filter,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list--border,.v-sheet--border):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border-width:var(--v-vw-border-width,thin)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn-group,.v-btn-toggle):not([class*=rounded-]){border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-outlined:not([class*=bg-]){background-color:var(--v-vw-outlined-fill,rgb(var(--v-theme-surface)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-badge__badge{border-radius:var(--v-vw-radius-chip,9999px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-avatar:not([class*=rounded-]){border-radius:var(--v-vw-radius-avatar,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-timeline-divider__dot,.v-timeline-divider__inner-dot){border-radius:var(--v-vw-radius-dot,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-progress-linear:not(.v-progress-linear--rounded,[class*=rounded-]){border-radius:var(--v-vw-radius,0)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-switch--inset-square .v-switch__track{border-radius:var(--v-vw-radius,6px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-switch--inset-square .v-switch__thumb{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.rounded-s-0,.rounded-e-0,.rounded-t-0,.rounded-b-0){--vw-attached:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn:is(.rounded-s-0,.rounded-e-0,.rounded-t-0,.rounded-b-0){--vw-attached:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-s-0{border-start-end-radius:var(--vw-attached);border-end-end-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-e-0{border-start-start-radius:var(--vw-attached);border-end-start-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-t-0{border-end-end-radius:var(--vw-attached);border-end-start-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-b-0{border-start-start-radius:var(--vw-attached);border-start-end-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn-group:not([class*=rounded-]){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-pagination .v-btn{border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-card:not([class*=rounded-]),.v-table),:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-expansion-panels{border-radius:var(--v-vw-radius-lg,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-alert:not([class*=rounded-]),.v-field:not([class*=rounded-]),.v-list-item:not([class*=rounded-]),.v-snackbar__wrapper,.v-menu>.v-overlay__content,.v-tooltip>.v-overlay__content,.v-overlay__content>:is(.v-list,.v-sheet)){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-field:is(.v-field--variant-filled,.v-field--variant-underlined):not([class*=rounded-]){border-radius:var(--v-vw-radius,4px) var(--v-vw-radius,4px) 0 0}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-chip:not([class*=rounded-]){border-radius:var(--v-vw-radius-chip,9999px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-track{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-thumb__surface{border-radius:var(--v-vw-radius-thumb,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-thumb__label{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-pagination .v-pagination__item--is-active .v-btn__overlay{background:var(--v-vw-pagination-active-color,currentColor);opacity:var(--v-vw-pagination-active-opacity,var(--v-activated-opacity))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__content>.v-card:is(.v-card--variant-outlined,.v-card--variant-text,.v-card--variant-plain,.v-card--variant-tonal):not([class*=bg-]){background-color:rgb(var(--v-theme-surface))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card>:is(.v-list,.v-table):not([class*=bg-]){background:0 0}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn--variant-outlined,.v-card--variant-outlined,.v-alert--variant-outlined,.v-chip--variant-outlined,.v-list--border,.v-sheet--border){border-width:var(--v-vw-border-width,thin)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-outlined:not([class*=border-]){border-color:rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-field__outline{--v-field-border-width:var(--v-vw-border-width,1px);--v-field-border-opacity:var(--v-vw-field-border-opacity,.38)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn{font-weight:var(--v-vw-btn-weight,500);letter-spacing:var(--v-vw-btn-tracking,.00714286em);text-transform:var(--v-vw-btn-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-menu,.v-dialog,.v-tooltip)>.v-overlay__content{border:var(--v-vw-overlay-border,none);box-shadow:var(--v-vw-overlay-shadow,revert-layer)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-chip-group .v-slide-group__content{padding:var(--v-vw-relief-inset,0)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-skeleton-loader__avatar,.v-skeleton-loader__button,.v-skeleton-loader__chip,.v-skeleton-loader__divider,.v-skeleton-loader__heading,.v-skeleton-loader__image,.v-skeleton-loader__ossein,.v-skeleton-loader__text){background:rgba(var(--v-theme-on-surface), var(--v-vw-skeleton-opacity,clamp(.08, var(--v-border-opacity), .2)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-skeleton-loader__button,.v-skeleton-loader__chip,.v-skeleton-loader__heading,.v-skeleton-loader__image,.v-skeleton-loader__ossein,.v-skeleton-loader__text){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-skeleton-loader__avatar{border-radius:var(--v-vw-radius-avatar,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-date-picker-controls .v-btn{letter-spacing:normal;text-transform:none;--v-btn-height:32px;min-width:0;padding-inline:8px;font-size:.875rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-date-picker-controls{height:auto;min-height:var(--v-date-picker-controls-height,56px);flex-wrap:wrap;row-gap:4px;padding-inline:8px}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-timeline-divider__before,.v-timeline-divider__after){background:var(--v-vw-timeline-line,rgba(var(--v-border-color), var(--v-vw-timeline-line-opacity,var(--v-border-opacity))))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application .v-timeline--vertical :is(.v-timeline-divider__before,.v-timeline-divider__after){width:var(--v-vw-timeline-line-width,var(--v-timeline-line-thickness))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application .v-timeline--horizontal :is(.v-timeline-divider__before,.v-timeline-divider__after){height:var(--v-vw-timeline-line-width,var(--v-timeline-line-thickness))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-tab__slider{height:var(--v-vw-tab-slider-height,2px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-tab{font-size:var(--v-vw-tab-size,.875rem)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-avatar[class*=--size-]:not(:has(img,.v-img,.v-icon)){font-size:calc(var(--v-avatar-height) * var(--v-vw-avatar-ratio,.4))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-stepper.v-sheet:not(.v-stepper--flat,[class*=elevation-]){box-shadow:var(--v-vw-panel-shadow,none);border:var(--v-vw-panel-border,var(--v-vw-border-width,thin) solid rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity))))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-stepper .v-stepper-header{box-shadow:none;border-block-end:var(--v-vw-border-width,thin) solid rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper-item){padding:1rem 1.25rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper-window){margin:1.25rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper .v-stepper-actions){padding:0 1.25rem 1rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-table,.v-data-table,.v-pagination){font-variant-numeric:var(--v-vw-numeric,normal)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-table thead th,.v-data-table__th){font-weight:var(--v-vw-th-weight,revert-layer);letter-spacing:var(--v-vw-th-tracking,revert-layer);text-transform:var(--v-vw-th-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-list-item.v-list-item--active{border-inline-start:var(--v-vw-list-bar,0) solid var(--v-vw-list-bar-color,currentColor)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-chip,.v-list-item,.v-card,.v-tab){transition:transform var(--v-vw-motion-duration,.16s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-chip--link,.v-list-item--link):not(.v-btn--disabled):active{transform:translateY(var(--v-vw-press-shift,0px)) scale(var(--v-vw-press-scale,.98))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-card--link):hover{transform:translateY(calc(-1 * var(--v-vw-hover-lift,0px)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-selection-control--dirty .v-selection-control__input>.v-icon,.v-btn--active>.v-btn__content>.v-icon,.v-rating__item--full .v-icon){animation:vw-pop var(--v-vw-pop-duration,.22s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-tab,.v-chip,.v-list-item,.v-selection-control__input):focus-visible{outline:var(--v-vw-focus-ring,2px solid rgb(var(--v-theme-primary)));outline-offset:var(--v-vw-focus-offset,2px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(h1,h2,h3,h4,h5,h6,[class*=-display-],[class*=-headline-],[class*=-title-large]){font-family:var(--v-font-heading,var(--v-font-body,inherit));font-weight:var(--v-vw-heading-weight,revert-layer);letter-spacing:var(--v-vw-heading-tracking,revert-layer);text-transform:var(--v-vw-heading-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) a:not([class]){color:rgb(var(--v-theme-primary));-webkit-text-decoration:var(--v-vw-link-decoration,underline);-webkit-text-decoration:var(--v-vw-link-decoration,underline);text-decoration:var(--v-vw-link-decoration,underline);text-underline-offset:.15em}@keyframes vw-pop{0%{transform:scale(1)}45%{transform:scale(var(--v-vw-pop-scale,1.18))}to{transform:scale(1)}}:is([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn-group,.v-toolbar-items) .v-btn.v-btn{box-shadow:none}@media (prefers-reduced-motion:reduce){:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon){--v-vw-motion-duration:1ms;--v-vw-pop-duration:1ms;--v-vw-press-scale:1;--v-vw-press-shift:0px;--v-vw-hover-lift:0px;--v-vw-theme-transition:0s}}@keyframes vw-theme-wipe{0%{clip-path:circle(0% at var(--vw-origin-x,50%) var(--vw-origin-y,50%))}to{clip-path:circle(150% at var(--vw-origin-x,50%) var(--vw-origin-y,50%))}}html[data-vuetiwatch]::view-transition-old(root){animation:none}html[data-vuetiwatch]::view-transition-new(root){animation:vw-theme-wipe var(--v-vw-theme-transition,.42s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}.v-theme--paper :is(.v-card,.v-sheet,.v-list,.v-table,.v-expansion-panels){box-shadow:none}.v-theme--paper .v-card.v-card--variant-elevated{border:var(--v-vw-border-width,1px) solid rgba(var(--v-border-color), var(--v-border-opacity));box-shadow:none}.v-theme--paper .v-switch__track{border:var(--v-vw-border-width,1px) solid rgba(var(--v-border-color), .3)}.v-theme--paper :is(.v-table thead th,.v-data-table__th){border-bottom:3px double rgba(var(--v-border-color), .45)}.v-theme--slate .v-card.v-card--variant-outlined{box-shadow:0 1px 2px rgba(var(--v-shadow-color), .05)}.v-theme--slate :is(.v-table thead th,.v-data-table__th){background-color:rgb(var(--v-theme-surface-light));font-weight:600}.v-theme--slate :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:0 8px 24px rgba(var(--v-shadow-color), .16)}.v-theme--slate .v-app-bar{box-shadow:none}.v-theme--graphite{--vw-graphite-label:"JetBrains Mono", ui-monospace, "SF Mono", "Menlo", monospace}.v-theme--graphite :is(.v-card.v-card,.v-btn.v-btn,.v-chip.v-chip,.v-alert.v-alert,.v-table.v-table,.v-expansion-panels.v-expansion-panels,.v-list.v-list,.v-sheet.v-sheet){box-shadow:none}.v-theme--graphite .v-card.v-card--variant-elevated{border:1px solid rgba(var(--v-border-color), var(--v-border-opacity))}.v-theme--graphite :is(.v-table thead th,.v-data-table__th){font-family:var(--vw-graphite-label);color:rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));border-bottom:1px solid rgba(var(--v-border-color), .2);font-size:.6875rem}.v-theme--graphite :is(.v-chip.v-chip--size-x-small,.v-chip.v-chip--size-small,.v-breadcrumbs-item){font-family:var(--vw-graphite-label);letter-spacing:.02em;font-size:.6875rem}.v-theme--graphite .v-breadcrumbs-divider{font-family:var(--vw-graphite-label);opacity:.5}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-navigation-drawer{background-color:rgb(var(--v-theme-surface-light))}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-table thead th,.v-data-table__th){background-color:rgb(var(--v-theme-surface-light));border-bottom:1px solid rgba(var(--v-border-color), calc(var(--v-border-opacity) * 1.6))}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-card--variant-outlined>.v-card-item:not(:last-child){border-block-end:1px solid rgba(var(--v-border-color), var(--v-border-opacity));padding-block-end:12px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-card--variant-outlined>.v-card-item+:is(.v-card-text,.v-card-actions){padding-top:12px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-table,.v-data-table),:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-list-item-title,.v-list-item-subtitle){font-size:.875rem}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-card-title{letter-spacing:0;font-size:1rem;font-weight:600}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-date-picker,.v-picker){width:306px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-time-picker{min-width:296px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-date-picker-month__day{height:32px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-date-picker-month,.v-date-picker-years,.v-date-picker-months){font-size:.8125rem}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-time-picker-clock{max-width:208px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-date-picker-controls{padding-block:4px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-otp-input{padding-block:0}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-otp-input__content{max-width:240px;padding:0}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-otp-input .v-field{height:40px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-expansion-panel-title{min-height:44px;padding-block:10px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-expansion-panel-title--active{min-height:52px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-empty-state{min-height:0;padding-block:24px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-alert-title{font-size:1rem;line-height:1.5}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-alert .v-alert__content{font-size:.875rem}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-alert .v-alert__prepend .v-icon{font-size:20px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-breadcrumbs{font-size:.875rem}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-table tbody td,.v-data-table__td){border-color:rgba(var(--v-border-color), calc(var(--v-border-opacity) * .7))}.v-theme--calm :is(.v-card,.v-sheet,.v-table,.v-list,.v-expansion-panels){box-shadow:none}.v-theme--calm :is(.v-menu,.v-dialog)>.v-overlay__content{border:var(--v-vw-border-width) solid rgba(var(--v-border-color), .09);box-shadow:0 16px 48px #3a3a360f}.v-theme--calm :is(.v-table thead th,.v-data-table__th){border-bottom:var(--v-vw-border-width) solid rgba(var(--v-border-color), .09);font-weight:500}.v-theme--calm .v-card-text{line-height:1.7}.v-theme--lux :is(.v-card,.v-sheet,.v-table,.v-list,.v-expansion-panels){box-shadow:none}.v-theme--lux :is(.v-toolbar-title,.v-card-title,.v-list-subheader){letter-spacing:.16em;text-transform:uppercase;font-weight:400}.v-theme--lux :is(.v-table thead th,.v-data-table__th){letter-spacing:.16em;text-transform:uppercase;font-size:.75rem;font-weight:400}.v-theme--lux :is(.v-menu,.v-dialog)>.v-overlay__content{border:var(--v-vw-border-width) solid rgba(var(--v-border-color), .14);box-shadow:0 24px 64px #00000014}.v-theme--soft .v-card.v-card--variant-elevated{box-shadow:0 2px 4px rgba(var(--v-theme-primary), .06), 0 12px 28px rgba(var(--v-theme-primary), .1);transition:box-shadow var(--v-vw-motion-duration) var(--v-vw-motion-ease)}.v-theme--soft .v-card.v-card--variant-elevated.v-card--link:hover{box-shadow:0 4px 8px rgba(var(--v-theme-primary), .08), 0 20px 40px rgba(var(--v-theme-primary), .14)}.v-theme--soft .v-btn.v-btn--variant-flat:not(.v-btn--disabled){box-shadow:0 2px 8px rgba(var(--v-theme-primary), .24)}.v-theme--soft :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:0 16px 48px rgba(var(--v-theme-primary), .18)}.v-theme--soft .v-field.v-field--variant-solo-filled{box-shadow:0 1px 2px rgba(var(--v-theme-primary), .08), 0 4px 12px rgba(var(--v-theme-primary), .06)}.v-theme--soft .v-slider-thumb__surface{box-shadow:0 2px 8px rgba(var(--v-theme-primary), .35)}.v-theme--soft .v-switch__thumb{box-shadow:0 2px 6px rgba(var(--v-theme-primary), .3)}.v-theme--soft .v-tabs--inset .v-tab__slider{box-shadow:0 2px 10px rgba(var(--v-theme-primary), .2)}.v-theme--candy{--vw-candy-pad:inset 0 2px 0 #ffffff8c, inset 0 -3px 0 rgba(var(--v-theme-on-surface), .08);--vw-candy-rest:0 3px 6px rgba(var(--v-shadow-color), .16), 0 10px 22px rgba(var(--v-shadow-color), .13);--vw-candy-squash:0 1px 3px rgba(var(--v-shadow-color), .2), 0 3px 9px rgba(var(--v-shadow-color), .12);--v-vw-relief-inset:4px}.v-theme--candy .v-btn.v-btn:is(.v-btn--variant-flat,.v-btn--variant-elevated):not(.v-btn--disabled){box-shadow:var(--vw-candy-pad), var(--vw-candy-rest);transition:box-shadow var(--v-vw-motion-duration) var(--v-vw-motion-ease)}.v-theme--candy .v-btn.v-btn:is(.v-btn--variant-flat,.v-btn--variant-elevated):not(.v-btn--disabled):active{box-shadow:var(--vw-candy-pad), var(--vw-candy-squash)}.v-theme--candy .v-chip.v-chip:not(.v-chip--variant-text,.v-chip--variant-plain){box-shadow:inset 0 1px 0 #ffffff80, 0 2px 5px rgba(var(--v-shadow-color), .14)}.v-theme--candy :is(.v-card.v-card--variant-elevated,.v-alert.v-alert--variant-tonal){box-shadow:inset 0 2px 0 #fff9, 0 6px 16px rgba(var(--v-shadow-color), .12), 0 20px 44px rgba(var(--v-shadow-color), .1)}.v-theme--candy .v-card.v-card--variant-elevated{transition:box-shadow var(--v-vw-motion-duration) var(--v-vw-motion-ease)}.v-theme--candy .v-card.v-card--variant-elevated.v-card--link:hover{box-shadow:inset 0 2px 0 #fff9, 0 10px 22px rgba(var(--v-shadow-color), .14), 0 28px 60px rgba(var(--v-shadow-color), .12)}.v-theme--candy .v-field.v-field--variant-solo-filled{box-shadow:inset 0 2px 5px rgba(var(--v-shadow-color), .16)}.v-theme--candy .v-field.v-field--variant-solo-filled .v-field__overlay{background-color:rgb(var(--v-theme-surface-light))}.v-theme--candy :is(.v-switch__track,.v-slider-track__background){box-shadow:inset 0 2px 4px rgba(var(--v-shadow-color), .22)}.v-theme--candy :is(.v-switch__thumb,.v-slider-thumb__surface){box-shadow:inset 0 2px 0 #ffffffa6, 0 2px 5px rgba(var(--v-shadow-color), .32), 0 0 0 5px rgba(var(--v-theme-primary), .14)}.v-theme--candy .v-tabs--inset .v-tab__slider{box-shadow:inset 0 1px 0 #ffffff80, 0 4px 12px rgba(var(--v-theme-primary), .24)}.v-theme--candy :is(.v-timeline-divider__before,.v-timeline-divider__after){border-radius:999px}.v-theme--candy .v-timeline-divider__dot{box-shadow:inset 0 2px 0 #fff9, 0 3px 8px rgba(var(--v-shadow-color), .22)}.v-theme--clay{--vw-clay-lift:8px 8px 20px rgba(var(--v-shadow-color), .18), -6px -6px 16px #ffffffe6, inset -4px -4px 12px rgba(var(--v-shadow-color), .06), inset 4px 4px 10px #ffffffb3}.v-theme--clay :is(.v-card,.v-btn,.v-alert,.v-btn-group,.v-expansion-panels):not(.v-btn--variant-text,.v-btn--variant-plain,.v-card--variant-text,.v-card--variant-plain,.v-btn--size-small,.v-btn--size-x-small){box-shadow:var(--vw-clay-lift)}.v-theme--clay :is(.v-chip,.v-btn--size-small,.v-btn--size-x-small):not(.v-btn--variant-text,.v-btn--variant-plain){box-shadow:3px 3px 7px rgba(var(--v-shadow-color), .13), -2px -2px 5px #fff9}.v-theme--clay [class*=bg-] :is(.v-btn.v-btn,.v-chip.v-chip){box-shadow:none}.v-theme--clay .v-btn:active:not(.v-btn--disabled){box-shadow:4px 4px 10px rgba(var(--v-shadow-color), .16), inset -3px -3px 10px rgba(var(--v-shadow-color), .1), inset 3px 3px 8px #fff9}.v-theme--clay .v-field.v-field--variant-solo{background:rgb(var(--v-theme-surface));box-shadow:inset 4px 4px 10px rgba(var(--v-shadow-color), .12), inset -4px -4px 10px #ffffffe6}.v-theme--clay :is(.v-switch__track,.v-slider-track){box-shadow:inset 2px 2px 6px rgba(var(--v-shadow-color), .18)}.v-theme--clay :is(.v-switch__thumb,.v-slider-thumb__surface){box-shadow:3px 3px 8px rgba(var(--v-shadow-color), .24), -2px -2px 6px #ffffffe6}.v-theme--clay :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:12px 12px 40px rgba(var(--v-shadow-color), .24)}.v-theme--clay .v-tab__slider{border-radius:5px}.v-theme--clay :is(.v-timeline-divider__before,.v-timeline-divider__after){box-shadow:inset 2px 2px 5px rgba(var(--v-shadow-color), .18), inset -2px -2px 5px #fffc}.v-theme--clay .v-timeline-divider__dot{box-shadow:var(--vw-clay-lift)}.v-theme--morph{--vw-morph-raised:6px 6px 12px rgba(var(--v-shadow-color), .5), -6px -6px 12px #ffffffd9;--vw-morph-pressed:inset 3px 3px 7px rgba(var(--v-shadow-color), .55), inset -3px -3px 7px #ffffffe6}.v-theme--morph :is(.v-card,.v-btn,.v-alert,.v-btn-group,.v-expansion-panels,.v-sheet--variant-flat):not(.v-btn--variant-text,.v-btn--variant-plain,.v-card--variant-text,.v-card--variant-plain,.v-btn--size-small,.v-btn--size-x-small){box-shadow:var(--vw-morph-raised)}.v-theme--morph :is(.v-chip,.v-btn--size-small,.v-btn--size-x-small):not(.v-btn--variant-text,.v-btn--variant-plain){box-shadow:3px 3px 7px rgba(var(--v-shadow-color), .38), -3px -3px 6px #fff9}.v-theme--morph [class*=bg-] :is(.v-btn.v-btn,.v-chip.v-chip){box-shadow:none}.v-theme--morph :is(.v-field--variant-solo,.v-switch__track,.v-slider-track){background:rgb(var(--v-theme-background));box-shadow:var(--vw-morph-pressed)}.v-theme--morph .v-btn:active:not(.v-btn--disabled),.v-theme--morph .v-btn--active{box-shadow:var(--vw-morph-pressed)}.v-theme--morph .v-slider-thumb__surface{box-shadow:var(--vw-morph-raised)}.v-theme--morph :is(.v-divider,.v-table tbody td){border-color:#0000}.v-theme--morph .v-tab__slider{box-shadow:var(--vw-morph-raised);border-radius:4px}.v-theme--morph :is(.v-timeline-divider__before,.v-timeline-divider__after){box-shadow:var(--vw-morph-pressed)}.v-theme--morph .v-timeline-divider__dot{box-shadow:var(--vw-morph-raised)}.v-theme--sketchy :is(.v-card,.v-sheet,.v-table,.v-list,.v-expansion-panels){box-shadow:none}.v-theme--sketchy :is(.v-btn--variant-outlined,.v-card--variant-outlined,.v-alert--variant-outlined){border-bottom-width:calc(var(--v-vw-border-width) + 1px)}.v-theme--sketchy .v-btn.v-btn--variant-outlined:hover{border-radius:5px 22px 6px 20px/20px 6px 22px 5px}.v-theme--sketchy :is(.v-table thead th,.v-data-table__th){border-bottom:var(--v-vw-border-width) solid rgba(var(--v-border-color), .7)}.v-theme--sketchy .v-tab__slider{border-radius:8px 3px/3px 8px}.v-theme--sketchy :is(.v-list,.v-sheet,.v-banner,.v-table):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border-bottom-width:calc(var(--v-vw-border-width) + 1px)}@media (prefers-reduced-motion:no-preference){.v-theme--sketchy .v-btn{transition:border-radius .12s steps(2,end)}}.v-theme--brutalist{--vw-brut-offset:4px}.v-theme--brutalist :is(.v-card,.v-btn,.v-alert,.v-chip,.v-table,.v-btn-group,.v-expansion-panels):not(.v-btn--variant-text,.v-btn--variant-plain,.v-card--variant-text,.v-card--variant-plain){box-shadow:var(--vw-brut-offset) var(--vw-brut-offset) 0 rgb(var(--v-shadow-color))}.v-theme--brutalist :is(.v-btn,.v-chip,.v-btn-group):not(.v-btn--variant-text,.v-btn--variant-plain):not(.v-btn--disabled,.v-btn-group *){border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));transition:transform 80ms steps(2,end),box-shadow 80ms steps(2,end)}.v-theme--brutalist .v-btn:active:not(.v-btn--disabled){transform:translate(var(--vw-brut-offset), var(--vw-brut-offset));box-shadow:0 0 0 rgb(var(--v-shadow-color))}.v-theme--brutalist .v-btn:not(.v-btn--variant-text,.v-btn--variant-plain):hover:not(.v-btn--disabled,.v-btn-group *){box-shadow:5px 5px 0 rgb(var(--v-shadow-color));transform:translate(-1px,-1px)}.v-theme--brutalist :is(.v-menu,.v-dialog)>.v-overlay__content{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));box-shadow:8px 8px 0 rgb(var(--v-shadow-color))}.v-theme--brutalist :is(.v-table thead th,.v-data-table__th){background-color:rgb(var(--v-theme-secondary));border-bottom:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));text-transform:uppercase;font-weight:700}.v-theme--brutalist .v-expansion-panels{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color))}.v-theme--brutalist .v-timeline-divider__dot{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));box-shadow:var(--vw-brut-offset) var(--vw-brut-offset) 0 rgb(var(--v-shadow-color))}@media (prefers-reduced-motion:reduce){.v-theme--brutalist .v-btn{transition:none}.v-theme--brutalist .v-btn:hover:not(.v-btn--disabled){transform:none}}.v-theme--liquidGlass.v-application{background-image:radial-gradient(65rem 45rem at 8% -8%,#007aff4d,#0000 62%),radial-gradient(55rem 42rem at 92% 12%,#5856d63d,#0000 62%),linear-gradient(165deg,#007aff00 45%,#007aff1f 100%);background-attachment:fixed}.v-theme--liquidGlass :is(.v-card,.v-app-bar,.v-toolbar,.v-navigation-drawer,.v-table,.v-expansion-panels):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgba(var(--v-theme-surface), .6);backdrop-filter:blur(30px)saturate(190%);box-shadow:inset 0 1px 0 #ffffffe6, inset 0 0 0 1px #ffffff59, inset 0 -1px 0 rgba(var(--v-shadow-color), .08), 0 10px 34px rgba(var(--v-shadow-color), .1)}.v-theme--liquidGlass :is(.v-menu,.v-dialog)>.v-overlay__content{backdrop-filter:blur(30px)saturate(190%);box-shadow:inset 0 1px 0 #ffffffe6, inset 0 0 0 1px #ffffff59, 0 18px 52px rgba(var(--v-shadow-color), .18)}.v-theme--liquidGlass .v-field.v-field--variant-solo-filled{backdrop-filter:blur(20px)saturate(170%);box-shadow:none;background-color:#7676801f}.v-theme--liquidGlass .v-field--variant-solo-filled .v-field__overlay{opacity:0}.v-theme--liquidGlass .v-field.v-field--variant-solo-filled:hover,.v-theme--liquidGlass .v-field.v-field--variant-solo-filled.v-field--focused{background-color:#78788029}.v-theme--liquidGlass .v-btn.v-btn--variant-flat:not(.v-btn--disabled){box-shadow:inset 0 1px 0 #fff6, 0 4px 14px rgba(var(--v-shadow-color), .22)}.v-theme--liquidGlass .v-btn-group.v-btn-toggle{background-color:#7676801f;padding:2px}.v-theme--liquidGlass .v-btn-group.v-btn-toggle>.v-btn{border-radius:calc(var(--v-vw-radius) - 2px);background-color:#0000}.v-theme--liquidGlass .v-btn-group.v-btn-toggle>.v-btn--active{background-color:rgb(var(--v-theme-surface));color:rgb(var(--v-theme-on-surface));box-shadow:0 2px 6px rgba(var(--v-shadow-color), .16)}.v-theme--liquidGlass .v-btn-group.v-btn-toggle>.v-btn--active>.v-btn__overlay{opacity:0}.v-theme--liquidGlass .v-slider-thumb__surface{box-shadow:inset 0 1px 0 #ffffffd9, 0 2px 8px rgba(var(--v-shadow-color), .28)}.v-theme--liquidGlass [class*=-title-]{letter-spacing:-.01em}.v-theme--liquidGlass :is(.v-divider,.v-table tbody td,.v-data-table__td){border-color:rgba(var(--v-border-color), .14)}.v-theme--liquidGlass .v-divider{opacity:1}.v-theme--liquidGlass :is(.v-table,.v-table__wrapper,.v-table>.v-table__wrapper>table){background:0 0}.v-theme--liquidGlass :is(.v-table thead th,.v-data-table__th){letter-spacing:0;color:rgba(var(--v-theme-on-surface), .5);border-bottom:1px solid rgba(var(--v-border-color), .14);background:0 0;font-size:.8125rem;font-weight:500}@media (prefers-reduced-transparency:reduce){.v-theme--liquidGlass.v-application{background-image:none}.v-theme--liquidGlass :is(.v-card,.v-app-bar,.v-toolbar,.v-navigation-drawer,.v-table,.v-expansion-panels):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgb(var(--v-theme-surface));backdrop-filter:none}}.v-theme--darkGlass :is(.v-card,.v-app-bar,.v-navigation-drawer,.v-toolbar):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgba(var(--v-theme-surface), .62);backdrop-filter:blur(18px)saturate(160%);border:1px solid rgba(var(--v-border-color), var(--v-border-opacity))}.v-theme--darkGlass .v-card.v-card--variant-elevated{box-shadow:inset 0 1px 0 rgba(var(--v-theme-primary), .28), 0 8px 32px rgba(var(--v-shadow-color), .45)}.v-theme--darkGlass :is(.v-menu,.v-dialog)>.v-overlay__content{backdrop-filter:blur(18px)saturate(160%);box-shadow:0 16px 48px rgba(var(--v-shadow-color), .55)}.v-theme--darkGlass .v-field.v-field--variant-solo-filled .v-field__overlay{background-color:rgba(var(--v-theme-surface-bright), .45)}.v-theme--darkGlass .v-btn.v-btn--variant-flat:not(.v-btn--disabled){box-shadow:0 4px 20px rgba(var(--v-theme-primary), .35)}.v-theme--darkGlass .v-tab__slider{box-shadow:0 0 12px rgba(var(--v-theme-primary), .8)}.v-theme--darkGlass .v-slider-thumb__surface{box-shadow:0 0 0 6px rgba(var(--v-theme-primary), .16)}.v-theme--darkGlass .v-switch__track{backdrop-filter:blur(6px);border:1px solid rgba(var(--v-border-color), var(--v-border-opacity))}@media (prefers-reduced-transparency:reduce){.v-theme--darkGlass :is(.v-card,.v-app-bar,.v-navigation-drawer,.v-toolbar):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgb(var(--v-theme-surface));backdrop-filter:none}}.v-theme--aurora.v-application{background-image:radial-gradient(60rem 40rem at 15% -10%,#7c5cff29,#0000 60%),radial-gradient(50rem 35rem at 95% 5%,#00d4ff1f,#0000 60%),radial-gradient(45rem 30rem at 50% 105%,#ff5caa1a,#0000 60%);background-attachment:fixed}.v-theme--aurora.v-application:before{content:"";z-index:0;pointer-events:none;background-image:radial-gradient(35rem 28rem at 25% 25%,#7c5cff24,#0000 60%),radial-gradient(30rem 24rem at 75% 40%,#00d4ff1a,#0000 60%),radial-gradient(28rem 22rem at 55% 85%,#ff5caa17,#0000 60%);animation:34s ease-in-out infinite alternate vw-aurora-drift;position:fixed;inset:-20%}.v-theme--aurora .v-card.v-card--variant-elevated{background-image:radial-gradient(36rem 18rem at 0 0,#7c5cff24,#0000 70%);box-shadow:0 12px 40px #0000008c}.v-theme--aurora :is(.v-card,.v-alert,:is(.v-list,.v-sheet,.v-banner):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *)):after{content:"";border-radius:inherit;padding:var(--v-vw-border-width);background:var(--v-vw-gradient);opacity:.45;pointer-events:none;-webkit-mask-composite:xor;-webkit-mask-source-type:auto,auto;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);-webkit-mask-position:0 0,0 0;mask-position:0 0,0 0;-webkit-mask-size:auto,auto;mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.v-theme--aurora .v-btn.v-btn--variant-flat.bg-primary{background-image:var(--v-vw-gradient-btn,var(--v-vw-gradient));box-shadow:0 6px 24px #7c5cff73}.v-theme--aurora .v-btn.v-btn--variant-flat.bg-primary .v-btn__overlay{opacity:0}.v-theme--aurora .v-tab__slider{background:var(--v-vw-gradient);box-shadow:0 0 16px #7c5cffcc}.v-theme--aurora .v-slider-track__fill{background:var(--v-vw-gradient)}.v-theme--aurora .v-slider-thumb__surface{box-shadow:0 0 0 6px #7c5cff2e,0 0 16px #7c5cff99}.v-theme--aurora .v-selection-control--dirty .v-switch__track{background-image:var(--v-vw-gradient);box-shadow:0 0 14px #7c5cff80}.v-theme--aurora :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:0 0 0 1px #9b8cff29,0 24px 64px #000000b3}.v-theme--aurora :is(.v-progress-linear__determinate,.v-progress-linear__indeterminate){background-image:var(--v-vw-gradient)}.v-theme--aurora :is(.v-alert__underlay,.v-chip__underlay){background-image:var(--v-vw-gradient);opacity:.2}.v-theme--aurora :is(.v-app-bar,.v-toolbar,.v-navigation-drawer){background-image:linear-gradient(100deg,#7c5cff29,#00d4ff0f 55%,#0000)}.v-theme--aurora .v-divider:not(.v-divider--vertical){opacity:1;border-image:linear-gradient(90deg,#0000,#9b8cff73 25%,#00d4ff59 75%,#0000) 1}.v-theme--aurora :is(.v-table thead th,.v-data-table__th){border-bottom:1px solid #0000;border-image:var(--v-vw-gradient) 1}.v-theme--aurora .v-list-item.v-list-item--active{background-image:linear-gradient(90deg,#7c5cff38,#0000 45%)}.v-theme--aurora .v-badge__badge{background-image:var(--v-vw-gradient-btn,var(--v-vw-gradient))}.v-theme--aurora .v-field.v-field--variant-solo-filled.v-field--focused:after{content:"";border-radius:inherit;padding:var(--v-vw-border-width);background:var(--v-vw-gradient);opacity:.7;pointer-events:none;-webkit-mask-composite:xor;-webkit-mask-source-type:auto,auto;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);-webkit-mask-position:0 0,0 0;mask-position:0 0,0 0;-webkit-mask-size:auto,auto;mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.v-theme--aurora :is([class*=-display-],[class*=-headline-large]){background:var(--v-vw-gradient);color:#0000;-webkit-background-clip:text;background-clip:text}.v-theme--aurora .v-timeline-divider__dot{background-image:var(--v-vw-gradient);box-shadow:0 0 16px #7c5cff8c}.v-theme--aurora .v-timeline-divider__inner-dot:not([class*=bg-]){background-color:#0000!important}@keyframes vw-aurora-drift{0%{transform:translate(-3%,-2%)scale(1.06)}to{transform:translate(3%,2%)scale(1.14)}}@media (prefers-reduced-motion:reduce){.v-theme--aurora.v-application:before{animation:none}}.v-theme--neon :is(.v-card,.v-sheet,.v-list,.v-table,.v-expansion-panels){box-shadow:none}.v-theme--neon .v-card.v-card--variant-outlined{box-shadow:0 0 0 1px rgba(var(--v-theme-primary), .12)}.v-theme--neon .v-btn.v-btn--variant-outlined:not(.v-btn--disabled):hover{box-shadow:0 0 0 1px rgba(var(--v-theme-primary), .6), 0 0 18px rgba(var(--v-theme-primary), .35)}.v-theme--neon .v-btn.v-btn--variant-flat:not(.v-btn--disabled){box-shadow:0 0 22px rgba(var(--v-theme-primary), .45)}.v-theme--neon :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:0 0 0 1px rgba(var(--v-theme-primary), .35), 0 12px 48px #000000bf}.v-theme--neon .v-app-bar{box-shadow:inset 0 -1px 0 rgba(var(--v-theme-primary), .3)}.v-theme--neon .v-slider-thumb__surface{box-shadow:0 0 12px rgba(var(--v-theme-primary), .6)}.v-theme--neon .v-tab__slider{box-shadow:0 0 14px rgba(var(--v-theme-primary), .9)}.v-theme--neon .v-selection-control--dirty .v-switch__track{box-shadow:0 0 14px rgba(var(--v-theme-primary), .55)}.v-theme--neon .v-expansion-panels{box-shadow:0 0 0 1px rgba(var(--v-theme-primary), .12)}.v-theme--neon :is(.v-timeline-divider__before,.v-timeline-divider__after){box-shadow:0 0 8px rgb(var(--v-theme-secondary))}.v-theme--neon .v-timeline-divider__dot{box-shadow:0 0 12px rgba(var(--v-theme-primary), .9)}
|
|
1
|
+
:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn--icon:not([class*=rounded-],.v-btn-group *,.v-pagination *){border-radius:var(--v-vw-radius-icon-btn,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn:not(.v-btn--icon,.v-btn--rounded,[class*=rounded-],.v-btn-group *,.v-toolbar-items *,.v-tabs *){border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list,.v-sheet,.v-banner,.v-table,.v-skeleton-loader):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border-radius:var(--v-vw-radius-lg,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list,.v-sheet,.v-banner,.v-table):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border:var(--v-vw-panel-border,revert-layer);box-shadow:var(--v-vw-panel-shadow,revert-layer);background-color:var(--v-vw-panel-fill,revert-layer);background-image:var(--v-vw-panel-image,revert-layer);backdrop-filter:var(--v-vw-panel-filter,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-list--border,.v-sheet--border):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border-width:var(--v-vw-border-width,thin)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn-group,.v-btn-toggle):not([class*=rounded-]){border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-outlined:not([class*=bg-]){background-color:var(--v-vw-outlined-fill,rgb(var(--v-theme-surface)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-badge__badge{border-radius:var(--v-vw-radius-chip,9999px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-avatar:not([class*=rounded-]){border-radius:var(--v-vw-radius-avatar,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-timeline-divider__dot,.v-timeline-divider__inner-dot){border-radius:var(--v-vw-radius-dot,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-progress-linear:not(.v-progress-linear--rounded,[class*=rounded-]){border-radius:var(--v-vw-radius,0)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-switch--inset-square .v-switch__track{border-radius:var(--v-vw-radius,6px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-switch--inset-square .v-switch__thumb{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.rounded-s-0,.rounded-e-0,.rounded-t-0,.rounded-b-0){--vw-attached:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn:is(.rounded-s-0,.rounded-e-0,.rounded-t-0,.rounded-b-0){--vw-attached:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-s-0{border-start-end-radius:var(--vw-attached);border-end-end-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-e-0{border-start-start-radius:var(--vw-attached);border-end-start-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-t-0{border-end-end-radius:var(--vw-attached);border-end-start-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .rounded-b-0{border-start-start-radius:var(--vw-attached);border-start-end-radius:var(--vw-attached)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn-group:not([class*=rounded-]){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-pagination .v-btn{border-radius:var(--v-vw-radius-btn,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-card:not([class*=rounded-]),.v-table),:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-expansion-panels{border-radius:var(--v-vw-radius-lg,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-alert:not([class*=rounded-]),.v-field:not([class*=rounded-]),.v-list-item:not([class*=rounded-]),.v-snackbar__wrapper,.v-overlay__content>:is(.v-list,.v-sheet)){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-field:is(.v-field--variant-filled,.v-field--variant-underlined):not([class*=rounded-]){border-radius:var(--v-vw-radius,4px) var(--v-vw-radius,4px) 0 0}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-chip:not([class*=rounded-]){border-radius:var(--v-vw-radius-chip,9999px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-track{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-thumb__surface{border-radius:var(--v-vw-radius-thumb,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-slider-thumb__label{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-pagination .v-pagination__item--is-active .v-btn__overlay{background:var(--v-vw-pagination-active-color,currentColor);opacity:var(--v-vw-pagination-active-opacity,var(--v-activated-opacity))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__content>.v-card:is(.v-card--variant-outlined,.v-card--variant-text,.v-card--variant-plain,.v-card--variant-tonal):not([class*=bg-]){background-color:rgb(var(--v-theme-surface))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-tonal>.v-card__underlay{z-index:-1}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card>:is(.v-list,.v-table):not([class*=bg-]){background:0 0}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn--variant-outlined,.v-card--variant-outlined,.v-alert--variant-outlined,.v-chip--variant-outlined,.v-list--border,.v-sheet--border){border-width:var(--v-vw-border-width,thin)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-card--variant-outlined:not([class*=border-]){border-color:rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-field__outline{--v-field-border-width:var(--v-vw-border-width,1px);--v-field-border-opacity:var(--v-vw-field-border-opacity,.38)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-btn{font-weight:var(--v-vw-btn-weight,500);letter-spacing:var(--v-vw-btn-tracking,.00714286em);text-transform:var(--v-vw-btn-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon):is(.v-menu,.v-dialog,.v-tooltip)>.v-overlay__content,:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-menu,.v-dialog,.v-tooltip)>.v-overlay__content{border:var(--v-vw-overlay-border,none);box-shadow:var(--v-vw-overlay-shadow,revert-layer)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon):is(.v-menu,.v-tooltip)>.v-overlay__content,:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-menu,.v-tooltip)>.v-overlay__content{border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-dialog:not(.v-dialog--fullscreen)>.v-overlay__content,:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-dialog:not(.v-dialog--fullscreen)>.v-overlay__content{border-radius:var(--v-vw-radius-lg,var(--v-vw-radius,4px))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-overlay__content,.v-overlay__scrim):is([class*=-transition-enter-active],[class*=-transition-leave-active]){transition-timing-function:var(--v-vw-overlay-ease,var(--v-vw-motion-ease,revert-layer))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__content[class*=-transition-enter-active]{transition-duration:var(--v-vw-overlay-duration,revert-layer)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__content[class*=-transition-leave-active]{transition-duration:var(--v-vw-overlay-exit,var(--v-vw-overlay-duration,revert-layer))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__scrim[class*=-transition-enter-active]{transition-duration:var(--v-vw-scrim-duration,var(--v-vw-overlay-duration,revert-layer))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-overlay__scrim[class*=-transition-leave-active]{transition-duration:var(--v-vw-scrim-duration,var(--v-vw-overlay-exit,var(--v-vw-overlay-duration,revert-layer)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-chip-group .v-slide-group__content{padding:var(--v-vw-relief-inset,0)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-skeleton-loader__avatar,.v-skeleton-loader__button,.v-skeleton-loader__chip,.v-skeleton-loader__divider,.v-skeleton-loader__heading,.v-skeleton-loader__image,.v-skeleton-loader__ossein,.v-skeleton-loader__text){background:rgba(var(--v-theme-on-surface), var(--v-vw-skeleton-opacity,clamp(.08, var(--v-border-opacity), .2)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-skeleton-loader__button,.v-skeleton-loader__chip,.v-skeleton-loader__heading,.v-skeleton-loader__image,.v-skeleton-loader__ossein,.v-skeleton-loader__text){border-radius:var(--v-vw-radius,4px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-skeleton-loader__avatar{border-radius:var(--v-vw-radius-avatar,50%)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-date-picker-controls .v-btn{letter-spacing:normal;text-transform:none;--v-btn-height:32px;min-width:0;padding-inline:8px;font-size:.875rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-date-picker-controls{height:auto;min-height:var(--v-date-picker-controls-height,56px);flex-wrap:wrap;row-gap:4px;padding-inline:8px}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-timeline-divider__before,.v-timeline-divider__after){background:var(--v-vw-timeline-line,rgba(var(--v-border-color), var(--v-vw-timeline-line-opacity,var(--v-border-opacity))))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application .v-timeline--vertical :is(.v-timeline-divider__before,.v-timeline-divider__after){width:var(--v-vw-timeline-line-width,var(--v-timeline-line-thickness))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application .v-timeline--horizontal :is(.v-timeline-divider__before,.v-timeline-divider__after){height:var(--v-vw-timeline-line-width,var(--v-timeline-line-thickness))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-tab__slider{height:var(--v-vw-tab-slider-height,2px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-tab{font-size:var(--v-vw-tab-size,.875rem)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-avatar[class*=--size-]:not(:has(img,.v-img,.v-icon)){font-size:calc(var(--v-avatar-height) * var(--v-vw-avatar-ratio,.4))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-stepper.v-sheet:not(.v-stepper--flat,[class*=elevation-]){box-shadow:var(--v-vw-panel-shadow,none);border:var(--v-vw-panel-border,var(--v-vw-border-width,thin) solid rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity))))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-stepper .v-stepper-header{box-shadow:none;border-block-end:var(--v-vw-border-width,thin) solid rgba(var(--v-border-color), var(--v-vw-outline-opacity,var(--v-border-opacity)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper-item){padding:1rem 1.25rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper-window){margin:1.25rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-stepper .v-stepper-actions){padding:0 1.25rem 1rem}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-table,.v-data-table,.v-pagination){font-variant-numeric:var(--v-vw-numeric,normal)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-table thead th,.v-data-table__th){font-weight:var(--v-vw-th-weight,revert-layer);letter-spacing:var(--v-vw-th-tracking,revert-layer);text-transform:var(--v-vw-th-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) .v-list-item.v-list-item--active{border-inline-start:var(--v-vw-list-bar,0) solid var(--v-vw-list-bar-color,currentColor)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-chip,.v-list-item,.v-card,.v-tab){transition:transform var(--v-vw-motion-duration,.16s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-chip--link,.v-list-item--link):not(.v-btn--disabled):active{transform:translateY(var(--v-vw-press-shift,0px)) scale(var(--v-vw-press-scale,.98))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-card--link):hover{transform:translateY(calc(-1 * var(--v-vw-hover-lift,0px)))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-selection-control--dirty .v-selection-control__input>.v-icon,.v-btn--active>.v-btn__content>.v-icon,.v-rating__item--full .v-icon){animation:vw-pop var(--v-vw-pop-duration,.22s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :where(.v-btn,.v-tab,.v-chip,.v-list-item,.v-selection-control__input):focus-visible{outline:var(--v-vw-focus-ring,2px solid rgb(var(--v-theme-primary)));outline-offset:var(--v-vw-focus-offset,2px)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(h1,h2,h3,h4,h5,h6,[class*=-display-],[class*=-headline-],[class*=-title-large]){font-family:var(--v-font-heading,var(--v-font-body,inherit));font-weight:var(--v-vw-heading-weight,revert-layer);letter-spacing:var(--v-vw-heading-tracking,revert-layer);text-transform:var(--v-vw-heading-transform,none)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon).v-application{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) a:not([class]){color:rgb(var(--v-theme-primary));-webkit-text-decoration:var(--v-vw-link-decoration,underline);-webkit-text-decoration:var(--v-vw-link-decoration,underline);text-decoration:var(--v-vw-link-decoration,underline);text-underline-offset:.15em}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon)::selection{background-color:var(--v-vw-selection-fill,rgba(var(--v-theme-primary), .24));color:var(--v-vw-selection-color,inherit)}:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) ::selection{background-color:var(--v-vw-selection-fill,rgba(var(--v-theme-primary), .24));color:var(--v-vw-selection-color,inherit)}@keyframes vw-pop{0%{transform:scale(1)}45%{transform:scale(var(--v-vw-pop-scale,1.18))}to{transform:scale(1)}}:is([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon) :is(.v-btn-group,.v-toolbar-items) .v-btn.v-btn{box-shadow:none}@media (prefers-reduced-motion:reduce){:where([data-vuetiwatch]:not([data-vuetiwatch="classic"]),.v-theme--paper, .v-theme--slate, .v-theme--graphite, .v-theme--atlas, .v-theme--atlasDark, .v-theme--atlasSepia, .v-theme--calm, .v-theme--lux, .v-theme--soft, .v-theme--candy, .v-theme--clay, .v-theme--morph, .v-theme--sketchy, .v-theme--brutalist, .v-theme--liquidGlass, .v-theme--darkGlass, .v-theme--aurora, .v-theme--neon){--v-vw-motion-duration:1ms;--v-vw-pop-duration:1ms;--v-vw-press-scale:1;--v-vw-press-shift:0px;--v-vw-hover-lift:0px;--v-vw-theme-transition:0s}}@keyframes vw-theme-wipe{0%{clip-path:circle(0% at var(--vw-origin-x,50%) var(--vw-origin-y,50%))}to{clip-path:circle(150% at var(--vw-origin-x,50%) var(--vw-origin-y,50%))}}html[data-vuetiwatch]::view-transition-old(root){animation:none}html[data-vuetiwatch]::view-transition-new(root){animation:vw-theme-wipe var(--v-vw-theme-transition,.42s) var(--v-vw-motion-ease,cubic-bezier(.2, 0, .2, 1))}.v-theme--paper :is(.v-card,.v-sheet,.v-list,.v-table,.v-expansion-panels){box-shadow:none}.v-theme--paper .v-card.v-card--variant-elevated{border:var(--v-vw-border-width,1px) solid rgba(var(--v-border-color), var(--v-border-opacity));box-shadow:none}.v-theme--paper .v-switch__track{border:var(--v-vw-border-width,1px) solid rgba(var(--v-border-color), .3)}.v-theme--paper :is(.v-table thead th,.v-data-table__th){border-bottom:3px double rgba(var(--v-border-color), .45)}.v-theme--slate .v-card.v-card--variant-outlined{box-shadow:0 1px 2px rgba(var(--v-shadow-color), .05)}.v-theme--slate :is(.v-table thead th,.v-data-table__th){background-color:rgb(var(--v-theme-surface-light));font-weight:600}.v-theme--slate:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--slate :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:0 8px 24px rgba(var(--v-shadow-color), .16)}.v-theme--slate .v-app-bar{box-shadow:none}.v-theme--graphite{--vw-graphite-label:"JetBrains Mono", ui-monospace, "SF Mono", "Menlo", monospace}.v-theme--graphite :is(.v-card.v-card,.v-btn.v-btn,.v-chip.v-chip,.v-alert.v-alert,.v-table.v-table,.v-expansion-panels.v-expansion-panels,.v-list.v-list,.v-sheet.v-sheet){box-shadow:none}.v-theme--graphite .v-card.v-card--variant-elevated{border:1px solid rgba(var(--v-border-color), var(--v-border-opacity))}.v-theme--graphite :is(.v-table thead th,.v-data-table__th){font-family:var(--vw-graphite-label);color:rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));border-bottom:1px solid rgba(var(--v-border-color), .2);font-size:.6875rem}.v-theme--graphite :is(.v-chip.v-chip--size-x-small,.v-chip.v-chip--size-small,.v-breadcrumbs-item){font-family:var(--vw-graphite-label);letter-spacing:.02em;font-size:.6875rem}.v-theme--graphite .v-breadcrumbs-divider{font-family:var(--vw-graphite-label);opacity:.5}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-navigation-drawer{background-color:rgb(var(--v-theme-surface-light))}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-table thead th,.v-data-table__th){background-color:rgb(var(--v-theme-surface-light));border-bottom:1px solid rgba(var(--v-border-color), calc(var(--v-border-opacity) * 1.6))}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-card--variant-outlined>.v-card-item:not(:last-child){border-block-end:1px solid rgba(var(--v-border-color), var(--v-border-opacity));padding-block-end:12px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-card--variant-outlined>.v-card-item+:is(.v-card-text,.v-card-actions){padding-top:12px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-table,.v-data-table),:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-list-item-title,.v-list-item-subtitle){font-size:.875rem}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-card-title{letter-spacing:0;font-size:1rem;font-weight:600}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-date-picker,.v-picker){width:306px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-time-picker{min-width:296px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-date-picker-month__day{height:32px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-date-picker-month,.v-date-picker-years,.v-date-picker-months){font-size:.8125rem}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-time-picker-clock{max-width:208px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-date-picker-controls{padding-block:4px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-otp-input{padding-block:0}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-otp-input__content{max-width:240px;padding:0}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-otp-input .v-field{height:40px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-expansion-panel-title{min-height:44px;padding-block:10px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-expansion-panel-title--active{min-height:52px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-empty-state{min-height:0;padding-block:24px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-alert-title{font-size:1rem;line-height:1.5}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-alert .v-alert__content{font-size:.875rem}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-alert .v-alert__prepend .v-icon{font-size:20px}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) .v-breadcrumbs{font-size:.875rem}:is(.v-theme--atlas,.v-theme--atlasDark,.v-theme--atlasSepia) :is(.v-table tbody td,.v-data-table__td){border-color:rgba(var(--v-border-color), calc(var(--v-border-opacity) * .7))}.v-theme--calm :is(.v-card,.v-sheet,.v-table,.v-list,.v-expansion-panels){box-shadow:none}.v-theme--calm:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--calm :is(.v-menu,.v-dialog)>.v-overlay__content{border:var(--v-vw-border-width) solid rgba(var(--v-border-color), .09);box-shadow:0 16px 48px #3a3a360f}.v-theme--calm :is(.v-table thead th,.v-data-table__th){border-bottom:var(--v-vw-border-width) solid rgba(var(--v-border-color), .09);font-weight:500}.v-theme--calm .v-card-text{line-height:1.7}.v-theme--lux :is(.v-card,.v-sheet,.v-table,.v-list,.v-expansion-panels){box-shadow:none}.v-theme--lux :is(.v-toolbar-title,.v-card-title,.v-list-subheader){letter-spacing:.16em;text-transform:uppercase;font-weight:400}.v-theme--lux :is(.v-table thead th,.v-data-table__th){letter-spacing:.16em;text-transform:uppercase;font-size:.75rem;font-weight:400}.v-theme--lux:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--lux :is(.v-menu,.v-dialog)>.v-overlay__content{border:var(--v-vw-border-width) solid rgba(var(--v-border-color), .14);box-shadow:0 24px 64px #00000014}.v-theme--soft .v-card.v-card--variant-elevated{box-shadow:0 2px 4px rgba(var(--v-theme-primary), .06), 0 12px 28px rgba(var(--v-theme-primary), .1);transition:box-shadow var(--v-vw-motion-duration) var(--v-vw-motion-ease)}.v-theme--soft .v-card.v-card--variant-elevated.v-card--link:hover{box-shadow:0 4px 8px rgba(var(--v-theme-primary), .08), 0 20px 40px rgba(var(--v-theme-primary), .14)}.v-theme--soft .v-btn.v-btn--variant-flat:not(.v-btn--disabled){box-shadow:0 2px 8px rgba(var(--v-theme-primary), .24)}.v-theme--soft:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--soft :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:0 16px 48px rgba(var(--v-theme-primary), .18)}.v-theme--soft .v-field.v-field--variant-solo-filled{box-shadow:inset 0 0 0 1px rgba(var(--v-theme-primary), .3), 0 1px 2px rgba(var(--v-theme-primary), .08), 0 4px 12px rgba(var(--v-theme-primary), .06)}.v-theme--soft .v-slider-thumb__surface{box-shadow:0 2px 8px rgba(var(--v-theme-primary), .35)}.v-theme--soft .v-switch__thumb{box-shadow:0 2px 6px rgba(var(--v-theme-primary), .3)}.v-theme--soft .v-tabs--inset .v-tab__slider{box-shadow:0 2px 10px rgba(var(--v-theme-primary), .2)}.v-theme--candy{--vw-candy-pad:inset 0 2px 0 #ffffff8c, inset 0 -3px 0 rgba(var(--v-theme-on-surface), .08);--vw-candy-rest:0 3px 6px rgba(var(--v-shadow-color), .16), 0 10px 22px rgba(var(--v-shadow-color), .13);--vw-candy-squash:0 1px 3px rgba(var(--v-shadow-color), .2), 0 3px 9px rgba(var(--v-shadow-color), .12);--v-vw-relief-inset:4px}.v-theme--candy .v-btn.v-btn:is(.v-btn--variant-flat,.v-btn--variant-elevated):not(.v-btn--disabled){box-shadow:var(--vw-candy-pad), var(--vw-candy-rest);transition:box-shadow var(--v-vw-motion-duration) var(--v-vw-motion-ease)}.v-theme--candy .v-btn.v-btn:is(.v-btn--variant-flat,.v-btn--variant-elevated):not(.v-btn--disabled):active{box-shadow:var(--vw-candy-pad), var(--vw-candy-squash)}.v-theme--candy .v-chip.v-chip:not(.v-chip--variant-text,.v-chip--variant-plain){box-shadow:inset 0 1px 0 #ffffff80, 0 2px 5px rgba(var(--v-shadow-color), .14)}.v-theme--candy :is(.v-card.v-card--variant-elevated,.v-alert.v-alert--variant-tonal){box-shadow:inset 0 2px 0 #fff9, 0 6px 16px rgba(var(--v-shadow-color), .12), 0 20px 44px rgba(var(--v-shadow-color), .1)}.v-theme--candy .v-card.v-card--variant-elevated{transition:box-shadow var(--v-vw-motion-duration) var(--v-vw-motion-ease)}.v-theme--candy .v-card.v-card--variant-elevated.v-card--link:hover{box-shadow:inset 0 2px 0 #fff9, 0 10px 22px rgba(var(--v-shadow-color), .14), 0 28px 60px rgba(var(--v-shadow-color), .12)}.v-theme--candy .v-field.v-field--variant-solo-filled{background-color:rgb(var(--v-theme-surface-light));box-shadow:inset 0 2px 5px rgba(var(--v-shadow-color), .16)}.v-theme--candy :is(.v-switch__track,.v-slider-track__background){box-shadow:inset 0 2px 4px rgba(var(--v-shadow-color), .22)}.v-theme--candy :is(.v-switch__thumb,.v-slider-thumb__surface){box-shadow:inset 0 2px 0 #ffffffa6, 0 2px 5px rgba(var(--v-shadow-color), .32), 0 0 0 5px rgba(var(--v-theme-primary), .14)}.v-theme--candy .v-tabs--inset .v-tab__slider{box-shadow:inset 0 1px 0 #ffffff80, 0 4px 12px rgba(var(--v-theme-primary), .24)}.v-theme--candy :is(.v-timeline-divider__before,.v-timeline-divider__after){border-radius:999px}.v-theme--candy .v-timeline-divider__dot{box-shadow:inset 0 2px 0 #fff9, 0 3px 8px rgba(var(--v-shadow-color), .22)}.v-theme--clay{--vw-clay-lift:8px 8px 20px rgba(var(--v-shadow-color), .18), -6px -6px 16px #ffffffe6, inset -4px -4px 12px rgba(var(--v-shadow-color), .06), inset 4px 4px 10px #ffffffb3}.v-theme--clay :is(.v-card,.v-btn,.v-alert,.v-btn-group,.v-expansion-panels):not(.v-btn--variant-text,.v-btn--variant-plain,.v-card--variant-text,.v-card--variant-plain,.v-btn--size-small,.v-btn--size-x-small){box-shadow:var(--vw-clay-lift)}.v-theme--clay :is(.v-chip,.v-btn--size-small,.v-btn--size-x-small):not(.v-btn--variant-text,.v-btn--variant-plain){box-shadow:3px 3px 7px rgba(var(--v-shadow-color), .13), -2px -2px 5px #fff9}.v-theme--clay [class*=bg-] :is(.v-btn.v-btn,.v-chip.v-chip){box-shadow:none}.v-theme--clay .v-btn:active:not(.v-btn--disabled){box-shadow:4px 4px 10px rgba(var(--v-shadow-color), .16), inset -3px -3px 10px rgba(var(--v-shadow-color), .1), inset 3px 3px 8px #fff9}.v-theme--clay .v-field.v-field--variant-solo{background:rgb(var(--v-theme-surface));box-shadow:inset 4px 4px 10px rgba(var(--v-shadow-color), .12), inset -4px -4px 10px #ffffffe6}.v-theme--clay :is(.v-switch__track,.v-slider-track){box-shadow:inset 2px 2px 6px rgba(var(--v-shadow-color), .18)}.v-theme--clay :is(.v-switch__thumb,.v-slider-thumb__surface){box-shadow:3px 3px 8px rgba(var(--v-shadow-color), .24), -2px -2px 6px #ffffffe6}.v-theme--clay:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--clay :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:12px 12px 40px rgba(var(--v-shadow-color), .24)}.v-theme--clay .v-tab__slider{border-radius:5px}.v-theme--clay :is(.v-timeline-divider__before,.v-timeline-divider__after){box-shadow:inset 2px 2px 5px rgba(var(--v-shadow-color), .18), inset -2px -2px 5px #fffc}.v-theme--clay .v-timeline-divider__dot{box-shadow:var(--vw-clay-lift)}.v-theme--morph{--vw-morph-raised:6px 6px 12px rgba(var(--v-shadow-color), .5), -6px -6px 12px #ffffffd9;--vw-morph-pressed:inset 3px 3px 7px rgba(var(--v-shadow-color), .55), inset -3px -3px 7px #ffffffe6}.v-theme--morph :is(.v-card,.v-btn,.v-alert,.v-btn-group,.v-expansion-panels,.v-sheet--variant-flat):not(.v-btn--variant-text,.v-btn--variant-plain,.v-card--variant-text,.v-card--variant-plain,.v-btn--size-small,.v-btn--size-x-small){box-shadow:var(--vw-morph-raised)}.v-theme--morph :is(.v-chip,.v-btn--size-small,.v-btn--size-x-small):not(.v-btn--variant-text,.v-btn--variant-plain){box-shadow:3px 3px 7px rgba(var(--v-shadow-color), .38), -3px -3px 6px #fff9}.v-theme--morph [class*=bg-] :is(.v-btn.v-btn,.v-chip.v-chip){box-shadow:none}.v-theme--morph :is(.v-field--variant-solo,.v-switch__track,.v-slider-track){background:rgb(var(--v-theme-background));box-shadow:var(--vw-morph-pressed)}.v-theme--morph .v-btn:active:not(.v-btn--disabled),.v-theme--morph .v-btn--active{box-shadow:var(--vw-morph-pressed)}.v-theme--morph .v-slider-thumb__surface{box-shadow:var(--vw-morph-raised)}.v-theme--morph :is(.v-divider,.v-table tbody td){border-color:#0000}.v-theme--morph .v-tab__slider{box-shadow:var(--vw-morph-raised);border-radius:4px}.v-theme--morph :is(.v-timeline-divider__before,.v-timeline-divider__after){box-shadow:var(--vw-morph-pressed)}.v-theme--morph .v-timeline-divider__dot{box-shadow:var(--vw-morph-raised)}.v-theme--sketchy :is(.v-card,.v-sheet,.v-table,.v-list,.v-expansion-panels){box-shadow:none}.v-theme--sketchy :is(.v-btn--variant-outlined,.v-card--variant-outlined,.v-alert--variant-outlined){border-bottom-width:calc(var(--v-vw-border-width) + 1px)}.v-theme--sketchy .v-btn.v-btn--variant-outlined:hover{border-radius:5px 22px 6px 20px/20px 6px 22px 5px}.v-theme--sketchy :is(.v-table thead th,.v-data-table__th){border-bottom:var(--v-vw-border-width) solid rgba(var(--v-border-color), .7)}.v-theme--sketchy .v-tab__slider{border-radius:8px 3px/3px 8px}.v-theme--sketchy :is(.v-list,.v-sheet,.v-banner,.v-table):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *){border-bottom-width:calc(var(--v-vw-border-width) + 1px)}@media (prefers-reduced-motion:no-preference){.v-theme--sketchy .v-btn{transition:border-radius .12s steps(2,end)}}.v-theme--brutalist{--vw-brut-offset:4px}.v-theme--brutalist :is(.v-card,.v-btn,.v-alert,.v-chip,.v-table,.v-btn-group,.v-expansion-panels):not(.v-btn--variant-text,.v-btn--variant-plain,.v-card--variant-text,.v-card--variant-plain){box-shadow:var(--vw-brut-offset) var(--vw-brut-offset) 0 rgb(var(--v-shadow-color))}.v-theme--brutalist :is(.v-btn,.v-chip,.v-btn-group):not(.v-btn--variant-text,.v-btn--variant-plain):not(.v-btn--disabled,.v-btn-group *){border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));transition:transform 80ms steps(2,end),box-shadow 80ms steps(2,end)}.v-theme--brutalist .v-btn:active:not(.v-btn--disabled){transform:translate(var(--vw-brut-offset), var(--vw-brut-offset));box-shadow:0 0 0 rgb(var(--v-shadow-color))}.v-theme--brutalist .v-btn:not(.v-btn--variant-text,.v-btn--variant-plain):hover:not(.v-btn--disabled,.v-btn-group *){box-shadow:5px 5px 0 rgb(var(--v-shadow-color));transform:translate(-1px,-1px)}.v-theme--brutalist:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--brutalist :is(.v-menu,.v-dialog)>.v-overlay__content{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));box-shadow:8px 8px 0 rgb(var(--v-shadow-color))}.v-theme--brutalist :is(.v-table thead th,.v-data-table__th){background-color:rgb(var(--v-theme-secondary));border-bottom:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));text-transform:uppercase;font-weight:700}.v-theme--brutalist .v-expansion-panels{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color))}.v-theme--brutalist .v-timeline-divider__dot{border:var(--v-vw-border-width) solid rgb(var(--v-shadow-color));box-shadow:var(--vw-brut-offset) var(--vw-brut-offset) 0 rgb(var(--v-shadow-color))}@media (prefers-reduced-motion:reduce){.v-theme--brutalist .v-btn{transition:none}.v-theme--brutalist .v-btn:hover:not(.v-btn--disabled){transform:none}}.v-theme--liquidGlass.v-application{background-image:radial-gradient(65rem 45rem at 8% -8%,#007aff4d,#0000 62%),radial-gradient(55rem 42rem at 92% 12%,#5856d63d,#0000 62%),linear-gradient(165deg,#007aff00 45%,#007aff1f 100%);background-attachment:fixed}.v-theme--liquidGlass :is(.v-card,.v-app-bar,.v-toolbar,.v-navigation-drawer,.v-table,.v-expansion-panels):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgba(var(--v-theme-surface), .6);backdrop-filter:blur(30px)saturate(190%);box-shadow:inset 0 1px 0 #ffffffe6, inset 0 0 0 1px #ffffff59, inset 0 -1px 0 rgba(var(--v-shadow-color), .08), 0 10px 34px rgba(var(--v-shadow-color), .1)}.v-theme--liquidGlass:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--liquidGlass :is(.v-menu,.v-dialog)>.v-overlay__content{backdrop-filter:blur(30px)saturate(190%);box-shadow:inset 0 1px 0 #ffffffe6, inset 0 0 0 1px #ffffff59, 0 18px 52px rgba(var(--v-shadow-color), .18)}.v-theme--liquidGlass:is(.v-menu,.v-dialog)>.v-overlay__content[class*=-transition-enter-from],.v-theme--liquidGlass :is(.v-menu,.v-dialog)>.v-overlay__content[class*=-transition-enter-from]{transform:scale(.92)}.v-theme--liquidGlass:is(.v-menu,.v-dialog)>.v-overlay__content[class*=-transition-enter-active],.v-theme--liquidGlass :is(.v-menu,.v-dialog)>.v-overlay__content[class*=-transition-enter-active]{transition-property:transform,opacity;transition-duration:var(--v-vw-overlay-duration,.32s), var(--v-vw-scrim-duration,.12s)}.v-theme--liquidGlass .v-field.v-field--variant-solo-filled{backdrop-filter:blur(20px)saturate(170%);box-shadow:none;background-color:#7676801f}.v-theme--liquidGlass .v-field--variant-solo-filled .v-field__overlay{opacity:0}.v-theme--liquidGlass .v-field.v-field--variant-solo-filled:hover,.v-theme--liquidGlass .v-field.v-field--variant-solo-filled.v-field--focused{background-color:#78788029}.v-theme--liquidGlass .v-btn.v-btn--variant-flat:not(.v-btn--disabled){box-shadow:inset 0 1px 0 #fff6, 0 4px 14px rgba(var(--v-shadow-color), .22)}.v-theme--liquidGlass .v-btn-group.v-btn-toggle{background-color:#7676801f;padding:2px}.v-theme--liquidGlass .v-btn-group.v-btn-toggle>.v-btn{border-radius:calc(var(--v-vw-radius) - 2px);background-color:#0000}.v-theme--liquidGlass .v-btn-group.v-btn-toggle>.v-btn--active{background-color:rgb(var(--v-theme-surface));color:rgb(var(--v-theme-on-surface));box-shadow:0 2px 6px rgba(var(--v-shadow-color), .16)}.v-theme--liquidGlass .v-btn-group.v-btn-toggle>.v-btn--active>.v-btn__overlay{opacity:0}.v-theme--liquidGlass .v-slider-thumb__surface{box-shadow:inset 0 1px 0 #ffffffd9, 0 2px 8px rgba(var(--v-shadow-color), .28)}.v-theme--liquidGlass [class*=-title-]{letter-spacing:-.01em}.v-theme--liquidGlass :is(.v-divider,.v-table tbody td,.v-data-table__td){border-color:rgba(var(--v-border-color), .14)}.v-theme--liquidGlass .v-divider{opacity:1}.v-theme--liquidGlass :is(.v-table,.v-table__wrapper,.v-table>.v-table__wrapper>table){background:0 0}.v-theme--liquidGlass :is(.v-table thead th,.v-data-table__th){letter-spacing:0;color:rgba(var(--v-theme-on-surface), .5);border-bottom:1px solid rgba(var(--v-border-color), .14);background:0 0;font-size:.8125rem;font-weight:500}@media (prefers-reduced-transparency:reduce){.v-theme--liquidGlass.v-application{background-image:none}.v-theme--liquidGlass :is(.v-card,.v-app-bar,.v-toolbar,.v-navigation-drawer,.v-table,.v-expansion-panels):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgb(var(--v-theme-surface));backdrop-filter:none}}.v-theme--darkGlass :is(.v-card,.v-app-bar,.v-navigation-drawer,.v-toolbar):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgba(var(--v-theme-surface), .62);backdrop-filter:blur(18px)saturate(160%);border:1px solid rgba(var(--v-border-color), var(--v-border-opacity))}.v-theme--darkGlass .v-card.v-card--variant-elevated{box-shadow:inset 0 1px 0 rgba(var(--v-theme-primary), .28), 0 8px 32px rgba(var(--v-shadow-color), .45)}.v-theme--darkGlass:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--darkGlass :is(.v-menu,.v-dialog)>.v-overlay__content{backdrop-filter:blur(18px)saturate(160%);box-shadow:0 16px 48px rgba(var(--v-shadow-color), .55)}.v-theme--darkGlass .v-field.v-field--variant-solo-filled .v-field__overlay{background-color:rgba(var(--v-theme-surface-bright), .45)}.v-theme--darkGlass .v-btn.v-btn--variant-flat:not(.v-btn--disabled){box-shadow:0 4px 20px rgba(var(--v-theme-primary), .35)}.v-theme--darkGlass .v-tab__slider{box-shadow:0 0 12px rgba(var(--v-theme-primary), .8)}.v-theme--darkGlass .v-slider-thumb__surface{box-shadow:0 0 0 6px rgba(var(--v-theme-primary), .16)}.v-theme--darkGlass .v-switch__track{backdrop-filter:blur(6px);border:1px solid rgba(var(--v-border-color), var(--v-border-opacity))}@media (prefers-reduced-transparency:reduce){.v-theme--darkGlass :is(.v-card,.v-app-bar,.v-navigation-drawer,.v-toolbar):not([class*=bg-],.v-card--variant-text,.v-card--variant-plain){background-color:rgb(var(--v-theme-surface));backdrop-filter:none}}.v-theme--aurora.v-application{background-image:radial-gradient(60rem 40rem at 15% -10%,#7c5cff29,#0000 60%),radial-gradient(50rem 35rem at 95% 5%,#00d4ff1f,#0000 60%),radial-gradient(45rem 30rem at 50% 105%,#ff5caa1a,#0000 60%);background-attachment:fixed}.v-theme--aurora.v-application:before{content:"";z-index:0;pointer-events:none;background-image:radial-gradient(35rem 28rem at 25% 25%,#7c5cff24,#0000 60%),radial-gradient(30rem 24rem at 75% 40%,#00d4ff1a,#0000 60%),radial-gradient(28rem 22rem at 55% 85%,#ff5caa17,#0000 60%);animation:34s ease-in-out infinite alternate vw-aurora-drift;position:fixed;inset:-20%}.v-theme--aurora .v-card.v-card--variant-elevated{background-image:radial-gradient(36rem 18rem at 0 0,#7c5cff24,#0000 70%);box-shadow:0 12px 40px #0000008c}.v-theme--aurora :is(.v-card,.v-alert,:is(.v-list,.v-sheet,.v-banner):not(:is(.v-card,.v-overlay__content,.v-navigation-drawer,.v-expansion-panels,.v-list) *)):after{content:"";border-radius:inherit;padding:var(--v-vw-border-width);background:var(--v-vw-gradient);opacity:.45;pointer-events:none;-webkit-mask-composite:xor;-webkit-mask-source-type:auto,auto;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);-webkit-mask-position:0 0,0 0;mask-position:0 0,0 0;-webkit-mask-size:auto,auto;mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.v-theme--aurora .v-btn.v-btn--variant-flat.bg-primary{background-image:var(--v-vw-gradient-btn,var(--v-vw-gradient));box-shadow:0 6px 24px #7c5cff73}.v-theme--aurora .v-btn.v-btn--variant-flat.bg-primary .v-btn__overlay{opacity:0}.v-theme--aurora .v-tab__slider{background:var(--v-vw-gradient);box-shadow:0 0 16px #7c5cffcc}.v-theme--aurora .v-slider-track__fill{background:var(--v-vw-gradient)}.v-theme--aurora .v-slider-thumb__surface{box-shadow:0 0 0 6px #7c5cff2e,0 0 16px #7c5cff99}.v-theme--aurora .v-selection-control--dirty .v-switch__track{background-image:var(--v-vw-gradient);box-shadow:0 0 14px #7c5cff80}.v-theme--aurora:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--aurora :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:0 0 0 1px #9b8cff29,0 24px 64px #000000b3}.v-theme--aurora :is(.v-progress-linear__determinate,.v-progress-linear__indeterminate){background-image:var(--v-vw-gradient)}.v-theme--aurora :is(.v-alert__underlay,.v-chip__underlay){background-image:var(--v-vw-gradient);opacity:.2}.v-theme--aurora :is(.v-app-bar,.v-toolbar,.v-navigation-drawer){background-image:linear-gradient(100deg,#7c5cff29,#00d4ff0f 55%,#0000)}.v-theme--aurora .v-divider:not(.v-divider--vertical){opacity:1;border-image:linear-gradient(90deg,#0000,#9b8cff73 25%,#00d4ff59 75%,#0000) 1}.v-theme--aurora :is(.v-table thead th,.v-data-table__th){border-bottom:1px solid #0000;border-image:var(--v-vw-gradient) 1}.v-theme--aurora .v-list-item.v-list-item--active{background-image:linear-gradient(90deg,#7c5cff38,#0000 45%)}.v-theme--aurora .v-badge__badge{background-image:var(--v-vw-gradient-btn,var(--v-vw-gradient))}.v-theme--aurora .v-field.v-field--variant-solo-filled.v-field--focused:after{content:"";border-radius:inherit;padding:var(--v-vw-border-width);background:var(--v-vw-gradient);opacity:.7;pointer-events:none;-webkit-mask-composite:xor;-webkit-mask-source-type:auto,auto;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);mask-image:linear-gradient(#000 0 0),linear-gradient(#000 0 0);-webkit-mask-position:0 0,0 0;mask-position:0 0,0 0;-webkit-mask-size:auto,auto;mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.v-theme--aurora :is([class*=-display-],[class*=-headline-large]){background:var(--v-vw-gradient);color:#0000;-webkit-background-clip:text;background-clip:text}.v-theme--aurora .v-timeline-divider__dot{background-image:var(--v-vw-gradient);box-shadow:0 0 16px #7c5cff8c}.v-theme--aurora .v-timeline-divider__inner-dot:not([class*=bg-]){background-color:#0000!important}@keyframes vw-aurora-drift{0%{transform:translate(-3%,-2%)scale(1.06)}to{transform:translate(3%,2%)scale(1.14)}}@media (prefers-reduced-motion:reduce){.v-theme--aurora.v-application:before{animation:none}}.v-theme--neon :is(.v-card,.v-sheet,.v-list,.v-table,.v-expansion-panels){box-shadow:none}.v-theme--neon .v-card.v-card--variant-outlined{box-shadow:0 0 0 1px rgba(var(--v-theme-primary), .12)}.v-theme--neon .v-btn.v-btn--variant-outlined:not(.v-btn--disabled):hover{box-shadow:0 0 0 1px rgba(var(--v-theme-primary), .6), 0 0 18px rgba(var(--v-theme-primary), .35)}.v-theme--neon .v-btn.v-btn--variant-flat:not(.v-btn--disabled){box-shadow:0 0 22px rgba(var(--v-theme-primary), .45)}.v-theme--neon:is(.v-menu,.v-dialog)>.v-overlay__content,.v-theme--neon :is(.v-menu,.v-dialog)>.v-overlay__content{box-shadow:0 0 0 1px rgba(var(--v-theme-primary), .35), 0 12px 48px #000000bf}.v-theme--neon .v-app-bar{box-shadow:inset 0 -1px 0 rgba(var(--v-theme-primary), .3)}.v-theme--neon .v-slider-thumb__surface{box-shadow:0 0 12px rgba(var(--v-theme-primary), .6)}.v-theme--neon .v-tab__slider{box-shadow:0 0 14px rgba(var(--v-theme-primary), .9)}.v-theme--neon .v-selection-control--dirty .v-switch__track{box-shadow:0 0 14px rgba(var(--v-theme-primary), .55)}.v-theme--neon .v-expansion-panels{box-shadow:0 0 0 1px rgba(var(--v-theme-primary), .12)}.v-theme--neon :is(.v-timeline-divider__before,.v-timeline-divider__after){box-shadow:0 0 8px rgb(var(--v-theme-secondary))}.v-theme--neon .v-timeline-divider__dot{box-shadow:0 0 12px rgba(var(--v-theme-primary), .9)}
|
package/dist/themes/atlas.d.ts
CHANGED
|
@@ -31,6 +31,41 @@ export declare const atlasVariables: {
|
|
|
31
31
|
readonly 'vw-pop-scale': '1.08';
|
|
32
32
|
readonly 'vw-pop-duration': '180ms';
|
|
33
33
|
readonly 'vw-theme-transition': '320ms';
|
|
34
|
+
/**
|
|
35
|
+
* Overlays move at the same speed as everything else, which Vuetify's
|
|
36
|
+
* own 300ms fade does not. A menu opened two hundred times a day is the
|
|
37
|
+
* one surface where the difference between 140ms and 300ms stops being
|
|
38
|
+
* taste and becomes lag; the exit is quicker still, because a panel on
|
|
39
|
+
* its way out is already answered and only has to get off the screen.
|
|
40
|
+
*/
|
|
41
|
+
readonly 'vw-overlay-duration': '140ms';
|
|
42
|
+
readonly 'vw-overlay-exit': '100ms';
|
|
43
|
+
/**
|
|
44
|
+
* Keyboard focus, four times the hover it has to be told apart from.
|
|
45
|
+
* Vuetify's 0.12 against a 0.04 hover is a difference you have to look
|
|
46
|
+
* for, and the person driving an admin panel from the keyboard is the
|
|
47
|
+
* one who cannot afford to.
|
|
48
|
+
*/
|
|
49
|
+
readonly 'focus-opacity': 0.16;
|
|
50
|
+
/**
|
|
51
|
+
* The tonal fill under chips and alerts — this theme's whole status
|
|
52
|
+
* vocabulary, and it carries it at `size="small"` and `density="compact"`
|
|
53
|
+
* where Vuetify's 0.12 thins out to nearly nothing.
|
|
54
|
+
*/
|
|
55
|
+
readonly 'activated-opacity': 0.14;
|
|
56
|
+
/**
|
|
57
|
+
* A form here disables half its fields depending on the other half, so
|
|
58
|
+
* "off" has to stay readable rather than dissolve. Vuetify's 0.38 puts a
|
|
59
|
+
* label under 3:1 on this ground; 0.45 keeps it legible and still
|
|
60
|
+
* unmistakably inactive.
|
|
61
|
+
*/
|
|
62
|
+
readonly 'disabled-opacity': 0.45;
|
|
63
|
+
/**
|
|
64
|
+
* A table waiting on its data is an everyday sight here, not an edge
|
|
65
|
+
* case. Vuetify derives the block from `border-opacity`, which at 0.22
|
|
66
|
+
* draws a row of grey slabs heavier than the data they stand in for.
|
|
67
|
+
*/
|
|
68
|
+
readonly 'vw-skeleton-opacity': '0.09';
|
|
34
69
|
};
|
|
35
70
|
/** Component defaults. Identical across the family. */
|
|
36
71
|
export declare const atlasDefaults: VuetiwatchDefaults[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"atlas.d.ts","sourceRoot":"","sources":["../../src/themes/atlas.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAoCvE,2EAA2E;AAC3E,eAAO,MAAM,YAAY,SAAU,OAAO,GAAG,MAAM,GAAG,OAAO,KAAG,gBAAgB,EAe5E,CAAA;AAEJ,8DAA8D;AAC9D,eAAO,MAAM,cAAc;aACzB,uBAAuB,EAAE,IAAI;aAC7B,yBAAyB,EAAE,GAAG;aAC9B,eAAe,EAAE,IAAI;aACrB,WAAW,EAAE,2DAA2D;aAIxE,WAAW,EAAE,KAAK;aAClB,cAAc,EAAE,MAAM;aACtB,gBAAgB,EAAE,KAAK;aACvB,iBAAiB,EAAE,KAAK;aACxB,iBAAiB,EAAE,KAAK;aAGxB,yBAAyB,EAAE,KAAK;aAChC,kBAAkB,EAAE,MAAM;aAC1B,iBAAiB,EAAE,GAAG;aACtB,eAAe,EAAE,KAAK;aACtB,mBAAmB,EAAE,KAAK;aAC1B,qBAAqB,EAAE,UAAU;aAGjC,cAAc,EAAE,KAAK;aACrB,gBAAgB,EAAE,QAAQ;aAG1B,YAAY,EAAE,cAAc;aAC5B,sBAAsB,EAAE,KAAK;aAC7B,aAAa,EAAE,KAAK;aACpB,mBAAmB,EAAE,6BAA6B;aAGlD,oBAAoB,EAAE,OAAO;aAC7B,gBAAgB,EAAE,8BAA8B;aAChD,gBAAgB,EAAE,MAAM;aACxB,eAAe,EAAE,KAAK;aACtB,cAAc,EAAE,MAAM;aACtB,iBAAiB,EAAE,OAAO;aAC1B,qBAAqB,EAAE,OAAO;
|
|
1
|
+
{"version":3,"file":"atlas.d.ts","sourceRoot":"","sources":["../../src/themes/atlas.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAoCvE,2EAA2E;AAC3E,eAAO,MAAM,YAAY,SAAU,OAAO,GAAG,MAAM,GAAG,OAAO,KAAG,gBAAgB,EAe5E,CAAA;AAEJ,8DAA8D;AAC9D,eAAO,MAAM,cAAc;aACzB,uBAAuB,EAAE,IAAI;aAC7B,yBAAyB,EAAE,GAAG;aAC9B,eAAe,EAAE,IAAI;aACrB,WAAW,EAAE,2DAA2D;aAIxE,WAAW,EAAE,KAAK;aAClB,cAAc,EAAE,MAAM;aACtB,gBAAgB,EAAE,KAAK;aACvB,iBAAiB,EAAE,KAAK;aACxB,iBAAiB,EAAE,KAAK;aAGxB,yBAAyB,EAAE,KAAK;aAChC,kBAAkB,EAAE,MAAM;aAC1B,iBAAiB,EAAE,GAAG;aACtB,eAAe,EAAE,KAAK;aACtB,mBAAmB,EAAE,KAAK;aAC1B,qBAAqB,EAAE,UAAU;aAGjC,cAAc,EAAE,KAAK;aACrB,gBAAgB,EAAE,QAAQ;aAG1B,YAAY,EAAE,cAAc;aAC5B,sBAAsB,EAAE,KAAK;aAC7B,aAAa,EAAE,KAAK;aACpB,mBAAmB,EAAE,6BAA6B;aAGlD,oBAAoB,EAAE,OAAO;aAC7B,gBAAgB,EAAE,8BAA8B;aAChD,gBAAgB,EAAE,MAAM;aACxB,eAAe,EAAE,KAAK;aACtB,cAAc,EAAE,MAAM;aACtB,iBAAiB,EAAE,OAAO;aAC1B,qBAAqB,EAAE,OAAO;IAC9B;;;;;;OAMG;aACH,qBAAqB,EAAE,OAAO;aAC9B,iBAAiB,EAAE,OAAO;IAE1B;;;;;OAKG;aACH,eAAe,EAAE,IAAI;IACrB;;;;OAIG;aACH,mBAAmB,EAAE,IAAI;IACzB;;;;;OAKG;aACH,kBAAkB,EAAE,IAAI;IACxB;;;;OAIG;aACH,qBAAqB,EAAE,MAAM;CACrB,CAAA;AAEV,uDAAuD;AACvD,eAAO,MAAM,aAAa,EAAE,kBAAkB,EAkF7C,CAAA;AAED,eAAO,MAAM,KAAK,gDAmEhB,CAAA"}
|
package/dist/themes/atlas.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { bars, controls, fields, icons, tables } from '../util/defaults.js';
|
|
1
|
+
import { bars, controls, fields, icons, overlays, ripple, tables } from '../util/defaults.js';
|
|
2
2
|
import { defineTheme } from '../util/defineTheme.js';
|
|
3
3
|
/**
|
|
4
4
|
* The admin theme, and the first one here that comes as a family: `atlas`,
|
|
@@ -86,6 +86,41 @@ export const atlasVariables = {
|
|
|
86
86
|
'vw-pop-scale': '1.08',
|
|
87
87
|
'vw-pop-duration': '180ms',
|
|
88
88
|
'vw-theme-transition': '320ms',
|
|
89
|
+
/**
|
|
90
|
+
* Overlays move at the same speed as everything else, which Vuetify's
|
|
91
|
+
* own 300ms fade does not. A menu opened two hundred times a day is the
|
|
92
|
+
* one surface where the difference between 140ms and 300ms stops being
|
|
93
|
+
* taste and becomes lag; the exit is quicker still, because a panel on
|
|
94
|
+
* its way out is already answered and only has to get off the screen.
|
|
95
|
+
*/
|
|
96
|
+
'vw-overlay-duration': '140ms',
|
|
97
|
+
'vw-overlay-exit': '100ms',
|
|
98
|
+
/**
|
|
99
|
+
* Keyboard focus, four times the hover it has to be told apart from.
|
|
100
|
+
* Vuetify's 0.12 against a 0.04 hover is a difference you have to look
|
|
101
|
+
* for, and the person driving an admin panel from the keyboard is the
|
|
102
|
+
* one who cannot afford to.
|
|
103
|
+
*/
|
|
104
|
+
'focus-opacity': 0.16,
|
|
105
|
+
/**
|
|
106
|
+
* The tonal fill under chips and alerts — this theme's whole status
|
|
107
|
+
* vocabulary, and it carries it at `size="small"` and `density="compact"`
|
|
108
|
+
* where Vuetify's 0.12 thins out to nearly nothing.
|
|
109
|
+
*/
|
|
110
|
+
'activated-opacity': 0.14,
|
|
111
|
+
/**
|
|
112
|
+
* A form here disables half its fields depending on the other half, so
|
|
113
|
+
* "off" has to stay readable rather than dissolve. Vuetify's 0.38 puts a
|
|
114
|
+
* label under 3:1 on this ground; 0.45 keeps it legible and still
|
|
115
|
+
* unmistakably inactive.
|
|
116
|
+
*/
|
|
117
|
+
'disabled-opacity': 0.45,
|
|
118
|
+
/**
|
|
119
|
+
* A table waiting on its data is an everyday sight here, not an edge
|
|
120
|
+
* case. Vuetify derives the block from `border-opacity`, which at 0.22
|
|
121
|
+
* draws a row of grey slabs heavier than the data they stand in for.
|
|
122
|
+
*/
|
|
123
|
+
'vw-skeleton-opacity': '0.09',
|
|
89
124
|
};
|
|
90
125
|
/** Component defaults. Identical across the family. */
|
|
91
126
|
export const atlasDefaults = [
|
|
@@ -114,7 +149,36 @@ export const atlasDefaults = [
|
|
|
114
149
|
* each button floating on its own elevation.
|
|
115
150
|
*/
|
|
116
151
|
VBtnToggle: { variant: 'outlined', divided: true, density: 'compact' },
|
|
152
|
+
// Flush stacked rows rather than floating panels with gaps: a settings
|
|
153
|
+
// page is a list of settings, not a deck of cards.
|
|
154
|
+
VExpansionPanels: { variant: 'accordion' },
|
|
155
|
+
/**
|
|
156
|
+
* Half the controls on a console are icon-only, so a tooltip fires
|
|
157
|
+
* every time the cursor crosses the toolbar on its way somewhere else.
|
|
158
|
+
* A short wait means the tip appears when it was wanted and stays out
|
|
159
|
+
* of the way when it was not.
|
|
160
|
+
*/
|
|
161
|
+
VTooltip: { openDelay: 400 },
|
|
117
162
|
},
|
|
163
|
+
/**
|
|
164
|
+
* Nothing travels. A dropdown you open all day should not slide into
|
|
165
|
+
* place before it can be read, a dialog holds a form you start filling
|
|
166
|
+
* the moment it lands, and a tooltip that scales is a word changing size
|
|
167
|
+
* while you read it. Fading is the only motion here that does not ask to
|
|
168
|
+
* be waited out — and at 140ms it is barely motion at all.
|
|
169
|
+
*/
|
|
170
|
+
overlays({
|
|
171
|
+
dialog: 'fade-transition',
|
|
172
|
+
menu: 'fade-transition',
|
|
173
|
+
tooltip: 'fade-transition',
|
|
174
|
+
}),
|
|
175
|
+
/**
|
|
176
|
+
* No ripple. It is an animation about the weight of a surface, and this
|
|
177
|
+
* theme draws none — but the real cost is that it puts 300ms of spreading
|
|
178
|
+
* ink between a click and the look of an answer, on the screen where that
|
|
179
|
+
* click gets repeated all day.
|
|
180
|
+
*/
|
|
181
|
+
ripple(false),
|
|
118
182
|
// Compact throughout: an admin screen is a working surface, and a field
|
|
119
183
|
// at Vuetify's default height is a third taller than the row it sits in.
|
|
120
184
|
fields({ variant: 'outlined', density: 'compact' }),
|
|
@@ -195,6 +259,16 @@ export const atlas = defineTheme({
|
|
|
195
259
|
'shadow-color': '#0B101C',
|
|
196
260
|
'vw-overlay-border': '1px solid rgba(var(--v-border-color), 0.1)',
|
|
197
261
|
'vw-overlay-shadow': '0 8px 28px rgba(var(--v-shadow-color), 0.1)',
|
|
262
|
+
/**
|
|
263
|
+
* Ids, tokens and shortcuts are what an admin panel is full of, and
|
|
264
|
+
* Vuetify draws both on a grey that belongs to no theme. They take
|
|
265
|
+
* the same tinted band the table headers and filled rows use, so a
|
|
266
|
+
* key cap reads as part of the panel rather than pasted onto it.
|
|
267
|
+
*/
|
|
268
|
+
'theme-code': '#F5F8FD',
|
|
269
|
+
'theme-on-code': '#0B101C',
|
|
270
|
+
'theme-kbd': '#F5F8FD',
|
|
271
|
+
'theme-on-kbd': '#0B101C',
|
|
198
272
|
...atlasVariables,
|
|
199
273
|
},
|
|
200
274
|
},
|
package/dist/themes/atlas.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"atlas.js","sourceRoot":"","sources":["../../src/themes/atlas.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"atlas.js","sourceRoot":"","sources":["../../src/themes/atlas.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"atlasDark.d.ts","sourceRoot":"","sources":["../../src/themes/atlasDark.ts"],"names":[],"mappings":"AAGA;;;;;GAKG;AACH,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"atlasDark.d.ts","sourceRoot":"","sources":["../../src/themes/atlasDark.ts"],"names":[],"mappings":"AAGA;;;;;GAKG;AACH,eAAO,MAAM,SAAS,oDA2DpB,CAAA"}
|
package/dist/themes/atlasDark.js
CHANGED
|
@@ -56,6 +56,11 @@ export const atlasDark = defineTheme({
|
|
|
56
56
|
'shadow-color': '#000000',
|
|
57
57
|
'vw-overlay-border': '1px solid rgba(var(--v-border-color), 0.16)',
|
|
58
58
|
'vw-overlay-shadow': '0 12px 32px rgba(0, 0, 0, 0.5)',
|
|
59
|
+
// The same tinted band as the light variant, in this ground's register.
|
|
60
|
+
'theme-code': '#151E35',
|
|
61
|
+
'theme-on-code': '#EEF2F9',
|
|
62
|
+
'theme-kbd': '#151E35',
|
|
63
|
+
'theme-on-kbd': '#EEF2F9',
|
|
59
64
|
...atlasVariables,
|
|
60
65
|
},
|
|
61
66
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"atlasDark.js","sourceRoot":"","sources":["../../src/themes/atlasDark.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AACxE,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAEpD;;;;;GAKG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,WAAW,CAAC;IACnC,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE;QACJ,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,0EAA0E;QACvF,IAAI,EAAE,IAAI;QACV,SAAS,EAAE,SAAS;QACpB,MAAM,EAAE,OAAO;QACf,OAAO,EAAE,MAAM;QACf,OAAO,EAAE,YAAY,CAAC,MAAM,CAAC;QAC7B,MAAM,EAAE,CAAC,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,CAAC;QACpD,KAAK,EAAE,CAAC,OAAO,CAAC;KACjB;IACD,KAAK,EAAE;QACL,IAAI,EAAE,IAAI;QACV,MAAM,EAAE;YACN,UAAU,EAAE,SAAS;YACrB,OAAO,EAAE,SAAS;YAClB,gBAAgB,EAAE,SAAS;YAC3B,eAAe,EAAE,SAAS;YAC1B,iBAAiB,EAAE,SAAS;YAC5B,oBAAoB,EAAE,SAAS;YAC/B,OAAO,EAAE,SAAS;YAClB,kBAAkB,EAAE,SAAS;YAC7B,SAAS,EAAE,SAAS;YACpB,oBAAoB,EAAE,SAAS;YAC/B,KAAK,EAAE,SAAS;YAChB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE,SAAS;YAClB,YAAY,EAAE,SAAS;YACvB,eAAe,EAAE,SAAS;YAC1B;;;;;eAKG;YACH,YAAY,EAAE,SAAS;YACvB,cAAc,EAAE,SAAS;YACzB,UAAU,EAAE,SAAS;SACtB;QACD,SAAS,EAAE;YACT,gEAAgE;YAChE,mBAAmB;YACnB,cAAc,EAAE,SAAS;YACzB,gBAAgB,EAAE,IAAI;YACtB,cAAc,EAAE,SAAS;YACzB,mBAAmB,EAAE,6CAA6C;YAClE,mBAAmB,EAAE,gCAAgC;YACrD,GAAG,cAAc;SAClB;KACF;IACD,QAAQ,EAAE,aAAa;CACxB,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"atlasDark.js","sourceRoot":"","sources":["../../src/themes/atlasDark.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AACxE,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAEpD;;;;;GAKG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,WAAW,CAAC;IACnC,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE;QACJ,KAAK,EAAE,YAAY;QACnB,WAAW,EAAE,0EAA0E;QACvF,IAAI,EAAE,IAAI;QACV,SAAS,EAAE,SAAS;QACpB,MAAM,EAAE,OAAO;QACf,OAAO,EAAE,MAAM;QACf,OAAO,EAAE,YAAY,CAAC,MAAM,CAAC;QAC7B,MAAM,EAAE,CAAC,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,CAAC;QACpD,KAAK,EAAE,CAAC,OAAO,CAAC;KACjB;IACD,KAAK,EAAE;QACL,IAAI,EAAE,IAAI;QACV,MAAM,EAAE;YACN,UAAU,EAAE,SAAS;YACrB,OAAO,EAAE,SAAS;YAClB,gBAAgB,EAAE,SAAS;YAC3B,eAAe,EAAE,SAAS;YAC1B,iBAAiB,EAAE,SAAS;YAC5B,oBAAoB,EAAE,SAAS;YAC/B,OAAO,EAAE,SAAS;YAClB,kBAAkB,EAAE,SAAS;YAC7B,SAAS,EAAE,SAAS;YACpB,oBAAoB,EAAE,SAAS;YAC/B,KAAK,EAAE,SAAS;YAChB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE,SAAS;YAClB,YAAY,EAAE,SAAS;YACvB,eAAe,EAAE,SAAS;YAC1B;;;;;eAKG;YACH,YAAY,EAAE,SAAS;YACvB,cAAc,EAAE,SAAS;YACzB,UAAU,EAAE,SAAS;SACtB;QACD,SAAS,EAAE;YACT,gEAAgE;YAChE,mBAAmB;YACnB,cAAc,EAAE,SAAS;YACzB,gBAAgB,EAAE,IAAI;YACtB,cAAc,EAAE,SAAS;YACzB,mBAAmB,EAAE,6CAA6C;YAClE,mBAAmB,EAAE,gCAAgC;YACrD,wEAAwE;YACxE,YAAY,EAAE,SAAS;YACvB,eAAe,EAAE,SAAS;YAC1B,WAAW,EAAE,SAAS;YACtB,cAAc,EAAE,SAAS;YACzB,GAAG,cAAc;SAClB;KACF;IACD,QAAQ,EAAE,aAAa;CACxB,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"atlasSepia.d.ts","sourceRoot":"","sources":["../../src/themes/atlasSepia.ts"],"names":[],"mappings":"AAGA;;;;;;;;GAQG;AACH,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"atlasSepia.d.ts","sourceRoot":"","sources":["../../src/themes/atlasSepia.ts"],"names":[],"mappings":"AAGA;;;;;;;;GAQG;AACH,eAAO,MAAM,UAAU,qDAoDrB,CAAA"}
|
|
@@ -52,6 +52,11 @@ export const atlasSepia = defineTheme({
|
|
|
52
52
|
'shadow-color': '#3B332A',
|
|
53
53
|
'vw-overlay-border': '1px solid rgba(var(--v-border-color), 0.12)',
|
|
54
54
|
'vw-overlay-shadow': '0 8px 28px rgba(var(--v-shadow-color), 0.14)',
|
|
55
|
+
// The same tinted band as the light variant, in the warm register.
|
|
56
|
+
'theme-code': '#F4EEE3',
|
|
57
|
+
'theme-on-code': '#241E16',
|
|
58
|
+
'theme-kbd': '#F4EEE3',
|
|
59
|
+
'theme-on-kbd': '#241E16',
|
|
55
60
|
...atlasVariables,
|
|
56
61
|
},
|
|
57
62
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"atlasSepia.js","sourceRoot":"","sources":["../../src/themes/atlasSepia.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AACxE,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAEpD;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG,WAAW,CAAC;IACpC,IAAI,EAAE,YAAY;IAClB,IAAI,EAAE;QACJ,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,kEAAkE;QAC/E,IAAI,EAAE,KAAK;QACX,SAAS,EAAE,SAAS;QACpB,MAAM,EAAE,OAAO;QACf,OAAO,EAAE,OAAO;QAChB,OAAO,EAAE,YAAY,CAAC,OAAO,CAAC;QAC9B,MAAM,EAAE,CAAC,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,CAAC;QACpD,KAAK,EAAE,CAAC,OAAO,CAAC;KACjB;IACD,KAAK,EAAE;QACL,IAAI,EAAE,KAAK;QACX,MAAM,EAAE;YACN,UAAU,EAAE,SAAS;YACrB,OAAO,EAAE,SAAS;YAClB,gBAAgB,EAAE,SAAS;YAC3B,eAAe,EAAE,SAAS;YAC1B,iBAAiB,EAAE,SAAS;YAC5B,oBAAoB,EAAE,SAAS;YAC/B,mEAAmE;YACnE,wBAAwB;YACxB,OAAO,EAAE,SAAS;YAClB,kBAAkB,EAAE,SAAS;YAC7B,SAAS,EAAE,SAAS;YACpB,oBAAoB,EAAE,SAAS;YAC/B,KAAK,EAAE,SAAS;YAChB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE,SAAS;YAClB,YAAY,EAAE,SAAS;YACvB,eAAe,EAAE,SAAS;SAC3B;QACD,SAAS,EAAE;YACT,qEAAqE;YACrE,0CAA0C;YAC1C,cAAc,EAAE,SAAS;YACzB,gBAAgB,EAAE,IAAI;YACtB,cAAc,EAAE,SAAS;YACzB,mBAAmB,EAAE,6CAA6C;YAClE,mBAAmB,EAAE,8CAA8C;YACnE,GAAG,cAAc;SAClB;KACF;IACD,QAAQ,EAAE,aAAa;CACxB,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"atlasSepia.js","sourceRoot":"","sources":["../../src/themes/atlasSepia.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AACxE,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAEpD;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG,WAAW,CAAC;IACpC,IAAI,EAAE,YAAY;IAClB,IAAI,EAAE;QACJ,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,kEAAkE;QAC/E,IAAI,EAAE,KAAK;QACX,SAAS,EAAE,SAAS;QACpB,MAAM,EAAE,OAAO;QACf,OAAO,EAAE,OAAO;QAChB,OAAO,EAAE,YAAY,CAAC,OAAO,CAAC;QAC9B,MAAM,EAAE,CAAC,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,CAAC;QACpD,KAAK,EAAE,CAAC,OAAO,CAAC;KACjB;IACD,KAAK,EAAE;QACL,IAAI,EAAE,KAAK;QACX,MAAM,EAAE;YACN,UAAU,EAAE,SAAS;YACrB,OAAO,EAAE,SAAS;YAClB,gBAAgB,EAAE,SAAS;YAC3B,eAAe,EAAE,SAAS;YAC1B,iBAAiB,EAAE,SAAS;YAC5B,oBAAoB,EAAE,SAAS;YAC/B,mEAAmE;YACnE,wBAAwB;YACxB,OAAO,EAAE,SAAS;YAClB,kBAAkB,EAAE,SAAS;YAC7B,SAAS,EAAE,SAAS;YACpB,oBAAoB,EAAE,SAAS;YAC/B,KAAK,EAAE,SAAS;YAChB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,SAAS;YAClB,OAAO,EAAE,SAAS;YAClB,YAAY,EAAE,SAAS;YACvB,eAAe,EAAE,SAAS;SAC3B;QACD,SAAS,EAAE;YACT,qEAAqE;YACrE,0CAA0C;YAC1C,cAAc,EAAE,SAAS;YACzB,gBAAgB,EAAE,IAAI;YACtB,cAAc,EAAE,SAAS;YACzB,mBAAmB,EAAE,6CAA6C;YAClE,mBAAmB,EAAE,8CAA8C;YACnE,mEAAmE;YACnE,YAAY,EAAE,SAAS;YACvB,eAAe,EAAE,SAAS;YAC1B,WAAW,EAAE,SAAS;YACtB,cAAc,EAAE,SAAS;YACzB,GAAG,cAAc;SAClB;KACF;IACD,QAAQ,EAAE,aAAa;CACxB,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora.d.ts","sourceRoot":"","sources":["../../src/themes/aurora.ts"],"names":[],"mappings":"AAGA;;;;;;;GAOG;AACH,eAAO,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"aurora.d.ts","sourceRoot":"","sources":["../../src/themes/aurora.ts"],"names":[],"mappings":"AAGA;;;;;;;GAOG;AACH,eAAO,MAAM,MAAM,iDA0HjB,CAAA"}
|
package/dist/themes/aurora.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { bars, fields, icons } from '../util/defaults.js';
|
|
1
|
+
import { bars, fields, icons, overlays } from '../util/defaults.js';
|
|
2
2
|
import { defineTheme } from '../util/defineTheme.js';
|
|
3
3
|
/**
|
|
4
4
|
* The showcase theme: the visual language current AI products landed on —
|
|
@@ -82,6 +82,18 @@ export const aurora = defineTheme({
|
|
|
82
82
|
'vw-pop-scale': '1.28',
|
|
83
83
|
'vw-pop-duration': '300ms',
|
|
84
84
|
'vw-theme-transition': '560ms',
|
|
85
|
+
// The showcase theme, so the overlays show off too.
|
|
86
|
+
'vw-overlay-duration': '300ms',
|
|
87
|
+
'vw-overlay-exit': '200ms',
|
|
88
|
+
// Saturated ground, saturated states.
|
|
89
|
+
'focus-opacity': 0.18,
|
|
90
|
+
'activated-opacity': 0.16,
|
|
91
|
+
/**
|
|
92
|
+
* Vuetify tints a raised surface with plain white on a dark ground.
|
|
93
|
+
* Here the light in the room is violet, so the tint that stands for
|
|
94
|
+
* height is the theme's own hue rather than a neutral.
|
|
95
|
+
*/
|
|
96
|
+
'elevation-overlay-color': '#7C5CFF',
|
|
85
97
|
// The line is the theme's own gradient, top to bottom.
|
|
86
98
|
'vw-timeline-line': 'var(--v-vw-gradient)',
|
|
87
99
|
'vw-timeline-line-width': '2px',
|
|
@@ -106,6 +118,13 @@ export const aurora = defineTheme({
|
|
|
106
118
|
ratingFull: 'mdi-star',
|
|
107
119
|
ratingEmpty: 'mdi-star-outline',
|
|
108
120
|
}),
|
|
121
|
+
// Everything swells into place, at the length the rest of the theme
|
|
122
|
+
// moves on.
|
|
123
|
+
overlays({
|
|
124
|
+
dialog: 'scale-transition',
|
|
125
|
+
menu: 'scale-transition',
|
|
126
|
+
tooltip: 'scale-transition',
|
|
127
|
+
}),
|
|
109
128
|
],
|
|
110
129
|
});
|
|
111
130
|
//# sourceMappingURL=aurora.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora.js","sourceRoot":"","sources":["../../src/themes/aurora.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"aurora.js","sourceRoot":"","sources":["../../src/themes/aurora.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"brutalist.d.ts","sourceRoot":"","sources":["../../src/themes/brutalist.ts"],"names":[],"mappings":"AAGA;;;;;;;GAOG;AACH,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"brutalist.d.ts","sourceRoot":"","sources":["../../src/themes/brutalist.ts"],"names":[],"mappings":"AAGA;;;;;;;GAOG;AACH,eAAO,MAAM,SAAS,oDAoLpB,CAAA"}
|