@iamproperty/components 5.5.1-beta-1 → 5.5.1-beta-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.
Files changed (88) hide show
  1. package/assets/css/components/actionbar.css +1 -1
  2. package/assets/css/components/actionbar.css.map +1 -1
  3. package/assets/css/components/applied-filters.css +1 -1
  4. package/assets/css/components/applied-filters.css.map +1 -1
  5. package/assets/css/components/card.css +1 -1
  6. package/assets/css/components/card.css.map +1 -1
  7. package/assets/css/components/card.global.css +1 -1
  8. package/assets/css/components/card.global.css.map +1 -1
  9. package/assets/css/components/charts.css +1 -1
  10. package/assets/css/components/charts.css.map +1 -1
  11. package/assets/css/components/fileupload.css.map +1 -1
  12. package/assets/css/components/nav.css.map +1 -1
  13. package/assets/css/components/slider.css.map +1 -1
  14. package/assets/css/components/tabs.css +1 -1
  15. package/assets/css/components/tabs.css.map +1 -1
  16. package/assets/css/core.min.css +1 -1
  17. package/assets/css/core.min.css.map +1 -1
  18. package/assets/css/style.min.css +1 -1
  19. package/assets/css/style.min.css.map +1 -1
  20. package/assets/js/components/accordion/accordion.component.min.js +1 -1
  21. package/assets/js/components/actionbar/actionbar.component.js +12 -3
  22. package/assets/js/components/actionbar/actionbar.component.min.js +6 -6
  23. package/assets/js/components/actionbar/actionbar.component.min.js.map +1 -1
  24. package/assets/js/components/address-lookup/address-lookup.component.min.js +1 -1
  25. package/assets/js/components/applied-filters/applied-filters.component.min.js +6 -6
  26. package/assets/js/components/applied-filters/applied-filters.component.min.js.map +1 -1
  27. package/assets/js/components/card/card.component.min.js +3 -3
  28. package/assets/js/components/chart/chart.component.js +71 -0
  29. package/assets/js/components/collapsible-side/collapsible-side.component.min.js +1 -1
  30. package/assets/js/components/fileupload/fileupload.component.js +1 -1
  31. package/assets/js/components/fileupload/fileupload.component.min.js +5 -5
  32. package/assets/js/components/fileupload/fileupload.component.min.js.map +1 -1
  33. package/assets/js/components/filterlist/filterlist.component.min.js +1 -1
  34. package/assets/js/components/header/header.component.min.js +1 -1
  35. package/assets/js/components/nav/nav.component.min.js +1 -1
  36. package/assets/js/components/notification/notification.component.min.js +1 -1
  37. package/assets/js/components/pagination/pagination.component.min.js +1 -1
  38. package/assets/js/components/search/search.component.min.js +1 -1
  39. package/assets/js/components/search/search.component.min.js.map +1 -1
  40. package/assets/js/components/table/table.component.js +2 -2
  41. package/assets/js/components/table/table.component.min.js +6 -6
  42. package/assets/js/components/table/table.component.min.js.map +1 -1
  43. package/assets/js/components/tabs/tabs.component.min.js +2 -2
  44. package/assets/js/dynamic.min.js +1 -1
  45. package/assets/js/dynamic.min.js.map +1 -1
  46. package/assets/js/modules/applied-filters.js +39 -7
  47. package/assets/js/modules/chart.js +613 -111
  48. package/assets/js/modules/fileupload.js +11 -0
  49. package/assets/js/modules/helpers.js +16 -0
  50. package/assets/js/modules/table.js +62 -11
  51. package/assets/js/scripts.bundle.js +31 -31
  52. package/assets/js/scripts.bundle.js.map +1 -1
  53. package/assets/js/scripts.bundle.min.js +2 -2
  54. package/assets/js/scripts.bundle.min.js.map +1 -1
  55. package/assets/sass/_elements.scss +1 -1
  56. package/assets/sass/_functions/variables.scss +80 -0
  57. package/assets/sass/_utilities.scss +1 -0
  58. package/assets/sass/components/actionbar.scss +16 -0
  59. package/assets/sass/components/applied-filters.scss +6 -48
  60. package/assets/sass/components/card.global.scss +4 -0
  61. package/assets/sass/components/card.scss +1 -1
  62. package/assets/sass/components/charts.scss +981 -234
  63. package/assets/sass/components/tabs.scss +10 -1
  64. package/assets/sass/elements/badge-tag.scss +82 -0
  65. package/assets/sass/elements/buttons.scss +13 -1
  66. package/assets/sass/elements/details.scss +94 -5
  67. package/assets/sass/elements/dialog.scss +2 -0
  68. package/assets/sass/elements/forms.scss +26 -22
  69. package/assets/sass/elements/tooltips.scss +4 -3
  70. package/assets/sass/foundations/root.scss +11 -0
  71. package/assets/sass/helpers/wider-colours.scss +11 -0
  72. package/assets/ts/components/actionbar/actionbar.component.ts +14 -3
  73. package/assets/ts/components/chart/README.md +37 -0
  74. package/assets/ts/components/chart/chart.component.ts +98 -0
  75. package/assets/ts/components/fileupload/fileupload.component.ts +1 -1
  76. package/assets/ts/components/table/table.component.ts +2 -2
  77. package/assets/ts/modules/applied-filters.ts +61 -7
  78. package/assets/ts/modules/chart.ts +808 -119
  79. package/assets/ts/modules/fileupload.ts +19 -0
  80. package/assets/ts/modules/helpers.ts +23 -1
  81. package/assets/ts/modules/table.ts +86 -12
  82. package/dist/components.es.js +348 -329
  83. package/dist/components.umd.js +58 -62
  84. package/dist/style.css +1 -1
  85. package/package.json +1 -1
  86. package/src/components/AppliedFilters/AppliedFilters.vue +1 -1
  87. package/src/components/Chart/Chart.vue +26 -96
  88. package/assets/sass/elements/badge.scss +0 -29
@@ -1 +1 @@
1
- :host{background-color:#fcfcfc}.actionbar__wrapper{position:relative;z-index:10;height:4.25rem;container-type:inline-size}.views,.selectall{position:absolute !important;top:50%;left:1.5rem;transform:translate(0, -50%);z-index:10}@media screen and (min-width: 36em){.views,.selectall{left:2rem}}.views .btn-action:not(:last-child),.selectall .btn-action:not(:last-child){margin-right:0.25rem !important}.selectall{width:2.5rem;overflow:hidden}.selectall label{height:2.5rem}@media screen and (min-width: 36em){.selectall{width:auto;overflow:visible}}.actionbar [data-search]{display:none}:host([data-search]) .actionbar [data-search]{display:block;margin:0 0 0 1rem}:is(.actionbar,.actionbar--selected,.actionbar--search){border-top-left-radius:var(--actionbar-radius, 0.625rem);border-top-right-radius:var(--actionbar-radius, 0.625rem);padding:0 1.5rem;flex-wrap:nowrap;justify-content:flex-end;align-items:center;height:4.25rem;inset:0}@supports selector(:has(*)){:is(.actionbar,.actionbar--selected,.actionbar--search){position:absolute}}@container (width > 23.4375em){:is(.actionbar,.actionbar--selected,.actionbar--search){padding:0 2rem}}.actionbar{display:flex}.actionbar--selected{background-color:var(--colour-canvas);display:flex;pointer-events:none}@media screen and (prefers-color-scheme: light){.actionbar--selected{background-color:#e6eaec}}@supports selector(:has(*)){.actionbar--selected{opacity:0}}.actionbar--search{background-color:var(--colour-canvas);display:flex;z-index:2;position:relative;opacity:0;pointer-events:none}@media screen and (prefers-color-scheme: light){.actionbar--search{background-color:#e6eaec}}.selectall:has(input:checked)~.actionbar,.selectall:has(input:indeterminate)~.actionbar{opacity:0;pointer-events:none}.selectall:has(input:checked)~.actionbar--selected,.selectall:has(input:indeterminate)~.actionbar--selected{opacity:1;pointer-events:all}.actionbar--search.show{opacity:1;pointer-events:all}.actionbar__wrapper:has(.actionbar--search.show)>*:not(.actionbar--search.show){opacity:0;pointer-events:none}::slotted(*:not([slot=overflow])){margin-top:0 !important;margin-bottom:0 !important;margin-left:1rem !important;margin-right:0 !important}::slotted(.btn:not(.btn-action)){order:2}::slotted([data-single]){pointer-events:none;opacity:.5}:host([data-selected="1"]) ::slotted([data-single]){pointer-events:all;opacity:1}::slotted(hr){height:2rem;color:#9d9d9d !important;width:1px;display:none}@container (width > 48em){::slotted(hr){display:block}}.safe-area{display:flex;flex-wrap:nowrap;justify-content:flex-end;align-items:center;width:13.125rem;overflow:visible;position:relative}@container (width > 23.4375em){.safe-area{width:28.125rem}}@container (width > 48em){.safe-area{width:46.875rem}}.safe-area .body{display:contents}:host([data-switchviews]) .safe-area{width:9rem}::slotted(.btn-compact[slot=selected-overflow]),::slotted(.btn-compact[slot=overflow]){max-width:none !important;text-indent:0 !important;width:auto !important;text-align:left !important;padding-left:0 !important;background:none !important;border:none !important}::slotted(.btn-compact[slot=selected-overflow]):before,::slotted(.btn-compact[slot=overflow]):before{position:static !important;line-height:inherit !important}.dialog__wrapper.dialog-overflow{margin-left:.5rem;margin-right:-0.5rem}.actionbar--search .btn{margin:0;margin-left:-0.75rem !important;margin-right:auto !important}.search-wrapper{width:calc(100% - 3.25rem);max-width:21.875rem !important;margin:0 !important}@container (width > 48em){.search-wrapper{max-width:28.125rem !important}}.search-wrapper input{padding-top:0.5rem;padding-bottom:0.5rem;min-height:2.5rem !important;max-height:2.5rem !important}.search-wrapper :is(.prefix,.suffix){padding:0.5rem !important;min-height:2.5rem !important;max-height:2.5rem !important;min-width:2.5rem !important;max-width:2.5rem !important;line-height:1.5rem !important}/*# sourceMappingURL=actionbar.css.map */
1
+ :host{background-color:#fcfcfc}.actionbar__wrapper{position:relative;z-index:10;height:4.25rem;container-type:inline-size}.views,.selectall{position:absolute !important;top:50%;left:1.5rem;transform:translate(0, -50%);z-index:10}@media screen and (min-width: 36em){.views,.selectall{left:2rem}}.views .btn-action:not(:last-child),.selectall .btn-action:not(:last-child){margin-right:0.25rem !important}.selectall{width:2.5rem;overflow:hidden}.selectall label{height:2.5rem}@media screen and (min-width: 36em){.selectall{width:auto;overflow:visible}}.actionbar [data-search]{display:none}:host([data-search]) .actionbar [data-search]{display:block;margin:0 0 0 1rem}:is(.actionbar,.actionbar--selected,.actionbar--search){border-top-left-radius:var(--actionbar-radius, 0.625rem);border-top-right-radius:var(--actionbar-radius, 0.625rem);padding:0 1.5rem;flex-wrap:nowrap;justify-content:flex-end;align-items:center;height:4.25rem;inset:0}@supports selector(:has(*)){:is(.actionbar,.actionbar--selected,.actionbar--search){position:absolute}}@container (width > 23.4375em){:is(.actionbar,.actionbar--selected,.actionbar--search){padding:0 2rem}}.actionbar{display:flex}.actionbar--selected{background-color:var(--colour-canvas);display:flex;pointer-events:none}@media screen and (prefers-color-scheme: light){.actionbar--selected{background-color:#e6eaec}}@supports selector(:has(*)){.actionbar--selected{opacity:0}}.actionbar--search{background-color:var(--colour-canvas);display:flex;z-index:2;position:relative;opacity:0;pointer-events:none}@media screen and (prefers-color-scheme: light){.actionbar--search{background-color:#e6eaec}}.selectall:has(input:checked)~.actionbar,.selectall:has(input:indeterminate)~.actionbar{opacity:0;pointer-events:none}.selectall:has(input:checked)~.actionbar--selected,.selectall:has(input:indeterminate)~.actionbar--selected{opacity:1;pointer-events:all}.actionbar--search.show{opacity:1;pointer-events:all}.actionbar__wrapper:has(.actionbar--search.show)>*:not(.actionbar--search.show){opacity:0;pointer-events:none}::slotted(*:not([slot=overflow])){margin-top:0 !important;margin-bottom:0 !important;margin-left:1rem !important;margin-right:0 !important}::slotted(.btn:not(.btn-action)){order:2}::slotted([data-single]){pointer-events:none;opacity:.5}:host([data-selected="1"]) ::slotted([data-single]){pointer-events:all;opacity:1}::slotted(hr){height:2rem;color:#9d9d9d !important;width:1px;display:none}@container (width > 48em){::slotted(hr){display:block}}.safe-area{display:flex;flex-wrap:nowrap;justify-content:flex-end;align-items:center;width:13.125rem;overflow:visible;position:relative}@container (width > 23.4375em){.safe-area{width:28.125rem}}@container (width > 48em){.safe-area{width:46.875rem}}.safe-area .body{display:contents}:host([data-large-safe-area]) .safe-area{width:16.25rem}@container (width > 23.4375em){:host([data-large-safe-area]) .safe-area{width:38.75rem}}@container (width > 48em){:host([data-large-safe-area]) .safe-area{width:65.5rem}}:host([data-switchviews]) .safe-area{width:9rem}::slotted(.btn-compact[slot=selected-overflow]),::slotted(.btn-compact[slot=overflow]){max-width:none !important;text-indent:0 !important;width:auto !important;text-align:left !important;padding-left:0 !important;background:none !important;border:none !important}::slotted(.btn-compact[slot=selected-overflow]):before,::slotted(.btn-compact[slot=overflow]):before{position:static !important;line-height:inherit !important}.dialog__wrapper.dialog-overflow{margin-left:.5rem;margin-right:-0.5rem}.actionbar--search .btn{margin:0;margin-left:-0.75rem !important;margin-right:auto !important}.search-wrapper{width:calc(100% - 3.25rem);max-width:21.875rem !important;margin:0 !important}@container (width > 48em){.search-wrapper{max-width:28.125rem !important}}.search-wrapper input{padding-top:0.5rem;padding-bottom:0.5rem;min-height:2.5rem !important;max-height:2.5rem !important}.search-wrapper :is(.prefix,.suffix){padding:0.5rem !important;min-height:2.5rem !important;max-height:2.5rem !important;min-width:2.5rem !important;max-width:2.5rem !important;line-height:1.5rem !important}/*# sourceMappingURL=actionbar.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../sass/components/actionbar.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAEA,MACE,yBAGF,oBACE,kBACA,WACA,eACA,2BAIF,kBAEE,6BACA,QACA,YAMA,6BACA,WCnBE,oCDQJ,kBAOI,WAMF,4EACE,gCAIJ,WAEE,aACA,gBAEA,iBACE,cChCA,oCD0BJ,WAWI,WACA,kBAIJ,yBACE,aAGF,8CACE,cACA,kBAGF,wDAEE,yDACA,0DACA,iBACA,iBACA,yBACA,mBACA,eAKA,QAHA,4BAVF,wDAWI,mBCTA,+BDFJ,wDAgBI,gBAIJ,WAEE,aAGF,qBAEE,sCAOA,aAKA,oBChEE,gDDkDJ,qBAMI,0BAKF,4BAXF,qBAYE,WAKF,mBAEE,sCAMA,aACA,UACA,kBACA,UACA,oBC/EE,gDDmEJ,mBAMI,0BAUJ,wFAGE,UACA,oBAEF,4GAGE,UACA,mBAIF,wBAEE,UACA,mBAGF,gFACE,UACA,oBAKF,kCACE,wBACA,2BACA,4BACA,0BAGF,iCACE,QAIF,yBACE,oBACA,WAGF,oDACE,mBACA,UAGF,cACE,YACA,yBACA,UACA,aCvGE,0BDmGJ,cAQI,eAMJ,WAEE,aACA,iBACA,yBACA,mBACA,gBAYA,iBACA,kBC1IE,+BDuHJ,WAUI,iBC3HA,0BDiHJ,WAeI,iBAMF,iBACE,iBAIJ,qCAEE,WAKF,uFAGE,0BACA,yBACA,sBACA,2BACA,0BACA,2BACA,uBAEA,qGACE,2BACA,+BAIJ,iCACE,kBACA,qBAKF,wBAEE,SACA,gCACA,6BAGF,gBACE,2BACA,+BACA,oBCpLE,0BDiLJ,gBAOI,gCAGF,sBACE,mBACA,sBAEA,6BACA,6BAGF,qCAEE,0BACA,6BACA,6BACA,4BACA,4BACA","file":"actionbar.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../sass/components/actionbar.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAEA,MACE,yBAGF,oBACE,kBACA,WACA,eACA,2BAIF,kBAEE,6BACA,QACA,YAMA,6BACA,WCnBE,oCDQJ,kBAOI,WAMF,4EACE,gCAIJ,WAEE,aACA,gBAEA,iBACE,cChCA,oCD0BJ,WAWI,WACA,kBAIJ,yBACE,aAGF,8CACE,cACA,kBAGF,wDAEE,yDACA,0DACA,iBACA,iBACA,yBACA,mBACA,eAKA,QAHA,4BAVF,wDAWI,mBCTA,+BDFJ,wDAgBI,gBAIJ,WAEE,aAGF,qBAEE,sCAOA,aAKA,oBChEE,gDDkDJ,qBAMI,0BAKF,4BAXF,qBAYE,WAKF,mBAEE,sCAMA,aACA,UACA,kBACA,UACA,oBC/EE,gDDmEJ,mBAMI,0BAUJ,wFAGE,UACA,oBAEF,4GAGE,UACA,mBAIF,wBAEE,UACA,mBAGF,gFACE,UACA,oBAKF,kCACE,wBACA,2BACA,4BACA,0BAGF,iCACE,QAIF,yBACE,oBACA,WAGF,oDACE,mBACA,UAGF,cACE,YACA,yBACA,UACA,aCvGE,0BDmGJ,cAQI,eAMJ,WAEE,aACA,iBACA,yBACA,mBACA,gBAYA,iBACA,kBC1IE,+BDuHJ,WAUI,iBC3HA,0BDiHJ,WAeI,iBAMF,iBACE,iBAIJ,yCAEE,eCnJE,+BDiJJ,yCAMI,gBCjJA,0BD2IJ,yCAWI,eAKJ,qCAEE,WAKF,uFAGE,0BACA,yBACA,sBACA,2BACA,0BACA,2BACA,uBAEA,qGACE,2BACA,+BAIJ,iCACE,kBACA,qBAKF,wBAEE,SACA,gCACA,6BAGF,gBACE,2BACA,+BACA,oBCpME,0BDiMJ,gBAOI,gCAGF,sBACE,mBACA,sBAEA,6BACA,6BAGF,qCAEE,0BACA,6BACA,6BACA,4BACA,4BACA","file":"actionbar.css"}
@@ -1 +1 @@
1
- .applied-filters:not(.applied-filters--compact):not(:empty):before{content:"Applied filters";font-weight:bold;font-size:1.125rem;line-height:1.375rem;color:var(--colour-header);margin-bottom:1rem;display:block}.applied-filters:not(:empty){margin-bottom:1rem}::slotted(*:last-child){margin-bottom:0}.applied-filters .filter{border:1px solid var(--colour-border);padding:1rem 1.5rem 1rem 1.5rem;background:rgba(0,0,0,0);margin-right:.5rem !important;margin-bottom:.5rem !important;line-height:1.5rem;white-space:nowrap}.applied-filters .filter:after{content:"";display:inline-block;height:1.25rem;width:1.25rem;padding:0;margin-left:1.5rem;margin-bottom:-0.25rem;border:none;z-index:var(--index-focus);background:currentColor;mask-image:var(--icon-close);mask-size:100%;mask-repeat:no-repeat;mask-position:50% 50%;-webkit-mask-image:var(--icon-close);-webkit-mask-size:100%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:50% 50%}.applied-filters--compact .filter{background-color:var(--colour-light);border:none;padding:0.625rem;line-height:1rem;border-radius:0.3125rem}.applied-filters--compact .filter:after{margin-left:0.625rem;height:1rem;width:1rem;margin-bottom:-0.1rem}/*# sourceMappingURL=applied-filters.css.map */
1
+ .applied-filters:not(.applied-filters--compact):not(:empty):before{content:"Applied filters";font-weight:bold;font-size:1.125rem;line-height:1.375rem;color:var(--colour-header);display:block}:host(.applied-filters--hide-title) .applied-filters:before{display:none}:host(.applied-filters--show-set) .tag--not-set{display:none}/*# sourceMappingURL=applied-filters.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../sass/components/applied-filters.scss"],"names":[],"mappings":"AAIE,mEACE,0BACA,iBACA,mBACA,qBACA,2BACA,mBACA,cAGF,6BACE,mBAIJ,wBACE,gBAGF,yBAEE,sCACA,gCACA,yBACA,8BACA,+BACA,mBACA,mBAEA,+BACE,WACA,qBACA,eACA,cACA,UACA,mBACA,uBACA,YACA,2BACA,wBACA,6BACA,eACA,sBACA,sBACA,qCACA,uBACA,8BACA,8BAIJ,kCACE,qCACA,YACA,iBACA,iBACE,wBAEF,wCACE,qBACA,YACA,WACA","file":"applied-filters.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../sass/components/applied-filters.scss"],"names":[],"mappings":"AAIE,mEACE,0BACA,iBACA,mBACA,qBACA,2BACA,cAOF,4DACE,aAKF,gDACE","file":"applied-filters.css"}
@@ -1 +1 @@
1
- .card{--card-icon-right: 1rem;box-shadow:var(--card-box-shadow);border-radius:var(--card-border-radius);position:relative;font-weight:bold;font-size:1.125rem;line-height:1.5rem;color:var(--colour-primary);min-height:100%;width:100%;text-align:left;display:flex;flex-direction:column;overflow:hidden;z-index:0;background:var(--colour-canvas-2);outline:2px solid var(--colour-canvas-2);outline-offset:-2px}.card>*:not(.btn-compact){min-width:100%}.card.border-0{box-shadow:none;--card-left-padding: 0rem;outline-offset:1px !important}.card__body{position:relative;padding:var(--card-top-padding) var(--card-right-padding) 0 var(--card-left-padding);z-index:-1}.card__footer{margin-top:auto;padding:0 var(--card-right-padding) var(--card-bottom-padding) var(--card-left-padding)}.card:is(:hover,:focus) .link:after{width:50%}.card:has(.card__footer .link):before,.card:has(.card__footer .link):after{display:none}.card:before,.card:after{content:"";position:absolute;right:var(--card-icon-right);bottom:var(--card-bottom-padding);height:1.5rem;width:1.5rem;background:var(--colour-warning);border-radius:50%}.card:after{background:var(--colour-primary-theme);mask-image:var(--icon, var(--icon-arrow));mask-size:50%;mask-repeat:no-repeat;mask-position:50% 50%;-webkit-mask-image:var(--icon, var(--icon-arrow));-webkit-mask-size:50%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:50% 50%;z-index:2}.card:is(:hover,:focus,.hover){--card-icon-right: 0.5rem;outline:2px solid var(--colour, var(--colour-primary));outline-offset:-2px}.card:not([class*=colour-]):is(:hover,:focus,.hover):before{background:var(--colour-primary-theme)}.card:not([class*=colour-]):is(:hover,:focus,.hover):after{background:#fff}.card:is(:active,.active){--card-icon-right: 0.5rem;outline:none}.card:is(:active,.active):before{background:var(--colour-warning)}.card:is(:active,.active):after{background:var(--colour-primary)}.card:is(:active){background:#fcfcfc}.card span{display:block;font-weight:bold;padding-top:1.5rem;font-size:1rem}.card:has(.card__illustration) .card__body{align-items:center;display:flex}.card:has(.card__illustration) .card__body .card__illustration{height:4rem;width:4rem;margin-right:1.5rem;margin-top:-1.25rem;margin-bottom:-1.25rem;position:relative}.card:has(.card__illustration) .card__body .card__illustration img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain}.card .card__total{font-size:3rem;line-height:3rem;padding-right:1rem;margin-top:.5rem}.card.card--has-icon:not(.card--secondary):not(.card--filter){display:flex;align-items:center}.card.card--has-icon:not(.card--secondary):not(.card--filter):before,.card.card--has-icon:not(.card--secondary):not(.card--filter):after{top:calc(50% - .75rem);bottom:auto}.card.card--has-icon:not(.card--secondary):not(.card--filter) .card__body{padding-left:4rem;margin-block:auto;padding-bottom:var(--card-bottom-padding)}.card.card--has-icon:not(.card--secondary):not(.card--filter) .card__footer{padding:0;display:none}::slotted(i){font-size:1.5rem !important;margin:-3px var(--card-icon-right) 0 0 !important;vertical-align:middle !important}::slotted(i:not(.fa-light):not(.fa-bold)){font-weight:400 !important}::slotted(span:not(.badge)){display:block !important;font-weight:normal !important;font-size:1rem !important}::slotted(span:not(.badge):not([class*=pt-])){padding-top:1.5rem !important}.card__badges{position:absolute;top:0;right:.25rem;padding:.25rem;z-index:9;text-align:right;width:1}.card__head .card__badges{top:auto;bottom:0;text-align:left;left:.25rem;right:auto}.card[class*=colour-],.card--filter{border-left:0.75rem solid var(--colour, var(--colour-primary))}.card--filter{--top-padding: 1.5rem;--right-padding: 1rem;--bottom-padding: 1.5rem;--left-padding: 1rem}.card--filter:has(.card__total) .card__body{align-items:center;display:flex}.card--filter:before,.card--filter:after{display:none}.card--filter:is(:hover,:focus,.hover){outline:none}.card--filter:is(:hover,:focus,.hover) :is(.card__body,.card__footer){background:#eee}.card--filter:is(:checked,.checked,:active,.active){outline:2px solid var(--colour, var(--colour-primary));outline-offset:-2px}.card--filter:is(:checked,.checked,:active,.active) .card__body{background:none}.card--filter.card--has-icon{--bottom-padding: 1rem;border:none}.card--filter .icon{font-size:1.125rem !important;height:1.125rem !important;margin:0 0 .5rem 0 !important;font-weight:400 !important;display:block !important}.card--filter .card__total{margin-top:0;order:-1}@media screen and (prefers-color-scheme: dark){.card--filter .card__body{background:none !important}.card--filter:is(:hover,:focus,.hover,:active,.active):not(:checked,.checked){outline:2px solid var(--colour, var(--colour-primary)) !important;outline-offset:-2px}}.card--filter ::slotted(i){display:block !important;font-size:1.125rem !important;margin:0 0 .5rem 0 !important}.card:has(.card__head) .card__head{padding-bottom:0;padding-top:27%;position:relative;overflow:hidden;background:rgba(0,0,0,.1);z-index:-1}.card:has(.card__head) .card__head>img{position:absolute;top:0;left:0;width:102%;height:102%;object-fit:cover}.card.card--lg-image:has(.card__head) .card__head{padding-top:55%}:host([data-selected]) .card:before,:host([data-selected]) .card:after{display:none !important}:host(.card--flag){position:relative}:host(.card--flag):after{content:"";font-family:"Font Awesome 6 Pro";position:absolute;top:1rem;right:1rem;font-size:1rem;line-height:1;height:1rem;width:1rem;display:inline-block;font-weight:normal;color:var(--colour, var(--colour-primary))}.card--secondary{--card-top-padding: 1rem;--card-bottom-padding: 1.5rem}.card--secondary:before,.card--secondary:after{display:none}.card--secondary .btn-compact{position:absolute;top:0;right:0;margin:.5rem .5rem 0 0;z-index:99}.card--secondary:has(.btn-compact:is(:hover,:focus,:active)){pointer-events:none;outline:none}.card--secondary:has(.btn-compact:is(:hover,:focus,:active)) .card__body{background:none;border-color:rgba(0,0,0,0) !important}.card--secondary:has(.btn-compact:is(:hover,:focus,:active)) .btn-compact{pointer-events:all}.card--secondary ::slotted(i){display:block !important;font-size:2.5rem !important;margin:.5rem 0 .5rem 0 !important;line-height:2.5rem}/*# sourceMappingURL=card.css.map */
1
+ .card{--card-icon-right: 1rem;box-shadow:var(--card-box-shadow);border-radius:var(--card-border-radius);position:relative;font-weight:bold;font-size:1.125rem;line-height:1.5rem;color:var(--colour-primary);min-height:100%;width:100%;text-align:left;display:flex;flex-direction:column;overflow:hidden;z-index:0;background:var(--colour-canvas-2);outline:2px solid var(--colour-canvas-2);outline-offset:-2px}.card>*:not(.btn-compact){min-width:100%}.card.border-0{box-shadow:none;--card-left-padding: 0rem;outline-offset:1px !important}.card__body{position:relative;padding:var(--card-top-padding) var(--card-right-padding) 0 var(--card-left-padding);z-index:-1}.card__footer{margin-top:auto;padding:0 var(--card-right-padding) var(--card-bottom-padding) var(--card-left-padding)}.card:is(:hover,:focus) .link:after{width:50%}.card:has(.card__footer .link):before,.card:has(.card__footer .link):after{display:none}.card:before,.card:after{content:"";position:absolute;right:var(--card-icon-right);bottom:var(--card-bottom-padding);height:1.5rem;width:1.5rem;background:var(--colour-warning);border-radius:50%}.card:after{background:var(--colour-primary-theme);mask-image:var(--icon, var(--icon-arrow));mask-size:50%;mask-repeat:no-repeat;mask-position:50% 50%;-webkit-mask-image:var(--icon, var(--icon-arrow));-webkit-mask-size:50%;-webkit-mask-repeat:no-repeat;-webkit-mask-position:50% 50%;z-index:2}.card:is(:hover,:focus,.hover){--card-icon-right: 0.5rem;outline:2px solid var(--colour, var(--colour-primary));outline-offset:-2px}.card:not([class*=colour-]):is(:hover,:focus,.hover):before{background:var(--colour-primary-theme)}.card:not([class*=colour-]):is(:hover,:focus,.hover):after{background:#fff}.card:is(:active,.active){--card-icon-right: 0.5rem;outline:none}.card:is(:active,.active):before{background:var(--colour-warning)}.card:is(:active,.active):after{background:var(--colour-primary)}.card:is(:active){background:#fcfcfc}.card span{display:block;font-weight:bold;padding-top:1.5rem;font-size:1rem}.card:has(.card__illustration) .card__body{align-items:center;display:flex}.card:has(.card__illustration) .card__body .card__illustration{height:4rem;width:4rem;margin-right:1.5rem;margin-top:-1.25rem;margin-bottom:-1.25rem;position:relative}.card:has(.card__illustration) .card__body .card__illustration img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain}.card .card__total{font-size:3rem;line-height:3rem;padding-right:1rem;margin-top:.5rem}.card.card--has-icon:not(.card--secondary):not(.card--filter){display:flex;align-items:center}.card.card--has-icon:not(.card--secondary):not(.card--filter):before,.card.card--has-icon:not(.card--secondary):not(.card--filter):after{top:calc(50% - .75rem);bottom:auto}.card.card--has-icon:not(.card--secondary):not(.card--filter) .card__body{padding-left:4rem;margin-block:auto;padding-bottom:var(--card-bottom-padding)}.card.card--has-icon:not(.card--secondary):not(.card--filter) .card__footer{padding:0;display:none}::slotted(i){font-size:1.5rem !important;margin:-3px var(--card-icon-right) 0 0 !important;vertical-align:middle !important}::slotted(i:not(.fa-light):not(.fa-bold)){font-weight:400 !important}::slotted(span:not(.badge)){display:block !important;font-weight:normal !important;font-size:1rem !important}::slotted(span:not(.badge):not([class*=pt-])){padding-top:1.5rem !important}.card__badges{position:absolute;top:0;right:.25rem;padding:0 0 .25rem 0;z-index:9;text-align:right;width:1}.card__head .card__badges{top:auto;bottom:0;text-align:left;left:.25rem;right:auto}.card[class*=colour-],.card--filter{border-left:0.75rem solid var(--colour, var(--colour-primary))}.card--filter{--top-padding: 1.5rem;--right-padding: 1rem;--bottom-padding: 1.5rem;--left-padding: 1rem}.card--filter:has(.card__total) .card__body{align-items:center;display:flex}.card--filter:before,.card--filter:after{display:none}.card--filter:is(:hover,:focus,.hover){outline:none}.card--filter:is(:hover,:focus,.hover) :is(.card__body,.card__footer){background:#eee}.card--filter:is(:checked,.checked,:active,.active){outline:2px solid var(--colour, var(--colour-primary));outline-offset:-2px}.card--filter:is(:checked,.checked,:active,.active) .card__body{background:none}.card--filter.card--has-icon{--bottom-padding: 1rem;border:none}.card--filter .icon{font-size:1.125rem !important;height:1.125rem !important;margin:0 0 .5rem 0 !important;font-weight:400 !important;display:block !important}.card--filter .card__total{margin-top:0;order:-1}@media screen and (prefers-color-scheme: dark){.card--filter .card__body{background:none !important}.card--filter:is(:hover,:focus,.hover,:active,.active):not(:checked,.checked){outline:2px solid var(--colour, var(--colour-primary)) !important;outline-offset:-2px}}.card--filter ::slotted(i){display:block !important;font-size:1.125rem !important;margin:0 0 .5rem 0 !important}.card:has(.card__head) .card__head{padding-bottom:0;padding-top:27%;position:relative;overflow:hidden;background:rgba(0,0,0,.1);z-index:-1}.card:has(.card__head) .card__head>img{position:absolute;top:0;left:0;width:102%;height:102%;object-fit:cover}.card.card--lg-image:has(.card__head) .card__head{padding-top:55%}:host([data-selected]) .card:before,:host([data-selected]) .card:after{display:none !important}:host(.card--flag){position:relative}:host(.card--flag):after{content:"";font-family:"Font Awesome 6 Pro";position:absolute;top:1rem;right:1rem;font-size:1rem;line-height:1;height:1rem;width:1rem;display:inline-block;font-weight:normal;color:var(--colour, var(--colour-primary))}.card--secondary{--card-top-padding: 1rem;--card-bottom-padding: 1.5rem}.card--secondary:before,.card--secondary:after{display:none}.card--secondary .btn-compact{position:absolute;top:0;right:0;margin:.5rem .5rem 0 0;z-index:99}.card--secondary:has(.btn-compact:is(:hover,:focus,:active)){pointer-events:none;outline:none}.card--secondary:has(.btn-compact:is(:hover,:focus,:active)) .card__body{background:none;border-color:rgba(0,0,0,0) !important}.card--secondary:has(.btn-compact:is(:hover,:focus,:active)) .btn-compact{pointer-events:all}.card--secondary ::slotted(i){display:block !important;font-size:2.5rem !important;margin:.5rem 0 .5rem 0 !important;line-height:2.5rem}/*# sourceMappingURL=card.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../sass/components/card.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"CAGA,MACE,wBACA,kCACA,wCACA,kBACA,iBACA,mBACA,mBACA,4BACA,gBACA,WACA,gBACA,aACA,sBACA,gBACA,UACA,kCACA,yCACA,oBAEA,0BACE,eAGF,eACE,gBACA,0BACA,8BAGF,YACE,kBACA,qFACA,WAGF,cACE,gBACA,wFAIA,oCACE,UAKF,2EAEE,aAIJ,yBAEE,WACA,kBACA,6BACA,kCACA,cACA,aACA,iCACA,kBAGF,YACE,uCACA,0CACA,cACA,sBACA,sBACA,kDACA,sBACA,8BACA,8BACA,UAGF,+BACE,0BACA,uDACA,oBAMA,4DACE,uCAEF,2DACE,gBAIJ,0BACE,0BACA,aAEA,iCACE,iCAEF,gCACE,iCAIJ,kBACE,mBAKF,WACE,cACA,iBACA,mBACA,eAGF,2CAEE,mBACA,aAEA,+DACE,YACA,WACA,oBACA,oBACA,uBACA,kBAEA,mEACE,kBACA,MACA,OACA,WACA,YACA,mBAMN,mBACE,eACA,iBACA,mBACA,iBAGF,8DACE,aACA,mBAEA,yIAEE,uBACA,YAIJ,0EACE,kBACA,kBACA,0CAEF,4EACE,UACA,aAIJ,aACE,4BACA,kDACA,iCAEF,0CACE,2BAGF,4BACE,yBACA,8BACA,0BAEF,8CACE,8BAKF,cACE,kBACA,MACA,aACA,eACA,UACA,iBACA,QAEF,0BAEE,SACA,SACA,gBACA,YACA,WAKF,oCAGE,+DAKF,cACE,sBACA,sBACA,yBACA,qBAIA,4CAEE,mBACA,aAGF,yCAEE,aAGF,uCACE,aAEA,sEACE,gBAIJ,oDACE,uDACA,oBAEA,gEACE,gBAIJ,6BACE,uBACA,YAGF,oBACE,8BACA,2BACA,8BACA,2BACA,yBAGF,2BACE,aACA,SChQF,+CDuQE,0BACE,2BAGF,8EACE,kEACA,qBAKN,2BACE,yBACA,8BACA,8BAMA,mCACE,iBACA,gBACA,kBACA,gBACA,0BACA,WAEA,uCACE,kBACA,MACA,OACA,WACA,YACA,iBAKN,kDAEE,gBAQA,uEAEE,wBAKJ,mBACE,kBAEA,yBACE,YACA,iCACA,kBACA,SACA,WACA,eACA,cACA,YACA,WACA,qBACA,mBACA,2CAOJ,iBAEE,yBACA,8BAEA,+CAEE,aAIJ,8BACE,kBACA,MACA,QACA,uBACA,WAGF,6DAEE,oBACA,aAEA,yEACE,gBACA,sCAGF,0EACE,mBAIJ,8BACE,yBACA,4BACA,kCACA","file":"card.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../sass/components/card.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"CAGA,MACE,wBACA,kCACA,wCACA,kBACA,iBACA,mBACA,mBACA,4BACA,gBACA,WACA,gBACA,aACA,sBACA,gBACA,UACA,kCACA,yCACA,oBAEA,0BACE,eAGF,eACE,gBACA,0BACA,8BAGF,YACE,kBACA,qFACA,WAGF,cACE,gBACA,wFAIA,oCACE,UAKF,2EAEE,aAIJ,yBAEE,WACA,kBACA,6BACA,kCACA,cACA,aACA,iCACA,kBAGF,YACE,uCACA,0CACA,cACA,sBACA,sBACA,kDACA,sBACA,8BACA,8BACA,UAGF,+BACE,0BACA,uDACA,oBAMA,4DACE,uCAEF,2DACE,gBAIJ,0BACE,0BACA,aAEA,iCACE,iCAEF,gCACE,iCAIJ,kBACE,mBAKF,WACE,cACA,iBACA,mBACA,eAGF,2CAEE,mBACA,aAEA,+DACE,YACA,WACA,oBACA,oBACA,uBACA,kBAEA,mEACE,kBACA,MACA,OACA,WACA,YACA,mBAMN,mBACE,eACA,iBACA,mBACA,iBAGF,8DACE,aACA,mBAEA,yIAEE,uBACA,YAIJ,0EACE,kBACA,kBACA,0CAEF,4EACE,UACA,aAIJ,aACE,4BACA,kDACA,iCAEF,0CACE,2BAGF,4BACE,yBACA,8BACA,0BAEF,8CACE,8BAKF,cACE,kBACA,MACA,aACA,qBACA,UACA,iBACA,QAEF,0BAEE,SACA,SACA,gBACA,YACA,WAKF,oCAGE,+DAKF,cACE,sBACA,sBACA,yBACA,qBAIA,4CAEE,mBACA,aAGF,yCAEE,aAGF,uCACE,aAEA,sEACE,gBAIJ,oDACE,uDACA,oBAEA,gEACE,gBAIJ,6BACE,uBACA,YAGF,oBACE,8BACA,2BACA,8BACA,2BACA,yBAGF,2BACE,aACA,SChQF,+CDuQE,0BACE,2BAGF,8EACE,kEACA,qBAKN,2BACE,yBACA,8BACA,8BAMA,mCACE,iBACA,gBACA,kBACA,gBACA,0BACA,WAEA,uCACE,kBACA,MACA,OACA,WACA,YACA,iBAKN,kDAEE,gBAQA,uEAEE,wBAKJ,mBACE,kBAEA,yBACE,YACA,iCACA,kBACA,SACA,WACA,eACA,cACA,YACA,WACA,qBACA,mBACA,2CAOJ,iBAEE,yBACA,8BAEA,+CAEE,aAIJ,8BACE,kBACA,MACA,QACA,uBACA,WAGF,6DAEE,oBACA,aAEA,yEACE,gBACA,sCAGF,0EACE,mBAIJ,8BACE,yBACA,4BACA,kCACA","file":"card.css"}
@@ -1 +1 @@
1
- @supports not selector(:has(*)){iam-card{margin-bottom:2rem;display:block}}iam-card>div:has([type=checkbox]){display:contents}iam-card>div:has([type=checkbox])>input:is([type=radio],[type=checkbox])+label{position:absolute !important;top:.5rem;right:.5rem;width:2rem;padding-left:2rem;margin:0.25rem 0.5rem !important;height:2.5rem;overflow:hidden}iam-card.card--has-icon:not(.card--filter):not(.card--secondary) i{position:absolute;top:calc(50% - .5rem - 2px);left:1rem}[data-select-container]:has([type=checkbox]:checked) iam-card>div:has([type=checkbox])>input:is([type=radio],[type=checkbox]){width:100%;height:100%;max-height:100%;max-width:100%;cursor:pointer;pointer-events:all;inset:0;border-radius:0;z-index:10}a[target=_blank] iam-card::part(card){--icon: var(--icon-new-tab)}/*# sourceMappingURL=card.global.css.map */
1
+ @supports not selector(:has(*)){iam-card{margin-bottom:2rem;display:block}}iam-card>div:has([type=checkbox]){display:contents}iam-card>div:has([type=checkbox])>input:is([type=radio],[type=checkbox])+label{position:absolute !important;top:.5rem;right:.5rem;width:2rem;padding-left:2rem;margin:0.25rem 0.5rem !important;height:2.5rem;overflow:hidden}iam-card.card--has-icon:not(.card--filter):not(.card--secondary) i{position:absolute;top:calc(50% - .5rem - 2px);left:1rem}iam-card .badge{margin-bottom:.25rem !important}[data-select-container]:has([type=checkbox]:checked) iam-card>div:has([type=checkbox])>input:is([type=radio],[type=checkbox]){width:100%;height:100%;max-height:100%;max-width:100%;cursor:pointer;pointer-events:all;inset:0;border-radius:0;z-index:10}a[target=_blank] iam-card::part(card){--icon: var(--icon-new-tab)}/*# sourceMappingURL=card.global.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../sass/components/card.global.scss"],"names":[],"mappings":"AAOE,gCAHF,SAKI,mBACA,eAGF,kCACE,iBAEA,+EAEE,6BACA,UACA,YACA,WACA,kBACA,iCACA,cACA,gBAIJ,mEACE,kBACA,4BACA,UASA,8HACE,WACA,YACA,gBACA,eACA,eACA,mBACA,QACA,gBACA,WASN,sCAEE","file":"card.global.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../sass/components/card.global.scss"],"names":[],"mappings":"AAOE,gCAHF,SAKI,mBACA,eAGF,kCACE,iBAEA,+EAEE,6BACA,UACA,YACA,WACA,kBACA,iCACA,cACA,gBAIJ,mEACE,kBACA,4BACA,UAGF,gBACE,gCASA,8HACE,WACA,YACA,gBACA,eACA,eACA,mBACA,QACA,gBACA,WASN,sCAEE","file":"card.global.css"}
@@ -1 +1 @@
1
- :root{--colour-chart-1: var(--colour-primary);--colour-chart-2: var(--colour-secondary);--colour-chart-3: var(--colour-info);--colour-chart-4: var(--colour-warning);--colour-chart-5: var(--colour-dark);--colour-chart-6: var(--colour-light);--colour-chart-7: var(--colour-primary);--colour-chart-8: var(--colour-secondary);--colour-chart-9: var(--colour-info);--colour-chart-10: var(--colour-warning)}@media screen and (prefers-color-scheme: dark){:root{--colour-chart-1: var(--colour-dark);--colour-chart-5: var(--colour-light);--colour-chart-6: var(--colour-dark);--colour-chart-7: var(--colour-secondary)}}@media(forced-colors: active){.chart__wrapper:has(.chart:not(.chart--line)){--colour-chart-1: repeating-linear-gradient( 45deg, CanvasText 0px, CanvasText 5px, Canvas 5px, Canvas 10px );--colour-chart-2: transparent radial-gradient(circle, CanvasText 3px, transparent 3px) 6px 6px/12px 12px repeat;--colour-chart-3: repeating-linear-gradient( 90deg, CanvasText 0px, CanvasText 5px, Canvas 5px, Canvas 10px )}}.chart__key .key:not(:first-child):nth-child(2):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(2){background:var(--colour-chart-1)}@media(forced-colors: active){.chart__key .key:not(:first-child):nth-child(2):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(2){forced-color-adjust:none;border:1px solid CanvasText}}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(1){stroke:var(--colour-chart-1);z-index:9}@media(forced-colors: active){.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(1){forced-color-adjust:none}}.chart.chart--pie .pie path:nth-child(1){fill:var(--colour-chart-1)}@media(forced-colors: active){.chart.chart--pie .pie path:nth-child(1){forced-color-adjust:none}}.chart__key .key:not(:first-child):nth-child(3):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(3){background:var(--colour-chart-2)}@media(forced-colors: active){.chart__key .key:not(:first-child):nth-child(3):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(3){forced-color-adjust:none;border:1px solid CanvasText}}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(2){stroke:var(--colour-chart-2);z-index:8}@media(forced-colors: active){.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(2){forced-color-adjust:none}}.chart.chart--pie .pie path:nth-child(2){fill:var(--colour-chart-2)}@media(forced-colors: active){.chart.chart--pie .pie path:nth-child(2){forced-color-adjust:none}}.chart__key .key:not(:first-child):nth-child(4):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(4){background:var(--colour-chart-3)}@media(forced-colors: active){.chart__key .key:not(:first-child):nth-child(4):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(4){forced-color-adjust:none;border:1px solid CanvasText}}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(3){stroke:var(--colour-chart-3);z-index:7}@media(forced-colors: active){.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(3){forced-color-adjust:none}}.chart.chart--pie .pie path:nth-child(3){fill:var(--colour-chart-3)}@media(forced-colors: active){.chart.chart--pie .pie path:nth-child(3){forced-color-adjust:none}}.chart__key .key:not(:first-child):nth-child(5):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(5){background:var(--colour-chart-4)}@media(forced-colors: active){.chart__key .key:not(:first-child):nth-child(5):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(5){forced-color-adjust:none;border:1px solid CanvasText}}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(4){stroke:var(--colour-chart-4);z-index:6}@media(forced-colors: active){.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(4){forced-color-adjust:none}}.chart.chart--pie .pie path:nth-child(4){fill:var(--colour-chart-4)}@media(forced-colors: active){.chart.chart--pie .pie path:nth-child(4){forced-color-adjust:none}}.chart__key .key:not(:first-child):nth-child(6):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(6){background:var(--colour-chart-5)}@media(forced-colors: active){.chart__key .key:not(:first-child):nth-child(6):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(6){forced-color-adjust:none;border:1px solid CanvasText}}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(5){stroke:var(--colour-chart-5);z-index:5}@media(forced-colors: active){.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(5){forced-color-adjust:none}}.chart.chart--pie .pie path:nth-child(5){fill:var(--colour-chart-5)}@media(forced-colors: active){.chart.chart--pie .pie path:nth-child(5){forced-color-adjust:none}}.chart__key .key:not(:first-child):nth-child(7):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(7){background:var(--colour-chart-6)}@media(forced-colors: active){.chart__key .key:not(:first-child):nth-child(7):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(7){forced-color-adjust:none;border:1px solid CanvasText}}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(6){stroke:var(--colour-chart-6);z-index:4}@media(forced-colors: active){.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(6){forced-color-adjust:none}}.chart.chart--pie .pie path:nth-child(6){fill:var(--colour-chart-6)}@media(forced-colors: active){.chart.chart--pie .pie path:nth-child(6){forced-color-adjust:none}}.chart__key .key:not(:first-child):nth-child(8):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(8){background:var(--colour-chart-7)}@media(forced-colors: active){.chart__key .key:not(:first-child):nth-child(8):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(8){forced-color-adjust:none;border:1px solid CanvasText}}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(7){stroke:var(--colour-chart-7);z-index:3}@media(forced-colors: active){.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(7){forced-color-adjust:none}}.chart.chart--pie .pie path:nth-child(7){fill:var(--colour-chart-7)}@media(forced-colors: active){.chart.chart--pie .pie path:nth-child(7){forced-color-adjust:none}}.chart__key .key:not(:first-child):nth-child(9):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(9){background:var(--colour-chart-8)}@media(forced-colors: active){.chart__key .key:not(:first-child):nth-child(9):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(9){forced-color-adjust:none;border:1px solid CanvasText}}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(8){stroke:var(--colour-chart-8);z-index:2}@media(forced-colors: active){.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(8){forced-color-adjust:none}}.chart.chart--pie .pie path:nth-child(8){fill:var(--colour-chart-8)}@media(forced-colors: active){.chart.chart--pie .pie path:nth-child(8){forced-color-adjust:none}}.chart__key .key:not(:first-child):nth-child(10):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(10){background:var(--colour-chart-9)}@media(forced-colors: active){.chart__key .key:not(:first-child):nth-child(10):before,.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):nth-child(10){forced-color-adjust:none;border:1px solid CanvasText}}.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(9){stroke:var(--colour-chart-9);z-index:1}@media(forced-colors: active){.chart.chart--line:not(.chart--none):not(.chart--pie) .line:nth-child(9){forced-color-adjust:none}}.chart.chart--pie .pie path:nth-child(9){fill:var(--colour-chart-9)}@media(forced-colors: active){.chart.chart--pie .pie path:nth-child(9){forced-color-adjust:none}}.chart__wrapper figcaption{font-size:1rem;margin-bottom:2rem;display:block}.chart__key{padding-bottom:2rem;margin-bottom:0}.chart__key:before{content:"Key: ";display:inline-block;padding-right:1.5rem;margin-bottom:1rem;width:100%}@media screen and (min-width: 36em){.chart__key:before{width:auto}}.chart__key .key{display:inline-block;padding-right:1.5rem;margin-bottom:1rem}.chart__key .key:before{content:"";height:1em;width:1em;margin-right:.25em;background:red;display:inline-block;vertical-align:middle;margin-bottom:.2em}.chart__key .key:first-child{display:none}.chart:not(.chart--none):not(.chart--pie){--label-size: 0.75rem;--chart-ratio: 56.25%;display:flex;position:relative;margin-bottom:2rem}@media screen and (min-width: 36em){.chart:not(.chart--none):not(.chart--pie){--chart-ratio: 42.86%}}@media screen and (min-width: 62em){.chart:not(.chart--none):not(.chart--pie){--label-size: 0.875rem}}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis{margin-bottom:2rem;display:flex;flex-direction:column-reverse;width:0}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point{bottom:var(--percent);position:relative;height:0;white-space:nowrap}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point:not(:last-child){display:none}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point span{display:block;transform:translate(0, -50%);padding-right:.25rem;text-align:right;font-size:var(--label-size)}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point:last-child span{transform:translate(0, -100%)}@media screen and (min-width: 36em){.chart:not(.chart--none):not(.chart--pie) .chart__yaxis{width:auto}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point:not(:last-child){display:block}.chart:not(.chart--none):not(.chart--pie) .chart__yaxis .axis__point:last-child span{transform:translate(0, -50%)}}.chart:not(.chart--none):not(.chart--pie) .chart__guidelines{position:absolute;top:0;left:0;width:100%;height:calc(100% - 2rem);margin-bottom:2rem;z-index:var(--index-below);display:flex;flex-direction:column-reverse}.chart:not(.chart--none):not(.chart--pie) .chart__guidelines .guideline{bottom:var(--percent);position:absolute;right:0;width:100%;height:0px;margin-bottom:-1px;border-bottom:1px dashed #eee}.chart:not(.chart--none):not(.chart--pie) .chart__guidelines [data-value="0"]{border-bottom:1px solid var(--colour-primary)}.chart:not(.chart--none):not(.chart--pie) .chart__guidelines [data-value="0"]:not(:first-child){border-bottom:1px dashed var(--colour-primary)}.chart:not(.chart--none):not(.chart--pie) .table__wrapper{padding-bottom:2rem;padding-right:0;margin:0;overflow-x:visible;position:relative}.chart:not(.chart--none):not(.chart--pie) .table__wrapper table{overflow:visible}.chart:not(.chart--none):not(.chart--pie) table{display:block;width:100%;padding-top:var(--chart-ratio);position:relative;margin-bottom:0}.chart:not(.chart--none):not(.chart--pie) table thead{display:none}.chart:not(.chart--none):not(.chart--pie) table tbody{display:flex;position:absolute;width:100%;height:100%;top:0;left:0;flex-direction:row;border:none}.chart:not(.chart--none):not(.chart--pie) table tbody tr{display:flex;flex-direction:row;justify-content:center;align-items:flex-end;border:none;width:100%;height:100%;position:relative;padding:0 5%}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:first-child{position:absolute;top:100%;left:50%;transform:translate(-50%, 0);width:auto;padding:0;white-space:nowrap;max-width:120%;overflow:hidden;text-overflow:ellipsis;font-size:var(--label-size);display:none;border:none;min-width:auto}@media screen and (min-width: 62em){.chart:not(.chart--none):not(.chart--pie) table tbody tr td:first-child{display:block;max-width:95%}}.chart:not(.chart--none):not(.chart--pie) table tbody tr:first-child td:first-child,.chart:not(.chart--none):not(.chart--pie) table tbody tr:last-child td:first-child{display:block}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child){height:100%;height:var(--percent, 0%);bottom:var(--bottom, 0%);width:50%;min-width:0;max-width:10rem;position:relative;background:green;padding:0;border:none}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child)[data-label]:before{display:none}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child) span{position:absolute;bottom:100%;left:50%;font-size:var(--label-size);line-height:1.2;transform:translate(-50%, 0);background:var(--colour-info);opacity:0;pointer-events:none;padding:.5rem;border-radius:.5rem;margin-bottom:.25rem;color:#fff;white-space:pre;text-align:center}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child) span::before{content:attr(data-group) "\a" attr(data-label) ": "}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):hover span{opacity:1;z-index:var(--index-above)}.chart:not(.chart--none):not(.chart--pie) table tbody tr:first-child td:not(:first-child) span{left:-20%;transform:translate(0%, 0)}.chart:not(.chart--none):not(.chart--pie) table tbody tr:last-child td:not(:first-child) span{left:120%;transform:translate(-100%, 0)}@media screen and (min-width: 36em){.chart:not(.chart--none):not(.chart--pie) table tbody tr:first-child td:not(:first-child) span,.chart:not(.chart--none):not(.chart--pie) table tbody tr:last-child td:not(:first-child) span{left:50%;transform:translate(-50%, 0)}}.chart:not(.chart--none):not(.chart--pie) table tbody tr td:first-child[data-label]:before{display:none}.chart:not(.chart--none):not(.chart--pie) .line,.chart:not(.chart--none):not(.chart--pie) .pie{display:none}.chart:not(.chart--none):not(.chart--pie).chart--stacked table tbody tr{flex-direction:column-reverse;justify-content:flex-start;align-items:center}.chart.chart--line:not(.chart--none):not(.chart--pie){--line-thickness: 1px}@media screen and (min-width: 36em){.chart.chart--line:not(.chart--none):not(.chart--pie){--line-thickness: 0.8px}}@media screen and (min-width: 62em){.chart.chart--line:not(.chart--none):not(.chart--pie){--line-thickness: 0.5px}}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody{justify-content:space-between}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr{width:4rem;margin-left:-2rem;margin-right:-2rem;padding:0}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr:first-child td:first-child{transform:translate(0, 0);display:block}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr:last-child td:first-child{left:100%;transform:translate(-100%, 0);display:block}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr td:first-child{left:50% !important}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child){position:absolute;left:50%;bottom:var(--percent);height:6px;width:6px;margin-bottom:-3px;margin-left:-3px;border-radius:3px;opacity:0}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr td:not(:first-child):hover{opacity:1}.chart.chart--line:not(.chart--none):not(.chart--pie) table tbody tr:hover:before{content:"";border-left:1px dashed #eee;height:100%;width:0;position:absolute;top:0;left:50%;height:100%;margin-left:-1px;z-index:var(--index-below)}.chart.chart--line:not(.chart--none):not(.chart--pie) .line{display:block;position:absolute;top:0;left:0;stroke-width:var(--line-thickness);width:100%;height:calc(100% - 2rem);pointer-events:none;z-index:var(--index-below)}.chart.chart--line:not(.chart--none):not(.chart--pie) .pie{display:none}.chart.chart--pie{margin-bottom:2rem}.chart.chart--pie .chart__yaxis,.chart.chart--pie .line{display:none}.chart.chart--pie .table__wrapper{display:none}.chart.chart--pie .pies{display:flex;flex-direction:row;flex-wrap:wrap;gap:2rem}.chart.chart--pie .pie{position:relative;width:100%;aspect-ratio:1/1;min-width:12.5rem;flex:1 1 auto;display:inline-block}@media screen and (min-width: 36em){.chart.chart--pie .pie{max-width:calc(33.333% - 1.4rem)}}@media screen and (min-width: 62em){.chart.chart--pie .pie{max-width:calc(25% - 1.5rem)}}.chart.chart--pie .pie:first-child{margin-left:0}.chart.chart--pie .pie:last-child{margin-right:0}.chart.chart--pie .pie svg{width:100%;height:100%}.chart.chart--pie .pie svg path:hover{transform:scale(1.05)}.chart.chart--pie .pie foreignObject{background:var(--colour-canvas);border-radius:50%;z-index:var(--index-focus);pointer-events:none;display:none;padding:1rem}.chart.chart--pie .pie foreignObject div{display:flex;justify-content:center;align-items:center;height:100%}.chart.chart--pie .pie foreignObject span{text-align:center;display:block}.chart.chart--pie .pie foreignObject:nth-of-type(1){display:block}.chart.chart--pie .pie path:hover~foreignObject:nth-of-type(1){display:none}.chart.chart--pie .pie path:nth-child(1):hover~foreignObject:nth-of-type(2),.chart.chart--pie .pie path:nth-child(2):hover~foreignObject:nth-of-type(3),.chart.chart--pie .pie path:nth-child(3):hover~foreignObject:nth-of-type(4),.chart.chart--pie .pie path:nth-child(4):hover~foreignObject:nth-of-type(5),.chart.chart--pie .pie path:nth-child(5):hover~foreignObject:nth-of-type(6),.chart.chart--pie .pie path:nth-child(6):hover~foreignObject:nth-of-type(7),.chart.chart--pie .pie path:nth-child(7):hover~foreignObject:nth-of-type(8),.chart.chart--pie .pie path:nth-child(8):hover~foreignObject:nth-of-type(9){display:block}.chart__key.chart__key--none{display:none}.chart.chart--none .chart__yaxis,.chart.chart--none .line,.chart.chart--none .pie{display:none}/*# sourceMappingURL=charts.css.map */
1
+ ::slotted(table){display:none !important}.chart__outer{container-type:inline-size;--body-colour-set: var(--body-colour, white);--text-colour-set: var(--text-colour, black);--chart-height-set: var(--chart-height, 56.25%);--chart-height-lg-set: var(--chart-height-lg, 42.86%);--chart-height-resp: var(--chart-height-set);--chart-colour-1-set: var(--chart-colour-1,#1EBEE6);--chart-colour-2-set: var(--chart-colour-2,#FFD2D2);--chart-colour-3-set: var(--chart-colour-3,#B4E6A5);--chart-colour-4-set: var(--chart-colour-4,#ffa500);--chart-colour-5-set: var(--chart-colour-5,#46003c);--chart-colour-6-set: var(--chart-colour-6,#b4e6a5);--chart-colour-7-set: var(--chart-colour-7,#1ebee6);--chart-colour-8-set: var(--chart-colour-8,#ffd2d2);--chart-colour-9-set: var(--chart-colour-9,#9d9d9d);--chart-colour-10-set: var(--chart-colour-10,#66838a);--index-below: -1;--index-base: 0;--index-focus: 2;--index-above: 10;--index-floating: 100;--index-menu: 200;--index-overlay: 1000;--key-label-width: 100%;--label-size: 0.75rem;--pie-size: calc(50% - 1.4rem);--line-thickness: 1px;--yaxis-width: auto;--yaxis-point-display: block;--yaxis-last-point-transform: translate(0,-50%);--bar-gap: min(10%, 0.75rem);margin-bottom:2rem;display:flex;flex-direction:column}.chart__outer tbody{--chart-direction: 360deg;--chart-day-bg-pos: 100% calc(var(--single-day) * 7) }@container (max-width: 36em){.chart__outer :has(tr:nth-child(5) td:nth-child(4)),.chart__outer :has(tr:nth-child(10)){--yaxis-width: 0;--yaxis-point-display: none;--yaxis-last-point-transform: translate(0,-100%);--bar-gap: 0}}@container (max-width: 63em){.chart__outer :has(tr:nth-child(10)){--bar-gap: 0}}@container (min-width: 36em){.chart__outer .chart__wrapper{--chart-height-resp: var(--chart-height-lg-set);--pie-size: calc(33.333% - 1.4rem);--line-thickness: 0.8px;--yaxis-width: auto;--yaxis-point-display: block;--yaxis-last-point-transform: translate(0,-50%)}}@container (min-width: 62em){.chart__outer .chart__wrapper{--label-size: 0.875rem;--pie-size: calc(25% - 1.5rem);--line-thickness: 0.5px}}.chart__outer:has(.chart__options){position:relative;padding-top:1.5rem}.chart__outer>*{display:block;order:2}.chart__outer>figcaption{display:contents}.chart__outer>figcaption p:not(.chart__strapline,.chart__title){margin-bottom:.25rem;font-size:var(--label-size)}.chart__outer>figcaption>*{order:3}.chart__outer>figcaption>:is(.chart__title,.chart__strapline){order:1}.chart__title{font-size:2rem;font-weight:700;margin-bottom:.25rem}.chart__strapline{margin-bottom:1rem}.chart__source{border-top:1px solid #000;position:relative;padding-top:0.25rem}.chart__key .key:nth-child(10n-9),.chart__outer table tbody tr td:not(:first-child):nth-child(10n-8){--chart-colour: var(--chart-colour-1-set)}input:is([value=line],[value=radar],[value=combo],[value=proportional]):checked~.chart__wrapper .line:nth-child(10n-9){color:var(--chart-colour-1-set);stroke:currentColor;fill:currentColor;z-index:9}input:is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(10n-9){fill:var(--chart-colour-1-set)}.chart__key .key:nth-child(10n-8),.chart__outer table tbody tr td:not(:first-child):nth-child(10n-7){--chart-colour: var(--chart-colour-2-set)}input:is([value=line],[value=radar],[value=combo],[value=proportional]):checked~.chart__wrapper .line:nth-child(10n-8){color:var(--chart-colour-2-set);stroke:currentColor;fill:currentColor;z-index:8}input:is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(10n-8){fill:var(--chart-colour-2-set)}.chart__key .key:nth-child(10n-7),.chart__outer table tbody tr td:not(:first-child):nth-child(10n-6){--chart-colour: var(--chart-colour-3-set)}input:is([value=line],[value=radar],[value=combo],[value=proportional]):checked~.chart__wrapper .line:nth-child(10n-7){color:var(--chart-colour-3-set);stroke:currentColor;fill:currentColor;z-index:7}input:is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(10n-7){fill:var(--chart-colour-3-set)}.chart__key .key:nth-child(10n-6),.chart__outer table tbody tr td:not(:first-child):nth-child(10n-5){--chart-colour: var(--chart-colour-4-set)}input:is([value=line],[value=radar],[value=combo],[value=proportional]):checked~.chart__wrapper .line:nth-child(10n-6){color:var(--chart-colour-4-set);stroke:currentColor;fill:currentColor;z-index:6}input:is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(10n-6){fill:var(--chart-colour-4-set)}.chart__key .key:nth-child(10n-5),.chart__outer table tbody tr td:not(:first-child):nth-child(10n-4){--chart-colour: var(--chart-colour-5-set)}input:is([value=line],[value=radar],[value=combo],[value=proportional]):checked~.chart__wrapper .line:nth-child(10n-5){color:var(--chart-colour-5-set);stroke:currentColor;fill:currentColor;z-index:5}input:is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(10n-5){fill:var(--chart-colour-5-set)}.chart__key .key:nth-child(10n-4),.chart__outer table tbody tr td:not(:first-child):nth-child(10n-3){--chart-colour: var(--chart-colour-6-set)}input:is([value=line],[value=radar],[value=combo],[value=proportional]):checked~.chart__wrapper .line:nth-child(10n-4){color:var(--chart-colour-6-set);stroke:currentColor;fill:currentColor;z-index:4}input:is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(10n-4){fill:var(--chart-colour-6-set)}.chart__key .key:nth-child(10n-3),.chart__outer table tbody tr td:not(:first-child):nth-child(10n-2){--chart-colour: var(--chart-colour-7-set)}input:is([value=line],[value=radar],[value=combo],[value=proportional]):checked~.chart__wrapper .line:nth-child(10n-3){color:var(--chart-colour-7-set);stroke:currentColor;fill:currentColor;z-index:3}input:is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(10n-3){fill:var(--chart-colour-7-set)}.chart__key .key:nth-child(10n-2),.chart__outer table tbody tr td:not(:first-child):nth-child(10n-1){--chart-colour: var(--chart-colour-8-set)}input:is([value=line],[value=radar],[value=combo],[value=proportional]):checked~.chart__wrapper .line:nth-child(10n-2){color:var(--chart-colour-8-set);stroke:currentColor;fill:currentColor;z-index:2}input:is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(10n-2){fill:var(--chart-colour-8-set)}.chart__key .key:nth-child(10n-1),.chart__outer table tbody tr td:not(:first-child):nth-child(10n-0){--chart-colour: var(--chart-colour-9-set)}input:is([value=line],[value=radar],[value=combo],[value=proportional]):checked~.chart__wrapper .line:nth-child(10n-1){color:var(--chart-colour-9-set);stroke:currentColor;fill:currentColor;z-index:1}input:is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(10n-1){fill:var(--chart-colour-9-set)}.chart__key .key:nth-child(10n),input[type=radio]:not([value=none]):not([value=pie]):checked~.chart__outer table tbody tr td:not(:first-child):nth-child(10n+1){--chart-colour: var(--chart-colour-10-set)}.chart__outer>[type=radio]{opacity:0;position:absolute;pointer-events:none}.chart__options{position:absolute;display:block;width:fit-content;z-index:var(--index-above);top:0;right:0;background-color:var(--body-colour-set)}.chart__options:has(span:first-child:last-child){display:none}.chart__options>span:first-child{text-align:right;display:block;height:1.5rem}.chart__options>span:first-child:before{content:"";height:1rem;width:1rem;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3e%3cpath d='M31 19.3v-6.5l-3.9-.5c-.1-.4-.3-.9-.5-1.5l2.4-3-4.7-4.7-3.1 2.4c-.4-.2-.9-.4-1.5-.6L19.2 1h-6.5l-.5 3.9c-.6.2-1.1.4-1.5.6l-3-2.4L3 7.7l2.4 3c-.2.5-.4 1.1-.5 1.5l-3.9.5v6.5l3.9.5c.2.5.3 1 .6 1.5l-2.4 3 4.7 4.7 3-2.3c.4.2 1 .5 1.5.6l.5 3.8h6.5l.5-3.8c.5-.2 1.1-.4 1.5-.6l3 2.3 4.7-4.7-2.4-3 .6-1.5 3.8-.4zm-2.1-1.9-3.4.5c-.3 1.5-.8 2.7-1.6 3.6l2.1 2.6-1.9 2-2.6-2c-1 .7-2.5 1.3-3.7 1.5l-.5 3.3h-2.6l-.5-3.3c-1.2-.2-2.7-.8-3.7-1.5l-2.6 2-1.9-2 2.1-2.6c-.8-.9-1.2-2.1-1.6-3.6l-3.4-.5v-2.7l3.5-.5c.2-1.1.6-2.3 1.4-3.7L6 7.9l1.9-2L10.6 8c.8-.7 1.7-1.1 3.6-1.6l.5-3.4h2.6l.5 3.4c1.9.5 2.8.9 3.6 1.6l2.7-2L26 8l-2 2.5c.8 1.4 1.2 2.6 1.4 3.7l3.5.5v2.7zM16 20.8c-2.7 0-4.7-2-4.7-4.8 0-2.7 2-4.7 4.7-4.7s4.7 2 4.7 4.7-2 4.8-4.7 4.8zm0 2.2c3.9 0 6.9-3 6.9-7 0-3.9-3-6.9-6.9-6.9s-6.9 3-6.9 6.9c0 4 3 7 6.9 7z'%3e%3c/path%3e%3c/svg%3e");background-size:100% 100%;display:inline-block;vertical-align:bottom;margin-bottom:0.1875rem;margin-right:0.375rem}.chart__options>*:not(:first-child){display:none}.chart__options label{cursor:pointer}.chart__options label:hover{background:var(--label-bg, rgb(220, 220, 220))}.chart__options:hover{outline:3px solid #000;box-shadow:0 0 0 .25rem #fff;outline-offset:.25rem}.chart__options:hover>*{display:block}.chart__options .chart__options__title{margin-top:1rem;font-weight:bold}.chart>[type=radio]:focus~.chart__switcher label{display:block}.chart__outer>input[type=checkbox]{opacity:0;position:absolute;pointer-events:none}.chart__key{padding:0 0 0 0;margin-bottom:1.5rem;display:flex;overflow:auto;scroll-snap-type:x mandatory;scroll-padding:.75rem;justify-content:flex-end;gap:.5rem}.chart__key .key{font-size:1rem !important;margin:0}.chart__key .key:before{content:"";height:.8em;width:.8em;margin-right:.3em;background-color:var(--chart-colour);display:inline-block;border-radius:50%}.chart__key .key[data-label=Min],.chart__key .key[data-label=Max]{display:none}.chart__key .key .chart__total{display:none}.chart__outer>input[type=checkbox]:not(:checked)~.chart__key .key{opacity:.25}.chart__outer>input[type=checkbox]:not(:checked)~.chart__wrapper table tbody tr td:not(:first-child){display:none}.chart__outer>input[type=checkbox]:not(:checked)~.chart__wrapper :is(.chart__lines,.radar) .line{display:none !important}.chart__outer>input[type=checkbox]:nth-of-type(1):not(:checked)~.chart__key .key:nth-of-type(1){opacity:1}.chart__outer>input[type=checkbox]:nth-of-type(1):not(:checked)~.chart__wrapper table tbody tr td:not(:first-child):nth-child(2){display:block}input:nth-of-type(1):not(:checked)~.chart__wrapper :is(.chart__lines,.radar) .line:nth-child(1){display:block !important}.chart__outer>input[type=checkbox]:nth-of-type(2):not(:checked)~.chart__key .key:nth-of-type(2){opacity:1}.chart__outer>input[type=checkbox]:nth-of-type(2):not(:checked)~.chart__wrapper table tbody tr td:not(:first-child):nth-child(3){display:block}input:nth-of-type(2):not(:checked)~.chart__wrapper :is(.chart__lines,.radar) .line:nth-child(2){display:block !important}.chart__outer>input[type=checkbox]:nth-of-type(3):not(:checked)~.chart__key .key:nth-of-type(3){opacity:1}.chart__outer>input[type=checkbox]:nth-of-type(3):not(:checked)~.chart__wrapper table tbody tr td:not(:first-child):nth-child(4){display:block}input:nth-of-type(3):not(:checked)~.chart__wrapper :is(.chart__lines,.radar) .line:nth-child(3){display:block !important}.chart__outer>input[type=checkbox]:nth-of-type(4):not(:checked)~.chart__key .key:nth-of-type(4){opacity:1}.chart__outer>input[type=checkbox]:nth-of-type(4):not(:checked)~.chart__wrapper table tbody tr td:not(:first-child):nth-child(5){display:block}input:nth-of-type(4):not(:checked)~.chart__wrapper :is(.chart__lines,.radar) .line:nth-child(4){display:block !important}.chart__outer>input[type=checkbox]:nth-of-type(5):not(:checked)~.chart__key .key:nth-of-type(5){opacity:1}.chart__outer>input[type=checkbox]:nth-of-type(5):not(:checked)~.chart__wrapper table tbody tr td:not(:first-child):nth-child(6){display:block}input:nth-of-type(5):not(:checked)~.chart__wrapper :is(.chart__lines,.radar) .line:nth-child(5){display:block !important}.chart__outer>input[type=checkbox]:nth-of-type(6):not(:checked)~.chart__key .key:nth-of-type(6){opacity:1}.chart__outer>input[type=checkbox]:nth-of-type(6):not(:checked)~.chart__wrapper table tbody tr td:not(:first-child):nth-child(7){display:block}input:nth-of-type(6):not(:checked)~.chart__wrapper :is(.chart__lines,.radar) .line:nth-child(6){display:block !important}.chart__outer>input[type=checkbox]:nth-of-type(7):not(:checked)~.chart__key .key:nth-of-type(7){opacity:1}.chart__outer>input[type=checkbox]:nth-of-type(7):not(:checked)~.chart__wrapper table tbody tr td:not(:first-child):nth-child(8){display:block}input:nth-of-type(7):not(:checked)~.chart__wrapper :is(.chart__lines,.radar) .line:nth-child(7){display:block !important}.chart__outer>input[type=checkbox]:nth-of-type(8):not(:checked)~.chart__key .key:nth-of-type(8){opacity:1}.chart__outer>input[type=checkbox]:nth-of-type(8):not(:checked)~.chart__wrapper table tbody tr td:not(:first-child):nth-child(9){display:block}input:nth-of-type(8):not(:checked)~.chart__wrapper :is(.chart__lines,.radar) .line:nth-child(8){display:block !important}.chart__outer>input[type=checkbox]:nth-of-type(9):not(:checked)~.chart__key .key:nth-of-type(9){opacity:1}.chart__outer>input[type=checkbox]:nth-of-type(9):not(:checked)~.chart__wrapper table tbody tr td:not(:first-child):nth-child(10){display:block}input:nth-of-type(9):not(:checked)~.chart__wrapper :is(.chart__lines,.radar) .line:nth-child(9){display:block !important}.chart:has(.chart__outer)>table{order:10;display:none}.chart__wrapper{display:block;display:flex;flex-direction:row;position:relative;margin-bottom:1rem}.chart__wrapper .chart__yaxis{display:flex;flex-direction:column-reverse;width:var(--yaxis-width)}.chart__wrapper .chart__yaxis .axis__point{bottom:var(--percent);position:relative;height:0;white-space:nowrap}.chart__wrapper .chart__yaxis .axis__point:not(:last-child){display:var(--yaxis-point-display)}.chart__wrapper .chart__yaxis .axis__point span{display:block;transform:translate(0, -50%);padding-right:.25rem;text-align:right;font-size:var(--label-size)}.chart__wrapper .chart__yaxis .axis__point:last-child span{transform:var(--yaxis-last-point-transform)}.chart__wrapper .chart__xaxis{margin-bottom:1rem;display:flex;flex-direction:column-reverse;width:100%;position:absolute;left:0;bottom:-1rem}.chart__wrapper .chart__xaxis .axis__point{left:var(--percent);width:1px;position:absolute;height:0;white-space:nowrap}.chart__wrapper .chart__xaxis .axis__point span{display:block;transform:translate(-50%, 0%);text-align:center;font-size:var(--label-size);position:absolute;left:50%}.chart__wrapper .chart__guidelines{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column-reverse;pointer-events:none}.chart__wrapper .chart__guidelines .guideline{bottom:var(--percent);position:absolute;right:0;width:100%;height:0px;margin-bottom:-1px;border-bottom:1px dashed #eee;pointer-events:none;z-index:var(--index-below)}.chart__wrapper .chart__guidelines .guideline:not(.guideline--target) span{display:none}.chart__wrapper .chart__guidelines .guideline--target{border-bottom:1px dashed #000;z-index:var(--index-above);text-shadow:1px solid #fff;overflow:visible}.chart__wrapper .chart__guidelines .guideline--target span{position:absolute;bottom:0;font-size:var(--label-size);text-shadow:1px 1px 2px #fff;background:rgba(255,255,255,.6)}.chart__wrapper .chart__guidelines [data-value="0"]{border-bottom:1px solid var(--colour-primary)}.chart__wrapper .chart__guidelines [data-value="0"]:not(:first-child){border-bottom:1px dashed var(--colour-primary)}.chart__wrapper .chart{position:relative;flex-grow:1}.chart__wrapper table{display:block;width:100% !important;padding-top:var(--chart-height-resp);position:relative;margin-bottom:0;overflow:visible}.chart__wrapper table thead{display:none}.chart__wrapper table tbody{display:flex;position:absolute;width:100%;height:100%;top:0;left:0;flex-direction:row;border:none}.chart__wrapper table tbody tr{display:flex;flex-direction:row;justify-content:center;align-items:flex-end;border:none;width:100%;height:100%;position:relative;padding:0 2px;gap:var(--bar-gap)}.chart__wrapper table tbody tr td{font-weight:inherit}.chart__wrapper table tbody tr td:first-child{position:absolute;top:100%;left:50%;transform:translate(-50%, 0);width:fit-content;padding:0;white-space:nowrap;max-width:6rem;overflow:hidden;text-overflow:ellipsis;font-size:var(--label-size);text-align:center}@container (min-width: 62em){.chart__wrapper table tbody tr td:first-child{display:block;left:50% !important;transform:translate(-50%, 0) !important}}.chart__wrapper table tbody tr td[data-label=Min],.chart__wrapper table tbody tr td[data-label=Max]{display:none}.chart__wrapper table tbody tr:first-child td:first-child,.chart__wrapper table tbody tr:last-child td:first-child{display:block}.chart__wrapper table tbody tr td:not(:first-child){height:100%;height:var(--percent, 0%);bottom:var(--bottom, 0%);width:100%;max-width:1.5rem;position:relative;background:green;padding:0;background:var(--chart-colour);border-top-right-radius:4px;border-top-left-radius:4px}.chart__wrapper table tbody tr td:not(:first-child):has(span:empty),.chart__wrapper table tbody tr td:not(:first-child):empty{display:none}.chart__wrapper table tbody tr td:not(:first-child)[data-label]:before{display:none}.chart__wrapper table tbody tr td:not(:first-child) span{position:absolute;bottom:100%;left:50%;font-size:var(--label-size);line-height:1.2;transform:translate(-50%, 0);background:var(--chart-colour);opacity:0;pointer-events:none;padding:.5rem;border-radius:.5rem;margin-bottom:.25rem;color:var(--colour-primary-theme);white-space:pre;text-align:center}.chart__wrapper table tbody tr td:not(:first-child) span::before{content:attr(data-label) "\a" attr(data-group) "\a"}.chart__wrapper table tbody tr td:not(:first-child) span[data-second]:after{content:"\a" attr(data-second-label) ": " attr(data-second)}.chart__wrapper table tbody tr td:not(:first-child):hover span{opacity:1;z-index:var(--index-above)}@container (min-width: 36em){.chart__wrapper table tbody tr:first-child td:not(:first-child) span,.chart__wrapper table tbody tr:last-child td:not(:first-child) span{left:50%;transform:translate(-50%, 0);text-align:center}}.chart__wrapper table tbody tr td:first-child[data-label]:before{display:none}@container (max-width: 36em){.chart__wrapper table tbody:has(tr:nth-child(5) td:nth-child(4)) tr td:first-child,.chart__wrapper table tbody:has(tr:nth-child(10)) tr td:first-child{display:none}.chart__wrapper table tbody:has(tr:nth-child(5) td:nth-child(4)) tr:first-child td:first-child,.chart__wrapper table tbody:has(tr:nth-child(10)) tr:first-child td:first-child{left:0%;transform:translate(0, 0);display:block;text-align:left}.chart__wrapper table tbody:has(tr:nth-child(5) td:nth-child(4)) tr:last-child td:first-child,.chart__wrapper table tbody:has(tr:nth-child(10)) tr:last-child td:first-child{left:100%;transform:translate(-100%, 0);display:block;text-align:right}.chart__wrapper table tbody:has(tr:nth-child(5) td:nth-child(4)) tr:first-child td:not(:first-child) span,.chart__wrapper table tbody:has(tr:nth-child(10)) tr:first-child td:not(:first-child) span{left:-20%;transform:translate(0%, 0);text-align:left}.chart__wrapper table tbody:has(tr:nth-child(5) td:nth-child(4)) tr:last-child td:not(:first-child) span,.chart__wrapper table tbody:has(tr:nth-child(10)) tr:last-child td:not(:first-child) span{left:120%;transform:translate(-100%, 0);text-align:right}}@container (min-width: 62em){.chart__wrapper table tbody:has(tr:nth-child(25)) tr td:first-child{display:none !important}.chart__wrapper table tbody:has(tr:nth-child(25)) tr:is(:first-child,:nth-child(5n)) td:first-child{display:block !important}.chart__wrapper table tbody:has(tr:nth-child(50)) tr:is(:first-child,:nth-child(5n)) td:first-child,.chart__wrapper table tbody:has(tr:nth-child(50)) tr td:first-child{display:none !important}.chart__wrapper table tbody:has(tr:nth-child(50)) tr:is(:first-child,:nth-child(10n)) td:first-child{display:block !important}.chart__wrapper table tbody:has(tr:nth-child(100)) tr:is(:first-child,:nth-child(10n)) td:first-child,.chart__wrapper table tbody:has(tr:nth-child(100)) tr td:first-child{display:none !important}.chart__wrapper table tbody:has(tr:nth-child(100)) tr:is(:first-child,:nth-child(20n)) td:first-child{display:block !important}}.chart__wrapper table tbody:has(tr:nth-child(1001)) tr{display:none}.chart__wrapper table tbody:has(tr:nth-child(1001)) tr:nth-last-child(-n+1001)~tr{display:flex}.chart__wrapper .line,.chart__wrapper .pie{display:none}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper tbody{--chart-direction: 90deg;--chart-day-bg-pos: calc(var(--single-day) * 7) 100%;--bar-gap: 0}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper .chart__guidelines{position:absolute}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper .chart__guidelines .guideline{bottom:auto;left:var(--percent);height:100%;border-left:1px dashed #eee;width:0}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper .chart__guidelines .guideline span{display:block;font-size:var(--label-size);position:absolute;top:100%;transform:translate(-50%, 0.2em)}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper .chart__yaxis{display:none}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper table{padding-top:0}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper table tbody{flex-direction:column;position:relative}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper table tbody tr{flex-direction:column;align-items:flex-start;margin-bottom:.5rem;padding:0}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper table tbody tr td{height:3rem;bottom:0;left:var(--bottom, 0%);width:var(--comparison, var(--percent));max-width:100%;border-top-left-radius:0;border-bottom-right-radius:4px}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper table tbody tr td:first-child{position:static;transform:none;display:block !important;max-height:1.5rem}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper[data-longest-label]:before{display:block;content:attr(data-longest-label);font-size:var(--label-size);padding-right:.5em;opacity:0;pointer-events:none;white-space:nowrap}.chart__outer input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper[data-longest-label] table tbody tr td:first-child{position:absolute;transform:translate(-100%, -50%) !important;display:block !important;max-height:1.5rem;z-index:var(--index-above);top:50%;left:0 !important;padding-right:.5em}@container (max-width: 36em){.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper tbody{--chart-direction: 90deg;--chart-day-bg-pos: calc(var(--single-day) * 7) 100%;--bar-gap: 0}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper .chart__guidelines{position:absolute}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper .chart__guidelines .guideline{bottom:auto;left:var(--percent);height:100%;border-left:1px dashed #eee;width:0}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper .chart__guidelines .guideline span{display:block;font-size:var(--label-size);position:absolute;top:100%;transform:translate(-50%, 0.2em)}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper .chart__yaxis{display:none}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper table{padding-top:0}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper table tbody{flex-direction:column;position:relative}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper table tbody tr{flex-direction:column;align-items:flex-start;margin-bottom:.5rem;padding:0}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper table tbody tr td{height:3rem;bottom:0;left:var(--bottom, 0%);width:var(--comparison, var(--percent));max-width:100%;border-top-left-radius:0;border-bottom-right-radius:4px}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper table tbody tr td:first-child{position:static;transform:none;display:block !important;max-height:1.5rem}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper[data-longest-label]:before{display:block;content:attr(data-longest-label);font-size:var(--label-size);padding-right:.5em;opacity:0;pointer-events:none;white-space:nowrap}.chart__outer input[type=radio][value=responsive]:not([value=none]):not([value=pie]):checked~.chart__wrapper[data-longest-label] table tbody tr td:first-child{position:absolute;transform:translate(-100%, -50%) !important;display:block !important;max-height:1.5rem;z-index:var(--index-above);top:50%;left:0 !important;padding-right:.5em}}input[type=radio]:not([value=pie])[value=stacked]:checked~.chart__wrapper table tbody tr{--bar-gap: 0;flex-direction:column-reverse;justify-content:flex-start;align-items:center}input[type=radio]:not([value=pie])[value=stacked]:checked~.chart__wrapper table tbody tr td{border-radius:0 !important}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody{justify-content:space-between}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr td:not(.chart__bar):first-child{left:50% !important;width:4rem}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr:not(:has(.chart__bar)){width:2px;margin-left:-1px;margin-right:-1px;padding:0}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr td:not(.chart__bar):not(:first-child){position:absolute;left:50%;bottom:calc(var(--axis));height:6px;width:6px;margin-bottom:-3px;margin-left:-3px;border-radius:3px}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr td:not(.chart__bar):not(:first-child):hover{opacity:1}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr:before{content:"";border-left:1px dashed #eee;height:100%;width:0;position:absolute;top:0;left:50%;height:100%;margin-left:-1px;z-index:var(--index-below);opacity:0}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr:hover:before{opacity:1}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr:is([data-event],[data-event-right]):before{opacity:1;border-left:1px dashed #000}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr:is([data-event],[data-event-right]):after{content:attr(data-event);position:absolute;top:0;left:50%;width:max-content;z-index:var(--index-below);font-size:var(--label-size);background:rgba(255,255,255,.5)}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr[data-event]:after{transform:translate(-50%, -0.5em)}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr[data-event-right]:after{transform:translate(-101%, -0.5em)}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr[data-event-left]:after{transform:translate(1%, -0.5em)}.chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper .pie{display:none}:host([data-increment][data-start][data-end]) .chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr{position:absolute;left:var(--position)}:host([data-increment][data-start][data-end]) .chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr td:first-child{display:none}:host([data-increment][data-start][data-end]) .chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper .slope{pointer-events:none}:host([data-increment][data-start][data-end]) .chart__outer input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper .slope svg{color:#000;stroke:currentColor;display:block;position:absolute;top:0;left:0;stroke-width:var(--line-thickness);width:100%;height:calc(100% - 1rem);pointer-events:none;z-index:var(--index-above)}.chart__outer input[type=radio]:not([value=pie])[value=line]:checked~.chart__wrapper .chart__lines~table tbody tr td:not(.chart__bar):not(:first-child):not(:hover){opacity:0}.chart__outer input[type=radio]:not([value=pie])[value=line]:checked~.chart__wrapper .line{display:block;position:absolute;top:0;left:0;stroke-width:var(--line-thickness);width:100%;height:100%;pointer-events:none;z-index:var(--index-above)}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper{margin-bottom:2rem}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .chart__yaxis,.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .line{display:none}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper table{display:none}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pies{display:flex;flex-direction:row;flex-wrap:wrap;gap:2rem}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie{position:relative;width:100%;aspect-ratio:1/1;min-width:12.5rem;flex:1 1 auto;display:inline-block;max-width:var(--pie-size)}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie:first-child{margin-left:0}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie:last-child{margin-right:0}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie svg{width:100%;height:100%}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie svg path:hover{transform:scale(1.05)}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie>div{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);pointer-events:none;background:var(--body-colour-set);border-radius:50%;z-index:var(--index-focus);padding:1rem;aspect-ratio:1/1;display:flex;justify-content:center;align-items:center;height:67%}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie>div span{text-align:center;display:block}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie:has(path:hover)>div{display:none}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie foreignObject{background:var(--body-colour-set);border-radius:50%;z-index:var(--index-focus);pointer-events:none;display:none;padding:1rem}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie foreignObject div{display:flex;justify-content:center;align-items:center;height:100%}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie foreignObject span{text-align:center;display:block}.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(1):hover~foreignObject:nth-of-type(1),.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(2):hover~foreignObject:nth-of-type(2),.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(3):hover~foreignObject:nth-of-type(3),.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(4):hover~foreignObject:nth-of-type(4),.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(5):hover~foreignObject:nth-of-type(5),.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(6):hover~foreignObject:nth-of-type(6),.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(7):hover~foreignObject:nth-of-type(7),.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(8):hover~foreignObject:nth-of-type(8),.chart__outer input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path:nth-child(9):hover~foreignObject:nth-of-type(9){display:block}:host(.chart--display-data) table tbody tr td:not(:first-child) span{opacity:1 !important;z-index:var(--index-above);top:0%;transform:translate(-50%, 0%) !important;display:block !important;height:fit-content;margin:0}:host(.chart--display-data) table tbody tr td:not(:first-child) span:before{display:none}:host(.chart--display-data) input[type=radio]:is([value=bar],[value=comparison]):not([value=none]):not([value=pie]):checked~.chart__wrapper table tbody tr td:not(:first-child) span{top:50%;right:0;left:0;transform:translate(0%, -50%) !important;text-align:right;width:calc(100% - .4rem);min-width:fit-content;padding:0 .1rem;border-radius:0}:host(.chart--display-data) input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr td:not(:first-child) span{bottom:.25rem;top:auto}:host(.chart--display-data) input[type=radio]:not([value=pie])[value=line]:checked~.chart__wrapper .chart__lines~table tbody tr td:not(:first-child):not(:hover){opacity:1}:host(.chart--show-totals) .chart__key .key .chart__total{display:flex;font-size:var(--label-size);font-weight:bold;line-height:1;padding-left:1.5em}:host(.chart--show-totals) .chart__key .key .chart__total__number{margin-right:1rem}:host(.chart--show-totals) .chart__key .key .chart__total__percent{margin-left:auto}.chart--animate.animating.inview{--animation-left: 2s}.chart--animate.animating.inview table tbody tr td:not(:first-child){transition:height 2s ease-out,width 2s ease-out,bottom 2s ease-out,left var(--animation-left) ease-out;transition-delay:calc(var(--row-index)*.1s)}.chart--animate:not(.inview) table tbody tr td:not(:first-child){--bottom: var(--min-bottom, 0%)!important;--percent: 0%!important;--axis: 0%!important;--comparison: 0%!important}.chart--animate.animating input[type=radio]:not([value=none]):not([value=pie]):checked~.chart__wrapper table tbody tr td:not(:first-child){overflow:hidden}.chart--animate:not(.inview) input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper table tbody tr td:not(:first-child){--percent: 0%!important}.chart--animate.animating input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper .slope path{transition:2s ease-out}.chart--animate:not(.inview) input[type=radio]:not([value=pie]):is([value=line],[value=scatter],[value=bubble],[value=radar],[value=proportional],[value=combo]):checked~.chart__wrapper .slope path{d:var(--path)}.chart--animate.animating input[type=radio]:not([value=pie])[value=line]:checked~.chart__wrapper .line path{transition:2s ease-out}.chart--animate:not(.inview) input[type=radio]:not([value=pie])[value=line]:checked~.chart__wrapper .line path{d:var(--path)}.chart--animate input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path{transition:calc(2s*var(--second-fraction, 1)) ease-out;transition-delay:calc(var(--row-index)*var(--path-index)*.1s)}.chart--animate:not(.inview) input[type=radio]:not([value=none]):is([value=pie],[value=polar]):checked~.chart__wrapper .pie path{transform:scale(60%) !important}/*# sourceMappingURL=charts.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../sass/components/charts.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAiBA,MAGI,0YCCF,+CDKA,MACE,qCACA,sCACA,qCACA,2CAIJ,8BACE,8CAEE,8GAOA,gHACA,+GAeF,kJAEE,iCAEA,8BAJF,kJAKI,yBACA,6BAGJ,yEACE,6BACA,UAEA,8BAJF,yEAKI,0BAGJ,yCACE,2BAEA,8BAHF,yCAII,0BArBJ,kJAEE,iCAEA,8BAJF,kJAKI,yBACA,6BAGJ,yEACE,6BACA,UAEA,8BAJF,yEAKI,0BAGJ,yCACE,2BAEA,8BAHF,yCAII,0BArBJ,kJAEE,iCAEA,8BAJF,kJAKI,yBACA,6BAGJ,yEACE,6BACA,UAEA,8BAJF,yEAKI,0BAGJ,yCACE,2BAEA,8BAHF,yCAII,0BArBJ,kJAEE,iCAEA,8BAJF,kJAKI,yBACA,6BAGJ,yEACE,6BACA,UAEA,8BAJF,yEAKI,0BAGJ,yCACE,2BAEA,8BAHF,yCAII,0BArBJ,kJAEE,iCAEA,8BAJF,kJAKI,yBACA,6BAGJ,yEACE,6BACA,UAEA,8BAJF,yEAKI,0BAGJ,yCACE,2BAEA,8BAHF,yCAII,0BArBJ,kJAEE,iCAEA,8BAJF,kJAKI,yBACA,6BAGJ,yEACE,6BACA,UAEA,8BAJF,yEAKI,0BAGJ,yCACE,2BAEA,8BAHF,yCAII,0BArBJ,kJAEE,iCAEA,8BAJF,kJAKI,yBACA,6BAGJ,yEACE,6BACA,UAEA,8BAJF,yEAKI,0BAGJ,yCACE,2BAEA,8BAHF,yCAII,0BArBJ,kJAEE,iCAEA,8BAJF,kJAKI,yBACA,6BAGJ,yEACE,6BACA,UAEA,8BAJF,yEAKI,0BAGJ,yCACE,2BAEA,8BAHF,yCAII,0BArBJ,oJAEE,iCAEA,8BAJF,oJAKI,yBACA,6BAGJ,yEACE,6BACA,UAEA,8BAJF,yEAKI,0BAGJ,yCACE,2BAEA,8BAHF,yCAII,0BAQJ,2BACE,eACA,mBACA,cAMJ,YAEE,oBACA,gBAEA,mBACE,gBACA,qBACA,qBACA,mBACA,WCtGA,oCDiGF,mBASI,YAIJ,iBACE,qBACA,qBACA,mBAEA,wBACE,WACA,WACA,UACA,mBACA,eACA,qBACA,sBACA,mBAGF,6BACE,aAON,0CAEE,sBACA,sBAYA,aACA,kBACA,mBCvJE,oCDsIJ,0CAOI,uBC7IA,oCDsIJ,0CAYI,wBAOF,wDACE,mBACA,aACA,8BACA,QAEA,qEAEE,sBACA,kBACA,SACA,mBAEA,sFACE,aAGF,0EACE,cACA,6BACA,qBACA,iBACA,4BAGF,qFAEE,8BCpLJ,oCDyJF,wDAiCI,WAIE,sFACE,cAGF,qFAEE,8BAMR,6DAEE,kBACA,MACA,OACA,WACA,yBACA,mBACA,2BACA,aACA,8BAEA,wEAEE,sBACA,kBACA,QACA,WACA,WACA,mBACA,8BAGF,8EACE,8CAEA,gGAEE,+CAKN,0DAEE,oBACA,gBACA,SACA,mBACA,kBAEA,gEACE,iBAIJ,gDACE,cACA,WACA,+BACA,kBACA,gBAGA,sDACE,aAGF,sDAEE,aACA,kBACA,WACA,YACA,MACA,OACA,mBACA,YAGF,yDACE,aACA,mBACA,uBACA,qBACA,YACA,WACA,YACA,kBACA,aAEA,wEACE,kBACA,SACA,SACA,6BACA,WACA,UACA,mBACA,eACA,gBACA,uBACA,4BACA,aACA,YACA,eCzSJ,oCD2RE,wEAiBI,cACA,eAIJ,uKAGE,cAGF,8EACE,YACA,0BACA,yBACA,UACA,YACA,gBACA,kBACA,iBACA,UACA,YAEA,iGACE,aAGF,mFACE,kBACA,YACA,SACA,4BACA,gBACA,6BACA,8BACA,UACA,oBACA,cACA,oBACA,qBACA,WACA,gBACA,kBAEA,2FACE,oDAIJ,yFACE,UACA,2BAIJ,+FAEE,UACA,2BAGF,8FAEE,UACA,8BC5WJ,oCDiXI,6LAGE,SACA,8BAKF,2FACE,aAMR,+FAEE,aAOF,wEACE,8BACA,2BACA,mBAMJ,sDAEE,sBCrZE,oCDmZJ,sDAMI,yBCzZA,oCDmZJ,sDAUI,yBAGF,kEACE,8BAEA,qEACE,WACA,kBACA,mBACA,UAGA,gGAEE,0BACA,cAEF,+FAEE,UACA,8BACA,cAGF,oFACE,oBAGF,0FACE,kBACA,SACA,sBACA,WACA,UACA,mBACA,iBACA,kBACA,UAEA,gGACE,UAKF,kFACE,WACA,4BAEA,YACA,QACA,kBACA,MACA,SACA,YACA,iBACA,2BAMR,4DACE,cACA,kBACA,MACA,OACA,mCACA,WACA,yBACA,oBACA,2BAGF,2DACE,aAMJ,kBAEE,mBAEA,wDAEE,aAEF,kCACE,aAGF,wBACE,aACA,mBACA,eACA,SAGF,uBACE,kBACA,WACA,iBACA,kBACA,cACA,qBCxgBA,oCDkgBF,uBAUI,kCC5gBF,oCDkgBF,uBAcI,8BAIF,mCACE,cAEF,kCACE,eAIJ,2BACE,WACA,YAEA,sCACE,sBAIJ,qCACE,gCACA,kBACA,2BACA,oBACA,aACA,aAEA,yCACE,aACA,uBACF,mBACE,YAEF,0CACE,kBACA,cAKF,oDACE,cAEF,+DACE,aAEF,gmBAQE,cAON,6BACE,aAIA,kFAGE","file":"charts.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../sass/components/charts.scss"],"names":[],"mappings":"AAwDA,iBACE,wBAGF,cAEE,2BAGA,6CACA,6CACA,gDACA,sDACA,6CASE,0gBAIF,kBACA,gBACA,iBACA,kBACA,sBACA,kBACA,sBACA,wBACA,sBACA,+BACA,sBACA,oBACA,6BACA,gDACA,6BA6CA,mBACA,aACA,sBAxEA,oBACE,0BACA,sDAyBF,6BAEE,yFAGE,iBACA,4BACA,iDACA,cAGJ,6BACE,qCAEE,cAGJ,6BACE,8BACE,gDACA,mCACA,wBACA,oBACA,6BACA,iDAIJ,6BAEE,8BAEE,uBACA,+BACA,yBAIJ,mCACE,kBACA,mBAOF,gBACE,cACA,QAGF,yBACE,iBAEA,gEACE,qBACA,4BAGF,2BACE,QAGF,8DACE,QAON,cACE,eACA,gBACA,qBAGF,kBACE,mBAGF,eACE,0BACA,kBACA,oBAQA,qGAGE,0CAGF,uHACE,gCACA,oBACA,kBACA,UAEF,uFACE,+BAbF,qGAGE,0CAGF,uHACE,gCACA,oBACA,kBACA,UAEF,uFACE,+BAbF,qGAGE,0CAGF,uHACE,gCACA,oBACA,kBACA,UAEF,uFACE,+BAbF,qGAGE,0CAGF,uHACE,gCACA,oBACA,kBACA,UAEF,uFACE,+BAbF,qGAGE,0CAGF,uHACE,gCACA,oBACA,kBACA,UAEF,uFACE,+BAbF,qGAGE,0CAGF,uHACE,gCACA,oBACA,kBACA,UAEF,uFACE,+BAbF,qGAGE,0CAGF,uHACE,gCACA,oBACA,kBACA,UAEF,uFACE,+BAbF,qGAGE,0CAGF,uHACE,gCACA,oBACA,kBACA,UAEF,uFACE,+BAbF,qGAGE,0CAGF,uHACE,gCACA,oBACA,kBACA,UAEF,uFACE,+BAIJ,gKAGE,2CAKF,2BACE,UACA,kBACA,oBAGF,gBAOE,kBACA,cACA,kBACA,2BACA,MACA,QACA,wCAXA,iDACE,aAaF,iCACE,iBACA,cACA,cAEA,wCACE,WACA,YACA,WACA,47BACA,0BACA,qBAEA,sBACA,wBACA,sBAIJ,oCAEE,aAGF,sBACE,eAEA,4BAEE,+CAIJ,sBACE,uBAEA,6BACA,sBAEA,wBACE,cAIJ,uCACE,gBACA,iBAKF,iDACE,cAMJ,mCACE,UACA,kBACA,oBAGF,YAEE,gBACA,qBAEA,aACA,cACA,6BACA,sBACA,yBACA,UAEA,iBAEE,0BACA,SAEA,wBACE,WACA,YACA,WACA,kBACA,qCACA,qBACA,kBAmBF,kEAEE,aAGF,+BACE,aAON,kEAEE,YAGF,qGACE,aAGF,iGACE,wBASA,gGACE,UAGF,iIACE,cAGF,gGACE,yBATF,gGACE,UAGF,iIACE,cAGF,gGACE,yBATF,gGACE,UAGF,iIACE,cAGF,gGACE,yBATF,gGACE,UAGF,iIACE,cAGF,gGACE,yBATF,gGACE,UAGF,iIACE,cAGF,gGACE,yBATF,gGACE,UAGF,iIACE,cAGF,gGACE,yBATF,gGACE,UAGF,iIACE,cAGF,gGACE,yBATF,gGACE,UAGF,iIACE,cAGF,gGACE,yBATF,gGACE,UAGF,kIACE,cAGF,gGACE,yBAMJ,gCACE,SACA,aAKF,gBAEE,cACA,aACA,mBACA,kBACA,mBAEA,8BACE,aACA,8BACA,yBAEA,2CAEE,sBACA,kBACA,SACA,mBAEA,4DACE,mCAGF,gDACE,cACA,6BACA,qBACA,iBACA,4BAGF,2DAEE,4CAKN,8BACE,mBACA,aACA,8BACA,WACA,kBACA,OACA,aAEA,2CAEE,oBACA,UACA,kBACA,SACA,mBAEA,gDACE,cACA,8BACA,kBACA,4BACA,kBACA,SAKN,mCAEE,kBACA,MACA,OACA,WACA,YACA,aACA,8BACA,oBAEA,8CAEE,sBACA,kBACA,QACA,WACA,WACA,mBACA,8BACA,oBACA,2BAGA,2EACE,aAIJ,sDAEE,8BACA,2BACA,2BACA,iBAEA,2DACE,kBACA,SACA,4BACA,6BACA,gCAGJ,oDACE,8CAEA,sEAEE,+CAKN,uBAEE,kBACA,YAGF,sBACE,cACA,sBACA,qCACA,kBACA,gBACA,iBAEA,4BACE,aAGF,4BAEE,aACA,kBACA,WACA,YACA,MACA,OACA,mBACA,YAGF,+BACE,aACA,mBACA,uBACA,qBACA,YACA,WACA,YACA,kBACA,cACA,mBAEA,kCACE,oBAGF,8CACE,kBACA,SACA,SACA,6BACA,kBACA,UACA,mBACA,eACA,gBACA,uBACA,4BAEA,kBAEA,6BAfF,8CAiBI,cACA,oBACA,yCAIJ,oGAEE,aAGF,mHAGE,cAGF,oDACE,YACA,0BACA,yBACA,WACA,iBACA,kBACA,iBACA,UACA,+BACA,4BACA,2BAEA,8HAEE,aAGF,uEACE,aAGF,yDACE,kBACA,YACA,SACA,4BACA,gBACA,6BACA,+BACA,UACA,oBACA,cACA,oBACA,qBACA,kCACA,gBACA,kBAEA,iEACE,oDAGF,4EACE,4DAIJ,+DACE,UACA,2BAIJ,6BAEE,yIAGE,SACA,6BACA,mBAKF,iEACE,aAMN,6BAII,uJACE,aAGF,+KAEE,QACA,0BACA,cACA,gBAEF,6KAEE,UACA,8BACA,cACA,iBAGF,qMAEE,UACA,2BACA,gBAGF,mMAEE,UACA,8BACA,kBAKN,6BAGI,oEACE,wBAGF,oGACE,yBAMF,wKAEE,wBAGF,qGACE,yBAMF,2KAEE,wBAGF,sGACE,0BAQJ,uDACE,aAGF,kFACE,aAKN,2CAEE,aASA,oIACE,yBACF,qDACA,aAGA,iJACE,kBAEA,4JACE,YACA,oBACA,YACA,4BACA,QAEA,iKACE,cACA,4BACA,kBACA,SACA,iCAKN,4IAEE,aAGF,oIAEE,cAGF,0IAEE,sBACA,kBAGF,6IACE,sBACA,uBACA,oBACA,UAEA,gJAEE,YACA,SACA,uBACA,wCACA,eACA,yBACA,+BAGF,4JACE,gBACA,eACA,yBACA,kBAKF,yJACE,cACA,iCACA,4BACA,mBACA,UACA,oBACA,mBAKF,gLACE,kBACA,4CACA,yBACA,kBACA,2BACA,QACA,kBACA,mBASR,6BAjGI,mHACE,yBACF,qDACA,aAGA,gIACE,kBAEA,2IACE,YACA,oBACA,YACA,4BACA,QAEA,gJACE,cACA,4BACA,kBACA,SACA,iCAKN,2HAEE,aAGF,mHAEE,cAGF,yHAEE,sBACA,kBAGF,4HACE,sBACA,uBACA,oBACA,UAEA,+HAEE,YACA,SACA,uBACA,wCACA,eACA,yBACA,+BAGF,2IACE,gBACA,eACA,yBACA,kBAKF,wIACE,cACA,iCACA,4BACA,mBACA,UACA,oBACA,mBAKF,+JACE,kBACA,4CACA,yBACA,kBACA,2BACA,QACA,kBACA,oBAgBN,yFACE,aACA,8BACA,2BACA,mBAEA,4FACE,2BASJ,sLACE,8BAGE,yNACE,oBACA,WAWJ,gNACE,UACA,iBACA,kBACA,UAKA,+NACE,kBACA,SACA,yBACA,WACA,UACA,mBACA,iBACA,kBAEA,qOACE,UAIJ,gMACE,WACA,4BACA,YACA,QACA,kBACA,MACA,SACA,YACA,iBACA,2BACA,UAIA,sMACE,UAKF,oOACE,UACA,4BAEF,mOACE,yBACA,kBACA,MACA,SACA,kBACA,2BACA,4BACA,gCAIF,2MACE,kCAIF,iNACE,mCAIF,gNACE,gCAMR,+KACE,aAMF,uOACE,kBACA,qBAEA,sPACE,aAIJ,+NAEE,oBAEF,mOACE,WACA,oBACA,cACA,kBACA,MACA,OACA,mCACA,WACA,yBACA,oBACA,2BAUE,oKACE,UAKN,2FACE,cACA,kBACA,MACA,OACA,mCACA,WACA,YACA,oBACA,2BAOJ,wGAEE,mBAEA,oOAEE,aAEF,8GACE,aAGF,8GACE,aACA,mBACA,eACA,SAGF,6GACE,kBACA,WACA,iBACA,kBACA,cACA,qBACA,0BAEA,yHACE,cAEF,wHACE,eAIJ,iHACE,WACA,YAEA,4HACE,sBAIJ,iHAEE,kBACA,QACA,SACA,gCACA,oBACA,kCACA,kBACA,2BACA,aACA,iBACA,aACA,uBACA,mBACA,WAEA,sHACE,kBACA,cAIJ,iIACE,aAGF,2HACE,kCACA,kBACA,2BACA,oBACA,aACA,aAEA,+HACE,aACA,uBACA,mBACA,YAEF,gIACE,kBACA,cAKF,k7CASE,cAkBA,qEAIE,qBACA,2BACA,OACA,yCACA,yBACA,mBAEA,SAVA,4EACE,aAeN,qLACE,QACA,QACA,OACA,yCACA,iBACA,yBACA,sBACA,gBACA,gBAKF,iOACE,cACA,SAIJ,iKACE,UAUE,0DACE,aACA,4BACA,iBACA,cACA,mBAGF,kEACE,kBAEF,mEACE,iBAYR,iCAEE,qBAEA,qEAEE,uGACA,4CAMF,iEACE,0CACA,wBACA,qBACA,2BAuBF,2IACE,gBASF,6NACE,wBAMF,kMACE,uBAKF,qMACE,cASF,4GACE,uBAQF,+GACE,cAOF,oHACE,uDACA,8DAKF,iIACE","file":"charts.css"}
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../sass/components/fileupload.scss","../../sass/_functions/variables.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAGA,aACE,2BACA,oBAEA,8BACE,aAGF,iCACE,aACA,cCwTqB,EDvTrB,YCkTqB,oBDjTrB,WCuTkB,ODtTlB,YCiTqB,sBDhTrB,YCsTmB,KDrTnB,MCgTe,sBD/Sf,WACA,cACA,oBAEA,iBACA,iBACA,oBACA,mCAGF,0BACE,oBAMF,YACE,cACA,WACA,8EACA,gCACA,qCACA,6CACA,gBACA,qBACA,mBACA,4BACA,qBACA,mBACA,2BACA,kBE7BF,+CFeA,YAqBI,kCACA,oCACA,0BAIF,8BA3BF,YA6BI,mBAEA,mBACE,UACA,wBACA,0BAEA,yBACE,yBAKN,mBACE,kBACA,0BACA,eACA,8BACA,iBACA,gBACA,YACA,gBACA,eACA,yBAEA,yBACE,WACA,MACA,OACA,kBACA,cACA,gBACA,eACA,2BACA,wBACA,6BACA,eACA,sBACA,sBACA,qCACA,uBACA,8BACA,8BAMR,2CAEE,2BAEA,wDAEE,2BAGF,4DACE,cACA,mBACA,8CACA,oBACA,kBACA,gCACA,iBACA,eACA,eAEA,kEAEE,oCAIJ,sDACE,kBAGF,8DACE,sDACA,kBACA,8BACA,UACA,oBAGF,kEACE,kBACA,QACA","file":"fileupload.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../sass/components/fileupload.scss","../../sass/_functions/variables.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAGA,aACE,2BACA,oBAEA,8BACE,aAGF,iCACE,aACA,cCwYqB,EDvYrB,YCkYqB,oBDjYrB,WCuYkB,ODtYlB,YCiYqB,sBDhYrB,YCsYmB,KDrYnB,MCgYe,sBD/Xf,WACA,cACA,oBAEA,iBACA,iBACA,oBACA,mCAGF,0BACE,oBAMF,YACE,cACA,WACA,8EACA,gCACA,qCACA,6CACA,gBACA,qBACA,mBACA,4BACA,qBACA,mBACA,2BACA,kBE7BF,+CFeA,YAqBI,kCACA,oCACA,0BAIF,8BA3BF,YA6BI,mBAEA,mBACE,UACA,wBACA,0BAEA,yBACE,yBAKN,mBACE,kBACA,0BACA,eACA,8BACA,iBACA,gBACA,YACA,gBACA,eACA,yBAEA,yBACE,WACA,MACA,OACA,kBACA,cACA,gBACA,eACA,2BACA,wBACA,6BACA,eACA,sBACA,sBACA,qCACA,uBACA,8BACA,8BAMR,2CAEE,2BAEA,wDAEE,2BAGF,4DACE,cACA,mBACA,8CACA,oBACA,kBACA,gCACA,iBACA,eACA,eAEA,kEAEE,oCAIJ,sDACE,kBAGF,8DACE,sDACA,kBACA,8BACA,UACA,oBAGF,kEACE,kBACA,QACA","file":"fileupload.css"}
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../sass/components/nav.scss","../../sass/_functions/mixins.scss","../../sass/_functions/variables.scss"],"names":[],"mappings":"AAEA,MACE,wBACA,8BACA,0BACA,8BAGF,UAEE,UACA,kBACA,kBACA,YACA,sBACA,mBACA,gBACA,kBACA,gBACA,YACA,aACA,mBACA,0BAEA,YACE,iBACA,mBACA,kBACA,gBAEA,aACA,kBACA,YACA,QACA,oBACA,2BAGF,cACE,aAKA,2BACE,aAGF,6BACE,eAIJ,oCACE,eACE,iBAEA,iBACA,yBACA,qBACA,SACA,8BACA,oBACA,kBACA,4BC3DF,oCDGJ,UA8DI,kBACA,WACA,uBACA,cAEA,yBACE,oBCvEF,oCDGJ,UA0EI,kBACA,YACA,kBACA,qBACA,cACA,2BAEA,yBACE,cAGF,eAME,oBACA,cCrEF,qED8DA,eCwGA,29BAGF,6BACE,wCApMA,oCDiGE,oBACE,QAGF,6BACE,kBACA,gBACA,sBACA,qBACA,iBACA,6BAGF,2CACE,cASJ,0CACE,6BAMN,oCACE,iBACE,iBAGF,aAEE,kBACA,SACA,OACA,WACA,0BACA,gBACA,oBACA,0BAEA,6BAEE,0BACA,0BAIJ,yBACE,UAGF,+BACE,oBAGF,+BACE,oBAGF,MAEE,4BACA,gDACA,wCACA,kBACA,0BACA,UACA,MACA,0BACA,0BACA,cACA,2BACA,aACA,sBACA,iBAEA,QACE,eCrKJ,oEDmJA,MAsBI,mCCoBF,6tBAlLA,qEDwIF,MA6BI,qCCCF,29BAGF,oBACE,wCDDA,+DAjCF,MAmCI,wBAtEN,oCAyEI,aACE,WACA,kBACA,cACA,MACA,OACA,WACA,0CACA,UAGF,WACE,wDACA,iDACA,yCACA,mBAGF,eACE,wBAIJ,iBACE,aAGF,gCACE,cACA,oBACA,qBACA,oBACA,qBACA,+BACA,YACA,mBCjNA,qEDyMF,gCAWI,uBA/GN,oCAkHI,2CACE,iBAIJ,kEACE,yBACA,+BACA,4BACA,oBACA,cACA,0BACA,8BAEA,wEACE,WACA,cACA,WACA,sBACA,iDACA,gCAIJ,8CAEE,cACA,oBAGF,yCAEE,cACA,oBAGF,oDAEE,yBACA,+BACA,sBACA,0BACA,6BACA,cAGF,gCACE,cACA,sBAGF,kCACE,wBAIF,iBACE,WACA,6BACA,cAEF,sBACE,aAEF,wBACE,kBAMJ,yDAEE,MACE,gCAGF,gCAEE,gCACA,gCAEA,uCACE,mCAGJ,gBAEE,uBCzUA,oCDiVF,MAEE,2BAGF,iBACE,gCACA,4BACA,eACA,aACA,iBACA,mBAEA,qCACE,4BAGF,mBACE,2BAIJ,UACE,aAGF,gBACE,iBAEF,0BACE,qBACA,QAGF,kCAGE,iBAGF,iBACE,aAGF,gCAEE,wCACA,cACA,kBACA,MACA,OACA,YC1WA,qEDmWF,gCAWI,sBCxMF,29BAGF,8CACE,wCArLF,oED8WA,gCCjLE,6tBA5MA,oCDkZA,2CACE,iBACA,kBACA,4CACA,8BACA,iCACA,iBAIJ,6BACE,8BAEA,mCACE,kCAIJ,8CAGE,2BACA,0BAGF,kEAEE,0BACA,8BAEA,wEACE,aAIJ,+CAEE,4BAGF,wBAEE,4BAGF,gCACE,cACA,kBAIF,kCAEE,+BAGF,wCAEE,0BAGF,gBAEE,8BACA,gBAGF,qBACE,kBACA,SACA,SACA,OACA,WACA,qBACA,iBACA,+BAEA,iBACA,gBACA,gBAEA,gCAEA,iCACA,iBAIF,oBAEE,+BC7dF,oED2dA,oBAMI,8CChfF,oCDmfA,uEAEE,aAIJ,+BAEE,4CAEA,8EAEE,yBACA,WAEF,uCACE,eAKJ,UAEE,WACA,cACA,kBACA,SACA,OACA,uCACA,WACA,WACA,oBACA,0BAEA,eAEE,mBACA,0BACA,2BAON,sBACE,mBACA,4BACA,gDACA,wCACA,kBACA,0BACA,UACA,MACA,0BACA,0BACA,cACA,2BACA,aACA,sBACA,iBAEA,wBACE,cCniBF,+CDihBF,sBAsBI,mCC1WA,6tBAlLA,gDDsgBJ,sBA6BI,qCC7XA,29BAGF,oCACE,wCD6XF,8BAjCF,sBAmCI,wBAGF,6BACE,cACA,wBACA,0CACA,UACA,sBACA,iBACA,YEnRqB,oBFoRrB,WE9QkB,OF+QlB,YEpRqB,sBFqRrB,MEpRe,sBFqRf,WACA,kBACA,oBACA,mCCplBA,oCDskBF,6BAkBI,eACA,mBACA,qBACA,qBACA,yBC5lBF,oCDgiBJ,sBAmEI,iCCnmBA,oCDgiBJ,sBAwEI,uCACA,uBAIJ,iBAEE,kBACA,MACA,QACF,cACE,aACF,gBACA,oBACE,gDAKA,8CACE,8BAIJ,2BACE,wDACA,iDACA,yCACA,mBAGF,oCACE,0BAEE,0BACA,2BC3oBA,oCDkpBF,kDACE,8BAGF,wDACE,8BACA,+BAGF,0CACE,6BAGF,+EACE,+BAOJ,oCAEI,yDACE,yBAEA,2DACE,0BAEF,8DACE,cAMR,yDAEI,mDACE,yBAEA,qDACE,0BAEF,wDACE,cAQR,oCAEI,0CACE,qBACA,eC3sBF,oCDktBA,0CACE,aACA,iBACA","file":"nav.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../sass/components/nav.scss","../../sass/_functions/mixins.scss","../../sass/_functions/variables.scss"],"names":[],"mappings":"AAEA,MACE,wBACA,8BACA,0BACA,8BAGF,UAEE,UACA,kBACA,kBACA,YACA,sBACA,mBACA,gBACA,kBACA,gBACA,YACA,aACA,mBACA,0BAEA,YACE,iBACA,mBACA,kBACA,gBAEA,aACA,kBACA,YACA,QACA,oBACA,2BAGF,cACE,aAKA,2BACE,aAGF,6BACE,eAIJ,oCACE,eACE,iBAEA,iBACA,yBACA,qBACA,SACA,8BACA,oBACA,kBACA,4BC3DF,oCDGJ,UA8DI,kBACA,WACA,uBACA,cAEA,yBACE,oBCvEF,oCDGJ,UA0EI,kBACA,YACA,kBACA,qBACA,cACA,2BAEA,yBACE,cAGF,eAME,oBACA,cCrEF,qED8DA,eCwGA,29BAGF,6BACE,wCApMA,oCDiGE,oBACE,QAGF,6BACE,kBACA,gBACA,sBACA,qBACA,iBACA,6BAGF,2CACE,cASJ,0CACE,6BAMN,oCACE,iBACE,iBAGF,aAEE,kBACA,SACA,OACA,WACA,0BACA,gBACA,oBACA,0BAEA,6BAEE,0BACA,0BAIJ,yBACE,UAGF,+BACE,oBAGF,+BACE,oBAGF,MAEE,4BACA,gDACA,wCACA,kBACA,0BACA,UACA,MACA,0BACA,0BACA,cACA,2BACA,aACA,sBACA,iBAEA,QACE,eCrKJ,oEDmJA,MAsBI,mCCoBF,6tBAlLA,qEDwIF,MA6BI,qCCCF,29BAGF,oBACE,wCDDA,+DAjCF,MAmCI,wBAtEN,oCAyEI,aACE,WACA,kBACA,cACA,MACA,OACA,WACA,0CACA,UAGF,WACE,wDACA,iDACA,yCACA,mBAGF,eACE,wBAIJ,iBACE,aAGF,gCACE,cACA,oBACA,qBACA,oBACA,qBACA,+BACA,YACA,mBCjNA,qEDyMF,gCAWI,uBA/GN,oCAkHI,2CACE,iBAIJ,kEACE,yBACA,+BACA,4BACA,oBACA,cACA,0BACA,8BAEA,wEACE,WACA,cACA,WACA,sBACA,iDACA,gCAIJ,8CAEE,cACA,oBAGF,yCAEE,cACA,oBAGF,oDAEE,yBACA,+BACA,sBACA,0BACA,6BACA,cAGF,gCACE,cACA,sBAGF,kCACE,wBAIF,iBACE,WACA,6BACA,cAEF,sBACE,aAEF,wBACE,kBAMJ,yDAEE,MACE,gCAGF,gCAEE,gCACA,gCAEA,uCACE,mCAGJ,gBAEE,uBCzUA,oCDiVF,MAEE,2BAGF,iBACE,gCACA,4BACA,eACA,aACA,iBACA,mBAEA,qCACE,4BAGF,mBACE,2BAIJ,UACE,aAGF,gBACE,iBAEF,0BACE,qBACA,QAGF,kCAGE,iBAGF,iBACE,aAGF,gCAEE,wCACA,cACA,kBACA,MACA,OACA,YC1WA,qEDmWF,gCAWI,sBCxMF,29BAGF,8CACE,wCArLF,oED8WA,gCCjLE,6tBA5MA,oCDkZA,2CACE,iBACA,kBACA,4CACA,8BACA,iCACA,iBAIJ,6BACE,8BAEA,mCACE,kCAIJ,8CAGE,2BACA,0BAGF,kEAEE,0BACA,8BAEA,wEACE,aAIJ,+CAEE,4BAGF,wBAEE,4BAGF,gCACE,cACA,kBAIF,kCAEE,+BAGF,wCAEE,0BAGF,gBAEE,8BACA,gBAGF,qBACE,kBACA,SACA,SACA,OACA,WACA,qBACA,iBACA,+BAEA,iBACA,gBACA,gBAEA,gCAEA,iCACA,iBAIF,oBAEE,+BC7dF,oED2dA,oBAMI,8CChfF,oCDmfA,uEAEE,aAIJ,+BAEE,4CAEA,8EAEE,yBACA,WAEF,uCACE,eAKJ,UAEE,WACA,cACA,kBACA,SACA,OACA,uCACA,WACA,WACA,oBACA,0BAEA,eAEE,mBACA,0BACA,2BAON,sBACE,mBACA,4BACA,gDACA,wCACA,kBACA,0BACA,UACA,MACA,0BACA,0BACA,cACA,2BACA,aACA,sBACA,iBAEA,wBACE,cCniBF,+CDihBF,sBAsBI,mCC1WA,6tBAlLA,gDDsgBJ,sBA6BI,qCC7XA,29BAGF,oCACE,wCD6XF,8BAjCF,sBAmCI,wBAGF,6BACE,cACA,wBACA,0CACA,UACA,sBACA,iBACA,YEnMqB,oBFoMrB,WE9LkB,OF+LlB,YEpMqB,sBFqMrB,MEpMe,sBFqMf,WACA,kBACA,oBACA,mCCplBA,oCDskBF,6BAkBI,eACA,mBACA,qBACA,qBACA,yBC5lBF,oCDgiBJ,sBAmEI,iCCnmBA,oCDgiBJ,sBAwEI,uCACA,uBAIJ,iBAEE,kBACA,MACA,QACF,cACE,aACF,gBACA,oBACE,gDAKA,8CACE,8BAIJ,2BACE,wDACA,iDACA,yCACA,mBAGF,oCACE,0BAEE,0BACA,2BC3oBA,oCDkpBF,kDACE,8BAGF,wDACE,8BACA,+BAGF,0CACE,6BAGF,+EACE,+BAOJ,oCAEI,yDACE,yBAEA,2DACE,0BAEF,8DACE,cAMR,yDAEI,mDACE,yBAEA,qDACE,0BAEF,wDACE,cAQR,oCAEI,0CACE,qBACA,eC3sBF,oCDktBA,0CACE,aACA,iBACA","file":"nav.css"}
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../sass/components/slider.scss","../../sass/_functions/variables.scss"],"names":[],"mappings":"AAEA,KACE,mBAGF,eAEE,sBACA,iBAGF,SACE,kBACA,UAGF,MACE,UCmUgB,8BDlUhB,cAIF,iDAEE,sOAGF,oCAEE,sOAKF,oCACE,kBACA,MACA,SACA,UAGF,mEAEE,yBACA,oBACA,WACA,kBAGF,iCACE,oCACE,OACA,WAGF,qBAKF,sDACE,yBACA,oBAIF,gBACE,aAEA,yBACA,qBACA,uBAGA,qBACE,aAGF,mCAEE,8BACA,8BACA,oBACA,kBAEA,0CACE,WACA,kBACA,WACA,WACA,oBACA,sBACA,sCAGF,wCACE,cACA,kBACA,UACA,UACA,cACA,eAGF,6CACE,sBAMN,iBACE,wBACA,0CACA,sCACA,mCACA,2BACA,2BACA","file":"slider.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../sass/components/slider.scss","../../sass/_functions/variables.scss"],"names":[],"mappings":"AAEA,KACE,mBAGF,eAEE,sBACA,iBAGF,SACE,kBACA,UAGF,MACE,UCmZgB,8BDlZhB,cAIF,iDAEE,sOAGF,oCAEE,sOAKF,oCACE,kBACA,MACA,SACA,UAGF,mEAEE,yBACA,oBACA,WACA,kBAGF,iCACE,oCACE,OACA,WAGF,qBAKF,sDACE,yBACA,oBAIF,gBACE,aAEA,yBACA,qBACA,uBAGA,qBACE,aAGF,mCAEE,8BACA,8BACA,oBACA,kBAEA,0CACE,WACA,kBACA,WACA,WACA,oBACA,sBACA,sCAGF,wCACE,cACA,kBACA,UACA,UACA,cACA,eAGF,6CACE,sBAMN,iBACE,wBACA,0CACA,sCACA,mCACA,2BACA,2BACA","file":"slider.css"}
@@ -1 +1 @@
1
- .tabs:not(.admin-panel){position:relative}.tabs:not(.admin-panel) .tabs__links__wrapper{position:relative;margin:0 auto 2rem}.tabs:not(.admin-panel) .tabs__links__wrapper:before{content:"";display:block;position:absolute;left:auto;right:-2.5rem;top:0;bottom:1px;width:2.5rem;background:linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));z-index:1000;pointer-events:none}.tabs:not(.admin-panel) .tabs__links__wrapper:after{content:"";left:50%;position:relative;height:1px;width:100vw;background-color:var(--colour-border);transform:translate(-50%, 0);display:block;clear:both}@media screen and (prefers-color-scheme: dark){.tabs:not(.admin-panel) .tabs__links__wrapper:before{background:linear-gradient(90deg, rgba(38, 38, 38, 0), rgb(38, 38, 38))}}.tabs.admin-panel .tabs__links__wrapper:after{display:none}.tabs__links{padding-bottom:3px;position:relative;display:flex;flex-wrap:nowrap;width:auto;margin:0 -1.5rem;overflow-y:hidden;overflow-x:auto}.tabs__links::-webkit-scrollbar{display:none}.tabs__links .link{white-space:nowrap}.tabs__links .link:not(.text-decoration-none):not(.btn){--is-current: 0;font-weight:bold;font-family:var(--font-heading);font-size:1.125rem;cursor:pointer;margin:0;padding:1.5rem 1.5rem .5rem 1.5rem;display:inline-block}.tabs__links .link:not(.text-decoration-none):not(.btn).disabled{cursor:not-allowed;opacity:.4}.tabs__links .link:not(.text-decoration-none):not(.btn):last-child{margin-inline-end:0}.tabs__links .link:not(.text-decoration-none):not(.btn):after{position:absolute;content:"";bottom:0;left:50%;height:3px;width:100%;transform:translate(-50%, 0) scale(0, 0);background:var(--colour-info);transition:transform .4s}.tabs__links .link:not(.text-decoration-none):not(.btn):not(.disabled):hover:after,.tabs__links .link:not(.text-decoration-none):not(.btn):not(.disabled):focus:after,.tabs__links .link:not(.text-decoration-none):not(.btn):not(.disabled).focus:after{transform:translate(-50%, 0) scale(0.6, 1)}.tabs__links .link:not(.text-decoration-none):not(.btn):not(.disabled):is([aria-pressed=true],:active,.current):after{transform:translate(-50%, 0) scale(1, 1)}.tabs__links .link:not(.text-decoration-none):not(.btn):is([aria-pressed=true],.current){pointer-events:none;outline:var(--contrast-outline-width, 0px) solid var(--colour-primary-theme) !important}@media(min-width: 576px){.tabs__links .link:not(.text-decoration-none):not(.btn){padding:2rem 2rem .5rem 2rem}.tabs__links__wrapper{margin:0 auto 2.5rem}}.admin-panel :is(.admin-panel__links,.tabs__links){padding:0;margin:calc(var(--padding-top)*-1) calc(var(--padding-x)*-1) var(--padding-top) calc(var(--padding-x)*-1);border-top-left-radius:0.5rem;border-top-right-radius:0.5rem;display:flex;flex-direction:column;border-bottom:1px solid var(--colour-border);overflow:hidden;outline:var(--contrast-outline-width, 0px) solid var(--colour-primary)}.admin-panel :is(.admin-panel__links,.tabs__links):after{display:none}@media screen and (min-width: 36em){.admin-panel :is(.admin-panel__links,.tabs__links){flex-direction:row}}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn){margin:0;padding:1rem var(--padding-x);width:100%;position:relative;text-align:left;flex-grow:1;--gradient-direction: -90deg;background-color:var(--colour-success)}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn):not([class*=bg-]){background-image:linear-gradient(var(--gradient-direction), var(--colour-info) 0, transparent 100%)}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn):is(.current,[aria-pressed=true]){color:var(--colour-primary-theme)}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn):not(.current,[aria-pressed=true]){background:var(--colour-canvas-2) !important}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn):after{display:none}@media screen and (min-width: 36em){.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn){margin:0}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn):not(:first-child){border-left:1px solid var(--colour-border) !important}}.admin-panel :is(.admin-panel__links,.tabs__links) .link:is(.current,[aria-pressed=true]){pointer-events:none}/*# sourceMappingURL=tabs.css.map */
1
+ .tabs:not(.admin-panel){position:relative}.tabs:not(.admin-panel) .tabs__links__wrapper{position:relative;margin:0 auto 2rem}.tabs:not(.admin-panel) .tabs__links__wrapper:before{content:"";display:block;position:absolute;left:auto;right:-2.5rem;top:0;bottom:1px;width:2.5rem;background:linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));z-index:1000;pointer-events:none}.tabs:not(.admin-panel) .tabs__links__wrapper:after{content:"";left:50%;position:relative;height:1px;width:100vw;background-color:var(--colour-border);transform:translate(-50%, 0);display:block;clear:both}@media screen and (prefers-color-scheme: dark){.tabs:not(.admin-panel) .tabs__links__wrapper:before{background:linear-gradient(90deg, rgba(38, 38, 38, 0), rgb(38, 38, 38))}}.tabs.admin-panel .tabs__links__wrapper:after{display:none}.tabs__links{padding-bottom:3px;position:relative;display:flex;flex-wrap:nowrap;width:auto;margin:0 -1.5rem;overflow-y:hidden;overflow-x:auto}.tabs__links::-webkit-scrollbar{display:none}.tabs__links .link{white-space:nowrap}.tabs__links .link:not(.text-decoration-none):not(.btn){--is-current: 0;font-weight:bold;font-family:var(--font-heading);font-size:1.125rem;cursor:pointer;margin:0;padding:1.5rem 1.5rem .5rem 1.5rem;display:inline-block}.tabs__links .link:not(.text-decoration-none):not(.btn).disabled{cursor:not-allowed;opacity:.4}.tabs__links .link:not(.text-decoration-none):not(.btn):last-child{margin-inline-end:0}.tabs__links .link:not(.text-decoration-none):not(.btn):after{position:absolute;content:"";bottom:0;left:50%;height:3px;width:100%;transform:translate(-50%, 0) scale(0, 0);background:var(--colour-info);transition:transform .4s}.tabs__links .link:not(.text-decoration-none):not(.btn):not(.disabled):hover:after,.tabs__links .link:not(.text-decoration-none):not(.btn):not(.disabled):focus:after,.tabs__links .link:not(.text-decoration-none):not(.btn):not(.disabled).focus:after{transform:translate(-50%, 0) scale(0.6, 1)}.tabs__links .link:not(.text-decoration-none):not(.btn):not(.disabled):is([aria-pressed=true],:active,.current):after{transform:translate(-50%, 0) scale(1, 1)}.tabs__links .link:not(.text-decoration-none):not(.btn):is([aria-pressed=true],.current){pointer-events:none;outline:var(--contrast-outline-width, 0px) solid var(--colour-primary-theme) !important}@media(min-width: 576px){.tabs__links .link:not(.text-decoration-none):not(.btn){padding:2rem 2rem .5rem 2rem}.tabs__links__wrapper{margin:0 auto 2.5rem}}.admin-panel :is(.admin-panel__links,.tabs__links){padding:0;margin:calc(var(--padding-top)*-1) calc(var(--padding-x)*-1) var(--padding-top) calc(var(--padding-x)*-1);border-top-left-radius:0.5rem;border-top-right-radius:0.5rem;display:flex;flex-direction:column;border-bottom:1px solid var(--colour-border);overflow:hidden;outline:var(--contrast-outline-width, 0px) solid var(--colour-primary)}.admin-panel :is(.admin-panel__links,.tabs__links):after{display:none}@media screen and (min-width: 36em){.admin-panel :is(.admin-panel__links,.tabs__links){flex-direction:row}}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn){margin:0;padding:1rem var(--padding-x);width:100%;position:relative;text-align:left;flex-grow:1;--gradient-direction: -90deg;background-color:var(--colour-success)}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn):not([class*=bg-]){background-image:linear-gradient(var(--gradient-direction), var(--colour-info) 0, transparent 100%)}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn):is(.current,[aria-pressed=true]){color:var(--colour-primary-theme)}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn):not(.current,[aria-pressed=true]){background:var(--colour-canvas-2) !important}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn):after{display:none}@media screen and (min-width: 36em){.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn){margin:0}.admin-panel :is(.admin-panel__links,.tabs__links) .link:not(.text-decoration-none):not(.btn):not(:first-child){border-left:1px solid var(--colour-border) !important}}.admin-panel :is(.admin-panel__links,.tabs__links) .link:is(.current,[aria-pressed=true]){pointer-events:none}@media screen and (min-width: 36em){:host(.tabs--inline) .tabs__links{margin:0;justify-content:center}:host(.tabs--inline) .tabs__links__wrapper:after{width:100%}}/*# sourceMappingURL=tabs.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../sass/components/tabs.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAEA,wBACE,kBAEA,8CACE,kBACA,mBAEA,qDACE,WACA,cACA,kBACA,UACA,cACA,MACA,WACA,aACA,8EACA,aACA,oBAGF,oDACE,WACA,SACA,kBACA,WACA,YACA,sCACA,6BACA,cACA,WAGF,+CACE,qDACE,yEAQJ,8CACE,aAKN,aACE,mBACA,kBACA,aACA,iBACA,WACA,iBACA,kBACA,gBAEA,gCACE,aAGF,mBACE,mBAGF,wDACE,gBACA,iBACA,gCACA,mBACA,eACA,SACA,mCACA,qBAEA,iEACE,mBACA,WAGF,mEACE,oBAGF,8DACE,kBACA,WACA,SACA,SACA,WACA,WACA,yCACA,8BACA,yBAIA,yPAGE,2CAKF,sHACE,yCAIJ,yFACE,oBACA,wFAKN,yBAEI,wDACE,6BAIJ,sBACE,sBAMJ,mDAEE,UACA,0GAEA,8BACA,+BACA,aACA,sBACA,6CACA,gBACA,uEAEA,yDACE,aC/IA,oCDiIJ,mDAmBI,oBAGF,8FACE,SAEA,8BACA,WACA,kBACA,gBACA,YACA,6BACA,uCAEA,gHACE,oGAGF,+HACE,kCAGF,gIACE,6CAGF,oGACE,aC/KF,oCDuJF,8FA6BI,SAEA,gHAEE,uDAKN,0FACE","file":"tabs.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../sass/components/tabs.scss","../../sass/_functions/mixins.scss"],"names":[],"mappings":"AAEA,wBACE,kBAEA,8CACE,kBACA,mBAEA,qDACE,WACA,cACA,kBACA,UACA,cACA,MACA,WACA,aACA,8EACA,aACA,oBAGF,oDACE,WACA,SACA,kBACA,WACA,YACA,sCACA,6BACA,cACA,WAGF,+CACE,qDACE,yEAQJ,8CACE,aAKN,aACE,mBACA,kBACA,aACA,iBACA,WACA,iBACA,kBACA,gBAEA,gCACE,aAGF,mBACE,mBAGF,wDACE,gBACA,iBACA,gCACA,mBACA,eACA,SACA,mCACA,qBAEA,iEACE,mBACA,WAGF,mEACE,oBAGF,8DACE,kBACA,WACA,SACA,SACA,WACA,WACA,yCACA,8BACA,yBAIA,yPAGE,2CAKF,sHACE,yCAIJ,yFACE,oBACA,wFAKN,yBAEI,wDACE,6BAIJ,sBACE,sBAMJ,mDAEE,UACA,0GAEA,8BACA,+BACA,aACA,sBACA,6CACA,gBACA,uEAEA,yDACE,aC/IA,oCDiIJ,mDAmBI,oBAGF,8FACE,SAEA,8BACA,WACA,kBACA,gBACA,YACA,6BACA,uCAEA,gHACE,oGAGF,+HACE,kCAGF,gIACE,6CAGF,oGACE,aC/KF,oCDuJF,8FA6BI,SAEA,gHAEE,uDAKN,0FACE,oBC9LA,oCDmMF,kCACE,SACA,uBAEF,iDACE","file":"tabs.css"}