diff --git a/mintlify-docs/Components/Rating.mdx b/mintlify-docs/Components/Rating.mdx
new file mode 100644
index 00000000..28296f30
--- /dev/null
+++ b/mintlify-docs/Components/Rating.mdx
@@ -0,0 +1,418 @@
+
+title: 'Rating'
+description: 'Learn how to use the Rating component in your applications'
+icon: "star"
+iconType: "solid"
+---
+
+
+ ```python
+# An Example Rating:
+from zero_true import Rating
+
+example = Rating(length=5, value=3, label="Product Rating", color="warning")
+
+
+
+Overview
+pydantic model zero_true.Rating
+Rating provides a star-based input mechanism that can be used to capture user feedback or ratings.
+JSON Schema
+
+```json
+{
+ "title": "Rating",
+ "description": "A rating component that allows you to capture star-based input from a user",
+ "type": "object",
+ "properties": {
+ "id": {
+ "description": "Unique id for a component",
+ "title": "Id",
+ "type": "string"
+ },
+ "variable_name": {
+ "default": "",
+ "description": "Optional variable name associated with a component",
+ "title": "Variable Name",
+ "type": "string"
+ },
+ "component": {
+ "default": "v-rating",
+ "description": "Vue component name",
+ "title": "Component",
+ "type": "string"
+ },
+ "value": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "number"
+ }
+ ],
+ "default": 0,
+ "description": "Current value of the rating",
+ "title": "Value"
+ },
+ "length": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ }
+ ],
+ "default": 5,
+ "description": "Number of rating icons",
+ "title": "Length"
+ },
+ "hover": {
+ "default": true,
+ "description": "Provides visual feedback when hovering over icons",
+ "title": "Hover",
+ "type": "boolean"
+ },
+ "size": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "integer"
+ }
+ ],
+ "default": "default",
+ "description": "Size of the rating icons",
+ "title": "Size"
+ },
+ "color": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Color of the rating icons when active",
+ "title": "Color"
+ },
+ "active_color": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The applied color when the component is in an active state",
+ "title": "Active Color"
+ },
+ "empty_icon": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "object"
+ }
+ ],
+ "default": "$ratingEmpty",
+ "description": "The icon displayed when empty",
+ "title": "Empty Icon"
+ },
+ "full_icon": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "object"
+ }
+ ],
+ "default": "$ratingFull",
+ "description": "The icon displayed when full",
+ "title": "Full Icon"
+ },
+ "half_increments": {
+ "default": false,
+ "description": "Allows for half-increment ratings",
+ "title": "Half Increments",
+ "type": "boolean"
+ },
+ "clearable": {
+ "default": false,
+ "description": "Allows the component to be cleared",
+ "title": "Clearable",
+ "type": "boolean"
+ },
+ "readonly": {
+ "default": false,
+ "description": "Removes all hover effects and pointer events",
+ "title": "Readonly",
+ "type": "boolean"
+ },
+ "density": {
+ "default": "default",
+ "description": "Adjusts the vertical height used by the component",
+ "title": "Density",
+ "type": "string"
+ },
+ "disabled": {
+ "default": false,
+ "description": "Removes the ability to click or target the component",
+ "title": "Disabled",
+ "type": "boolean"
+ },
+ "item_aria_label": {
+ "default": "$vuetify.rating.ariaLabel.item",
+ "description": "Aria label for each item",
+ "title": "Item Aria Label",
+ "type": "string"
+ },
+ "item_label_position": {
+ "default": "top",
+ "description": "Position of item labels",
+ "title": "Item Label Position",
+ "type": "string"
+ },
+ "item_labels": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Array of labels to display next to each item",
+ "title": "Item Labels"
+ },
+ "name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Sets the component's name attribute",
+ "title": "Name"
+ },
+ "ripple": {
+ "default": false,
+ "description": "Applies the v-ripple directive",
+ "title": "Ripple",
+ "type": "boolean"
+ },
+ "tag": {
+ "default": "div",
+ "description": "Specify a custom tag used on the root element",
+ "title": "Tag",
+ "type": "string"
+ },
+ "theme": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Specify a theme for this component and all of its children",
+ "title": "Theme"
+ },
+ "label": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "A label for your rating component",
+ "title": "Label"
+ },
+ "triggerEvent": {
+ "default": "update:modelValue",
+ "description": "Trigger event for when to run the rating",
+ "title": "Triggerevent",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id"
+ ]
+}
+```
+
+Below are the various attributes you can assign to the component. Utilizing them can allow for modifications to the pre-created object.
+
+
+
+
+ **field active_color:** str | None = None
+Copy The applied color when the component is in an active state.
+
+ **VALIDATED BY:** validate_color
+
+
+
+ **field clearable:** bool = False
+
+ Allows the component to be cleared.
+
+
+
+ **field color:** str | None = None
+
+ Color of the rating icons when active.
+
+ **VALIDATED BY:** validate_color
+
+
+
+ **field component:** str = 'v-rating'
+
+ Vue component name.
+
+
+
+ **field density:** str = 'default'
+
+ Adjusts the vertical height used by the component.
+
+ **VALIDATED BY:** validate_density
+
+
+
+ **field disabled:** bool = False
+
+ Removes the ability to click or target the component.
+
+
+
+ **field empty_icon:** str | dict = '$ratingEmpty'
+
+ The icon displayed when empty.
+
+
+
+ **field full_icon:** str | dict = '$ratingFull'
+
+ The icon displayed when full.
+
+
+
+ **field half_increments:** bool = False
+
+ Allows for half-increment ratings.
+
+
+
+ **field hover:** bool = True
+
+ Provides visual feedback when hovering over icons.
+
+
+
+ **field item_aria_label:** str = '$vuetify.rating.ariaLabel.item'
+
+ Aria label for each item.
+
+
+
+ **field item_label_position:** str = 'top'
+
+ Position of item labels.
+
+ **VALIDATED BY:** validate_item_label_position
+
+
+
+ **field item_labels:** List[str] | None = None
+
+ Array of labels to display next to each item.
+
+
+
+ **field label:** str | None = None
+
+ A label for your rating component.
+
+
+
+ **field length:** str | int = 5
+
+ Number of rating icons.
+
+
+
+ **field name:** str | None = None
+
+ Sets the component's name attribute.
+
+
+
+ **field readonly:** bool = False
+
+ Removes all hover effects and pointer events.
+
+
+
+ **field ripple:** bool = False
+
+ Applies the v-ripple directive.
+
+
+
+ **field size:** str | int = 'default'
+
+ Size of the rating icons.
+
+
+
+ **field tag:** str = 'div'
+
+ Specify a custom tag used on the root element.
+
+
+
+ **field theme:** str | None = None
+
+ Specify a theme for this component and all of its children.
+
+
+
+ **field triggerEvent:** str = 'update:modelValue'
+
+ Trigger event for when to run the rating.
+
+
+
+ **field value:** str | float = 0
+
+ Current value of the rating.
+
+
+
+
+
+ classmethod *get_value_from_global_state*(value, values)
+
+```
\ No newline at end of file
diff --git a/mintlify-docs/mint.json b/mintlify-docs/mint.json
index ddeab232..d5d36187 100644
--- a/mintlify-docs/mint.json
+++ b/mintlify-docs/mint.json
@@ -66,6 +66,7 @@
"Components/Text",
"Components/Textinput",
"Components/Slider",
+ "Components/Rating",
"Components/Image",
"Components/Card",
"Components/DataFrame",
diff --git a/zero_true/__init__.py b/zero_true/__init__.py
index 778ab9e1..632e7190 100644
--- a/zero_true/__init__.py
+++ b/zero_true/__init__.py
@@ -1,5 +1,6 @@
from zt_backend.models.components.zt_component import ZTComponent
from zt_backend.models.components.slider import Slider
+from zt_backend.models.components.rating import Rating
from zt_backend.models.components.text_input import TextInput
from zt_backend.models.components.text_area_input import TextArea
from zt_backend.models.components.range_slider import RangeSlider
diff --git a/zt_backend/dist_app/assets/app-621ca417.js b/zt_backend/dist_app/assets/app-6e05d9fb.js
similarity index 94%
rename from zt_backend/dist_app/assets/app-621ca417.js
rename to zt_backend/dist_app/assets/app-6e05d9fb.js
index c3b5c45a..bc00dffe 100644
--- a/zt_backend/dist_app/assets/app-621ca417.js
+++ b/zt_backend/dist_app/assets/app-6e05d9fb.js
@@ -1 +1 @@
-import{C as n,_ as r,r as l,o as c,c as a}from"./index-de12265c.js";const u={metaInfo(){return{meta:{dev:!0}}},props:{notebook:{type:Object,required:!0},completions:{type:Object,required:!0},runCode:{type:Function,required:!0},saveCell:{type:Function,required:!0},componentValueChange:{type:Function,required:!0},deleteCell:{type:Function,required:!0},createCodeCell:{type:Function,required:!0}},components:{CodeCellManager:n},methods:{getComponent(t){switch(t){case"code":return"CodeComponent";case"text":return"EditorComponent";case"markdown":return"MarkdownComponent";case"sql":return"SQLComponent";default:throw new Error(`Unknown component type: ${t}`)}}}};function d(t,C,e,m,s,i){const o=l("code-cell-manager");return c(),a(o,{notebook:e.notebook,completions:e.completions,runCode:e.runCode,saveCell:e.saveCell,componentValueChange:e.componentValueChange,deleteCell:e.deleteCell,createCell:e.createCodeCell},null,8,["notebook","completions","runCode","saveCell","componentValueChange","deleteCell","createCell"])}const _=r(u,[["render",d]]);export{_ as default};
+import{C as n,_ as r,r as l,o as c,c as a}from"./index-fb670233.js";const u={metaInfo(){return{meta:{dev:!0}}},props:{notebook:{type:Object,required:!0},completions:{type:Object,required:!0},runCode:{type:Function,required:!0},saveCell:{type:Function,required:!0},componentValueChange:{type:Function,required:!0},deleteCell:{type:Function,required:!0},createCodeCell:{type:Function,required:!0}},components:{CodeCellManager:n},methods:{getComponent(t){switch(t){case"code":return"CodeComponent";case"text":return"EditorComponent";case"markdown":return"MarkdownComponent";case"sql":return"SQLComponent";default:throw new Error(`Unknown component type: ${t}`)}}}};function d(t,C,e,m,s,i){const o=l("code-cell-manager");return c(),a(o,{notebook:e.notebook,completions:e.completions,runCode:e.runCode,saveCell:e.saveCell,componentValueChange:e.componentValueChange,deleteCell:e.deleteCell,createCell:e.createCodeCell},null,8,["notebook","completions","runCode","saveCell","componentValueChange","deleteCell","createCell"])}const _=r(u,[["render",d]]);export{_ as default};
diff --git a/zt_backend/dist_app/assets/index-83338ca8.js b/zt_backend/dist_app/assets/index-0bbbe38c.js
similarity index 94%
rename from zt_backend/dist_app/assets/index-83338ca8.js
rename to zt_backend/dist_app/assets/index-0bbbe38c.js
index 7d5953d9..8a78bab5 100644
--- a/zt_backend/dist_app/assets/index-83338ca8.js
+++ b/zt_backend/dist_app/assets/index-0bbbe38c.js
@@ -1 +1 @@
-import{C as o,_ as r,r as l,o as c,c as a}from"./index-de12265c.js";const u={metaInfo(){return{meta:{dev:!0}}},props:{notebook:{type:Object,required:!0},completions:{type:Object,required:!0},runCode:{type:Function,required:!0},saveCell:{type:Function,required:!0},componentValueChange:{type:Function,required:!0},deleteCell:{type:Function,required:!0},createCodeCell:{type:Function,required:!0}},components:{CodeCellManager:o},methods:{getComponent(t){switch(t){case"code":return"CodeComponent";case"text":return"EditorComponent";case"markdown":return"MarkdownComponent";case"sql":return"SQLComponent";default:throw new Error(`Unknown component type: ${t}`)}}}};function d(t,C,e,m,s,i){const n=l("code-cell-manager");return c(),a(n,{notebook:e.notebook,completions:e.completions,runCode:e.runCode,saveCell:e.saveCell,componentValueChange:e.componentValueChange,deleteCell:e.deleteCell,createCell:e.createCodeCell},null,8,["notebook","completions","runCode","saveCell","componentValueChange","deleteCell","createCell"])}const _=r(u,[["render",d]]);export{_ as default};
+import{C as o,_ as r,r as l,o as c,c as a}from"./index-fb670233.js";const u={metaInfo(){return{meta:{dev:!0}}},props:{notebook:{type:Object,required:!0},completions:{type:Object,required:!0},runCode:{type:Function,required:!0},saveCell:{type:Function,required:!0},componentValueChange:{type:Function,required:!0},deleteCell:{type:Function,required:!0},createCodeCell:{type:Function,required:!0}},components:{CodeCellManager:o},methods:{getComponent(t){switch(t){case"code":return"CodeComponent";case"text":return"EditorComponent";case"markdown":return"MarkdownComponent";case"sql":return"SQLComponent";default:throw new Error(`Unknown component type: ${t}`)}}}};function d(t,C,e,m,s,i){const n=l("code-cell-manager");return c(),a(n,{notebook:e.notebook,completions:e.completions,runCode:e.runCode,saveCell:e.saveCell,componentValueChange:e.componentValueChange,deleteCell:e.deleteCell,createCell:e.createCodeCell},null,8,["notebook","completions","runCode","saveCell","componentValueChange","deleteCell","createCell"])}const _=r(u,[["render",d]]);export{_ as default};
diff --git a/zt_backend/dist_dev/assets/index-d94f5589.css b/zt_backend/dist_app/assets/index-267af001.css
similarity index 86%
rename from zt_backend/dist_dev/assets/index-d94f5589.css
rename to zt_backend/dist_app/assets/index-267af001.css
index f047fdb6..781fa979 100644
--- a/zt_backend/dist_dev/assets/index-d94f5589.css
+++ b/zt_backend/dist_app/assets/index-267af001.css
@@ -1,4 +1,4 @@
-@charset "UTF-8";.v-application{display:flex;background:rgb(var(--v-theme-background));color:rgba(var(--v-theme-on-background),var(--v-high-emphasis-opacity))}.v-application__wrap{backface-visibility:hidden;display:flex;flex-direction:column;flex:1 1 auto;max-width:100%;min-height:100vh;min-height:100dvh;position:relative}.v-app-bar{display:flex}.v-app-bar.v-toolbar{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-app-bar.v-toolbar:not(.v-toolbar--flat){box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-app-bar:not(.v-toolbar--absolute){padding-inline-end:var(--v-scrollbar-offset)}.v-toolbar{align-items:flex-start;display:flex;flex:none;flex-direction:column;justify-content:space-between;max-width:100%;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);transition-property:height,width,transform,max-width,left,right,top,bottom,box-shadow;width:100%}.v-toolbar{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-toolbar--border{border-width:thin;box-shadow:none}.v-toolbar{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-toolbar{border-radius:0}.v-toolbar{background:rgb(var(--v-theme-surface-light));color:rgba(var(--v-theme-on-surface-light),var(--v-high-emphasis-opacity))}.v-toolbar--absolute{position:absolute}.v-toolbar--collapse{max-width:112px;overflow:hidden;border-end-end-radius:24px}.v-toolbar--collapse .v-toolbar-title{display:none}.v-toolbar--flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-toolbar--floating{display:inline-flex}.v-toolbar--rounded{border-radius:4px}.v-toolbar__content,.v-toolbar__extension{align-items:center;display:flex;flex:0 0 auto;position:relative;transition:inherit;width:100%}.v-toolbar__content{overflow:hidden}.v-toolbar__content>.v-btn:first-child{margin-inline-start:4px}.v-toolbar__content>.v-btn:last-child{margin-inline-end:4px}.v-toolbar__content>.v-toolbar-title{margin-inline-start:20px}.v-toolbar--density-prominent .v-toolbar__content{align-items:flex-start}.v-toolbar__image{display:flex;opacity:var(--v-toolbar-image-opacity, 1);transition-property:opacity}.v-toolbar__image{position:absolute;top:0;left:0;width:100%;height:100%}.v-toolbar__prepend,.v-toolbar__append{align-items:center;align-self:stretch;display:flex}.v-toolbar__prepend{margin-inline:4px auto}.v-toolbar__append{margin-inline:auto 4px}.v-toolbar-title{flex:1 1;font-size:1.25rem;min-width:0}.v-toolbar-title{font-size:1.25rem;font-weight:400;letter-spacing:0;line-height:1.75rem;text-transform:none}.v-toolbar--density-prominent .v-toolbar-title{align-self:flex-end;padding-bottom:6px}.v-toolbar--density-prominent .v-toolbar-title{font-size:1.5rem;font-weight:400;letter-spacing:0;line-height:2.25rem;text-transform:none}.v-toolbar-title__placeholder{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-toolbar-items{display:flex;height:inherit;align-self:stretch}.v-toolbar-items>.v-btn{border-radius:0}.v-img{--v-theme-overlay-multiplier: 3;z-index:0}.v-img--booting .v-responsive__sizer{transition:none}.v-img--rounded{border-radius:4px}.v-img__img,.v-img__picture,.v-img__gradient,.v-img__placeholder,.v-img__error{z-index:-1}.v-img__img,.v-img__picture,.v-img__gradient,.v-img__placeholder,.v-img__error{position:absolute;top:0;left:0;width:100%;height:100%}.v-img__img--preload{filter:blur(4px)}.v-img__img--contain{object-fit:contain}.v-img__img--cover{object-fit:cover}.v-img__gradient{background-repeat:no-repeat}.v-responsive{display:flex;flex:1 0 auto;max-height:100%;max-width:100%;overflow:hidden;position:relative}.v-responsive--inline{display:inline-flex;flex:0 0 auto}.v-responsive__content{flex:1 0 0px;max-width:100%}.v-responsive__sizer~.v-responsive__content{margin-inline-start:-100%}.v-responsive__sizer{flex:1 0 0px;transition:padding-bottom .2s cubic-bezier(.4,0,.2,1);pointer-events:none}.v-btn{align-items:center;border-radius:4px;display:inline-grid;grid-template-areas:"prepend content append";grid-template-columns:max-content auto max-content;font-weight:500;justify-content:center;letter-spacing:.0892857143em;line-height:normal;max-width:100%;outline:none;position:relative;text-decoration:none;text-indent:.0892857143em;text-transform:uppercase;transition-property:box-shadow,transform,opacity,background;transition-duration:.28s;transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-user-select:none;user-select:none;vertical-align:middle;flex-shrink:0}.v-btn--size-x-small{--v-btn-size: .625rem;--v-btn-height: 20px;font-size:var(--v-btn-size);min-width:36px;padding:0 8px}.v-btn--size-small{--v-btn-size: .75rem;--v-btn-height: 28px;font-size:var(--v-btn-size);min-width:50px;padding:0 12px}.v-btn--size-default{--v-btn-size: .875rem;--v-btn-height: 36px;font-size:var(--v-btn-size);min-width:64px;padding:0 16px}.v-btn--size-large{--v-btn-size: 1rem;--v-btn-height: 44px;font-size:var(--v-btn-size);min-width:78px;padding:0 20px}.v-btn--size-x-large{--v-btn-size: 1.125rem;--v-btn-height: 52px;font-size:var(--v-btn-size);min-width:92px;padding:0 24px}.v-btn.v-btn--density-default{height:calc(var(--v-btn-height) + 0px)}.v-btn.v-btn--density-comfortable{height:calc(var(--v-btn-height) + -8px)}.v-btn.v-btn--density-compact{height:calc(var(--v-btn-height) + -12px)}.v-btn{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-btn--border{border-width:thin;box-shadow:none}.v-btn--absolute{position:absolute}.v-btn--fixed{position:fixed}.v-btn:hover>.v-btn__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-btn:focus-visible>.v-btn__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn:focus>.v-btn__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-btn--active>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]>.v-btn__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-btn--active:hover>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:hover>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-btn--active:focus-visible>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn--active:focus>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:focus>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-btn--variant-plain,.v-btn--variant-outlined,.v-btn--variant-text,.v-btn--variant-tonal{background:transparent;color:inherit}.v-btn--variant-plain{opacity:.62}.v-btn--variant-plain:focus,.v-btn--variant-plain:hover{opacity:1}.v-btn--variant-plain .v-btn__overlay{display:none}.v-btn--variant-elevated,.v-btn--variant-flat{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-btn--variant-elevated{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--variant-outlined{border:thin solid currentColor}.v-btn--variant-text .v-btn__overlay{background:currentColor}.v-btn--variant-tonal .v-btn__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-btn .v-btn__underlay{position:absolute}@supports selector(:focus-visible){.v-btn:after{pointer-events:none;border:2px solid currentColor;border-radius:inherit;opacity:0;transition:opacity .2s ease-in-out}.v-btn:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-btn:focus-visible:after{opacity:calc(.25 * var(--v-theme-overlay-multiplier))}}.v-btn--icon{border-radius:50%;min-width:0;padding:0}.v-btn--icon.v-btn--size-default{--v-btn-size: 1rem}.v-btn--icon.v-btn--density-default{width:calc(var(--v-btn-height) + 12px);height:calc(var(--v-btn-height) + 12px)}.v-btn--icon.v-btn--density-comfortable{width:calc(var(--v-btn-height) + 0px);height:calc(var(--v-btn-height) + 0px)}.v-btn--icon.v-btn--density-compact{width:calc(var(--v-btn-height) + -8px);height:calc(var(--v-btn-height) + -8px)}.v-btn--elevated:hover,.v-btn--elevated:focus{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--elevated:active{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--flat{box-shadow:none}.v-btn--block{display:flex;flex:1 0 auto;min-width:100%}.v-btn--disabled{pointer-events:none;opacity:.26}.v-btn--disabled:hover{opacity:.26}.v-btn--disabled.v-btn--variant-elevated,.v-btn--disabled.v-btn--variant-flat{box-shadow:none;opacity:1;color:rgba(var(--v-theme-on-surface),.26);background:rgb(var(--v-theme-surface))}.v-btn--disabled.v-btn--variant-elevated .v-btn__overlay,.v-btn--disabled.v-btn--variant-flat .v-btn__overlay{opacity:.4615384615}.v-btn--loading{pointer-events:none}.v-btn--loading .v-btn__content,.v-btn--loading .v-btn__prepend,.v-btn--loading .v-btn__append{opacity:0}.v-btn--stacked{grid-template-areas:"prepend" "content" "append";grid-template-columns:auto;grid-template-rows:max-content max-content max-content;justify-items:center;align-content:center}.v-btn--stacked .v-btn__content{flex-direction:column;line-height:1.25}.v-btn--stacked .v-btn__prepend,.v-btn--stacked .v-btn__append,.v-btn--stacked .v-btn__content>.v-icon--start,.v-btn--stacked .v-btn__content>.v-icon--end{margin-inline:0}.v-btn--stacked .v-btn__prepend,.v-btn--stacked .v-btn__content>.v-icon--start{margin-bottom:4px}.v-btn--stacked .v-btn__append,.v-btn--stacked .v-btn__content>.v-icon--end{margin-top:4px}.v-btn--stacked.v-btn--size-x-small{--v-btn-size: .625rem;--v-btn-height: 56px;font-size:var(--v-btn-size);min-width:56px;padding:0 12px}.v-btn--stacked.v-btn--size-small{--v-btn-size: .75rem;--v-btn-height: 64px;font-size:var(--v-btn-size);min-width:64px;padding:0 14px}.v-btn--stacked.v-btn--size-default{--v-btn-size: .875rem;--v-btn-height: 72px;font-size:var(--v-btn-size);min-width:72px;padding:0 16px}.v-btn--stacked.v-btn--size-large{--v-btn-size: 1rem;--v-btn-height: 80px;font-size:var(--v-btn-size);min-width:80px;padding:0 18px}.v-btn--stacked.v-btn--size-x-large{--v-btn-size: 1.125rem;--v-btn-height: 88px;font-size:var(--v-btn-size);min-width:88px;padding:0 20px}.v-btn--stacked.v-btn--density-default{height:calc(var(--v-btn-height) + 0px)}.v-btn--stacked.v-btn--density-comfortable{height:calc(var(--v-btn-height) + -16px)}.v-btn--stacked.v-btn--density-compact{height:calc(var(--v-btn-height) + -24px)}.v-btn--slim{padding:0 8px}.v-btn--readonly{pointer-events:none}.v-btn--rounded{border-radius:24px}.v-btn--rounded.v-btn--icon{border-radius:4px}.v-btn .v-icon{--v-icon-size-multiplier: .8571428571}.v-btn--icon .v-icon{--v-icon-size-multiplier: 1}.v-btn--stacked .v-icon{--v-icon-size-multiplier: 1.1428571429}.v-btn--stacked.v-btn--block{min-width:100%}.v-btn__loader{align-items:center;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.v-btn__loader>.v-progress-circular{width:1.5em;height:1.5em}.v-btn__content,.v-btn__prepend,.v-btn__append{align-items:center;display:flex;transition:transform,opacity .2s cubic-bezier(.4,0,.2,1)}.v-btn__prepend{grid-area:prepend;margin-inline:calc(var(--v-btn-height) / -9) calc(var(--v-btn-height) / 4.5)}.v-btn--slim .v-btn__prepend{margin-inline-start:0}.v-btn__append{grid-area:append;margin-inline:calc(var(--v-btn-height) / 4.5) calc(var(--v-btn-height) / -9)}.v-btn--slim .v-btn__append{margin-inline-end:0}.v-btn__content{grid-area:content;justify-content:center;white-space:nowrap}.v-btn__content>.v-icon--start{margin-inline:calc(var(--v-btn-height) / -9) calc(var(--v-btn-height) / 4.5)}.v-btn__content>.v-icon--end{margin-inline:calc(var(--v-btn-height) / 4.5) calc(var(--v-btn-height) / -9)}.v-btn--stacked .v-btn__content{white-space:normal}.v-btn__overlay{background-color:currentColor;border-radius:inherit;opacity:0;transition:opacity .2s ease-in-out}.v-btn__overlay,.v-btn__underlay{pointer-events:none}.v-btn__overlay,.v-btn__underlay{position:absolute;top:0;left:0;width:100%;height:100%}.v-card-actions .v-btn~.v-btn:not(.v-btn-toggle .v-btn){margin-inline-start:.5rem}.v-pagination .v-btn{border-radius:4px}.v-pagination .v-btn--rounded{border-radius:50%}.v-btn__overlay{transition:none}.v-pagination__item--is-active .v-btn__overlay{opacity:var(--v-border-opacity)}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled)>.v-btn__overlay{opacity:calc(0 * var(--v-theme-overlay-multiplier))}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):hover>.v-btn__overlay{opacity:calc((0 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):focus-visible>.v-btn__overlay{opacity:calc((0 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):focus>.v-btn__overlay{opacity:calc((0 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-btn-group{display:inline-flex;flex-wrap:nowrap;max-width:100%;min-width:0;overflow:hidden;vertical-align:middle}.v-btn-group{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-btn-group--border{border-width:thin;box-shadow:none}.v-btn-group{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn-group{border-radius:4px}.v-btn-group{background:transparent;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-btn-group--density-default.v-btn-group{height:48px}.v-btn-group--density-comfortable.v-btn-group{height:40px}.v-btn-group--density-compact.v-btn-group{height:36px}.v-btn-group .v-btn{border-radius:0;border-color:inherit}.v-btn-group .v-btn:not(:last-child){border-inline-end:none}.v-btn-group .v-btn:not(:first-child){border-inline-start:none}.v-btn-group .v-btn:first-child{border-start-start-radius:inherit;border-end-start-radius:inherit}.v-btn-group .v-btn:last-child{border-start-end-radius:inherit;border-end-end-radius:inherit}.v-btn-group--divided .v-btn:not(:last-child){border-inline-end-width:thin;border-inline-end-style:solid;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))}.v-btn-group--tile{border-radius:0}.v-icon{--v-icon-size-multiplier: 1;align-items:center;display:inline-flex;font-feature-settings:"liga";height:1em;justify-content:center;letter-spacing:normal;line-height:1;position:relative;text-indent:0;text-align:center;-webkit-user-select:none;user-select:none;vertical-align:middle;width:1em;min-width:1em}.v-icon--clickable{cursor:pointer}.v-icon--disabled{pointer-events:none;opacity:.38}.v-icon--size-x-small{font-size:calc(var(--v-icon-size-multiplier) * 1em)}.v-icon--size-small{font-size:calc(var(--v-icon-size-multiplier) * 1.25em)}.v-icon--size-default{font-size:calc(var(--v-icon-size-multiplier) * 1.5em)}.v-icon--size-large{font-size:calc(var(--v-icon-size-multiplier) * 1.75em)}.v-icon--size-x-large{font-size:calc(var(--v-icon-size-multiplier) * 2em)}.v-icon__svg{fill:currentColor;width:100%;height:100%}.v-icon--start{margin-inline-end:8px}.v-icon--end{margin-inline-start:8px}.v-progress-circular{align-items:center;display:inline-flex;justify-content:center;position:relative;vertical-align:middle}.v-progress-circular>svg{width:100%;height:100%;margin:auto;position:absolute;top:0;bottom:0;left:0;right:0;z-index:0}.v-progress-circular__content{align-items:center;display:flex;justify-content:center}.v-progress-circular__underlay{color:rgba(var(--v-border-color),var(--v-border-opacity));stroke:currentColor;z-index:1}.v-progress-circular__overlay{stroke:currentColor;transition:all .2s ease-in-out,stroke-width 0s;z-index:2}.v-progress-circular--size-x-small{height:16px;width:16px}.v-progress-circular--size-small{height:24px;width:24px}.v-progress-circular--size-default{height:32px;width:32px}.v-progress-circular--size-large{height:48px;width:48px}.v-progress-circular--size-x-large{height:64px;width:64px}.v-progress-circular--indeterminate>svg{animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;transition:all .2s ease-in-out}.v-progress-circular--indeterminate .v-progress-circular__overlay{animation:progress-circular-dash 1.4s ease-in-out infinite,progress-circular-rotate 1.4s linear infinite;stroke-dasharray:25,200;stroke-dashoffset:0;stroke-linecap:round;transform-origin:center center;transform:rotate(-90deg)}.v-progress-circular--disable-shrink>svg{animation-duration:.7s}.v-progress-circular--disable-shrink .v-progress-circular__overlay{animation:none}.v-progress-circular--indeterminate:not(.v-progress-circular--visible)>svg,.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay{animation-play-state:paused!important}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-124px}}@keyframes progress-circular-rotate{to{transform:rotate(270deg)}}.v-progress-linear{background:transparent;overflow:hidden;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);width:100%}@media (forced-colors: active){.v-progress-linear{border:thin solid buttontext}}.v-progress-linear__background,.v-progress-linear__buffer{background:currentColor;bottom:0;left:0;opacity:var(--v-border-opacity);position:absolute;top:0;width:100%;transition-property:width,left,right;transition:inherit}@media (forced-colors: active){.v-progress-linear__buffer{background-color:highlight;opacity:.3}}.v-progress-linear__content{align-items:center;display:flex;height:100%;justify-content:center;left:0;pointer-events:none;position:absolute;top:0;width:100%}.v-progress-linear__determinate,.v-progress-linear__indeterminate{background:currentColor}@media (forced-colors: active){.v-progress-linear__determinate,.v-progress-linear__indeterminate{background-color:highlight}}.v-progress-linear__determinate{height:inherit;left:0;position:absolute;transition:inherit;transition-property:width,left,right}.v-progress-linear__indeterminate .long,.v-progress-linear__indeterminate .short{animation-play-state:paused;animation-duration:2.2s;animation-iteration-count:infinite;bottom:0;height:inherit;left:0;position:absolute;right:auto;top:0;width:auto}.v-progress-linear__indeterminate .long{animation-name:indeterminate-ltr}.v-progress-linear__indeterminate .short{animation-name:indeterminate-short-ltr}.v-progress-linear__stream{animation:stream .25s infinite linear;animation-play-state:paused;bottom:0;left:auto;opacity:.3;pointer-events:none;position:absolute;transition:inherit;transition-property:width,left,right}.v-progress-linear--reverse .v-progress-linear__background,.v-progress-linear--reverse .v-progress-linear__determinate,.v-progress-linear--reverse .v-progress-linear__content,.v-progress-linear--reverse .v-progress-linear__indeterminate .long,.v-progress-linear--reverse .v-progress-linear__indeterminate .short{left:auto;right:0}.v-progress-linear--reverse .v-progress-linear__indeterminate .long{animation-name:indeterminate-rtl}.v-progress-linear--reverse .v-progress-linear__indeterminate .short{animation-name:indeterminate-short-rtl}.v-progress-linear--reverse .v-progress-linear__stream{right:auto}.v-progress-linear--absolute,.v-progress-linear--fixed{left:0;z-index:1}.v-progress-linear--absolute{position:absolute}.v-progress-linear--fixed{position:fixed}.v-progress-linear--rounded{border-radius:9999px}.v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__indeterminate{border-radius:inherit}.v-progress-linear--striped .v-progress-linear__determinate{animation:progress-linear-stripes 1s infinite linear;background-image:linear-gradient(135deg,hsla(0,0%,100%,.25) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.25) 0,hsla(0,0%,100%,.25) 75%,transparent 0,transparent);background-repeat:repeat;background-size:var(--v-progress-linear-height)}.v-progress-linear--active .v-progress-linear__indeterminate .long,.v-progress-linear--active .v-progress-linear__indeterminate .short,.v-progress-linear--active .v-progress-linear__stream{animation-play-state:running}.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-progress-linear--rounded-bar .v-progress-linear__indeterminate,.v-progress-linear--rounded-bar .v-progress-linear__stream+.v-progress-linear__background{border-radius:9999px}.v-progress-linear--rounded-bar .v-progress-linear__determinate{border-start-start-radius:0;border-end-start-radius:0}@keyframes indeterminate-ltr{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@keyframes indeterminate-rtl{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@keyframes indeterminate-short-ltr{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes indeterminate-short-rtl{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}@keyframes stream{to{transform:translate(var(--v-progress-linear-stream-to))}}@keyframes progress-linear-stripes{0%{background-position-x:var(--v-progress-linear-height)}}.v-ripple__container{color:inherit;border-radius:inherit;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;z-index:0;pointer-events:none;contain:strict}.v-ripple__animation{color:inherit;position:absolute;top:0;left:0;border-radius:50%;background:currentColor;opacity:0;pointer-events:none;overflow:hidden;will-change:transform,opacity}.v-ripple__animation--enter{transition:none;opacity:0}.v-ripple__animation--in{transition:transform .25s cubic-bezier(0,0,.2,1),opacity .1s cubic-bezier(0,0,.2,1);opacity:calc(.25 * var(--v-theme-overlay-multiplier))}.v-ripple__animation--out{transition:opacity .3s cubic-bezier(0,0,.2,1);opacity:0}.v-alert{display:grid;flex:1 1;grid-template-areas:"prepend content append close" ". content . .";grid-template-columns:max-content auto max-content max-content;position:relative;padding:16px;overflow:hidden;--v-border-color: currentColor}.v-alert--absolute{position:absolute}.v-alert--fixed{position:fixed}.v-alert--sticky{position:sticky}.v-alert{border-radius:4px}.v-alert--variant-plain,.v-alert--variant-outlined,.v-alert--variant-text,.v-alert--variant-tonal{background:transparent;color:inherit}.v-alert--variant-plain{opacity:.62}.v-alert--variant-plain:focus,.v-alert--variant-plain:hover{opacity:1}.v-alert--variant-plain .v-alert__overlay{display:none}.v-alert--variant-elevated,.v-alert--variant-flat{background:rgb(var(--v-theme-surface-light));color:rgba(var(--v-theme-on-surface-light),var(--v-high-emphasis-opacity))}.v-alert--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-alert--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-alert--variant-outlined{border:thin solid currentColor}.v-alert--variant-text .v-alert__overlay{background:currentColor}.v-alert--variant-tonal .v-alert__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-alert .v-alert__underlay{position:absolute}.v-alert--prominent{grid-template-areas:"prepend content append close" "prepend content . ."}.v-alert.v-alert--border{--v-border-opacity: .38}.v-alert.v-alert--border.v-alert--border-start{padding-inline-start:24px}.v-alert.v-alert--border.v-alert--border-end{padding-inline-end:24px}.v-alert--variant-plain{transition:.2s opacity cubic-bezier(.4,0,.2,1)}.v-alert--density-default{padding-bottom:16px;padding-top:16px}.v-alert--density-default.v-alert--border-top{padding-top:24px}.v-alert--density-default.v-alert--border-bottom{padding-bottom:24px}.v-alert--density-comfortable{padding-bottom:12px;padding-top:12px}.v-alert--density-comfortable.v-alert--border-top{padding-top:20px}.v-alert--density-comfortable.v-alert--border-bottom{padding-bottom:20px}.v-alert--density-compact{padding-bottom:8px;padding-top:8px}.v-alert--density-compact.v-alert--border-top{padding-top:16px}.v-alert--density-compact.v-alert--border-bottom{padding-bottom:16px}.v-alert__border{border-radius:inherit;bottom:0;left:0;opacity:var(--v-border-opacity);position:absolute;pointer-events:none;right:0;top:0;width:100%}.v-alert__border{border-color:currentColor;border-style:solid;border-width:0}.v-alert__border--border{border-width:8px;box-shadow:none}.v-alert--border-start .v-alert__border{border-inline-start-width:8px}.v-alert--border-end .v-alert__border{border-inline-end-width:8px}.v-alert--border-top .v-alert__border{border-top-width:8px}.v-alert--border-bottom .v-alert__border{border-bottom-width:8px}.v-alert__close{flex:0 1 auto;grid-area:close}.v-alert__content{align-self:center;grid-area:content;overflow:hidden}.v-alert__append,.v-alert__close{align-self:flex-start;margin-inline-start:16px}.v-alert__append{align-self:flex-start;grid-area:append}.v-alert__append+.v-alert__close{margin-inline-start:16px}.v-alert__prepend{align-self:flex-start;display:flex;align-items:center;grid-area:prepend;margin-inline-end:16px}.v-alert--prominent .v-alert__prepend{align-self:center}.v-alert__underlay{grid-area:none;position:absolute}.v-alert--border-start .v-alert__underlay{border-top-left-radius:0;border-bottom-left-radius:0}.v-alert--border-end .v-alert__underlay{border-top-right-radius:0;border-bottom-right-radius:0}.v-alert--border-top .v-alert__underlay{border-top-left-radius:0;border-top-right-radius:0}.v-alert--border-bottom .v-alert__underlay{border-bottom-left-radius:0;border-bottom-right-radius:0}.v-alert-title{align-items:center;align-self:center;display:flex;font-size:1.25rem;font-weight:500;-webkit-hyphens:auto;hyphens:auto;letter-spacing:.0125em;line-height:1.75rem;overflow-wrap:normal;text-transform:none;word-break:normal;word-wrap:break-word}.v-autocomplete .v-field .v-text-field__prefix,.v-autocomplete .v-field .v-text-field__suffix,.v-autocomplete .v-field .v-field__input,.v-autocomplete .v-field.v-field{cursor:text}.v-autocomplete .v-field .v-field__input>input{flex:1 1}.v-autocomplete .v-field input{min-width:64px}.v-autocomplete .v-field:not(.v-field--focused) input{min-width:0}.v-autocomplete .v-field--dirty .v-autocomplete__selection{margin-inline-end:2px}.v-autocomplete .v-autocomplete__selection-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-autocomplete__content{overflow:hidden}.v-autocomplete__content{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-autocomplete__content{border-radius:4px}.v-autocomplete__mask{background:rgb(var(--v-theme-surface-light))}.v-autocomplete__selection{display:inline-flex;align-items:center;height:1.5rem;letter-spacing:inherit;line-height:inherit;max-width:calc(100% - 4px)}.v-autocomplete__selection:first-child{margin-inline-start:0}.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating{top:0}.v-autocomplete--selecting-index .v-autocomplete__selection{opacity:var(--v-medium-emphasis-opacity)}.v-autocomplete--selecting-index .v-autocomplete__selection--selected{opacity:1}.v-autocomplete--selecting-index .v-field__input>input{caret-color:transparent}.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input{flex:1 1;position:absolute;left:0;right:0;width:100%;padding-inline:inherit}.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input{transition:none}.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input{opacity:0}.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection{opacity:0}.v-autocomplete__menu-icon{margin-inline-start:4px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-autocomplete--active-menu .v-autocomplete__menu-icon{opacity:var(--v-high-emphasis-opacity);transform:rotate(180deg)}.v-avatar{flex:none;align-items:center;display:inline-flex;justify-content:center;line-height:normal;overflow:hidden;position:relative;text-align:center;transition:.2s cubic-bezier(.4,0,.2,1);transition-property:width,height;vertical-align:middle}.v-avatar.v-avatar--size-x-small{--v-avatar-height: 24px}.v-avatar.v-avatar--size-small{--v-avatar-height: 32px}.v-avatar.v-avatar--size-default{--v-avatar-height: 40px}.v-avatar.v-avatar--size-large{--v-avatar-height: 48px}.v-avatar.v-avatar--size-x-large{--v-avatar-height: 56px}.v-avatar.v-avatar--density-default{height:calc(var(--v-avatar-height) + 0px);width:calc(var(--v-avatar-height) + 0px)}.v-avatar.v-avatar--density-comfortable{height:calc(var(--v-avatar-height) + -4px);width:calc(var(--v-avatar-height) + -4px)}.v-avatar.v-avatar--density-compact{height:calc(var(--v-avatar-height) + -8px);width:calc(var(--v-avatar-height) + -8px)}.v-avatar{border-radius:50%}.v-avatar--variant-plain,.v-avatar--variant-outlined,.v-avatar--variant-text,.v-avatar--variant-tonal{background:transparent;color:inherit}.v-avatar--variant-plain{opacity:.62}.v-avatar--variant-plain:focus,.v-avatar--variant-plain:hover{opacity:1}.v-avatar--variant-plain .v-avatar__overlay{display:none}.v-avatar--variant-elevated,.v-avatar--variant-flat{background:var(--v-theme-surface);color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity))}.v-avatar--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-avatar--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-avatar--variant-outlined{border:thin solid currentColor}.v-avatar--variant-text .v-avatar__overlay{background:currentColor}.v-avatar--variant-tonal .v-avatar__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-avatar .v-avatar__underlay{position:absolute}.v-avatar--rounded{border-radius:4px}.v-avatar--start{margin-inline-end:8px}.v-avatar--end{margin-inline-start:8px}.v-avatar .v-img{height:100%;width:100%}.v-selection-control{align-items:center;contain:layout;display:flex;flex:1 0;grid-area:control;position:relative;-webkit-user-select:none;user-select:none}.v-selection-control .v-label{white-space:normal;word-break:break-word;height:100%}.v-selection-control--disabled{opacity:var(--v-disabled-opacity);pointer-events:none}.v-selection-control--error .v-label,.v-selection-control--disabled .v-label{opacity:1}.v-selection-control--error:not(.v-selection-control--disabled) .v-label{color:rgb(var(--v-theme-error))}.v-selection-control--inline{display:inline-flex;flex:0 0 auto;min-width:0;max-width:100%}.v-selection-control--inline .v-label{width:auto}.v-selection-control--density-default{--v-selection-control-size: 40px}.v-selection-control--density-comfortable{--v-selection-control-size: 36px}.v-selection-control--density-compact{--v-selection-control-size: 28px}.v-selection-control__wrapper{width:var(--v-selection-control-size);height:var(--v-selection-control-size);display:inline-flex;align-items:center;position:relative;justify-content:center;flex:none}.v-selection-control__input{width:var(--v-selection-control-size);height:var(--v-selection-control-size);align-items:center;display:flex;flex:none;justify-content:center;position:relative;border-radius:50%}.v-selection-control__input input{cursor:pointer;position:absolute;left:0;top:0;width:100%;height:100%;opacity:0}.v-selection-control__input:before{border-radius:100%;background-color:currentColor;opacity:0;pointer-events:none}.v-selection-control__input:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-selection-control__input:hover:before{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-selection-control__input>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-selection-control--disabled .v-selection-control__input>.v-icon,.v-selection-control--dirty .v-selection-control__input>.v-icon,.v-selection-control--error .v-selection-control__input>.v-icon{opacity:1}.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input>.v-icon{color:rgb(var(--v-theme-error))}.v-selection-control--focus-visible .v-selection-control__input:before{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}.v-label{align-items:center;color:inherit;display:inline-flex;font-size:1rem;letter-spacing:.009375em;min-width:0;opacity:var(--v-medium-emphasis-opacity);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-label--clickable{cursor:pointer}.v-selection-control-group{grid-area:control;display:flex;flex-direction:column}.v-selection-control-group--inline{flex-direction:row;flex-wrap:wrap}.v-input{display:grid;flex:1 1 auto;font-size:1rem;font-weight:400;line-height:1.5}.v-input--disabled{pointer-events:none}.v-input--density-default{--v-input-control-height: 56px;--v-input-padding-top: 16px}.v-input--density-comfortable{--v-input-control-height: 48px;--v-input-padding-top: 12px}.v-input--density-compact{--v-input-control-height: 40px;--v-input-padding-top: 8px}.v-input--vertical{grid-template-areas:"append" "control" "prepend";grid-template-rows:max-content auto max-content;grid-template-columns:min-content}.v-input--vertical .v-input__prepend{margin-block-start:16px}.v-input--vertical .v-input__append{margin-block-end:16px}.v-input--horizontal{grid-template-areas:"prepend control append" "a messages b";grid-template-columns:max-content minmax(0,1fr) max-content;grid-template-rows:auto auto}.v-input--horizontal .v-input__prepend{margin-inline-end:16px}.v-input--horizontal .v-input__append{margin-inline-start:16px}.v-input__details{align-items:flex-end;display:flex;font-size:.75rem;font-weight:400;grid-area:messages;letter-spacing:.0333333333em;line-height:normal;min-height:22px;padding-top:6px;overflow:hidden;justify-content:space-between}.v-input__details>.v-icon,.v-input__prepend>.v-icon,.v-input__append>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-input--disabled .v-input__details>.v-icon,.v-input--disabled .v-input__details .v-messages,.v-input--error .v-input__details>.v-icon,.v-input--error .v-input__details .v-messages,.v-input--disabled .v-input__prepend>.v-icon,.v-input--disabled .v-input__prepend .v-messages,.v-input--error .v-input__prepend>.v-icon,.v-input--error .v-input__prepend .v-messages,.v-input--disabled .v-input__append>.v-icon,.v-input--disabled .v-input__append .v-messages,.v-input--error .v-input__append>.v-icon,.v-input--error .v-input__append .v-messages{opacity:1}.v-input--disabled .v-input__details,.v-input--disabled .v-input__prepend,.v-input--disabled .v-input__append{opacity:var(--v-disabled-opacity)}.v-input--error:not(.v-input--disabled) .v-input__details>.v-icon,.v-input--error:not(.v-input--disabled) .v-input__details .v-messages,.v-input--error:not(.v-input--disabled) .v-input__prepend>.v-icon,.v-input--error:not(.v-input--disabled) .v-input__prepend .v-messages,.v-input--error:not(.v-input--disabled) .v-input__append>.v-icon,.v-input--error:not(.v-input--disabled) .v-input__append .v-messages{color:rgb(var(--v-theme-error))}.v-input__prepend,.v-input__append{display:flex;align-items:flex-start;padding-top:var(--v-input-padding-top)}.v-input--center-affix .v-input__prepend,.v-input--center-affix .v-input__append{align-items:center;padding-top:0}.v-input__prepend{grid-area:prepend}.v-input__append{grid-area:append}.v-input__control{display:flex;grid-area:control}.v-input--hide-spin-buttons input::-webkit-outer-spin-button,.v-input--hide-spin-buttons input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.v-input--hide-spin-buttons input[type=number]{-moz-appearance:textfield}.v-input--plain-underlined .v-input__prepend,.v-input--plain-underlined .v-input__append{align-items:flex-start}.v-input--density-default.v-input--plain-underlined .v-input__prepend,.v-input--density-default.v-input--plain-underlined .v-input__append{padding-top:calc(var(--v-input-padding-top) + 4px)}.v-input--density-comfortable.v-input--plain-underlined .v-input__prepend,.v-input--density-comfortable.v-input--plain-underlined .v-input__append{padding-top:calc(var(--v-input-padding-top) + 2px)}.v-input--density-compact.v-input--plain-underlined .v-input__prepend,.v-input--density-compact.v-input--plain-underlined .v-input__append{padding-top:calc(var(--v-input-padding-top) + 0px)}.v-messages{flex:1 1 auto;font-size:12px;min-height:14px;min-width:1px;opacity:var(--v-medium-emphasis-opacity);position:relative}.v-messages__message{line-height:12px;word-break:break-word;overflow-wrap:break-word;word-wrap:break-word;-webkit-hyphens:auto;hyphens:auto;transition-duration:.15s}.v-chip{align-items:center;display:inline-flex;font-weight:400;max-width:100%;min-width:0;overflow:hidden;position:relative;text-decoration:none;white-space:nowrap;vertical-align:middle}.v-chip .v-icon{--v-icon-size-multiplier: .8571428571}.v-chip.v-chip--size-x-small{--v-chip-size: .625rem;--v-chip-height: 20px;font-size:.625rem;padding:0 8px}.v-chip.v-chip--size-x-small .v-avatar{--v-avatar-height: 14px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar{--v-avatar-height: 20px}.v-chip.v-chip--size-x-small .v-avatar--start{margin-inline-start:-5.6px;margin-inline-end:4px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--start{margin-inline-start:-8px}.v-chip.v-chip--size-x-small .v-avatar--end{margin-inline-start:4px;margin-inline-end:-5.6px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--end{margin-inline-end:-8px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--end+.v-chip__close{margin-inline-start:12px}.v-chip.v-chip--size-x-small .v-icon--start,.v-chip.v-chip--size-x-small .v-chip__filter{margin-inline-start:-4px;margin-inline-end:4px}.v-chip.v-chip--size-x-small .v-icon--end,.v-chip.v-chip--size-x-small .v-chip__close{margin-inline-start:4px;margin-inline-end:-4px}.v-chip.v-chip--size-x-small .v-icon--end+.v-chip__close,.v-chip.v-chip--size-x-small .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-x-small .v-chip__append+.v-chip__close{margin-inline-start:8px}.v-chip.v-chip--size-small{--v-chip-size: .75rem;--v-chip-height: 26px;font-size:.75rem;padding:0 10px}.v-chip.v-chip--size-small .v-avatar{--v-avatar-height: 20px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar{--v-avatar-height: 26px}.v-chip.v-chip--size-small .v-avatar--start{margin-inline-start:-7px;margin-inline-end:5px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar--start{margin-inline-start:-10px}.v-chip.v-chip--size-small .v-avatar--end{margin-inline-start:5px;margin-inline-end:-7px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar--end{margin-inline-end:-10px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar--end+.v-chip__close{margin-inline-start:15px}.v-chip.v-chip--size-small .v-icon--start,.v-chip.v-chip--size-small .v-chip__filter{margin-inline-start:-5px;margin-inline-end:5px}.v-chip.v-chip--size-small .v-icon--end,.v-chip.v-chip--size-small .v-chip__close{margin-inline-start:5px;margin-inline-end:-5px}.v-chip.v-chip--size-small .v-icon--end+.v-chip__close,.v-chip.v-chip--size-small .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-small .v-chip__append+.v-chip__close{margin-inline-start:10px}.v-chip.v-chip--size-default{--v-chip-size: .875rem;--v-chip-height: 32px;font-size:.875rem;padding:0 12px}.v-chip.v-chip--size-default .v-avatar{--v-avatar-height: 26px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar{--v-avatar-height: 32px}.v-chip.v-chip--size-default .v-avatar--start{margin-inline-start:-8.4px;margin-inline-end:6px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar--start{margin-inline-start:-12px}.v-chip.v-chip--size-default .v-avatar--end{margin-inline-start:6px;margin-inline-end:-8.4px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar--end{margin-inline-end:-12px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar--end+.v-chip__close{margin-inline-start:18px}.v-chip.v-chip--size-default .v-icon--start,.v-chip.v-chip--size-default .v-chip__filter{margin-inline-start:-6px;margin-inline-end:6px}.v-chip.v-chip--size-default .v-icon--end,.v-chip.v-chip--size-default .v-chip__close{margin-inline-start:6px;margin-inline-end:-6px}.v-chip.v-chip--size-default .v-icon--end+.v-chip__close,.v-chip.v-chip--size-default .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-default .v-chip__append+.v-chip__close{margin-inline-start:12px}.v-chip.v-chip--size-large{--v-chip-size: 1rem;--v-chip-height: 38px;font-size:1rem;padding:0 14px}.v-chip.v-chip--size-large .v-avatar{--v-avatar-height: 32px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar{--v-avatar-height: 38px}.v-chip.v-chip--size-large .v-avatar--start{margin-inline-start:-9.8px;margin-inline-end:7px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar--start{margin-inline-start:-14px}.v-chip.v-chip--size-large .v-avatar--end{margin-inline-start:7px;margin-inline-end:-9.8px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar--end{margin-inline-end:-14px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar--end+.v-chip__close{margin-inline-start:21px}.v-chip.v-chip--size-large .v-icon--start,.v-chip.v-chip--size-large .v-chip__filter{margin-inline-start:-7px;margin-inline-end:7px}.v-chip.v-chip--size-large .v-icon--end,.v-chip.v-chip--size-large .v-chip__close{margin-inline-start:7px;margin-inline-end:-7px}.v-chip.v-chip--size-large .v-icon--end+.v-chip__close,.v-chip.v-chip--size-large .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-large .v-chip__append+.v-chip__close{margin-inline-start:14px}.v-chip.v-chip--size-x-large{--v-chip-size: 1.125rem;--v-chip-height: 44px;font-size:1.125rem;padding:0 17px}.v-chip.v-chip--size-x-large .v-avatar{--v-avatar-height: 38px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar{--v-avatar-height: 44px}.v-chip.v-chip--size-x-large .v-avatar--start{margin-inline-start:-11.9px;margin-inline-end:8.5px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--start{margin-inline-start:-17px}.v-chip.v-chip--size-x-large .v-avatar--end{margin-inline-start:8.5px;margin-inline-end:-11.9px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--end{margin-inline-end:-17px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--end+.v-chip__close{margin-inline-start:25.5px}.v-chip.v-chip--size-x-large .v-icon--start,.v-chip.v-chip--size-x-large .v-chip__filter{margin-inline-start:-8.5px;margin-inline-end:8.5px}.v-chip.v-chip--size-x-large .v-icon--end,.v-chip.v-chip--size-x-large .v-chip__close{margin-inline-start:8.5px;margin-inline-end:-8.5px}.v-chip.v-chip--size-x-large .v-icon--end+.v-chip__close,.v-chip.v-chip--size-x-large .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-x-large .v-chip__append+.v-chip__close{margin-inline-start:17px}.v-chip.v-chip--density-default{height:calc(var(--v-chip-height) + 0px)}.v-chip.v-chip--density-comfortable{height:calc(var(--v-chip-height) + -4px)}.v-chip.v-chip--density-compact{height:calc(var(--v-chip-height) + -8px)}.v-chip{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-chip:hover>.v-chip__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-chip:focus-visible>.v-chip__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-chip:focus>.v-chip__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-chip--active>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]>.v-chip__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-chip--active:hover>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]:hover>.v-chip__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-chip--active:focus-visible>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-chip__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-chip--active:focus>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]:focus>.v-chip__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-chip{border-radius:9999px}.v-chip--variant-plain,.v-chip--variant-outlined,.v-chip--variant-text,.v-chip--variant-tonal{background:transparent;color:inherit}.v-chip--variant-plain{opacity:.26}.v-chip--variant-plain:focus,.v-chip--variant-plain:hover{opacity:1}.v-chip--variant-plain .v-chip__overlay{display:none}.v-chip--variant-elevated,.v-chip--variant-flat{background:rgb(var(--v-theme-surface-variant));color:rgb(var(--v-theme-on-surface-variant))}.v-chip--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-chip--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-chip--variant-outlined{border:thin solid currentColor}.v-chip--variant-text .v-chip__overlay{background:currentColor}.v-chip--variant-tonal .v-chip__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-chip .v-chip__underlay{position:absolute}.v-chip--border{border-width:thin}.v-chip--link{cursor:pointer}.v-chip--link,.v-chip--filter{-webkit-user-select:none;user-select:none}.v-chip__content{align-items:center;display:inline-flex}.v-autocomplete__selection .v-chip__content,.v-combobox__selection .v-chip__content,.v-select__selection .v-chip__content{overflow:hidden}.v-chip__filter,.v-chip__prepend,.v-chip__append,.v-chip__close{align-items:center;display:inline-flex}.v-chip__close{cursor:pointer;flex:0 1 auto;font-size:18px;max-height:18px;max-width:18px;-webkit-user-select:none;user-select:none}.v-chip__close .v-icon{font-size:inherit}.v-chip__filter{transition:.15s cubic-bezier(.4,0,.2,1)}.v-chip__overlay{background-color:currentColor;border-radius:inherit;pointer-events:none;opacity:0;transition:opacity .2s ease-in-out}.v-chip__overlay{position:absolute;top:0;left:0;width:100%;height:100%}.v-chip--disabled{opacity:.3;pointer-events:none;-webkit-user-select:none;user-select:none}.v-chip--label{border-radius:4px}.v-chip-group{display:flex;max-width:100%;min-width:0;overflow-x:auto;padding:4px 0}.v-chip-group .v-chip{margin:4px 8px 4px 0}.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay{opacity:var(--v-activated-opacity)}.v-chip-group--column .v-slide-group__content{white-space:normal;flex-wrap:wrap;max-width:100%}.v-slide-group{display:flex;overflow:hidden}.v-slide-group__next,.v-slide-group__prev{align-items:center;display:flex;flex:0 1 52px;justify-content:center;min-width:52px;cursor:pointer}.v-slide-group__next--disabled,.v-slide-group__prev--disabled{pointer-events:none;opacity:var(--v-disabled-opacity)}.v-slide-group__content{display:flex;flex:1 0 auto;position:relative;transition:.2s all cubic-bezier(.4,0,.2,1);white-space:nowrap}.v-slide-group__content>*{white-space:initial}.v-slide-group__container{contain:content;display:flex;flex:1 1 auto;overflow-x:auto;overflow-y:hidden;scrollbar-width:none;scrollbar-color:rgba(0,0,0,0)}.v-slide-group__container::-webkit-scrollbar{display:none}.v-slide-group--vertical{max-height:inherit}.v-slide-group--vertical,.v-slide-group--vertical .v-slide-group__container,.v-slide-group--vertical .v-slide-group__content{flex-direction:column}.v-slide-group--vertical .v-slide-group__container{overflow-x:hidden;overflow-y:auto}.v-list{overflow:auto;padding:8px 0;position:relative;outline:none}.v-list{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-list--border{border-width:thin;box-shadow:none}.v-list{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-list{border-radius:0}.v-list{background:rgba(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-list--disabled{pointer-events:none;-webkit-user-select:none;user-select:none}.v-list--nav{padding-inline:8px}.v-list--rounded{border-radius:4px}.v-list--subheader{padding-top:0}.v-list-img{border-radius:inherit;display:flex;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.v-list-subheader{align-items:center;background:inherit;color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity));display:flex;font-size:.875rem;font-weight:400;line-height:1.375rem;padding-inline-end:16px;min-height:40px;transition:.2s min-height cubic-bezier(.4,0,.2,1)}.v-list-subheader__text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-list--density-default .v-list-subheader{min-height:40px;padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list--density-comfortable .v-list-subheader{min-height:36px;padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list--density-compact .v-list-subheader{min-height:32px;padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list-subheader--inset{--indent-padding: 56px}.v-list--nav .v-list-subheader{font-size:.75rem}.v-list-subheader--sticky{background:inherit;left:0;position:sticky;top:0;z-index:1}.v-list__overlay{background-color:currentColor;border-radius:inherit;bottom:0;left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .2s ease-in-out}.v-list-item{align-items:center;display:grid;flex:none;grid-template-areas:"prepend content append";grid-template-columns:max-content 1fr auto;outline:none;max-width:100%;padding:4px 16px;position:relative;text-decoration:none}.v-list-item{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-list-item--border{border-width:thin;box-shadow:none}.v-list-item:hover>.v-list-item__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-list-item:focus-visible>.v-list-item__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-list-item:focus>.v-list-item__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-list-item--active>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]>.v-list-item__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-list-item--active:hover>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]:hover>.v-list-item__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-list-item--active:focus-visible>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-list-item__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-list-item--active:focus>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]:focus>.v-list-item__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-list-item{border-radius:0}.v-list-item--variant-plain,.v-list-item--variant-outlined,.v-list-item--variant-text,.v-list-item--variant-tonal{background:transparent;color:inherit}.v-list-item--variant-plain{opacity:.62}.v-list-item--variant-plain:focus,.v-list-item--variant-plain:hover{opacity:1}.v-list-item--variant-plain .v-list-item__overlay{display:none}.v-list-item--variant-elevated,.v-list-item--variant-flat{background:rgba(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-list-item--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-list-item--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-list-item--variant-outlined{border:thin solid currentColor}.v-list-item--variant-text .v-list-item__overlay{background:currentColor}.v-list-item--variant-tonal .v-list-item__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-list-item .v-list-item__underlay{position:absolute}@supports selector(:focus-visible){.v-list-item:after{pointer-events:none;border:2px solid currentColor;border-radius:4px;opacity:0;transition:opacity .2s ease-in-out}.v-list-item:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-list-item:focus-visible:after{opacity:calc(.15 * var(--v-theme-overlay-multiplier))}}.v-list-item__prepend>.v-badge .v-icon,.v-list-item__prepend>.v-icon,.v-list-item__append>.v-badge .v-icon,.v-list-item__append>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-list-item--active .v-list-item__prepend>.v-badge .v-icon,.v-list-item--active .v-list-item__prepend>.v-icon,.v-list-item--active .v-list-item__append>.v-badge .v-icon,.v-list-item--active .v-list-item__append>.v-icon{opacity:1}.v-list-item--active:not(.v-list-item--link) .v-list-item__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-list-item--rounded{border-radius:4px}.v-list-item--disabled{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.6}.v-list-item--link{cursor:pointer}.v-navigation-drawer--rail:not(.v-navigation-drawer--expand-on-hover) .v-list-item .v-avatar,.v-navigation-drawer--rail.v-navigation-drawer--expand-on-hover:not(.v-navigation-drawer--is-hovering) .v-list-item .v-avatar{--v-avatar-height: 24px}.v-list-item__prepend{align-items:center;align-self:center;display:flex;grid-area:prepend}.v-list-item__prepend>.v-badge~.v-list-item__spacer,.v-list-item__prepend>.v-icon~.v-list-item__spacer,.v-list-item__prepend>.v-tooltip~.v-list-item__spacer{width:0}.v-list-item__prepend>.v-avatar~.v-list-item__spacer{width:16px}.v-list-item__prepend>.v-list-item-action~.v-list-item__spacer{width:16px}.v-list-item--slim .v-list-item__prepend>.v-badge~.v-list-item__spacer,.v-list-item--slim .v-list-item__prepend>.v-icon~.v-list-item__spacer,.v-list-item--slim .v-list-item__prepend>.v-tooltip~.v-list-item__spacer{width:20px}.v-list-item--slim .v-list-item__prepend>.v-avatar~.v-list-item__spacer{width:4px}.v-list-item--slim .v-list-item__prepend>.v-list-item-action~.v-list-item__spacer{width:4px}.v-list-item--three-line .v-list-item__prepend{align-self:start}.v-list-item__append{align-self:center;display:flex;align-items:center;grid-area:append}.v-list-item__append .v-list-item__spacer{order:-1;transition:.15s width cubic-bezier(.4,0,.2,1)}.v-list-item__append>.v-badge~.v-list-item__spacer,.v-list-item__append>.v-icon~.v-list-item__spacer,.v-list-item__append>.v-tooltip~.v-list-item__spacer{width:32px}.v-list-item__append>.v-avatar~.v-list-item__spacer{width:16px}.v-list-item__append>.v-list-item-action~.v-list-item__spacer{width:16px}.v-list-item--slim .v-list-item__append>.v-badge~.v-list-item__spacer,.v-list-item--slim .v-list-item__append>.v-icon~.v-list-item__spacer,.v-list-item--slim .v-list-item__append>.v-tooltip~.v-list-item__spacer{width:20px}.v-list-item--slim .v-list-item__append>.v-avatar~.v-list-item__spacer{width:4px}.v-list-item--slim .v-list-item__append>.v-list-item-action~.v-list-item__spacer{width:4px}.v-list-item--three-line .v-list-item__append{align-self:start}.v-list-item__content{align-self:center;grid-area:content;overflow:hidden}.v-list-item-action{align-self:center;display:flex;align-items:center;flex:none;transition:inherit;transition-property:height,width}.v-list-item-action--start{margin-inline-end:8px;margin-inline-start:-8px}.v-list-item-action--end{margin-inline-start:8px;margin-inline-end:-8px}.v-list-item-media{margin-top:0;margin-bottom:0}.v-list-item-media--start{margin-inline-end:16px}.v-list-item-media--end{margin-inline-start:16px}.v-list-item--two-line .v-list-item-media{margin-top:-4px;margin-bottom:-4px}.v-list-item--three-line .v-list-item-media{margin-top:0;margin-bottom:0}.v-list-item-subtitle{-webkit-box-orient:vertical;display:-webkit-box;opacity:var(--v-list-item-subtitle-opacity, var(--v-medium-emphasis-opacity));overflow:hidden;padding:0;text-overflow:ellipsis;overflow-wrap:break-word;word-break:initial}.v-list-item--one-line .v-list-item-subtitle{-webkit-line-clamp:1}.v-list-item--two-line .v-list-item-subtitle{-webkit-line-clamp:2}.v-list-item--three-line .v-list-item-subtitle{-webkit-line-clamp:3}.v-list-item-subtitle{font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;line-height:1rem;text-transform:none}.v-list-item--nav .v-list-item-subtitle{font-size:.75rem;font-weight:400;letter-spacing:.0178571429em;line-height:1rem}.v-list-item-title{-webkit-hyphens:auto;hyphens:auto;overflow-wrap:normal;overflow:hidden;padding:0;white-space:nowrap;text-overflow:ellipsis;word-break:normal;word-wrap:break-word}.v-list-item-title{font-size:1rem;font-weight:400;letter-spacing:.009375em;line-height:1.5;text-transform:none}.v-list-item--nav .v-list-item-title{font-size:.8125rem;font-weight:500;letter-spacing:normal;line-height:1rem}.v-list-item--density-default{min-height:40px}.v-list-item--density-default.v-list-item--one-line{min-height:48px;padding-top:4px;padding-bottom:4px}.v-list-item--density-default.v-list-item--two-line{min-height:64px;padding-top:12px;padding-bottom:12px}.v-list-item--density-default.v-list-item--three-line{min-height:88px;padding-top:16px;padding-bottom:16px}.v-list-item--density-default.v-list-item--three-line .v-list-item__prepend,.v-list-item--density-default.v-list-item--three-line .v-list-item__append{padding-top:8px}.v-list-item--density-default:not(.v-list-item--nav).v-list-item--one-line{padding-inline:16px}.v-list-item--density-default:not(.v-list-item--nav).v-list-item--two-line{padding-inline:16px}.v-list-item--density-default:not(.v-list-item--nav).v-list-item--three-line{padding-inline:16px}.v-list-item--density-comfortable{min-height:36px}.v-list-item--density-comfortable.v-list-item--one-line{min-height:44px}.v-list-item--density-comfortable.v-list-item--two-line{min-height:60px;padding-top:8px;padding-bottom:8px}.v-list-item--density-comfortable.v-list-item--three-line{min-height:84px;padding-top:12px;padding-bottom:12px}.v-list-item--density-comfortable.v-list-item--three-line .v-list-item__prepend,.v-list-item--density-comfortable.v-list-item--three-line .v-list-item__append{padding-top:6px}.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--one-line{padding-inline:16px}.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--two-line{padding-inline:16px}.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--three-line{padding-inline:16px}.v-list-item--density-compact{min-height:32px}.v-list-item--density-compact.v-list-item--one-line{min-height:40px}.v-list-item--density-compact.v-list-item--two-line{min-height:56px;padding-top:4px;padding-bottom:4px}.v-list-item--density-compact.v-list-item--three-line{min-height:80px;padding-top:8px;padding-bottom:8px}.v-list-item--density-compact.v-list-item--three-line .v-list-item__prepend,.v-list-item--density-compact.v-list-item--three-line .v-list-item__append{padding-top:4px}.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--one-line{padding-inline:16px}.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--two-line{padding-inline:16px}.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--three-line{padding-inline:16px}.v-list-item--nav{padding-inline:8px}.v-list .v-list-item--nav:not(:only-child){margin-bottom:4px}.v-list-item__underlay{position:absolute}.v-list-item__overlay{background-color:currentColor;border-radius:inherit;bottom:0;left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .2s ease-in-out}.v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay{--v-theme-overlay-multiplier: 0}.v-list{--indent-padding: 0px}.v-list--nav{--indent-padding: -8px}.v-list-group{--list-indent-size: 16px;--parent-padding: var(--indent-padding);--prepend-width: 40px}.v-list--slim .v-list-group{--prepend-width: 28px}.v-list-group--fluid{--list-indent-size: 0px}.v-list-group--prepend{--parent-padding: calc(var(--indent-padding) + var(--prepend-width))}.v-list-group--fluid.v-list-group--prepend{--parent-padding: var(--indent-padding)}.v-list-group__items{--indent-padding: calc(var(--parent-padding) + var(--list-indent-size))}.v-list-group__items .v-list-item{padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:not(:focus-visible) .v-list-item__overlay{opacity:0}.v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:hover .v-list-item__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-divider{display:block;flex:1 1 100%;height:0px;max-height:0px;opacity:var(--v-border-opacity);transition:inherit}.v-divider{border-style:solid;border-width:thin 0 0 0}.v-divider--vertical{align-self:stretch;border-width:0 thin 0 0;display:inline-flex;height:auto;margin-left:-1px;max-height:100%;max-width:0px;vertical-align:text-bottom;width:0px}.v-divider--inset:not(.v-divider--vertical){max-width:calc(100% - 72px);margin-inline-start:72px}.v-divider--inset.v-divider--vertical{margin-bottom:8px;margin-top:8px;max-height:calc(100% - 16px)}.v-divider__content{padding:0 16px;text-wrap:nowrap}.v-divider__wrapper--vertical .v-divider__content{padding:4px 0}.v-divider__wrapper{display:flex;align-items:center;justify-content:center}.v-divider__wrapper--vertical{flex-direction:column;height:100%}.v-divider__wrapper--vertical .v-divider{margin:0 auto}.v-menu>.v-overlay__content{display:flex;flex-direction:column}.v-menu>.v-overlay__content{border-radius:4px}.v-menu>.v-overlay__content>.v-card,.v-menu>.v-overlay__content>.v-sheet,.v-menu>.v-overlay__content>.v-list{background:rgb(var(--v-theme-surface));border-radius:inherit;overflow:auto;height:100%}.v-menu>.v-overlay__content>.v-card,.v-menu>.v-overlay__content>.v-sheet,.v-menu>.v-overlay__content>.v-list{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-overlay-container{contain:layout;left:0;pointer-events:none;position:absolute;top:0;display:contents}.v-overlay-scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.v-overlay-scroll-blocked:not(html){overflow-y:hidden!important}html.v-overlay-scroll-blocked{position:fixed;top:var(--v-body-scroll-y);left:var(--v-body-scroll-x);width:100%;height:100%}.v-overlay{border-radius:inherit;display:flex;left:0;pointer-events:none;position:fixed;top:0;bottom:0;right:0}.v-overlay__content{outline:none;position:absolute;pointer-events:auto;contain:layout}.v-overlay__scrim{pointer-events:auto;background:rgb(var(--v-theme-on-surface));border-radius:inherit;bottom:0;left:0;opacity:var(--v-overlay-opacity, .32);position:fixed;right:0;top:0}.v-overlay--absolute,.v-overlay--contained .v-overlay__scrim{position:absolute}.v-overlay--scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.v-select .v-field .v-text-field__prefix,.v-select .v-field .v-text-field__suffix,.v-select .v-field .v-field__input,.v-select .v-field.v-field{cursor:pointer}.v-select .v-field .v-field__input>input{align-self:flex-start;opacity:1;flex:0 0;position:absolute;width:100%;transition:none;pointer-events:none;caret-color:transparent}.v-select .v-field--dirty .v-select__selection{margin-inline-end:2px}.v-select .v-select__selection-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-select__content{overflow:hidden}.v-select__content{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-select__content{border-radius:4px}.v-select__selection{display:inline-flex;align-items:center;letter-spacing:inherit;line-height:inherit;max-width:100%}.v-select .v-select__selection:first-child{margin-inline-start:0}.v-select--selected .v-field .v-field__input>input{opacity:0}.v-select__menu-icon{margin-inline-start:4px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-select--active-menu .v-select__menu-icon{opacity:var(--v-high-emphasis-opacity);transform:rotate(180deg)}.v-text-field input{color:inherit;opacity:0;flex:1;transition:.15s opacity cubic-bezier(.4,0,.2,1);min-width:0}.v-text-field input:focus,.v-text-field input:active{outline:none}.v-text-field input:invalid{box-shadow:none}.v-text-field .v-field{cursor:text}.v-text-field--prefixed.v-text-field .v-field__input{--v-field-padding-start: 6px}.v-text-field--suffixed.v-text-field .v-field__input{--v-field-padding-end: 0}.v-text-field .v-input__details{padding-inline:16px}.v-input--plain-underlined.v-text-field .v-input__details{padding-inline:0}.v-text-field .v-field--no-label input,.v-text-field .v-field--active input{opacity:1}.v-text-field .v-field--single-line input{transition:none}.v-text-field__prefix,.v-text-field__suffix{align-items:center;color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity));cursor:default;display:flex;opacity:0;transition:inherit;white-space:nowrap;min-height:max(var(--v-input-control-height, 56px),1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));padding-top:calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));padding-bottom:var(--v-field-padding-bottom, 6px)}.v-field--active .v-text-field__prefix,.v-field--active .v-text-field__suffix{opacity:1}.v-field--disabled .v-text-field__prefix,.v-field--disabled .v-text-field__suffix{color:rgba(var(--v-theme-on-surface),var(--v-disabled-opacity))}.v-text-field__prefix{padding-inline-start:var(--v-field-padding-start)}.v-text-field__suffix{padding-inline-end:var(--v-field-padding-end)}.v-counter{color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity));flex:0 1 auto;font-size:12px;transition-duration:.15s}.v-field{display:grid;grid-template-areas:"prepend-inner field clear append-inner";grid-template-columns:min-content minmax(0,1fr) min-content min-content;font-size:16px;letter-spacing:.009375em;max-width:100%;border-radius:4px;contain:layout;flex:1 0;grid-area:control;position:relative;--v-theme-overlay-multiplier: 1;--v-field-padding-start: 16px;--v-field-padding-end: 16px;--v-field-padding-top: 8px;--v-field-padding-bottom: 4px;--v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));--v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px)}.v-field--disabled{opacity:var(--v-disabled-opacity);pointer-events:none}.v-field .v-chip{--v-chip-height: 24px}.v-field--prepended{padding-inline-start:12px}.v-field--appended{padding-inline-end:12px}.v-field--variant-solo,.v-field--variant-solo-filled{background:rgb(var(--v-theme-surface));border-color:transparent;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-field--variant-solo,.v-field--variant-solo-filled{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-field--variant-solo-inverted{background:rgb(var(--v-theme-surface));border-color:transparent;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-field--variant-solo-inverted{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-field--variant-solo-inverted.v-field--focused{color:rgb(var(--v-theme-on-surface-variant))}.v-field--variant-filled{border-bottom-left-radius:0;border-bottom-right-radius:0}.v-input--density-default .v-field--variant-solo,.v-input--density-default .v-field--variant-solo-inverted,.v-input--density-default .v-field--variant-solo-filled,.v-input--density-default .v-field--variant-filled{--v-input-control-height: 56px;--v-field-padding-bottom: 4px}.v-input--density-comfortable .v-field--variant-solo,.v-input--density-comfortable .v-field--variant-solo-inverted,.v-input--density-comfortable .v-field--variant-solo-filled,.v-input--density-comfortable .v-field--variant-filled{--v-input-control-height: 48px;--v-field-padding-bottom: 0px}.v-input--density-compact .v-field--variant-solo,.v-input--density-compact .v-field--variant-solo-inverted,.v-input--density-compact .v-field--variant-solo-filled,.v-input--density-compact .v-field--variant-filled{--v-input-control-height: 40px;--v-field-padding-bottom: 0px}.v-field--variant-outlined,.v-field--single-line,.v-field--no-label{--v-field-padding-top: 0px}.v-input--density-default .v-field--variant-outlined,.v-input--density-default .v-field--single-line,.v-input--density-default .v-field--no-label{--v-field-padding-bottom: 16px}.v-input--density-comfortable .v-field--variant-outlined,.v-input--density-comfortable .v-field--single-line,.v-input--density-comfortable .v-field--no-label{--v-field-padding-bottom: 12px}.v-input--density-compact .v-field--variant-outlined,.v-input--density-compact .v-field--single-line,.v-input--density-compact .v-field--no-label{--v-field-padding-bottom: 8px}.v-field--variant-plain,.v-field--variant-underlined{border-radius:0;padding:0}.v-field--variant-plain.v-field,.v-field--variant-underlined.v-field{--v-field-padding-start: 0px;--v-field-padding-end: 0px}.v-input--density-default .v-field--variant-plain,.v-input--density-default .v-field--variant-underlined{--v-input-control-height: 48px;--v-field-padding-top: 4px;--v-field-padding-bottom: 4px}.v-input--density-comfortable .v-field--variant-plain,.v-input--density-comfortable .v-field--variant-underlined{--v-input-control-height: 40px;--v-field-padding-top: 2px;--v-field-padding-bottom: 0px}.v-input--density-compact .v-field--variant-plain,.v-input--density-compact .v-field--variant-underlined{--v-input-control-height: 32px;--v-field-padding-top: 0px;--v-field-padding-bottom: 0px}.v-field--flat{box-shadow:none}.v-field--rounded{border-radius:24px}.v-field.v-field--prepended{--v-field-padding-start: 6px}.v-field.v-field--appended{--v-field-padding-end: 6px}.v-field__input{align-items:center;color:inherit;column-gap:2px;display:flex;flex-wrap:wrap;letter-spacing:.009375em;opacity:var(--v-high-emphasis-opacity);min-height:max(var(--v-input-control-height, 56px),1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));min-width:0;padding-inline:var(--v-field-padding-start) var(--v-field-padding-end);padding-top:var(--v-field-input-padding-top);padding-bottom:var(--v-field-input-padding-bottom);position:relative;width:100%}.v-input--density-default .v-field__input{row-gap:8px}.v-input--density-comfortable .v-field__input{row-gap:6px}.v-input--density-compact .v-field__input{row-gap:4px}.v-field__input input{letter-spacing:inherit}.v-field__input input::placeholder,input.v-field__input::placeholder,textarea.v-field__input::placeholder{color:currentColor;opacity:var(--v-disabled-opacity)}.v-field__input:focus,.v-field__input:active{outline:none}.v-field__input:invalid{box-shadow:none}.v-field__field{flex:1 0;grid-area:field;position:relative;align-items:flex-start;display:flex}.v-field__prepend-inner{grid-area:prepend-inner;padding-inline-end:var(--v-field-padding-after)}.v-field__clearable{grid-area:clear}.v-field__append-inner{grid-area:append-inner;padding-inline-start:var(--v-field-padding-after)}.v-field__append-inner,.v-field__clearable,.v-field__prepend-inner{display:flex;align-items:flex-start;padding-top:var(--v-input-padding-top, 8px)}.v-field--center-affix .v-field__append-inner,.v-field--center-affix .v-field__clearable,.v-field--center-affix .v-field__prepend-inner{align-items:center;padding-top:0}.v-field.v-field--variant-underlined .v-field__append-inner,.v-field.v-field--variant-underlined .v-field__clearable,.v-field.v-field--variant-underlined .v-field__prepend-inner,.v-field.v-field--variant-plain .v-field__append-inner,.v-field.v-field--variant-plain .v-field__clearable,.v-field.v-field--variant-plain .v-field__prepend-inner{align-items:flex-start;padding-top:calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));padding-bottom:var(--v-field-padding-bottom, 4px)}.v-field--focused .v-field__prepend-inner,.v-field--focused .v-field__append-inner{opacity:1}.v-field__prepend-inner>.v-icon,.v-field__append-inner>.v-icon,.v-field__clearable>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-field--disabled .v-field__prepend-inner>.v-icon,.v-field--error .v-field__prepend-inner>.v-icon,.v-field--disabled .v-field__append-inner>.v-icon,.v-field--error .v-field__append-inner>.v-icon,.v-field--disabled .v-field__clearable>.v-icon,.v-field--error .v-field__clearable>.v-icon{opacity:1}.v-field--error:not(.v-field--disabled) .v-field__prepend-inner>.v-icon,.v-field--error:not(.v-field--disabled) .v-field__append-inner>.v-icon,.v-field--error:not(.v-field--disabled) .v-field__clearable>.v-icon{color:rgb(var(--v-theme-error))}.v-field__clearable{cursor:pointer;opacity:0;overflow:hidden;margin-inline:4px;transition:.15s cubic-bezier(.4,0,.2,1);transition-property:opacity,transform,width}.v-field--focused .v-field__clearable,.v-field--persistent-clear .v-field__clearable{opacity:1}@media (hover: hover){.v-field:hover .v-field__clearable{opacity:1}}@media (hover: none){.v-field__clearable{opacity:1}}.v-label.v-field-label{contain:layout paint;display:block;margin-inline-start:var(--v-field-padding-start);margin-inline-end:var(--v-field-padding-end);max-width:calc(100% - var(--v-field-padding-start) - var(--v-field-padding-end));pointer-events:none;position:absolute;top:var(--v-input-padding-top);transform-origin:left center;transition:.15s cubic-bezier(.4,0,.2,1);transition-property:opacity,transform;z-index:1}.v-field--variant-underlined .v-label.v-field-label,.v-field--variant-plain .v-label.v-field-label{top:calc(var(--v-input-padding-top) + var(--v-field-padding-top))}.v-field--center-affix .v-label.v-field-label{top:50%;transform:translateY(-50%)}.v-field--active .v-label.v-field-label{visibility:hidden}.v-field--focused .v-label.v-field-label,.v-field--error .v-label.v-field-label{opacity:1}.v-field--error:not(.v-field--disabled) .v-label.v-field-label{color:rgb(var(--v-theme-error))}.v-label.v-field-label--floating{--v-field-label-scale: .75em;font-size:var(--v-field-label-scale);visibility:hidden;max-width:100%}.v-field--center-affix .v-label.v-field-label--floating{transform:none}.v-field.v-field--active .v-label.v-field-label--floating{visibility:unset}.v-input--density-default .v-field--variant-solo .v-label.v-field-label--floating,.v-input--density-default .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-input--density-default .v-field--variant-filled .v-label.v-field-label--floating,.v-input--density-default .v-field--variant-solo-filled .v-label.v-field-label--floating{top:7px}.v-input--density-comfortable .v-field--variant-solo .v-label.v-field-label--floating,.v-input--density-comfortable .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-input--density-comfortable .v-field--variant-filled .v-label.v-field-label--floating,.v-input--density-comfortable .v-field--variant-solo-filled .v-label.v-field-label--floating{top:5px}.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating{top:3px}.v-field--variant-plain .v-label.v-field-label--floating,.v-field--variant-underlined .v-label.v-field-label--floating{transform:translateY(-16px);margin:0;top:var(--v-input-padding-top)}.v-field--variant-outlined .v-label.v-field-label--floating{transform:translateY(-50%);transform-origin:center;position:static;margin:0 4px}.v-field__outline{--v-field-border-width: 1px;--v-field-border-opacity: .38;align-items:stretch;contain:layout;display:flex;height:100%;left:0;pointer-events:none;position:absolute;right:0;width:100%}@media (hover: hover){.v-field:hover .v-field__outline{--v-field-border-opacity: var(--v-high-emphasis-opacity)}}.v-field--error:not(.v-field--disabled) .v-field__outline{color:rgb(var(--v-theme-error))}.v-field.v-field--focused .v-field__outline,.v-input.v-input--error .v-field__outline{--v-field-border-opacity: 1}.v-field--variant-outlined.v-field--focused .v-field__outline{--v-field-border-width: 2px}.v-field--variant-filled .v-field__outline:before,.v-field--variant-underlined .v-field__outline:before{border-color:currentColor;border-style:solid;border-width:0 0 var(--v-field-border-width);opacity:var(--v-field-border-opacity);transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-filled .v-field__outline:before,.v-field--variant-underlined .v-field__outline:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-field--variant-filled .v-field__outline:after,.v-field--variant-underlined .v-field__outline:after{border-color:currentColor;border-style:solid;border-width:0 0 2px;transform:scaleX(0);transition:transform .15s cubic-bezier(.4,0,.2,1)}.v-field--variant-filled .v-field__outline:after,.v-field--variant-underlined .v-field__outline:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-field--focused.v-field--variant-filled .v-field__outline:after,.v-field--focused.v-field--variant-underlined .v-field__outline:after{transform:scaleX(1)}.v-field--variant-outlined .v-field__outline{border-radius:inherit}.v-field--variant-outlined .v-field__outline__start,.v-field--variant-outlined .v-field__outline__notch:before,.v-field--variant-outlined .v-field__outline__notch:after,.v-field--variant-outlined .v-field__outline__end{border:0 solid currentColor;opacity:var(--v-field-border-opacity);transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-outlined .v-field__outline__start{flex:0 0 12px;border-top-width:var(--v-field-border-width);border-bottom-width:var(--v-field-border-width);border-inline-start-width:var(--v-field-border-width);border-start-start-radius:inherit;border-start-end-radius:0;border-end-end-radius:0;border-end-start-radius:inherit}.v-field--rounded.v-field--variant-outlined .v-field__outline__start,[class^=rounded-].v-field--variant-outlined .v-field__outline__start,[class*=" rounded-"].v-field--variant-outlined .v-field__outline__start{flex-basis:calc(var(--v-input-control-height) / 2 + 2px)}.v-field--reverse.v-field--variant-outlined .v-field__outline__start{border-start-start-radius:0;border-start-end-radius:inherit;border-end-end-radius:inherit;border-end-start-radius:0;border-inline-end-width:var(--v-field-border-width);border-inline-start-width:0}.v-field--variant-outlined .v-field__outline__notch{flex:none;position:relative;max-width:calc(100% - 12px)}.v-field--variant-outlined .v-field__outline__notch:before,.v-field--variant-outlined .v-field__outline__notch:after{opacity:var(--v-field-border-opacity);transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-outlined .v-field__outline__notch:before,.v-field--variant-outlined .v-field__outline__notch:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-field--variant-outlined .v-field__outline__notch:before{border-width:var(--v-field-border-width) 0 0}.v-field--variant-outlined .v-field__outline__notch:after{bottom:0;border-width:0 0 var(--v-field-border-width)}.v-field--active.v-field--variant-outlined .v-field__outline__notch:before{opacity:0}.v-field--variant-outlined .v-field__outline__end{flex:1;border-top-width:var(--v-field-border-width);border-bottom-width:var(--v-field-border-width);border-inline-end-width:var(--v-field-border-width);border-start-start-radius:0;border-start-end-radius:inherit;border-end-end-radius:inherit;border-end-start-radius:0}.v-field--reverse.v-field--variant-outlined .v-field__outline__end{border-start-start-radius:inherit;border-start-end-radius:0;border-end-end-radius:0;border-end-start-radius:inherit;border-inline-end-width:0;border-inline-start-width:var(--v-field-border-width)}.v-field__loader{top:calc(100% - 2px);left:0;position:absolute;right:0;width:100%;border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;overflow:hidden}.v-field--variant-outlined .v-field__loader{top:calc(100% - 3px);width:calc(100% - 2px);left:1px}.v-field__overlay{border-radius:inherit;pointer-events:none}.v-field__overlay{position:absolute;top:0;left:0;width:100%;height:100%}.v-field--variant-filled .v-field__overlay{background-color:currentColor;opacity:.04;transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-filled.v-field--has-background .v-field__overlay{opacity:0}@media (hover: hover){.v-field--variant-filled:hover .v-field__overlay{opacity:calc((.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}}.v-field--variant-filled.v-field--focused .v-field__overlay{opacity:calc((.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}.v-field--variant-solo-filled .v-field__overlay{background-color:currentColor;opacity:.04;transition:opacity .25s cubic-bezier(.4,0,.2,1)}@media (hover: hover){.v-field--variant-solo-filled:hover .v-field__overlay{opacity:calc((.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}}.v-field--variant-solo-filled.v-field--focused .v-field__overlay{opacity:calc((.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}.v-field--variant-solo-inverted .v-field__overlay{transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-solo-inverted.v-field--has-background .v-field__overlay{opacity:0}@media (hover: hover){.v-field--variant-solo-inverted:hover .v-field__overlay{opacity:calc((.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}}.v-field--variant-solo-inverted.v-field--focused .v-field__overlay{background-color:rgb(var(--v-theme-surface-variant));opacity:1}.v-field--reverse .v-field__field,.v-field--reverse .v-field__input,.v-field--reverse .v-field__outline{flex-direction:row-reverse}.v-field--reverse .v-field__input,.v-field--reverse input{text-align:end}.v-input--disabled .v-field--variant-filled .v-field__outline:before,.v-input--disabled .v-field--variant-underlined .v-field__outline:before{border-image:repeating-linear-gradient(to right,rgba(var(--v-theme-on-surface),var(--v-disabled-opacity)) 0px,rgba(var(--v-theme-on-surface),var(--v-disabled-opacity)) 2px,transparent 2px,transparent 4px) 1 repeat}.v-field--loading .v-field__outline:after,.v-field--loading .v-field__outline:before{opacity:0}.v-virtual-scroll{display:block;flex:1 1 auto;max-width:100%;overflow:auto;position:relative}.v-virtual-scroll__container{display:block}.v-dialog{align-items:center;justify-content:center;margin:auto}.v-dialog>.v-overlay__content{max-height:calc(100% - 48px);width:calc(100% - 48px);max-width:calc(100% - 48px);margin:24px}.v-dialog>.v-overlay__content,.v-dialog>.v-overlay__content>form{display:flex;flex-direction:column;min-height:0}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>.v-sheet,.v-dialog>.v-overlay__content>form>.v-card,.v-dialog>.v-overlay__content>form>.v-sheet{--v-scrollbar-offset: 0px;border-radius:4px;overflow-y:auto}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>.v-sheet,.v-dialog>.v-overlay__content>form>.v-card,.v-dialog>.v-overlay__content>form>.v-sheet{box-shadow:0 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>form>.v-card{display:flex;flex-direction:column}.v-dialog>.v-overlay__content>.v-card>.v-card-item,.v-dialog>.v-overlay__content>form>.v-card>.v-card-item{padding:16px 24px}.v-dialog>.v-overlay__content>.v-card>.v-card-item+.v-card-text,.v-dialog>.v-overlay__content>form>.v-card>.v-card-item+.v-card-text{padding-top:0}.v-dialog>.v-overlay__content>.v-card>.v-card-text,.v-dialog>.v-overlay__content>form>.v-card>.v-card-text{font-size:inherit;letter-spacing:.03125em;line-height:inherit;padding:16px 24px 24px}.v-dialog>.v-overlay__content>.v-card>.v-card-actions,.v-dialog>.v-overlay__content>form>.v-card>.v-card-actions{justify-content:flex-end}.v-dialog--fullscreen{--v-scrollbar-offset: 0px}.v-dialog--fullscreen>.v-overlay__content{border-radius:0;margin:0;padding:0;width:100%;height:100%;max-width:100%;max-height:100%;overflow-y:auto;top:0;left:0}.v-dialog--fullscreen>.v-overlay__content>.v-card,.v-dialog--fullscreen>.v-overlay__content>.v-sheet,.v-dialog--fullscreen>.v-overlay__content>form>.v-card,.v-dialog--fullscreen>.v-overlay__content>form>.v-sheet{min-height:100%;min-width:100%;border-radius:0}.v-dialog--scrollable>.v-overlay__content,.v-dialog--scrollable>.v-overlay__content>form{display:flex}.v-dialog--scrollable>.v-overlay__content>.v-card,.v-dialog--scrollable>.v-overlay__content>form>.v-card{display:flex;flex:1 1 100%;flex-direction:column;max-height:100%;max-width:100%}.v-dialog--scrollable>.v-overlay__content>.v-card>.v-card-text,.v-dialog--scrollable>.v-overlay__content>form>.v-card>.v-card-text{backface-visibility:hidden;overflow-y:auto}.v-card{display:block;overflow:hidden;overflow-wrap:break-word;position:relative;padding:0;text-decoration:none;transition-duration:.28s;transition-property:box-shadow,opacity,background;transition-timing-function:cubic-bezier(.4,0,.2,1);z-index:0}.v-card{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-card--border{border-width:thin;box-shadow:none}.v-card--absolute{position:absolute}.v-card--fixed{position:fixed}.v-card{border-radius:4px}.v-card:hover>.v-card__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-card:focus-visible>.v-card__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-card:focus>.v-card__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-card--active>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]>.v-card__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-card--active:hover>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]:hover>.v-card__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-card--active:focus-visible>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-card__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-card--active:focus>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]:focus>.v-card__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-card--variant-plain,.v-card--variant-outlined,.v-card--variant-text,.v-card--variant-tonal{background:transparent;color:inherit}.v-card--variant-plain{opacity:.62}.v-card--variant-plain:focus,.v-card--variant-plain:hover{opacity:1}.v-card--variant-plain .v-card__overlay{display:none}.v-card--variant-elevated,.v-card--variant-flat{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-card--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-card--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-card--variant-outlined{border:thin solid currentColor}.v-card--variant-text .v-card__overlay{background:currentColor}.v-card--variant-tonal .v-card__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-card .v-card__underlay{position:absolute}.v-card--disabled{pointer-events:none;-webkit-user-select:none;user-select:none}.v-card--disabled>:not(.v-card__loader){opacity:.6}.v-card--flat{box-shadow:none}.v-card--hover{cursor:pointer}.v-card--hover:before,.v-card--hover:after{border-radius:inherit;bottom:0;content:"";display:block;left:0;pointer-events:none;position:absolute;right:0;top:0;transition:inherit}.v-card--hover:before{opacity:1;z-index:-1}.v-card--hover:before{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-card--hover:after{z-index:1;opacity:0}.v-card--hover:after{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-card--hover:hover:after{opacity:1}.v-card--hover:hover:before{opacity:0}.v-card--hover:hover{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-card--link{cursor:pointer}.v-card-actions{align-items:center;display:flex;flex:none;min-height:52px;padding:.5rem}.v-card-item{align-items:center;display:grid;flex:none;grid-template-areas:"prepend content append";grid-template-columns:max-content auto max-content;padding:.625rem 1rem}.v-card-item+.v-card-text{padding-top:0}.v-card-item__prepend,.v-card-item__append{align-items:center;display:flex}.v-card-item__prepend{grid-area:prepend;padding-inline-end:.5rem}.v-card-item__append{grid-area:append;padding-inline-start:.5rem}.v-card-item__content{align-self:center;grid-area:content;overflow:hidden}.v-card-title{display:block;flex:none;font-size:1.25rem;font-weight:500;-webkit-hyphens:auto;hyphens:auto;letter-spacing:.0125em;min-width:0;overflow-wrap:normal;overflow:hidden;padding:.5rem 1rem;text-overflow:ellipsis;text-transform:none;white-space:nowrap;word-break:normal;word-wrap:break-word}.v-card .v-card-title{line-height:1.6}.v-card--density-comfortable .v-card-title{line-height:1.75rem}.v-card--density-compact .v-card-title{line-height:1.55rem}.v-card-item .v-card-title{padding:0}.v-card-title+.v-card-text,.v-card-title+.v-card-actions{padding-top:0}.v-card-subtitle{display:block;flex:none;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;opacity:var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));overflow:hidden;padding:0 1rem;text-overflow:ellipsis;text-transform:none;white-space:nowrap}.v-card .v-card-subtitle{line-height:1.425}.v-card--density-comfortable .v-card-subtitle{line-height:1.125rem}.v-card--density-compact .v-card-subtitle{line-height:1rem}.v-card-item .v-card-subtitle{padding:0 0 .25rem}.v-card-text{flex:1 1 auto;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;opacity:var(--v-card-text-opacity, 1);padding:1rem;text-transform:none}.v-card .v-card-text{line-height:1.425}.v-card--density-comfortable .v-card-text{line-height:1.2rem}.v-card--density-compact .v-card-text{line-height:1.15rem}.v-card__image{display:flex;height:100%;flex:1 1 auto;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.v-card__content{border-radius:inherit;overflow:hidden;position:relative}.v-card__loader{bottom:auto;top:0;left:0;position:absolute;right:0;width:100%;z-index:1}.v-card__overlay{background-color:currentColor;border-radius:inherit;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;opacity:0;transition:opacity .2s ease-in-out}.v-slider .v-slider__container input{cursor:default;padding:0;width:100%;display:none}.v-slider>.v-input__append,.v-slider>.v-input__prepend{padding:0}.v-slider__container{position:relative;min-height:inherit;width:100%;height:100%;display:flex;justify-content:center;align-items:center;cursor:pointer}.v-input--disabled .v-slider__container{opacity:var(--v-disabled-opacity)}.v-input--error:not(.v-input--disabled) .v-slider__container{color:rgb(var(--v-theme-error))}.v-slider.v-input--horizontal{align-items:center;margin-inline:8px 8px}.v-slider.v-input--horizontal>.v-input__control{min-height:32px;display:flex;align-items:center}.v-slider.v-input--vertical{justify-content:center;margin-top:12px;margin-bottom:12px}.v-slider.v-input--vertical>.v-input__control{min-height:300px}.v-slider.v-input--disabled{pointer-events:none}.v-slider--has-labels>.v-input__control{margin-bottom:4px}.v-slider__label{margin-inline-end:12px}.v-slider-thumb{touch-action:none;color:rgb(var(--v-theme-surface-variant))}.v-input--error:not(.v-input--disabled) .v-slider-thumb{color:inherit}.v-slider-thumb__label{background:rgba(var(--v-theme-surface-variant),.7);color:rgb(var(--v-theme-on-surface-variant))}.v-slider-thumb__label:before{color:rgba(var(--v-theme-surface-variant),.7)}.v-slider-thumb{outline:none;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider-thumb__surface{cursor:pointer;width:var(--v-slider-thumb-size);height:var(--v-slider-thumb-size);border-radius:50%;-webkit-user-select:none;user-select:none;background-color:currentColor}@media (forced-colors: active){.v-slider-thumb__surface{background-color:highlight}}.v-slider-thumb__surface:before{transition:.3s cubic-bezier(.4,0,.2,1);content:"";color:inherit;top:0;left:0;width:100%;height:100%;border-radius:50%;background:currentColor;position:absolute;pointer-events:none;opacity:0}.v-slider-thumb__surface:after{content:"";width:42px;height:42px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.v-slider-thumb__label-container{position:absolute;transition:.2s cubic-bezier(.4,0,1,1)}.v-slider-thumb__label{display:flex;align-items:center;justify-content:center;font-size:.75rem;min-width:35px;height:25px;border-radius:4px;padding:6px;position:absolute;-webkit-user-select:none;user-select:none;transition:.2s cubic-bezier(.4,0,1,1)}.v-slider-thumb__label:before{content:"";width:0;height:0;position:absolute}.v-slider-thumb__ripple{position:absolute;left:calc(var(--v-slider-thumb-size) / -2);top:calc(var(--v-slider-thumb-size) / -2);width:calc(var(--v-slider-thumb-size) * 2);height:calc(var(--v-slider-thumb-size) * 2);background:inherit}.v-slider.v-input--horizontal .v-slider-thumb{top:50%;transform:translateY(-50%);inset-inline-start:calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2)}.v-slider.v-input--horizontal .v-slider-thumb__label-container{left:calc(var(--v-slider-thumb-size) / 2);top:0}.v-slider.v-input--horizontal .v-slider-thumb__label{bottom:calc(var(--v-slider-thumb-size) / 2)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label{transform:translate(-50%)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label{transform:translate(50%)}.v-slider.v-input--horizontal .v-slider-thumb__label:before{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid currentColor;bottom:-6px}.v-slider.v-input--vertical .v-slider-thumb{top:calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2)}.v-slider.v-input--vertical .v-slider-thumb__label-container{top:calc(var(--v-slider-thumb-size) / 2);right:0}.v-slider.v-input--vertical .v-slider-thumb__label{top:-12.5px;left:calc(var(--v-slider-thumb-size) / 2)}.v-slider.v-input--vertical .v-slider-thumb__label:before{border-right:6px solid currentColor;border-top:6px solid transparent;border-bottom:6px solid transparent;left:-6px}.v-slider-thumb--focused .v-slider-thumb__surface:before{transform:scale(2);opacity:var(--v-focus-opacity)}.v-slider-thumb--pressed{transition:none}.v-slider-thumb--pressed .v-slider-thumb__surface:before{opacity:var(--v-pressed-opacity)}@media (hover: hover){.v-slider-thumb:hover .v-slider-thumb__surface:before{transform:scale(2)}.v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface:before{opacity:var(--v-hover-opacity)}}.v-slider-track__background{background-color:rgb(var(--v-theme-surface-variant))}@media (forced-colors: active){.v-slider-track__background{background-color:highlight}}.v-slider-track__fill{background-color:rgb(var(--v-theme-surface-variant))}@media (forced-colors: active){.v-slider-track__fill{background-color:highlight}}.v-slider-track__tick{background-color:rgb(var(--v-theme-surface-variant))}.v-slider-track__tick--filled{background-color:rgb(var(--v-theme-surface-light))}.v-slider-track{border-radius:6px}@media (forced-colors: active){.v-slider-track{border:thin solid buttontext}}.v-slider-track__background,.v-slider-track__fill{position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1);border-radius:inherit}.v-slider--pressed .v-slider-track__background,.v-slider--pressed .v-slider-track__fill{transition:none}.v-input--error:not(.v-input--disabled) .v-slider-track__background,.v-input--error:not(.v-input--disabled) .v-slider-track__fill{background-color:currentColor}.v-slider-track__ticks{height:100%;width:100%;position:relative}.v-slider-track__tick{position:absolute;opacity:0;transition:.2s opacity cubic-bezier(.4,0,.2,1);border-radius:2px;width:var(--v-slider-tick-size);height:var(--v-slider-tick-size);transform:translate(calc(var(--v-slider-tick-size) / -2),calc(var(--v-slider-tick-size) / -2))}.v-locale--is-ltr.v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-ltr .v-slider-track__tick--first .v-slider-track__tick-label{transform:none}.v-locale--is-rtl.v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-rtl .v-slider-track__tick--first .v-slider-track__tick-label{transform:translate(100%)}.v-locale--is-ltr.v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-ltr .v-slider-track__tick--last .v-slider-track__tick-label{transform:translate(-100%)}.v-locale--is-rtl.v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-rtl .v-slider-track__tick--last .v-slider-track__tick-label{transform:none}.v-slider-track__tick-label{position:absolute;-webkit-user-select:none;user-select:none;white-space:nowrap}.v-slider.v-input--horizontal .v-slider-track{display:flex;align-items:center;width:100%;height:calc(var(--v-slider-track-size) + 2px);touch-action:pan-y}.v-slider.v-input--horizontal .v-slider-track__background{height:var(--v-slider-track-size)}.v-slider.v-input--horizontal .v-slider-track__fill{height:inherit}.v-slider.v-input--horizontal .v-slider-track__tick{margin-top:calc(calc(var(--v-slider-track-size) + 2px) / 2)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick{transform:translate(calc(var(--v-slider-tick-size) / 2),calc(var(--v-slider-tick-size) / -2))}.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label{margin-top:calc(var(--v-slider-track-size) / 2 + 8px)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label{transform:translate(-50%)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label{transform:translate(50%)}.v-slider.v-input--horizontal .v-slider-track__tick--first{margin-inline-start:calc(var(--v-slider-tick-size) + 1px)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label{transform:translate(0)}.v-slider.v-input--horizontal .v-slider-track__tick--last{margin-inline-start:calc(100% - var(--v-slider-tick-size) - 1px)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label{transform:translate(-100%)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label{transform:translate(100%)}.v-slider.v-input--vertical .v-slider-track{height:100%;display:flex;justify-content:center;width:calc(var(--v-slider-track-size) + 2px);touch-action:pan-x}.v-slider.v-input--vertical .v-slider-track__background{width:var(--v-slider-track-size)}.v-slider.v-input--vertical .v-slider-track__fill{width:inherit}.v-slider.v-input--vertical .v-slider-track__ticks{height:100%}.v-slider.v-input--vertical .v-slider-track__tick{margin-inline-start:calc(calc(var(--v-slider-track-size) + 2px) / 2);transform:translate(calc(var(--v-slider-tick-size) / -2),calc(var(--v-slider-tick-size) / 2))}.v-locale--is-rtl.v-slider.v-input--vertical .v-slider-track__tick,.v-locale--is-rtl .v-slider.v-input--vertical .v-slider-track__tick{transform:translate(calc(var(--v-slider-tick-size) / 2),calc(var(--v-slider-tick-size) / 2))}.v-slider.v-input--vertical .v-slider-track__tick--first{bottom:calc(0% + var(--v-slider-tick-size) + 1px)}.v-slider.v-input--vertical .v-slider-track__tick--last{bottom:calc(100% - var(--v-slider-tick-size) - 1px)}.v-slider.v-input--vertical .v-slider-track__tick .v-slider-track__tick-label{margin-inline-start:calc(var(--v-slider-track-size) / 2 + 12px);transform:translateY(-50%)}.v-slider-track__ticks--always-show .v-slider-track__tick,.v-slider--focused .v-slider-track__tick{opacity:1}.v-slider-track__background--opacity{opacity:.38}.v-combobox .v-field .v-text-field__prefix,.v-combobox .v-field .v-text-field__suffix,.v-combobox .v-field .v-field__input,.v-combobox .v-field.v-field{cursor:text}.v-combobox .v-field .v-field__input>input{flex:1 1}.v-combobox .v-field input{min-width:64px}.v-combobox .v-field:not(.v-field--focused) input{min-width:0}.v-combobox .v-field--dirty .v-combobox__selection{margin-inline-end:2px}.v-combobox .v-combobox__selection-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-combobox__content{overflow:hidden}.v-combobox__content{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-combobox__content{border-radius:4px}.v-combobox__mask{background:rgb(var(--v-theme-surface-light))}.v-combobox__selection{display:inline-flex;align-items:center;height:1.5rem;letter-spacing:inherit;line-height:inherit;max-width:calc(100% - 4px)}.v-combobox__selection:first-child{margin-inline-start:0}.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating{top:0}.v-combobox--selecting-index .v-combobox__selection{opacity:var(--v-medium-emphasis-opacity)}.v-combobox--selecting-index .v-combobox__selection--selected{opacity:1}.v-combobox--selecting-index .v-field__input>input{caret-color:transparent}.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input{flex:1 1;position:absolute;left:0;right:0;width:100%;padding-inline:inherit}.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input{transition:none}.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input{opacity:0}.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection{opacity:0}.v-combobox__menu-icon{margin-inline-start:4px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-combobox--active-menu .v-combobox__menu-icon{opacity:var(--v-high-emphasis-opacity);transform:rotate(180deg)}.v-data-table{width:100%}.v-data-table__table{width:100%;border-collapse:separate;border-spacing:0}.v-data-table__tr--focus{border:1px dotted black}.v-data-table__tr--clickable{cursor:pointer}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--align-end,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--align-end,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--align-end,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--align-end{text-align:end}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--align-end .v-data-table-header__content,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--align-end .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--align-end .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--align-end .v-data-table-header__content{flex-direction:row-reverse}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--align-center,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--align-center,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--align-center,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--align-center{text-align:center}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--align-center .v-data-table-header__content,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--align-center .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--align-center .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--align-center .v-data-table-header__content{justify-content:center}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--no-padding,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--no-padding,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--no-padding,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--no-padding{padding:0 8px}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--nowrap,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--nowrap,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--nowrap,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--nowrap{text-overflow:ellipsis;text-wrap:nowrap;overflow:hidden}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--nowrap .v-data-table-header__content,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--nowrap .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--nowrap .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--nowrap .v-data-table-header__content{display:contents}.v-data-table .v-table__wrapper>table>thead>tr>th,.v-data-table .v-table__wrapper>table tbody>tr>th{align-items:center}.v-data-table .v-table__wrapper>table>thead>tr>th.v-data-table__th--fixed,.v-data-table .v-table__wrapper>table tbody>tr>th.v-data-table__th--fixed{position:sticky}.v-data-table .v-table__wrapper>table>thead>tr>th.v-data-table__th--sortable:hover,.v-data-table .v-table__wrapper>table tbody>tr>th.v-data-table__th--sortable:hover{cursor:pointer;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-data-table .v-table__wrapper>table>thead>tr>th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon,.v-data-table .v-table__wrapper>table tbody>tr>th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon{opacity:0}.v-data-table .v-table__wrapper>table>thead>tr>th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon,.v-data-table .v-table__wrapper>table tbody>tr>th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon{opacity:.5}.v-data-table .v-table__wrapper>table>thead>tr.v-data-table__tr--mobile>td,.v-data-table .v-table__wrapper>table tbody>tr.v-data-table__tr--mobile>td{height:fit-content}.v-data-table-column--fixed,.v-data-table__th--sticky{background:rgb(var(--v-theme-surface));position:sticky!important;left:0;z-index:1}.v-data-table-column--last-fixed{border-right:1px solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-data-table.v-table--fixed-header>.v-table__wrapper>table>thead>tr>th.v-data-table-column--fixed{z-index:2}.v-data-table-group-header-row td{background:rgba(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface))}.v-data-table-group-header-row td>span{padding-left:5px}.v-data-table--loading .v-data-table__td{opacity:var(--v-disabled-opacity)}.v-data-table-group-header-row__column{padding-left:calc(var(--v-data-table-group-header-row-depth) * 16px)!important}.v-data-table-header__content{display:flex;align-items:center}.v-data-table-header__sort-badge{display:inline-flex;justify-content:center;align-items:center;font-size:.875rem;padding:4px;border-radius:50%;background:rgba(var(--v-border-color),var(--v-border-opacity));min-width:20px;min-height:20px;width:20px;height:20px}.v-data-table-progress>th{border:none!important;height:auto!important;padding:0!important}.v-data-table-progress__loader{position:relative}.v-data-table-rows-loading,.v-data-table-rows-no-data{text-align:center}.v-data-table__tr--mobile>.v-data-table__td--expanded-row{grid-template-columns:0;justify-content:center}.v-data-table__tr--mobile>.v-data-table__td--select-row{grid-template-columns:0;justify-content:end}.v-data-table__tr--mobile>td{align-items:center;column-gap:4px;display:grid;grid-template-columns:repeat(2,1fr);min-height:var(--v-table-row-height)}.v-data-table__tr--mobile>td:not(:last-child){border-bottom:0!important}.v-data-table__td-title{font-weight:500;text-align:left}.v-data-table__td-value{text-align:right}.v-data-table__td-sort-icon{color:rgba(var(--v-theme-on-surface),var(--v-disabled-opacity))}.v-data-table__td-sort-icon-active{color:rgba(var(--v-theme-on-surface))}.v-data-table-footer{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:8px 4px}.v-data-table-footer__items-per-page{align-items:center;display:flex;justify-content:center}.v-data-table-footer__items-per-page>span{padding-inline-end:8px}.v-data-table-footer__items-per-page>.v-select{width:90px}.v-data-table-footer__info{display:flex;justify-content:flex-end;min-width:116px;padding:0 16px}.v-data-table-footer__paginationz{align-items:center;display:flex;margin-inline-start:16px}.v-data-table-footer__page{padding:0 8px}.v-pagination__list{display:inline-flex;list-style-type:none;justify-content:center;width:100%}.v-pagination__item,.v-pagination__first,.v-pagination__prev,.v-pagination__next,.v-pagination__last{margin:.3rem}.v-table{font-size:.875rem;transition-duration:.28s;transition-property:box-shadow,opacity,background,height;transition-timing-function:cubic-bezier(.4,0,.2,1)}.v-table{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-table .v-table-divider{border-right:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table .v-table__wrapper>table>thead>tr>th{border-bottom:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table .v-table__wrapper>table>tbody>tr:not(:last-child)>td,.v-table .v-table__wrapper>table>tbody>tr:not(:last-child)>th{border-bottom:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table .v-table__wrapper>table>tfoot>tr>td,.v-table .v-table__wrapper>table>tfoot>tr>th{border-top:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table.v-table--hover>.v-table__wrapper>table>tbody>tr>td{position:relative}.v-table.v-table--hover>.v-table__wrapper>table>tbody>tr:hover>td:after{background:rgba(var(--v-border-color),var(--v-hover-opacity));pointer-events:none}.v-table.v-table--hover>.v-table__wrapper>table>tbody>tr:hover>td:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-table.v-table--fixed-header>.v-table__wrapper>table>thead>tr>th{background:rgb(var(--v-theme-surface));box-shadow:inset 0 -1px 0 rgba(var(--v-border-color),var(--v-border-opacity));z-index:1}.v-table.v-table--fixed-footer>tfoot>tr>th,.v-table.v-table--fixed-footer>tfoot>tr>td{background:rgb(var(--v-theme-surface));box-shadow:inset 0 1px 0 rgba(var(--v-border-color),var(--v-border-opacity))}.v-table{border-radius:inherit;line-height:1.5;max-width:100%;display:flex;flex-direction:column}.v-table>.v-table__wrapper>table{width:100%;border-spacing:0}.v-table>.v-table__wrapper>table>tbody>tr>td,.v-table>.v-table__wrapper>table>tbody>tr>th,.v-table>.v-table__wrapper>table>thead>tr>td,.v-table>.v-table__wrapper>table>thead>tr>th,.v-table>.v-table__wrapper>table>tfoot>tr>td,.v-table>.v-table__wrapper>table>tfoot>tr>th{padding:0 16px;transition-duration:.28s;transition-property:box-shadow,opacity,background,height;transition-timing-function:cubic-bezier(.4,0,.2,1)}.v-table>.v-table__wrapper>table>tbody>tr>td,.v-table>.v-table__wrapper>table>thead>tr>td,.v-table>.v-table__wrapper>table>tfoot>tr>td{height:var(--v-table-row-height)}.v-table>.v-table__wrapper>table>tbody>tr>th,.v-table>.v-table__wrapper>table>thead>tr>th,.v-table>.v-table__wrapper>table>tfoot>tr>th{height:var(--v-table-header-height);font-weight:500;-webkit-user-select:none;user-select:none;text-align:start}.v-table--density-default{--v-table-header-height: 56px;--v-table-row-height: 52px}.v-table--density-comfortable{--v-table-header-height: 48px;--v-table-row-height: 44px}.v-table--density-compact{--v-table-header-height: 40px;--v-table-row-height: 36px}.v-table__wrapper{border-radius:inherit;overflow:auto;flex:1 1 auto}.v-table--has-top>.v-table__wrapper>table>tbody>tr:first-child:hover>td:first-child{border-top-left-radius:0}.v-table--has-top>.v-table__wrapper>table>tbody>tr:first-child:hover>td:last-child{border-top-right-radius:0}.v-table--has-bottom>.v-table__wrapper>table>tbody>tr:last-child:hover>td:first-child{border-bottom-left-radius:0}.v-table--has-bottom>.v-table__wrapper>table>tbody>tr:last-child:hover>td:last-child{border-bottom-right-radius:0}.v-table--fixed-height>.v-table__wrapper{overflow-y:auto}.v-table--fixed-header>.v-table__wrapper>table>thead{position:sticky;top:0;z-index:2}.v-table--fixed-header>.v-table__wrapper>table>thead>tr>th{border-bottom:0px!important}.v-table--fixed-footer>.v-table__wrapper>table>tfoot>tr{position:sticky;bottom:0;z-index:1}.v-table--fixed-footer>.v-table__wrapper>table>tfoot>tr>td,.v-table--fixed-footer>.v-table__wrapper>table>tfoot>tr>th{border-top:0px!important}.v-container{width:100%;padding:16px;margin-right:auto;margin-left:auto}@media (min-width: 960px){.v-container{max-width:900px}}@media (min-width: 1280px){.v-container{max-width:1200px}}@media (min-width: 1920px){.v-container{max-width:1800px}}@media (min-width: 2560px){.v-container{max-width:2400px}}.v-container--fluid{max-width:100%}.v-container.fill-height{align-items:center;display:flex;flex-wrap:wrap}.v-row{display:flex;flex-wrap:wrap;flex:1 1 auto;margin:-12px}.v-row+.v-row{margin-top:12px}.v-row+.v-row--dense{margin-top:4px}.v-row--dense{margin:-4px}.v-row--dense>.v-col,.v-row--dense>[class*=v-col-]{padding:4px}.v-row.v-row--no-gutters{margin:0}.v-row.v-row--no-gutters>.v-col,.v-row.v-row--no-gutters>[class*=v-col-]{padding:0}.v-spacer{flex-grow:1}.v-col-xxl,.v-col-xxl-auto,.v-col-xxl-12,.v-col-xxl-11,.v-col-xxl-10,.v-col-xxl-9,.v-col-xxl-8,.v-col-xxl-7,.v-col-xxl-6,.v-col-xxl-5,.v-col-xxl-4,.v-col-xxl-3,.v-col-xxl-2,.v-col-xxl-1,.v-col-xl,.v-col-xl-auto,.v-col-xl-12,.v-col-xl-11,.v-col-xl-10,.v-col-xl-9,.v-col-xl-8,.v-col-xl-7,.v-col-xl-6,.v-col-xl-5,.v-col-xl-4,.v-col-xl-3,.v-col-xl-2,.v-col-xl-1,.v-col-lg,.v-col-lg-auto,.v-col-lg-12,.v-col-lg-11,.v-col-lg-10,.v-col-lg-9,.v-col-lg-8,.v-col-lg-7,.v-col-lg-6,.v-col-lg-5,.v-col-lg-4,.v-col-lg-3,.v-col-lg-2,.v-col-lg-1,.v-col-md,.v-col-md-auto,.v-col-md-12,.v-col-md-11,.v-col-md-10,.v-col-md-9,.v-col-md-8,.v-col-md-7,.v-col-md-6,.v-col-md-5,.v-col-md-4,.v-col-md-3,.v-col-md-2,.v-col-md-1,.v-col-sm,.v-col-sm-auto,.v-col-sm-12,.v-col-sm-11,.v-col-sm-10,.v-col-sm-9,.v-col-sm-8,.v-col-sm-7,.v-col-sm-6,.v-col-sm-5,.v-col-sm-4,.v-col-sm-3,.v-col-sm-2,.v-col-sm-1,.v-col,.v-col-auto,.v-col-12,.v-col-11,.v-col-10,.v-col-9,.v-col-8,.v-col-7,.v-col-6,.v-col-5,.v-col-4,.v-col-3,.v-col-2,.v-col-1{width:100%;padding:12px}.v-col{flex-basis:0;flex-grow:1;max-width:100%}.v-col-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-3{flex:0 0 25%;max-width:25%}.v-col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-6{flex:0 0 50%;max-width:50%}.v-col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-9{flex:0 0 75%;max-width:75%}.v-col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-12{flex:0 0 100%;max-width:100%}.offset-1{margin-inline-start:8.3333333333%}.offset-2{margin-inline-start:16.6666666667%}.offset-3{margin-inline-start:25%}.offset-4{margin-inline-start:33.3333333333%}.offset-5{margin-inline-start:41.6666666667%}.offset-6{margin-inline-start:50%}.offset-7{margin-inline-start:58.3333333333%}.offset-8{margin-inline-start:66.6666666667%}.offset-9{margin-inline-start:75%}.offset-10{margin-inline-start:83.3333333333%}.offset-11{margin-inline-start:91.6666666667%}@media (min-width: 600px){.v-col-sm{flex-basis:0;flex-grow:1;max-width:100%}.v-col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-sm-3{flex:0 0 25%;max-width:25%}.v-col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-sm-6{flex:0 0 50%;max-width:50%}.v-col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-sm-9{flex:0 0 75%;max-width:75%}.v-col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-sm-12{flex:0 0 100%;max-width:100%}.offset-sm-0{margin-inline-start:0}.offset-sm-1{margin-inline-start:8.3333333333%}.offset-sm-2{margin-inline-start:16.6666666667%}.offset-sm-3{margin-inline-start:25%}.offset-sm-4{margin-inline-start:33.3333333333%}.offset-sm-5{margin-inline-start:41.6666666667%}.offset-sm-6{margin-inline-start:50%}.offset-sm-7{margin-inline-start:58.3333333333%}.offset-sm-8{margin-inline-start:66.6666666667%}.offset-sm-9{margin-inline-start:75%}.offset-sm-10{margin-inline-start:83.3333333333%}.offset-sm-11{margin-inline-start:91.6666666667%}}@media (min-width: 960px){.v-col-md{flex-basis:0;flex-grow:1;max-width:100%}.v-col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-md-3{flex:0 0 25%;max-width:25%}.v-col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-md-6{flex:0 0 50%;max-width:50%}.v-col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-md-9{flex:0 0 75%;max-width:75%}.v-col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-md-12{flex:0 0 100%;max-width:100%}.offset-md-0{margin-inline-start:0}.offset-md-1{margin-inline-start:8.3333333333%}.offset-md-2{margin-inline-start:16.6666666667%}.offset-md-3{margin-inline-start:25%}.offset-md-4{margin-inline-start:33.3333333333%}.offset-md-5{margin-inline-start:41.6666666667%}.offset-md-6{margin-inline-start:50%}.offset-md-7{margin-inline-start:58.3333333333%}.offset-md-8{margin-inline-start:66.6666666667%}.offset-md-9{margin-inline-start:75%}.offset-md-10{margin-inline-start:83.3333333333%}.offset-md-11{margin-inline-start:91.6666666667%}}@media (min-width: 1280px){.v-col-lg{flex-basis:0;flex-grow:1;max-width:100%}.v-col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-lg-3{flex:0 0 25%;max-width:25%}.v-col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-lg-6{flex:0 0 50%;max-width:50%}.v-col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-lg-9{flex:0 0 75%;max-width:75%}.v-col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-lg-12{flex:0 0 100%;max-width:100%}.offset-lg-0{margin-inline-start:0}.offset-lg-1{margin-inline-start:8.3333333333%}.offset-lg-2{margin-inline-start:16.6666666667%}.offset-lg-3{margin-inline-start:25%}.offset-lg-4{margin-inline-start:33.3333333333%}.offset-lg-5{margin-inline-start:41.6666666667%}.offset-lg-6{margin-inline-start:50%}.offset-lg-7{margin-inline-start:58.3333333333%}.offset-lg-8{margin-inline-start:66.6666666667%}.offset-lg-9{margin-inline-start:75%}.offset-lg-10{margin-inline-start:83.3333333333%}.offset-lg-11{margin-inline-start:91.6666666667%}}@media (min-width: 1920px){.v-col-xl{flex-basis:0;flex-grow:1;max-width:100%}.v-col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-xl-3{flex:0 0 25%;max-width:25%}.v-col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-xl-6{flex:0 0 50%;max-width:50%}.v-col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-xl-9{flex:0 0 75%;max-width:75%}.v-col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-xl-12{flex:0 0 100%;max-width:100%}.offset-xl-0{margin-inline-start:0}.offset-xl-1{margin-inline-start:8.3333333333%}.offset-xl-2{margin-inline-start:16.6666666667%}.offset-xl-3{margin-inline-start:25%}.offset-xl-4{margin-inline-start:33.3333333333%}.offset-xl-5{margin-inline-start:41.6666666667%}.offset-xl-6{margin-inline-start:50%}.offset-xl-7{margin-inline-start:58.3333333333%}.offset-xl-8{margin-inline-start:66.6666666667%}.offset-xl-9{margin-inline-start:75%}.offset-xl-10{margin-inline-start:83.3333333333%}.offset-xl-11{margin-inline-start:91.6666666667%}}@media (min-width: 2560px){.v-col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.v-col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-xxl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-xxl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-xxl-3{flex:0 0 25%;max-width:25%}.v-col-xxl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-xxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-xxl-6{flex:0 0 50%;max-width:50%}.v-col-xxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-xxl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-xxl-9{flex:0 0 75%;max-width:75%}.v-col-xxl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-xxl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-xxl-12{flex:0 0 100%;max-width:100%}.offset-xxl-0{margin-inline-start:0}.offset-xxl-1{margin-inline-start:8.3333333333%}.offset-xxl-2{margin-inline-start:16.6666666667%}.offset-xxl-3{margin-inline-start:25%}.offset-xxl-4{margin-inline-start:33.3333333333%}.offset-xxl-5{margin-inline-start:41.6666666667%}.offset-xxl-6{margin-inline-start:50%}.offset-xxl-7{margin-inline-start:58.3333333333%}.offset-xxl-8{margin-inline-start:66.6666666667%}.offset-xxl-9{margin-inline-start:75%}.offset-xxl-10{margin-inline-start:83.3333333333%}.offset-xxl-11{margin-inline-start:91.6666666667%}}.v-expansion-panel{background-color:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-expansion-panel:not(:first-child):after{border-color:rgba(var(--v-border-color),var(--v-border-opacity))}.v-expansion-panel--disabled .v-expansion-panel-title{color:rgba(var(--v-theme-on-surface),.26)}.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay{opacity:.4615384615}.v-expansion-panels{display:flex;flex-wrap:wrap;justify-content:center;list-style-type:none;padding:0;width:100%;position:relative;z-index:1}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active){border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active){border-top-left-radius:0!important;border-top-right-radius:0!important}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active){border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active){border-top-left-radius:0!important;border-top-right-radius:0!important}.v-expansion-panels--variant-accordion>:first-child:not(:last-child){border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.v-expansion-panels--variant-accordion>:last-child:not(:first-child){border-top-left-radius:0!important;border-top-right-radius:0!important}.v-expansion-panels--variant-accordion>:last-child:not(:first-child) .v-expansion-panel-title--active{border-bottom-left-radius:initial;border-bottom-right-radius:initial}.v-expansion-panels--variant-accordion>:not(:first-child):not(:last-child){border-radius:0!important}.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay{transition:.3s border-radius cubic-bezier(.4,0,.2,1)}.v-expansion-panel{flex:1 0 100%;max-width:100%;position:relative;transition:.3s all cubic-bezier(.4,0,.2,1);transition-property:margin-top,border-radius,border,max-width;border-radius:4px}.v-expansion-panel:not(:first-child):after{border-top-style:solid;border-top-width:thin;content:"";left:0;position:absolute;right:0;top:0;transition:.3s opacity cubic-bezier(.4,0,.2,1)}.v-expansion-panel--disabled .v-expansion-panel-title{pointer-events:none}.v-expansion-panel--active:not(:first-child),.v-expansion-panel--active+.v-expansion-panel{margin-top:16px}.v-expansion-panel--active:not(:first-child):after,.v-expansion-panel--active+.v-expansion-panel:after{opacity:0}.v-expansion-panel--active>.v-expansion-panel-title{border-bottom-left-radius:0;border-bottom-right-radius:0}.v-expansion-panel--active>.v-expansion-panel-title:not(.v-expansion-panel-title--static){min-height:31px}.v-expansion-panel__shadow{border-radius:inherit;z-index:-1}.v-expansion-panel__shadow{position:absolute;top:0;left:0;width:100%;height:100%}.v-expansion-panel__shadow{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-expansion-panel-title{align-items:center;text-align:start;border-radius:inherit;display:flex;font-size:.9375rem;line-height:1;min-height:31px;outline:none;padding:8px 24px;position:relative;transition:.3s min-height cubic-bezier(.4,0,.2,1);width:100%;justify-content:space-between}.v-expansion-panel-title:hover>.v-expansion-panel-title__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-expansion-panel-title:focus-visible>.v-expansion-panel-title__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-expansion-panel-title:focus>.v-expansion-panel-title__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-expansion-panel-title__overlay{background-color:currentColor;border-radius:inherit;opacity:0}.v-expansion-panel-title__overlay{position:absolute;top:0;left:0;width:100%;height:100%}.v-expansion-panel-title__icon{display:inline-flex;margin-bottom:-4px;margin-top:-4px;-webkit-user-select:none;user-select:none;margin-inline-start:auto}.v-expansion-panel-text{display:flex}.v-expansion-panel-text__wrapper{padding:8px 24px 16px;flex:1 1 auto;max-width:100%}.v-expansion-panels--variant-accordion>.v-expansion-panel{margin-top:0}.v-expansion-panels--variant-accordion>.v-expansion-panel:after{opacity:1}.v-expansion-panels--variant-popout>.v-expansion-panel{max-width:calc(100% - 32px)}.v-expansion-panels--variant-popout>.v-expansion-panel--active{max-width:calc(100% + 16px)}.v-expansion-panels--variant-inset>.v-expansion-panel{max-width:100%}.v-expansion-panels--variant-inset>.v-expansion-panel--active{max-width:calc(100% - 32px)}.v-expansion-panels--flat>.v-expansion-panel:after{border-top:none}.v-expansion-panels--flat>.v-expansion-panel .v-expansion-panel__shadow{display:none}.v-expansion-panels--tile{border-radius:0}.v-expansion-panels--tile>.v-expansion-panel{border-radius:0}.v-footer{align-items:center;display:flex;flex:1 1 auto;padding:8px 16px;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);transition-property:height,width,transform,max-width,left,right,top,bottom}.v-footer{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-footer--border{border-width:thin;box-shadow:none}.v-footer{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-footer--absolute{position:absolute}.v-footer--fixed{position:fixed}.v-footer{border-radius:0}.v-footer{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-footer--rounded{border-radius:4px}.v-main{flex:1 0 auto;max-width:100%;transition:.2s cubic-bezier(.4,0,.2,1);padding-left:var(--v-layout-left);padding-right:var(--v-layout-right);padding-top:var(--v-layout-top);padding-bottom:var(--v-layout-bottom)}.v-main__scroller{max-width:100%;position:relative}.v-main--scrollable{display:flex}.v-main--scrollable{position:absolute;top:0;left:0;width:100%;height:100%}.v-main--scrollable>.v-main__scroller{flex:1 1 auto;overflow-y:auto;--v-layout-left: 0px;--v-layout-right: 0px;--v-layout-top: 0px;--v-layout-bottom: 0px}.v-navigation-drawer{-webkit-overflow-scrolling:touch;background:rgb(var(--v-theme-surface));display:flex;flex-direction:column;height:100%;max-width:100%;pointer-events:auto;transition-duration:.2s;transition-property:box-shadow,transform,visibility,width,height,left,right,top,bottom;transition-timing-function:cubic-bezier(.4,0,.2,1);position:absolute}.v-navigation-drawer{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-navigation-drawer--border{border-width:thin;box-shadow:none}.v-navigation-drawer{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-navigation-drawer{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-navigation-drawer--rounded{border-radius:4px}.v-navigation-drawer--top,.v-navigation-drawer--bottom{max-height:-webkit-fill-available;overflow-y:auto}.v-navigation-drawer--top{top:0;border-bottom-width:thin}.v-navigation-drawer--bottom{left:0;border-top-width:thin}.v-navigation-drawer--left{top:0;left:0;right:auto;border-right-width:thin}.v-navigation-drawer--right{top:0;left:auto;right:0;border-left-width:thin}.v-navigation-drawer--floating{border:none}.v-navigation-drawer--temporary.v-navigation-drawer--active{box-shadow:0 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-navigation-drawer--sticky{height:auto;transition:box-shadow,transform,visibility,width,height,left,right}.v-navigation-drawer .v-list{overflow:hidden}.v-navigation-drawer__content{flex:0 1 auto;height:100%;max-width:100%;overflow-x:hidden;overflow-y:auto}.v-navigation-drawer__img{height:100%;left:0;position:absolute;top:0;width:100%;z-index:-1}.v-navigation-drawer__img img:not(.v-img__img){height:inherit;object-fit:cover;width:inherit}.v-navigation-drawer__scrim{position:absolute;top:0;left:0;width:100%;height:100%;background:black;opacity:.2;transition:opacity .2s cubic-bezier(.4,0,.2,1);z-index:1}.v-navigation-drawer__prepend,.v-navigation-drawer__append{flex:none;overflow:hidden}.v-snackbar{justify-content:center;z-index:10000;margin:8px;margin-inline-end:calc(8px + var(--v-scrollbar-offset));padding:var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left)}.v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top){align-items:flex-end}.v-snackbar__wrapper{align-items:center;display:flex;max-width:672px;min-height:48px;min-width:344px;overflow:hidden;padding:0}.v-snackbar__wrapper{border-radius:4px}.v-snackbar--variant-plain,.v-snackbar--variant-outlined,.v-snackbar--variant-text,.v-snackbar--variant-tonal{background:transparent;color:inherit}.v-snackbar--variant-plain{opacity:.62}.v-snackbar--variant-plain:focus,.v-snackbar--variant-plain:hover{opacity:1}.v-snackbar--variant-plain .v-snackbar__overlay{display:none}.v-snackbar--variant-elevated,.v-snackbar--variant-flat{background:rgb(var(--v-theme-surface-variant));color:rgb(var(--v-theme-on-surface-variant))}.v-snackbar--variant-elevated{box-shadow:0 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 6px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 18px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-snackbar--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-snackbar--variant-outlined{border:thin solid currentColor}.v-snackbar--variant-text .v-snackbar__overlay{background:currentColor}.v-snackbar--variant-tonal .v-snackbar__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-snackbar .v-snackbar__underlay{position:absolute}.v-snackbar__content{flex-grow:1;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;line-height:1.425;margin-right:auto;padding:14px 16px;text-align:initial}.v-snackbar__actions{align-items:center;align-self:center;display:flex;margin-inline-end:8px}.v-snackbar__actions>.v-btn{padding:0 8px;min-width:auto}.v-snackbar__timer{width:100%;position:absolute;top:0}.v-snackbar__timer .v-progress-linear{transition:.2s linear}.v-snackbar--absolute{position:absolute;z-index:1}.v-snackbar--multi-line .v-snackbar__wrapper{min-height:68px}.v-snackbar--vertical .v-snackbar__wrapper{flex-direction:column}.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{align-self:flex-end;margin-bottom:8px}.v-snackbar--center{align-items:center;justify-content:center}.v-snackbar--top{align-items:flex-start}.v-snackbar--bottom{align-items:flex-end}.v-snackbar--left,.v-snackbar--start{justify-content:flex-start}.v-snackbar--right,.v-snackbar--end{justify-content:flex-end}.v-snackbar-transition-enter-active,.v-snackbar-transition-leave-active{transition-duration:.15s;transition-timing-function:cubic-bezier(0,0,.2,1)}.v-snackbar-transition-enter-active{transition-property:opacity,transform}.v-snackbar-transition-enter-from{opacity:0;transform:scale(.8)}.v-snackbar-transition-leave-active{transition-property:opacity}.v-snackbar-transition-leave-to{opacity:0}.v-switch .v-label{padding-inline-start:10px}.v-switch__loader{display:flex}.v-switch__loader .v-progress-circular{color:rgb(var(--v-theme-surface))}.v-switch__track,.v-switch__thumb{transition:none}.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb{background-color:rgb(var(--v-theme-error));color:rgb(var(--v-theme-on-error))}.v-switch__track-true{margin-inline-end:auto}.v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true{opacity:0}.v-switch__track-false{margin-inline-start:auto}.v-selection-control--dirty .v-switch__track-false{opacity:0}.v-switch__track{display:inline-flex;align-items:center;font-size:.5rem;padding:0 5px;background-color:rgb(var(--v-theme-surface-variant));border-radius:9999px;height:14px;opacity:.6;min-width:36px;cursor:pointer;transition:.2s background-color cubic-bezier(.4,0,.2,1)}.v-switch--inset .v-switch__track{border-radius:9999px;font-size:.75rem;height:32px;min-width:52px}.v-switch__thumb{align-items:center;background-color:rgb(var(--v-theme-surface-bright));color:rgb(var(--v-theme-on-surface-bright));border-radius:50%;display:flex;font-size:.75rem;height:20px;justify-content:center;width:20px;pointer-events:none;transition:.15s .05s transform cubic-bezier(0,0,.2,1),.2s color cubic-bezier(.4,0,.2,1),.2s background-color cubic-bezier(.4,0,.2,1);position:relative;overflow:hidden}.v-switch:not(.v-switch--inset) .v-switch__thumb{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb{background:rgb(var(--v-theme-surface-variant));color:rgb(var(--v-theme-on-surface-variant))}.v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-switch--inset .v-switch__thumb{height:24px;width:24px;transform:scale(.6666666667)}.v-switch--inset .v-switch__thumb--filled{transform:none}.v-switch--inset .v-selection-control--dirty .v-switch__thumb{transform:none;transition:.15s .05s transform cubic-bezier(0,0,.2,1)}.v-switch.v-input{flex:0 1 auto}.v-switch .v-selection-control{min-height:var(--v-input-control-height)}.v-switch .v-selection-control__input{border-radius:50%;transition:.2s transform cubic-bezier(.4,0,.2,1);position:absolute}.v-locale--is-ltr.v-switch .v-selection-control__input,.v-locale--is-ltr .v-switch .v-selection-control__input{transform:translate(-10px)}.v-locale--is-rtl.v-switch .v-selection-control__input,.v-locale--is-rtl .v-switch .v-selection-control__input{transform:translate(10px)}.v-switch .v-selection-control__input .v-icon{position:absolute}.v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input,.v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input{transform:translate(10px)}.v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input,.v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input{transform:translate(-10px)}.v-switch.v-switch--indeterminate .v-selection-control__input{transform:scale(.8)}.v-switch.v-switch--indeterminate .v-switch__thumb{transform:scale(.75);box-shadow:none}.v-switch.v-switch--inset .v-selection-control__wrapper{width:auto}.v-switch.v-input--vertical .v-label{min-width:max-content}.v-switch.v-input--vertical .v-selection-control__wrapper{transform:rotate(-90deg)}@media (forced-colors: active){.v-switch .v-switch__loader .v-progress-circular{color:currentColor}.v-switch .v-switch__thumb{background-color:buttontext}.v-switch .v-switch__track,.v-switch .v-switch__thumb{border:1px solid;color:buttontext}.v-switch:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb{background-color:highlight}.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track{background-color:highlight}.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track,.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb{color:highlight}.v-switch.v-switch--inset .v-switch__track{border-width:2px}.v-switch.v-switch--inset:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb{background-color:highlighttext;color:highlighttext}.v-switch.v-input--disabled .v-switch__thumb{background-color:graytext}.v-switch.v-input--disabled .v-switch__track,.v-switch.v-input--disabled .v-switch__thumb{color:graytext}.v-switch.v-switch--loading .v-switch__thumb{background-color:canvas}.v-switch.v-switch--loading.v-switch--inset .v-switch__thumb,.v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb{border-width:0}}.v-textarea .v-field{--v-textarea-control-height: var(--v-input-control-height)}.v-textarea .v-field__field{--v-input-control-height: var(--v-textarea-control-height)}.v-textarea .v-field__input{flex:1 1 auto;outline:none;-webkit-mask-image:linear-gradient(to bottom,transparent,transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px),black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));mask-image:linear-gradient(to bottom,transparent,transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px),black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px))}.v-textarea .v-field__input.v-textarea__sizer{visibility:hidden;position:absolute;top:0;left:0;height:0!important;min-height:0!important;pointer-events:none}.v-textarea--no-resize .v-field__input{resize:none}.v-textarea .v-field--no-label textarea,.v-textarea .v-field--active textarea{opacity:1}.v-textarea textarea{opacity:0;flex:1;min-width:0;transition:.15s opacity cubic-bezier(.4,0,.2,1)}.v-textarea textarea:focus,.v-textarea textarea:active{outline:none}.v-textarea textarea:invalid{box-shadow:none}.v-tooltip>.v-overlay__content{background:rgb(var(--v-theme-bluegrey));color:rgb(var(--v-theme-on-surface-variant));border-radius:4px;font-size:.875rem;line-height:1.6;display:inline-block;padding:5px 16px;text-transform:initial;width:auto;opacity:1;pointer-events:none;transition-property:opacity,transform;overflow-wrap:break-word}.v-tooltip>.v-overlay__content[class*=enter-active]{transition-timing-function:cubic-bezier(0,0,.2,1);transition-duration:.15s}.v-tooltip>.v-overlay__content[class*=leave-active]{transition-timing-function:cubic-bezier(.4,0,1,1);transition-duration:75ms}.divider[data-v-c00c2563]{position:relative;height:24px}.divider__divider-line[data-v-c00c2563]{position:absolute;top:50%;width:100%;transform:translateY(-50%)}.divider__btn[data-v-c00c2563]{position:absolute;top:0;left:50%;transform:translate(-50%);opacity:1}.divider[data-v-c00c2563]:hover{cursor:pointer}.divider:hover .divider__divider-line[data-v-c00c2563]{background-color:#fff}.divider:hover .divider__btn[data-v-c00c2563]{color:#fff!important}.cell[data-v-c84bd489]{padding:18px;display:flex;margin-bottom:2px}.cell--dev[data-v-c84bd489]{margin-bottom:16px}.message-btn--alert[data-v-c84bd489]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSIjQUU5RkU4Ij48cGF0aCBkPSJNMTMuMzA1IDIyLjVMMTIgMjEuNzVMMTUgMTYuNUgxOS41QzE5Ljg5NzggMTYuNSAyMC4yNzk0IDE2LjM0MiAyMC41NjA3IDE2LjA2MDdDMjAuODQyIDE1Ljc3OTQgMjEgMTUuMzk3OCAyMSAxNVY2QzIxIDUuNjAyMTggMjAuODQyIDUuMjIwNjQgMjAuNTYwNyA0LjkzOTM0QzIwLjI3OTQgNC42NTgwNCAxOS44OTc4IDQuNSAxOS41IDQuNUg0LjVDNC4xMDIxOCA0LjUgMy43MjA2NCA0LjY1ODA0IDMuNDM5MzQgNC45MzkzNEMzLjE1ODA0IDUuMjIwNjQgMyA1LjYwMjE4IDMgNlYxNUMzIDE1LjM5NzggMy4xNTgwNCAxNS43Nzk0IDMuNDM5MzQgMTYuMDYwN0MzLjcyMDY0IDE2LjM0MiA0LjEwMjE4IDE2LjUgNC41IDE2LjVIMTEuMjVWMThINC41QzMuNzA0MzUgMTggMi45NDEyOSAxNy42ODM5IDIuMzc4NjggMTcuMTIxM0MxLjgxNjA3IDE2LjU1ODcgMS41IDE1Ljc5NTYgMS41IDE1VjZDMS41IDUuMjA0MzUgMS44MTYwNyA0LjQ0MTI5IDIuMzc4NjggMy44Nzg2OEMyLjk0MTI5IDMuMzE2MDcgMy43MDQzNSAzIDQuNSAzSDE5LjVDMjAuMjk1NiAzIDIxLjA1ODcgMy4zMTYwNyAyMS42MjEzIDMuODc4NjhDMjIuMTgzOSA0LjQ0MTI5IDIyLjUgNS4yMDQzNSAyMi41IDZWMTVDMjIuNSAxNS43OTU2IDIyLjE4MzkgMTYuNTU4NyAyMS42MjEzIDE3LjEyMTNDMjEuMDU4NyAxNy42ODM5IDIwLjI5NTYgMTggMTkuNSAxOEgxNS44N0wxMy4zMDUgMjIuNVoiIGZpbGw9IiNBRTlGRTgiLz48L3N2Zz4=);background-position:center;background-repeat:no-repeat;transition:none}.message-btn__counter[data-v-c84bd489]{margin-bottom:4px}.delete-cell[data-v-c84bd489]:hover{background-color:#6e3d41}.content[data-v-c84bd489]{flex:1;margin-left:16px;margin-right:0;width:calc(100% - 36px)}.indicator[data-v-c84bd489]{border-radius:4px}.header[data-v-c84bd489]{display:flex;justify-content:space-between;margin-bottom:16px}.code[data-v-c84bd489],.outcome[data-v-c84bd489]{padding:0}.code--dev[data-v-c84bd489],.outcome--dev[data-v-c84bd489]{border:1px solid rgba(var(--v-theme-bluegrey));border-radius:4px;padding:12px}.code[data-v-c84bd489]{margin-bottom:16px}.click-edit[data-v-c84bd489]{width:calc(100% - 135px)}.click-edit__name[data-v-c84bd489]{cursor:text;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.click-edit__show-text[data-v-c84bd489],.click-edit__edit-field-wrapper[data-v-c84bd489]{height:100%;display:flex;align-items:center}.click-edit__name[data-v-c84bd489]:hover{cursor:text;padding-left:3px;padding-right:3px;border:1px solid #294455}.click-edit__static-name[data-v-c84bd489]{cursor:text;font-weight:400;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.click-edit__edit-field[data-v-c84bd489]{margin-top:-11px}.click-edit__edit-field[data-v-c84bd489] .v-field__input{font-size:1rem;letter-spacing:normal}.app-static-name[data-v-3780137e]{cursor:text;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}[data-v-3780137e] .plot-container{overflow:auto}.markdown-content[data-v-d5250b54]{font-family:Arial,sans-serif;line-height:1.6;color:#fff}.markdown-content h1[data-v-d5250b54],h2[data-v-d5250b54],h3[data-v-d5250b54],h4[data-v-d5250b54],h5[data-v-d5250b54],h6[data-v-d5250b54]{margin-top:1.5em;margin-bottom:.5em;font-weight:700;line-height:1.3}.markdown-content p[data-v-d5250b54]{margin-top:0;margin-bottom:1em}.markdown-content ul[data-v-d5250b54],ol[data-v-d5250b54]{padding-left:20px;margin-top:.5em;margin-bottom:.5em}.markdown-content ul[data-v-d5250b54]{list-style-type:disc}.markdown-content ol[data-v-d5250b54]{list-style-type:decimal}.markdown-content li[data-v-d5250b54]{margin-bottom:.25em}.markdown-content a[data-v-d5250b54]{color:#007bff;text-decoration:none}.markdown-content a[data-v-d5250b54]:hover{text-decoration:underline}.markdown-content img[data-v-d5250b54]{max-width:100%;height:auto}.markdown-content blockquote[data-v-d5250b54]{margin:0;padding-left:1em;color:#6a737d;border-left:.25em solid #dfe2e5}.tox{box-shadow:none;box-sizing:content-box;color:#2a3746;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox *:not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox *:not(svg):not(rect){background:transparent;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:1px solid #000000;border-radius:0;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#222f3e;border:1px solid #000000;border-radius:0;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;z-index:1300}.tox-tinymce *:focus,.tox-tinymce-aux *:focus{outline:none}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:3px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:#1e71aa66;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#207ab7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus{background-color:#1c6ca1}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#185d8c}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:#ffa50080;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus{background-color:#f2d574;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:#cc000080;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus{background-color:#e9a4a4;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:#78ab4680;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>*:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>*:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>*:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .mce-codemirror{background:#fff;bottom:0;font-size:13px;left:0;position:absolute;right:0;top:0;z-index:1}.tox .mce-codemirror.tox-inline-codemirror{margin:8px;position:absolute}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#000;border-radius:0;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar,.tox .tox-bottom-anchorbar,.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#207ab7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#207ab7;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:none;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button:before{border-radius:3px;bottom:-1px;box-shadow:inset 0 0 0 1px #fff,0 0 0 2px #207ab7;content:"";left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#207ab7;background-image:none;border-color:#207ab7;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:focus:not(:disabled):before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#114060;background-image:none;border-color:#114060;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#3d546f;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#3d546f;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;color:#fff;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:none;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#3d546f;background-image:none;border-color:#3d546f;box-shadow:none;color:#ffffff80}.tox .tox-button--secondary:focus:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:hover:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:active:not(:disabled){background-color:#2b3b4e;background-image:none;border-color:#2b3b4e;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled{background-color:#346085;background-image:none;border-color:#346085;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#346085;background-image:none;border-color:#346085;box-shadow:none;color:#ffffff80}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#2d5373;background-image:none;border-color:#2d5373;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#2d5373;background-image:none;border-color:#2d5373;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#264560;background-image:none;border-color:#264560;box-shadow:none;color:#fff}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked[disabled]{background-color:#3d546f;border-color:#3d546f;box-shadow:none;color:#ffffff80}.tox .tox-button--naked:hover:not(:disabled){background-color:#34485f;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--naked:focus:not(:disabled){background-color:#34485f;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--naked:active:not(:disabled){background-color:#2b3b4e;border-color:#2b3b4e;box-shadow:none;color:#fff}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#fff}.tox .tox-checkbox{align-items:center;border-radius:3px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:3px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:3px;width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:#fff3}@media (forced-colors: active){.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:currentColor!important}}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#207ab7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#207ab7}.tox .tox-checkbox--disabled{color:#ffffff80;cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:#ffffff80}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:#ffffff80}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:#ffffff80}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:3px;box-shadow:inset 0 0 0 1px #207ab7;padding:3px}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#1a1a1a;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#333;color:#fff;cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#fff;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item,.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#2b3b4e;color:#fff}.tox .tox-collection--list .tox-collection__item--active{background-color:#4a5562}.tox .tox-collection--toolbar .tox-collection__item--enabled,.tox .tox-collection--toolbar .tox-collection__item--enabled.tox-collection__item--active,.tox .tox-collection--toolbar .tox-collection__item--enabled.tox-collection__item--active:hover{background-color:#757d87;color:#fff}@media (forced-colors: active){.tox .tox-collection--toolbar .tox-collection__item--enabled,.tox .tox-collection--toolbar .tox-collection__item--enabled.tox-collection__item--active,.tox .tox-collection--toolbar .tox-collection__item--enabled.tox-collection__item--active:hover{border-radius:3px;outline:solid 1px}}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#2b3b4e;position:relative}.tox .tox-collection--toolbar .tox-collection__item--active:hover{background-color:#4a5562;color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active:focus{background-color:#4a5562;color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-collection--toolbar .tox-collection__item--active:focus:after{border:2px solid highlight}}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#757d87;color:#fff}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#4a5562;color:#fff;position:relative;z-index:1}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent "inset";content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus:after{border:2px solid highlight}}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}@media (forced-colors: active){.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){border:solid 1px}}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}@media (forced-colors: active){.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):hover{border-radius:3px;outline:solid 1px}}.tox .tox-collection__item-icon,.tox .tox-collection__item-checkmark{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-icon svg,.tox .tox-collection__item-checkmark svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:currentColor;display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret:after{content:"";font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:currentColor}.tox .tox-collection__item--state-disabled{background-color:transparent;color:#ffffff80;cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:#ffffff80}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#2b3b4e;border:1px solid #1a1a1a;border-radius:3px;box-shadow:0 0 2px #2a374633,0 4px 8px #2a374626;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:34px;margin:3px 0 2px;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid #000000}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>*:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid #000000}.tox[dir=rtl] .tox-collection--list .tox-collection__item>*:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}@media (forced-colors: active){.tox .tox-hue-slider,.tox .tox-rgb-form .tox-rgba-preview{background-color:currentColor!important;border:1px solid highlight!important;forced-color-adjust:none}}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:none;border:1px solid black;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid white;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,#f00,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,#f00);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:white;border:1px solid black;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid black;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette,.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__primary .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches{margin:2px 0 3px 4px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px 0}.tox .tox-swatches__row{display:flex}@media (forced-colors: active){.tox .tox-swatches__row{forced-color-adjust:none}}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:hover,.tox .tox-swatch:focus{box-shadow:0 0 0 1px #7f7f7f4d inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:none;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#fff;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#4a5562}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#fff;height:24px;margin:3px;width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#2b3b4e;position:relative}.tox .tox-comment-thread>*:not(:first-child){margin-top:8px}.tox .tox-comment{background:#2b3b4e;border:1px solid #000000;border-radius:3px;box-shadow:0 4px 8px #2a37461a;padding:8px 8px 16px;position:relative}.tox .tox-comment__header{align-items:center;color:#fff;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#fff;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#fff;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:#ffffff80;font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay:after{background:#2b3b4e;bottom:0;content:"";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>*:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient:after{background:linear-gradient(rgba(43,59,78,0),#2b3b4e);bottom:0;content:"";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#2b3b4e;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#fff;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#2b3b4e;box-shadow:0 0 8px 8px #2b3b4e;color:#fff;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#2b3b4e;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>*:last-child,.tox:not([dir=rtl]) .tox-comment__edit>*:last-child,.tox:not([dir=rtl]) .tox-comment__reply>*:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>*:last-child,.tox[dir=rtl] .tox-comment__edit>*:last-child,.tox[dir=rtl] .tox-comment__reply>*:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:#ffffff80}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#fff;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar svg,.tox:not([dir=rtl]) .tox-user__avatar img{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar svg,.tox[dir=rtl] .tox-user__avatar img{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:#222f3ebf;bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#222f3e}.tox .tox-dialog{background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:0 16px 16px -10px #2a374626,0 0 40px 1px #2a374626;display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 16px);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#2b3b4e;border-bottom:none;color:#fff;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#fff;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px}@media only screen and (min-width: 768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:#ffffff80;display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:#207ab71a}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #207ab7;color:#207ab7}@media (forced-colors: active){.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid highlight;color:highlight}}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>*:first-child{margin-top:0}.tox .tox-dialog__body-content>*:last-child{margin-bottom:0}.tox .tox-dialog__body-content>*:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#207ab7;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:hover,.tox .tox-dialog__body-content a:focus{color:#114060;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #207ab7;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#092335;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#fff}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content ul,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content dd{padding-inline-start:2.5rem}.tox .tox-dialog__body-content ul,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content dl{margin-bottom:16px}.tox .tox-dialog__body-content ul,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dt{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#fff;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#fff;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#2b3b4e;border-top:1px solid #000000;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-start,.tox .tox-dialog__footer-end{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:#222f3ebf;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #000000}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered:before{border:1px solid #000000;border-radius:3px;content:"";top:0;right:0;bottom:0;left:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered iframe{border-radius:3px}.tox .tox-navobj-bordered-focus.tox-navobj-bordered:before{border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #000000;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:#ffffff80;margin:0 0 16px}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area:before{border:0 solid transparent;border-radius:4px;content:"";top:0;right:0;bottom:0;left:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}@media (forced-colors: active){.tox .tox-edit-area:before{border:0 solid highlight}}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area:before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #000000}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#222f3e;border-bottom:none;box-shadow:none;padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #000000;box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#222f3e;box-shadow:0 4px 4px -3px #00000040;padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px #00000040}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:none;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-custom-preview{border-color:#000;border-radius:3px;border-style:solid;border-width:1px;flex:1;padding:8px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:#2a374633;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}@media (forced-colors: active){.tox .tox-color-input span{border-color:currentColor;border-width:2px!important;forced-color-adjust:none}}.tox .tox-color-input span:hover:not([aria-disabled=true]),.tox .tox-color-input span:focus:not([aria-disabled=true]){border-color:#207ab7;cursor:pointer}.tox .tox-color-input span:before{background-image:linear-gradient(45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(255,255,255,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(255,255,255,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #2b3b4e;border-radius:3px;box-sizing:border-box;content:"";height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}@media (forced-colors: active){.tox .tox-color-input span:before{border:none}}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:#ffffff80;display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - 4px)}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - 4px)}.tox .tox-form__controls-h-stack,.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>*:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>*:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-textfield,.tox .tox-toolbar-textfield,.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:none;padding:5px 4.75px;resize:none;width:100%}.tox .tox-textfield[disabled],.tox .tox-textarea[disabled]{background-color:#222f3e;color:#ffffffd9;cursor:not-allowed}.tox .tox-textfield:focus,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-custom-editor:focus-within{background-color:#2b3b4e;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#207ab7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#fff}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#19232e;color:#ffffffd9;cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#fff}@media (forced-colors: active){.tox .tox-listbox__select-chevron svg{fill:currentColor!important}}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:none;padding:5px 4.75px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#19232e;color:#ffffffd9;cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#2b3b4e;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size="0"],.tox:not([dir=rtl]) .tox-selectfield select[size="1"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size="0"],.tox[dir=rtl] .tox-selectfield select[size="1"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#000;border-radius:3px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox.tox-tinymce.tox-fullscreen,.tox-shadowhost.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:black;filter:alpha(opacity=50);opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid white;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{background-color:#222f3e;display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:#000;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:0 -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:#207ab780;border-color:#207ab780}@media (forced-colors: active){.tox .tox-insert-table-picker .tox-insert-table-picker__selected{border-color:Highlight;filter:contrast(50%)}}.tox .tox-insert-table-picker__label{color:#fff;display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#2b3b4e;border:1px solid #000000;border-radius:3px;box-shadow:0 4px 8px #2a37461a;display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--toolbar,.tox .tox-menu.tox-collection.tox-collection--grid{padding:4px}@media only screen and (min-width: 768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p,.tox .tox-menu__label blockquote,.tox .tox-menu__label code{margin:0}.tox .tox-menubar{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #222f3e;background-color:#222f3e;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1 / -1;grid-row:1;padding:0 4px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #222f3e;background-color:#222f3e;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:#222f3e;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:2px 0 3px;outline:none;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:#222f3e;border:0;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#4a5562;border:0;box-shadow:none;color:#fff;position:relative;z-index:1}.tox .tox-mbtn:focus:not(:disabled):after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-mbtn:focus:not(:disabled):after{border:2px solid highlight}}.tox .tox-mbtn--active,.tox .tox-mbtn:not(:disabled).tox-mbtn--active:focus{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-left:auto;margin-right:auto;margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity .15s ease-in;width:-moz-max-content;width:max-content}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification:focus{border-color:#207ab7;box-shadow:none}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#334840;border-color:#3c5440;color:#fff}.tox .tox-notification--success p{color:#fff}.tox .tox-notification--success a{color:#b5d199}.tox .tox-notification--success a:hover,.tox .tox-notification--success a:focus{color:#82b153;text-decoration:underline}.tox .tox-notification--success a:focus-visible{border-radius:1px;outline:2px solid #b5d199;outline-offset:2px}.tox .tox-notification--success a:active{color:#689041;text-decoration:underline}.tox .tox-notification--success svg{fill:#fff}.tox .tox-notification--error{background-color:#442632;border-color:#55212b;color:#fff}.tox .tox-notification--error p{color:#fff}.tox .tox-notification--error a{color:#e68080}.tox .tox-notification--error a:hover,.tox .tox-notification--error a:focus{color:#d42b2b;text-decoration:underline}.tox .tox-notification--error a:focus-visible{border-radius:1px;outline:2px solid #e68080;outline-offset:2px}.tox .tox-notification--error a:active{color:#a22;text-decoration:underline}.tox .tox-notification--error svg{fill:#fff}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#222f3e;border-color:#000;color:#fff0b3}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#fff0b3}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#fc0}.tox .tox-notification--warn a:hover,.tox .tox-notification--warning a:hover,.tox .tox-notification--warn a:focus,.tox .tox-notification--warning a:focus{color:#997a00;text-decoration:underline}.tox .tox-notification--warn a:focus-visible,.tox .tox-notification--warning a:focus-visible{border-radius:1px;outline:2px solid #ffcc00;outline-offset:2px}.tox .tox-notification--warn a:active,.tox .tox-notification--warning a:active{color:#665200;text-decoration:underline}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#fff0b3}.tox .tox-notification--info{background-color:#254161;border-color:#264972;color:#fff}.tox .tox-notification--info p{color:#fff}.tox .tox-notification--info a{color:#83b7f3}.tox .tox-notification--info a:hover,.tox .tox-notification--info a:focus{color:#2681ea;text-decoration:underline}.tox .tox-notification--info a:focus-visible{border-radius:1px;outline:2px solid #83b7f3;outline-offset:2px}.tox .tox-notification--info a:active{color:#1368c9;text-decoration:underline}.tox .tox-notification--info svg{fill:#fff}.tox .tox-notification__body{align-self:center;color:#fff;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-notification-container-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-notification-container-dock-fadein{opacity:1;visibility:visible}.tox .tox-notification-container-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-notification-container-dock-transition.tox-notification-container-dock-fadein{transition-delay:0s}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition:before,.tox .tox-pop--transition:after{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#222f3e;border:1px solid #000000;border-radius:3px;box-shadow:0 0 2px #2a374633,0 4px 8px #2a374626;min-width:0;overflow:hidden}.tox .tox-pop__dialog>*:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop:before,.tox .tox-pop:after{border-style:solid;content:"";display:block;height:0;opacity:1;position:absolute;width:0}@media (forced-colors: active){.tox .tox-pop:before,.tox .tox-pop:after{content:none}}.tox .tox-pop.tox-pop--inset:before,.tox .tox-pop.tox-pop--inset:after{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom:before,.tox .tox-pop.tox-pop--bottom:after{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom:after{border-color:#222f3e transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom:before{border-color:#000000 transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top:before,.tox .tox-pop.tox-pop--top:after{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top:after{border-color:transparent transparent #222f3e transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top:before{border-color:transparent transparent #000000 transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left:before,.tox .tox-pop.tox-pop--left:after{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left:after{border-color:transparent #222f3e transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left:before{border-color:transparent #000000 transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right:before,.tox .tox-pop.tox-pop--right:after{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right:after{border-color:transparent transparent transparent #222f3e;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right:before{border-color:transparent transparent transparent #000000;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left:before,.tox .tox-pop.tox-pop--align-left:after{left:20px}.tox .tox-pop.tox-pop--align-right:before,.tox .tox-pop.tox-pop--align-right:after{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#222f3e;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container,.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #000000;border-radius:3px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#207ab7;border:2px solid #185d8c;border-radius:3px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translate(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:#ffffff80;border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#222f3e;border-top:1px solid #000000;color:#fff;display:flex;flex:0 0 auto;font-size:12px;font-weight:400;height:18px;overflow:hidden;padding:0 8px;position:relative;text-transform:uppercase}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between}@media only screen and (min-width: 768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width: 767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:#fff;position:relative;text-decoration:none}.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]){color:#fff;cursor:pointer}.tox .tox-statusbar a:focus-visible:after,.tox .tox-statusbar__path-item:focus-visible:after,.tox .tox-statusbar__wordcount:focus-visible:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-statusbar a:focus-visible:after,.tox .tox-statusbar__path-item:focus-visible:after,.tox .tox-statusbar__wordcount:focus-visible:after{border:2px solid highlight}}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin:3px -5px 3px 4px;padding-bottom:0;padding-left:0;padding-right:0;position:relative}.tox .tox-statusbar__resize-handle svg{display:block;fill:#ffffff80}.tox .tox-statusbar__resize-handle:hover svg,.tox .tox-statusbar__resize-handle:focus svg{fill:#fff}.tox .tox-statusbar__resize-handle:focus-visible{background-color:transparent;border-radius:1px 1px -4px;box-shadow:0 0 0 2px transparent}.tox .tox-statusbar__resize-handle:focus-visible:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-statusbar__resize-handle:focus-visible:after{border:2px solid highlight}}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:#222f3e99;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:#222f3e;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:3px 0 2px;outline:none;padding:0;text-transform:none;width:34px}@media (forced-colors: active){.tox .tox-tbtn:hover,.tox .tox-tbtn.tox-tbtn:hover{outline:1px dashed currentColor}.tox .tox-tbtn.tox-tbtn--active,.tox .tox-tbtn.tox-tbtn--enabled,.tox .tox-tbtn.tox-tbtn--enabled:hover,.tox .tox-tbtn.tox-tbtn--enabled:focus,.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){outline:1px solid currentColor;position:relative}}.tox .tox-tbtn svg{display:block;fill:#fff}@media (forced-colors: active){.tox .tox-tbtn svg{fill:currentColor!important}.tox .tox-tbtn svg.tox-tbtn--enabled,.tox .tox-tbtn svg:focus:not(.tox-tbtn--disabled){fill:currentColor!important}.tox .tox-tbtn svg.tox-tbtn--disabled,.tox .tox-tbtn svg.tox-tbtn--disabled:hover,.tox .tox-tbtn svg .tox-tbtn:disabled,.tox .tox-tbtn svg .tox-tbtn:disabled:hover{filter:contrast(0%)}}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#4a5562;border:0;box-shadow:none;position:relative;z-index:1}.tox .tox-tbtn:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-tbtn:focus:after{border:2px solid highlight}}.tox .tox-tbtn:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:hover svg{fill:#fff}.tox .tox-tbtn:active{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:active svg{fill:#fff}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:#ffffff80}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:#222f3e;border:0;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:#ffffff80}.tox .tox-tbtn--active,.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover,.tox .tox-tbtn--enabled:focus{background:#757d87;border:0;box-shadow:none;color:#fff;position:relative}.tox .tox-tbtn--active>*,.tox .tox-tbtn--enabled>*,.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled:focus>*{transform:none}.tox .tox-tbtn--active svg,.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg,.tox .tox-tbtn--enabled:focus svg{fill:#fff}.tox .tox-tbtn--active.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:focus.tox-tbtn--disabled svg{fill:#ffffff80}.tox .tox-tbtn--enabled:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-tbtn--enabled:focus:after{border:2px solid highlight}}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#fff}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#fff}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:51px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:68px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{background:transparent;border-radius:3px;display:flex;margin:3px 0 2px;position:relative;width:auto}.tox .tox-number-input:focus{background:#4a5562}.tox .tox-number-input:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-number-input:focus:after{border:2px solid highlight}}.tox .tox-number-input .tox-input-wrapper{display:flex;pointer-events:none;position:relative;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background-color:#4a5562;z-index:1}.tox .tox-number-input .tox-input-wrapper:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-number-input .tox-input-wrapper:focus:after{border:2px solid highlight}}.tox .tox-number-input .tox-input-wrapper:has(input:focus):after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-number-input .tox-input-wrapper:has(input:focus):after{border:2px solid highlight}}.tox .tox-number-input input{border-radius:3px;color:#fff;font-size:14px;margin:2px 0;pointer-events:all;position:relative;width:60px}.tox .tox-number-input input:hover{background:#4a5562;color:#fff}.tox .tox-number-input input:focus{background-color:#4a5562}.tox .tox-number-input input:disabled{background:#222f3e;border:0;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-number-input button{color:#fff;height:34px;position:relative;text-align:center;width:24px}@media (forced-colors: active){.tox .tox-number-input button:hover,.tox .tox-number-input button:focus,.tox .tox-number-input button:active{outline:1px solid currentColor!important}}.tox .tox-number-input button svg{display:block;fill:#fff;margin:0 auto;transform:scale(.67)}@media (forced-colors: active){.tox .tox-number-input button svg,.tox .tox-number-input button svg:active,.tox .tox-number-input button svg:hover{fill:currentColor!important}.tox .tox-number-input button svg:disabled{filter:contrast(0)}}.tox .tox-number-input button:focus{background:#4a5562;z-index:1}.tox .tox-number-input button:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-number-input button:focus:after{border:2px solid highlight}}.tox .tox-number-input button:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:hover svg{fill:#fff}.tox .tox-number-input button:active{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:active svg{fill:#fff}.tox .tox-number-input button:disabled{background:#222f3e;border:0;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:#ffffff80}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>button,.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper{background:#4a5562}.tox .tox-tbtn--select{margin:3px 0 2px;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:#ffffff80}@media (forced-colors: active){.tox .tox-tbtn__select-chevron svg{fill:currentColor}}.tox .tox-tbtn--bespoke{background:transparent}.tox .tox-tbtn--bespoke:focus{background:#4a5562}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:0}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:3px 0 2px}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #4a5562 inset}.tox .tox-split-button:focus{background:#4a5562;box-shadow:none;color:#fff;position:relative;z-index:1}.tox .tox-split-button:focus:after{pointer-events:none;border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-split-button:focus:after{border:2px solid highlight}}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button>*:nth-child(1){border-bottom-left-radius:3px;border-top-left-radius:3px}.tox .tox-split-button>*:nth-child(2){border-bottom-right-radius:3px;border-top-right-radius:3px}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:#ffffff80}@media (forced-colors: active){.tox .tox-split-button__chevron svg{fill:currentColor}}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button:focus .tox-tbtn{background-color:transparent}.tox .tox-split-button.tox-tbtn--disabled:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus{background:#222f3e;box-shadow:none;color:#ffffff80}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#222f3e}.tox .tox-toolbar,.tox .tox-toolbar__primary,.tox .tox-toolbar__overflow{background-attachment:local;background-color:#222f3e;background-image:repeating-linear-gradient(#000000 0px 1px,transparent 1px 39px);background-position:center top 39px;background-repeat:no-repeat;background-size:calc(100% - 8px) calc(100% - 39px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__primary,.tox .tox-toolbar-overlord>.tox-toolbar__overflow{background-position:center top 0px;background-size:calc(100% - 8px) calc(100% + -0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-toolbar-overlord,.tox .tox-anchorbar{grid-column:1 / -1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid #000000;margin-top:-1px;padding-bottom:0;padding-top:0}@media (forced-colors: active){.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{outline:1px solid currentColor}}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#222f3e;background-position:center top 43px;background-size:calc(100% - 16px) calc(100% - 51px);border:none;border-radius:3px;box-shadow:0 0 2px #2a374633,0 4px 8px #2a374626;overscroll-behavior:none;padding:4px 0}@media (forced-colors: active){.tox.tox-tinymce-aux .tox-toolbar__overflow{border:solid}}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 8px) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0;padding:0 4px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid #000000}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid #000000}.tox .tox-tooltip{display:inline-block;max-width:15em;padding:8px;pointer-events:none;position:relative;width:-moz-max-content;width:max-content;z-index:1150}.tox .tox-tooltip__body{background-color:#2a3746;border-radius:3px;box-shadow:none;color:#fff;font-size:12px;font-style:normal;font-weight:600;overflow-wrap:break-word;padding:4px 6px;text-transform:none}@media (forced-colors: active){.tox .tox-tooltip__body{outline:outset 1px}}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #2A3746;bottom:0;left:50%;position:absolute;transform:translate(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #2A3746;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translate(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #2A3746;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #2A3746;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:transparent;border:0;border-radius:4px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:none;overflow:hidden;padding:0 0 0 8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#fff}.tox .tox-tree .tox-trbtn:focus{background:#4a5562;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:active{background:#6ea9d0;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:active svg{fill:#fff}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:transparent;border:0;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:#ffffff80}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#6ea9d0;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn--enabled>*,.tox .tox-tree .tox-trbtn--enabled:hover>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#fff}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-revisionhistory__pane{padding:0!important}.tox .tox-revisionhistory__container{display:flex;flex-direction:column;height:100%}.tox .tox-revisionhistory{background-color:#2b3b4e;border-radius:4px;border-top:1px solid #000000;display:flex;flex:1;height:100%;margin-top:8px;overflow-x:auto;overflow-y:hidden;position:relative;width:100%}.tox .tox-revisionhistory--align-right{margin-left:auto}.tox .tox-revisionhistory__iframe{flex:1}.tox .tox-revisionhistory__sidebar{border-left:1px solid #000000;height:100%;max-width:360px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__sidebar-title{border-bottom:1px solid #000000;color:#fff;font-size:20px;font-weight:400;height:60px;min-width:192px;padding:16px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions{flex-direction:column;max-height:calc(100% - 60px);min-width:192px;overflow-y:auto;padding:8px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus{height:100%;position:relative;z-index:1}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus:after{box-shadow:0 0 0 0 transparent;content:"";position:absolute;border-radius:3px;bottom:1px;left:1px;right:1px;top:1px}@media (forced-colors: active){.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus:after{border:2px solid highlight}}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card{border:1px solid #000000;border-radius:3px;color:#fff;cursor:pointer;font-size:14px;margin-bottom:8px;padding:8px;text-overflow:ellipsis;text-wrap:nowrap;width:100%}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:hover{background-color:#4a5562;box-shadow:none;color:#fff}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus{position:relative;z-index:1}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus:after{border-radius:3px!important;border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus:after{border:2px solid highlight}}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected{background-color:#6ea9d0;box-shadow:none;color:#fff}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__norevision{color:#ffffff80;font-size:16px;line-height:24px;padding:5px 5.5px}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#222f3e;display:flex;flex:1;flex-direction:column;height:100%}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0;position:relative}.tox .tox-view__label{color:#fff;font-weight:700;line-height:24px;padding:4px 16px;text-align:center;white-space:nowrap}.tox .tox-view__label--normal{font-size:16px}.tox .tox-view__label--large{font-size:20px}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;overflow-x:auto;padding:8px 8px 0}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-start,.tox .tox-view__header-end{display:flex}.tox .tox-view__pane{height:100%;padding:8px;position:relative;width:100%}.tox .tox-view__pane_panel{border:1px solid #000000;border-radius:3px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-start>*,.tox[dir=rtl] .tox-view__header .tox-view__header-end>*{margin-right:8px}.tox .tox-well{border:1px solid #000000;border-radius:3px;padding:8px;width:100%}.tox .tox-well>*:first-child{margin-top:0}.tox .tox-well>*:last-child{margin-bottom:0}.tox .tox-well>*:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #000000;border-radius:3px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading:before{background-color:#00000080;content:"";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js,.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:none;padding:0}.tox.tox-tinymce--toolbar-bottom .tox-editor-header,.tox.tox-tinymce-inline .tox-editor-header{margin-bottom:-1px}.tox.tox-tinymce-inline .tox-editor-container{overflow:hidden}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:none;box-shadow:none}.tox.tox.tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:transparent;box-shadow:0 4px 4px -3px #00000040;padding:0}.tox.tox.tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px #00000040}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px 0}.tox .tox-menu.tox-collection.tox-collection--list{padding:0}.tox .tox-pop{box-shadow:none}.tox .tox-tbtn,.tox .tox-number-input,.tox .tox-tbtn--select,.tox .tox-split-button{margin:2px 0 3px}.tox .tox-toolbar,.tox .tox-toolbar__primary,.tox .tox-toolbar__overflow{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0px #222f3e!important}.tox .tox-menubar+.tox-toolbar-overlord{border-top:none}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord .tox-toolbar__primary{border-top:1px solid #000000;margin-top:-1px}.tox.tox-tinymce-aux .tox-toolbar__overflow{border:1px solid #000000;padding:0}.tox .tox-pop .tox-pop__dialog .tox-toolbar{padding:0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-menubar{border-top:1px solid #000000}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar-overlord:first-child .tox-toolbar__primary,.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar:first-child{border-top:1px solid #000000}.tox .tox-toolbar__group{padding:0 4px}.tox .tox-collection__item{border-radius:0;cursor:pointer}.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]){color:#fff}.tox .tox-statusbar__branding svg{fill:#fffc;height:1em;margin-left:.3em;width:auto}@media (forced-colors: active){.tox .tox-statusbar__branding svg{fill:currentColor}}.tox .tox-statusbar__branding a{align-items:center;display:inline-flex}.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg{fill:#fff}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:1ch}.tox[dir=rtl] .tox-statusbar__branding svg{margin-left:0;margin-right:.3em}.tox .tox-statusbar__resize-handle{padding-bottom:0;padding-right:0}.tox .tox-button:before{display:none}.tox .tox-toolbar,.tox .tox-toolbar__primary,.tox .tox-toolbar__overflow{background-color:#0e1b23!important}.tox-tinymce{border:none!important}.app-static-name[data-v-c042122a]{cursor:text;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cell-name[data-v-588566c2]{position:sticky;top:100px}.message[data-v-588566c2]{padding-top:10px}.message__timestamp[data-v-588566c2]{font-size:.75rem;color:rgba(var(--v-theme-bluegrey))}.message__content[data-v-588566c2]{font-size:14px;word-break:break-word}.comment__actions[data-v-588566c2]{position:absolute;right:0}.card[data-v-793087b5]{position:sticky;height:87.5vh;top:3.9rem}.close-btn[data-v-793087b5]{position:absolute;top:0;right:0}.content[data-v-793087b5]{position:relative;height:100%}.empty-state[data-v-793087b5]{margin-top:200px;text-align:center}.empty-state__text[data-v-793087b5]{max-width:20em;margin:0 auto;line-height:1.8rem;color:rgb(var(--v-theme-bluegrey))}.comments-wrapper[data-v-793087b5]{max-height:66vh;overflow-y:auto}.cell-container{padding-top:0}.cell-container--app{padding-bottom:0}.cm-editor{height:auto!important}.zt-app-bar[data-v-4b6b6f0a]{padding-top:6px;padding-bottom:6px}.logo-btn[data-v-4b6b6f0a] .v-icon{width:1.5em;height:1.5em}.cm-editor[data-v-4b6b6f0a]{height:auto!important}.click-edit[data-v-4b6b6f0a]{max-width:200px;width:100%}.click-edit__name[data-v-4b6b6f0a]{font-weight:400;cursor:text}.click-edit__show-text[data-v-4b6b6f0a],.click-edit__edit-field-wrapper[data-v-4b6b6f0a]{display:flex;align-items:center}.click-edit__name[data-v-4b6b6f0a]:hover{padding-left:3px;padding-right:3px;cursor:text;border:1px solid #294455}.click-edit__edit-field[data-v-4b6b6f0a]{margin-top:-11px}.click-edit__edit-field[data-v-4b6b6f0a] .v-field__input{font-size:1.5rem;letter-spacing:normal}@media (min-width: 600px){.click-edit[data-v-4b6b6f0a]{max-width:250px}}@media (min-width: 1280px){.click-edit[data-v-4b6b6f0a]{max-width:450px}}@media (min-width: 1920px){.click-edit[data-v-4b6b6f0a]{max-width:600px}}.content[data-v-4b6b6f0a]{padding-left:0!important;padding-right:0!important}.content__comments[data-v-4b6b6f0a]{width:0;transition:width .15s ease}.content__comments--show[data-v-4b6b6f0a]{width:380px}.footer[data-v-4b6b6f0a]{display:flex;justify-content:space-between;flex-direction:column;padding:4px 16px}.footer__left-container[data-v-4b6b6f0a],.footer__right-container[data-v-4b6b6f0a]{display:flex;width:100%}@media (min-width: 960px){.footer__left-container[data-v-4b6b6f0a],.footer__right-container[data-v-4b6b6f0a]{align-items:center;width:auto}}.footer__right-container[data-v-4b6b6f0a]{align-items:center;flex-direction:column;justify-content:flex-start}@media (min-width: 600px){.footer__right-container[data-v-4b6b6f0a]{flex-direction:row}}.footer__left-container[data-v-4b6b6f0a]{flex-direction:column;margin:0 0 20px}@media (min-width: 600px){.footer__left-container[data-v-4b6b6f0a]{margin:0;flex-direction:row}}.footer__queue-length-wrapper[data-v-4b6b6f0a]{display:flex;justify-content:flex-start;width:100%}@media (min-width: 600px){.footer__queue-length-wrapper[data-v-4b6b6f0a]{width:auto}}.footer .dot-divider[data-v-4b6b6f0a]{display:none;margin:0 5px}@media (min-width: 600px){.footer .dot-divider[data-v-4b6b6f0a]{display:flex;margin:0 16px}}@media (min-width: 1280px){.footer .dot-divider[data-v-4b6b6f0a]{margin:0 16px}}@media (min-width: 1920px){.footer .dot-divider[data-v-4b6b6f0a]{margin:0 24px}}.footer__status-wrapper[data-v-4b6b6f0a]{display:flex;justify-content:flex-start;width:100%;align-items:center}.footer__status-wrapper .dot-divider[data-v-4b6b6f0a]{display:none}@media (min-width: 960px){.footer__status-wrapper .dot-divider[data-v-4b6b6f0a]{display:flex}}.footer__code-version-icon[data-v-4b6b6f0a]{margin-right:0;margin-left:-5px}@media (min-width: 600px){.footer__code-version-icon[data-v-4b6b6f0a]{margin-right:12px}}.footer__queue-length-btn[data-v-4b6b6f0a]{margin:0 2px}@media (min-width: 960px){.footer__queue-length-btn[data-v-4b6b6f0a]{margin:0 8px 0 24px}}.footer__code-running-loader[data-v-4b6b6f0a]{margin-right:10px}@media (min-width: 1280px){.footer__code-running-loader[data-v-4b6b6f0a]{margin-right:10px}}.footer__queue-list[data-v-4b6b6f0a]{font-size:.625rem}.footer__queue-list-item--pending[data-v-4b6b6f0a]{color:rgba(var(--v-theme-bluegrey-darken-2))}.footer__status[data-v-4b6b6f0a]{color:rgba(var(--v-theme-success))}.footer__status--error[data-v-4b6b6f0a]{color:rgba(var(--v-theme-error))}@media (min-width: 960px){.footer[data-v-4b6b6f0a]{flex-direction:row;height:34px}}.toggle-group[data-v-4b6b6f0a]{display:flex;justify-content:center;position:absolute;left:50%;transform:translate(-50%)}@font-face{font-family:Material Design Icons;src:url(./materialdesignicons-webfont-5159a347.eot?v=7.3.67);src:url(./materialdesignicons-webfont-5159a347.eot?#iefix&v=7.3.67) format("embedded-opentype"),url(./materialdesignicons-webfont-31010194.woff2?v=7.3.67) format("woff2"),url(./materialdesignicons-webfont-28c8f97f.woff?v=7.3.67) format("woff"),url(./materialdesignicons-webfont-be825c12.ttf?v=7.3.67) format("truetype");font-weight:400;font-style:normal}.mdi:before,.mdi-set{display:inline-block;font: 24px/1 Material Design Icons;font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mdi-ab-testing:before{content:""}.mdi-abacus:before{content:""}.mdi-abjad-arabic:before{content:""}.mdi-abjad-hebrew:before{content:""}.mdi-abugida-devanagari:before{content:""}.mdi-abugida-thai:before{content:""}.mdi-access-point:before{content:""}.mdi-access-point-check:before{content:""}.mdi-access-point-minus:before{content:""}.mdi-access-point-network:before{content:""}.mdi-access-point-network-off:before{content:""}.mdi-access-point-off:before{content:""}.mdi-access-point-plus:before{content:""}.mdi-access-point-remove:before{content:""}.mdi-account:before{content:""}.mdi-account-alert:before{content:""}.mdi-account-alert-outline:before{content:""}.mdi-account-arrow-down:before{content:""}.mdi-account-arrow-down-outline:before{content:""}.mdi-account-arrow-left:before{content:""}.mdi-account-arrow-left-outline:before{content:""}.mdi-account-arrow-right:before{content:""}.mdi-account-arrow-right-outline:before{content:""}.mdi-account-arrow-up:before{content:""}.mdi-account-arrow-up-outline:before{content:""}.mdi-account-badge:before{content:""}.mdi-account-badge-outline:before{content:""}.mdi-account-box:before{content:""}.mdi-account-box-multiple:before{content:""}.mdi-account-box-multiple-outline:before{content:""}.mdi-account-box-outline:before{content:""}.mdi-account-cancel:before{content:""}.mdi-account-cancel-outline:before{content:""}.mdi-account-card:before{content:""}.mdi-account-card-outline:before{content:""}.mdi-account-cash:before{content:""}.mdi-account-cash-outline:before{content:""}.mdi-account-check:before{content:""}.mdi-account-check-outline:before{content:""}.mdi-account-child:before{content:""}.mdi-account-child-circle:before{content:""}.mdi-account-child-outline:before{content:""}.mdi-account-circle:before{content:""}.mdi-account-circle-outline:before{content:""}.mdi-account-clock:before{content:""}.mdi-account-clock-outline:before{content:""}.mdi-account-cog:before{content:""}.mdi-account-cog-outline:before{content:""}.mdi-account-convert:before{content:""}.mdi-account-convert-outline:before{content:""}.mdi-account-cowboy-hat:before{content:""}.mdi-account-cowboy-hat-outline:before{content:""}.mdi-account-credit-card:before{content:""}.mdi-account-credit-card-outline:before{content:""}.mdi-account-details:before{content:""}.mdi-account-details-outline:before{content:""}.mdi-account-edit:before{content:""}.mdi-account-edit-outline:before{content:""}.mdi-account-eye:before{content:""}.mdi-account-eye-outline:before{content:""}.mdi-account-file:before{content:""}.mdi-account-file-outline:before{content:""}.mdi-account-file-text:before{content:""}.mdi-account-file-text-outline:before{content:""}.mdi-account-filter:before{content:""}.mdi-account-filter-outline:before{content:""}.mdi-account-group:before{content:""}.mdi-account-group-outline:before{content:""}.mdi-account-hard-hat:before{content:""}.mdi-account-hard-hat-outline:before{content:""}.mdi-account-heart:before{content:""}.mdi-account-heart-outline:before{content:""}.mdi-account-injury:before{content:""}.mdi-account-injury-outline:before{content:""}.mdi-account-key:before{content:""}.mdi-account-key-outline:before{content:""}.mdi-account-lock:before{content:""}.mdi-account-lock-open:before{content:""}.mdi-account-lock-open-outline:before{content:""}.mdi-account-lock-outline:before{content:""}.mdi-account-minus:before{content:""}.mdi-account-minus-outline:before{content:""}.mdi-account-multiple:before{content:""}.mdi-account-multiple-check:before{content:""}.mdi-account-multiple-check-outline:before{content:""}.mdi-account-multiple-minus:before{content:""}.mdi-account-multiple-minus-outline:before{content:""}.mdi-account-multiple-outline:before{content:""}.mdi-account-multiple-plus:before{content:""}.mdi-account-multiple-plus-outline:before{content:""}.mdi-account-multiple-remove:before{content:""}.mdi-account-multiple-remove-outline:before{content:""}.mdi-account-music:before{content:""}.mdi-account-music-outline:before{content:""}.mdi-account-network:before{content:""}.mdi-account-network-off:before{content:""}.mdi-account-network-off-outline:before{content:""}.mdi-account-network-outline:before{content:""}.mdi-account-off:before{content:""}.mdi-account-off-outline:before{content:""}.mdi-account-outline:before{content:""}.mdi-account-plus:before{content:""}.mdi-account-plus-outline:before{content:""}.mdi-account-question:before{content:""}.mdi-account-question-outline:before{content:""}.mdi-account-reactivate:before{content:""}.mdi-account-reactivate-outline:before{content:""}.mdi-account-remove:before{content:""}.mdi-account-remove-outline:before{content:""}.mdi-account-school:before{content:""}.mdi-account-school-outline:before{content:""}.mdi-account-search:before{content:""}.mdi-account-search-outline:before{content:""}.mdi-account-settings:before{content:""}.mdi-account-settings-outline:before{content:""}.mdi-account-star:before{content:""}.mdi-account-star-outline:before{content:""}.mdi-account-supervisor:before{content:""}.mdi-account-supervisor-circle:before{content:""}.mdi-account-supervisor-circle-outline:before{content:""}.mdi-account-supervisor-outline:before{content:""}.mdi-account-switch:before{content:""}.mdi-account-switch-outline:before{content:""}.mdi-account-sync:before{content:""}.mdi-account-sync-outline:before{content:""}.mdi-account-tag:before{content:""}.mdi-account-tag-outline:before{content:""}.mdi-account-tie:before{content:""}.mdi-account-tie-hat:before{content:""}.mdi-account-tie-hat-outline:before{content:""}.mdi-account-tie-outline:before{content:""}.mdi-account-tie-voice:before{content:""}.mdi-account-tie-voice-off:before{content:""}.mdi-account-tie-voice-off-outline:before{content:""}.mdi-account-tie-voice-outline:before{content:""}.mdi-account-tie-woman:before{content:""}.mdi-account-voice:before{content:""}.mdi-account-voice-off:before{content:""}.mdi-account-wrench:before{content:""}.mdi-account-wrench-outline:before{content:""}.mdi-adjust:before{content:""}.mdi-advertisements:before{content:""}.mdi-advertisements-off:before{content:""}.mdi-air-conditioner:before{content:""}.mdi-air-filter:before{content:""}.mdi-air-horn:before{content:""}.mdi-air-humidifier:before{content:""}.mdi-air-humidifier-off:before{content:""}.mdi-air-purifier:before{content:""}.mdi-air-purifier-off:before{content:""}.mdi-airbag:before{content:""}.mdi-airballoon:before{content:""}.mdi-airballoon-outline:before{content:""}.mdi-airplane:before{content:""}.mdi-airplane-alert:before{content:""}.mdi-airplane-check:before{content:""}.mdi-airplane-clock:before{content:""}.mdi-airplane-cog:before{content:""}.mdi-airplane-edit:before{content:""}.mdi-airplane-landing:before{content:""}.mdi-airplane-marker:before{content:""}.mdi-airplane-minus:before{content:""}.mdi-airplane-off:before{content:""}.mdi-airplane-plus:before{content:""}.mdi-airplane-remove:before{content:""}.mdi-airplane-search:before{content:""}.mdi-airplane-settings:before{content:""}.mdi-airplane-takeoff:before{content:""}.mdi-airport:before{content:""}.mdi-alarm:before{content:""}.mdi-alarm-bell:before{content:""}.mdi-alarm-check:before{content:""}.mdi-alarm-light:before{content:""}.mdi-alarm-light-off:before{content:""}.mdi-alarm-light-off-outline:before{content:""}.mdi-alarm-light-outline:before{content:""}.mdi-alarm-multiple:before{content:""}.mdi-alarm-note:before{content:""}.mdi-alarm-note-off:before{content:""}.mdi-alarm-off:before{content:""}.mdi-alarm-panel:before{content:""}.mdi-alarm-panel-outline:before{content:""}.mdi-alarm-plus:before{content:""}.mdi-alarm-snooze:before{content:""}.mdi-album:before{content:""}.mdi-alert:before{content:""}.mdi-alert-box:before{content:""}.mdi-alert-box-outline:before{content:""}.mdi-alert-circle:before{content:""}.mdi-alert-circle-check:before{content:""}.mdi-alert-circle-check-outline:before{content:""}.mdi-alert-circle-outline:before{content:""}.mdi-alert-decagram:before{content:""}.mdi-alert-decagram-outline:before{content:""}.mdi-alert-minus:before{content:""}.mdi-alert-minus-outline:before{content:""}.mdi-alert-octagon:before{content:""}.mdi-alert-octagon-outline:before{content:""}.mdi-alert-octagram:before{content:""}.mdi-alert-octagram-outline:before{content:""}.mdi-alert-outline:before{content:""}.mdi-alert-plus:before{content:""}.mdi-alert-plus-outline:before{content:""}.mdi-alert-remove:before{content:""}.mdi-alert-remove-outline:before{content:""}.mdi-alert-rhombus:before{content:""}.mdi-alert-rhombus-outline:before{content:""}.mdi-alien:before{content:""}.mdi-alien-outline:before{content:""}.mdi-align-horizontal-center:before{content:""}.mdi-align-horizontal-distribute:before{content:""}.mdi-align-horizontal-left:before{content:""}.mdi-align-horizontal-right:before{content:""}.mdi-align-vertical-bottom:before{content:""}.mdi-align-vertical-center:before{content:""}.mdi-align-vertical-distribute:before{content:""}.mdi-align-vertical-top:before{content:""}.mdi-all-inclusive:before{content:""}.mdi-all-inclusive-box:before{content:""}.mdi-all-inclusive-box-outline:before{content:""}.mdi-allergy:before{content:""}.mdi-alpha:before{content:""}.mdi-alpha-a:before{content:""}.mdi-alpha-a-box:before{content:""}.mdi-alpha-a-box-outline:before{content:""}.mdi-alpha-a-circle:before{content:""}.mdi-alpha-a-circle-outline:before{content:""}.mdi-alpha-b:before{content:""}.mdi-alpha-b-box:before{content:""}.mdi-alpha-b-box-outline:before{content:""}.mdi-alpha-b-circle:before{content:""}.mdi-alpha-b-circle-outline:before{content:""}.mdi-alpha-c:before{content:""}.mdi-alpha-c-box:before{content:""}.mdi-alpha-c-box-outline:before{content:""}.mdi-alpha-c-circle:before{content:""}.mdi-alpha-c-circle-outline:before{content:""}.mdi-alpha-d:before{content:""}.mdi-alpha-d-box:before{content:""}.mdi-alpha-d-box-outline:before{content:""}.mdi-alpha-d-circle:before{content:""}.mdi-alpha-d-circle-outline:before{content:""}.mdi-alpha-e:before{content:""}.mdi-alpha-e-box:before{content:""}.mdi-alpha-e-box-outline:before{content:""}.mdi-alpha-e-circle:before{content:""}.mdi-alpha-e-circle-outline:before{content:""}.mdi-alpha-f:before{content:""}.mdi-alpha-f-box:before{content:""}.mdi-alpha-f-box-outline:before{content:""}.mdi-alpha-f-circle:before{content:""}.mdi-alpha-f-circle-outline:before{content:""}.mdi-alpha-g:before{content:""}.mdi-alpha-g-box:before{content:""}.mdi-alpha-g-box-outline:before{content:""}.mdi-alpha-g-circle:before{content:""}.mdi-alpha-g-circle-outline:before{content:""}.mdi-alpha-h:before{content:""}.mdi-alpha-h-box:before{content:""}.mdi-alpha-h-box-outline:before{content:""}.mdi-alpha-h-circle:before{content:""}.mdi-alpha-h-circle-outline:before{content:""}.mdi-alpha-i:before{content:""}.mdi-alpha-i-box:before{content:""}.mdi-alpha-i-box-outline:before{content:""}.mdi-alpha-i-circle:before{content:""}.mdi-alpha-i-circle-outline:before{content:""}.mdi-alpha-j:before{content:""}.mdi-alpha-j-box:before{content:""}.mdi-alpha-j-box-outline:before{content:""}.mdi-alpha-j-circle:before{content:""}.mdi-alpha-j-circle-outline:before{content:""}.mdi-alpha-k:before{content:""}.mdi-alpha-k-box:before{content:""}.mdi-alpha-k-box-outline:before{content:""}.mdi-alpha-k-circle:before{content:""}.mdi-alpha-k-circle-outline:before{content:""}.mdi-alpha-l:before{content:""}.mdi-alpha-l-box:before{content:""}.mdi-alpha-l-box-outline:before{content:""}.mdi-alpha-l-circle:before{content:""}.mdi-alpha-l-circle-outline:before{content:""}.mdi-alpha-m:before{content:""}.mdi-alpha-m-box:before{content:""}.mdi-alpha-m-box-outline:before{content:""}.mdi-alpha-m-circle:before{content:""}.mdi-alpha-m-circle-outline:before{content:""}.mdi-alpha-n:before{content:""}.mdi-alpha-n-box:before{content:""}.mdi-alpha-n-box-outline:before{content:""}.mdi-alpha-n-circle:before{content:""}.mdi-alpha-n-circle-outline:before{content:""}.mdi-alpha-o:before{content:""}.mdi-alpha-o-box:before{content:""}.mdi-alpha-o-box-outline:before{content:""}.mdi-alpha-o-circle:before{content:""}.mdi-alpha-o-circle-outline:before{content:""}.mdi-alpha-p:before{content:""}.mdi-alpha-p-box:before{content:""}.mdi-alpha-p-box-outline:before{content:""}.mdi-alpha-p-circle:before{content:""}.mdi-alpha-p-circle-outline:before{content:""}.mdi-alpha-q:before{content:""}.mdi-alpha-q-box:before{content:""}.mdi-alpha-q-box-outline:before{content:""}.mdi-alpha-q-circle:before{content:""}.mdi-alpha-q-circle-outline:before{content:""}.mdi-alpha-r:before{content:""}.mdi-alpha-r-box:before{content:""}.mdi-alpha-r-box-outline:before{content:""}.mdi-alpha-r-circle:before{content:""}.mdi-alpha-r-circle-outline:before{content:""}.mdi-alpha-s:before{content:""}.mdi-alpha-s-box:before{content:""}.mdi-alpha-s-box-outline:before{content:""}.mdi-alpha-s-circle:before{content:""}.mdi-alpha-s-circle-outline:before{content:""}.mdi-alpha-t:before{content:""}.mdi-alpha-t-box:before{content:""}.mdi-alpha-t-box-outline:before{content:""}.mdi-alpha-t-circle:before{content:""}.mdi-alpha-t-circle-outline:before{content:""}.mdi-alpha-u:before{content:""}.mdi-alpha-u-box:before{content:""}.mdi-alpha-u-box-outline:before{content:""}.mdi-alpha-u-circle:before{content:""}.mdi-alpha-u-circle-outline:before{content:""}.mdi-alpha-v:before{content:""}.mdi-alpha-v-box:before{content:""}.mdi-alpha-v-box-outline:before{content:""}.mdi-alpha-v-circle:before{content:""}.mdi-alpha-v-circle-outline:before{content:""}.mdi-alpha-w:before{content:""}.mdi-alpha-w-box:before{content:""}.mdi-alpha-w-box-outline:before{content:""}.mdi-alpha-w-circle:before{content:""}.mdi-alpha-w-circle-outline:before{content:""}.mdi-alpha-x:before{content:""}.mdi-alpha-x-box:before{content:""}.mdi-alpha-x-box-outline:before{content:""}.mdi-alpha-x-circle:before{content:""}.mdi-alpha-x-circle-outline:before{content:""}.mdi-alpha-y:before{content:""}.mdi-alpha-y-box:before{content:""}.mdi-alpha-y-box-outline:before{content:""}.mdi-alpha-y-circle:before{content:""}.mdi-alpha-y-circle-outline:before{content:""}.mdi-alpha-z:before{content:""}.mdi-alpha-z-box:before{content:""}.mdi-alpha-z-box-outline:before{content:""}.mdi-alpha-z-circle:before{content:""}.mdi-alpha-z-circle-outline:before{content:""}.mdi-alphabet-aurebesh:before{content:""}.mdi-alphabet-cyrillic:before{content:""}.mdi-alphabet-greek:before{content:""}.mdi-alphabet-latin:before{content:""}.mdi-alphabet-piqad:before{content:""}.mdi-alphabet-tengwar:before{content:""}.mdi-alphabetical:before{content:""}.mdi-alphabetical-off:before{content:""}.mdi-alphabetical-variant:before{content:""}.mdi-alphabetical-variant-off:before{content:""}.mdi-altimeter:before{content:""}.mdi-ambulance:before{content:""}.mdi-ammunition:before{content:""}.mdi-ampersand:before{content:""}.mdi-amplifier:before{content:""}.mdi-amplifier-off:before{content:""}.mdi-anchor:before{content:""}.mdi-android:before{content:""}.mdi-android-studio:before{content:""}.mdi-angle-acute:before{content:""}.mdi-angle-obtuse:before{content:""}.mdi-angle-right:before{content:""}.mdi-angular:before{content:""}.mdi-angularjs:before{content:""}.mdi-animation:before{content:""}.mdi-animation-outline:before{content:""}.mdi-animation-play:before{content:""}.mdi-animation-play-outline:before{content:""}.mdi-ansible:before{content:""}.mdi-antenna:before{content:""}.mdi-anvil:before{content:""}.mdi-apache-kafka:before{content:""}.mdi-api:before{content:""}.mdi-api-off:before{content:""}.mdi-apple:before{content:""}.mdi-apple-finder:before{content:""}.mdi-apple-icloud:before{content:""}.mdi-apple-ios:before{content:""}.mdi-apple-keyboard-caps:before{content:""}.mdi-apple-keyboard-command:before{content:""}.mdi-apple-keyboard-control:before{content:""}.mdi-apple-keyboard-option:before{content:""}.mdi-apple-keyboard-shift:before{content:""}.mdi-apple-safari:before{content:""}.mdi-application:before{content:""}.mdi-application-array:before{content:""}.mdi-application-array-outline:before{content:""}.mdi-application-braces:before{content:""}.mdi-application-braces-outline:before{content:""}.mdi-application-brackets:before{content:""}.mdi-application-brackets-outline:before{content:""}.mdi-application-cog:before{content:""}.mdi-application-cog-outline:before{content:""}.mdi-application-edit:before{content:""}.mdi-application-edit-outline:before{content:""}.mdi-application-export:before{content:""}.mdi-application-import:before{content:""}.mdi-application-outline:before{content:""}.mdi-application-parentheses:before{content:""}.mdi-application-parentheses-outline:before{content:""}.mdi-application-settings:before{content:""}.mdi-application-settings-outline:before{content:""}.mdi-application-variable:before{content:""}.mdi-application-variable-outline:before{content:""}.mdi-approximately-equal:before{content:""}.mdi-approximately-equal-box:before{content:""}.mdi-apps:before{content:""}.mdi-apps-box:before{content:""}.mdi-arch:before{content:""}.mdi-archive:before{content:""}.mdi-archive-alert:before{content:""}.mdi-archive-alert-outline:before{content:""}.mdi-archive-arrow-down:before{content:""}.mdi-archive-arrow-down-outline:before{content:""}.mdi-archive-arrow-up:before{content:""}.mdi-archive-arrow-up-outline:before{content:""}.mdi-archive-cancel:before{content:""}.mdi-archive-cancel-outline:before{content:""}.mdi-archive-check:before{content:""}.mdi-archive-check-outline:before{content:""}.mdi-archive-clock:before{content:""}.mdi-archive-clock-outline:before{content:""}.mdi-archive-cog:before{content:""}.mdi-archive-cog-outline:before{content:""}.mdi-archive-edit:before{content:""}.mdi-archive-edit-outline:before{content:""}.mdi-archive-eye:before{content:""}.mdi-archive-eye-outline:before{content:""}.mdi-archive-lock:before{content:""}.mdi-archive-lock-open:before{content:""}.mdi-archive-lock-open-outline:before{content:""}.mdi-archive-lock-outline:before{content:""}.mdi-archive-marker:before{content:""}.mdi-archive-marker-outline:before{content:""}.mdi-archive-minus:before{content:""}.mdi-archive-minus-outline:before{content:""}.mdi-archive-music:before{content:""}.mdi-archive-music-outline:before{content:""}.mdi-archive-off:before{content:""}.mdi-archive-off-outline:before{content:""}.mdi-archive-outline:before{content:""}.mdi-archive-plus:before{content:""}.mdi-archive-plus-outline:before{content:""}.mdi-archive-refresh:before{content:""}.mdi-archive-refresh-outline:before{content:""}.mdi-archive-remove:before{content:""}.mdi-archive-remove-outline:before{content:""}.mdi-archive-search:before{content:""}.mdi-archive-search-outline:before{content:""}.mdi-archive-settings:before{content:""}.mdi-archive-settings-outline:before{content:""}.mdi-archive-star:before{content:""}.mdi-archive-star-outline:before{content:""}.mdi-archive-sync:before{content:""}.mdi-archive-sync-outline:before{content:""}.mdi-arm-flex:before{content:""}.mdi-arm-flex-outline:before{content:""}.mdi-arrange-bring-forward:before{content:""}.mdi-arrange-bring-to-front:before{content:""}.mdi-arrange-send-backward:before{content:""}.mdi-arrange-send-to-back:before{content:""}.mdi-arrow-all:before{content:""}.mdi-arrow-bottom-left:before{content:""}.mdi-arrow-bottom-left-bold-box:before{content:""}.mdi-arrow-bottom-left-bold-box-outline:before{content:""}.mdi-arrow-bottom-left-bold-outline:before{content:""}.mdi-arrow-bottom-left-thick:before{content:""}.mdi-arrow-bottom-left-thin:before{content:""}.mdi-arrow-bottom-left-thin-circle-outline:before{content:""}.mdi-arrow-bottom-right:before{content:""}.mdi-arrow-bottom-right-bold-box:before{content:""}.mdi-arrow-bottom-right-bold-box-outline:before{content:""}.mdi-arrow-bottom-right-bold-outline:before{content:""}.mdi-arrow-bottom-right-thick:before{content:""}.mdi-arrow-bottom-right-thin:before{content:""}.mdi-arrow-bottom-right-thin-circle-outline:before{content:""}.mdi-arrow-collapse:before{content:""}.mdi-arrow-collapse-all:before{content:""}.mdi-arrow-collapse-down:before{content:""}.mdi-arrow-collapse-horizontal:before{content:""}.mdi-arrow-collapse-left:before{content:""}.mdi-arrow-collapse-right:before{content:""}.mdi-arrow-collapse-up:before{content:""}.mdi-arrow-collapse-vertical:before{content:""}.mdi-arrow-decision:before{content:""}.mdi-arrow-decision-auto:before{content:""}.mdi-arrow-decision-auto-outline:before{content:""}.mdi-arrow-decision-outline:before{content:""}.mdi-arrow-down:before{content:""}.mdi-arrow-down-bold:before{content:""}.mdi-arrow-down-bold-box:before{content:""}.mdi-arrow-down-bold-box-outline:before{content:""}.mdi-arrow-down-bold-circle:before{content:""}.mdi-arrow-down-bold-circle-outline:before{content:""}.mdi-arrow-down-bold-hexagon-outline:before{content:""}.mdi-arrow-down-bold-outline:before{content:""}.mdi-arrow-down-box:before{content:""}.mdi-arrow-down-circle:before{content:""}.mdi-arrow-down-circle-outline:before{content:""}.mdi-arrow-down-drop-circle:before{content:""}.mdi-arrow-down-drop-circle-outline:before{content:""}.mdi-arrow-down-left:before{content:""}.mdi-arrow-down-left-bold:before{content:""}.mdi-arrow-down-right:before{content:""}.mdi-arrow-down-right-bold:before{content:""}.mdi-arrow-down-thick:before{content:""}.mdi-arrow-down-thin:before{content:""}.mdi-arrow-down-thin-circle-outline:before{content:""}.mdi-arrow-expand:before{content:""}.mdi-arrow-expand-all:before{content:""}.mdi-arrow-expand-down:before{content:""}.mdi-arrow-expand-horizontal:before{content:""}.mdi-arrow-expand-left:before{content:""}.mdi-arrow-expand-right:before{content:""}.mdi-arrow-expand-up:before{content:""}.mdi-arrow-expand-vertical:before{content:""}.mdi-arrow-horizontal-lock:before{content:""}.mdi-arrow-left:before{content:""}.mdi-arrow-left-bold:before{content:""}.mdi-arrow-left-bold-box:before{content:""}.mdi-arrow-left-bold-box-outline:before{content:""}.mdi-arrow-left-bold-circle:before{content:""}.mdi-arrow-left-bold-circle-outline:before{content:""}.mdi-arrow-left-bold-hexagon-outline:before{content:""}.mdi-arrow-left-bold-outline:before{content:""}.mdi-arrow-left-bottom:before{content:""}.mdi-arrow-left-bottom-bold:before{content:""}.mdi-arrow-left-box:before{content:""}.mdi-arrow-left-circle:before{content:""}.mdi-arrow-left-circle-outline:before{content:""}.mdi-arrow-left-drop-circle:before{content:""}.mdi-arrow-left-drop-circle-outline:before{content:""}.mdi-arrow-left-right:before{content:""}.mdi-arrow-left-right-bold:before{content:""}.mdi-arrow-left-right-bold-outline:before{content:""}.mdi-arrow-left-thick:before{content:""}.mdi-arrow-left-thin:before{content:""}.mdi-arrow-left-thin-circle-outline:before{content:""}.mdi-arrow-left-top:before{content:""}.mdi-arrow-left-top-bold:before{content:""}.mdi-arrow-oscillating:before{content:""}.mdi-arrow-oscillating-off:before{content:""}.mdi-arrow-projectile:before{content:""}.mdi-arrow-projectile-multiple:before{content:""}.mdi-arrow-right:before{content:""}.mdi-arrow-right-bold:before{content:""}.mdi-arrow-right-bold-box:before{content:""}.mdi-arrow-right-bold-box-outline:before{content:""}.mdi-arrow-right-bold-circle:before{content:""}.mdi-arrow-right-bold-circle-outline:before{content:""}.mdi-arrow-right-bold-hexagon-outline:before{content:""}.mdi-arrow-right-bold-outline:before{content:""}.mdi-arrow-right-bottom:before{content:""}.mdi-arrow-right-bottom-bold:before{content:""}.mdi-arrow-right-box:before{content:""}.mdi-arrow-right-circle:before{content:""}.mdi-arrow-right-circle-outline:before{content:""}.mdi-arrow-right-drop-circle:before{content:""}.mdi-arrow-right-drop-circle-outline:before{content:""}.mdi-arrow-right-thick:before{content:""}.mdi-arrow-right-thin:before{content:""}.mdi-arrow-right-thin-circle-outline:before{content:""}.mdi-arrow-right-top:before{content:""}.mdi-arrow-right-top-bold:before{content:""}.mdi-arrow-split-horizontal:before{content:""}.mdi-arrow-split-vertical:before{content:""}.mdi-arrow-top-left:before{content:""}.mdi-arrow-top-left-bold-box:before{content:""}.mdi-arrow-top-left-bold-box-outline:before{content:""}.mdi-arrow-top-left-bold-outline:before{content:""}.mdi-arrow-top-left-bottom-right:before{content:""}.mdi-arrow-top-left-bottom-right-bold:before{content:""}.mdi-arrow-top-left-thick:before{content:""}.mdi-arrow-top-left-thin:before{content:""}.mdi-arrow-top-left-thin-circle-outline:before{content:""}.mdi-arrow-top-right:before{content:""}.mdi-arrow-top-right-bold-box:before{content:""}.mdi-arrow-top-right-bold-box-outline:before{content:""}.mdi-arrow-top-right-bold-outline:before{content:""}.mdi-arrow-top-right-bottom-left:before{content:""}.mdi-arrow-top-right-bottom-left-bold:before{content:""}.mdi-arrow-top-right-thick:before{content:""}.mdi-arrow-top-right-thin:before{content:""}.mdi-arrow-top-right-thin-circle-outline:before{content:""}.mdi-arrow-u-down-left:before{content:""}.mdi-arrow-u-down-left-bold:before{content:""}.mdi-arrow-u-down-right:before{content:""}.mdi-arrow-u-down-right-bold:before{content:""}.mdi-arrow-u-left-bottom:before{content:""}.mdi-arrow-u-left-bottom-bold:before{content:""}.mdi-arrow-u-left-top:before{content:""}.mdi-arrow-u-left-top-bold:before{content:""}.mdi-arrow-u-right-bottom:before{content:""}.mdi-arrow-u-right-bottom-bold:before{content:""}.mdi-arrow-u-right-top:before{content:""}.mdi-arrow-u-right-top-bold:before{content:""}.mdi-arrow-u-up-left:before{content:""}.mdi-arrow-u-up-left-bold:before{content:""}.mdi-arrow-u-up-right:before{content:""}.mdi-arrow-u-up-right-bold:before{content:""}.mdi-arrow-up:before{content:""}.mdi-arrow-up-bold:before{content:""}.mdi-arrow-up-bold-box:before{content:""}.mdi-arrow-up-bold-box-outline:before{content:""}.mdi-arrow-up-bold-circle:before{content:""}.mdi-arrow-up-bold-circle-outline:before{content:""}.mdi-arrow-up-bold-hexagon-outline:before{content:""}.mdi-arrow-up-bold-outline:before{content:""}.mdi-arrow-up-box:before{content:""}.mdi-arrow-up-circle:before{content:""}.mdi-arrow-up-circle-outline:before{content:""}.mdi-arrow-up-down:before{content:""}.mdi-arrow-up-down-bold:before{content:""}.mdi-arrow-up-down-bold-outline:before{content:""}.mdi-arrow-up-drop-circle:before{content:""}.mdi-arrow-up-drop-circle-outline:before{content:""}.mdi-arrow-up-left:before{content:""}.mdi-arrow-up-left-bold:before{content:""}.mdi-arrow-up-right:before{content:""}.mdi-arrow-up-right-bold:before{content:""}.mdi-arrow-up-thick:before{content:""}.mdi-arrow-up-thin:before{content:""}.mdi-arrow-up-thin-circle-outline:before{content:""}.mdi-arrow-vertical-lock:before{content:""}.mdi-artboard:before{content:""}.mdi-artstation:before{content:""}.mdi-aspect-ratio:before{content:""}.mdi-assistant:before{content:""}.mdi-asterisk:before{content:""}.mdi-asterisk-circle-outline:before{content:""}.mdi-at:before{content:""}.mdi-atlassian:before{content:""}.mdi-atm:before{content:""}.mdi-atom:before{content:""}.mdi-atom-variant:before{content:""}.mdi-attachment:before{content:""}.mdi-attachment-check:before{content:""}.mdi-attachment-lock:before{content:""}.mdi-attachment-minus:before{content:""}.mdi-attachment-off:before{content:""}.mdi-attachment-plus:before{content:""}.mdi-attachment-remove:before{content:""}.mdi-atv:before{content:""}.mdi-audio-input-rca:before{content:""}.mdi-audio-input-stereo-minijack:before{content:""}.mdi-audio-input-xlr:before{content:""}.mdi-audio-video:before{content:""}.mdi-audio-video-off:before{content:""}.mdi-augmented-reality:before{content:""}.mdi-aurora:before{content:""}.mdi-auto-download:before{content:""}.mdi-auto-fix:before{content:""}.mdi-auto-mode:before{content:""}.mdi-auto-upload:before{content:""}.mdi-autorenew:before{content:""}.mdi-autorenew-off:before{content:""}.mdi-av-timer:before{content:""}.mdi-awning:before{content:""}.mdi-awning-outline:before{content:""}.mdi-aws:before{content:""}.mdi-axe:before{content:""}.mdi-axe-battle:before{content:""}.mdi-axis:before{content:""}.mdi-axis-arrow:before{content:""}.mdi-axis-arrow-info:before{content:""}.mdi-axis-arrow-lock:before{content:""}.mdi-axis-lock:before{content:""}.mdi-axis-x-arrow:before{content:""}.mdi-axis-x-arrow-lock:before{content:""}.mdi-axis-x-rotate-clockwise:before{content:""}.mdi-axis-x-rotate-counterclockwise:before{content:""}.mdi-axis-x-y-arrow-lock:before{content:""}.mdi-axis-y-arrow:before{content:""}.mdi-axis-y-arrow-lock:before{content:""}.mdi-axis-y-rotate-clockwise:before{content:""}.mdi-axis-y-rotate-counterclockwise:before{content:""}.mdi-axis-z-arrow:before{content:""}.mdi-axis-z-arrow-lock:before{content:""}.mdi-axis-z-rotate-clockwise:before{content:""}.mdi-axis-z-rotate-counterclockwise:before{content:""}.mdi-babel:before{content:""}.mdi-baby:before{content:""}.mdi-baby-bottle:before{content:""}.mdi-baby-bottle-outline:before{content:""}.mdi-baby-buggy:before{content:""}.mdi-baby-buggy-off:before{content:""}.mdi-baby-carriage:before{content:""}.mdi-baby-carriage-off:before{content:""}.mdi-baby-face:before{content:""}.mdi-baby-face-outline:before{content:""}.mdi-backburger:before{content:""}.mdi-backspace:before{content:""}.mdi-backspace-outline:before{content:""}.mdi-backspace-reverse:before{content:""}.mdi-backspace-reverse-outline:before{content:""}.mdi-backup-restore:before{content:""}.mdi-bacteria:before{content:""}.mdi-bacteria-outline:before{content:""}.mdi-badge-account:before{content:""}.mdi-badge-account-alert:before{content:""}.mdi-badge-account-alert-outline:before{content:""}.mdi-badge-account-horizontal:before{content:""}.mdi-badge-account-horizontal-outline:before{content:""}.mdi-badge-account-outline:before{content:""}.mdi-badminton:before{content:""}.mdi-bag-carry-on:before{content:""}.mdi-bag-carry-on-check:before{content:""}.mdi-bag-carry-on-off:before{content:""}.mdi-bag-checked:before{content:""}.mdi-bag-personal:before{content:""}.mdi-bag-personal-off:before{content:""}.mdi-bag-personal-off-outline:before{content:""}.mdi-bag-personal-outline:before{content:""}.mdi-bag-personal-plus:before{content:""}.mdi-bag-personal-plus-outline:before{content:""}.mdi-bag-personal-tag:before{content:""}.mdi-bag-personal-tag-outline:before{content:""}.mdi-bag-suitcase:before{content:""}.mdi-bag-suitcase-off:before{content:""}.mdi-bag-suitcase-off-outline:before{content:""}.mdi-bag-suitcase-outline:before{content:""}.mdi-baguette:before{content:""}.mdi-balcony:before{content:""}.mdi-balloon:before{content:""}.mdi-ballot:before{content:""}.mdi-ballot-outline:before{content:""}.mdi-ballot-recount:before{content:""}.mdi-ballot-recount-outline:before{content:""}.mdi-bandage:before{content:""}.mdi-bank:before{content:""}.mdi-bank-check:before{content:""}.mdi-bank-circle:before{content:""}.mdi-bank-circle-outline:before{content:""}.mdi-bank-minus:before{content:""}.mdi-bank-off:before{content:""}.mdi-bank-off-outline:before{content:""}.mdi-bank-outline:before{content:""}.mdi-bank-plus:before{content:""}.mdi-bank-remove:before{content:""}.mdi-bank-transfer:before{content:""}.mdi-bank-transfer-in:before{content:""}.mdi-bank-transfer-out:before{content:""}.mdi-barcode:before{content:""}.mdi-barcode-off:before{content:""}.mdi-barcode-scan:before{content:""}.mdi-barley:before{content:""}.mdi-barley-off:before{content:""}.mdi-barn:before{content:""}.mdi-barrel:before{content:""}.mdi-barrel-outline:before{content:""}.mdi-baseball:before{content:""}.mdi-baseball-bat:before{content:""}.mdi-baseball-diamond:before{content:""}.mdi-baseball-diamond-outline:before{content:""}.mdi-baseball-outline:before{content:""}.mdi-bash:before{content:""}.mdi-basket:before{content:""}.mdi-basket-check:before{content:""}.mdi-basket-check-outline:before{content:""}.mdi-basket-fill:before{content:""}.mdi-basket-minus:before{content:""}.mdi-basket-minus-outline:before{content:""}.mdi-basket-off:before{content:""}.mdi-basket-off-outline:before{content:""}.mdi-basket-outline:before{content:""}.mdi-basket-plus:before{content:""}.mdi-basket-plus-outline:before{content:""}.mdi-basket-remove:before{content:""}.mdi-basket-remove-outline:before{content:""}.mdi-basket-unfill:before{content:""}.mdi-basketball:before{content:""}.mdi-basketball-hoop:before{content:""}.mdi-basketball-hoop-outline:before{content:""}.mdi-bat:before{content:""}.mdi-bathtub:before{content:""}.mdi-bathtub-outline:before{content:""}.mdi-battery:before{content:""}.mdi-battery-10:before{content:""}.mdi-battery-10-bluetooth:before{content:""}.mdi-battery-20:before{content:""}.mdi-battery-20-bluetooth:before{content:""}.mdi-battery-30:before{content:""}.mdi-battery-30-bluetooth:before{content:""}.mdi-battery-40:before{content:""}.mdi-battery-40-bluetooth:before{content:""}.mdi-battery-50:before{content:""}.mdi-battery-50-bluetooth:before{content:""}.mdi-battery-60:before{content:""}.mdi-battery-60-bluetooth:before{content:""}.mdi-battery-70:before{content:""}.mdi-battery-70-bluetooth:before{content:""}.mdi-battery-80:before{content:""}.mdi-battery-80-bluetooth:before{content:""}.mdi-battery-90:before{content:""}.mdi-battery-90-bluetooth:before{content:""}.mdi-battery-alert:before{content:""}.mdi-battery-alert-bluetooth:before{content:""}.mdi-battery-alert-variant:before{content:""}.mdi-battery-alert-variant-outline:before{content:""}.mdi-battery-arrow-down:before{content:""}.mdi-battery-arrow-down-outline:before{content:""}.mdi-battery-arrow-up:before{content:""}.mdi-battery-arrow-up-outline:before{content:""}.mdi-battery-bluetooth:before{content:""}.mdi-battery-bluetooth-variant:before{content:""}.mdi-battery-charging:before{content:""}.mdi-battery-charging-10:before{content:""}.mdi-battery-charging-100:before{content:""}.mdi-battery-charging-20:before{content:""}.mdi-battery-charging-30:before{content:""}.mdi-battery-charging-40:before{content:""}.mdi-battery-charging-50:before{content:""}.mdi-battery-charging-60:before{content:""}.mdi-battery-charging-70:before{content:""}.mdi-battery-charging-80:before{content:""}.mdi-battery-charging-90:before{content:""}.mdi-battery-charging-high:before{content:""}.mdi-battery-charging-low:before{content:""}.mdi-battery-charging-medium:before{content:""}.mdi-battery-charging-outline:before{content:""}.mdi-battery-charging-wireless:before{content:""}.mdi-battery-charging-wireless-10:before{content:""}.mdi-battery-charging-wireless-20:before{content:""}.mdi-battery-charging-wireless-30:before{content:""}.mdi-battery-charging-wireless-40:before{content:""}.mdi-battery-charging-wireless-50:before{content:""}.mdi-battery-charging-wireless-60:before{content:""}.mdi-battery-charging-wireless-70:before{content:""}.mdi-battery-charging-wireless-80:before{content:""}.mdi-battery-charging-wireless-90:before{content:""}.mdi-battery-charging-wireless-alert:before{content:""}.mdi-battery-charging-wireless-outline:before{content:""}.mdi-battery-check:before{content:""}.mdi-battery-check-outline:before{content:""}.mdi-battery-clock:before{content:""}.mdi-battery-clock-outline:before{content:""}.mdi-battery-heart:before{content:""}.mdi-battery-heart-outline:before{content:""}.mdi-battery-heart-variant:before{content:""}.mdi-battery-high:before{content:""}.mdi-battery-lock:before{content:""}.mdi-battery-lock-open:before{content:""}.mdi-battery-low:before{content:""}.mdi-battery-medium:before{content:""}.mdi-battery-minus:before{content:""}.mdi-battery-minus-outline:before{content:""}.mdi-battery-minus-variant:before{content:""}.mdi-battery-negative:before{content:""}.mdi-battery-off:before{content:""}.mdi-battery-off-outline:before{content:""}.mdi-battery-outline:before{content:""}.mdi-battery-plus:before{content:""}.mdi-battery-plus-outline:before{content:""}.mdi-battery-plus-variant:before{content:""}.mdi-battery-positive:before{content:""}.mdi-battery-remove:before{content:""}.mdi-battery-remove-outline:before{content:""}.mdi-battery-sync:before{content:""}.mdi-battery-sync-outline:before{content:""}.mdi-battery-unknown:before{content:""}.mdi-battery-unknown-bluetooth:before{content:""}.mdi-beach:before{content:""}.mdi-beaker:before{content:""}.mdi-beaker-alert:before{content:""}.mdi-beaker-alert-outline:before{content:""}.mdi-beaker-check:before{content:""}.mdi-beaker-check-outline:before{content:""}.mdi-beaker-minus:before{content:""}.mdi-beaker-minus-outline:before{content:""}.mdi-beaker-outline:before{content:""}.mdi-beaker-plus:before{content:""}.mdi-beaker-plus-outline:before{content:""}.mdi-beaker-question:before{content:""}.mdi-beaker-question-outline:before{content:""}.mdi-beaker-remove:before{content:""}.mdi-beaker-remove-outline:before{content:""}.mdi-bed:before{content:""}.mdi-bed-clock:before{content:""}.mdi-bed-double:before{content:""}.mdi-bed-double-outline:before{content:""}.mdi-bed-empty:before{content:""}.mdi-bed-king:before{content:""}.mdi-bed-king-outline:before{content:""}.mdi-bed-outline:before{content:""}.mdi-bed-queen:before{content:""}.mdi-bed-queen-outline:before{content:""}.mdi-bed-single:before{content:""}.mdi-bed-single-outline:before{content:""}.mdi-bee:before{content:""}.mdi-bee-flower:before{content:""}.mdi-beehive-off-outline:before{content:""}.mdi-beehive-outline:before{content:""}.mdi-beekeeper:before{content:""}.mdi-beer:before{content:""}.mdi-beer-outline:before{content:""}.mdi-bell:before{content:""}.mdi-bell-alert:before{content:""}.mdi-bell-alert-outline:before{content:""}.mdi-bell-badge:before{content:""}.mdi-bell-badge-outline:before{content:""}.mdi-bell-cancel:before{content:""}.mdi-bell-cancel-outline:before{content:""}.mdi-bell-check:before{content:""}.mdi-bell-check-outline:before{content:""}.mdi-bell-circle:before{content:""}.mdi-bell-circle-outline:before{content:""}.mdi-bell-cog:before{content:""}.mdi-bell-cog-outline:before{content:""}.mdi-bell-minus:before{content:""}.mdi-bell-minus-outline:before{content:""}.mdi-bell-off:before{content:""}.mdi-bell-off-outline:before{content:""}.mdi-bell-outline:before{content:""}.mdi-bell-plus:before{content:""}.mdi-bell-plus-outline:before{content:""}.mdi-bell-remove:before{content:""}.mdi-bell-remove-outline:before{content:""}.mdi-bell-ring:before{content:""}.mdi-bell-ring-outline:before{content:""}.mdi-bell-sleep:before{content:""}.mdi-bell-sleep-outline:before{content:""}.mdi-bench:before{content:""}.mdi-bench-back:before{content:""}.mdi-beta:before{content:""}.mdi-betamax:before{content:""}.mdi-biathlon:before{content:""}.mdi-bicycle:before{content:""}.mdi-bicycle-basket:before{content:""}.mdi-bicycle-cargo:before{content:""}.mdi-bicycle-electric:before{content:""}.mdi-bicycle-penny-farthing:before{content:""}.mdi-bike:before{content:""}.mdi-bike-fast:before{content:""}.mdi-bike-pedal:before{content:""}.mdi-bike-pedal-clipless:before{content:""}.mdi-bike-pedal-mountain:before{content:""}.mdi-billboard:before{content:""}.mdi-billiards:before{content:""}.mdi-billiards-rack:before{content:""}.mdi-binoculars:before{content:""}.mdi-bio:before{content:""}.mdi-biohazard:before{content:""}.mdi-bird:before{content:""}.mdi-bitbucket:before{content:""}.mdi-bitcoin:before{content:""}.mdi-black-mesa:before{content:""}.mdi-blender:before{content:""}.mdi-blender-outline:before{content:""}.mdi-blender-software:before{content:""}.mdi-blinds:before{content:""}.mdi-blinds-horizontal:before{content:""}.mdi-blinds-horizontal-closed:before{content:""}.mdi-blinds-open:before{content:""}.mdi-blinds-vertical:before{content:""}.mdi-blinds-vertical-closed:before{content:""}.mdi-block-helper:before{content:""}.mdi-blood-bag:before{content:""}.mdi-bluetooth:before{content:""}.mdi-bluetooth-audio:before{content:""}.mdi-bluetooth-connect:before{content:""}.mdi-bluetooth-off:before{content:""}.mdi-bluetooth-settings:before{content:""}.mdi-bluetooth-transfer:before{content:""}.mdi-blur:before{content:""}.mdi-blur-linear:before{content:""}.mdi-blur-off:before{content:""}.mdi-blur-radial:before{content:""}.mdi-bolt:before{content:""}.mdi-bomb:before{content:""}.mdi-bomb-off:before{content:""}.mdi-bone:before{content:""}.mdi-bone-off:before{content:""}.mdi-book:before{content:""}.mdi-book-account:before{content:""}.mdi-book-account-outline:before{content:""}.mdi-book-alert:before{content:""}.mdi-book-alert-outline:before{content:""}.mdi-book-alphabet:before{content:""}.mdi-book-arrow-down:before{content:""}.mdi-book-arrow-down-outline:before{content:""}.mdi-book-arrow-left:before{content:""}.mdi-book-arrow-left-outline:before{content:""}.mdi-book-arrow-right:before{content:""}.mdi-book-arrow-right-outline:before{content:""}.mdi-book-arrow-up:before{content:""}.mdi-book-arrow-up-outline:before{content:""}.mdi-book-cancel:before{content:""}.mdi-book-cancel-outline:before{content:""}.mdi-book-check:before{content:""}.mdi-book-check-outline:before{content:""}.mdi-book-clock:before{content:""}.mdi-book-clock-outline:before{content:""}.mdi-book-cog:before{content:""}.mdi-book-cog-outline:before{content:""}.mdi-book-cross:before{content:""}.mdi-book-edit:before{content:""}.mdi-book-edit-outline:before{content:""}.mdi-book-education:before{content:""}.mdi-book-education-outline:before{content:""}.mdi-book-heart:before{content:""}.mdi-book-heart-outline:before{content:""}.mdi-book-information-variant:before{content:""}.mdi-book-lock:before{content:""}.mdi-book-lock-open:before{content:""}.mdi-book-lock-open-outline:before{content:""}.mdi-book-lock-outline:before{content:""}.mdi-book-marker:before{content:""}.mdi-book-marker-outline:before{content:""}.mdi-book-minus:before{content:""}.mdi-book-minus-multiple:before{content:""}.mdi-book-minus-multiple-outline:before{content:""}.mdi-book-minus-outline:before{content:""}.mdi-book-multiple:before{content:""}.mdi-book-multiple-outline:before{content:""}.mdi-book-music:before{content:""}.mdi-book-music-outline:before{content:""}.mdi-book-off:before{content:""}.mdi-book-off-outline:before{content:""}.mdi-book-open:before{content:""}.mdi-book-open-blank-variant:before{content:""}.mdi-book-open-outline:before{content:""}.mdi-book-open-page-variant:before{content:""}.mdi-book-open-page-variant-outline:before{content:""}.mdi-book-open-variant:before{content:""}.mdi-book-outline:before{content:""}.mdi-book-play:before{content:""}.mdi-book-play-outline:before{content:""}.mdi-book-plus:before{content:""}.mdi-book-plus-multiple:before{content:""}.mdi-book-plus-multiple-outline:before{content:""}.mdi-book-plus-outline:before{content:""}.mdi-book-refresh:before{content:""}.mdi-book-refresh-outline:before{content:""}.mdi-book-remove:before{content:""}.mdi-book-remove-multiple:before{content:""}.mdi-book-remove-multiple-outline:before{content:""}.mdi-book-remove-outline:before{content:""}.mdi-book-search:before{content:""}.mdi-book-search-outline:before{content:""}.mdi-book-settings:before{content:""}.mdi-book-settings-outline:before{content:""}.mdi-book-sync:before{content:""}.mdi-book-sync-outline:before{content:""}.mdi-book-variant:before{content:""}.mdi-bookmark:before{content:""}.mdi-bookmark-box:before{content:""}.mdi-bookmark-box-multiple:before{content:""}.mdi-bookmark-box-multiple-outline:before{content:""}.mdi-bookmark-box-outline:before{content:""}.mdi-bookmark-check:before{content:""}.mdi-bookmark-check-outline:before{content:""}.mdi-bookmark-minus:before{content:""}.mdi-bookmark-minus-outline:before{content:""}.mdi-bookmark-multiple:before{content:""}.mdi-bookmark-multiple-outline:before{content:""}.mdi-bookmark-music:before{content:""}.mdi-bookmark-music-outline:before{content:""}.mdi-bookmark-off:before{content:""}.mdi-bookmark-off-outline:before{content:""}.mdi-bookmark-outline:before{content:""}.mdi-bookmark-plus:before{content:""}.mdi-bookmark-plus-outline:before{content:""}.mdi-bookmark-remove:before{content:""}.mdi-bookmark-remove-outline:before{content:""}.mdi-bookshelf:before{content:""}.mdi-boom-gate:before{content:""}.mdi-boom-gate-alert:before{content:""}.mdi-boom-gate-alert-outline:before{content:""}.mdi-boom-gate-arrow-down:before{content:""}.mdi-boom-gate-arrow-down-outline:before{content:""}.mdi-boom-gate-arrow-up:before{content:""}.mdi-boom-gate-arrow-up-outline:before{content:""}.mdi-boom-gate-outline:before{content:""}.mdi-boom-gate-up:before{content:""}.mdi-boom-gate-up-outline:before{content:""}.mdi-boombox:before{content:""}.mdi-boomerang:before{content:""}.mdi-bootstrap:before{content:""}.mdi-border-all:before{content:""}.mdi-border-all-variant:before{content:""}.mdi-border-bottom:before{content:""}.mdi-border-bottom-variant:before{content:""}.mdi-border-color:before{content:""}.mdi-border-horizontal:before{content:""}.mdi-border-inside:before{content:""}.mdi-border-left:before{content:""}.mdi-border-left-variant:before{content:""}.mdi-border-none:before{content:""}.mdi-border-none-variant:before{content:""}.mdi-border-outside:before{content:""}.mdi-border-radius:before{content:""}.mdi-border-right:before{content:""}.mdi-border-right-variant:before{content:""}.mdi-border-style:before{content:""}.mdi-border-top:before{content:""}.mdi-border-top-variant:before{content:""}.mdi-border-vertical:before{content:""}.mdi-bottle-soda:before{content:""}.mdi-bottle-soda-classic:before{content:""}.mdi-bottle-soda-classic-outline:before{content:""}.mdi-bottle-soda-outline:before{content:""}.mdi-bottle-tonic:before{content:""}.mdi-bottle-tonic-outline:before{content:""}.mdi-bottle-tonic-plus:before{content:""}.mdi-bottle-tonic-plus-outline:before{content:""}.mdi-bottle-tonic-skull:before{content:""}.mdi-bottle-tonic-skull-outline:before{content:""}.mdi-bottle-wine:before{content:""}.mdi-bottle-wine-outline:before{content:""}.mdi-bow-arrow:before{content:""}.mdi-bow-tie:before{content:""}.mdi-bowl:before{content:""}.mdi-bowl-mix:before{content:""}.mdi-bowl-mix-outline:before{content:""}.mdi-bowl-outline:before{content:""}.mdi-bowling:before{content:""}.mdi-box:before{content:""}.mdi-box-cutter:before{content:""}.mdi-box-cutter-off:before{content:""}.mdi-box-shadow:before{content:""}.mdi-boxing-glove:before{content:""}.mdi-braille:before{content:""}.mdi-brain:before{content:""}.mdi-bread-slice:before{content:""}.mdi-bread-slice-outline:before{content:""}.mdi-bridge:before{content:""}.mdi-briefcase:before{content:""}.mdi-briefcase-account:before{content:""}.mdi-briefcase-account-outline:before{content:""}.mdi-briefcase-arrow-left-right:before{content:""}.mdi-briefcase-arrow-left-right-outline:before{content:""}.mdi-briefcase-arrow-up-down:before{content:""}.mdi-briefcase-arrow-up-down-outline:before{content:""}.mdi-briefcase-check:before{content:""}.mdi-briefcase-check-outline:before{content:""}.mdi-briefcase-clock:before{content:""}.mdi-briefcase-clock-outline:before{content:""}.mdi-briefcase-download:before{content:""}.mdi-briefcase-download-outline:before{content:""}.mdi-briefcase-edit:before{content:""}.mdi-briefcase-edit-outline:before{content:""}.mdi-briefcase-eye:before{content:""}.mdi-briefcase-eye-outline:before{content:""}.mdi-briefcase-minus:before{content:""}.mdi-briefcase-minus-outline:before{content:""}.mdi-briefcase-off:before{content:""}.mdi-briefcase-off-outline:before{content:""}.mdi-briefcase-outline:before{content:""}.mdi-briefcase-plus:before{content:""}.mdi-briefcase-plus-outline:before{content:""}.mdi-briefcase-remove:before{content:""}.mdi-briefcase-remove-outline:before{content:""}.mdi-briefcase-search:before{content:""}.mdi-briefcase-search-outline:before{content:""}.mdi-briefcase-upload:before{content:""}.mdi-briefcase-upload-outline:before{content:""}.mdi-briefcase-variant:before{content:""}.mdi-briefcase-variant-off:before{content:""}.mdi-briefcase-variant-off-outline:before{content:""}.mdi-briefcase-variant-outline:before{content:""}.mdi-brightness-1:before{content:""}.mdi-brightness-2:before{content:""}.mdi-brightness-3:before{content:""}.mdi-brightness-4:before{content:""}.mdi-brightness-5:before{content:""}.mdi-brightness-6:before{content:""}.mdi-brightness-7:before{content:""}.mdi-brightness-auto:before{content:""}.mdi-brightness-percent:before{content:""}.mdi-broadcast:before{content:""}.mdi-broadcast-off:before{content:""}.mdi-broom:before{content:""}.mdi-brush:before{content:""}.mdi-brush-off:before{content:""}.mdi-brush-outline:before{content:""}.mdi-brush-variant:before{content:""}.mdi-bucket:before{content:""}.mdi-bucket-outline:before{content:""}.mdi-buffet:before{content:""}.mdi-bug:before{content:""}.mdi-bug-check:before{content:""}.mdi-bug-check-outline:before{content:""}.mdi-bug-outline:before{content:""}.mdi-bug-pause:before{content:""}.mdi-bug-pause-outline:before{content:""}.mdi-bug-play:before{content:""}.mdi-bug-play-outline:before{content:""}.mdi-bug-stop:before{content:""}.mdi-bug-stop-outline:before{content:""}.mdi-bugle:before{content:""}.mdi-bulkhead-light:before{content:""}.mdi-bulldozer:before{content:""}.mdi-bullet:before{content:""}.mdi-bulletin-board:before{content:""}.mdi-bullhorn:before{content:""}.mdi-bullhorn-outline:before{content:""}.mdi-bullhorn-variant:before{content:""}.mdi-bullhorn-variant-outline:before{content:""}.mdi-bullseye:before{content:""}.mdi-bullseye-arrow:before{content:""}.mdi-bulma:before{content:""}.mdi-bunk-bed:before{content:""}.mdi-bunk-bed-outline:before{content:""}.mdi-bus:before{content:""}.mdi-bus-alert:before{content:""}.mdi-bus-articulated-end:before{content:""}.mdi-bus-articulated-front:before{content:""}.mdi-bus-clock:before{content:""}.mdi-bus-double-decker:before{content:""}.mdi-bus-electric:before{content:""}.mdi-bus-marker:before{content:""}.mdi-bus-multiple:before{content:""}.mdi-bus-school:before{content:""}.mdi-bus-side:before{content:""}.mdi-bus-sign:before{content:""}.mdi-bus-stop:before{content:""}.mdi-bus-stop-covered:before{content:""}.mdi-bus-stop-uncovered:before{content:""}.mdi-bus-wrench:before{content:""}.mdi-butterfly:before{content:""}.mdi-butterfly-outline:before{content:""}.mdi-button-cursor:before{content:""}.mdi-button-pointer:before{content:""}.mdi-cabin-a-frame:before{content:""}.mdi-cable-data:before{content:""}.mdi-cached:before{content:""}.mdi-cactus:before{content:""}.mdi-cake:before{content:""}.mdi-cake-layered:before{content:""}.mdi-cake-variant:before{content:""}.mdi-cake-variant-outline:before{content:""}.mdi-calculator:before{content:""}.mdi-calculator-variant:before{content:""}.mdi-calculator-variant-outline:before{content:""}.mdi-calendar:before{content:""}.mdi-calendar-account:before{content:""}.mdi-calendar-account-outline:before{content:""}.mdi-calendar-alert:before{content:""}.mdi-calendar-alert-outline:before{content:""}.mdi-calendar-arrow-left:before{content:""}.mdi-calendar-arrow-right:before{content:""}.mdi-calendar-badge:before{content:""}.mdi-calendar-badge-outline:before{content:""}.mdi-calendar-blank:before{content:""}.mdi-calendar-blank-multiple:before{content:""}.mdi-calendar-blank-outline:before{content:""}.mdi-calendar-check:before{content:""}.mdi-calendar-check-outline:before{content:""}.mdi-calendar-clock:before{content:""}.mdi-calendar-clock-outline:before{content:""}.mdi-calendar-collapse-horizontal:before{content:""}.mdi-calendar-collapse-horizontal-outline:before{content:""}.mdi-calendar-cursor:before{content:""}.mdi-calendar-cursor-outline:before{content:""}.mdi-calendar-edit:before{content:""}.mdi-calendar-edit-outline:before{content:""}.mdi-calendar-end:before{content:""}.mdi-calendar-end-outline:before{content:""}.mdi-calendar-expand-horizontal:before{content:""}.mdi-calendar-expand-horizontal-outline:before{content:""}.mdi-calendar-export:before{content:""}.mdi-calendar-export-outline:before{content:""}.mdi-calendar-filter:before{content:""}.mdi-calendar-filter-outline:before{content:""}.mdi-calendar-heart:before{content:""}.mdi-calendar-heart-outline:before{content:""}.mdi-calendar-import:before{content:""}.mdi-calendar-import-outline:before{content:""}.mdi-calendar-lock:before{content:""}.mdi-calendar-lock-open:before{content:""}.mdi-calendar-lock-open-outline:before{content:""}.mdi-calendar-lock-outline:before{content:""}.mdi-calendar-minus:before{content:""}.mdi-calendar-minus-outline:before{content:""}.mdi-calendar-month:before{content:""}.mdi-calendar-month-outline:before{content:""}.mdi-calendar-multiple:before{content:""}.mdi-calendar-multiple-check:before{content:""}.mdi-calendar-multiselect:before{content:""}.mdi-calendar-multiselect-outline:before{content:""}.mdi-calendar-outline:before{content:""}.mdi-calendar-plus:before{content:""}.mdi-calendar-plus-outline:before{content:""}.mdi-calendar-question:before{content:""}.mdi-calendar-question-outline:before{content:""}.mdi-calendar-range:before{content:""}.mdi-calendar-range-outline:before{content:""}.mdi-calendar-refresh:before{content:""}.mdi-calendar-refresh-outline:before{content:""}.mdi-calendar-remove:before{content:""}.mdi-calendar-remove-outline:before{content:""}.mdi-calendar-search:before{content:""}.mdi-calendar-search-outline:before{content:""}.mdi-calendar-star:before{content:""}.mdi-calendar-star-four-points:before{content:""}.mdi-calendar-star-outline:before{content:""}.mdi-calendar-start:before{content:""}.mdi-calendar-start-outline:before{content:""}.mdi-calendar-sync:before{content:""}.mdi-calendar-sync-outline:before{content:""}.mdi-calendar-text:before{content:""}.mdi-calendar-text-outline:before{content:""}.mdi-calendar-today:before{content:""}.mdi-calendar-today-outline:before{content:""}.mdi-calendar-week:before{content:""}.mdi-calendar-week-begin:before{content:""}.mdi-calendar-week-begin-outline:before{content:""}.mdi-calendar-week-outline:before{content:""}.mdi-calendar-weekend:before{content:""}.mdi-calendar-weekend-outline:before{content:""}.mdi-call-made:before{content:""}.mdi-call-merge:before{content:""}.mdi-call-missed:before{content:""}.mdi-call-received:before{content:""}.mdi-call-split:before{content:""}.mdi-camcorder:before{content:""}.mdi-camcorder-off:before{content:""}.mdi-camera:before{content:""}.mdi-camera-account:before{content:""}.mdi-camera-burst:before{content:""}.mdi-camera-control:before{content:""}.mdi-camera-document:before{content:""}.mdi-camera-document-off:before{content:""}.mdi-camera-enhance:before{content:""}.mdi-camera-enhance-outline:before{content:""}.mdi-camera-flip:before{content:""}.mdi-camera-flip-outline:before{content:""}.mdi-camera-front:before{content:""}.mdi-camera-front-variant:before{content:""}.mdi-camera-gopro:before{content:""}.mdi-camera-image:before{content:""}.mdi-camera-iris:before{content:""}.mdi-camera-lock:before{content:""}.mdi-camera-lock-open:before{content:""}.mdi-camera-lock-open-outline:before{content:""}.mdi-camera-lock-outline:before{content:""}.mdi-camera-marker:before{content:""}.mdi-camera-marker-outline:before{content:""}.mdi-camera-metering-center:before{content:""}.mdi-camera-metering-matrix:before{content:""}.mdi-camera-metering-partial:before{content:""}.mdi-camera-metering-spot:before{content:""}.mdi-camera-off:before{content:""}.mdi-camera-off-outline:before{content:""}.mdi-camera-outline:before{content:""}.mdi-camera-party-mode:before{content:""}.mdi-camera-plus:before{content:""}.mdi-camera-plus-outline:before{content:""}.mdi-camera-rear:before{content:""}.mdi-camera-rear-variant:before{content:""}.mdi-camera-retake:before{content:""}.mdi-camera-retake-outline:before{content:""}.mdi-camera-switch:before{content:""}.mdi-camera-switch-outline:before{content:""}.mdi-camera-timer:before{content:""}.mdi-camera-wireless:before{content:""}.mdi-camera-wireless-outline:before{content:""}.mdi-campfire:before{content:""}.mdi-cancel:before{content:""}.mdi-candelabra:before{content:""}.mdi-candelabra-fire:before{content:""}.mdi-candle:before{content:""}.mdi-candy:before{content:""}.mdi-candy-off:before{content:""}.mdi-candy-off-outline:before{content:""}.mdi-candy-outline:before{content:""}.mdi-candycane:before{content:""}.mdi-cannabis:before{content:""}.mdi-cannabis-off:before{content:""}.mdi-caps-lock:before{content:""}.mdi-car:before{content:""}.mdi-car-2-plus:before{content:""}.mdi-car-3-plus:before{content:""}.mdi-car-arrow-left:before{content:""}.mdi-car-arrow-right:before{content:""}.mdi-car-back:before{content:""}.mdi-car-battery:before{content:""}.mdi-car-brake-abs:before{content:""}.mdi-car-brake-alert:before{content:""}.mdi-car-brake-fluid-level:before{content:""}.mdi-car-brake-hold:before{content:""}.mdi-car-brake-low-pressure:before{content:""}.mdi-car-brake-parking:before{content:""}.mdi-car-brake-retarder:before{content:""}.mdi-car-brake-temperature:before{content:""}.mdi-car-brake-worn-linings:before{content:""}.mdi-car-child-seat:before{content:""}.mdi-car-clock:before{content:""}.mdi-car-clutch:before{content:""}.mdi-car-cog:before{content:""}.mdi-car-connected:before{content:""}.mdi-car-convertible:before{content:""}.mdi-car-coolant-level:before{content:""}.mdi-car-cruise-control:before{content:""}.mdi-car-defrost-front:before{content:""}.mdi-car-defrost-rear:before{content:""}.mdi-car-door:before{content:""}.mdi-car-door-lock:before{content:""}.mdi-car-door-lock-open:before{content:""}.mdi-car-electric:before{content:""}.mdi-car-electric-outline:before{content:""}.mdi-car-emergency:before{content:""}.mdi-car-esp:before{content:""}.mdi-car-estate:before{content:""}.mdi-car-hatchback:before{content:""}.mdi-car-info:before{content:""}.mdi-car-key:before{content:""}.mdi-car-lifted-pickup:before{content:""}.mdi-car-light-alert:before{content:""}.mdi-car-light-dimmed:before{content:""}.mdi-car-light-fog:before{content:""}.mdi-car-light-high:before{content:""}.mdi-car-limousine:before{content:""}.mdi-car-multiple:before{content:""}.mdi-car-off:before{content:""}.mdi-car-outline:before{content:""}.mdi-car-parking-lights:before{content:""}.mdi-car-pickup:before{content:""}.mdi-car-search:before{content:""}.mdi-car-search-outline:before{content:""}.mdi-car-seat:before{content:""}.mdi-car-seat-cooler:before{content:""}.mdi-car-seat-heater:before{content:""}.mdi-car-select:before{content:""}.mdi-car-settings:before{content:""}.mdi-car-shift-pattern:before{content:""}.mdi-car-side:before{content:""}.mdi-car-speed-limiter:before{content:""}.mdi-car-sports:before{content:""}.mdi-car-tire-alert:before{content:""}.mdi-car-traction-control:before{content:""}.mdi-car-turbocharger:before{content:""}.mdi-car-wash:before{content:""}.mdi-car-windshield:before{content:""}.mdi-car-windshield-outline:before{content:""}.mdi-car-wireless:before{content:""}.mdi-car-wrench:before{content:""}.mdi-carabiner:before{content:""}.mdi-caravan:before{content:""}.mdi-card:before{content:""}.mdi-card-account-details:before{content:""}.mdi-card-account-details-outline:before{content:""}.mdi-card-account-details-star:before{content:""}.mdi-card-account-details-star-outline:before{content:""}.mdi-card-account-mail:before{content:""}.mdi-card-account-mail-outline:before{content:""}.mdi-card-account-phone:before{content:""}.mdi-card-account-phone-outline:before{content:""}.mdi-card-bulleted:before{content:""}.mdi-card-bulleted-off:before{content:""}.mdi-card-bulleted-off-outline:before{content:""}.mdi-card-bulleted-outline:before{content:""}.mdi-card-bulleted-settings:before{content:""}.mdi-card-bulleted-settings-outline:before{content:""}.mdi-card-minus:before{content:""}.mdi-card-minus-outline:before{content:""}.mdi-card-multiple:before{content:""}.mdi-card-multiple-outline:before{content:""}.mdi-card-off:before{content:""}.mdi-card-off-outline:before{content:""}.mdi-card-outline:before{content:""}.mdi-card-plus:before{content:""}.mdi-card-plus-outline:before{content:""}.mdi-card-remove:before{content:""}.mdi-card-remove-outline:before{content:""}.mdi-card-search:before{content:""}.mdi-card-search-outline:before{content:""}.mdi-card-text:before{content:""}.mdi-card-text-outline:before{content:""}.mdi-cards:before{content:""}.mdi-cards-club:before{content:""}.mdi-cards-club-outline:before{content:""}.mdi-cards-diamond:before{content:""}.mdi-cards-diamond-outline:before{content:""}.mdi-cards-heart:before{content:""}.mdi-cards-heart-outline:before{content:""}.mdi-cards-outline:before{content:""}.mdi-cards-playing:before{content:""}.mdi-cards-playing-club:before{content:""}.mdi-cards-playing-club-multiple:before{content:""}.mdi-cards-playing-club-multiple-outline:before{content:""}.mdi-cards-playing-club-outline:before{content:""}.mdi-cards-playing-diamond:before{content:""}.mdi-cards-playing-diamond-multiple:before{content:""}.mdi-cards-playing-diamond-multiple-outline:before{content:""}.mdi-cards-playing-diamond-outline:before{content:""}.mdi-cards-playing-heart:before{content:""}.mdi-cards-playing-heart-multiple:before{content:""}.mdi-cards-playing-heart-multiple-outline:before{content:""}.mdi-cards-playing-heart-outline:before{content:""}.mdi-cards-playing-outline:before{content:""}.mdi-cards-playing-spade:before{content:""}.mdi-cards-playing-spade-multiple:before{content:""}.mdi-cards-playing-spade-multiple-outline:before{content:""}.mdi-cards-playing-spade-outline:before{content:""}.mdi-cards-spade:before{content:""}.mdi-cards-spade-outline:before{content:""}.mdi-cards-variant:before{content:""}.mdi-carrot:before{content:""}.mdi-cart:before{content:""}.mdi-cart-arrow-down:before{content:""}.mdi-cart-arrow-right:before{content:""}.mdi-cart-arrow-up:before{content:""}.mdi-cart-check:before{content:""}.mdi-cart-heart:before{content:""}.mdi-cart-minus:before{content:""}.mdi-cart-off:before{content:""}.mdi-cart-outline:before{content:""}.mdi-cart-percent:before{content:""}.mdi-cart-plus:before{content:""}.mdi-cart-remove:before{content:""}.mdi-cart-variant:before{content:""}.mdi-case-sensitive-alt:before{content:""}.mdi-cash:before{content:""}.mdi-cash-100:before{content:""}.mdi-cash-check:before{content:""}.mdi-cash-clock:before{content:""}.mdi-cash-edit:before{content:""}.mdi-cash-fast:before{content:""}.mdi-cash-lock:before{content:""}.mdi-cash-lock-open:before{content:""}.mdi-cash-marker:before{content:""}.mdi-cash-minus:before{content:""}.mdi-cash-multiple:before{content:""}.mdi-cash-off:before{content:""}.mdi-cash-plus:before{content:""}.mdi-cash-refund:before{content:""}.mdi-cash-register:before{content:""}.mdi-cash-remove:before{content:""}.mdi-cash-sync:before{content:""}.mdi-cassette:before{content:""}.mdi-cast:before{content:""}.mdi-cast-audio:before{content:""}.mdi-cast-audio-variant:before{content:""}.mdi-cast-connected:before{content:""}.mdi-cast-education:before{content:""}.mdi-cast-off:before{content:""}.mdi-cast-variant:before{content:""}.mdi-castle:before{content:""}.mdi-cat:before{content:""}.mdi-cctv:before{content:""}.mdi-cctv-off:before{content:""}.mdi-ceiling-fan:before{content:""}.mdi-ceiling-fan-light:before{content:""}.mdi-ceiling-light:before{content:""}.mdi-ceiling-light-multiple:before{content:""}.mdi-ceiling-light-multiple-outline:before{content:""}.mdi-ceiling-light-outline:before{content:""}.mdi-cellphone:before{content:""}.mdi-cellphone-arrow-down:before{content:""}.mdi-cellphone-arrow-down-variant:before{content:""}.mdi-cellphone-basic:before{content:""}.mdi-cellphone-charging:before{content:""}.mdi-cellphone-check:before{content:""}.mdi-cellphone-cog:before{content:""}.mdi-cellphone-dock:before{content:""}.mdi-cellphone-information:before{content:""}.mdi-cellphone-key:before{content:""}.mdi-cellphone-link:before{content:""}.mdi-cellphone-link-off:before{content:""}.mdi-cellphone-lock:before{content:""}.mdi-cellphone-marker:before{content:""}.mdi-cellphone-message:before{content:""}.mdi-cellphone-message-off:before{content:""}.mdi-cellphone-nfc:before{content:""}.mdi-cellphone-nfc-off:before{content:""}.mdi-cellphone-off:before{content:""}.mdi-cellphone-play:before{content:""}.mdi-cellphone-remove:before{content:""}.mdi-cellphone-screenshot:before{content:""}.mdi-cellphone-settings:before{content:""}.mdi-cellphone-sound:before{content:""}.mdi-cellphone-text:before{content:""}.mdi-cellphone-wireless:before{content:""}.mdi-centos:before{content:""}.mdi-certificate:before{content:""}.mdi-certificate-outline:before{content:""}.mdi-chair-rolling:before{content:""}.mdi-chair-school:before{content:""}.mdi-chandelier:before{content:""}.mdi-charity:before{content:""}.mdi-charity-search:before{content:""}.mdi-chart-arc:before{content:""}.mdi-chart-areaspline:before{content:""}.mdi-chart-areaspline-variant:before{content:""}.mdi-chart-bar:before{content:""}.mdi-chart-bar-stacked:before{content:""}.mdi-chart-bell-curve:before{content:""}.mdi-chart-bell-curve-cumulative:before{content:""}.mdi-chart-box:before{content:""}.mdi-chart-box-outline:before{content:""}.mdi-chart-box-plus-outline:before{content:""}.mdi-chart-bubble:before{content:""}.mdi-chart-donut:before{content:""}.mdi-chart-donut-variant:before{content:""}.mdi-chart-gantt:before{content:""}.mdi-chart-histogram:before{content:""}.mdi-chart-line:before{content:""}.mdi-chart-line-stacked:before{content:""}.mdi-chart-line-variant:before{content:""}.mdi-chart-multiline:before{content:""}.mdi-chart-multiple:before{content:""}.mdi-chart-pie:before{content:""}.mdi-chart-pie-outline:before{content:""}.mdi-chart-ppf:before{content:""}.mdi-chart-sankey:before{content:""}.mdi-chart-sankey-variant:before{content:""}.mdi-chart-scatter-plot:before{content:""}.mdi-chart-scatter-plot-hexbin:before{content:""}.mdi-chart-timeline:before{content:""}.mdi-chart-timeline-variant:before{content:""}.mdi-chart-timeline-variant-shimmer:before{content:""}.mdi-chart-tree:before{content:""}.mdi-chart-waterfall:before{content:""}.mdi-chat:before{content:""}.mdi-chat-alert:before{content:""}.mdi-chat-alert-outline:before{content:""}.mdi-chat-minus:before{content:""}.mdi-chat-minus-outline:before{content:""}.mdi-chat-outline:before{content:""}.mdi-chat-plus:before{content:""}.mdi-chat-plus-outline:before{content:""}.mdi-chat-processing:before{content:""}.mdi-chat-processing-outline:before{content:""}.mdi-chat-question:before{content:""}.mdi-chat-question-outline:before{content:""}.mdi-chat-remove:before{content:""}.mdi-chat-remove-outline:before{content:""}.mdi-chat-sleep:before{content:""}.mdi-chat-sleep-outline:before{content:""}.mdi-check:before{content:""}.mdi-check-all:before{content:""}.mdi-check-bold:before{content:""}.mdi-check-circle:before{content:""}.mdi-check-circle-outline:before{content:""}.mdi-check-decagram:before{content:""}.mdi-check-decagram-outline:before{content:""}.mdi-check-network:before{content:""}.mdi-check-network-outline:before{content:""}.mdi-check-outline:before{content:""}.mdi-check-underline:before{content:""}.mdi-check-underline-circle:before{content:""}.mdi-check-underline-circle-outline:before{content:""}.mdi-checkbook:before{content:""}.mdi-checkbook-arrow-left:before{content:""}.mdi-checkbook-arrow-right:before{content:""}.mdi-checkbox-blank:before{content:""}.mdi-checkbox-blank-badge:before{content:""}.mdi-checkbox-blank-badge-outline:before{content:""}.mdi-checkbox-blank-circle:before{content:""}.mdi-checkbox-blank-circle-outline:before{content:""}.mdi-checkbox-blank-off:before{content:""}.mdi-checkbox-blank-off-outline:before{content:""}.mdi-checkbox-blank-outline:before{content:""}.mdi-checkbox-intermediate:before{content:""}.mdi-checkbox-intermediate-variant:before{content:""}.mdi-checkbox-marked:before{content:""}.mdi-checkbox-marked-circle:before{content:""}.mdi-checkbox-marked-circle-auto-outline:before{content:""}.mdi-checkbox-marked-circle-minus-outline:before{content:""}.mdi-checkbox-marked-circle-outline:before{content:""}.mdi-checkbox-marked-circle-plus-outline:before{content:""}.mdi-checkbox-marked-outline:before{content:""}.mdi-checkbox-multiple-blank:before{content:""}.mdi-checkbox-multiple-blank-circle:before{content:""}.mdi-checkbox-multiple-blank-circle-outline:before{content:""}.mdi-checkbox-multiple-blank-outline:before{content:""}.mdi-checkbox-multiple-marked:before{content:""}.mdi-checkbox-multiple-marked-circle:before{content:""}.mdi-checkbox-multiple-marked-circle-outline:before{content:""}.mdi-checkbox-multiple-marked-outline:before{content:""}.mdi-checkbox-multiple-outline:before{content:""}.mdi-checkbox-outline:before{content:""}.mdi-checkerboard:before{content:""}.mdi-checkerboard-minus:before{content:""}.mdi-checkerboard-plus:before{content:""}.mdi-checkerboard-remove:before{content:""}.mdi-cheese:before{content:""}.mdi-cheese-off:before{content:""}.mdi-chef-hat:before{content:""}.mdi-chemical-weapon:before{content:""}.mdi-chess-bishop:before{content:""}.mdi-chess-king:before{content:""}.mdi-chess-knight:before{content:""}.mdi-chess-pawn:before{content:""}.mdi-chess-queen:before{content:""}.mdi-chess-rook:before{content:""}.mdi-chevron-double-down:before{content:""}.mdi-chevron-double-left:before{content:""}.mdi-chevron-double-right:before{content:""}.mdi-chevron-double-up:before{content:""}.mdi-chevron-down:before{content:""}.mdi-chevron-down-box:before{content:""}.mdi-chevron-down-box-outline:before{content:""}.mdi-chevron-down-circle:before{content:""}.mdi-chevron-down-circle-outline:before{content:""}.mdi-chevron-left:before{content:""}.mdi-chevron-left-box:before{content:""}.mdi-chevron-left-box-outline:before{content:""}.mdi-chevron-left-circle:before{content:""}.mdi-chevron-left-circle-outline:before{content:""}.mdi-chevron-right:before{content:""}.mdi-chevron-right-box:before{content:""}.mdi-chevron-right-box-outline:before{content:""}.mdi-chevron-right-circle:before{content:""}.mdi-chevron-right-circle-outline:before{content:""}.mdi-chevron-triple-down:before{content:""}.mdi-chevron-triple-left:before{content:""}.mdi-chevron-triple-right:before{content:""}.mdi-chevron-triple-up:before{content:""}.mdi-chevron-up:before{content:""}.mdi-chevron-up-box:before{content:""}.mdi-chevron-up-box-outline:before{content:""}.mdi-chevron-up-circle:before{content:""}.mdi-chevron-up-circle-outline:before{content:""}.mdi-chili-alert:before{content:""}.mdi-chili-alert-outline:before{content:""}.mdi-chili-hot:before{content:""}.mdi-chili-hot-outline:before{content:""}.mdi-chili-medium:before{content:""}.mdi-chili-medium-outline:before{content:""}.mdi-chili-mild:before{content:""}.mdi-chili-mild-outline:before{content:""}.mdi-chili-off:before{content:""}.mdi-chili-off-outline:before{content:""}.mdi-chip:before{content:""}.mdi-church:before{content:""}.mdi-church-outline:before{content:""}.mdi-cigar:before{content:""}.mdi-cigar-off:before{content:""}.mdi-circle:before{content:""}.mdi-circle-box:before{content:""}.mdi-circle-box-outline:before{content:""}.mdi-circle-double:before{content:""}.mdi-circle-edit-outline:before{content:""}.mdi-circle-expand:before{content:""}.mdi-circle-half:before{content:""}.mdi-circle-half-full:before{content:""}.mdi-circle-medium:before{content:""}.mdi-circle-multiple:before{content:""}.mdi-circle-multiple-outline:before{content:""}.mdi-circle-off-outline:before{content:""}.mdi-circle-opacity:before{content:""}.mdi-circle-outline:before{content:""}.mdi-circle-slice-1:before{content:""}.mdi-circle-slice-2:before{content:""}.mdi-circle-slice-3:before{content:""}.mdi-circle-slice-4:before{content:""}.mdi-circle-slice-5:before{content:""}.mdi-circle-slice-6:before{content:""}.mdi-circle-slice-7:before{content:""}.mdi-circle-slice-8:before{content:""}.mdi-circle-small:before{content:""}.mdi-circular-saw:before{content:""}.mdi-city:before{content:""}.mdi-city-switch:before{content:""}.mdi-city-variant:before{content:""}.mdi-city-variant-outline:before{content:""}.mdi-clipboard:before{content:""}.mdi-clipboard-account:before{content:""}.mdi-clipboard-account-outline:before{content:""}.mdi-clipboard-alert:before{content:""}.mdi-clipboard-alert-outline:before{content:""}.mdi-clipboard-arrow-down:before{content:""}.mdi-clipboard-arrow-down-outline:before{content:""}.mdi-clipboard-arrow-left:before{content:""}.mdi-clipboard-arrow-left-outline:before{content:""}.mdi-clipboard-arrow-right:before{content:""}.mdi-clipboard-arrow-right-outline:before{content:""}.mdi-clipboard-arrow-up:before{content:""}.mdi-clipboard-arrow-up-outline:before{content:""}.mdi-clipboard-check:before{content:""}.mdi-clipboard-check-multiple:before{content:""}.mdi-clipboard-check-multiple-outline:before{content:""}.mdi-clipboard-check-outline:before{content:""}.mdi-clipboard-clock:before{content:""}.mdi-clipboard-clock-outline:before{content:""}.mdi-clipboard-edit:before{content:""}.mdi-clipboard-edit-outline:before{content:""}.mdi-clipboard-file:before{content:""}.mdi-clipboard-file-outline:before{content:""}.mdi-clipboard-flow:before{content:""}.mdi-clipboard-flow-outline:before{content:""}.mdi-clipboard-list:before{content:""}.mdi-clipboard-list-outline:before{content:""}.mdi-clipboard-minus:before{content:""}.mdi-clipboard-minus-outline:before{content:""}.mdi-clipboard-multiple:before{content:""}.mdi-clipboard-multiple-outline:before{content:""}.mdi-clipboard-off:before{content:""}.mdi-clipboard-off-outline:before{content:""}.mdi-clipboard-outline:before{content:""}.mdi-clipboard-play:before{content:""}.mdi-clipboard-play-multiple:before{content:""}.mdi-clipboard-play-multiple-outline:before{content:""}.mdi-clipboard-play-outline:before{content:""}.mdi-clipboard-plus:before{content:""}.mdi-clipboard-plus-outline:before{content:""}.mdi-clipboard-pulse:before{content:""}.mdi-clipboard-pulse-outline:before{content:""}.mdi-clipboard-remove:before{content:""}.mdi-clipboard-remove-outline:before{content:""}.mdi-clipboard-search:before{content:""}.mdi-clipboard-search-outline:before{content:""}.mdi-clipboard-text:before{content:""}.mdi-clipboard-text-clock:before{content:""}.mdi-clipboard-text-clock-outline:before{content:""}.mdi-clipboard-text-multiple:before{content:""}.mdi-clipboard-text-multiple-outline:before{content:""}.mdi-clipboard-text-off:before{content:""}.mdi-clipboard-text-off-outline:before{content:""}.mdi-clipboard-text-outline:before{content:""}.mdi-clipboard-text-play:before{content:""}.mdi-clipboard-text-play-outline:before{content:""}.mdi-clipboard-text-search:before{content:""}.mdi-clipboard-text-search-outline:before{content:""}.mdi-clippy:before{content:""}.mdi-clock:before{content:""}.mdi-clock-alert:before{content:""}.mdi-clock-alert-outline:before{content:""}.mdi-clock-check:before{content:""}.mdi-clock-check-outline:before{content:""}.mdi-clock-digital:before{content:""}.mdi-clock-edit:before{content:""}.mdi-clock-edit-outline:before{content:""}.mdi-clock-end:before{content:""}.mdi-clock-fast:before{content:""}.mdi-clock-in:before{content:""}.mdi-clock-minus:before{content:""}.mdi-clock-minus-outline:before{content:""}.mdi-clock-out:before{content:""}.mdi-clock-outline:before{content:""}.mdi-clock-plus:before{content:""}.mdi-clock-plus-outline:before{content:""}.mdi-clock-remove:before{content:""}.mdi-clock-remove-outline:before{content:""}.mdi-clock-star-four-points:before{content:""}.mdi-clock-star-four-points-outline:before{content:""}.mdi-clock-start:before{content:""}.mdi-clock-time-eight:before{content:""}.mdi-clock-time-eight-outline:before{content:""}.mdi-clock-time-eleven:before{content:""}.mdi-clock-time-eleven-outline:before{content:""}.mdi-clock-time-five:before{content:""}.mdi-clock-time-five-outline:before{content:""}.mdi-clock-time-four:before{content:""}.mdi-clock-time-four-outline:before{content:""}.mdi-clock-time-nine:before{content:""}.mdi-clock-time-nine-outline:before{content:""}.mdi-clock-time-one:before{content:""}.mdi-clock-time-one-outline:before{content:""}.mdi-clock-time-seven:before{content:""}.mdi-clock-time-seven-outline:before{content:""}.mdi-clock-time-six:before{content:""}.mdi-clock-time-six-outline:before{content:""}.mdi-clock-time-ten:before{content:""}.mdi-clock-time-ten-outline:before{content:""}.mdi-clock-time-three:before{content:""}.mdi-clock-time-three-outline:before{content:""}.mdi-clock-time-twelve:before{content:""}.mdi-clock-time-twelve-outline:before{content:""}.mdi-clock-time-two:before{content:""}.mdi-clock-time-two-outline:before{content:""}.mdi-close:before{content:""}.mdi-close-box:before{content:""}.mdi-close-box-multiple:before{content:""}.mdi-close-box-multiple-outline:before{content:""}.mdi-close-box-outline:before{content:""}.mdi-close-circle:before{content:""}.mdi-close-circle-multiple:before{content:""}.mdi-close-circle-multiple-outline:before{content:""}.mdi-close-circle-outline:before{content:""}.mdi-close-network:before{content:""}.mdi-close-network-outline:before{content:""}.mdi-close-octagon:before{content:""}.mdi-close-octagon-outline:before{content:""}.mdi-close-outline:before{content:""}.mdi-close-thick:before{content:""}.mdi-closed-caption:before{content:""}.mdi-closed-caption-outline:before{content:""}.mdi-cloud:before{content:""}.mdi-cloud-alert:before{content:""}.mdi-cloud-alert-outline:before{content:""}.mdi-cloud-arrow-down:before{content:""}.mdi-cloud-arrow-down-outline:before{content:""}.mdi-cloud-arrow-left:before{content:""}.mdi-cloud-arrow-left-outline:before{content:""}.mdi-cloud-arrow-right:before{content:""}.mdi-cloud-arrow-right-outline:before{content:""}.mdi-cloud-arrow-up:before{content:""}.mdi-cloud-arrow-up-outline:before{content:""}.mdi-cloud-braces:before{content:""}.mdi-cloud-cancel:before{content:""}.mdi-cloud-cancel-outline:before{content:""}.mdi-cloud-check:before{content:""}.mdi-cloud-check-outline:before{content:""}.mdi-cloud-check-variant:before{content:""}.mdi-cloud-check-variant-outline:before{content:""}.mdi-cloud-circle:before{content:""}.mdi-cloud-circle-outline:before{content:""}.mdi-cloud-clock:before{content:""}.mdi-cloud-clock-outline:before{content:""}.mdi-cloud-cog:before{content:""}.mdi-cloud-cog-outline:before{content:""}.mdi-cloud-download:before{content:""}.mdi-cloud-download-outline:before{content:""}.mdi-cloud-key:before{content:""}.mdi-cloud-key-outline:before{content:""}.mdi-cloud-lock:before{content:""}.mdi-cloud-lock-open:before{content:""}.mdi-cloud-lock-open-outline:before{content:""}.mdi-cloud-lock-outline:before{content:""}.mdi-cloud-minus:before{content:""}.mdi-cloud-minus-outline:before{content:""}.mdi-cloud-off:before{content:""}.mdi-cloud-off-outline:before{content:""}.mdi-cloud-outline:before{content:""}.mdi-cloud-percent:before{content:""}.mdi-cloud-percent-outline:before{content:""}.mdi-cloud-plus:before{content:""}.mdi-cloud-plus-outline:before{content:""}.mdi-cloud-print:before{content:""}.mdi-cloud-print-outline:before{content:""}.mdi-cloud-question:before{content:""}.mdi-cloud-question-outline:before{content:""}.mdi-cloud-refresh:before{content:""}.mdi-cloud-refresh-outline:before{content:""}.mdi-cloud-refresh-variant:before{content:""}.mdi-cloud-refresh-variant-outline:before{content:""}.mdi-cloud-remove:before{content:""}.mdi-cloud-remove-outline:before{content:""}.mdi-cloud-search:before{content:""}.mdi-cloud-search-outline:before{content:""}.mdi-cloud-sync:before{content:""}.mdi-cloud-sync-outline:before{content:""}.mdi-cloud-tags:before{content:""}.mdi-cloud-upload:before{content:""}.mdi-cloud-upload-outline:before{content:""}.mdi-clouds:before{content:""}.mdi-clover:before{content:""}.mdi-clover-outline:before{content:""}.mdi-coach-lamp:before{content:""}.mdi-coach-lamp-variant:before{content:""}.mdi-coat-rack:before{content:""}.mdi-code-array:before{content:""}.mdi-code-block-braces:before{content:""}.mdi-code-block-brackets:before{content:""}.mdi-code-block-parentheses:before{content:""}.mdi-code-block-tags:before{content:""}.mdi-code-braces:before{content:""}.mdi-code-braces-box:before{content:""}.mdi-code-brackets:before{content:""}.mdi-code-equal:before{content:""}.mdi-code-greater-than:before{content:""}.mdi-code-greater-than-or-equal:before{content:""}.mdi-code-json:before{content:""}.mdi-code-less-than:before{content:""}.mdi-code-less-than-or-equal:before{content:""}.mdi-code-not-equal:before{content:""}.mdi-code-not-equal-variant:before{content:""}.mdi-code-parentheses:before{content:""}.mdi-code-parentheses-box:before{content:""}.mdi-code-string:before{content:""}.mdi-code-tags:before{content:""}.mdi-code-tags-check:before{content:""}.mdi-codepen:before{content:""}.mdi-coffee:before{content:""}.mdi-coffee-maker:before{content:""}.mdi-coffee-maker-check:before{content:""}.mdi-coffee-maker-check-outline:before{content:""}.mdi-coffee-maker-outline:before{content:""}.mdi-coffee-off:before{content:""}.mdi-coffee-off-outline:before{content:""}.mdi-coffee-outline:before{content:""}.mdi-coffee-to-go:before{content:""}.mdi-coffee-to-go-outline:before{content:""}.mdi-coffin:before{content:""}.mdi-cog:before{content:""}.mdi-cog-box:before{content:""}.mdi-cog-clockwise:before{content:""}.mdi-cog-counterclockwise:before{content:""}.mdi-cog-off:before{content:""}.mdi-cog-off-outline:before{content:""}.mdi-cog-outline:before{content:""}.mdi-cog-pause:before{content:""}.mdi-cog-pause-outline:before{content:""}.mdi-cog-play:before{content:""}.mdi-cog-play-outline:before{content:""}.mdi-cog-refresh:before{content:""}.mdi-cog-refresh-outline:before{content:""}.mdi-cog-stop:before{content:""}.mdi-cog-stop-outline:before{content:""}.mdi-cog-sync:before{content:""}.mdi-cog-sync-outline:before{content:""}.mdi-cog-transfer:before{content:""}.mdi-cog-transfer-outline:before{content:""}.mdi-cogs:before{content:""}.mdi-collage:before{content:""}.mdi-collapse-all:before{content:""}.mdi-collapse-all-outline:before{content:""}.mdi-color-helper:before{content:""}.mdi-comma:before{content:""}.mdi-comma-box:before{content:""}.mdi-comma-box-outline:before{content:""}.mdi-comma-circle:before{content:""}.mdi-comma-circle-outline:before{content:""}.mdi-comment:before{content:""}.mdi-comment-account:before{content:""}.mdi-comment-account-outline:before{content:""}.mdi-comment-alert:before{content:""}.mdi-comment-alert-outline:before{content:""}.mdi-comment-arrow-left:before{content:""}.mdi-comment-arrow-left-outline:before{content:""}.mdi-comment-arrow-right:before{content:""}.mdi-comment-arrow-right-outline:before{content:""}.mdi-comment-bookmark:before{content:""}.mdi-comment-bookmark-outline:before{content:""}.mdi-comment-check:before{content:""}.mdi-comment-check-outline:before{content:""}.mdi-comment-edit:before{content:""}.mdi-comment-edit-outline:before{content:""}.mdi-comment-eye:before{content:""}.mdi-comment-eye-outline:before{content:""}.mdi-comment-flash:before{content:""}.mdi-comment-flash-outline:before{content:""}.mdi-comment-minus:before{content:""}.mdi-comment-minus-outline:before{content:""}.mdi-comment-multiple:before{content:""}.mdi-comment-multiple-outline:before{content:""}.mdi-comment-off:before{content:""}.mdi-comment-off-outline:before{content:""}.mdi-comment-outline:before{content:""}.mdi-comment-plus:before{content:""}.mdi-comment-plus-outline:before{content:""}.mdi-comment-processing:before{content:""}.mdi-comment-processing-outline:before{content:""}.mdi-comment-question:before{content:""}.mdi-comment-question-outline:before{content:""}.mdi-comment-quote:before{content:""}.mdi-comment-quote-outline:before{content:""}.mdi-comment-remove:before{content:""}.mdi-comment-remove-outline:before{content:""}.mdi-comment-search:before{content:""}.mdi-comment-search-outline:before{content:""}.mdi-comment-text:before{content:""}.mdi-comment-text-multiple:before{content:""}.mdi-comment-text-multiple-outline:before{content:""}.mdi-comment-text-outline:before{content:""}.mdi-compare:before{content:""}.mdi-compare-horizontal:before{content:""}.mdi-compare-remove:before{content:""}.mdi-compare-vertical:before{content:""}.mdi-compass:before{content:""}.mdi-compass-off:before{content:""}.mdi-compass-off-outline:before{content:""}.mdi-compass-outline:before{content:""}.mdi-compass-rose:before{content:""}.mdi-compost:before{content:""}.mdi-cone:before{content:""}.mdi-cone-off:before{content:""}.mdi-connection:before{content:""}.mdi-console:before{content:""}.mdi-console-line:before{content:""}.mdi-console-network:before{content:""}.mdi-console-network-outline:before{content:""}.mdi-consolidate:before{content:""}.mdi-contactless-payment:before{content:""}.mdi-contactless-payment-circle:before{content:""}.mdi-contactless-payment-circle-outline:before{content:""}.mdi-contacts:before{content:""}.mdi-contacts-outline:before{content:""}.mdi-contain:before{content:""}.mdi-contain-end:before{content:""}.mdi-contain-start:before{content:""}.mdi-content-copy:before{content:""}.mdi-content-cut:before{content:""}.mdi-content-duplicate:before{content:""}.mdi-content-paste:before{content:""}.mdi-content-save:before{content:""}.mdi-content-save-alert:before{content:""}.mdi-content-save-alert-outline:before{content:""}.mdi-content-save-all:before{content:""}.mdi-content-save-all-outline:before{content:""}.mdi-content-save-check:before{content:""}.mdi-content-save-check-outline:before{content:""}.mdi-content-save-cog:before{content:""}.mdi-content-save-cog-outline:before{content:""}.mdi-content-save-edit:before{content:""}.mdi-content-save-edit-outline:before{content:""}.mdi-content-save-minus:before{content:""}.mdi-content-save-minus-outline:before{content:""}.mdi-content-save-move:before{content:""}.mdi-content-save-move-outline:before{content:""}.mdi-content-save-off:before{content:""}.mdi-content-save-off-outline:before{content:""}.mdi-content-save-outline:before{content:""}.mdi-content-save-plus:before{content:""}.mdi-content-save-plus-outline:before{content:""}.mdi-content-save-settings:before{content:""}.mdi-content-save-settings-outline:before{content:""}.mdi-contrast:before{content:""}.mdi-contrast-box:before{content:""}.mdi-contrast-circle:before{content:""}.mdi-controller:before{content:""}.mdi-controller-classic:before{content:""}.mdi-controller-classic-outline:before{content:""}.mdi-controller-off:before{content:""}.mdi-cookie:before{content:""}.mdi-cookie-alert:before{content:""}.mdi-cookie-alert-outline:before{content:""}.mdi-cookie-check:before{content:""}.mdi-cookie-check-outline:before{content:""}.mdi-cookie-clock:before{content:""}.mdi-cookie-clock-outline:before{content:""}.mdi-cookie-cog:before{content:""}.mdi-cookie-cog-outline:before{content:""}.mdi-cookie-edit:before{content:""}.mdi-cookie-edit-outline:before{content:""}.mdi-cookie-lock:before{content:""}.mdi-cookie-lock-outline:before{content:""}.mdi-cookie-minus:before{content:""}.mdi-cookie-minus-outline:before{content:""}.mdi-cookie-off:before{content:""}.mdi-cookie-off-outline:before{content:""}.mdi-cookie-outline:before{content:""}.mdi-cookie-plus:before{content:""}.mdi-cookie-plus-outline:before{content:""}.mdi-cookie-refresh:before{content:""}.mdi-cookie-refresh-outline:before{content:""}.mdi-cookie-remove:before{content:""}.mdi-cookie-remove-outline:before{content:""}.mdi-cookie-settings:before{content:""}.mdi-cookie-settings-outline:before{content:""}.mdi-coolant-temperature:before{content:""}.mdi-copyleft:before{content:""}.mdi-copyright:before{content:""}.mdi-cordova:before{content:""}.mdi-corn:before{content:""}.mdi-corn-off:before{content:""}.mdi-cosine-wave:before{content:""}.mdi-counter:before{content:""}.mdi-countertop:before{content:""}.mdi-countertop-outline:before{content:""}.mdi-cow:before{content:""}.mdi-cow-off:before{content:""}.mdi-cpu-32-bit:before{content:""}.mdi-cpu-64-bit:before{content:""}.mdi-cradle:before{content:""}.mdi-cradle-outline:before{content:""}.mdi-crane:before{content:""}.mdi-creation:before{content:""}.mdi-creation-outline:before{content:""}.mdi-creative-commons:before{content:""}.mdi-credit-card:before{content:""}.mdi-credit-card-check:before{content:""}.mdi-credit-card-check-outline:before{content:""}.mdi-credit-card-chip:before{content:""}.mdi-credit-card-chip-outline:before{content:""}.mdi-credit-card-clock:before{content:""}.mdi-credit-card-clock-outline:before{content:""}.mdi-credit-card-edit:before{content:""}.mdi-credit-card-edit-outline:before{content:""}.mdi-credit-card-fast:before{content:""}.mdi-credit-card-fast-outline:before{content:""}.mdi-credit-card-lock:before{content:""}.mdi-credit-card-lock-outline:before{content:""}.mdi-credit-card-marker:before{content:""}.mdi-credit-card-marker-outline:before{content:""}.mdi-credit-card-minus:before{content:""}.mdi-credit-card-minus-outline:before{content:""}.mdi-credit-card-multiple:before{content:""}.mdi-credit-card-multiple-outline:before{content:""}.mdi-credit-card-off:before{content:""}.mdi-credit-card-off-outline:before{content:""}.mdi-credit-card-outline:before{content:""}.mdi-credit-card-plus:before{content:""}.mdi-credit-card-plus-outline:before{content:""}.mdi-credit-card-refresh:before{content:""}.mdi-credit-card-refresh-outline:before{content:""}.mdi-credit-card-refund:before{content:""}.mdi-credit-card-refund-outline:before{content:""}.mdi-credit-card-remove:before{content:""}.mdi-credit-card-remove-outline:before{content:""}.mdi-credit-card-scan:before{content:""}.mdi-credit-card-scan-outline:before{content:""}.mdi-credit-card-search:before{content:""}.mdi-credit-card-search-outline:before{content:""}.mdi-credit-card-settings:before{content:""}.mdi-credit-card-settings-outline:before{content:""}.mdi-credit-card-sync:before{content:""}.mdi-credit-card-sync-outline:before{content:""}.mdi-credit-card-wireless:before{content:""}.mdi-credit-card-wireless-off:before{content:""}.mdi-credit-card-wireless-off-outline:before{content:""}.mdi-credit-card-wireless-outline:before{content:""}.mdi-cricket:before{content:""}.mdi-crop:before{content:""}.mdi-crop-free:before{content:""}.mdi-crop-landscape:before{content:""}.mdi-crop-portrait:before{content:""}.mdi-crop-rotate:before{content:""}.mdi-crop-square:before{content:""}.mdi-cross:before{content:""}.mdi-cross-bolnisi:before{content:""}.mdi-cross-celtic:before{content:""}.mdi-cross-outline:before{content:""}.mdi-crosshairs:before{content:""}.mdi-crosshairs-gps:before{content:""}.mdi-crosshairs-off:before{content:""}.mdi-crosshairs-question:before{content:""}.mdi-crowd:before{content:""}.mdi-crown:before{content:""}.mdi-crown-circle:before{content:""}.mdi-crown-circle-outline:before{content:""}.mdi-crown-outline:before{content:""}.mdi-cryengine:before{content:""}.mdi-crystal-ball:before{content:""}.mdi-cube:before{content:""}.mdi-cube-off:before{content:""}.mdi-cube-off-outline:before{content:""}.mdi-cube-outline:before{content:""}.mdi-cube-scan:before{content:""}.mdi-cube-send:before{content:""}.mdi-cube-unfolded:before{content:""}.mdi-cup:before{content:""}.mdi-cup-off:before{content:""}.mdi-cup-off-outline:before{content:""}.mdi-cup-outline:before{content:""}.mdi-cup-water:before{content:""}.mdi-cupboard:before{content:""}.mdi-cupboard-outline:before{content:""}.mdi-cupcake:before{content:""}.mdi-curling:before{content:""}.mdi-currency-bdt:before{content:""}.mdi-currency-brl:before{content:""}.mdi-currency-btc:before{content:""}.mdi-currency-cny:before{content:""}.mdi-currency-eth:before{content:""}.mdi-currency-eur:before{content:""}.mdi-currency-eur-off:before{content:""}.mdi-currency-fra:before{content:""}.mdi-currency-gbp:before{content:""}.mdi-currency-ils:before{content:""}.mdi-currency-inr:before{content:""}.mdi-currency-jpy:before{content:""}.mdi-currency-krw:before{content:""}.mdi-currency-kzt:before{content:""}.mdi-currency-mnt:before{content:""}.mdi-currency-ngn:before{content:""}.mdi-currency-php:before{content:""}.mdi-currency-rial:before{content:""}.mdi-currency-rub:before{content:""}.mdi-currency-rupee:before{content:""}.mdi-currency-sign:before{content:""}.mdi-currency-thb:before{content:""}.mdi-currency-try:before{content:""}.mdi-currency-twd:before{content:""}.mdi-currency-uah:before{content:""}.mdi-currency-usd:before{content:""}.mdi-currency-usd-off:before{content:""}.mdi-current-ac:before{content:""}.mdi-current-dc:before{content:""}.mdi-cursor-default:before{content:""}.mdi-cursor-default-click:before{content:""}.mdi-cursor-default-click-outline:before{content:""}.mdi-cursor-default-gesture:before{content:""}.mdi-cursor-default-gesture-outline:before{content:""}.mdi-cursor-default-outline:before{content:""}.mdi-cursor-move:before{content:""}.mdi-cursor-pointer:before{content:""}.mdi-cursor-text:before{content:""}.mdi-curtains:before{content:""}.mdi-curtains-closed:before{content:""}.mdi-cylinder:before{content:""}.mdi-cylinder-off:before{content:""}.mdi-dance-ballroom:before{content:""}.mdi-dance-pole:before{content:""}.mdi-data-matrix:before{content:""}.mdi-data-matrix-edit:before{content:""}.mdi-data-matrix-minus:before{content:""}.mdi-data-matrix-plus:before{content:""}.mdi-data-matrix-remove:before{content:""}.mdi-data-matrix-scan:before{content:""}.mdi-database:before{content:""}.mdi-database-alert:before{content:""}.mdi-database-alert-outline:before{content:""}.mdi-database-arrow-down:before{content:""}.mdi-database-arrow-down-outline:before{content:""}.mdi-database-arrow-left:before{content:""}.mdi-database-arrow-left-outline:before{content:""}.mdi-database-arrow-right:before{content:""}.mdi-database-arrow-right-outline:before{content:""}.mdi-database-arrow-up:before{content:""}.mdi-database-arrow-up-outline:before{content:""}.mdi-database-check:before{content:""}.mdi-database-check-outline:before{content:""}.mdi-database-clock:before{content:""}.mdi-database-clock-outline:before{content:""}.mdi-database-cog:before{content:""}.mdi-database-cog-outline:before{content:""}.mdi-database-edit:before{content:""}.mdi-database-edit-outline:before{content:""}.mdi-database-export:before{content:""}.mdi-database-export-outline:before{content:""}.mdi-database-eye:before{content:""}.mdi-database-eye-off:before{content:""}.mdi-database-eye-off-outline:before{content:""}.mdi-database-eye-outline:before{content:""}.mdi-database-import:before{content:""}.mdi-database-import-outline:before{content:""}.mdi-database-lock:before{content:""}.mdi-database-lock-outline:before{content:""}.mdi-database-marker:before{content:""}.mdi-database-marker-outline:before{content:""}.mdi-database-minus:before{content:""}.mdi-database-minus-outline:before{content:""}.mdi-database-off:before{content:""}.mdi-database-off-outline:before{content:""}.mdi-database-outline:before{content:""}.mdi-database-plus:before{content:""}.mdi-database-plus-outline:before{content:""}.mdi-database-refresh:before{content:""}.mdi-database-refresh-outline:before{content:""}.mdi-database-remove:before{content:""}.mdi-database-remove-outline:before{content:""}.mdi-database-search:before{content:""}.mdi-database-search-outline:before{content:""}.mdi-database-settings:before{content:""}.mdi-database-settings-outline:before{content:""}.mdi-database-sync:before{content:""}.mdi-database-sync-outline:before{content:""}.mdi-death-star:before{content:""}.mdi-death-star-variant:before{content:""}.mdi-deathly-hallows:before{content:""}.mdi-debian:before{content:""}.mdi-debug-step-into:before{content:""}.mdi-debug-step-out:before{content:""}.mdi-debug-step-over:before{content:""}.mdi-decagram:before{content:""}.mdi-decagram-outline:before{content:""}.mdi-decimal:before{content:""}.mdi-decimal-comma:before{content:""}.mdi-decimal-comma-decrease:before{content:""}.mdi-decimal-comma-increase:before{content:""}.mdi-decimal-decrease:before{content:""}.mdi-decimal-increase:before{content:""}.mdi-delete:before{content:""}.mdi-delete-alert:before{content:""}.mdi-delete-alert-outline:before{content:""}.mdi-delete-circle:before{content:""}.mdi-delete-circle-outline:before{content:""}.mdi-delete-clock:before{content:""}.mdi-delete-clock-outline:before{content:""}.mdi-delete-empty:before{content:""}.mdi-delete-empty-outline:before{content:""}.mdi-delete-forever:before{content:""}.mdi-delete-forever-outline:before{content:""}.mdi-delete-off:before{content:""}.mdi-delete-off-outline:before{content:""}.mdi-delete-outline:before{content:""}.mdi-delete-restore:before{content:""}.mdi-delete-sweep:before{content:""}.mdi-delete-sweep-outline:before{content:""}.mdi-delete-variant:before{content:""}.mdi-delta:before{content:""}.mdi-desk:before{content:""}.mdi-desk-lamp:before{content:""}.mdi-desk-lamp-off:before{content:""}.mdi-desk-lamp-on:before{content:""}.mdi-deskphone:before{content:""}.mdi-desktop-classic:before{content:""}.mdi-desktop-tower:before{content:""}.mdi-desktop-tower-monitor:before{content:""}.mdi-details:before{content:""}.mdi-dev-to:before{content:""}.mdi-developer-board:before{content:""}.mdi-deviantart:before{content:""}.mdi-devices:before{content:""}.mdi-dharmachakra:before{content:""}.mdi-diabetes:before{content:""}.mdi-dialpad:before{content:""}.mdi-diameter:before{content:""}.mdi-diameter-outline:before{content:""}.mdi-diameter-variant:before{content:""}.mdi-diamond:before{content:""}.mdi-diamond-outline:before{content:""}.mdi-diamond-stone:before{content:""}.mdi-dice-1:before{content:""}.mdi-dice-1-outline:before{content:""}.mdi-dice-2:before{content:""}.mdi-dice-2-outline:before{content:""}.mdi-dice-3:before{content:""}.mdi-dice-3-outline:before{content:""}.mdi-dice-4:before{content:""}.mdi-dice-4-outline:before{content:""}.mdi-dice-5:before{content:""}.mdi-dice-5-outline:before{content:""}.mdi-dice-6:before{content:""}.mdi-dice-6-outline:before{content:""}.mdi-dice-d10:before{content:""}.mdi-dice-d10-outline:before{content:""}.mdi-dice-d12:before{content:""}.mdi-dice-d12-outline:before{content:""}.mdi-dice-d20:before{content:""}.mdi-dice-d20-outline:before{content:""}.mdi-dice-d4:before{content:""}.mdi-dice-d4-outline:before{content:""}.mdi-dice-d6:before{content:""}.mdi-dice-d6-outline:before{content:""}.mdi-dice-d8:before{content:""}.mdi-dice-d8-outline:before{content:""}.mdi-dice-multiple:before{content:""}.mdi-dice-multiple-outline:before{content:""}.mdi-digital-ocean:before{content:""}.mdi-dip-switch:before{content:""}.mdi-directions:before{content:""}.mdi-directions-fork:before{content:""}.mdi-disc:before{content:""}.mdi-disc-alert:before{content:""}.mdi-disc-player:before{content:""}.mdi-dishwasher:before{content:""}.mdi-dishwasher-alert:before{content:""}.mdi-dishwasher-off:before{content:""}.mdi-disqus:before{content:""}.mdi-distribute-horizontal-center:before{content:""}.mdi-distribute-horizontal-left:before{content:""}.mdi-distribute-horizontal-right:before{content:""}.mdi-distribute-vertical-bottom:before{content:""}.mdi-distribute-vertical-center:before{content:""}.mdi-distribute-vertical-top:before{content:""}.mdi-diversify:before{content:""}.mdi-diving:before{content:""}.mdi-diving-flippers:before{content:""}.mdi-diving-helmet:before{content:""}.mdi-diving-scuba:before{content:""}.mdi-diving-scuba-flag:before{content:""}.mdi-diving-scuba-mask:before{content:""}.mdi-diving-scuba-tank:before{content:""}.mdi-diving-scuba-tank-multiple:before{content:""}.mdi-diving-snorkel:before{content:""}.mdi-division:before{content:""}.mdi-division-box:before{content:""}.mdi-dlna:before{content:""}.mdi-dna:before{content:""}.mdi-dns:before{content:""}.mdi-dns-outline:before{content:""}.mdi-dock-bottom:before{content:""}.mdi-dock-left:before{content:""}.mdi-dock-right:before{content:""}.mdi-dock-top:before{content:""}.mdi-dock-window:before{content:""}.mdi-docker:before{content:""}.mdi-doctor:before{content:""}.mdi-dog:before{content:""}.mdi-dog-service:before{content:""}.mdi-dog-side:before{content:""}.mdi-dog-side-off:before{content:""}.mdi-dolby:before{content:""}.mdi-dolly:before{content:""}.mdi-dolphin:before{content:""}.mdi-domain:before{content:""}.mdi-domain-off:before{content:""}.mdi-domain-plus:before{content:""}.mdi-domain-remove:before{content:""}.mdi-domain-switch:before{content:""}.mdi-dome-light:before{content:""}.mdi-domino-mask:before{content:""}.mdi-donkey:before{content:""}.mdi-door:before{content:""}.mdi-door-closed:before{content:""}.mdi-door-closed-cancel:before{content:""}.mdi-door-closed-lock:before{content:""}.mdi-door-open:before{content:""}.mdi-door-sliding:before{content:""}.mdi-door-sliding-lock:before{content:""}.mdi-door-sliding-open:before{content:""}.mdi-doorbell:before{content:""}.mdi-doorbell-video:before{content:""}.mdi-dot-net:before{content:""}.mdi-dots-circle:before{content:""}.mdi-dots-grid:before{content:""}.mdi-dots-hexagon:before{content:""}.mdi-dots-horizontal:before{content:""}.mdi-dots-horizontal-circle:before{content:""}.mdi-dots-horizontal-circle-outline:before{content:""}.mdi-dots-square:before{content:""}.mdi-dots-triangle:before{content:""}.mdi-dots-vertical:before{content:""}.mdi-dots-vertical-circle:before{content:""}.mdi-dots-vertical-circle-outline:before{content:""}.mdi-download:before{content:""}.mdi-download-box:before{content:""}.mdi-download-box-outline:before{content:""}.mdi-download-circle:before{content:""}.mdi-download-circle-outline:before{content:""}.mdi-download-lock:before{content:""}.mdi-download-lock-outline:before{content:""}.mdi-download-multiple:before{content:""}.mdi-download-network:before{content:""}.mdi-download-network-outline:before{content:""}.mdi-download-off:before{content:""}.mdi-download-off-outline:before{content:""}.mdi-download-outline:before{content:""}.mdi-drag:before{content:""}.mdi-drag-horizontal:before{content:""}.mdi-drag-horizontal-variant:before{content:""}.mdi-drag-variant:before{content:""}.mdi-drag-vertical:before{content:""}.mdi-drag-vertical-variant:before{content:""}.mdi-drama-masks:before{content:""}.mdi-draw:before{content:""}.mdi-draw-pen:before{content:""}.mdi-drawing:before{content:""}.mdi-drawing-box:before{content:""}.mdi-dresser:before{content:""}.mdi-dresser-outline:before{content:""}.mdi-drone:before{content:""}.mdi-dropbox:before{content:""}.mdi-drupal:before{content:""}.mdi-duck:before{content:""}.mdi-dumbbell:before{content:""}.mdi-dump-truck:before{content:""}.mdi-ear-hearing:before{content:""}.mdi-ear-hearing-loop:before{content:""}.mdi-ear-hearing-off:before{content:""}.mdi-earbuds:before{content:""}.mdi-earbuds-off:before{content:""}.mdi-earbuds-off-outline:before{content:""}.mdi-earbuds-outline:before{content:""}.mdi-earth:before{content:""}.mdi-earth-arrow-down:before{content:""}.mdi-earth-arrow-left:before{content:""}.mdi-earth-arrow-right:before{content:""}.mdi-earth-arrow-up:before{content:""}.mdi-earth-box:before{content:""}.mdi-earth-box-minus:before{content:""}.mdi-earth-box-off:before{content:""}.mdi-earth-box-plus:before{content:""}.mdi-earth-box-remove:before{content:""}.mdi-earth-minus:before{content:""}.mdi-earth-off:before{content:""}.mdi-earth-plus:before{content:""}.mdi-earth-remove:before{content:""}.mdi-egg:before{content:""}.mdi-egg-easter:before{content:""}.mdi-egg-fried:before{content:""}.mdi-egg-off:before{content:""}.mdi-egg-off-outline:before{content:""}.mdi-egg-outline:before{content:""}.mdi-eiffel-tower:before{content:""}.mdi-eight-track:before{content:""}.mdi-eject:before{content:""}.mdi-eject-circle:before{content:""}.mdi-eject-circle-outline:before{content:""}.mdi-eject-outline:before{content:""}.mdi-electric-switch:before{content:""}.mdi-electric-switch-closed:before{content:""}.mdi-electron-framework:before{content:""}.mdi-elephant:before{content:""}.mdi-elevation-decline:before{content:""}.mdi-elevation-rise:before{content:""}.mdi-elevator:before{content:""}.mdi-elevator-down:before{content:""}.mdi-elevator-passenger:before{content:""}.mdi-elevator-passenger-off:before{content:""}.mdi-elevator-passenger-off-outline:before{content:""}.mdi-elevator-passenger-outline:before{content:""}.mdi-elevator-up:before{content:""}.mdi-ellipse:before{content:""}.mdi-ellipse-outline:before{content:""}.mdi-email:before{content:""}.mdi-email-alert:before{content:""}.mdi-email-alert-outline:before{content:""}.mdi-email-arrow-left:before{content:""}.mdi-email-arrow-left-outline:before{content:""}.mdi-email-arrow-right:before{content:""}.mdi-email-arrow-right-outline:before{content:""}.mdi-email-box:before{content:""}.mdi-email-check:before{content:""}.mdi-email-check-outline:before{content:""}.mdi-email-edit:before{content:""}.mdi-email-edit-outline:before{content:""}.mdi-email-fast:before{content:""}.mdi-email-fast-outline:before{content:""}.mdi-email-heart-outline:before{content:""}.mdi-email-lock:before{content:""}.mdi-email-lock-outline:before{content:""}.mdi-email-mark-as-unread:before{content:""}.mdi-email-minus:before{content:""}.mdi-email-minus-outline:before{content:""}.mdi-email-multiple:before{content:""}.mdi-email-multiple-outline:before{content:""}.mdi-email-newsletter:before{content:""}.mdi-email-off:before{content:""}.mdi-email-off-outline:before{content:""}.mdi-email-open:before{content:""}.mdi-email-open-heart-outline:before{content:""}.mdi-email-open-multiple:before{content:""}.mdi-email-open-multiple-outline:before{content:""}.mdi-email-open-outline:before{content:""}.mdi-email-outline:before{content:""}.mdi-email-plus:before{content:""}.mdi-email-plus-outline:before{content:""}.mdi-email-remove:before{content:""}.mdi-email-remove-outline:before{content:""}.mdi-email-seal:before{content:""}.mdi-email-seal-outline:before{content:""}.mdi-email-search:before{content:""}.mdi-email-search-outline:before{content:""}.mdi-email-sync:before{content:""}.mdi-email-sync-outline:before{content:""}.mdi-email-variant:before{content:""}.mdi-ember:before{content:""}.mdi-emby:before{content:""}.mdi-emoticon:before{content:""}.mdi-emoticon-angry:before{content:""}.mdi-emoticon-angry-outline:before{content:""}.mdi-emoticon-confused:before{content:""}.mdi-emoticon-confused-outline:before{content:""}.mdi-emoticon-cool:before{content:""}.mdi-emoticon-cool-outline:before{content:""}.mdi-emoticon-cry:before{content:""}.mdi-emoticon-cry-outline:before{content:""}.mdi-emoticon-dead:before{content:""}.mdi-emoticon-dead-outline:before{content:""}.mdi-emoticon-devil:before{content:""}.mdi-emoticon-devil-outline:before{content:""}.mdi-emoticon-excited:before{content:""}.mdi-emoticon-excited-outline:before{content:""}.mdi-emoticon-frown:before{content:""}.mdi-emoticon-frown-outline:before{content:""}.mdi-emoticon-happy:before{content:""}.mdi-emoticon-happy-outline:before{content:""}.mdi-emoticon-kiss:before{content:""}.mdi-emoticon-kiss-outline:before{content:""}.mdi-emoticon-lol:before{content:""}.mdi-emoticon-lol-outline:before{content:""}.mdi-emoticon-minus:before{content:""}.mdi-emoticon-minus-outline:before{content:""}.mdi-emoticon-neutral:before{content:""}.mdi-emoticon-neutral-outline:before{content:""}.mdi-emoticon-outline:before{content:""}.mdi-emoticon-plus:before{content:""}.mdi-emoticon-plus-outline:before{content:""}.mdi-emoticon-poop:before{content:""}.mdi-emoticon-poop-outline:before{content:""}.mdi-emoticon-remove:before{content:""}.mdi-emoticon-remove-outline:before{content:""}.mdi-emoticon-sad:before{content:""}.mdi-emoticon-sad-outline:before{content:""}.mdi-emoticon-sick:before{content:""}.mdi-emoticon-sick-outline:before{content:""}.mdi-emoticon-tongue:before{content:""}.mdi-emoticon-tongue-outline:before{content:""}.mdi-emoticon-wink:before{content:""}.mdi-emoticon-wink-outline:before{content:""}.mdi-engine:before{content:""}.mdi-engine-off:before{content:""}.mdi-engine-off-outline:before{content:""}.mdi-engine-outline:before{content:""}.mdi-epsilon:before{content:""}.mdi-equal:before{content:""}.mdi-equal-box:before{content:""}.mdi-equalizer:before{content:""}.mdi-equalizer-outline:before{content:""}.mdi-eraser:before{content:""}.mdi-eraser-variant:before{content:""}.mdi-escalator:before{content:""}.mdi-escalator-box:before{content:""}.mdi-escalator-down:before{content:""}.mdi-escalator-up:before{content:""}.mdi-eslint:before{content:""}.mdi-et:before{content:""}.mdi-ethereum:before{content:""}.mdi-ethernet:before{content:""}.mdi-ethernet-cable:before{content:""}.mdi-ethernet-cable-off:before{content:""}.mdi-ev-plug-ccs1:before{content:""}.mdi-ev-plug-ccs2:before{content:""}.mdi-ev-plug-chademo:before{content:""}.mdi-ev-plug-tesla:before{content:""}.mdi-ev-plug-type1:before{content:""}.mdi-ev-plug-type2:before{content:""}.mdi-ev-station:before{content:""}.mdi-evernote:before{content:""}.mdi-excavator:before{content:""}.mdi-exclamation:before{content:""}.mdi-exclamation-thick:before{content:""}.mdi-exit-run:before{content:""}.mdi-exit-to-app:before{content:""}.mdi-expand-all:before{content:""}.mdi-expand-all-outline:before{content:""}.mdi-expansion-card:before{content:""}.mdi-expansion-card-variant:before{content:""}.mdi-exponent:before{content:""}.mdi-exponent-box:before{content:""}.mdi-export:before{content:""}.mdi-export-variant:before{content:""}.mdi-eye:before{content:""}.mdi-eye-arrow-left:before{content:""}.mdi-eye-arrow-left-outline:before{content:""}.mdi-eye-arrow-right:before{content:""}.mdi-eye-arrow-right-outline:before{content:""}.mdi-eye-check:before{content:""}.mdi-eye-check-outline:before{content:""}.mdi-eye-circle:before{content:""}.mdi-eye-circle-outline:before{content:""}.mdi-eye-closed:before{content:""}.mdi-eye-lock:before{content:""}.mdi-eye-lock-open:before{content:""}.mdi-eye-lock-open-outline:before{content:""}.mdi-eye-lock-outline:before{content:""}.mdi-eye-minus:before{content:""}.mdi-eye-minus-outline:before{content:""}.mdi-eye-off:before{content:""}.mdi-eye-off-outline:before{content:""}.mdi-eye-outline:before{content:""}.mdi-eye-plus:before{content:""}.mdi-eye-plus-outline:before{content:""}.mdi-eye-refresh:before{content:""}.mdi-eye-refresh-outline:before{content:""}.mdi-eye-remove:before{content:""}.mdi-eye-remove-outline:before{content:""}.mdi-eye-settings:before{content:""}.mdi-eye-settings-outline:before{content:""}.mdi-eyedropper:before{content:""}.mdi-eyedropper-minus:before{content:""}.mdi-eyedropper-off:before{content:""}.mdi-eyedropper-plus:before{content:""}.mdi-eyedropper-remove:before{content:""}.mdi-eyedropper-variant:before{content:""}.mdi-face-agent:before{content:""}.mdi-face-man:before{content:""}.mdi-face-man-outline:before{content:""}.mdi-face-man-profile:before{content:""}.mdi-face-man-shimmer:before{content:""}.mdi-face-man-shimmer-outline:before{content:""}.mdi-face-mask:before{content:""}.mdi-face-mask-outline:before{content:""}.mdi-face-recognition:before{content:""}.mdi-face-woman:before{content:""}.mdi-face-woman-outline:before{content:""}.mdi-face-woman-profile:before{content:""}.mdi-face-woman-shimmer:before{content:""}.mdi-face-woman-shimmer-outline:before{content:""}.mdi-facebook:before{content:""}.mdi-facebook-gaming:before{content:""}.mdi-facebook-messenger:before{content:""}.mdi-facebook-workplace:before{content:""}.mdi-factory:before{content:""}.mdi-family-tree:before{content:""}.mdi-fan:before{content:""}.mdi-fan-alert:before{content:""}.mdi-fan-auto:before{content:""}.mdi-fan-chevron-down:before{content:""}.mdi-fan-chevron-up:before{content:""}.mdi-fan-clock:before{content:""}.mdi-fan-minus:before{content:""}.mdi-fan-off:before{content:""}.mdi-fan-plus:before{content:""}.mdi-fan-remove:before{content:""}.mdi-fan-speed-1:before{content:""}.mdi-fan-speed-2:before{content:""}.mdi-fan-speed-3:before{content:""}.mdi-fast-forward:before{content:""}.mdi-fast-forward-10:before{content:""}.mdi-fast-forward-15:before{content:""}.mdi-fast-forward-30:before{content:""}.mdi-fast-forward-45:before{content:""}.mdi-fast-forward-5:before{content:""}.mdi-fast-forward-60:before{content:""}.mdi-fast-forward-outline:before{content:""}.mdi-faucet:before{content:""}.mdi-faucet-variant:before{content:""}.mdi-fax:before{content:""}.mdi-feather:before{content:""}.mdi-feature-search:before{content:""}.mdi-feature-search-outline:before{content:""}.mdi-fedora:before{content:""}.mdi-fence:before{content:""}.mdi-fence-electric:before{content:""}.mdi-fencing:before{content:""}.mdi-ferris-wheel:before{content:""}.mdi-ferry:before{content:""}.mdi-file:before{content:""}.mdi-file-account:before{content:""}.mdi-file-account-outline:before{content:""}.mdi-file-alert:before{content:""}.mdi-file-alert-outline:before{content:""}.mdi-file-arrow-left-right:before{content:""}.mdi-file-arrow-left-right-outline:before{content:""}.mdi-file-arrow-up-down:before{content:""}.mdi-file-arrow-up-down-outline:before{content:""}.mdi-file-cabinet:before{content:""}.mdi-file-cad:before{content:""}.mdi-file-cad-box:before{content:""}.mdi-file-cancel:before{content:""}.mdi-file-cancel-outline:before{content:""}.mdi-file-certificate:before{content:""}.mdi-file-certificate-outline:before{content:""}.mdi-file-chart:before{content:""}.mdi-file-chart-check:before{content:""}.mdi-file-chart-check-outline:before{content:""}.mdi-file-chart-outline:before{content:""}.mdi-file-check:before{content:""}.mdi-file-check-outline:before{content:""}.mdi-file-clock:before{content:""}.mdi-file-clock-outline:before{content:""}.mdi-file-cloud:before{content:""}.mdi-file-cloud-outline:before{content:""}.mdi-file-code:before{content:""}.mdi-file-code-outline:before{content:""}.mdi-file-cog:before{content:""}.mdi-file-cog-outline:before{content:""}.mdi-file-compare:before{content:""}.mdi-file-delimited:before{content:""}.mdi-file-delimited-outline:before{content:""}.mdi-file-document:before{content:""}.mdi-file-document-alert:before{content:""}.mdi-file-document-alert-outline:before{content:""}.mdi-file-document-arrow-right:before{content:""}.mdi-file-document-arrow-right-outline:before{content:""}.mdi-file-document-check:before{content:""}.mdi-file-document-check-outline:before{content:""}.mdi-file-document-edit:before{content:""}.mdi-file-document-edit-outline:before{content:""}.mdi-file-document-minus:before{content:""}.mdi-file-document-minus-outline:before{content:""}.mdi-file-document-multiple:before{content:""}.mdi-file-document-multiple-outline:before{content:""}.mdi-file-document-outline:before{content:""}.mdi-file-document-plus:before{content:""}.mdi-file-document-plus-outline:before{content:""}.mdi-file-document-refresh:before{content:""}.mdi-file-document-refresh-outline:before{content:""}.mdi-file-document-remove:before{content:""}.mdi-file-document-remove-outline:before{content:""}.mdi-file-download:before{content:""}.mdi-file-download-outline:before{content:""}.mdi-file-edit:before{content:""}.mdi-file-edit-outline:before{content:""}.mdi-file-excel:before{content:""}.mdi-file-excel-box:before{content:""}.mdi-file-excel-box-outline:before{content:""}.mdi-file-excel-outline:before{content:""}.mdi-file-export:before{content:""}.mdi-file-export-outline:before{content:""}.mdi-file-eye:before{content:""}.mdi-file-eye-outline:before{content:""}.mdi-file-find:before{content:""}.mdi-file-find-outline:before{content:""}.mdi-file-gif-box:before{content:""}.mdi-file-hidden:before{content:""}.mdi-file-image:before{content:""}.mdi-file-image-marker:before{content:""}.mdi-file-image-marker-outline:before{content:""}.mdi-file-image-minus:before{content:""}.mdi-file-image-minus-outline:before{content:""}.mdi-file-image-outline:before{content:""}.mdi-file-image-plus:before{content:""}.mdi-file-image-plus-outline:before{content:""}.mdi-file-image-remove:before{content:""}.mdi-file-image-remove-outline:before{content:""}.mdi-file-import:before{content:""}.mdi-file-import-outline:before{content:""}.mdi-file-jpg-box:before{content:""}.mdi-file-key:before{content:""}.mdi-file-key-outline:before{content:""}.mdi-file-link:before{content:""}.mdi-file-link-outline:before{content:""}.mdi-file-lock:before{content:""}.mdi-file-lock-open:before{content:""}.mdi-file-lock-open-outline:before{content:""}.mdi-file-lock-outline:before{content:""}.mdi-file-marker:before{content:""}.mdi-file-marker-outline:before{content:""}.mdi-file-minus:before{content:""}.mdi-file-minus-outline:before{content:""}.mdi-file-move:before{content:""}.mdi-file-move-outline:before{content:""}.mdi-file-multiple:before{content:""}.mdi-file-multiple-outline:before{content:""}.mdi-file-music:before{content:""}.mdi-file-music-outline:before{content:""}.mdi-file-outline:before{content:""}.mdi-file-pdf-box:before{content:""}.mdi-file-percent:before{content:""}.mdi-file-percent-outline:before{content:""}.mdi-file-phone:before{content:""}.mdi-file-phone-outline:before{content:""}.mdi-file-plus:before{content:""}.mdi-file-plus-outline:before{content:""}.mdi-file-png-box:before{content:""}.mdi-file-powerpoint:before{content:""}.mdi-file-powerpoint-box:before{content:""}.mdi-file-powerpoint-box-outline:before{content:""}.mdi-file-powerpoint-outline:before{content:""}.mdi-file-presentation-box:before{content:""}.mdi-file-question:before{content:""}.mdi-file-question-outline:before{content:""}.mdi-file-refresh:before{content:""}.mdi-file-refresh-outline:before{content:""}.mdi-file-remove:before{content:""}.mdi-file-remove-outline:before{content:""}.mdi-file-replace:before{content:""}.mdi-file-replace-outline:before{content:""}.mdi-file-restore:before{content:""}.mdi-file-restore-outline:before{content:""}.mdi-file-rotate-left:before{content:""}.mdi-file-rotate-left-outline:before{content:""}.mdi-file-rotate-right:before{content:""}.mdi-file-rotate-right-outline:before{content:""}.mdi-file-search:before{content:""}.mdi-file-search-outline:before{content:""}.mdi-file-send:before{content:""}.mdi-file-send-outline:before{content:""}.mdi-file-settings:before{content:""}.mdi-file-settings-outline:before{content:""}.mdi-file-sign:before{content:""}.mdi-file-star:before{content:""}.mdi-file-star-four-points:before{content:""}.mdi-file-star-four-points-outline:before{content:""}.mdi-file-star-outline:before{content:""}.mdi-file-swap:before{content:""}.mdi-file-swap-outline:before{content:""}.mdi-file-sync:before{content:""}.mdi-file-sync-outline:before{content:""}.mdi-file-table:before{content:""}.mdi-file-table-box:before{content:""}.mdi-file-table-box-multiple:before{content:""}.mdi-file-table-box-multiple-outline:before{content:""}.mdi-file-table-box-outline:before{content:""}.mdi-file-table-outline:before{content:""}.mdi-file-tree:before{content:""}.mdi-file-tree-outline:before{content:""}.mdi-file-undo:before{content:""}.mdi-file-undo-outline:before{content:""}.mdi-file-upload:before{content:""}.mdi-file-upload-outline:before{content:""}.mdi-file-video:before{content:""}.mdi-file-video-outline:before{content:""}.mdi-file-word:before{content:""}.mdi-file-word-box:before{content:""}.mdi-file-word-box-outline:before{content:""}.mdi-file-word-outline:before{content:""}.mdi-file-xml-box:before{content:""}.mdi-film:before{content:""}.mdi-filmstrip:before{content:""}.mdi-filmstrip-box:before{content:""}.mdi-filmstrip-box-multiple:before{content:""}.mdi-filmstrip-off:before{content:""}.mdi-filter:before{content:""}.mdi-filter-check:before{content:""}.mdi-filter-check-outline:before{content:""}.mdi-filter-cog:before{content:""}.mdi-filter-cog-outline:before{content:""}.mdi-filter-menu:before{content:""}.mdi-filter-menu-outline:before{content:""}.mdi-filter-minus:before{content:""}.mdi-filter-minus-outline:before{content:""}.mdi-filter-multiple:before{content:""}.mdi-filter-multiple-outline:before{content:""}.mdi-filter-off:before{content:""}.mdi-filter-off-outline:before{content:""}.mdi-filter-outline:before{content:""}.mdi-filter-plus:before{content:""}.mdi-filter-plus-outline:before{content:""}.mdi-filter-remove:before{content:""}.mdi-filter-remove-outline:before{content:""}.mdi-filter-settings:before{content:""}.mdi-filter-settings-outline:before{content:""}.mdi-filter-variant:before{content:""}.mdi-filter-variant-minus:before{content:""}.mdi-filter-variant-plus:before{content:""}.mdi-filter-variant-remove:before{content:""}.mdi-finance:before{content:""}.mdi-find-replace:before{content:""}.mdi-fingerprint:before{content:""}.mdi-fingerprint-off:before{content:""}.mdi-fire:before{content:""}.mdi-fire-alert:before{content:""}.mdi-fire-circle:before{content:""}.mdi-fire-extinguisher:before{content:""}.mdi-fire-hydrant:before{content:""}.mdi-fire-hydrant-alert:before{content:""}.mdi-fire-hydrant-off:before{content:""}.mdi-fire-off:before{content:""}.mdi-fire-station:before{content:""}.mdi-fire-truck:before{content:""}.mdi-firebase:before{content:""}.mdi-firefox:before{content:""}.mdi-fireplace:before{content:""}.mdi-fireplace-off:before{content:""}.mdi-firewire:before{content:""}.mdi-firework:before{content:""}.mdi-firework-off:before{content:""}.mdi-fish:before{content:""}.mdi-fish-off:before{content:""}.mdi-fishbowl:before{content:""}.mdi-fishbowl-outline:before{content:""}.mdi-fit-to-page:before{content:""}.mdi-fit-to-page-outline:before{content:""}.mdi-fit-to-screen:before{content:""}.mdi-fit-to-screen-outline:before{content:""}.mdi-flag:before{content:""}.mdi-flag-checkered:before{content:""}.mdi-flag-minus:before{content:""}.mdi-flag-minus-outline:before{content:""}.mdi-flag-off:before{content:""}.mdi-flag-off-outline:before{content:""}.mdi-flag-outline:before{content:""}.mdi-flag-plus:before{content:""}.mdi-flag-plus-outline:before{content:""}.mdi-flag-remove:before{content:""}.mdi-flag-remove-outline:before{content:""}.mdi-flag-triangle:before{content:""}.mdi-flag-variant:before{content:""}.mdi-flag-variant-minus:before{content:""}.mdi-flag-variant-minus-outline:before{content:""}.mdi-flag-variant-off:before{content:""}.mdi-flag-variant-off-outline:before{content:""}.mdi-flag-variant-outline:before{content:""}.mdi-flag-variant-plus:before{content:""}.mdi-flag-variant-plus-outline:before{content:""}.mdi-flag-variant-remove:before{content:""}.mdi-flag-variant-remove-outline:before{content:""}.mdi-flare:before{content:""}.mdi-flash:before{content:""}.mdi-flash-alert:before{content:""}.mdi-flash-alert-outline:before{content:""}.mdi-flash-auto:before{content:""}.mdi-flash-off:before{content:""}.mdi-flash-off-outline:before{content:""}.mdi-flash-outline:before{content:""}.mdi-flash-red-eye:before{content:""}.mdi-flash-triangle:before{content:""}.mdi-flash-triangle-outline:before{content:""}.mdi-flashlight:before{content:""}.mdi-flashlight-off:before{content:""}.mdi-flask:before{content:""}.mdi-flask-empty:before{content:""}.mdi-flask-empty-minus:before{content:""}.mdi-flask-empty-minus-outline:before{content:""}.mdi-flask-empty-off:before{content:""}.mdi-flask-empty-off-outline:before{content:""}.mdi-flask-empty-outline:before{content:""}.mdi-flask-empty-plus:before{content:""}.mdi-flask-empty-plus-outline:before{content:""}.mdi-flask-empty-remove:before{content:""}.mdi-flask-empty-remove-outline:before{content:""}.mdi-flask-minus:before{content:""}.mdi-flask-minus-outline:before{content:""}.mdi-flask-off:before{content:""}.mdi-flask-off-outline:before{content:""}.mdi-flask-outline:before{content:""}.mdi-flask-plus:before{content:""}.mdi-flask-plus-outline:before{content:""}.mdi-flask-remove:before{content:""}.mdi-flask-remove-outline:before{content:""}.mdi-flask-round-bottom:before{content:""}.mdi-flask-round-bottom-empty:before{content:""}.mdi-flask-round-bottom-empty-outline:before{content:""}.mdi-flask-round-bottom-outline:before{content:""}.mdi-fleur-de-lis:before{content:""}.mdi-flip-horizontal:before{content:""}.mdi-flip-to-back:before{content:""}.mdi-flip-to-front:before{content:""}.mdi-flip-vertical:before{content:""}.mdi-floor-lamp:before{content:""}.mdi-floor-lamp-dual:before{content:""}.mdi-floor-lamp-dual-outline:before{content:""}.mdi-floor-lamp-outline:before{content:""}.mdi-floor-lamp-torchiere:before{content:""}.mdi-floor-lamp-torchiere-outline:before{content:""}.mdi-floor-lamp-torchiere-variant:before{content:""}.mdi-floor-lamp-torchiere-variant-outline:before{content:""}.mdi-floor-plan:before{content:""}.mdi-floppy:before{content:""}.mdi-floppy-variant:before{content:""}.mdi-flower:before{content:""}.mdi-flower-outline:before{content:""}.mdi-flower-pollen:before{content:""}.mdi-flower-pollen-outline:before{content:""}.mdi-flower-poppy:before{content:""}.mdi-flower-tulip:before{content:""}.mdi-flower-tulip-outline:before{content:""}.mdi-focus-auto:before{content:""}.mdi-focus-field:before{content:""}.mdi-focus-field-horizontal:before{content:""}.mdi-focus-field-vertical:before{content:""}.mdi-folder:before{content:""}.mdi-folder-account:before{content:""}.mdi-folder-account-outline:before{content:""}.mdi-folder-alert:before{content:""}.mdi-folder-alert-outline:before{content:""}.mdi-folder-arrow-down:before{content:""}.mdi-folder-arrow-down-outline:before{content:""}.mdi-folder-arrow-left:before{content:""}.mdi-folder-arrow-left-outline:before{content:""}.mdi-folder-arrow-left-right:before{content:""}.mdi-folder-arrow-left-right-outline:before{content:""}.mdi-folder-arrow-right:before{content:""}.mdi-folder-arrow-right-outline:before{content:""}.mdi-folder-arrow-up:before{content:""}.mdi-folder-arrow-up-down:before{content:""}.mdi-folder-arrow-up-down-outline:before{content:""}.mdi-folder-arrow-up-outline:before{content:""}.mdi-folder-cancel:before{content:""}.mdi-folder-cancel-outline:before{content:""}.mdi-folder-check:before{content:""}.mdi-folder-check-outline:before{content:""}.mdi-folder-clock:before{content:""}.mdi-folder-clock-outline:before{content:""}.mdi-folder-cog:before{content:""}.mdi-folder-cog-outline:before{content:""}.mdi-folder-download:before{content:""}.mdi-folder-download-outline:before{content:""}.mdi-folder-edit:before{content:""}.mdi-folder-edit-outline:before{content:""}.mdi-folder-eye:before{content:""}.mdi-folder-eye-outline:before{content:""}.mdi-folder-file:before{content:""}.mdi-folder-file-outline:before{content:""}.mdi-folder-google-drive:before{content:""}.mdi-folder-heart:before{content:""}.mdi-folder-heart-outline:before{content:""}.mdi-folder-hidden:before{content:""}.mdi-folder-home:before{content:""}.mdi-folder-home-outline:before{content:""}.mdi-folder-image:before{content:""}.mdi-folder-information:before{content:""}.mdi-folder-information-outline:before{content:""}.mdi-folder-key:before{content:""}.mdi-folder-key-network:before{content:""}.mdi-folder-key-network-outline:before{content:""}.mdi-folder-key-outline:before{content:""}.mdi-folder-lock:before{content:""}.mdi-folder-lock-open:before{content:""}.mdi-folder-lock-open-outline:before{content:""}.mdi-folder-lock-outline:before{content:""}.mdi-folder-marker:before{content:""}.mdi-folder-marker-outline:before{content:""}.mdi-folder-minus:before{content:""}.mdi-folder-minus-outline:before{content:""}.mdi-folder-move:before{content:""}.mdi-folder-move-outline:before{content:""}.mdi-folder-multiple:before{content:""}.mdi-folder-multiple-image:before{content:""}.mdi-folder-multiple-outline:before{content:""}.mdi-folder-multiple-plus:before{content:""}.mdi-folder-multiple-plus-outline:before{content:""}.mdi-folder-music:before{content:""}.mdi-folder-music-outline:before{content:""}.mdi-folder-network:before{content:""}.mdi-folder-network-outline:before{content:""}.mdi-folder-off:before{content:""}.mdi-folder-off-outline:before{content:""}.mdi-folder-open:before{content:""}.mdi-folder-open-outline:before{content:""}.mdi-folder-outline:before{content:""}.mdi-folder-play:before{content:""}.mdi-folder-play-outline:before{content:""}.mdi-folder-plus:before{content:""}.mdi-folder-plus-outline:before{content:""}.mdi-folder-pound:before{content:""}.mdi-folder-pound-outline:before{content:""}.mdi-folder-question:before{content:""}.mdi-folder-question-outline:before{content:""}.mdi-folder-refresh:before{content:""}.mdi-folder-refresh-outline:before{content:""}.mdi-folder-remove:before{content:""}.mdi-folder-remove-outline:before{content:""}.mdi-folder-search:before{content:""}.mdi-folder-search-outline:before{content:""}.mdi-folder-settings:before{content:""}.mdi-folder-settings-outline:before{content:""}.mdi-folder-star:before{content:""}.mdi-folder-star-multiple:before{content:""}.mdi-folder-star-multiple-outline:before{content:""}.mdi-folder-star-outline:before{content:""}.mdi-folder-swap:before{content:""}.mdi-folder-swap-outline:before{content:""}.mdi-folder-sync:before{content:""}.mdi-folder-sync-outline:before{content:""}.mdi-folder-table:before{content:""}.mdi-folder-table-outline:before{content:""}.mdi-folder-text:before{content:""}.mdi-folder-text-outline:before{content:""}.mdi-folder-upload:before{content:""}.mdi-folder-upload-outline:before{content:""}.mdi-folder-wrench:before{content:""}.mdi-folder-wrench-outline:before{content:""}.mdi-folder-zip:before{content:""}.mdi-folder-zip-outline:before{content:""}.mdi-font-awesome:before{content:""}.mdi-food:before{content:""}.mdi-food-apple:before{content:""}.mdi-food-apple-outline:before{content:""}.mdi-food-croissant:before{content:""}.mdi-food-drumstick:before{content:""}.mdi-food-drumstick-off:before{content:""}.mdi-food-drumstick-off-outline:before{content:""}.mdi-food-drumstick-outline:before{content:""}.mdi-food-fork-drink:before{content:""}.mdi-food-halal:before{content:""}.mdi-food-hot-dog:before{content:""}.mdi-food-kosher:before{content:""}.mdi-food-off:before{content:""}.mdi-food-off-outline:before{content:""}.mdi-food-outline:before{content:""}.mdi-food-steak:before{content:""}.mdi-food-steak-off:before{content:""}.mdi-food-takeout-box:before{content:""}.mdi-food-takeout-box-outline:before{content:""}.mdi-food-turkey:before{content:""}.mdi-food-variant:before{content:""}.mdi-food-variant-off:before{content:""}.mdi-foot-print:before{content:""}.mdi-football:before{content:""}.mdi-football-australian:before{content:""}.mdi-football-helmet:before{content:""}.mdi-forest:before{content:""}.mdi-forest-outline:before{content:""}.mdi-forklift:before{content:""}.mdi-form-dropdown:before{content:""}.mdi-form-select:before{content:""}.mdi-form-textarea:before{content:""}.mdi-form-textbox:before{content:""}.mdi-form-textbox-lock:before{content:""}.mdi-form-textbox-password:before{content:""}.mdi-format-align-bottom:before{content:""}.mdi-format-align-center:before{content:""}.mdi-format-align-justify:before{content:""}.mdi-format-align-left:before{content:""}.mdi-format-align-middle:before{content:""}.mdi-format-align-right:before{content:""}.mdi-format-align-top:before{content:""}.mdi-format-annotation-minus:before{content:""}.mdi-format-annotation-plus:before{content:""}.mdi-format-bold:before{content:""}.mdi-format-clear:before{content:""}.mdi-format-color-fill:before{content:""}.mdi-format-color-highlight:before{content:""}.mdi-format-color-marker-cancel:before{content:""}.mdi-format-color-text:before{content:""}.mdi-format-columns:before{content:""}.mdi-format-float-center:before{content:""}.mdi-format-float-left:before{content:""}.mdi-format-float-none:before{content:""}.mdi-format-float-right:before{content:""}.mdi-format-font:before{content:""}.mdi-format-font-size-decrease:before{content:""}.mdi-format-font-size-increase:before{content:""}.mdi-format-header-1:before{content:""}.mdi-format-header-2:before{content:""}.mdi-format-header-3:before{content:""}.mdi-format-header-4:before{content:""}.mdi-format-header-5:before{content:""}.mdi-format-header-6:before{content:""}.mdi-format-header-decrease:before{content:""}.mdi-format-header-equal:before{content:""}.mdi-format-header-increase:before{content:""}.mdi-format-header-pound:before{content:""}.mdi-format-horizontal-align-center:before{content:""}.mdi-format-horizontal-align-left:before{content:""}.mdi-format-horizontal-align-right:before{content:""}.mdi-format-indent-decrease:before{content:""}.mdi-format-indent-increase:before{content:""}.mdi-format-italic:before{content:""}.mdi-format-letter-case:before{content:""}.mdi-format-letter-case-lower:before{content:""}.mdi-format-letter-case-upper:before{content:""}.mdi-format-letter-ends-with:before{content:""}.mdi-format-letter-matches:before{content:""}.mdi-format-letter-spacing:before{content:""}.mdi-format-letter-spacing-variant:before{content:""}.mdi-format-letter-starts-with:before{content:""}.mdi-format-line-height:before{content:""}.mdi-format-line-spacing:before{content:""}.mdi-format-line-style:before{content:""}.mdi-format-line-weight:before{content:""}.mdi-format-list-bulleted:before{content:""}.mdi-format-list-bulleted-square:before{content:""}.mdi-format-list-bulleted-triangle:before{content:""}.mdi-format-list-bulleted-type:before{content:""}.mdi-format-list-checkbox:before{content:""}.mdi-format-list-checks:before{content:""}.mdi-format-list-group:before{content:""}.mdi-format-list-group-plus:before{content:""}.mdi-format-list-numbered:before{content:""}.mdi-format-list-numbered-rtl:before{content:""}.mdi-format-list-text:before{content:""}.mdi-format-overline:before{content:""}.mdi-format-page-break:before{content:""}.mdi-format-page-split:before{content:""}.mdi-format-paint:before{content:""}.mdi-format-paragraph:before{content:""}.mdi-format-paragraph-spacing:before{content:""}.mdi-format-pilcrow:before{content:""}.mdi-format-pilcrow-arrow-left:before{content:""}.mdi-format-pilcrow-arrow-right:before{content:""}.mdi-format-quote-close:before{content:""}.mdi-format-quote-close-outline:before{content:""}.mdi-format-quote-open:before{content:""}.mdi-format-quote-open-outline:before{content:""}.mdi-format-rotate-90:before{content:""}.mdi-format-section:before{content:""}.mdi-format-size:before{content:""}.mdi-format-strikethrough:before{content:""}.mdi-format-strikethrough-variant:before{content:""}.mdi-format-subscript:before{content:""}.mdi-format-superscript:before{content:""}.mdi-format-text:before{content:""}.mdi-format-text-rotation-angle-down:before{content:""}.mdi-format-text-rotation-angle-up:before{content:""}.mdi-format-text-rotation-down:before{content:""}.mdi-format-text-rotation-down-vertical:before{content:""}.mdi-format-text-rotation-none:before{content:""}.mdi-format-text-rotation-up:before{content:""}.mdi-format-text-rotation-vertical:before{content:""}.mdi-format-text-variant:before{content:""}.mdi-format-text-variant-outline:before{content:""}.mdi-format-text-wrapping-clip:before{content:""}.mdi-format-text-wrapping-overflow:before{content:""}.mdi-format-text-wrapping-wrap:before{content:""}.mdi-format-textbox:before{content:""}.mdi-format-title:before{content:""}.mdi-format-underline:before{content:""}.mdi-format-underline-wavy:before{content:""}.mdi-format-vertical-align-bottom:before{content:""}.mdi-format-vertical-align-center:before{content:""}.mdi-format-vertical-align-top:before{content:""}.mdi-format-wrap-inline:before{content:""}.mdi-format-wrap-square:before{content:""}.mdi-format-wrap-tight:before{content:""}.mdi-format-wrap-top-bottom:before{content:""}.mdi-forum:before{content:""}.mdi-forum-minus:before{content:""}.mdi-forum-minus-outline:before{content:""}.mdi-forum-outline:before{content:""}.mdi-forum-plus:before{content:""}.mdi-forum-plus-outline:before{content:""}.mdi-forum-remove:before{content:""}.mdi-forum-remove-outline:before{content:""}.mdi-forward:before{content:""}.mdi-forwardburger:before{content:""}.mdi-fountain:before{content:""}.mdi-fountain-pen:before{content:""}.mdi-fountain-pen-tip:before{content:""}.mdi-fraction-one-half:before{content:""}.mdi-freebsd:before{content:""}.mdi-french-fries:before{content:""}.mdi-frequently-asked-questions:before{content:""}.mdi-fridge:before{content:""}.mdi-fridge-alert:before{content:""}.mdi-fridge-alert-outline:before{content:""}.mdi-fridge-bottom:before{content:""}.mdi-fridge-industrial:before{content:""}.mdi-fridge-industrial-alert:before{content:""}.mdi-fridge-industrial-alert-outline:before{content:""}.mdi-fridge-industrial-off:before{content:""}.mdi-fridge-industrial-off-outline:before{content:""}.mdi-fridge-industrial-outline:before{content:""}.mdi-fridge-off:before{content:""}.mdi-fridge-off-outline:before{content:""}.mdi-fridge-outline:before{content:""}.mdi-fridge-top:before{content:""}.mdi-fridge-variant:before{content:""}.mdi-fridge-variant-alert:before{content:""}.mdi-fridge-variant-alert-outline:before{content:""}.mdi-fridge-variant-off:before{content:""}.mdi-fridge-variant-off-outline:before{content:""}.mdi-fridge-variant-outline:before{content:""}.mdi-fruit-cherries:before{content:""}.mdi-fruit-cherries-off:before{content:""}.mdi-fruit-citrus:before{content:""}.mdi-fruit-citrus-off:before{content:""}.mdi-fruit-grapes:before{content:""}.mdi-fruit-grapes-outline:before{content:""}.mdi-fruit-pear:before{content:""}.mdi-fruit-pineapple:before{content:""}.mdi-fruit-watermelon:before{content:""}.mdi-fuel:before{content:""}.mdi-fuel-cell:before{content:""}.mdi-fullscreen:before{content:""}.mdi-fullscreen-exit:before{content:""}.mdi-function:before{content:""}.mdi-function-variant:before{content:""}.mdi-furigana-horizontal:before{content:""}.mdi-furigana-vertical:before{content:""}.mdi-fuse:before{content:""}.mdi-fuse-alert:before{content:""}.mdi-fuse-blade:before{content:""}.mdi-fuse-off:before{content:""}.mdi-gamepad:before{content:""}.mdi-gamepad-circle:before{content:""}.mdi-gamepad-circle-down:before{content:""}.mdi-gamepad-circle-left:before{content:""}.mdi-gamepad-circle-outline:before{content:""}.mdi-gamepad-circle-right:before{content:""}.mdi-gamepad-circle-up:before{content:""}.mdi-gamepad-down:before{content:""}.mdi-gamepad-left:before{content:""}.mdi-gamepad-outline:before{content:""}.mdi-gamepad-right:before{content:""}.mdi-gamepad-round:before{content:""}.mdi-gamepad-round-down:before{content:""}.mdi-gamepad-round-left:before{content:""}.mdi-gamepad-round-outline:before{content:""}.mdi-gamepad-round-right:before{content:""}.mdi-gamepad-round-up:before{content:""}.mdi-gamepad-square:before{content:""}.mdi-gamepad-square-outline:before{content:""}.mdi-gamepad-up:before{content:""}.mdi-gamepad-variant:before{content:""}.mdi-gamepad-variant-outline:before{content:""}.mdi-gamma:before{content:""}.mdi-gantry-crane:before{content:""}.mdi-garage:before{content:""}.mdi-garage-alert:before{content:""}.mdi-garage-alert-variant:before{content:""}.mdi-garage-lock:before{content:""}.mdi-garage-open:before{content:""}.mdi-garage-open-variant:before{content:""}.mdi-garage-variant:before{content:""}.mdi-garage-variant-lock:before{content:""}.mdi-gas-burner:before{content:""}.mdi-gas-cylinder:before{content:""}.mdi-gas-station:before{content:""}.mdi-gas-station-in-use:before{content:""}.mdi-gas-station-in-use-outline:before{content:""}.mdi-gas-station-off:before{content:""}.mdi-gas-station-off-outline:before{content:""}.mdi-gas-station-outline:before{content:""}.mdi-gate:before{content:""}.mdi-gate-alert:before{content:""}.mdi-gate-and:before{content:""}.mdi-gate-arrow-left:before{content:""}.mdi-gate-arrow-right:before{content:""}.mdi-gate-buffer:before{content:""}.mdi-gate-nand:before{content:""}.mdi-gate-nor:before{content:""}.mdi-gate-not:before{content:""}.mdi-gate-open:before{content:""}.mdi-gate-or:before{content:""}.mdi-gate-xnor:before{content:""}.mdi-gate-xor:before{content:""}.mdi-gatsby:before{content:""}.mdi-gauge:before{content:""}.mdi-gauge-empty:before{content:""}.mdi-gauge-full:before{content:""}.mdi-gauge-low:before{content:""}.mdi-gavel:before{content:""}.mdi-gender-female:before{content:""}.mdi-gender-male:before{content:""}.mdi-gender-male-female:before{content:""}.mdi-gender-male-female-variant:before{content:""}.mdi-gender-non-binary:before{content:""}.mdi-gender-transgender:before{content:""}.mdi-generator-mobile:before{content:""}.mdi-generator-portable:before{content:""}.mdi-generator-stationary:before{content:""}.mdi-gentoo:before{content:""}.mdi-gesture:before{content:""}.mdi-gesture-double-tap:before{content:""}.mdi-gesture-pinch:before{content:""}.mdi-gesture-spread:before{content:""}.mdi-gesture-swipe:before{content:""}.mdi-gesture-swipe-down:before{content:""}.mdi-gesture-swipe-horizontal:before{content:""}.mdi-gesture-swipe-left:before{content:""}.mdi-gesture-swipe-right:before{content:""}.mdi-gesture-swipe-up:before{content:""}.mdi-gesture-swipe-vertical:before{content:""}.mdi-gesture-tap:before{content:""}.mdi-gesture-tap-box:before{content:""}.mdi-gesture-tap-button:before{content:""}.mdi-gesture-tap-hold:before{content:""}.mdi-gesture-two-double-tap:before{content:""}.mdi-gesture-two-tap:before{content:""}.mdi-ghost:before{content:""}.mdi-ghost-off:before{content:""}.mdi-ghost-off-outline:before{content:""}.mdi-ghost-outline:before{content:""}.mdi-gift:before{content:""}.mdi-gift-off:before{content:""}.mdi-gift-off-outline:before{content:""}.mdi-gift-open:before{content:""}.mdi-gift-open-outline:before{content:""}.mdi-gift-outline:before{content:""}.mdi-git:before{content:""}.mdi-github:before{content:""}.mdi-gitlab:before{content:""}.mdi-glass-cocktail:before{content:""}.mdi-glass-cocktail-off:before{content:""}.mdi-glass-flute:before{content:""}.mdi-glass-fragile:before{content:""}.mdi-glass-mug:before{content:""}.mdi-glass-mug-off:before{content:""}.mdi-glass-mug-variant:before{content:""}.mdi-glass-mug-variant-off:before{content:""}.mdi-glass-pint-outline:before{content:""}.mdi-glass-stange:before{content:""}.mdi-glass-tulip:before{content:""}.mdi-glass-wine:before{content:""}.mdi-glasses:before{content:""}.mdi-globe-light:before{content:""}.mdi-globe-light-outline:before{content:""}.mdi-globe-model:before{content:""}.mdi-gmail:before{content:""}.mdi-gnome:before{content:""}.mdi-go-kart:before{content:""}.mdi-go-kart-track:before{content:""}.mdi-gog:before{content:""}.mdi-gold:before{content:""}.mdi-golf:before{content:""}.mdi-golf-cart:before{content:""}.mdi-golf-tee:before{content:""}.mdi-gondola:before{content:""}.mdi-goodreads:before{content:""}.mdi-google:before{content:""}.mdi-google-ads:before{content:""}.mdi-google-analytics:before{content:""}.mdi-google-assistant:before{content:""}.mdi-google-cardboard:before{content:""}.mdi-google-chrome:before{content:""}.mdi-google-circles:before{content:""}.mdi-google-circles-communities:before{content:""}.mdi-google-circles-extended:before{content:""}.mdi-google-circles-group:before{content:""}.mdi-google-classroom:before{content:""}.mdi-google-cloud:before{content:""}.mdi-google-downasaur:before{content:""}.mdi-google-drive:before{content:""}.mdi-google-earth:before{content:""}.mdi-google-fit:before{content:""}.mdi-google-glass:before{content:""}.mdi-google-hangouts:before{content:""}.mdi-google-keep:before{content:""}.mdi-google-lens:before{content:""}.mdi-google-maps:before{content:""}.mdi-google-my-business:before{content:""}.mdi-google-nearby:before{content:""}.mdi-google-play:before{content:""}.mdi-google-plus:before{content:""}.mdi-google-podcast:before{content:""}.mdi-google-spreadsheet:before{content:""}.mdi-google-street-view:before{content:""}.mdi-google-translate:before{content:""}.mdi-gradient-horizontal:before{content:""}.mdi-gradient-vertical:before{content:""}.mdi-grain:before{content:""}.mdi-graph:before{content:""}.mdi-graph-outline:before{content:""}.mdi-graphql:before{content:""}.mdi-grass:before{content:""}.mdi-grave-stone:before{content:""}.mdi-grease-pencil:before{content:""}.mdi-greater-than:before{content:""}.mdi-greater-than-or-equal:before{content:""}.mdi-greenhouse:before{content:""}.mdi-grid:before{content:""}.mdi-grid-large:before{content:""}.mdi-grid-off:before{content:""}.mdi-grill:before{content:""}.mdi-grill-outline:before{content:""}.mdi-group:before{content:""}.mdi-guitar-acoustic:before{content:""}.mdi-guitar-electric:before{content:""}.mdi-guitar-pick:before{content:""}.mdi-guitar-pick-outline:before{content:""}.mdi-guy-fawkes-mask:before{content:""}.mdi-gymnastics:before{content:""}.mdi-hail:before{content:""}.mdi-hair-dryer:before{content:""}.mdi-hair-dryer-outline:before{content:""}.mdi-halloween:before{content:""}.mdi-hamburger:before{content:""}.mdi-hamburger-check:before{content:""}.mdi-hamburger-minus:before{content:""}.mdi-hamburger-off:before{content:""}.mdi-hamburger-plus:before{content:""}.mdi-hamburger-remove:before{content:""}.mdi-hammer:before{content:""}.mdi-hammer-screwdriver:before{content:""}.mdi-hammer-sickle:before{content:""}.mdi-hammer-wrench:before{content:""}.mdi-hand-back-left:before{content:""}.mdi-hand-back-left-off:before{content:""}.mdi-hand-back-left-off-outline:before{content:""}.mdi-hand-back-left-outline:before{content:""}.mdi-hand-back-right:before{content:""}.mdi-hand-back-right-off:before{content:""}.mdi-hand-back-right-off-outline:before{content:""}.mdi-hand-back-right-outline:before{content:""}.mdi-hand-clap:before{content:""}.mdi-hand-clap-off:before{content:""}.mdi-hand-coin:before{content:""}.mdi-hand-coin-outline:before{content:""}.mdi-hand-cycle:before{content:""}.mdi-hand-extended:before{content:""}.mdi-hand-extended-outline:before{content:""}.mdi-hand-front-left:before{content:""}.mdi-hand-front-left-outline:before{content:""}.mdi-hand-front-right:before{content:""}.mdi-hand-front-right-outline:before{content:""}.mdi-hand-heart:before{content:""}.mdi-hand-heart-outline:before{content:""}.mdi-hand-okay:before{content:""}.mdi-hand-peace:before{content:""}.mdi-hand-peace-variant:before{content:""}.mdi-hand-pointing-down:before{content:""}.mdi-hand-pointing-left:before{content:""}.mdi-hand-pointing-right:before{content:""}.mdi-hand-pointing-up:before{content:""}.mdi-hand-saw:before{content:""}.mdi-hand-wash:before{content:""}.mdi-hand-wash-outline:before{content:""}.mdi-hand-water:before{content:""}.mdi-hand-wave:before{content:""}.mdi-hand-wave-outline:before{content:""}.mdi-handball:before{content:""}.mdi-handcuffs:before{content:""}.mdi-hands-pray:before{content:""}.mdi-handshake:before{content:""}.mdi-handshake-outline:before{content:""}.mdi-hanger:before{content:""}.mdi-hard-hat:before{content:""}.mdi-harddisk:before{content:""}.mdi-harddisk-plus:before{content:""}.mdi-harddisk-remove:before{content:""}.mdi-hat-fedora:before{content:""}.mdi-hazard-lights:before{content:""}.mdi-hdmi-port:before{content:""}.mdi-hdr:before{content:""}.mdi-hdr-off:before{content:""}.mdi-head:before{content:""}.mdi-head-alert:before{content:""}.mdi-head-alert-outline:before{content:""}.mdi-head-check:before{content:""}.mdi-head-check-outline:before{content:""}.mdi-head-cog:before{content:""}.mdi-head-cog-outline:before{content:""}.mdi-head-dots-horizontal:before{content:""}.mdi-head-dots-horizontal-outline:before{content:""}.mdi-head-flash:before{content:""}.mdi-head-flash-outline:before{content:""}.mdi-head-heart:before{content:""}.mdi-head-heart-outline:before{content:""}.mdi-head-lightbulb:before{content:""}.mdi-head-lightbulb-outline:before{content:""}.mdi-head-minus:before{content:""}.mdi-head-minus-outline:before{content:""}.mdi-head-outline:before{content:""}.mdi-head-plus:before{content:""}.mdi-head-plus-outline:before{content:""}.mdi-head-question:before{content:""}.mdi-head-question-outline:before{content:""}.mdi-head-remove:before{content:""}.mdi-head-remove-outline:before{content:""}.mdi-head-snowflake:before{content:""}.mdi-head-snowflake-outline:before{content:""}.mdi-head-sync:before{content:""}.mdi-head-sync-outline:before{content:""}.mdi-headphones:before{content:""}.mdi-headphones-bluetooth:before{content:""}.mdi-headphones-box:before{content:""}.mdi-headphones-off:before{content:""}.mdi-headphones-settings:before{content:""}.mdi-headset:before{content:""}.mdi-headset-dock:before{content:""}.mdi-headset-off:before{content:""}.mdi-heart:before{content:""}.mdi-heart-box:before{content:""}.mdi-heart-box-outline:before{content:""}.mdi-heart-broken:before{content:""}.mdi-heart-broken-outline:before{content:""}.mdi-heart-circle:before{content:""}.mdi-heart-circle-outline:before{content:""}.mdi-heart-cog:before{content:""}.mdi-heart-cog-outline:before{content:""}.mdi-heart-flash:before{content:""}.mdi-heart-half:before{content:""}.mdi-heart-half-full:before{content:""}.mdi-heart-half-outline:before{content:""}.mdi-heart-minus:before{content:""}.mdi-heart-minus-outline:before{content:""}.mdi-heart-multiple:before{content:""}.mdi-heart-multiple-outline:before{content:""}.mdi-heart-off:before{content:""}.mdi-heart-off-outline:before{content:""}.mdi-heart-outline:before{content:""}.mdi-heart-plus:before{content:""}.mdi-heart-plus-outline:before{content:""}.mdi-heart-pulse:before{content:""}.mdi-heart-remove:before{content:""}.mdi-heart-remove-outline:before{content:""}.mdi-heart-search:before{content:""}.mdi-heart-settings:before{content:""}.mdi-heart-settings-outline:before{content:""}.mdi-heat-pump:before{content:""}.mdi-heat-pump-outline:before{content:""}.mdi-heat-wave:before{content:""}.mdi-heating-coil:before{content:""}.mdi-helicopter:before{content:""}.mdi-help:before{content:""}.mdi-help-box:before{content:""}.mdi-help-box-multiple:before{content:""}.mdi-help-box-multiple-outline:before{content:""}.mdi-help-box-outline:before{content:""}.mdi-help-circle:before{content:""}.mdi-help-circle-outline:before{content:""}.mdi-help-network:before{content:""}.mdi-help-network-outline:before{content:""}.mdi-help-rhombus:before{content:""}.mdi-help-rhombus-outline:before{content:""}.mdi-hexadecimal:before{content:""}.mdi-hexagon:before{content:""}.mdi-hexagon-multiple:before{content:""}.mdi-hexagon-multiple-outline:before{content:""}.mdi-hexagon-outline:before{content:""}.mdi-hexagon-slice-1:before{content:""}.mdi-hexagon-slice-2:before{content:""}.mdi-hexagon-slice-3:before{content:""}.mdi-hexagon-slice-4:before{content:""}.mdi-hexagon-slice-5:before{content:""}.mdi-hexagon-slice-6:before{content:""}.mdi-hexagram:before{content:""}.mdi-hexagram-outline:before{content:""}.mdi-high-definition:before{content:""}.mdi-high-definition-box:before{content:""}.mdi-highway:before{content:""}.mdi-hiking:before{content:""}.mdi-history:before{content:""}.mdi-hockey-puck:before{content:""}.mdi-hockey-sticks:before{content:""}.mdi-hololens:before{content:""}.mdi-home:before{content:""}.mdi-home-account:before{content:""}.mdi-home-alert:before{content:""}.mdi-home-alert-outline:before{content:""}.mdi-home-analytics:before{content:""}.mdi-home-assistant:before{content:""}.mdi-home-automation:before{content:""}.mdi-home-battery:before{content:""}.mdi-home-battery-outline:before{content:""}.mdi-home-circle:before{content:""}.mdi-home-circle-outline:before{content:""}.mdi-home-city:before{content:""}.mdi-home-city-outline:before{content:""}.mdi-home-clock:before{content:""}.mdi-home-clock-outline:before{content:""}.mdi-home-edit:before{content:""}.mdi-home-edit-outline:before{content:""}.mdi-home-export-outline:before{content:""}.mdi-home-flood:before{content:""}.mdi-home-floor-0:before{content:""}.mdi-home-floor-1:before{content:""}.mdi-home-floor-2:before{content:""}.mdi-home-floor-3:before{content:""}.mdi-home-floor-a:before{content:""}.mdi-home-floor-b:before{content:""}.mdi-home-floor-g:before{content:""}.mdi-home-floor-l:before{content:""}.mdi-home-floor-negative-1:before{content:""}.mdi-home-group:before{content:""}.mdi-home-group-minus:before{content:""}.mdi-home-group-plus:before{content:""}.mdi-home-group-remove:before{content:""}.mdi-home-heart:before{content:""}.mdi-home-import-outline:before{content:""}.mdi-home-lightbulb:before{content:""}.mdi-home-lightbulb-outline:before{content:""}.mdi-home-lightning-bolt:before{content:""}.mdi-home-lightning-bolt-outline:before{content:""}.mdi-home-lock:before{content:""}.mdi-home-lock-open:before{content:""}.mdi-home-map-marker:before{content:""}.mdi-home-minus:before{content:""}.mdi-home-minus-outline:before{content:""}.mdi-home-modern:before{content:""}.mdi-home-off:before{content:""}.mdi-home-off-outline:before{content:""}.mdi-home-outline:before{content:""}.mdi-home-percent:before{content:""}.mdi-home-percent-outline:before{content:""}.mdi-home-plus:before{content:""}.mdi-home-plus-outline:before{content:""}.mdi-home-remove:before{content:""}.mdi-home-remove-outline:before{content:""}.mdi-home-roof:before{content:""}.mdi-home-search:before{content:""}.mdi-home-search-outline:before{content:""}.mdi-home-silo:before{content:""}.mdi-home-silo-outline:before{content:""}.mdi-home-sound-in:before{content:""}.mdi-home-sound-in-outline:before{content:""}.mdi-home-sound-out:before{content:""}.mdi-home-sound-out-outline:before{content:""}.mdi-home-switch:before{content:""}.mdi-home-switch-outline:before{content:""}.mdi-home-thermometer:before{content:""}.mdi-home-thermometer-outline:before{content:""}.mdi-home-variant:before{content:""}.mdi-home-variant-outline:before{content:""}.mdi-hook:before{content:""}.mdi-hook-off:before{content:""}.mdi-hoop-house:before{content:""}.mdi-hops:before{content:""}.mdi-horizontal-rotate-clockwise:before{content:""}.mdi-horizontal-rotate-counterclockwise:before{content:""}.mdi-horse:before{content:""}.mdi-horse-human:before{content:""}.mdi-horse-variant:before{content:""}.mdi-horse-variant-fast:before{content:""}.mdi-horseshoe:before{content:""}.mdi-hospital:before{content:""}.mdi-hospital-box:before{content:""}.mdi-hospital-box-outline:before{content:""}.mdi-hospital-building:before{content:""}.mdi-hospital-marker:before{content:""}.mdi-hot-tub:before{content:""}.mdi-hours-12:before{content:""}.mdi-hours-24:before{content:""}.mdi-hub:before{content:""}.mdi-hub-outline:before{content:""}.mdi-hubspot:before{content:""}.mdi-hulu:before{content:""}.mdi-human:before{content:""}.mdi-human-baby-changing-table:before{content:""}.mdi-human-cane:before{content:""}.mdi-human-capacity-decrease:before{content:""}.mdi-human-capacity-increase:before{content:""}.mdi-human-child:before{content:""}.mdi-human-dolly:before{content:""}.mdi-human-edit:before{content:""}.mdi-human-female:before{content:""}.mdi-human-female-boy:before{content:""}.mdi-human-female-dance:before{content:""}.mdi-human-female-female:before{content:""}.mdi-human-female-female-child:before{content:""}.mdi-human-female-girl:before{content:""}.mdi-human-greeting:before{content:""}.mdi-human-greeting-proximity:before{content:""}.mdi-human-greeting-variant:before{content:""}.mdi-human-handsdown:before{content:""}.mdi-human-handsup:before{content:""}.mdi-human-male:before{content:""}.mdi-human-male-board:before{content:""}.mdi-human-male-board-poll:before{content:""}.mdi-human-male-boy:before{content:""}.mdi-human-male-child:before{content:""}.mdi-human-male-female:before{content:""}.mdi-human-male-female-child:before{content:""}.mdi-human-male-girl:before{content:""}.mdi-human-male-height:before{content:""}.mdi-human-male-height-variant:before{content:""}.mdi-human-male-male:before{content:""}.mdi-human-male-male-child:before{content:""}.mdi-human-non-binary:before{content:""}.mdi-human-pregnant:before{content:""}.mdi-human-queue:before{content:""}.mdi-human-scooter:before{content:""}.mdi-human-walker:before{content:""}.mdi-human-wheelchair:before{content:""}.mdi-human-white-cane:before{content:""}.mdi-humble-bundle:before{content:""}.mdi-hvac:before{content:""}.mdi-hvac-off:before{content:""}.mdi-hydraulic-oil-level:before{content:""}.mdi-hydraulic-oil-temperature:before{content:""}.mdi-hydro-power:before{content:""}.mdi-hydrogen-station:before{content:""}.mdi-ice-cream:before{content:""}.mdi-ice-cream-off:before{content:""}.mdi-ice-pop:before{content:""}.mdi-id-card:before{content:""}.mdi-identifier:before{content:""}.mdi-ideogram-cjk:before{content:""}.mdi-ideogram-cjk-variant:before{content:""}.mdi-image:before{content:""}.mdi-image-album:before{content:""}.mdi-image-area:before{content:""}.mdi-image-area-close:before{content:""}.mdi-image-auto-adjust:before{content:""}.mdi-image-broken:before{content:""}.mdi-image-broken-variant:before{content:""}.mdi-image-check:before{content:""}.mdi-image-check-outline:before{content:""}.mdi-image-edit:before{content:""}.mdi-image-edit-outline:before{content:""}.mdi-image-filter-black-white:before{content:""}.mdi-image-filter-center-focus:before{content:""}.mdi-image-filter-center-focus-strong:before{content:""}.mdi-image-filter-center-focus-strong-outline:before{content:""}.mdi-image-filter-center-focus-weak:before{content:""}.mdi-image-filter-drama:before{content:""}.mdi-image-filter-drama-outline:before{content:""}.mdi-image-filter-frames:before{content:""}.mdi-image-filter-hdr:before{content:""}.mdi-image-filter-hdr-outline:before{content:""}.mdi-image-filter-none:before{content:""}.mdi-image-filter-tilt-shift:before{content:""}.mdi-image-filter-vintage:before{content:""}.mdi-image-frame:before{content:""}.mdi-image-lock:before{content:""}.mdi-image-lock-outline:before{content:""}.mdi-image-marker:before{content:""}.mdi-image-marker-outline:before{content:""}.mdi-image-minus:before{content:""}.mdi-image-minus-outline:before{content:""}.mdi-image-move:before{content:""}.mdi-image-multiple:before{content:""}.mdi-image-multiple-outline:before{content:""}.mdi-image-off:before{content:""}.mdi-image-off-outline:before{content:""}.mdi-image-outline:before{content:""}.mdi-image-plus:before{content:""}.mdi-image-plus-outline:before{content:""}.mdi-image-refresh:before{content:""}.mdi-image-refresh-outline:before{content:""}.mdi-image-remove:before{content:""}.mdi-image-remove-outline:before{content:""}.mdi-image-search:before{content:""}.mdi-image-search-outline:before{content:""}.mdi-image-size-select-actual:before{content:""}.mdi-image-size-select-large:before{content:""}.mdi-image-size-select-small:before{content:""}.mdi-image-sync:before{content:""}.mdi-image-sync-outline:before{content:""}.mdi-image-text:before{content:""}.mdi-import:before{content:""}.mdi-inbox:before{content:""}.mdi-inbox-arrow-down:before{content:""}.mdi-inbox-arrow-down-outline:before{content:""}.mdi-inbox-arrow-up:before{content:""}.mdi-inbox-arrow-up-outline:before{content:""}.mdi-inbox-full:before{content:""}.mdi-inbox-full-outline:before{content:""}.mdi-inbox-multiple:before{content:""}.mdi-inbox-multiple-outline:before{content:""}.mdi-inbox-outline:before{content:""}.mdi-inbox-remove:before{content:""}.mdi-inbox-remove-outline:before{content:""}.mdi-incognito:before{content:""}.mdi-incognito-circle:before{content:""}.mdi-incognito-circle-off:before{content:""}.mdi-incognito-off:before{content:""}.mdi-induction:before{content:""}.mdi-infinity:before{content:""}.mdi-information:before{content:""}.mdi-information-box:before{content:""}.mdi-information-box-outline:before{content:""}.mdi-information-off:before{content:""}.mdi-information-off-outline:before{content:""}.mdi-information-outline:before{content:""}.mdi-information-slab-box:before{content:""}.mdi-information-slab-box-outline:before{content:""}.mdi-information-slab-circle:before{content:""}.mdi-information-slab-circle-outline:before{content:""}.mdi-information-slab-symbol:before{content:""}.mdi-information-symbol:before{content:""}.mdi-information-variant:before{content:""}.mdi-information-variant-box:before{content:""}.mdi-information-variant-box-outline:before{content:""}.mdi-information-variant-circle:before{content:""}.mdi-information-variant-circle-outline:before{content:""}.mdi-instagram:before{content:""}.mdi-instrument-triangle:before{content:""}.mdi-integrated-circuit-chip:before{content:""}.mdi-invert-colors:before{content:""}.mdi-invert-colors-off:before{content:""}.mdi-iobroker:before{content:""}.mdi-ip:before{content:""}.mdi-ip-network:before{content:""}.mdi-ip-network-outline:before{content:""}.mdi-ip-outline:before{content:""}.mdi-ipod:before{content:""}.mdi-iron:before{content:""}.mdi-iron-board:before{content:""}.mdi-iron-outline:before{content:""}.mdi-island:before{content:""}.mdi-island-variant:before{content:""}.mdi-iv-bag:before{content:""}.mdi-jabber:before{content:""}.mdi-jeepney:before{content:""}.mdi-jellyfish:before{content:""}.mdi-jellyfish-outline:before{content:""}.mdi-jira:before{content:""}.mdi-jquery:before{content:""}.mdi-jsfiddle:before{content:""}.mdi-jump-rope:before{content:""}.mdi-kabaddi:before{content:""}.mdi-kangaroo:before{content:""}.mdi-karate:before{content:""}.mdi-kayaking:before{content:""}.mdi-keg:before{content:""}.mdi-kettle:before{content:""}.mdi-kettle-alert:before{content:""}.mdi-kettle-alert-outline:before{content:""}.mdi-kettle-off:before{content:""}.mdi-kettle-off-outline:before{content:""}.mdi-kettle-outline:before{content:""}.mdi-kettle-pour-over:before{content:""}.mdi-kettle-steam:before{content:""}.mdi-kettle-steam-outline:before{content:""}.mdi-kettlebell:before{content:""}.mdi-key:before{content:""}.mdi-key-alert:before{content:""}.mdi-key-alert-outline:before{content:""}.mdi-key-arrow-right:before{content:""}.mdi-key-chain:before{content:""}.mdi-key-chain-variant:before{content:""}.mdi-key-change:before{content:""}.mdi-key-link:before{content:""}.mdi-key-minus:before{content:""}.mdi-key-outline:before{content:""}.mdi-key-plus:before{content:""}.mdi-key-remove:before{content:""}.mdi-key-star:before{content:""}.mdi-key-variant:before{content:""}.mdi-key-wireless:before{content:""}.mdi-keyboard:before{content:""}.mdi-keyboard-backspace:before{content:""}.mdi-keyboard-caps:before{content:""}.mdi-keyboard-close:before{content:""}.mdi-keyboard-close-outline:before{content:""}.mdi-keyboard-esc:before{content:""}.mdi-keyboard-f1:before{content:""}.mdi-keyboard-f10:before{content:""}.mdi-keyboard-f11:before{content:""}.mdi-keyboard-f12:before{content:""}.mdi-keyboard-f2:before{content:""}.mdi-keyboard-f3:before{content:""}.mdi-keyboard-f4:before{content:""}.mdi-keyboard-f5:before{content:""}.mdi-keyboard-f6:before{content:""}.mdi-keyboard-f7:before{content:""}.mdi-keyboard-f8:before{content:""}.mdi-keyboard-f9:before{content:""}.mdi-keyboard-off:before{content:""}.mdi-keyboard-off-outline:before{content:""}.mdi-keyboard-outline:before{content:""}.mdi-keyboard-return:before{content:""}.mdi-keyboard-settings:before{content:""}.mdi-keyboard-settings-outline:before{content:""}.mdi-keyboard-space:before{content:""}.mdi-keyboard-tab:before{content:""}.mdi-keyboard-tab-reverse:before{content:""}.mdi-keyboard-variant:before{content:""}.mdi-khanda:before{content:""}.mdi-kickstarter:before{content:""}.mdi-kite:before{content:""}.mdi-kite-outline:before{content:""}.mdi-kitesurfing:before{content:""}.mdi-klingon:before{content:""}.mdi-knife:before{content:""}.mdi-knife-military:before{content:""}.mdi-knob:before{content:""}.mdi-koala:before{content:""}.mdi-kodi:before{content:""}.mdi-kubernetes:before{content:""}.mdi-label:before{content:""}.mdi-label-multiple:before{content:""}.mdi-label-multiple-outline:before{content:""}.mdi-label-off:before{content:""}.mdi-label-off-outline:before{content:""}.mdi-label-outline:before{content:""}.mdi-label-percent:before{content:""}.mdi-label-percent-outline:before{content:""}.mdi-label-variant:before{content:""}.mdi-label-variant-outline:before{content:""}.mdi-ladder:before{content:""}.mdi-ladybug:before{content:""}.mdi-lambda:before{content:""}.mdi-lamp:before{content:""}.mdi-lamp-outline:before{content:""}.mdi-lamps:before{content:""}.mdi-lamps-outline:before{content:""}.mdi-lan:before{content:""}.mdi-lan-check:before{content:""}.mdi-lan-connect:before{content:""}.mdi-lan-disconnect:before{content:""}.mdi-lan-pending:before{content:""}.mdi-land-fields:before{content:""}.mdi-land-plots:before{content:""}.mdi-land-plots-circle:before{content:""}.mdi-land-plots-circle-variant:before{content:""}.mdi-land-plots-marker:before{content:""}.mdi-land-rows-horizontal:before{content:""}.mdi-land-rows-vertical:before{content:""}.mdi-landslide:before{content:""}.mdi-landslide-outline:before{content:""}.mdi-language-c:before{content:""}.mdi-language-cpp:before{content:""}.mdi-language-csharp:before{content:""}.mdi-language-css3:before{content:""}.mdi-language-fortran:before{content:""}.mdi-language-go:before{content:""}.mdi-language-haskell:before{content:""}.mdi-language-html5:before{content:""}.mdi-language-java:before{content:""}.mdi-language-javascript:before{content:""}.mdi-language-kotlin:before{content:""}.mdi-language-lua:before{content:""}.mdi-language-markdown:before{content:""}.mdi-language-markdown-outline:before{content:""}.mdi-language-php:before{content:""}.mdi-language-python:before{content:""}.mdi-language-r:before{content:""}.mdi-language-ruby:before{content:""}.mdi-language-ruby-on-rails:before{content:""}.mdi-language-rust:before{content:""}.mdi-language-swift:before{content:""}.mdi-language-typescript:before{content:""}.mdi-language-xaml:before{content:""}.mdi-laptop:before{content:""}.mdi-laptop-account:before{content:""}.mdi-laptop-off:before{content:""}.mdi-laravel:before{content:""}.mdi-laser-pointer:before{content:""}.mdi-lasso:before{content:""}.mdi-lastpass:before{content:""}.mdi-latitude:before{content:""}.mdi-launch:before{content:""}.mdi-lava-lamp:before{content:""}.mdi-layers:before{content:""}.mdi-layers-edit:before{content:""}.mdi-layers-minus:before{content:""}.mdi-layers-off:before{content:""}.mdi-layers-off-outline:before{content:""}.mdi-layers-outline:before{content:""}.mdi-layers-plus:before{content:""}.mdi-layers-remove:before{content:""}.mdi-layers-search:before{content:""}.mdi-layers-search-outline:before{content:""}.mdi-layers-triple:before{content:""}.mdi-layers-triple-outline:before{content:""}.mdi-lead-pencil:before{content:""}.mdi-leaf:before{content:""}.mdi-leaf-circle:before{content:""}.mdi-leaf-circle-outline:before{content:""}.mdi-leaf-maple:before{content:""}.mdi-leaf-maple-off:before{content:""}.mdi-leaf-off:before{content:""}.mdi-leak:before{content:""}.mdi-leak-off:before{content:""}.mdi-lectern:before{content:""}.mdi-led-off:before{content:""}.mdi-led-on:before{content:""}.mdi-led-outline:before{content:""}.mdi-led-strip:before{content:""}.mdi-led-strip-variant:before{content:""}.mdi-led-strip-variant-off:before{content:""}.mdi-led-variant-off:before{content:""}.mdi-led-variant-on:before{content:""}.mdi-led-variant-outline:before{content:""}.mdi-leek:before{content:""}.mdi-less-than:before{content:""}.mdi-less-than-or-equal:before{content:""}.mdi-library:before{content:""}.mdi-library-outline:before{content:""}.mdi-library-shelves:before{content:""}.mdi-license:before{content:""}.mdi-lifebuoy:before{content:""}.mdi-light-flood-down:before{content:""}.mdi-light-flood-up:before{content:""}.mdi-light-recessed:before{content:""}.mdi-light-switch:before{content:""}.mdi-light-switch-off:before{content:""}.mdi-lightbulb:before{content:""}.mdi-lightbulb-alert:before{content:""}.mdi-lightbulb-alert-outline:before{content:""}.mdi-lightbulb-auto:before{content:""}.mdi-lightbulb-auto-outline:before{content:""}.mdi-lightbulb-cfl:before{content:""}.mdi-lightbulb-cfl-off:before{content:""}.mdi-lightbulb-cfl-spiral:before{content:""}.mdi-lightbulb-cfl-spiral-off:before{content:""}.mdi-lightbulb-fluorescent-tube:before{content:""}.mdi-lightbulb-fluorescent-tube-outline:before{content:""}.mdi-lightbulb-group:before{content:""}.mdi-lightbulb-group-off:before{content:""}.mdi-lightbulb-group-off-outline:before{content:""}.mdi-lightbulb-group-outline:before{content:""}.mdi-lightbulb-multiple:before{content:""}.mdi-lightbulb-multiple-off:before{content:""}.mdi-lightbulb-multiple-off-outline:before{content:""}.mdi-lightbulb-multiple-outline:before{content:""}.mdi-lightbulb-night:before{content:""}.mdi-lightbulb-night-outline:before{content:""}.mdi-lightbulb-off:before{content:""}.mdi-lightbulb-off-outline:before{content:""}.mdi-lightbulb-on:before{content:""}.mdi-lightbulb-on-10:before{content:""}.mdi-lightbulb-on-20:before{content:""}.mdi-lightbulb-on-30:before{content:""}.mdi-lightbulb-on-40:before{content:""}.mdi-lightbulb-on-50:before{content:""}.mdi-lightbulb-on-60:before{content:""}.mdi-lightbulb-on-70:before{content:""}.mdi-lightbulb-on-80:before{content:""}.mdi-lightbulb-on-90:before{content:""}.mdi-lightbulb-on-outline:before{content:""}.mdi-lightbulb-outline:before{content:""}.mdi-lightbulb-question:before{content:""}.mdi-lightbulb-question-outline:before{content:""}.mdi-lightbulb-spot:before{content:""}.mdi-lightbulb-spot-off:before{content:""}.mdi-lightbulb-variant:before{content:""}.mdi-lightbulb-variant-outline:before{content:""}.mdi-lighthouse:before{content:""}.mdi-lighthouse-on:before{content:""}.mdi-lightning-bolt:before{content:""}.mdi-lightning-bolt-circle:before{content:""}.mdi-lightning-bolt-outline:before{content:""}.mdi-line-scan:before{content:""}.mdi-lingerie:before{content:""}.mdi-link:before{content:""}.mdi-link-box:before{content:""}.mdi-link-box-outline:before{content:""}.mdi-link-box-variant:before{content:""}.mdi-link-box-variant-outline:before{content:""}.mdi-link-circle:before{content:""}.mdi-link-circle-outline:before{content:""}.mdi-link-edit:before{content:""}.mdi-link-lock:before{content:""}.mdi-link-off:before{content:""}.mdi-link-plus:before{content:""}.mdi-link-variant:before{content:""}.mdi-link-variant-minus:before{content:""}.mdi-link-variant-off:before{content:""}.mdi-link-variant-plus:before{content:""}.mdi-link-variant-remove:before{content:""}.mdi-linkedin:before{content:""}.mdi-linux:before{content:""}.mdi-linux-mint:before{content:""}.mdi-lipstick:before{content:""}.mdi-liquid-spot:before{content:""}.mdi-liquor:before{content:""}.mdi-list-box:before{content:""}.mdi-list-box-outline:before{content:""}.mdi-list-status:before{content:""}.mdi-litecoin:before{content:""}.mdi-loading:before{content:""}.mdi-location-enter:before{content:""}.mdi-location-exit:before{content:""}.mdi-lock:before{content:""}.mdi-lock-alert:before{content:""}.mdi-lock-alert-outline:before{content:""}.mdi-lock-check:before{content:""}.mdi-lock-check-outline:before{content:""}.mdi-lock-clock:before{content:""}.mdi-lock-minus:before{content:""}.mdi-lock-minus-outline:before{content:""}.mdi-lock-off:before{content:""}.mdi-lock-off-outline:before{content:""}.mdi-lock-open:before{content:""}.mdi-lock-open-alert:before{content:""}.mdi-lock-open-alert-outline:before{content:""}.mdi-lock-open-check:before{content:""}.mdi-lock-open-check-outline:before{content:""}.mdi-lock-open-minus:before{content:""}.mdi-lock-open-minus-outline:before{content:""}.mdi-lock-open-outline:before{content:""}.mdi-lock-open-plus:before{content:""}.mdi-lock-open-plus-outline:before{content:""}.mdi-lock-open-remove:before{content:""}.mdi-lock-open-remove-outline:before{content:""}.mdi-lock-open-variant:before{content:""}.mdi-lock-open-variant-outline:before{content:""}.mdi-lock-outline:before{content:""}.mdi-lock-pattern:before{content:""}.mdi-lock-percent:before{content:""}.mdi-lock-percent-open:before{content:""}.mdi-lock-percent-open-outline:before{content:""}.mdi-lock-percent-open-variant:before{content:""}.mdi-lock-percent-open-variant-outline:before{content:""}.mdi-lock-percent-outline:before{content:""}.mdi-lock-plus:before{content:""}.mdi-lock-plus-outline:before{content:""}.mdi-lock-question:before{content:""}.mdi-lock-remove:before{content:""}.mdi-lock-remove-outline:before{content:""}.mdi-lock-reset:before{content:""}.mdi-lock-smart:before{content:""}.mdi-locker:before{content:""}.mdi-locker-multiple:before{content:""}.mdi-login:before{content:""}.mdi-login-variant:before{content:""}.mdi-logout:before{content:""}.mdi-logout-variant:before{content:""}.mdi-longitude:before{content:""}.mdi-looks:before{content:""}.mdi-lotion:before{content:""}.mdi-lotion-outline:before{content:""}.mdi-lotion-plus:before{content:""}.mdi-lotion-plus-outline:before{content:""}.mdi-loupe:before{content:""}.mdi-lumx:before{content:""}.mdi-lungs:before{content:""}.mdi-mace:before{content:""}.mdi-magazine-pistol:before{content:""}.mdi-magazine-rifle:before{content:""}.mdi-magic-staff:before{content:""}.mdi-magnet:before{content:""}.mdi-magnet-on:before{content:""}.mdi-magnify:before{content:""}.mdi-magnify-close:before{content:""}.mdi-magnify-expand:before{content:""}.mdi-magnify-minus:before{content:""}.mdi-magnify-minus-cursor:before{content:""}.mdi-magnify-minus-outline:before{content:""}.mdi-magnify-plus:before{content:""}.mdi-magnify-plus-cursor:before{content:""}.mdi-magnify-plus-outline:before{content:""}.mdi-magnify-remove-cursor:before{content:""}.mdi-magnify-remove-outline:before{content:""}.mdi-magnify-scan:before{content:""}.mdi-mail:before{content:""}.mdi-mailbox:before{content:""}.mdi-mailbox-open:before{content:""}.mdi-mailbox-open-outline:before{content:""}.mdi-mailbox-open-up:before{content:""}.mdi-mailbox-open-up-outline:before{content:""}.mdi-mailbox-outline:before{content:""}.mdi-mailbox-up:before{content:""}.mdi-mailbox-up-outline:before{content:""}.mdi-manjaro:before{content:""}.mdi-map:before{content:""}.mdi-map-check:before{content:""}.mdi-map-check-outline:before{content:""}.mdi-map-clock:before{content:""}.mdi-map-clock-outline:before{content:""}.mdi-map-legend:before{content:""}.mdi-map-marker:before{content:""}.mdi-map-marker-account:before{content:""}.mdi-map-marker-account-outline:before{content:""}.mdi-map-marker-alert:before{content:""}.mdi-map-marker-alert-outline:before{content:""}.mdi-map-marker-check:before{content:""}.mdi-map-marker-check-outline:before{content:""}.mdi-map-marker-circle:before{content:""}.mdi-map-marker-distance:before{content:""}.mdi-map-marker-down:before{content:""}.mdi-map-marker-left:before{content:""}.mdi-map-marker-left-outline:before{content:""}.mdi-map-marker-minus:before{content:""}.mdi-map-marker-minus-outline:before{content:""}.mdi-map-marker-multiple:before{content:""}.mdi-map-marker-multiple-outline:before{content:""}.mdi-map-marker-off:before{content:""}.mdi-map-marker-off-outline:before{content:""}.mdi-map-marker-outline:before{content:""}.mdi-map-marker-path:before{content:""}.mdi-map-marker-plus:before{content:""}.mdi-map-marker-plus-outline:before{content:""}.mdi-map-marker-question:before{content:""}.mdi-map-marker-question-outline:before{content:""}.mdi-map-marker-radius:before{content:""}.mdi-map-marker-radius-outline:before{content:""}.mdi-map-marker-remove:before{content:""}.mdi-map-marker-remove-outline:before{content:""}.mdi-map-marker-remove-variant:before{content:""}.mdi-map-marker-right:before{content:""}.mdi-map-marker-right-outline:before{content:""}.mdi-map-marker-star:before{content:""}.mdi-map-marker-star-outline:before{content:""}.mdi-map-marker-up:before{content:""}.mdi-map-minus:before{content:""}.mdi-map-outline:before{content:""}.mdi-map-plus:before{content:""}.mdi-map-search:before{content:""}.mdi-map-search-outline:before{content:""}.mdi-mapbox:before{content:""}.mdi-margin:before{content:""}.mdi-marker:before{content:""}.mdi-marker-cancel:before{content:""}.mdi-marker-check:before{content:""}.mdi-mastodon:before{content:""}.mdi-material-design:before{content:""}.mdi-material-ui:before{content:""}.mdi-math-compass:before{content:""}.mdi-math-cos:before{content:""}.mdi-math-integral:before{content:""}.mdi-math-integral-box:before{content:""}.mdi-math-log:before{content:""}.mdi-math-norm:before{content:""}.mdi-math-norm-box:before{content:""}.mdi-math-sin:before{content:""}.mdi-math-tan:before{content:""}.mdi-matrix:before{content:""}.mdi-medal:before{content:""}.mdi-medal-outline:before{content:""}.mdi-medical-bag:before{content:""}.mdi-medical-cotton-swab:before{content:""}.mdi-medication:before{content:""}.mdi-medication-outline:before{content:""}.mdi-meditation:before{content:""}.mdi-memory:before{content:""}.mdi-memory-arrow-down:before{content:""}.mdi-menorah:before{content:""}.mdi-menorah-fire:before{content:""}.mdi-menu:before{content:""}.mdi-menu-close:before{content:""}.mdi-menu-down:before{content:""}.mdi-menu-down-outline:before{content:""}.mdi-menu-left:before{content:""}.mdi-menu-left-outline:before{content:""}.mdi-menu-open:before{content:""}.mdi-menu-right:before{content:""}.mdi-menu-right-outline:before{content:""}.mdi-menu-swap:before{content:""}.mdi-menu-swap-outline:before{content:""}.mdi-menu-up:before{content:""}.mdi-menu-up-outline:before{content:""}.mdi-merge:before{content:""}.mdi-message:before{content:""}.mdi-message-alert:before{content:""}.mdi-message-alert-outline:before{content:""}.mdi-message-arrow-left:before{content:""}.mdi-message-arrow-left-outline:before{content:""}.mdi-message-arrow-right:before{content:""}.mdi-message-arrow-right-outline:before{content:""}.mdi-message-badge:before{content:""}.mdi-message-badge-outline:before{content:""}.mdi-message-bookmark:before{content:""}.mdi-message-bookmark-outline:before{content:""}.mdi-message-bulleted:before{content:""}.mdi-message-bulleted-off:before{content:""}.mdi-message-check:before{content:""}.mdi-message-check-outline:before{content:""}.mdi-message-cog:before{content:""}.mdi-message-cog-outline:before{content:""}.mdi-message-draw:before{content:""}.mdi-message-fast:before{content:""}.mdi-message-fast-outline:before{content:""}.mdi-message-flash:before{content:""}.mdi-message-flash-outline:before{content:""}.mdi-message-image:before{content:""}.mdi-message-image-outline:before{content:""}.mdi-message-lock:before{content:""}.mdi-message-lock-outline:before{content:""}.mdi-message-minus:before{content:""}.mdi-message-minus-outline:before{content:""}.mdi-message-off:before{content:""}.mdi-message-off-outline:before{content:""}.mdi-message-outline:before{content:""}.mdi-message-plus:before{content:""}.mdi-message-plus-outline:before{content:""}.mdi-message-processing:before{content:""}.mdi-message-processing-outline:before{content:""}.mdi-message-question:before{content:""}.mdi-message-question-outline:before{content:""}.mdi-message-reply:before{content:""}.mdi-message-reply-outline:before{content:""}.mdi-message-reply-text:before{content:""}.mdi-message-reply-text-outline:before{content:""}.mdi-message-settings:before{content:""}.mdi-message-settings-outline:before{content:""}.mdi-message-star:before{content:""}.mdi-message-star-outline:before{content:""}.mdi-message-text:before{content:""}.mdi-message-text-clock:before{content:""}.mdi-message-text-clock-outline:before{content:""}.mdi-message-text-fast:before{content:""}.mdi-message-text-fast-outline:before{content:""}.mdi-message-text-lock:before{content:""}.mdi-message-text-lock-outline:before{content:""}.mdi-message-text-outline:before{content:""}.mdi-message-video:before{content:""}.mdi-meteor:before{content:""}.mdi-meter-electric:before{content:""}.mdi-meter-electric-outline:before{content:""}.mdi-meter-gas:before{content:""}.mdi-meter-gas-outline:before{content:""}.mdi-metronome:before{content:""}.mdi-metronome-tick:before{content:""}.mdi-micro-sd:before{content:""}.mdi-microphone:before{content:""}.mdi-microphone-message:before{content:""}.mdi-microphone-message-off:before{content:""}.mdi-microphone-minus:before{content:""}.mdi-microphone-off:before{content:""}.mdi-microphone-outline:before{content:""}.mdi-microphone-plus:before{content:""}.mdi-microphone-question:before{content:""}.mdi-microphone-question-outline:before{content:""}.mdi-microphone-settings:before{content:""}.mdi-microphone-variant:before{content:""}.mdi-microphone-variant-off:before{content:""}.mdi-microscope:before{content:""}.mdi-microsoft:before{content:""}.mdi-microsoft-access:before{content:""}.mdi-microsoft-azure:before{content:""}.mdi-microsoft-azure-devops:before{content:""}.mdi-microsoft-bing:before{content:""}.mdi-microsoft-dynamics-365:before{content:""}.mdi-microsoft-edge:before{content:""}.mdi-microsoft-excel:before{content:""}.mdi-microsoft-internet-explorer:before{content:""}.mdi-microsoft-office:before{content:""}.mdi-microsoft-onedrive:before{content:""}.mdi-microsoft-onenote:before{content:""}.mdi-microsoft-outlook:before{content:""}.mdi-microsoft-powerpoint:before{content:""}.mdi-microsoft-sharepoint:before{content:""}.mdi-microsoft-teams:before{content:""}.mdi-microsoft-visual-studio:before{content:""}.mdi-microsoft-visual-studio-code:before{content:""}.mdi-microsoft-windows:before{content:""}.mdi-microsoft-windows-classic:before{content:""}.mdi-microsoft-word:before{content:""}.mdi-microsoft-xbox:before{content:""}.mdi-microsoft-xbox-controller:before{content:""}.mdi-microsoft-xbox-controller-battery-alert:before{content:""}.mdi-microsoft-xbox-controller-battery-charging:before{content:""}.mdi-microsoft-xbox-controller-battery-empty:before{content:""}.mdi-microsoft-xbox-controller-battery-full:before{content:""}.mdi-microsoft-xbox-controller-battery-low:before{content:""}.mdi-microsoft-xbox-controller-battery-medium:before{content:""}.mdi-microsoft-xbox-controller-battery-unknown:before{content:""}.mdi-microsoft-xbox-controller-menu:before{content:""}.mdi-microsoft-xbox-controller-off:before{content:""}.mdi-microsoft-xbox-controller-view:before{content:""}.mdi-microwave:before{content:""}.mdi-microwave-off:before{content:""}.mdi-middleware:before{content:""}.mdi-middleware-outline:before{content:""}.mdi-midi:before{content:""}.mdi-midi-port:before{content:""}.mdi-mine:before{content:""}.mdi-minecraft:before{content:""}.mdi-mini-sd:before{content:""}.mdi-minidisc:before{content:""}.mdi-minus:before{content:""}.mdi-minus-box:before{content:""}.mdi-minus-box-multiple:before{content:""}.mdi-minus-box-multiple-outline:before{content:""}.mdi-minus-box-outline:before{content:""}.mdi-minus-circle:before{content:""}.mdi-minus-circle-multiple:before{content:""}.mdi-minus-circle-multiple-outline:before{content:""}.mdi-minus-circle-off:before{content:""}.mdi-minus-circle-off-outline:before{content:""}.mdi-minus-circle-outline:before{content:""}.mdi-minus-network:before{content:""}.mdi-minus-network-outline:before{content:""}.mdi-minus-thick:before{content:""}.mdi-mirror:before{content:""}.mdi-mirror-rectangle:before{content:""}.mdi-mirror-variant:before{content:""}.mdi-mixed-martial-arts:before{content:""}.mdi-mixed-reality:before{content:""}.mdi-molecule:before{content:""}.mdi-molecule-co:before{content:""}.mdi-molecule-co2:before{content:""}.mdi-monitor:before{content:""}.mdi-monitor-account:before{content:""}.mdi-monitor-arrow-down:before{content:""}.mdi-monitor-arrow-down-variant:before{content:""}.mdi-monitor-cellphone:before{content:""}.mdi-monitor-cellphone-star:before{content:""}.mdi-monitor-dashboard:before{content:""}.mdi-monitor-edit:before{content:""}.mdi-monitor-eye:before{content:""}.mdi-monitor-lock:before{content:""}.mdi-monitor-multiple:before{content:""}.mdi-monitor-off:before{content:""}.mdi-monitor-screenshot:before{content:""}.mdi-monitor-share:before{content:""}.mdi-monitor-shimmer:before{content:""}.mdi-monitor-small:before{content:""}.mdi-monitor-speaker:before{content:""}.mdi-monitor-speaker-off:before{content:""}.mdi-monitor-star:before{content:""}.mdi-monitor-vertical:before{content:""}.mdi-moon-first-quarter:before{content:""}.mdi-moon-full:before{content:""}.mdi-moon-last-quarter:before{content:""}.mdi-moon-new:before{content:""}.mdi-moon-waning-crescent:before{content:""}.mdi-moon-waning-gibbous:before{content:""}.mdi-moon-waxing-crescent:before{content:""}.mdi-moon-waxing-gibbous:before{content:""}.mdi-moped:before{content:""}.mdi-moped-electric:before{content:""}.mdi-moped-electric-outline:before{content:""}.mdi-moped-outline:before{content:""}.mdi-more:before{content:""}.mdi-mortar-pestle:before{content:""}.mdi-mortar-pestle-plus:before{content:""}.mdi-mosque:before{content:""}.mdi-mosque-outline:before{content:""}.mdi-mother-heart:before{content:""}.mdi-mother-nurse:before{content:""}.mdi-motion:before{content:""}.mdi-motion-outline:before{content:""}.mdi-motion-pause:before{content:""}.mdi-motion-pause-outline:before{content:""}.mdi-motion-play:before{content:""}.mdi-motion-play-outline:before{content:""}.mdi-motion-sensor:before{content:""}.mdi-motion-sensor-off:before{content:""}.mdi-motorbike:before{content:""}.mdi-motorbike-electric:before{content:""}.mdi-motorbike-off:before{content:""}.mdi-mouse:before{content:""}.mdi-mouse-bluetooth:before{content:""}.mdi-mouse-move-down:before{content:""}.mdi-mouse-move-up:before{content:""}.mdi-mouse-move-vertical:before{content:""}.mdi-mouse-off:before{content:""}.mdi-mouse-variant:before{content:""}.mdi-mouse-variant-off:before{content:""}.mdi-move-resize:before{content:""}.mdi-move-resize-variant:before{content:""}.mdi-movie:before{content:""}.mdi-movie-check:before{content:""}.mdi-movie-check-outline:before{content:""}.mdi-movie-cog:before{content:""}.mdi-movie-cog-outline:before{content:""}.mdi-movie-edit:before{content:""}.mdi-movie-edit-outline:before{content:""}.mdi-movie-filter:before{content:""}.mdi-movie-filter-outline:before{content:""}.mdi-movie-minus:before{content:""}.mdi-movie-minus-outline:before{content:""}.mdi-movie-off:before{content:""}.mdi-movie-off-outline:before{content:""}.mdi-movie-open:before{content:""}.mdi-movie-open-check:before{content:""}.mdi-movie-open-check-outline:before{content:""}.mdi-movie-open-cog:before{content:""}.mdi-movie-open-cog-outline:before{content:""}.mdi-movie-open-edit:before{content:""}.mdi-movie-open-edit-outline:before{content:""}.mdi-movie-open-minus:before{content:""}.mdi-movie-open-minus-outline:before{content:""}.mdi-movie-open-off:before{content:""}.mdi-movie-open-off-outline:before{content:""}.mdi-movie-open-outline:before{content:""}.mdi-movie-open-play:before{content:""}.mdi-movie-open-play-outline:before{content:""}.mdi-movie-open-plus:before{content:""}.mdi-movie-open-plus-outline:before{content:""}.mdi-movie-open-remove:before{content:""}.mdi-movie-open-remove-outline:before{content:""}.mdi-movie-open-settings:before{content:""}.mdi-movie-open-settings-outline:before{content:""}.mdi-movie-open-star:before{content:""}.mdi-movie-open-star-outline:before{content:""}.mdi-movie-outline:before{content:""}.mdi-movie-play:before{content:""}.mdi-movie-play-outline:before{content:""}.mdi-movie-plus:before{content:""}.mdi-movie-plus-outline:before{content:""}.mdi-movie-remove:before{content:""}.mdi-movie-remove-outline:before{content:""}.mdi-movie-roll:before{content:""}.mdi-movie-search:before{content:""}.mdi-movie-search-outline:before{content:""}.mdi-movie-settings:before{content:""}.mdi-movie-settings-outline:before{content:""}.mdi-movie-star:before{content:""}.mdi-movie-star-outline:before{content:""}.mdi-mower:before{content:""}.mdi-mower-bag:before{content:""}.mdi-mower-bag-on:before{content:""}.mdi-mower-on:before{content:""}.mdi-muffin:before{content:""}.mdi-multicast:before{content:""}.mdi-multimedia:before{content:""}.mdi-multiplication:before{content:""}.mdi-multiplication-box:before{content:""}.mdi-mushroom:before{content:""}.mdi-mushroom-off:before{content:""}.mdi-mushroom-off-outline:before{content:""}.mdi-mushroom-outline:before{content:""}.mdi-music:before{content:""}.mdi-music-accidental-double-flat:before{content:""}.mdi-music-accidental-double-sharp:before{content:""}.mdi-music-accidental-flat:before{content:""}.mdi-music-accidental-natural:before{content:""}.mdi-music-accidental-sharp:before{content:""}.mdi-music-box:before{content:""}.mdi-music-box-multiple:before{content:""}.mdi-music-box-multiple-outline:before{content:""}.mdi-music-box-outline:before{content:""}.mdi-music-circle:before{content:""}.mdi-music-circle-outline:before{content:""}.mdi-music-clef-alto:before{content:""}.mdi-music-clef-bass:before{content:""}.mdi-music-clef-treble:before{content:""}.mdi-music-note:before{content:""}.mdi-music-note-bluetooth:before{content:""}.mdi-music-note-bluetooth-off:before{content:""}.mdi-music-note-eighth:before{content:""}.mdi-music-note-eighth-dotted:before{content:""}.mdi-music-note-half:before{content:""}.mdi-music-note-half-dotted:before{content:""}.mdi-music-note-minus:before{content:""}.mdi-music-note-off:before{content:""}.mdi-music-note-off-outline:before{content:""}.mdi-music-note-outline:before{content:""}.mdi-music-note-plus:before{content:""}.mdi-music-note-quarter:before{content:""}.mdi-music-note-quarter-dotted:before{content:""}.mdi-music-note-sixteenth:before{content:""}.mdi-music-note-sixteenth-dotted:before{content:""}.mdi-music-note-whole:before{content:""}.mdi-music-note-whole-dotted:before{content:""}.mdi-music-off:before{content:""}.mdi-music-rest-eighth:before{content:""}.mdi-music-rest-half:before{content:""}.mdi-music-rest-quarter:before{content:""}.mdi-music-rest-sixteenth:before{content:""}.mdi-music-rest-whole:before{content:""}.mdi-mustache:before{content:""}.mdi-nail:before{content:""}.mdi-nas:before{content:""}.mdi-nativescript:before{content:""}.mdi-nature:before{content:""}.mdi-nature-outline:before{content:""}.mdi-nature-people:before{content:""}.mdi-nature-people-outline:before{content:""}.mdi-navigation:before{content:""}.mdi-navigation-outline:before{content:""}.mdi-navigation-variant:before{content:""}.mdi-navigation-variant-outline:before{content:""}.mdi-near-me:before{content:""}.mdi-necklace:before{content:""}.mdi-needle:before{content:""}.mdi-needle-off:before{content:""}.mdi-netflix:before{content:""}.mdi-network:before{content:""}.mdi-network-off:before{content:""}.mdi-network-off-outline:before{content:""}.mdi-network-outline:before{content:""}.mdi-network-pos:before{content:""}.mdi-network-strength-1:before{content:""}.mdi-network-strength-1-alert:before{content:""}.mdi-network-strength-2:before{content:""}.mdi-network-strength-2-alert:before{content:""}.mdi-network-strength-3:before{content:""}.mdi-network-strength-3-alert:before{content:""}.mdi-network-strength-4:before{content:""}.mdi-network-strength-4-alert:before{content:""}.mdi-network-strength-4-cog:before{content:""}.mdi-network-strength-off:before{content:""}.mdi-network-strength-off-outline:before{content:""}.mdi-network-strength-outline:before{content:""}.mdi-new-box:before{content:""}.mdi-newspaper:before{content:""}.mdi-newspaper-check:before{content:""}.mdi-newspaper-minus:before{content:""}.mdi-newspaper-plus:before{content:""}.mdi-newspaper-remove:before{content:""}.mdi-newspaper-variant:before{content:""}.mdi-newspaper-variant-multiple:before{content:""}.mdi-newspaper-variant-multiple-outline:before{content:""}.mdi-newspaper-variant-outline:before{content:""}.mdi-nfc:before{content:""}.mdi-nfc-search-variant:before{content:""}.mdi-nfc-tap:before{content:""}.mdi-nfc-variant:before{content:""}.mdi-nfc-variant-off:before{content:""}.mdi-ninja:before{content:""}.mdi-nintendo-game-boy:before{content:""}.mdi-nintendo-switch:before{content:""}.mdi-nintendo-wii:before{content:""}.mdi-nintendo-wiiu:before{content:""}.mdi-nix:before{content:""}.mdi-nodejs:before{content:""}.mdi-noodles:before{content:""}.mdi-not-equal:before{content:""}.mdi-not-equal-variant:before{content:""}.mdi-note:before{content:""}.mdi-note-alert:before{content:""}.mdi-note-alert-outline:before{content:""}.mdi-note-check:before{content:""}.mdi-note-check-outline:before{content:""}.mdi-note-edit:before{content:""}.mdi-note-edit-outline:before{content:""}.mdi-note-minus:before{content:""}.mdi-note-minus-outline:before{content:""}.mdi-note-multiple:before{content:""}.mdi-note-multiple-outline:before{content:""}.mdi-note-off:before{content:""}.mdi-note-off-outline:before{content:""}.mdi-note-outline:before{content:""}.mdi-note-plus:before{content:""}.mdi-note-plus-outline:before{content:""}.mdi-note-remove:before{content:""}.mdi-note-remove-outline:before{content:""}.mdi-note-search:before{content:""}.mdi-note-search-outline:before{content:""}.mdi-note-text:before{content:""}.mdi-note-text-outline:before{content:""}.mdi-notebook:before{content:""}.mdi-notebook-check:before{content:""}.mdi-notebook-check-outline:before{content:""}.mdi-notebook-edit:before{content:""}.mdi-notebook-edit-outline:before{content:""}.mdi-notebook-heart:before{content:""}.mdi-notebook-heart-outline:before{content:""}.mdi-notebook-minus:before{content:""}.mdi-notebook-minus-outline:before{content:""}.mdi-notebook-multiple:before{content:""}.mdi-notebook-outline:before{content:""}.mdi-notebook-plus:before{content:""}.mdi-notebook-plus-outline:before{content:""}.mdi-notebook-remove:before{content:""}.mdi-notebook-remove-outline:before{content:""}.mdi-notification-clear-all:before{content:""}.mdi-npm:before{content:""}.mdi-nuke:before{content:""}.mdi-null:before{content:""}.mdi-numeric:before{content:""}.mdi-numeric-0:before{content:""}.mdi-numeric-0-box:before{content:""}.mdi-numeric-0-box-multiple:before{content:""}.mdi-numeric-0-box-multiple-outline:before{content:""}.mdi-numeric-0-box-outline:before{content:""}.mdi-numeric-0-circle:before{content:""}.mdi-numeric-0-circle-outline:before{content:""}.mdi-numeric-1:before{content:""}.mdi-numeric-1-box:before{content:""}.mdi-numeric-1-box-multiple:before{content:""}.mdi-numeric-1-box-multiple-outline:before{content:""}.mdi-numeric-1-box-outline:before{content:""}.mdi-numeric-1-circle:before{content:""}.mdi-numeric-1-circle-outline:before{content:""}.mdi-numeric-10:before{content:""}.mdi-numeric-10-box:before{content:""}.mdi-numeric-10-box-multiple:before{content:""}.mdi-numeric-10-box-multiple-outline:before{content:""}.mdi-numeric-10-box-outline:before{content:""}.mdi-numeric-10-circle:before{content:""}.mdi-numeric-10-circle-outline:before{content:""}.mdi-numeric-2:before{content:""}.mdi-numeric-2-box:before{content:""}.mdi-numeric-2-box-multiple:before{content:""}.mdi-numeric-2-box-multiple-outline:before{content:""}.mdi-numeric-2-box-outline:before{content:""}.mdi-numeric-2-circle:before{content:""}.mdi-numeric-2-circle-outline:before{content:""}.mdi-numeric-3:before{content:""}.mdi-numeric-3-box:before{content:""}.mdi-numeric-3-box-multiple:before{content:""}.mdi-numeric-3-box-multiple-outline:before{content:""}.mdi-numeric-3-box-outline:before{content:""}.mdi-numeric-3-circle:before{content:""}.mdi-numeric-3-circle-outline:before{content:""}.mdi-numeric-4:before{content:""}.mdi-numeric-4-box:before{content:""}.mdi-numeric-4-box-multiple:before{content:""}.mdi-numeric-4-box-multiple-outline:before{content:""}.mdi-numeric-4-box-outline:before{content:""}.mdi-numeric-4-circle:before{content:""}.mdi-numeric-4-circle-outline:before{content:""}.mdi-numeric-5:before{content:""}.mdi-numeric-5-box:before{content:""}.mdi-numeric-5-box-multiple:before{content:""}.mdi-numeric-5-box-multiple-outline:before{content:""}.mdi-numeric-5-box-outline:before{content:""}.mdi-numeric-5-circle:before{content:""}.mdi-numeric-5-circle-outline:before{content:""}.mdi-numeric-6:before{content:""}.mdi-numeric-6-box:before{content:""}.mdi-numeric-6-box-multiple:before{content:""}.mdi-numeric-6-box-multiple-outline:before{content:""}.mdi-numeric-6-box-outline:before{content:""}.mdi-numeric-6-circle:before{content:""}.mdi-numeric-6-circle-outline:before{content:""}.mdi-numeric-7:before{content:""}.mdi-numeric-7-box:before{content:""}.mdi-numeric-7-box-multiple:before{content:""}.mdi-numeric-7-box-multiple-outline:before{content:""}.mdi-numeric-7-box-outline:before{content:""}.mdi-numeric-7-circle:before{content:""}.mdi-numeric-7-circle-outline:before{content:""}.mdi-numeric-8:before{content:""}.mdi-numeric-8-box:before{content:""}.mdi-numeric-8-box-multiple:before{content:""}.mdi-numeric-8-box-multiple-outline:before{content:""}.mdi-numeric-8-box-outline:before{content:""}.mdi-numeric-8-circle:before{content:""}.mdi-numeric-8-circle-outline:before{content:""}.mdi-numeric-9:before{content:""}.mdi-numeric-9-box:before{content:""}.mdi-numeric-9-box-multiple:before{content:""}.mdi-numeric-9-box-multiple-outline:before{content:""}.mdi-numeric-9-box-outline:before{content:""}.mdi-numeric-9-circle:before{content:""}.mdi-numeric-9-circle-outline:before{content:""}.mdi-numeric-9-plus:before{content:""}.mdi-numeric-9-plus-box:before{content:""}.mdi-numeric-9-plus-box-multiple:before{content:""}.mdi-numeric-9-plus-box-multiple-outline:before{content:""}.mdi-numeric-9-plus-box-outline:before{content:""}.mdi-numeric-9-plus-circle:before{content:""}.mdi-numeric-9-plus-circle-outline:before{content:""}.mdi-numeric-negative-1:before{content:""}.mdi-numeric-off:before{content:""}.mdi-numeric-positive-1:before{content:""}.mdi-nut:before{content:""}.mdi-nutrition:before{content:""}.mdi-nuxt:before{content:""}.mdi-oar:before{content:""}.mdi-ocarina:before{content:""}.mdi-oci:before{content:""}.mdi-ocr:before{content:""}.mdi-octagon:before{content:""}.mdi-octagon-outline:before{content:""}.mdi-octagram:before{content:""}.mdi-octagram-edit:before{content:""}.mdi-octagram-edit-outline:before{content:""}.mdi-octagram-minus:before{content:""}.mdi-octagram-minus-outline:before{content:""}.mdi-octagram-outline:before{content:""}.mdi-octagram-plus:before{content:""}.mdi-octagram-plus-outline:before{content:""}.mdi-octahedron:before{content:""}.mdi-octahedron-off:before{content:""}.mdi-odnoklassniki:before{content:""}.mdi-offer:before{content:""}.mdi-office-building:before{content:""}.mdi-office-building-cog:before{content:""}.mdi-office-building-cog-outline:before{content:""}.mdi-office-building-marker:before{content:""}.mdi-office-building-marker-outline:before{content:""}.mdi-office-building-minus:before{content:""}.mdi-office-building-minus-outline:before{content:""}.mdi-office-building-outline:before{content:""}.mdi-office-building-plus:before{content:""}.mdi-office-building-plus-outline:before{content:""}.mdi-office-building-remove:before{content:""}.mdi-office-building-remove-outline:before{content:""}.mdi-oil:before{content:""}.mdi-oil-lamp:before{content:""}.mdi-oil-level:before{content:""}.mdi-oil-temperature:before{content:""}.mdi-om:before{content:""}.mdi-omega:before{content:""}.mdi-one-up:before{content:""}.mdi-onepassword:before{content:""}.mdi-opacity:before{content:""}.mdi-open-in-app:before{content:""}.mdi-open-in-new:before{content:""}.mdi-open-source-initiative:before{content:""}.mdi-openid:before{content:""}.mdi-opera:before{content:""}.mdi-orbit:before{content:""}.mdi-orbit-variant:before{content:""}.mdi-order-alphabetical-ascending:before{content:""}.mdi-order-alphabetical-descending:before{content:""}.mdi-order-bool-ascending:before{content:""}.mdi-order-bool-ascending-variant:before{content:""}.mdi-order-bool-descending:before{content:""}.mdi-order-bool-descending-variant:before{content:""}.mdi-order-numeric-ascending:before{content:""}.mdi-order-numeric-descending:before{content:""}.mdi-origin:before{content:""}.mdi-ornament:before{content:""}.mdi-ornament-variant:before{content:""}.mdi-outdoor-lamp:before{content:""}.mdi-overscan:before{content:""}.mdi-owl:before{content:""}.mdi-pac-man:before{content:""}.mdi-package:before{content:""}.mdi-package-check:before{content:""}.mdi-package-down:before{content:""}.mdi-package-up:before{content:""}.mdi-package-variant:before{content:""}.mdi-package-variant-closed:before{content:""}.mdi-package-variant-closed-check:before{content:""}.mdi-package-variant-closed-minus:before{content:""}.mdi-package-variant-closed-plus:before{content:""}.mdi-package-variant-closed-remove:before{content:""}.mdi-package-variant-minus:before{content:""}.mdi-package-variant-plus:before{content:""}.mdi-package-variant-remove:before{content:""}.mdi-page-first:before{content:""}.mdi-page-last:before{content:""}.mdi-page-layout-body:before{content:""}.mdi-page-layout-footer:before{content:""}.mdi-page-layout-header:before{content:""}.mdi-page-layout-header-footer:before{content:""}.mdi-page-layout-sidebar-left:before{content:""}.mdi-page-layout-sidebar-right:before{content:""}.mdi-page-next:before{content:""}.mdi-page-next-outline:before{content:""}.mdi-page-previous:before{content:""}.mdi-page-previous-outline:before{content:""}.mdi-pail:before{content:""}.mdi-pail-minus:before{content:""}.mdi-pail-minus-outline:before{content:""}.mdi-pail-off:before{content:""}.mdi-pail-off-outline:before{content:""}.mdi-pail-outline:before{content:""}.mdi-pail-plus:before{content:""}.mdi-pail-plus-outline:before{content:""}.mdi-pail-remove:before{content:""}.mdi-pail-remove-outline:before{content:""}.mdi-palette:before{content:""}.mdi-palette-advanced:before{content:""}.mdi-palette-outline:before{content:""}.mdi-palette-swatch:before{content:""}.mdi-palette-swatch-outline:before{content:""}.mdi-palette-swatch-variant:before{content:""}.mdi-palm-tree:before{content:""}.mdi-pan:before{content:""}.mdi-pan-bottom-left:before{content:""}.mdi-pan-bottom-right:before{content:""}.mdi-pan-down:before{content:""}.mdi-pan-horizontal:before{content:""}.mdi-pan-left:before{content:""}.mdi-pan-right:before{content:""}.mdi-pan-top-left:before{content:""}.mdi-pan-top-right:before{content:""}.mdi-pan-up:before{content:""}.mdi-pan-vertical:before{content:""}.mdi-panda:before{content:""}.mdi-pandora:before{content:""}.mdi-panorama:before{content:""}.mdi-panorama-fisheye:before{content:""}.mdi-panorama-horizontal:before{content:""}.mdi-panorama-horizontal-outline:before{content:""}.mdi-panorama-outline:before{content:""}.mdi-panorama-sphere:before{content:""}.mdi-panorama-sphere-outline:before{content:""}.mdi-panorama-variant:before{content:""}.mdi-panorama-variant-outline:before{content:""}.mdi-panorama-vertical:before{content:""}.mdi-panorama-vertical-outline:before{content:""}.mdi-panorama-wide-angle:before{content:""}.mdi-panorama-wide-angle-outline:before{content:""}.mdi-paper-cut-vertical:before{content:""}.mdi-paper-roll:before{content:""}.mdi-paper-roll-outline:before{content:""}.mdi-paperclip:before{content:""}.mdi-paperclip-check:before{content:""}.mdi-paperclip-lock:before{content:""}.mdi-paperclip-minus:before{content:""}.mdi-paperclip-off:before{content:""}.mdi-paperclip-plus:before{content:""}.mdi-paperclip-remove:before{content:""}.mdi-parachute:before{content:""}.mdi-parachute-outline:before{content:""}.mdi-paragliding:before{content:""}.mdi-parking:before{content:""}.mdi-party-popper:before{content:""}.mdi-passport:before{content:""}.mdi-passport-alert:before{content:""}.mdi-passport-biometric:before{content:""}.mdi-passport-cancel:before{content:""}.mdi-passport-check:before{content:""}.mdi-passport-minus:before{content:""}.mdi-passport-plus:before{content:""}.mdi-passport-remove:before{content:""}.mdi-pasta:before{content:""}.mdi-patio-heater:before{content:""}.mdi-patreon:before{content:""}.mdi-pause:before{content:""}.mdi-pause-box:before{content:""}.mdi-pause-box-outline:before{content:""}.mdi-pause-circle:before{content:""}.mdi-pause-circle-outline:before{content:""}.mdi-pause-octagon:before{content:""}.mdi-pause-octagon-outline:before{content:""}.mdi-paw:before{content:""}.mdi-paw-off:before{content:""}.mdi-paw-off-outline:before{content:""}.mdi-paw-outline:before{content:""}.mdi-peace:before{content:""}.mdi-peanut:before{content:""}.mdi-peanut-off:before{content:""}.mdi-peanut-off-outline:before{content:""}.mdi-peanut-outline:before{content:""}.mdi-pen:before{content:""}.mdi-pen-lock:before{content:""}.mdi-pen-minus:before{content:""}.mdi-pen-off:before{content:""}.mdi-pen-plus:before{content:""}.mdi-pen-remove:before{content:""}.mdi-pencil:before{content:""}.mdi-pencil-box:before{content:""}.mdi-pencil-box-multiple:before{content:""}.mdi-pencil-box-multiple-outline:before{content:""}.mdi-pencil-box-outline:before{content:""}.mdi-pencil-circle:before{content:""}.mdi-pencil-circle-outline:before{content:""}.mdi-pencil-lock:before{content:""}.mdi-pencil-lock-outline:before{content:""}.mdi-pencil-minus:before{content:""}.mdi-pencil-minus-outline:before{content:""}.mdi-pencil-off:before{content:""}.mdi-pencil-off-outline:before{content:""}.mdi-pencil-outline:before{content:""}.mdi-pencil-plus:before{content:""}.mdi-pencil-plus-outline:before{content:""}.mdi-pencil-remove:before{content:""}.mdi-pencil-remove-outline:before{content:""}.mdi-pencil-ruler:before{content:""}.mdi-pencil-ruler-outline:before{content:""}.mdi-penguin:before{content:""}.mdi-pentagon:before{content:""}.mdi-pentagon-outline:before{content:""}.mdi-pentagram:before{content:""}.mdi-percent:before{content:""}.mdi-percent-box:before{content:""}.mdi-percent-box-outline:before{content:""}.mdi-percent-circle:before{content:""}.mdi-percent-circle-outline:before{content:""}.mdi-percent-outline:before{content:""}.mdi-periodic-table:before{content:""}.mdi-perspective-less:before{content:""}.mdi-perspective-more:before{content:""}.mdi-ph:before{content:""}.mdi-phone:before{content:""}.mdi-phone-alert:before{content:""}.mdi-phone-alert-outline:before{content:""}.mdi-phone-bluetooth:before{content:""}.mdi-phone-bluetooth-outline:before{content:""}.mdi-phone-cancel:before{content:""}.mdi-phone-cancel-outline:before{content:""}.mdi-phone-check:before{content:""}.mdi-phone-check-outline:before{content:""}.mdi-phone-classic:before{content:""}.mdi-phone-classic-off:before{content:""}.mdi-phone-clock:before{content:""}.mdi-phone-dial:before{content:""}.mdi-phone-dial-outline:before{content:""}.mdi-phone-forward:before{content:""}.mdi-phone-forward-outline:before{content:""}.mdi-phone-hangup:before{content:""}.mdi-phone-hangup-outline:before{content:""}.mdi-phone-in-talk:before{content:""}.mdi-phone-in-talk-outline:before{content:""}.mdi-phone-incoming:before{content:""}.mdi-phone-incoming-outgoing:before{content:""}.mdi-phone-incoming-outgoing-outline:before{content:""}.mdi-phone-incoming-outline:before{content:""}.mdi-phone-lock:before{content:""}.mdi-phone-lock-outline:before{content:""}.mdi-phone-log:before{content:""}.mdi-phone-log-outline:before{content:""}.mdi-phone-message:before{content:""}.mdi-phone-message-outline:before{content:""}.mdi-phone-minus:before{content:""}.mdi-phone-minus-outline:before{content:""}.mdi-phone-missed:before{content:""}.mdi-phone-missed-outline:before{content:""}.mdi-phone-off:before{content:""}.mdi-phone-off-outline:before{content:""}.mdi-phone-outgoing:before{content:""}.mdi-phone-outgoing-outline:before{content:""}.mdi-phone-outline:before{content:""}.mdi-phone-paused:before{content:""}.mdi-phone-paused-outline:before{content:""}.mdi-phone-plus:before{content:""}.mdi-phone-plus-outline:before{content:""}.mdi-phone-refresh:before{content:""}.mdi-phone-refresh-outline:before{content:""}.mdi-phone-remove:before{content:""}.mdi-phone-remove-outline:before{content:""}.mdi-phone-return:before{content:""}.mdi-phone-return-outline:before{content:""}.mdi-phone-ring:before{content:""}.mdi-phone-ring-outline:before{content:""}.mdi-phone-rotate-landscape:before{content:""}.mdi-phone-rotate-portrait:before{content:""}.mdi-phone-settings:before{content:""}.mdi-phone-settings-outline:before{content:""}.mdi-phone-sync:before{content:""}.mdi-phone-sync-outline:before{content:""}.mdi-phone-voip:before{content:""}.mdi-pi:before{content:""}.mdi-pi-box:before{content:""}.mdi-pi-hole:before{content:""}.mdi-piano:before{content:""}.mdi-piano-off:before{content:""}.mdi-pickaxe:before{content:""}.mdi-picture-in-picture-bottom-right:before{content:""}.mdi-picture-in-picture-bottom-right-outline:before{content:""}.mdi-picture-in-picture-top-right:before{content:""}.mdi-picture-in-picture-top-right-outline:before{content:""}.mdi-pier:before{content:""}.mdi-pier-crane:before{content:""}.mdi-pig:before{content:""}.mdi-pig-variant:before{content:""}.mdi-pig-variant-outline:before{content:""}.mdi-piggy-bank:before{content:""}.mdi-piggy-bank-outline:before{content:""}.mdi-pill:before{content:""}.mdi-pill-multiple:before{content:""}.mdi-pill-off:before{content:""}.mdi-pillar:before{content:""}.mdi-pin:before{content:""}.mdi-pin-off:before{content:""}.mdi-pin-off-outline:before{content:""}.mdi-pin-outline:before{content:""}.mdi-pine-tree:before{content:""}.mdi-pine-tree-box:before{content:""}.mdi-pine-tree-fire:before{content:""}.mdi-pine-tree-variant:before{content:""}.mdi-pine-tree-variant-outline:before{content:""}.mdi-pinterest:before{content:""}.mdi-pinwheel:before{content:""}.mdi-pinwheel-outline:before{content:""}.mdi-pipe:before{content:""}.mdi-pipe-disconnected:before{content:""}.mdi-pipe-leak:before{content:""}.mdi-pipe-valve:before{content:""}.mdi-pipe-wrench:before{content:""}.mdi-pirate:before{content:""}.mdi-pistol:before{content:""}.mdi-piston:before{content:""}.mdi-pitchfork:before{content:""}.mdi-pizza:before{content:""}.mdi-plane-car:before{content:""}.mdi-plane-train:before{content:""}.mdi-play:before{content:""}.mdi-play-box:before{content:""}.mdi-play-box-edit-outline:before{content:""}.mdi-play-box-lock:before{content:""}.mdi-play-box-lock-open:before{content:""}.mdi-play-box-lock-open-outline:before{content:""}.mdi-play-box-lock-outline:before{content:""}.mdi-play-box-multiple:before{content:""}.mdi-play-box-multiple-outline:before{content:""}.mdi-play-box-outline:before{content:""}.mdi-play-circle:before{content:""}.mdi-play-circle-outline:before{content:""}.mdi-play-network:before{content:""}.mdi-play-network-outline:before{content:""}.mdi-play-outline:before{content:""}.mdi-play-pause:before{content:""}.mdi-play-protected-content:before{content:""}.mdi-play-speed:before{content:""}.mdi-playlist-check:before{content:""}.mdi-playlist-edit:before{content:""}.mdi-playlist-minus:before{content:""}.mdi-playlist-music:before{content:""}.mdi-playlist-music-outline:before{content:""}.mdi-playlist-play:before{content:""}.mdi-playlist-plus:before{content:""}.mdi-playlist-remove:before{content:""}.mdi-playlist-star:before{content:""}.mdi-plex:before{content:""}.mdi-pliers:before{content:""}.mdi-plus:before{content:""}.mdi-plus-box:before{content:""}.mdi-plus-box-multiple:before{content:""}.mdi-plus-box-multiple-outline:before{content:""}.mdi-plus-box-outline:before{content:""}.mdi-plus-circle:before{content:""}.mdi-plus-circle-multiple:before{content:""}.mdi-plus-circle-multiple-outline:before{content:""}.mdi-plus-circle-outline:before{content:""}.mdi-plus-lock:before{content:""}.mdi-plus-lock-open:before{content:""}.mdi-plus-minus:before{content:""}.mdi-plus-minus-box:before{content:""}.mdi-plus-minus-variant:before{content:""}.mdi-plus-network:before{content:""}.mdi-plus-network-outline:before{content:""}.mdi-plus-outline:before{content:""}.mdi-plus-thick:before{content:""}.mdi-pocket:before{content:""}.mdi-podcast:before{content:""}.mdi-podium:before{content:""}.mdi-podium-bronze:before{content:""}.mdi-podium-gold:before{content:""}.mdi-podium-silver:before{content:""}.mdi-point-of-sale:before{content:""}.mdi-pokeball:before{content:""}.mdi-pokemon-go:before{content:""}.mdi-poker-chip:before{content:""}.mdi-polaroid:before{content:""}.mdi-police-badge:before{content:""}.mdi-police-badge-outline:before{content:""}.mdi-police-station:before{content:""}.mdi-poll:before{content:""}.mdi-polo:before{content:""}.mdi-polymer:before{content:""}.mdi-pool:before{content:""}.mdi-pool-thermometer:before{content:""}.mdi-popcorn:before{content:""}.mdi-post:before{content:""}.mdi-post-lamp:before{content:""}.mdi-post-outline:before{content:""}.mdi-postage-stamp:before{content:""}.mdi-pot:before{content:""}.mdi-pot-mix:before{content:""}.mdi-pot-mix-outline:before{content:""}.mdi-pot-outline:before{content:""}.mdi-pot-steam:before{content:""}.mdi-pot-steam-outline:before{content:""}.mdi-pound:before{content:""}.mdi-pound-box:before{content:""}.mdi-pound-box-outline:before{content:""}.mdi-power:before{content:""}.mdi-power-cycle:before{content:""}.mdi-power-off:before{content:""}.mdi-power-on:before{content:""}.mdi-power-plug:before{content:""}.mdi-power-plug-battery:before{content:""}.mdi-power-plug-battery-outline:before{content:""}.mdi-power-plug-off:before{content:""}.mdi-power-plug-off-outline:before{content:""}.mdi-power-plug-outline:before{content:""}.mdi-power-settings:before{content:""}.mdi-power-sleep:before{content:""}.mdi-power-socket:before{content:""}.mdi-power-socket-au:before{content:""}.mdi-power-socket-ch:before{content:""}.mdi-power-socket-de:before{content:""}.mdi-power-socket-eu:before{content:""}.mdi-power-socket-fr:before{content:""}.mdi-power-socket-it:before{content:""}.mdi-power-socket-jp:before{content:""}.mdi-power-socket-uk:before{content:""}.mdi-power-socket-us:before{content:""}.mdi-power-standby:before{content:""}.mdi-powershell:before{content:""}.mdi-prescription:before{content:""}.mdi-presentation:before{content:""}.mdi-presentation-play:before{content:""}.mdi-pretzel:before{content:""}.mdi-printer:before{content:""}.mdi-printer-3d:before{content:""}.mdi-printer-3d-nozzle:before{content:""}.mdi-printer-3d-nozzle-alert:before{content:""}.mdi-printer-3d-nozzle-alert-outline:before{content:""}.mdi-printer-3d-nozzle-heat:before{content:""}.mdi-printer-3d-nozzle-heat-outline:before{content:""}.mdi-printer-3d-nozzle-off:before{content:""}.mdi-printer-3d-nozzle-off-outline:before{content:""}.mdi-printer-3d-nozzle-outline:before{content:""}.mdi-printer-3d-off:before{content:""}.mdi-printer-alert:before{content:""}.mdi-printer-check:before{content:""}.mdi-printer-eye:before{content:""}.mdi-printer-off:before{content:""}.mdi-printer-off-outline:before{content:""}.mdi-printer-outline:before{content:""}.mdi-printer-pos:before{content:""}.mdi-printer-pos-alert:before{content:""}.mdi-printer-pos-alert-outline:before{content:""}.mdi-printer-pos-cancel:before{content:""}.mdi-printer-pos-cancel-outline:before{content:""}.mdi-printer-pos-check:before{content:""}.mdi-printer-pos-check-outline:before{content:""}.mdi-printer-pos-cog:before{content:""}.mdi-printer-pos-cog-outline:before{content:""}.mdi-printer-pos-edit:before{content:""}.mdi-printer-pos-edit-outline:before{content:""}.mdi-printer-pos-minus:before{content:""}.mdi-printer-pos-minus-outline:before{content:""}.mdi-printer-pos-network:before{content:""}.mdi-printer-pos-network-outline:before{content:""}.mdi-printer-pos-off:before{content:""}.mdi-printer-pos-off-outline:before{content:""}.mdi-printer-pos-outline:before{content:""}.mdi-printer-pos-pause:before{content:""}.mdi-printer-pos-pause-outline:before{content:""}.mdi-printer-pos-play:before{content:""}.mdi-printer-pos-play-outline:before{content:""}.mdi-printer-pos-plus:before{content:""}.mdi-printer-pos-plus-outline:before{content:""}.mdi-printer-pos-refresh:before{content:""}.mdi-printer-pos-refresh-outline:before{content:""}.mdi-printer-pos-remove:before{content:""}.mdi-printer-pos-remove-outline:before{content:""}.mdi-printer-pos-star:before{content:""}.mdi-printer-pos-star-outline:before{content:""}.mdi-printer-pos-stop:before{content:""}.mdi-printer-pos-stop-outline:before{content:""}.mdi-printer-pos-sync:before{content:""}.mdi-printer-pos-sync-outline:before{content:""}.mdi-printer-pos-wrench:before{content:""}.mdi-printer-pos-wrench-outline:before{content:""}.mdi-printer-search:before{content:""}.mdi-printer-settings:before{content:""}.mdi-printer-wireless:before{content:""}.mdi-priority-high:before{content:""}.mdi-priority-low:before{content:""}.mdi-professional-hexagon:before{content:""}.mdi-progress-alert:before{content:""}.mdi-progress-check:before{content:""}.mdi-progress-clock:before{content:""}.mdi-progress-close:before{content:""}.mdi-progress-download:before{content:""}.mdi-progress-helper:before{content:""}.mdi-progress-pencil:before{content:""}.mdi-progress-question:before{content:""}.mdi-progress-star:before{content:""}.mdi-progress-star-four-points:before{content:""}.mdi-progress-upload:before{content:""}.mdi-progress-wrench:before{content:""}.mdi-projector:before{content:""}.mdi-projector-off:before{content:""}.mdi-projector-screen:before{content:""}.mdi-projector-screen-off:before{content:""}.mdi-projector-screen-off-outline:before{content:""}.mdi-projector-screen-outline:before{content:""}.mdi-projector-screen-variant:before{content:""}.mdi-projector-screen-variant-off:before{content:""}.mdi-projector-screen-variant-off-outline:before{content:""}.mdi-projector-screen-variant-outline:before{content:""}.mdi-propane-tank:before{content:""}.mdi-propane-tank-outline:before{content:""}.mdi-protocol:before{content:""}.mdi-publish:before{content:""}.mdi-publish-off:before{content:""}.mdi-pulse:before{content:""}.mdi-pump:before{content:""}.mdi-pump-off:before{content:""}.mdi-pumpkin:before{content:""}.mdi-purse:before{content:""}.mdi-purse-outline:before{content:""}.mdi-puzzle:before{content:""}.mdi-puzzle-check:before{content:""}.mdi-puzzle-check-outline:before{content:""}.mdi-puzzle-edit:before{content:""}.mdi-puzzle-edit-outline:before{content:""}.mdi-puzzle-heart:before{content:""}.mdi-puzzle-heart-outline:before{content:""}.mdi-puzzle-minus:before{content:""}.mdi-puzzle-minus-outline:before{content:""}.mdi-puzzle-outline:before{content:""}.mdi-puzzle-plus:before{content:""}.mdi-puzzle-plus-outline:before{content:""}.mdi-puzzle-remove:before{content:""}.mdi-puzzle-remove-outline:before{content:""}.mdi-puzzle-star:before{content:""}.mdi-puzzle-star-outline:before{content:""}.mdi-pyramid:before{content:""}.mdi-pyramid-off:before{content:""}.mdi-qi:before{content:""}.mdi-qqchat:before{content:""}.mdi-qrcode:before{content:""}.mdi-qrcode-edit:before{content:""}.mdi-qrcode-minus:before{content:""}.mdi-qrcode-plus:before{content:""}.mdi-qrcode-remove:before{content:""}.mdi-qrcode-scan:before{content:""}.mdi-quadcopter:before{content:""}.mdi-quality-high:before{content:""}.mdi-quality-low:before{content:""}.mdi-quality-medium:before{content:""}.mdi-queue-first-in-last-out:before{content:""}.mdi-quora:before{content:""}.mdi-rabbit:before{content:""}.mdi-rabbit-variant:before{content:""}.mdi-rabbit-variant-outline:before{content:""}.mdi-racing-helmet:before{content:""}.mdi-racquetball:before{content:""}.mdi-radar:before{content:""}.mdi-radiator:before{content:""}.mdi-radiator-disabled:before{content:""}.mdi-radiator-off:before{content:""}.mdi-radio:before{content:""}.mdi-radio-am:before{content:""}.mdi-radio-fm:before{content:""}.mdi-radio-handheld:before{content:""}.mdi-radio-off:before{content:""}.mdi-radio-tower:before{content:""}.mdi-radioactive:before{content:""}.mdi-radioactive-circle:before{content:""}.mdi-radioactive-circle-outline:before{content:""}.mdi-radioactive-off:before{content:""}.mdi-radiobox-blank:before{content:""}.mdi-radiobox-indeterminate-variant:before{content:""}.mdi-radiobox-marked:before{content:""}.mdi-radiology-box:before{content:""}.mdi-radiology-box-outline:before{content:""}.mdi-radius:before{content:""}.mdi-radius-outline:before{content:""}.mdi-railroad-light:before{content:""}.mdi-rake:before{content:""}.mdi-raspberry-pi:before{content:""}.mdi-raw:before{content:""}.mdi-raw-off:before{content:""}.mdi-ray-end:before{content:""}.mdi-ray-end-arrow:before{content:""}.mdi-ray-start:before{content:""}.mdi-ray-start-arrow:before{content:""}.mdi-ray-start-end:before{content:""}.mdi-ray-start-vertex-end:before{content:""}.mdi-ray-vertex:before{content:""}.mdi-razor-double-edge:before{content:""}.mdi-razor-single-edge:before{content:""}.mdi-react:before{content:""}.mdi-read:before{content:""}.mdi-receipt:before{content:""}.mdi-receipt-clock:before{content:""}.mdi-receipt-clock-outline:before{content:""}.mdi-receipt-outline:before{content:""}.mdi-receipt-send:before{content:""}.mdi-receipt-send-outline:before{content:""}.mdi-receipt-text:before{content:""}.mdi-receipt-text-arrow-left:before{content:""}.mdi-receipt-text-arrow-left-outline:before{content:""}.mdi-receipt-text-arrow-right:before{content:""}.mdi-receipt-text-arrow-right-outline:before{content:""}.mdi-receipt-text-check:before{content:""}.mdi-receipt-text-check-outline:before{content:""}.mdi-receipt-text-clock:before{content:""}.mdi-receipt-text-clock-outline:before{content:""}.mdi-receipt-text-edit:before{content:""}.mdi-receipt-text-edit-outline:before{content:""}.mdi-receipt-text-minus:before{content:""}.mdi-receipt-text-minus-outline:before{content:""}.mdi-receipt-text-outline:before{content:""}.mdi-receipt-text-plus:before{content:""}.mdi-receipt-text-plus-outline:before{content:""}.mdi-receipt-text-remove:before{content:""}.mdi-receipt-text-remove-outline:before{content:""}.mdi-receipt-text-send:before{content:""}.mdi-receipt-text-send-outline:before{content:""}.mdi-record:before{content:""}.mdi-record-circle:before{content:""}.mdi-record-circle-outline:before{content:""}.mdi-record-player:before{content:""}.mdi-record-rec:before{content:""}.mdi-rectangle:before{content:""}.mdi-rectangle-outline:before{content:""}.mdi-recycle:before{content:""}.mdi-recycle-variant:before{content:""}.mdi-reddit:before{content:""}.mdi-redhat:before{content:""}.mdi-redo:before{content:""}.mdi-redo-variant:before{content:""}.mdi-reflect-horizontal:before{content:""}.mdi-reflect-vertical:before{content:""}.mdi-refresh:before{content:""}.mdi-refresh-auto:before{content:""}.mdi-refresh-circle:before{content:""}.mdi-regex:before{content:""}.mdi-registered-trademark:before{content:""}.mdi-reiterate:before{content:""}.mdi-relation-many-to-many:before{content:""}.mdi-relation-many-to-one:before{content:""}.mdi-relation-many-to-one-or-many:before{content:""}.mdi-relation-many-to-only-one:before{content:""}.mdi-relation-many-to-zero-or-many:before{content:""}.mdi-relation-many-to-zero-or-one:before{content:""}.mdi-relation-one-or-many-to-many:before{content:""}.mdi-relation-one-or-many-to-one:before{content:""}.mdi-relation-one-or-many-to-one-or-many:before{content:""}.mdi-relation-one-or-many-to-only-one:before{content:""}.mdi-relation-one-or-many-to-zero-or-many:before{content:""}.mdi-relation-one-or-many-to-zero-or-one:before{content:""}.mdi-relation-one-to-many:before{content:""}.mdi-relation-one-to-one:before{content:""}.mdi-relation-one-to-one-or-many:before{content:""}.mdi-relation-one-to-only-one:before{content:""}.mdi-relation-one-to-zero-or-many:before{content:""}.mdi-relation-one-to-zero-or-one:before{content:""}.mdi-relation-only-one-to-many:before{content:""}.mdi-relation-only-one-to-one:before{content:""}.mdi-relation-only-one-to-one-or-many:before{content:""}.mdi-relation-only-one-to-only-one:before{content:""}.mdi-relation-only-one-to-zero-or-many:before{content:""}.mdi-relation-only-one-to-zero-or-one:before{content:""}.mdi-relation-zero-or-many-to-many:before{content:""}.mdi-relation-zero-or-many-to-one:before{content:""}.mdi-relation-zero-or-many-to-one-or-many:before{content:""}.mdi-relation-zero-or-many-to-only-one:before{content:""}.mdi-relation-zero-or-many-to-zero-or-many:before{content:""}.mdi-relation-zero-or-many-to-zero-or-one:before{content:""}.mdi-relation-zero-or-one-to-many:before{content:""}.mdi-relation-zero-or-one-to-one:before{content:""}.mdi-relation-zero-or-one-to-one-or-many:before{content:""}.mdi-relation-zero-or-one-to-only-one:before{content:""}.mdi-relation-zero-or-one-to-zero-or-many:before{content:""}.mdi-relation-zero-or-one-to-zero-or-one:before{content:""}.mdi-relative-scale:before{content:""}.mdi-reload:before{content:""}.mdi-reload-alert:before{content:""}.mdi-reminder:before{content:""}.mdi-remote:before{content:""}.mdi-remote-desktop:before{content:""}.mdi-remote-off:before{content:""}.mdi-remote-tv:before{content:""}.mdi-remote-tv-off:before{content:""}.mdi-rename:before{content:""}.mdi-rename-box:before{content:""}.mdi-rename-box-outline:before{content:""}.mdi-rename-outline:before{content:""}.mdi-reorder-horizontal:before{content:""}.mdi-reorder-vertical:before{content:""}.mdi-repeat:before{content:""}.mdi-repeat-off:before{content:""}.mdi-repeat-once:before{content:""}.mdi-repeat-variant:before{content:""}.mdi-replay:before{content:""}.mdi-reply:before{content:""}.mdi-reply-all:before{content:""}.mdi-reply-all-outline:before{content:""}.mdi-reply-circle:before{content:""}.mdi-reply-outline:before{content:""}.mdi-reproduction:before{content:""}.mdi-resistor:before{content:""}.mdi-resistor-nodes:before{content:""}.mdi-resize:before{content:""}.mdi-resize-bottom-right:before{content:""}.mdi-responsive:before{content:""}.mdi-restart:before{content:""}.mdi-restart-alert:before{content:""}.mdi-restart-off:before{content:""}.mdi-restore:before{content:""}.mdi-restore-alert:before{content:""}.mdi-rewind:before{content:""}.mdi-rewind-10:before{content:""}.mdi-rewind-15:before{content:""}.mdi-rewind-30:before{content:""}.mdi-rewind-45:before{content:""}.mdi-rewind-5:before{content:""}.mdi-rewind-60:before{content:""}.mdi-rewind-outline:before{content:""}.mdi-rhombus:before{content:""}.mdi-rhombus-medium:before{content:""}.mdi-rhombus-medium-outline:before{content:""}.mdi-rhombus-outline:before{content:""}.mdi-rhombus-split:before{content:""}.mdi-rhombus-split-outline:before{content:""}.mdi-ribbon:before{content:""}.mdi-rice:before{content:""}.mdi-rickshaw:before{content:""}.mdi-rickshaw-electric:before{content:""}.mdi-ring:before{content:""}.mdi-rivet:before{content:""}.mdi-road:before{content:""}.mdi-road-variant:before{content:""}.mdi-robber:before{content:""}.mdi-robot:before{content:""}.mdi-robot-angry:before{content:""}.mdi-robot-angry-outline:before{content:""}.mdi-robot-confused:before{content:""}.mdi-robot-confused-outline:before{content:""}.mdi-robot-dead:before{content:""}.mdi-robot-dead-outline:before{content:""}.mdi-robot-excited:before{content:""}.mdi-robot-excited-outline:before{content:""}.mdi-robot-happy:before{content:""}.mdi-robot-happy-outline:before{content:""}.mdi-robot-industrial:before{content:""}.mdi-robot-industrial-outline:before{content:""}.mdi-robot-love:before{content:""}.mdi-robot-love-outline:before{content:""}.mdi-robot-mower:before{content:""}.mdi-robot-mower-outline:before{content:""}.mdi-robot-off:before{content:""}.mdi-robot-off-outline:before{content:""}.mdi-robot-outline:before{content:""}.mdi-robot-vacuum:before{content:""}.mdi-robot-vacuum-alert:before{content:""}.mdi-robot-vacuum-off:before{content:""}.mdi-robot-vacuum-variant:before{content:""}.mdi-robot-vacuum-variant-alert:before{content:""}.mdi-robot-vacuum-variant-off:before{content:""}.mdi-rocket:before{content:""}.mdi-rocket-launch:before{content:""}.mdi-rocket-launch-outline:before{content:""}.mdi-rocket-outline:before{content:""}.mdi-rodent:before{content:""}.mdi-roller-shade:before{content:""}.mdi-roller-shade-closed:before{content:""}.mdi-roller-skate:before{content:""}.mdi-roller-skate-off:before{content:""}.mdi-rollerblade:before{content:""}.mdi-rollerblade-off:before{content:""}.mdi-rollupjs:before{content:""}.mdi-rolodex:before{content:""}.mdi-rolodex-outline:before{content:""}.mdi-roman-numeral-1:before{content:""}.mdi-roman-numeral-10:before{content:""}.mdi-roman-numeral-2:before{content:""}.mdi-roman-numeral-3:before{content:""}.mdi-roman-numeral-4:before{content:""}.mdi-roman-numeral-5:before{content:""}.mdi-roman-numeral-6:before{content:""}.mdi-roman-numeral-7:before{content:""}.mdi-roman-numeral-8:before{content:""}.mdi-roman-numeral-9:before{content:""}.mdi-room-service:before{content:""}.mdi-room-service-outline:before{content:""}.mdi-rotate-360:before{content:""}.mdi-rotate-3d:before{content:""}.mdi-rotate-3d-variant:before{content:""}.mdi-rotate-left:before{content:""}.mdi-rotate-left-variant:before{content:""}.mdi-rotate-orbit:before{content:""}.mdi-rotate-right:before{content:""}.mdi-rotate-right-variant:before{content:""}.mdi-rounded-corner:before{content:""}.mdi-router:before{content:""}.mdi-router-network:before{content:""}.mdi-router-network-wireless:before{content:""}.mdi-router-wireless:before{content:""}.mdi-router-wireless-off:before{content:""}.mdi-router-wireless-settings:before{content:""}.mdi-routes:before{content:""}.mdi-routes-clock:before{content:""}.mdi-rowing:before{content:""}.mdi-rss:before{content:""}.mdi-rss-box:before{content:""}.mdi-rss-off:before{content:""}.mdi-rug:before{content:""}.mdi-rugby:before{content:""}.mdi-ruler:before{content:""}.mdi-ruler-square:before{content:""}.mdi-ruler-square-compass:before{content:""}.mdi-run:before{content:""}.mdi-run-fast:before{content:""}.mdi-rv-truck:before{content:""}.mdi-sack:before{content:""}.mdi-sack-outline:before{content:""}.mdi-sack-percent:before{content:""}.mdi-safe:before{content:""}.mdi-safe-square:before{content:""}.mdi-safe-square-outline:before{content:""}.mdi-safety-goggles:before{content:""}.mdi-sail-boat:before{content:""}.mdi-sail-boat-sink:before{content:""}.mdi-sale:before{content:""}.mdi-sale-outline:before{content:""}.mdi-salesforce:before{content:""}.mdi-sass:before{content:""}.mdi-satellite:before{content:""}.mdi-satellite-uplink:before{content:""}.mdi-satellite-variant:before{content:""}.mdi-sausage:before{content:""}.mdi-sausage-off:before{content:""}.mdi-saw-blade:before{content:""}.mdi-sawtooth-wave:before{content:""}.mdi-saxophone:before{content:""}.mdi-scale:before{content:""}.mdi-scale-balance:before{content:""}.mdi-scale-bathroom:before{content:""}.mdi-scale-off:before{content:""}.mdi-scale-unbalanced:before{content:""}.mdi-scan-helper:before{content:""}.mdi-scanner:before{content:""}.mdi-scanner-off:before{content:""}.mdi-scatter-plot:before{content:""}.mdi-scatter-plot-outline:before{content:""}.mdi-scent:before{content:""}.mdi-scent-off:before{content:""}.mdi-school:before{content:""}.mdi-school-outline:before{content:""}.mdi-scissors-cutting:before{content:""}.mdi-scooter:before{content:""}.mdi-scooter-electric:before{content:""}.mdi-scoreboard:before{content:""}.mdi-scoreboard-outline:before{content:""}.mdi-screen-rotation:before{content:""}.mdi-screen-rotation-lock:before{content:""}.mdi-screw-flat-top:before{content:""}.mdi-screw-lag:before{content:""}.mdi-screw-machine-flat-top:before{content:""}.mdi-screw-machine-round-top:before{content:""}.mdi-screw-round-top:before{content:""}.mdi-screwdriver:before{content:""}.mdi-script:before{content:""}.mdi-script-outline:before{content:""}.mdi-script-text:before{content:""}.mdi-script-text-key:before{content:""}.mdi-script-text-key-outline:before{content:""}.mdi-script-text-outline:before{content:""}.mdi-script-text-play:before{content:""}.mdi-script-text-play-outline:before{content:""}.mdi-sd:before{content:""}.mdi-seal:before{content:""}.mdi-seal-variant:before{content:""}.mdi-search-web:before{content:""}.mdi-seat:before{content:""}.mdi-seat-flat:before{content:""}.mdi-seat-flat-angled:before{content:""}.mdi-seat-individual-suite:before{content:""}.mdi-seat-legroom-extra:before{content:""}.mdi-seat-legroom-normal:before{content:""}.mdi-seat-legroom-reduced:before{content:""}.mdi-seat-outline:before{content:""}.mdi-seat-passenger:before{content:""}.mdi-seat-recline-extra:before{content:""}.mdi-seat-recline-normal:before{content:""}.mdi-seatbelt:before{content:""}.mdi-security:before{content:""}.mdi-security-network:before{content:""}.mdi-seed:before{content:""}.mdi-seed-off:before{content:""}.mdi-seed-off-outline:before{content:""}.mdi-seed-outline:before{content:""}.mdi-seed-plus:before{content:""}.mdi-seed-plus-outline:before{content:""}.mdi-seesaw:before{content:""}.mdi-segment:before{content:""}.mdi-select:before{content:""}.mdi-select-all:before{content:""}.mdi-select-arrow-down:before{content:""}.mdi-select-arrow-up:before{content:""}.mdi-select-color:before{content:""}.mdi-select-compare:before{content:""}.mdi-select-drag:before{content:""}.mdi-select-group:before{content:""}.mdi-select-inverse:before{content:""}.mdi-select-marker:before{content:""}.mdi-select-multiple:before{content:""}.mdi-select-multiple-marker:before{content:""}.mdi-select-off:before{content:""}.mdi-select-place:before{content:""}.mdi-select-remove:before{content:""}.mdi-select-search:before{content:""}.mdi-selection:before{content:""}.mdi-selection-drag:before{content:""}.mdi-selection-ellipse:before{content:""}.mdi-selection-ellipse-arrow-inside:before{content:""}.mdi-selection-ellipse-remove:before{content:""}.mdi-selection-marker:before{content:""}.mdi-selection-multiple:before{content:""}.mdi-selection-multiple-marker:before{content:""}.mdi-selection-off:before{content:""}.mdi-selection-remove:before{content:""}.mdi-selection-search:before{content:""}.mdi-semantic-web:before{content:""}.mdi-send:before{content:""}.mdi-send-check:before{content:""}.mdi-send-check-outline:before{content:""}.mdi-send-circle:before{content:""}.mdi-send-circle-outline:before{content:""}.mdi-send-clock:before{content:""}.mdi-send-clock-outline:before{content:""}.mdi-send-lock:before{content:""}.mdi-send-lock-outline:before{content:""}.mdi-send-outline:before{content:""}.mdi-send-variant:before{content:""}.mdi-send-variant-clock:before{content:""}.mdi-send-variant-clock-outline:before{content:""}.mdi-send-variant-outline:before{content:""}.mdi-serial-port:before{content:""}.mdi-server:before{content:""}.mdi-server-minus:before{content:""}.mdi-server-minus-outline:before{content:""}.mdi-server-network:before{content:""}.mdi-server-network-off:before{content:""}.mdi-server-network-outline:before{content:""}.mdi-server-off:before{content:""}.mdi-server-outline:before{content:""}.mdi-server-plus:before{content:""}.mdi-server-plus-outline:before{content:""}.mdi-server-remove:before{content:""}.mdi-server-security:before{content:""}.mdi-set-all:before{content:""}.mdi-set-center:before{content:""}.mdi-set-center-right:before{content:""}.mdi-set-left:before{content:""}.mdi-set-left-center:before{content:""}.mdi-set-left-right:before{content:""}.mdi-set-merge:before{content:""}.mdi-set-none:before{content:""}.mdi-set-right:before{content:""}.mdi-set-split:before{content:""}.mdi-set-square:before{content:""}.mdi-set-top-box:before{content:""}.mdi-settings-helper:before{content:""}.mdi-shaker:before{content:""}.mdi-shaker-outline:before{content:""}.mdi-shape:before{content:""}.mdi-shape-circle-plus:before{content:""}.mdi-shape-outline:before{content:""}.mdi-shape-oval-plus:before{content:""}.mdi-shape-plus:before{content:""}.mdi-shape-plus-outline:before{content:""}.mdi-shape-polygon-plus:before{content:""}.mdi-shape-rectangle-plus:before{content:""}.mdi-shape-square-plus:before{content:""}.mdi-shape-square-rounded-plus:before{content:""}.mdi-share:before{content:""}.mdi-share-all:before{content:""}.mdi-share-all-outline:before{content:""}.mdi-share-circle:before{content:""}.mdi-share-off:before{content:""}.mdi-share-off-outline:before{content:""}.mdi-share-outline:before{content:""}.mdi-share-variant:before{content:""}.mdi-share-variant-outline:before{content:""}.mdi-shark:before{content:""}.mdi-shark-fin:before{content:""}.mdi-shark-fin-outline:before{content:""}.mdi-shark-off:before{content:""}.mdi-sheep:before{content:""}.mdi-shield:before{content:""}.mdi-shield-account:before{content:""}.mdi-shield-account-outline:before{content:""}.mdi-shield-account-variant:before{content:""}.mdi-shield-account-variant-outline:before{content:""}.mdi-shield-airplane:before{content:""}.mdi-shield-airplane-outline:before{content:""}.mdi-shield-alert:before{content:""}.mdi-shield-alert-outline:before{content:""}.mdi-shield-bug:before{content:""}.mdi-shield-bug-outline:before{content:""}.mdi-shield-car:before{content:""}.mdi-shield-check:before{content:""}.mdi-shield-check-outline:before{content:""}.mdi-shield-cross:before{content:""}.mdi-shield-cross-outline:before{content:""}.mdi-shield-crown:before{content:""}.mdi-shield-crown-outline:before{content:""}.mdi-shield-edit:before{content:""}.mdi-shield-edit-outline:before{content:""}.mdi-shield-half:before{content:""}.mdi-shield-half-full:before{content:""}.mdi-shield-home:before{content:""}.mdi-shield-home-outline:before{content:""}.mdi-shield-key:before{content:""}.mdi-shield-key-outline:before{content:""}.mdi-shield-link-variant:before{content:""}.mdi-shield-link-variant-outline:before{content:""}.mdi-shield-lock:before{content:""}.mdi-shield-lock-open:before{content:""}.mdi-shield-lock-open-outline:before{content:""}.mdi-shield-lock-outline:before{content:""}.mdi-shield-moon:before{content:""}.mdi-shield-moon-outline:before{content:""}.mdi-shield-off:before{content:""}.mdi-shield-off-outline:before{content:""}.mdi-shield-outline:before{content:""}.mdi-shield-plus:before{content:""}.mdi-shield-plus-outline:before{content:""}.mdi-shield-refresh:before{content:""}.mdi-shield-refresh-outline:before{content:""}.mdi-shield-remove:before{content:""}.mdi-shield-remove-outline:before{content:""}.mdi-shield-search:before{content:""}.mdi-shield-star:before{content:""}.mdi-shield-star-outline:before{content:""}.mdi-shield-sun:before{content:""}.mdi-shield-sun-outline:before{content:""}.mdi-shield-sword:before{content:""}.mdi-shield-sword-outline:before{content:""}.mdi-shield-sync:before{content:""}.mdi-shield-sync-outline:before{content:""}.mdi-shimmer:before{content:""}.mdi-ship-wheel:before{content:""}.mdi-shipping-pallet:before{content:""}.mdi-shoe-ballet:before{content:""}.mdi-shoe-cleat:before{content:""}.mdi-shoe-formal:before{content:""}.mdi-shoe-heel:before{content:""}.mdi-shoe-print:before{content:""}.mdi-shoe-sneaker:before{content:""}.mdi-shopping:before{content:""}.mdi-shopping-music:before{content:""}.mdi-shopping-outline:before{content:""}.mdi-shopping-search:before{content:""}.mdi-shopping-search-outline:before{content:""}.mdi-shore:before{content:""}.mdi-shovel:before{content:""}.mdi-shovel-off:before{content:""}.mdi-shower:before{content:""}.mdi-shower-head:before{content:""}.mdi-shredder:before{content:""}.mdi-shuffle:before{content:""}.mdi-shuffle-disabled:before{content:""}.mdi-shuffle-variant:before{content:""}.mdi-shuriken:before{content:""}.mdi-sickle:before{content:""}.mdi-sigma:before{content:""}.mdi-sigma-lower:before{content:""}.mdi-sign-caution:before{content:""}.mdi-sign-direction:before{content:""}.mdi-sign-direction-minus:before{content:""}.mdi-sign-direction-plus:before{content:""}.mdi-sign-direction-remove:before{content:""}.mdi-sign-language:before{content:""}.mdi-sign-language-outline:before{content:""}.mdi-sign-pole:before{content:""}.mdi-sign-real-estate:before{content:""}.mdi-sign-text:before{content:""}.mdi-sign-yield:before{content:""}.mdi-signal:before{content:""}.mdi-signal-2g:before{content:""}.mdi-signal-3g:before{content:""}.mdi-signal-4g:before{content:""}.mdi-signal-5g:before{content:""}.mdi-signal-cellular-1:before{content:""}.mdi-signal-cellular-2:before{content:""}.mdi-signal-cellular-3:before{content:""}.mdi-signal-cellular-outline:before{content:""}.mdi-signal-distance-variant:before{content:""}.mdi-signal-hspa:before{content:""}.mdi-signal-hspa-plus:before{content:""}.mdi-signal-off:before{content:""}.mdi-signal-variant:before{content:""}.mdi-signature:before{content:""}.mdi-signature-freehand:before{content:""}.mdi-signature-image:before{content:""}.mdi-signature-text:before{content:""}.mdi-silo:before{content:""}.mdi-silo-outline:before{content:""}.mdi-silverware:before{content:""}.mdi-silverware-clean:before{content:""}.mdi-silverware-fork:before{content:""}.mdi-silverware-fork-knife:before{content:""}.mdi-silverware-spoon:before{content:""}.mdi-silverware-variant:before{content:""}.mdi-sim:before{content:""}.mdi-sim-alert:before{content:""}.mdi-sim-alert-outline:before{content:""}.mdi-sim-off:before{content:""}.mdi-sim-off-outline:before{content:""}.mdi-sim-outline:before{content:""}.mdi-simple-icons:before{content:""}.mdi-sina-weibo:before{content:""}.mdi-sine-wave:before{content:""}.mdi-sitemap:before{content:""}.mdi-sitemap-outline:before{content:""}.mdi-size-l:before{content:""}.mdi-size-m:before{content:""}.mdi-size-s:before{content:""}.mdi-size-xl:before{content:""}.mdi-size-xs:before{content:""}.mdi-size-xxl:before{content:""}.mdi-size-xxs:before{content:""}.mdi-size-xxxl:before{content:""}.mdi-skate:before{content:""}.mdi-skate-off:before{content:""}.mdi-skateboard:before{content:""}.mdi-skateboarding:before{content:""}.mdi-skew-less:before{content:""}.mdi-skew-more:before{content:""}.mdi-ski:before{content:""}.mdi-ski-cross-country:before{content:""}.mdi-ski-water:before{content:""}.mdi-skip-backward:before{content:""}.mdi-skip-backward-outline:before{content:""}.mdi-skip-forward:before{content:""}.mdi-skip-forward-outline:before{content:""}.mdi-skip-next:before{content:""}.mdi-skip-next-circle:before{content:""}.mdi-skip-next-circle-outline:before{content:""}.mdi-skip-next-outline:before{content:""}.mdi-skip-previous:before{content:""}.mdi-skip-previous-circle:before{content:""}.mdi-skip-previous-circle-outline:before{content:""}.mdi-skip-previous-outline:before{content:""}.mdi-skull:before{content:""}.mdi-skull-crossbones:before{content:""}.mdi-skull-crossbones-outline:before{content:""}.mdi-skull-outline:before{content:""}.mdi-skull-scan:before{content:""}.mdi-skull-scan-outline:before{content:""}.mdi-skype:before{content:""}.mdi-skype-business:before{content:""}.mdi-slack:before{content:""}.mdi-slash-forward:before{content:""}.mdi-slash-forward-box:before{content:""}.mdi-sledding:before{content:""}.mdi-sleep:before{content:""}.mdi-sleep-off:before{content:""}.mdi-slide:before{content:""}.mdi-slope-downhill:before{content:""}.mdi-slope-uphill:before{content:""}.mdi-slot-machine:before{content:""}.mdi-slot-machine-outline:before{content:""}.mdi-smart-card:before{content:""}.mdi-smart-card-off:before{content:""}.mdi-smart-card-off-outline:before{content:""}.mdi-smart-card-outline:before{content:""}.mdi-smart-card-reader:before{content:""}.mdi-smart-card-reader-outline:before{content:""}.mdi-smog:before{content:""}.mdi-smoke:before{content:""}.mdi-smoke-detector:before{content:""}.mdi-smoke-detector-alert:before{content:""}.mdi-smoke-detector-alert-outline:before{content:""}.mdi-smoke-detector-off:before{content:""}.mdi-smoke-detector-off-outline:before{content:""}.mdi-smoke-detector-outline:before{content:""}.mdi-smoke-detector-variant:before{content:""}.mdi-smoke-detector-variant-alert:before{content:""}.mdi-smoke-detector-variant-off:before{content:""}.mdi-smoking:before{content:""}.mdi-smoking-off:before{content:""}.mdi-smoking-pipe:before{content:""}.mdi-smoking-pipe-off:before{content:""}.mdi-snail:before{content:""}.mdi-snake:before{content:""}.mdi-snapchat:before{content:""}.mdi-snowboard:before{content:""}.mdi-snowflake:before{content:""}.mdi-snowflake-alert:before{content:""}.mdi-snowflake-check:before{content:""}.mdi-snowflake-melt:before{content:""}.mdi-snowflake-off:before{content:""}.mdi-snowflake-thermometer:before{content:""}.mdi-snowflake-variant:before{content:""}.mdi-snowman:before{content:""}.mdi-snowmobile:before{content:""}.mdi-snowshoeing:before{content:""}.mdi-soccer:before{content:""}.mdi-soccer-field:before{content:""}.mdi-social-distance-2-meters:before{content:""}.mdi-social-distance-6-feet:before{content:""}.mdi-sofa:before{content:""}.mdi-sofa-outline:before{content:""}.mdi-sofa-single:before{content:""}.mdi-sofa-single-outline:before{content:""}.mdi-solar-panel:before{content:""}.mdi-solar-panel-large:before{content:""}.mdi-solar-power:before{content:""}.mdi-solar-power-variant:before{content:""}.mdi-solar-power-variant-outline:before{content:""}.mdi-soldering-iron:before{content:""}.mdi-solid:before{content:""}.mdi-sony-playstation:before{content:""}.mdi-sort:before{content:""}.mdi-sort-alphabetical-ascending:before{content:""}.mdi-sort-alphabetical-ascending-variant:before{content:""}.mdi-sort-alphabetical-descending:before{content:""}.mdi-sort-alphabetical-descending-variant:before{content:""}.mdi-sort-alphabetical-variant:before{content:""}.mdi-sort-ascending:before{content:""}.mdi-sort-bool-ascending:before{content:""}.mdi-sort-bool-ascending-variant:before{content:""}.mdi-sort-bool-descending:before{content:""}.mdi-sort-bool-descending-variant:before{content:""}.mdi-sort-calendar-ascending:before{content:""}.mdi-sort-calendar-descending:before{content:""}.mdi-sort-clock-ascending:before{content:""}.mdi-sort-clock-ascending-outline:before{content:""}.mdi-sort-clock-descending:before{content:""}.mdi-sort-clock-descending-outline:before{content:""}.mdi-sort-descending:before{content:""}.mdi-sort-numeric-ascending:before{content:""}.mdi-sort-numeric-ascending-variant:before{content:""}.mdi-sort-numeric-descending:before{content:""}.mdi-sort-numeric-descending-variant:before{content:""}.mdi-sort-numeric-variant:before{content:""}.mdi-sort-reverse-variant:before{content:""}.mdi-sort-variant:before{content:""}.mdi-sort-variant-lock:before{content:""}.mdi-sort-variant-lock-open:before{content:""}.mdi-sort-variant-off:before{content:""}.mdi-sort-variant-remove:before{content:""}.mdi-soundbar:before{content:""}.mdi-soundcloud:before{content:""}.mdi-source-branch:before{content:""}.mdi-source-branch-check:before{content:""}.mdi-source-branch-minus:before{content:""}.mdi-source-branch-plus:before{content:""}.mdi-source-branch-refresh:before{content:""}.mdi-source-branch-remove:before{content:""}.mdi-source-branch-sync:before{content:""}.mdi-source-commit:before{content:""}.mdi-source-commit-end:before{content:""}.mdi-source-commit-end-local:before{content:""}.mdi-source-commit-local:before{content:""}.mdi-source-commit-next-local:before{content:""}.mdi-source-commit-start:before{content:""}.mdi-source-commit-start-next-local:before{content:""}.mdi-source-fork:before{content:""}.mdi-source-merge:before{content:""}.mdi-source-pull:before{content:""}.mdi-source-repository:before{content:""}.mdi-source-repository-multiple:before{content:""}.mdi-soy-sauce:before{content:""}.mdi-soy-sauce-off:before{content:""}.mdi-spa:before{content:""}.mdi-spa-outline:before{content:""}.mdi-space-invaders:before{content:""}.mdi-space-station:before{content:""}.mdi-spade:before{content:""}.mdi-speaker:before{content:""}.mdi-speaker-bluetooth:before{content:""}.mdi-speaker-message:before{content:""}.mdi-speaker-multiple:before{content:""}.mdi-speaker-off:before{content:""}.mdi-speaker-pause:before{content:""}.mdi-speaker-play:before{content:""}.mdi-speaker-stop:before{content:""}.mdi-speaker-wireless:before{content:""}.mdi-spear:before{content:""}.mdi-speedometer:before{content:""}.mdi-speedometer-medium:before{content:""}.mdi-speedometer-slow:before{content:""}.mdi-spellcheck:before{content:""}.mdi-sphere:before{content:""}.mdi-sphere-off:before{content:""}.mdi-spider:before{content:""}.mdi-spider-outline:before{content:""}.mdi-spider-thread:before{content:""}.mdi-spider-web:before{content:""}.mdi-spirit-level:before{content:""}.mdi-spoon-sugar:before{content:""}.mdi-spotify:before{content:""}.mdi-spotlight:before{content:""}.mdi-spotlight-beam:before{content:""}.mdi-spray:before{content:""}.mdi-spray-bottle:before{content:""}.mdi-sprinkler:before{content:""}.mdi-sprinkler-fire:before{content:""}.mdi-sprinkler-variant:before{content:""}.mdi-sprout:before{content:""}.mdi-sprout-outline:before{content:""}.mdi-square:before{content:""}.mdi-square-circle:before{content:""}.mdi-square-circle-outline:before{content:""}.mdi-square-edit-outline:before{content:""}.mdi-square-medium:before{content:""}.mdi-square-medium-outline:before{content:""}.mdi-square-off:before{content:""}.mdi-square-off-outline:before{content:""}.mdi-square-opacity:before{content:""}.mdi-square-outline:before{content:""}.mdi-square-root:before{content:""}.mdi-square-root-box:before{content:""}.mdi-square-rounded:before{content:""}.mdi-square-rounded-badge:before{content:""}.mdi-square-rounded-badge-outline:before{content:""}.mdi-square-rounded-outline:before{content:""}.mdi-square-small:before{content:""}.mdi-square-wave:before{content:""}.mdi-squeegee:before{content:""}.mdi-ssh:before{content:""}.mdi-stack-exchange:before{content:""}.mdi-stack-overflow:before{content:""}.mdi-stackpath:before{content:""}.mdi-stadium:before{content:""}.mdi-stadium-outline:before{content:""}.mdi-stadium-variant:before{content:""}.mdi-stairs:before{content:""}.mdi-stairs-box:before{content:""}.mdi-stairs-down:before{content:""}.mdi-stairs-up:before{content:""}.mdi-stamper:before{content:""}.mdi-standard-definition:before{content:""}.mdi-star:before{content:""}.mdi-star-box:before{content:""}.mdi-star-box-multiple:before{content:""}.mdi-star-box-multiple-outline:before{content:""}.mdi-star-box-outline:before{content:""}.mdi-star-check:before{content:""}.mdi-star-check-outline:before{content:""}.mdi-star-circle:before{content:""}.mdi-star-circle-outline:before{content:""}.mdi-star-cog:before{content:""}.mdi-star-cog-outline:before{content:""}.mdi-star-crescent:before{content:""}.mdi-star-david:before{content:""}.mdi-star-face:before{content:""}.mdi-star-four-points:before{content:""}.mdi-star-four-points-box:before{content:""}.mdi-star-four-points-box-outline:before{content:""}.mdi-star-four-points-circle:before{content:""}.mdi-star-four-points-circle-outline:before{content:""}.mdi-star-four-points-outline:before{content:""}.mdi-star-four-points-small:before{content:""}.mdi-star-half:before{content:""}.mdi-star-half-full:before{content:""}.mdi-star-minus:before{content:""}.mdi-star-minus-outline:before{content:""}.mdi-star-off:before{content:""}.mdi-star-off-outline:before{content:""}.mdi-star-outline:before{content:""}.mdi-star-plus:before{content:""}.mdi-star-plus-outline:before{content:""}.mdi-star-remove:before{content:""}.mdi-star-remove-outline:before{content:""}.mdi-star-settings:before{content:""}.mdi-star-settings-outline:before{content:""}.mdi-star-shooting:before{content:""}.mdi-star-shooting-outline:before{content:""}.mdi-star-three-points:before{content:""}.mdi-star-three-points-outline:before{content:""}.mdi-state-machine:before{content:""}.mdi-steam:before{content:""}.mdi-steering:before{content:""}.mdi-steering-off:before{content:""}.mdi-step-backward:before{content:""}.mdi-step-backward-2:before{content:""}.mdi-step-forward:before{content:""}.mdi-step-forward-2:before{content:""}.mdi-stethoscope:before{content:""}.mdi-sticker:before{content:""}.mdi-sticker-alert:before{content:""}.mdi-sticker-alert-outline:before{content:""}.mdi-sticker-check:before{content:""}.mdi-sticker-check-outline:before{content:""}.mdi-sticker-circle-outline:before{content:""}.mdi-sticker-emoji:before{content:""}.mdi-sticker-minus:before{content:""}.mdi-sticker-minus-outline:before{content:""}.mdi-sticker-outline:before{content:""}.mdi-sticker-plus:before{content:""}.mdi-sticker-plus-outline:before{content:""}.mdi-sticker-remove:before{content:""}.mdi-sticker-remove-outline:before{content:""}.mdi-sticker-text:before{content:""}.mdi-sticker-text-outline:before{content:""}.mdi-stocking:before{content:""}.mdi-stomach:before{content:""}.mdi-stool:before{content:""}.mdi-stool-outline:before{content:""}.mdi-stop:before{content:""}.mdi-stop-circle:before{content:""}.mdi-stop-circle-outline:before{content:""}.mdi-storage-tank:before{content:""}.mdi-storage-tank-outline:before{content:""}.mdi-store:before{content:""}.mdi-store-24-hour:before{content:""}.mdi-store-alert:before{content:""}.mdi-store-alert-outline:before{content:""}.mdi-store-check:before{content:""}.mdi-store-check-outline:before{content:""}.mdi-store-clock:before{content:""}.mdi-store-clock-outline:before{content:""}.mdi-store-cog:before{content:""}.mdi-store-cog-outline:before{content:""}.mdi-store-edit:before{content:""}.mdi-store-edit-outline:before{content:""}.mdi-store-marker:before{content:""}.mdi-store-marker-outline:before{content:""}.mdi-store-minus:before{content:""}.mdi-store-minus-outline:before{content:""}.mdi-store-off:before{content:""}.mdi-store-off-outline:before{content:""}.mdi-store-outline:before{content:""}.mdi-store-plus:before{content:""}.mdi-store-plus-outline:before{content:""}.mdi-store-remove:before{content:""}.mdi-store-remove-outline:before{content:""}.mdi-store-search:before{content:""}.mdi-store-search-outline:before{content:""}.mdi-store-settings:before{content:""}.mdi-store-settings-outline:before{content:""}.mdi-storefront:before{content:""}.mdi-storefront-check:before{content:""}.mdi-storefront-check-outline:before{content:""}.mdi-storefront-edit:before{content:""}.mdi-storefront-edit-outline:before{content:""}.mdi-storefront-minus:before{content:""}.mdi-storefront-minus-outline:before{content:""}.mdi-storefront-outline:before{content:""}.mdi-storefront-plus:before{content:""}.mdi-storefront-plus-outline:before{content:""}.mdi-storefront-remove:before{content:""}.mdi-storefront-remove-outline:before{content:""}.mdi-stove:before{content:""}.mdi-strategy:before{content:""}.mdi-stretch-to-page:before{content:""}.mdi-stretch-to-page-outline:before{content:""}.mdi-string-lights:before{content:""}.mdi-string-lights-off:before{content:""}.mdi-subdirectory-arrow-left:before{content:""}.mdi-subdirectory-arrow-right:before{content:""}.mdi-submarine:before{content:""}.mdi-subtitles:before{content:""}.mdi-subtitles-outline:before{content:""}.mdi-subway:before{content:""}.mdi-subway-alert-variant:before{content:""}.mdi-subway-variant:before{content:""}.mdi-summit:before{content:""}.mdi-sun-angle:before{content:""}.mdi-sun-angle-outline:before{content:""}.mdi-sun-clock:before{content:""}.mdi-sun-clock-outline:before{content:""}.mdi-sun-compass:before{content:""}.mdi-sun-snowflake:before{content:""}.mdi-sun-snowflake-variant:before{content:""}.mdi-sun-thermometer:before{content:""}.mdi-sun-thermometer-outline:before{content:""}.mdi-sun-wireless:before{content:""}.mdi-sun-wireless-outline:before{content:""}.mdi-sunglasses:before{content:""}.mdi-surfing:before{content:""}.mdi-surround-sound:before{content:""}.mdi-surround-sound-2-0:before{content:""}.mdi-surround-sound-2-1:before{content:""}.mdi-surround-sound-3-1:before{content:""}.mdi-surround-sound-5-1:before{content:""}.mdi-surround-sound-5-1-2:before{content:""}.mdi-surround-sound-7-1:before{content:""}.mdi-svg:before{content:""}.mdi-swap-horizontal:before{content:""}.mdi-swap-horizontal-bold:before{content:""}.mdi-swap-horizontal-circle:before{content:""}.mdi-swap-horizontal-circle-outline:before{content:""}.mdi-swap-horizontal-variant:before{content:""}.mdi-swap-vertical:before{content:""}.mdi-swap-vertical-bold:before{content:""}.mdi-swap-vertical-circle:before{content:""}.mdi-swap-vertical-circle-outline:before{content:""}.mdi-swap-vertical-variant:before{content:""}.mdi-swim:before{content:""}.mdi-switch:before{content:""}.mdi-sword:before{content:""}.mdi-sword-cross:before{content:""}.mdi-syllabary-hangul:before{content:""}.mdi-syllabary-hiragana:before{content:""}.mdi-syllabary-katakana:before{content:""}.mdi-syllabary-katakana-halfwidth:before{content:""}.mdi-symbol:before{content:""}.mdi-symfony:before{content:""}.mdi-synagogue:before{content:""}.mdi-synagogue-outline:before{content:""}.mdi-sync:before{content:""}.mdi-sync-alert:before{content:""}.mdi-sync-circle:before{content:""}.mdi-sync-off:before{content:""}.mdi-tab:before{content:""}.mdi-tab-minus:before{content:""}.mdi-tab-plus:before{content:""}.mdi-tab-remove:before{content:""}.mdi-tab-search:before{content:""}.mdi-tab-unselected:before{content:""}.mdi-table:before{content:""}.mdi-table-account:before{content:""}.mdi-table-alert:before{content:""}.mdi-table-arrow-down:before{content:""}.mdi-table-arrow-left:before{content:""}.mdi-table-arrow-right:before{content:""}.mdi-table-arrow-up:before{content:""}.mdi-table-border:before{content:""}.mdi-table-cancel:before{content:""}.mdi-table-chair:before{content:""}.mdi-table-check:before{content:""}.mdi-table-clock:before{content:""}.mdi-table-cog:before{content:""}.mdi-table-column:before{content:""}.mdi-table-column-plus-after:before{content:""}.mdi-table-column-plus-before:before{content:""}.mdi-table-column-remove:before{content:""}.mdi-table-column-width:before{content:""}.mdi-table-edit:before{content:""}.mdi-table-eye:before{content:""}.mdi-table-eye-off:before{content:""}.mdi-table-filter:before{content:""}.mdi-table-furniture:before{content:""}.mdi-table-headers-eye:before{content:""}.mdi-table-headers-eye-off:before{content:""}.mdi-table-heart:before{content:""}.mdi-table-key:before{content:""}.mdi-table-large:before{content:""}.mdi-table-large-plus:before{content:""}.mdi-table-large-remove:before{content:""}.mdi-table-lock:before{content:""}.mdi-table-merge-cells:before{content:""}.mdi-table-minus:before{content:""}.mdi-table-multiple:before{content:""}.mdi-table-network:before{content:""}.mdi-table-of-contents:before{content:""}.mdi-table-off:before{content:""}.mdi-table-picnic:before{content:""}.mdi-table-pivot:before{content:""}.mdi-table-plus:before{content:""}.mdi-table-question:before{content:""}.mdi-table-refresh:before{content:""}.mdi-table-remove:before{content:""}.mdi-table-row:before{content:""}.mdi-table-row-height:before{content:""}.mdi-table-row-plus-after:before{content:""}.mdi-table-row-plus-before:before{content:""}.mdi-table-row-remove:before{content:""}.mdi-table-search:before{content:""}.mdi-table-settings:before{content:""}.mdi-table-split-cell:before{content:""}.mdi-table-star:before{content:""}.mdi-table-sync:before{content:""}.mdi-table-tennis:before{content:""}.mdi-tablet:before{content:""}.mdi-tablet-cellphone:before{content:""}.mdi-tablet-dashboard:before{content:""}.mdi-taco:before{content:""}.mdi-tag:before{content:""}.mdi-tag-arrow-down:before{content:""}.mdi-tag-arrow-down-outline:before{content:""}.mdi-tag-arrow-left:before{content:""}.mdi-tag-arrow-left-outline:before{content:""}.mdi-tag-arrow-right:before{content:""}.mdi-tag-arrow-right-outline:before{content:""}.mdi-tag-arrow-up:before{content:""}.mdi-tag-arrow-up-outline:before{content:""}.mdi-tag-check:before{content:""}.mdi-tag-check-outline:before{content:""}.mdi-tag-edit:before{content:""}.mdi-tag-edit-outline:before{content:""}.mdi-tag-faces:before{content:""}.mdi-tag-heart:before{content:""}.mdi-tag-heart-outline:before{content:""}.mdi-tag-hidden:before{content:""}.mdi-tag-minus:before{content:""}.mdi-tag-minus-outline:before{content:""}.mdi-tag-multiple:before{content:""}.mdi-tag-multiple-outline:before{content:""}.mdi-tag-off:before{content:""}.mdi-tag-off-outline:before{content:""}.mdi-tag-outline:before{content:""}.mdi-tag-plus:before{content:""}.mdi-tag-plus-outline:before{content:""}.mdi-tag-remove:before{content:""}.mdi-tag-remove-outline:before{content:""}.mdi-tag-search:before{content:""}.mdi-tag-search-outline:before{content:""}.mdi-tag-text:before{content:""}.mdi-tag-text-outline:before{content:""}.mdi-tailwind:before{content:""}.mdi-tally-mark-1:before{content:""}.mdi-tally-mark-2:before{content:""}.mdi-tally-mark-3:before{content:""}.mdi-tally-mark-4:before{content:""}.mdi-tally-mark-5:before{content:""}.mdi-tangram:before{content:""}.mdi-tank:before{content:""}.mdi-tanker-truck:before{content:""}.mdi-tape-drive:before{content:""}.mdi-tape-measure:before{content:""}.mdi-target:before{content:""}.mdi-target-account:before{content:""}.mdi-target-variant:before{content:""}.mdi-taxi:before{content:""}.mdi-tea:before{content:""}.mdi-tea-outline:before{content:""}.mdi-teamviewer:before{content:""}.mdi-teddy-bear:before{content:""}.mdi-telescope:before{content:""}.mdi-television:before{content:""}.mdi-television-ambient-light:before{content:""}.mdi-television-box:before{content:""}.mdi-television-classic:before{content:""}.mdi-television-classic-off:before{content:""}.mdi-television-guide:before{content:""}.mdi-television-off:before{content:""}.mdi-television-pause:before{content:""}.mdi-television-play:before{content:""}.mdi-television-shimmer:before{content:""}.mdi-television-speaker:before{content:""}.mdi-television-speaker-off:before{content:""}.mdi-television-stop:before{content:""}.mdi-temperature-celsius:before{content:""}.mdi-temperature-fahrenheit:before{content:""}.mdi-temperature-kelvin:before{content:""}.mdi-temple-buddhist:before{content:""}.mdi-temple-buddhist-outline:before{content:""}.mdi-temple-hindu:before{content:""}.mdi-temple-hindu-outline:before{content:""}.mdi-tennis:before{content:""}.mdi-tennis-ball:before{content:""}.mdi-tennis-ball-outline:before{content:""}.mdi-tent:before{content:""}.mdi-terraform:before{content:""}.mdi-terrain:before{content:""}.mdi-test-tube:before{content:""}.mdi-test-tube-empty:before{content:""}.mdi-test-tube-off:before{content:""}.mdi-text:before{content:""}.mdi-text-account:before{content:""}.mdi-text-box:before{content:""}.mdi-text-box-check:before{content:""}.mdi-text-box-check-outline:before{content:""}.mdi-text-box-edit:before{content:""}.mdi-text-box-edit-outline:before{content:""}.mdi-text-box-minus:before{content:""}.mdi-text-box-minus-outline:before{content:""}.mdi-text-box-multiple:before{content:""}.mdi-text-box-multiple-outline:before{content:""}.mdi-text-box-outline:before{content:""}.mdi-text-box-plus:before{content:""}.mdi-text-box-plus-outline:before{content:""}.mdi-text-box-remove:before{content:""}.mdi-text-box-remove-outline:before{content:""}.mdi-text-box-search:before{content:""}.mdi-text-box-search-outline:before{content:""}.mdi-text-long:before{content:""}.mdi-text-recognition:before{content:""}.mdi-text-search:before{content:""}.mdi-text-search-variant:before{content:""}.mdi-text-shadow:before{content:""}.mdi-text-short:before{content:""}.mdi-texture:before{content:""}.mdi-texture-box:before{content:""}.mdi-theater:before{content:""}.mdi-theme-light-dark:before{content:""}.mdi-thermometer:before{content:""}.mdi-thermometer-alert:before{content:""}.mdi-thermometer-auto:before{content:""}.mdi-thermometer-bluetooth:before{content:""}.mdi-thermometer-check:before{content:""}.mdi-thermometer-chevron-down:before{content:""}.mdi-thermometer-chevron-up:before{content:""}.mdi-thermometer-high:before{content:""}.mdi-thermometer-lines:before{content:""}.mdi-thermometer-low:before{content:""}.mdi-thermometer-minus:before{content:""}.mdi-thermometer-off:before{content:""}.mdi-thermometer-plus:before{content:""}.mdi-thermometer-probe:before{content:""}.mdi-thermometer-probe-off:before{content:""}.mdi-thermometer-water:before{content:""}.mdi-thermostat:before{content:""}.mdi-thermostat-auto:before{content:""}.mdi-thermostat-box:before{content:""}.mdi-thermostat-box-auto:before{content:""}.mdi-thermostat-cog:before{content:""}.mdi-thought-bubble:before{content:""}.mdi-thought-bubble-outline:before{content:""}.mdi-thumb-down:before{content:""}.mdi-thumb-down-outline:before{content:""}.mdi-thumb-up:before{content:""}.mdi-thumb-up-outline:before{content:""}.mdi-thumbs-up-down:before{content:""}.mdi-thumbs-up-down-outline:before{content:""}.mdi-ticket:before{content:""}.mdi-ticket-account:before{content:""}.mdi-ticket-confirmation:before{content:""}.mdi-ticket-confirmation-outline:before{content:""}.mdi-ticket-outline:before{content:""}.mdi-ticket-percent:before{content:""}.mdi-ticket-percent-outline:before{content:""}.mdi-tie:before{content:""}.mdi-tilde:before{content:""}.mdi-tilde-off:before{content:""}.mdi-timelapse:before{content:""}.mdi-timeline:before{content:""}.mdi-timeline-alert:before{content:""}.mdi-timeline-alert-outline:before{content:""}.mdi-timeline-check:before{content:""}.mdi-timeline-check-outline:before{content:""}.mdi-timeline-clock:before{content:""}.mdi-timeline-clock-outline:before{content:""}.mdi-timeline-minus:before{content:""}.mdi-timeline-minus-outline:before{content:""}.mdi-timeline-outline:before{content:""}.mdi-timeline-plus:before{content:""}.mdi-timeline-plus-outline:before{content:""}.mdi-timeline-question:before{content:""}.mdi-timeline-question-outline:before{content:""}.mdi-timeline-remove:before{content:""}.mdi-timeline-remove-outline:before{content:""}.mdi-timeline-text:before{content:""}.mdi-timeline-text-outline:before{content:""}.mdi-timer:before{content:""}.mdi-timer-10:before{content:""}.mdi-timer-3:before{content:""}.mdi-timer-alert:before{content:""}.mdi-timer-alert-outline:before{content:""}.mdi-timer-cancel:before{content:""}.mdi-timer-cancel-outline:before{content:""}.mdi-timer-check:before{content:""}.mdi-timer-check-outline:before{content:""}.mdi-timer-cog:before{content:""}.mdi-timer-cog-outline:before{content:""}.mdi-timer-edit:before{content:""}.mdi-timer-edit-outline:before{content:""}.mdi-timer-lock:before{content:""}.mdi-timer-lock-open:before{content:""}.mdi-timer-lock-open-outline:before{content:""}.mdi-timer-lock-outline:before{content:""}.mdi-timer-marker:before{content:""}.mdi-timer-marker-outline:before{content:""}.mdi-timer-minus:before{content:""}.mdi-timer-minus-outline:before{content:""}.mdi-timer-music:before{content:""}.mdi-timer-music-outline:before{content:""}.mdi-timer-off:before{content:""}.mdi-timer-off-outline:before{content:""}.mdi-timer-outline:before{content:""}.mdi-timer-pause:before{content:""}.mdi-timer-pause-outline:before{content:""}.mdi-timer-play:before{content:""}.mdi-timer-play-outline:before{content:""}.mdi-timer-plus:before{content:""}.mdi-timer-plus-outline:before{content:""}.mdi-timer-refresh:before{content:""}.mdi-timer-refresh-outline:before{content:""}.mdi-timer-remove:before{content:""}.mdi-timer-remove-outline:before{content:""}.mdi-timer-sand:before{content:""}.mdi-timer-sand-complete:before{content:""}.mdi-timer-sand-empty:before{content:""}.mdi-timer-sand-full:before{content:""}.mdi-timer-sand-paused:before{content:""}.mdi-timer-settings:before{content:""}.mdi-timer-settings-outline:before{content:""}.mdi-timer-star:before{content:""}.mdi-timer-star-outline:before{content:""}.mdi-timer-stop:before{content:""}.mdi-timer-stop-outline:before{content:""}.mdi-timer-sync:before{content:""}.mdi-timer-sync-outline:before{content:""}.mdi-timetable:before{content:""}.mdi-tire:before{content:""}.mdi-toaster:before{content:""}.mdi-toaster-off:before{content:""}.mdi-toaster-oven:before{content:""}.mdi-toggle-switch:before{content:""}.mdi-toggle-switch-off:before{content:""}.mdi-toggle-switch-off-outline:before{content:""}.mdi-toggle-switch-outline:before{content:""}.mdi-toggle-switch-variant:before{content:""}.mdi-toggle-switch-variant-off:before{content:""}.mdi-toilet:before{content:""}.mdi-toolbox:before{content:""}.mdi-toolbox-outline:before{content:""}.mdi-tools:before{content:""}.mdi-tooltip:before{content:""}.mdi-tooltip-account:before{content:""}.mdi-tooltip-cellphone:before{content:""}.mdi-tooltip-check:before{content:""}.mdi-tooltip-check-outline:before{content:""}.mdi-tooltip-edit:before{content:""}.mdi-tooltip-edit-outline:before{content:""}.mdi-tooltip-image:before{content:""}.mdi-tooltip-image-outline:before{content:""}.mdi-tooltip-minus:before{content:""}.mdi-tooltip-minus-outline:before{content:""}.mdi-tooltip-outline:before{content:""}.mdi-tooltip-plus:before{content:""}.mdi-tooltip-plus-outline:before{content:""}.mdi-tooltip-question:before{content:""}.mdi-tooltip-question-outline:before{content:""}.mdi-tooltip-remove:before{content:""}.mdi-tooltip-remove-outline:before{content:""}.mdi-tooltip-text:before{content:""}.mdi-tooltip-text-outline:before{content:""}.mdi-tooth:before{content:""}.mdi-tooth-outline:before{content:""}.mdi-toothbrush:before{content:""}.mdi-toothbrush-electric:before{content:""}.mdi-toothbrush-paste:before{content:""}.mdi-torch:before{content:""}.mdi-tortoise:before{content:""}.mdi-toslink:before{content:""}.mdi-touch-text-outline:before{content:""}.mdi-tournament:before{content:""}.mdi-tow-truck:before{content:""}.mdi-tower-beach:before{content:""}.mdi-tower-fire:before{content:""}.mdi-town-hall:before{content:""}.mdi-toy-brick:before{content:""}.mdi-toy-brick-marker:before{content:""}.mdi-toy-brick-marker-outline:before{content:""}.mdi-toy-brick-minus:before{content:""}.mdi-toy-brick-minus-outline:before{content:""}.mdi-toy-brick-outline:before{content:""}.mdi-toy-brick-plus:before{content:""}.mdi-toy-brick-plus-outline:before{content:""}.mdi-toy-brick-remove:before{content:""}.mdi-toy-brick-remove-outline:before{content:""}.mdi-toy-brick-search:before{content:""}.mdi-toy-brick-search-outline:before{content:""}.mdi-track-light:before{content:""}.mdi-track-light-off:before{content:""}.mdi-trackpad:before{content:""}.mdi-trackpad-lock:before{content:""}.mdi-tractor:before{content:""}.mdi-tractor-variant:before{content:""}.mdi-trademark:before{content:""}.mdi-traffic-cone:before{content:""}.mdi-traffic-light:before{content:""}.mdi-traffic-light-outline:before{content:""}.mdi-train:before{content:""}.mdi-train-bus:before{content:""}.mdi-train-car:before{content:""}.mdi-train-car-autorack:before{content:""}.mdi-train-car-box:before{content:""}.mdi-train-car-box-full:before{content:""}.mdi-train-car-box-open:before{content:""}.mdi-train-car-caboose:before{content:""}.mdi-train-car-centerbeam:before{content:""}.mdi-train-car-centerbeam-full:before{content:""}.mdi-train-car-container:before{content:""}.mdi-train-car-flatbed:before{content:""}.mdi-train-car-flatbed-car:before{content:""}.mdi-train-car-flatbed-tank:before{content:""}.mdi-train-car-gondola:before{content:""}.mdi-train-car-gondola-full:before{content:""}.mdi-train-car-hopper:before{content:""}.mdi-train-car-hopper-covered:before{content:""}.mdi-train-car-hopper-full:before{content:""}.mdi-train-car-intermodal:before{content:""}.mdi-train-car-passenger:before{content:""}.mdi-train-car-passenger-door:before{content:""}.mdi-train-car-passenger-door-open:before{content:""}.mdi-train-car-passenger-variant:before{content:""}.mdi-train-car-tank:before{content:""}.mdi-train-variant:before{content:""}.mdi-tram:before{content:""}.mdi-tram-side:before{content:""}.mdi-transcribe:before{content:""}.mdi-transcribe-close:before{content:""}.mdi-transfer:before{content:""}.mdi-transfer-down:before{content:""}.mdi-transfer-left:before{content:""}.mdi-transfer-right:before{content:""}.mdi-transfer-up:before{content:""}.mdi-transit-connection:before{content:""}.mdi-transit-connection-horizontal:before{content:""}.mdi-transit-connection-variant:before{content:""}.mdi-transit-detour:before{content:""}.mdi-transit-skip:before{content:""}.mdi-transit-transfer:before{content:""}.mdi-transition:before{content:""}.mdi-transition-masked:before{content:""}.mdi-translate:before{content:""}.mdi-translate-off:before{content:""}.mdi-translate-variant:before{content:""}.mdi-transmission-tower:before{content:""}.mdi-transmission-tower-export:before{content:""}.mdi-transmission-tower-import:before{content:""}.mdi-transmission-tower-off:before{content:""}.mdi-trash-can:before{content:""}.mdi-trash-can-outline:before{content:""}.mdi-tray:before{content:""}.mdi-tray-alert:before{content:""}.mdi-tray-arrow-down:before{content:""}.mdi-tray-arrow-up:before{content:""}.mdi-tray-full:before{content:""}.mdi-tray-minus:before{content:""}.mdi-tray-plus:before{content:""}.mdi-tray-remove:before{content:""}.mdi-treasure-chest:before{content:""}.mdi-treasure-chest-outline:before{content:""}.mdi-tree:before{content:""}.mdi-tree-outline:before{content:""}.mdi-trello:before{content:""}.mdi-trending-down:before{content:""}.mdi-trending-neutral:before{content:""}.mdi-trending-up:before{content:""}.mdi-triangle:before{content:""}.mdi-triangle-down:before{content:""}.mdi-triangle-down-outline:before{content:""}.mdi-triangle-outline:before{content:""}.mdi-triangle-small-down:before{content:""}.mdi-triangle-small-up:before{content:""}.mdi-triangle-wave:before{content:""}.mdi-triforce:before{content:""}.mdi-trophy:before{content:""}.mdi-trophy-award:before{content:""}.mdi-trophy-broken:before{content:""}.mdi-trophy-outline:before{content:""}.mdi-trophy-variant:before{content:""}.mdi-trophy-variant-outline:before{content:""}.mdi-truck:before{content:""}.mdi-truck-alert:before{content:""}.mdi-truck-alert-outline:before{content:""}.mdi-truck-cargo-container:before{content:""}.mdi-truck-check:before{content:""}.mdi-truck-check-outline:before{content:""}.mdi-truck-delivery:before{content:""}.mdi-truck-delivery-outline:before{content:""}.mdi-truck-fast:before{content:""}.mdi-truck-fast-outline:before{content:""}.mdi-truck-flatbed:before{content:""}.mdi-truck-minus:before{content:""}.mdi-truck-minus-outline:before{content:""}.mdi-truck-off-road:before{content:""}.mdi-truck-off-road-off:before{content:""}.mdi-truck-outline:before{content:""}.mdi-truck-plus:before{content:""}.mdi-truck-plus-outline:before{content:""}.mdi-truck-remove:before{content:""}.mdi-truck-remove-outline:before{content:""}.mdi-truck-snowflake:before{content:""}.mdi-truck-trailer:before{content:""}.mdi-trumpet:before{content:""}.mdi-tshirt-crew:before{content:""}.mdi-tshirt-crew-outline:before{content:""}.mdi-tshirt-v:before{content:""}.mdi-tshirt-v-outline:before{content:""}.mdi-tsunami:before{content:""}.mdi-tumble-dryer:before{content:""}.mdi-tumble-dryer-alert:before{content:""}.mdi-tumble-dryer-off:before{content:""}.mdi-tune:before{content:""}.mdi-tune-variant:before{content:""}.mdi-tune-vertical:before{content:""}.mdi-tune-vertical-variant:before{content:""}.mdi-tunnel:before{content:""}.mdi-tunnel-outline:before{content:""}.mdi-turbine:before{content:""}.mdi-turkey:before{content:""}.mdi-turnstile:before{content:""}.mdi-turnstile-outline:before{content:""}.mdi-turtle:before{content:""}.mdi-twitch:before{content:""}.mdi-twitter:before{content:""}.mdi-two-factor-authentication:before{content:""}.mdi-typewriter:before{content:""}.mdi-ubisoft:before{content:""}.mdi-ubuntu:before{content:""}.mdi-ufo:before{content:""}.mdi-ufo-outline:before{content:""}.mdi-ultra-high-definition:before{content:""}.mdi-umbraco:before{content:""}.mdi-umbrella:before{content:""}.mdi-umbrella-beach:before{content:""}.mdi-umbrella-beach-outline:before{content:""}.mdi-umbrella-closed:before{content:""}.mdi-umbrella-closed-outline:before{content:""}.mdi-umbrella-closed-variant:before{content:""}.mdi-umbrella-outline:before{content:""}.mdi-undo:before{content:""}.mdi-undo-variant:before{content:""}.mdi-unfold-less-horizontal:before{content:""}.mdi-unfold-less-vertical:before{content:""}.mdi-unfold-more-horizontal:before{content:""}.mdi-unfold-more-vertical:before{content:""}.mdi-ungroup:before{content:""}.mdi-unicode:before{content:""}.mdi-unicorn:before{content:""}.mdi-unicorn-variant:before{content:""}.mdi-unicycle:before{content:""}.mdi-unity:before{content:""}.mdi-unreal:before{content:""}.mdi-update:before{content:""}.mdi-upload:before{content:""}.mdi-upload-lock:before{content:""}.mdi-upload-lock-outline:before{content:""}.mdi-upload-multiple:before{content:""}.mdi-upload-network:before{content:""}.mdi-upload-network-outline:before{content:""}.mdi-upload-off:before{content:""}.mdi-upload-off-outline:before{content:""}.mdi-upload-outline:before{content:""}.mdi-usb:before{content:""}.mdi-usb-c-port:before{content:""}.mdi-usb-flash-drive:before{content:""}.mdi-usb-flash-drive-outline:before{content:""}.mdi-usb-port:before{content:""}.mdi-vacuum:before{content:""}.mdi-vacuum-outline:before{content:""}.mdi-valve:before{content:""}.mdi-valve-closed:before{content:""}.mdi-valve-open:before{content:""}.mdi-van-passenger:before{content:""}.mdi-van-utility:before{content:""}.mdi-vanish:before{content:""}.mdi-vanish-quarter:before{content:""}.mdi-vanity-light:before{content:""}.mdi-variable:before{content:""}.mdi-variable-box:before{content:""}.mdi-vector-arrange-above:before{content:""}.mdi-vector-arrange-below:before{content:""}.mdi-vector-bezier:before{content:""}.mdi-vector-circle:before{content:""}.mdi-vector-circle-variant:before{content:""}.mdi-vector-combine:before{content:""}.mdi-vector-curve:before{content:""}.mdi-vector-difference:before{content:""}.mdi-vector-difference-ab:before{content:""}.mdi-vector-difference-ba:before{content:""}.mdi-vector-ellipse:before{content:""}.mdi-vector-intersection:before{content:""}.mdi-vector-line:before{content:""}.mdi-vector-link:before{content:""}.mdi-vector-point:before{content:""}.mdi-vector-point-edit:before{content:""}.mdi-vector-point-minus:before{content:""}.mdi-vector-point-plus:before{content:""}.mdi-vector-point-select:before{content:""}.mdi-vector-polygon:before{content:""}.mdi-vector-polygon-variant:before{content:""}.mdi-vector-polyline:before{content:""}.mdi-vector-polyline-edit:before{content:""}.mdi-vector-polyline-minus:before{content:""}.mdi-vector-polyline-plus:before{content:""}.mdi-vector-polyline-remove:before{content:""}.mdi-vector-radius:before{content:""}.mdi-vector-rectangle:before{content:""}.mdi-vector-selection:before{content:""}.mdi-vector-square:before{content:""}.mdi-vector-square-close:before{content:""}.mdi-vector-square-edit:before{content:""}.mdi-vector-square-minus:before{content:""}.mdi-vector-square-open:before{content:""}.mdi-vector-square-plus:before{content:""}.mdi-vector-square-remove:before{content:""}.mdi-vector-triangle:before{content:""}.mdi-vector-union:before{content:""}.mdi-vhs:before{content:""}.mdi-vibrate:before{content:""}.mdi-vibrate-off:before{content:""}.mdi-video:before{content:""}.mdi-video-2d:before{content:""}.mdi-video-3d:before{content:""}.mdi-video-3d-off:before{content:""}.mdi-video-3d-variant:before{content:""}.mdi-video-4k-box:before{content:""}.mdi-video-account:before{content:""}.mdi-video-box:before{content:""}.mdi-video-box-off:before{content:""}.mdi-video-check:before{content:""}.mdi-video-check-outline:before{content:""}.mdi-video-high-definition:before{content:""}.mdi-video-image:before{content:""}.mdi-video-input-antenna:before{content:""}.mdi-video-input-component:before{content:""}.mdi-video-input-hdmi:before{content:""}.mdi-video-input-scart:before{content:""}.mdi-video-input-svideo:before{content:""}.mdi-video-marker:before{content:""}.mdi-video-marker-outline:before{content:""}.mdi-video-minus:before{content:""}.mdi-video-minus-outline:before{content:""}.mdi-video-off:before{content:""}.mdi-video-off-outline:before{content:""}.mdi-video-outline:before{content:""}.mdi-video-plus:before{content:""}.mdi-video-plus-outline:before{content:""}.mdi-video-stabilization:before{content:""}.mdi-video-standard-definition:before{content:""}.mdi-video-switch:before{content:""}.mdi-video-switch-outline:before{content:""}.mdi-video-vintage:before{content:""}.mdi-video-wireless:before{content:""}.mdi-video-wireless-outline:before{content:""}.mdi-view-agenda:before{content:""}.mdi-view-agenda-outline:before{content:""}.mdi-view-array:before{content:""}.mdi-view-array-outline:before{content:""}.mdi-view-carousel:before{content:""}.mdi-view-carousel-outline:before{content:""}.mdi-view-column:before{content:""}.mdi-view-column-outline:before{content:""}.mdi-view-comfy:before{content:""}.mdi-view-comfy-outline:before{content:""}.mdi-view-compact:before{content:""}.mdi-view-compact-outline:before{content:""}.mdi-view-dashboard:before{content:""}.mdi-view-dashboard-edit:before{content:""}.mdi-view-dashboard-edit-outline:before{content:""}.mdi-view-dashboard-outline:before{content:""}.mdi-view-dashboard-variant:before{content:""}.mdi-view-dashboard-variant-outline:before{content:""}.mdi-view-day:before{content:""}.mdi-view-day-outline:before{content:""}.mdi-view-gallery:before{content:""}.mdi-view-gallery-outline:before{content:""}.mdi-view-grid:before{content:""}.mdi-view-grid-compact:before{content:""}.mdi-view-grid-outline:before{content:""}.mdi-view-grid-plus:before{content:""}.mdi-view-grid-plus-outline:before{content:""}.mdi-view-headline:before{content:""}.mdi-view-list:before{content:""}.mdi-view-list-outline:before{content:""}.mdi-view-module:before{content:""}.mdi-view-module-outline:before{content:""}.mdi-view-parallel:before{content:""}.mdi-view-parallel-outline:before{content:""}.mdi-view-quilt:before{content:""}.mdi-view-quilt-outline:before{content:""}.mdi-view-sequential:before{content:""}.mdi-view-sequential-outline:before{content:""}.mdi-view-split-horizontal:before{content:""}.mdi-view-split-vertical:before{content:""}.mdi-view-stream:before{content:""}.mdi-view-stream-outline:before{content:""}.mdi-view-week:before{content:""}.mdi-view-week-outline:before{content:""}.mdi-vimeo:before{content:""}.mdi-violin:before{content:""}.mdi-virtual-reality:before{content:""}.mdi-virus:before{content:""}.mdi-virus-off:before{content:""}.mdi-virus-off-outline:before{content:""}.mdi-virus-outline:before{content:""}.mdi-vlc:before{content:""}.mdi-voicemail:before{content:""}.mdi-volcano:before{content:""}.mdi-volcano-outline:before{content:""}.mdi-volleyball:before{content:""}.mdi-volume-equal:before{content:""}.mdi-volume-high:before{content:""}.mdi-volume-low:before{content:""}.mdi-volume-medium:before{content:""}.mdi-volume-minus:before{content:""}.mdi-volume-mute:before{content:""}.mdi-volume-off:before{content:""}.mdi-volume-plus:before{content:""}.mdi-volume-source:before{content:""}.mdi-volume-variant-off:before{content:""}.mdi-volume-vibrate:before{content:""}.mdi-vote:before{content:""}.mdi-vote-outline:before{content:""}.mdi-vpn:before{content:""}.mdi-vuejs:before{content:""}.mdi-vuetify:before{content:""}.mdi-walk:before{content:""}.mdi-wall:before{content:""}.mdi-wall-fire:before{content:""}.mdi-wall-sconce:before{content:""}.mdi-wall-sconce-flat:before{content:""}.mdi-wall-sconce-flat-outline:before{content:""}.mdi-wall-sconce-flat-variant:before{content:""}.mdi-wall-sconce-flat-variant-outline:before{content:""}.mdi-wall-sconce-outline:before{content:""}.mdi-wall-sconce-round:before{content:""}.mdi-wall-sconce-round-outline:before{content:""}.mdi-wall-sconce-round-variant:before{content:""}.mdi-wall-sconce-round-variant-outline:before{content:""}.mdi-wallet:before{content:""}.mdi-wallet-bifold:before{content:""}.mdi-wallet-bifold-outline:before{content:""}.mdi-wallet-giftcard:before{content:""}.mdi-wallet-membership:before{content:""}.mdi-wallet-outline:before{content:""}.mdi-wallet-plus:before{content:""}.mdi-wallet-plus-outline:before{content:""}.mdi-wallet-travel:before{content:""}.mdi-wallpaper:before{content:""}.mdi-wan:before{content:""}.mdi-wardrobe:before{content:""}.mdi-wardrobe-outline:before{content:""}.mdi-warehouse:before{content:""}.mdi-washing-machine:before{content:""}.mdi-washing-machine-alert:before{content:""}.mdi-washing-machine-off:before{content:""}.mdi-watch:before{content:""}.mdi-watch-export:before{content:""}.mdi-watch-export-variant:before{content:""}.mdi-watch-import:before{content:""}.mdi-watch-import-variant:before{content:""}.mdi-watch-variant:before{content:""}.mdi-watch-vibrate:before{content:""}.mdi-watch-vibrate-off:before{content:""}.mdi-water:before{content:""}.mdi-water-alert:before{content:""}.mdi-water-alert-outline:before{content:""}.mdi-water-boiler:before{content:""}.mdi-water-boiler-alert:before{content:""}.mdi-water-boiler-auto:before{content:""}.mdi-water-boiler-off:before{content:""}.mdi-water-check:before{content:""}.mdi-water-check-outline:before{content:""}.mdi-water-circle:before{content:""}.mdi-water-minus:before{content:""}.mdi-water-minus-outline:before{content:""}.mdi-water-off:before{content:""}.mdi-water-off-outline:before{content:""}.mdi-water-opacity:before{content:""}.mdi-water-outline:before{content:""}.mdi-water-percent:before{content:""}.mdi-water-percent-alert:before{content:""}.mdi-water-plus:before{content:""}.mdi-water-plus-outline:before{content:""}.mdi-water-polo:before{content:""}.mdi-water-pump:before{content:""}.mdi-water-pump-off:before{content:""}.mdi-water-remove:before{content:""}.mdi-water-remove-outline:before{content:""}.mdi-water-sync:before{content:""}.mdi-water-thermometer:before{content:""}.mdi-water-thermometer-outline:before{content:""}.mdi-water-well:before{content:""}.mdi-water-well-outline:before{content:""}.mdi-waterfall:before{content:""}.mdi-watering-can:before{content:""}.mdi-watering-can-outline:before{content:""}.mdi-watermark:before{content:""}.mdi-wave:before{content:""}.mdi-wave-arrow-down:before{content:""}.mdi-wave-arrow-up:before{content:""}.mdi-wave-undercurrent:before{content:""}.mdi-waveform:before{content:""}.mdi-waves:before{content:""}.mdi-waves-arrow-left:before{content:""}.mdi-waves-arrow-right:before{content:""}.mdi-waves-arrow-up:before{content:""}.mdi-waze:before{content:""}.mdi-weather-cloudy:before{content:""}.mdi-weather-cloudy-alert:before{content:""}.mdi-weather-cloudy-arrow-right:before{content:""}.mdi-weather-cloudy-clock:before{content:""}.mdi-weather-dust:before{content:""}.mdi-weather-fog:before{content:""}.mdi-weather-hail:before{content:""}.mdi-weather-hazy:before{content:""}.mdi-weather-hurricane:before{content:""}.mdi-weather-hurricane-outline:before{content:""}.mdi-weather-lightning:before{content:""}.mdi-weather-lightning-rainy:before{content:""}.mdi-weather-night:before{content:""}.mdi-weather-night-partly-cloudy:before{content:""}.mdi-weather-partly-cloudy:before{content:""}.mdi-weather-partly-lightning:before{content:""}.mdi-weather-partly-rainy:before{content:""}.mdi-weather-partly-snowy:before{content:""}.mdi-weather-partly-snowy-rainy:before{content:""}.mdi-weather-pouring:before{content:""}.mdi-weather-rainy:before{content:""}.mdi-weather-snowy:before{content:""}.mdi-weather-snowy-heavy:before{content:""}.mdi-weather-snowy-rainy:before{content:""}.mdi-weather-sunny:before{content:""}.mdi-weather-sunny-alert:before{content:""}.mdi-weather-sunny-off:before{content:""}.mdi-weather-sunset:before{content:""}.mdi-weather-sunset-down:before{content:""}.mdi-weather-sunset-up:before{content:""}.mdi-weather-tornado:before{content:""}.mdi-weather-windy:before{content:""}.mdi-weather-windy-variant:before{content:""}.mdi-web:before{content:""}.mdi-web-box:before{content:""}.mdi-web-cancel:before{content:""}.mdi-web-check:before{content:""}.mdi-web-clock:before{content:""}.mdi-web-minus:before{content:""}.mdi-web-off:before{content:""}.mdi-web-plus:before{content:""}.mdi-web-refresh:before{content:""}.mdi-web-remove:before{content:""}.mdi-web-sync:before{content:""}.mdi-webcam:before{content:""}.mdi-webcam-off:before{content:""}.mdi-webhook:before{content:""}.mdi-webpack:before{content:""}.mdi-webrtc:before{content:""}.mdi-wechat:before{content:""}.mdi-weight:before{content:""}.mdi-weight-gram:before{content:""}.mdi-weight-kilogram:before{content:""}.mdi-weight-lifter:before{content:""}.mdi-weight-pound:before{content:""}.mdi-whatsapp:before{content:""}.mdi-wheel-barrow:before{content:""}.mdi-wheelchair:before{content:""}.mdi-wheelchair-accessibility:before{content:""}.mdi-whistle:before{content:""}.mdi-whistle-outline:before{content:""}.mdi-white-balance-auto:before{content:""}.mdi-white-balance-incandescent:before{content:""}.mdi-white-balance-iridescent:before{content:""}.mdi-white-balance-sunny:before{content:""}.mdi-widgets:before{content:""}.mdi-widgets-outline:before{content:""}.mdi-wifi:before{content:""}.mdi-wifi-alert:before{content:""}.mdi-wifi-arrow-down:before{content:""}.mdi-wifi-arrow-left:before{content:""}.mdi-wifi-arrow-left-right:before{content:""}.mdi-wifi-arrow-right:before{content:""}.mdi-wifi-arrow-up:before{content:""}.mdi-wifi-arrow-up-down:before{content:""}.mdi-wifi-cancel:before{content:""}.mdi-wifi-check:before{content:""}.mdi-wifi-cog:before{content:""}.mdi-wifi-lock:before{content:""}.mdi-wifi-lock-open:before{content:""}.mdi-wifi-marker:before{content:""}.mdi-wifi-minus:before{content:""}.mdi-wifi-off:before{content:""}.mdi-wifi-plus:before{content:""}.mdi-wifi-refresh:before{content:""}.mdi-wifi-remove:before{content:""}.mdi-wifi-settings:before{content:""}.mdi-wifi-star:before{content:""}.mdi-wifi-strength-1:before{content:""}.mdi-wifi-strength-1-alert:before{content:""}.mdi-wifi-strength-1-lock:before{content:""}.mdi-wifi-strength-1-lock-open:before{content:""}.mdi-wifi-strength-2:before{content:""}.mdi-wifi-strength-2-alert:before{content:""}.mdi-wifi-strength-2-lock:before{content:""}.mdi-wifi-strength-2-lock-open:before{content:""}.mdi-wifi-strength-3:before{content:""}.mdi-wifi-strength-3-alert:before{content:""}.mdi-wifi-strength-3-lock:before{content:""}.mdi-wifi-strength-3-lock-open:before{content:""}.mdi-wifi-strength-4:before{content:""}.mdi-wifi-strength-4-alert:before{content:""}.mdi-wifi-strength-4-lock:before{content:""}.mdi-wifi-strength-4-lock-open:before{content:""}.mdi-wifi-strength-alert-outline:before{content:""}.mdi-wifi-strength-lock-open-outline:before{content:""}.mdi-wifi-strength-lock-outline:before{content:""}.mdi-wifi-strength-off:before{content:""}.mdi-wifi-strength-off-outline:before{content:""}.mdi-wifi-strength-outline:before{content:""}.mdi-wifi-sync:before{content:""}.mdi-wikipedia:before{content:""}.mdi-wind-power:before{content:""}.mdi-wind-power-outline:before{content:""}.mdi-wind-turbine:before{content:""}.mdi-wind-turbine-alert:before{content:""}.mdi-wind-turbine-check:before{content:""}.mdi-window-close:before{content:""}.mdi-window-closed:before{content:""}.mdi-window-closed-variant:before{content:""}.mdi-window-maximize:before{content:""}.mdi-window-minimize:before{content:""}.mdi-window-open:before{content:""}.mdi-window-open-variant:before{content:""}.mdi-window-restore:before{content:""}.mdi-window-shutter:before{content:""}.mdi-window-shutter-alert:before{content:""}.mdi-window-shutter-auto:before{content:""}.mdi-window-shutter-cog:before{content:""}.mdi-window-shutter-open:before{content:""}.mdi-window-shutter-settings:before{content:""}.mdi-windsock:before{content:""}.mdi-wiper:before{content:""}.mdi-wiper-wash:before{content:""}.mdi-wiper-wash-alert:before{content:""}.mdi-wizard-hat:before{content:""}.mdi-wordpress:before{content:""}.mdi-wrap:before{content:""}.mdi-wrap-disabled:before{content:""}.mdi-wrench:before{content:""}.mdi-wrench-check:before{content:""}.mdi-wrench-check-outline:before{content:""}.mdi-wrench-clock:before{content:""}.mdi-wrench-clock-outline:before{content:""}.mdi-wrench-cog:before{content:""}.mdi-wrench-cog-outline:before{content:""}.mdi-wrench-outline:before{content:""}.mdi-xamarin:before{content:""}.mdi-xml:before{content:""}.mdi-xmpp:before{content:""}.mdi-yahoo:before{content:""}.mdi-yeast:before{content:""}.mdi-yin-yang:before{content:""}.mdi-yoga:before{content:""}.mdi-youtube:before{content:""}.mdi-youtube-gaming:before{content:""}.mdi-youtube-studio:before{content:""}.mdi-youtube-subscription:before{content:""}.mdi-youtube-tv:before{content:""}.mdi-yurt:before{content:""}.mdi-z-wave:before{content:""}.mdi-zend:before{content:""}.mdi-zigbee:before{content:""}.mdi-zip-box:before{content:""}.mdi-zip-box-outline:before{content:""}.mdi-zip-disk:before{content:""}.mdi-zodiac-aquarius:before{content:""}.mdi-zodiac-aries:before{content:""}.mdi-zodiac-cancer:before{content:""}.mdi-zodiac-capricorn:before{content:""}.mdi-zodiac-gemini:before{content:""}.mdi-zodiac-leo:before{content:""}.mdi-zodiac-libra:before{content:""}.mdi-zodiac-pisces:before{content:""}.mdi-zodiac-sagittarius:before{content:""}.mdi-zodiac-scorpio:before{content:""}.mdi-zodiac-taurus:before{content:""}.mdi-zodiac-virgo:before{content:""}.mdi-blank:before{content:"";visibility:hidden}.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}.mdi-dark:before{color:#0000008a}.mdi-dark.mdi-inactive:before{color:#00000042}.mdi-light:before{color:#fff}.mdi-light.mdi-inactive:before{color:#ffffff4d}.mdi-rotate-45:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mdi-rotate-90:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.mdi-rotate-135:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.mdi-rotate-180:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.mdi-rotate-225:before{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.mdi-rotate-270:before{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.mdi-rotate-315:before{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.mdi-flip-h:before{-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}.mdi-flip-v:before{-webkit-transform:scaleY(-1);transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.mdi-spin:before{-webkit-animation:mdi-spin 2s infinite linear;animation:mdi-spin 2s infinite linear}@-webkit-keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}html,body{font-family:Pathway Extreme,sans-serif}h1,h2,h3,h4,h5,p{margin:0}ul{list-style-position:inside}.zt-menu{border:1px solid rgba(var(--v-theme-bluegrey))}.zt-menu .v-list-item__prepend{margin-right:12px}.v-container{max-width:1250px}.code-output{white-space:pre-wrap}.v-expansion-panel--active>.v-expansion-panel-title{min-height:31px}.add-cell-item:hover{background-color:rgba(var(--v-theme-bluegrey))}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@keyframes v-shake{59%{margin-left:0}60%,80%{margin-left:2px}70%,90%{margin-left:-2px}}.bg-black{background-color:#000!important}.bg-black{color:#fff!important}.bg-white{background-color:#fff!important}.bg-white{color:#000!important}.bg-transparent{background-color:transparent!important}.bg-transparent{color:currentColor!important}.bg-red{background-color:#f44336!important}.bg-red{color:#fff!important}.bg-red-lighten-5{background-color:#ffebee!important}.bg-red-lighten-5{color:#000!important}.bg-red-lighten-4{background-color:#ffcdd2!important}.bg-red-lighten-4{color:#000!important}.bg-red-lighten-3{background-color:#ef9a9a!important}.bg-red-lighten-3{color:#000!important}.bg-red-lighten-2{background-color:#e57373!important}.bg-red-lighten-2{color:#fff!important}.bg-red-lighten-1{background-color:#ef5350!important}.bg-red-lighten-1{color:#fff!important}.bg-red-darken-1{background-color:#e53935!important}.bg-red-darken-1{color:#fff!important}.bg-red-darken-2{background-color:#d32f2f!important}.bg-red-darken-2{color:#fff!important}.bg-red-darken-3{background-color:#c62828!important}.bg-red-darken-3{color:#fff!important}.bg-red-darken-4{background-color:#b71c1c!important}.bg-red-darken-4{color:#fff!important}.bg-red-accent-1{background-color:#ff8a80!important}.bg-red-accent-1{color:#000!important}.bg-red-accent-2{background-color:#ff5252!important}.bg-red-accent-2{color:#fff!important}.bg-red-accent-3{background-color:#ff1744!important}.bg-red-accent-3{color:#fff!important}.bg-red-accent-4{background-color:#d50000!important}.bg-red-accent-4{color:#fff!important}.bg-pink{background-color:#e91e63!important}.bg-pink{color:#fff!important}.bg-pink-lighten-5{background-color:#fce4ec!important}.bg-pink-lighten-5{color:#000!important}.bg-pink-lighten-4{background-color:#f8bbd0!important}.bg-pink-lighten-4{color:#000!important}.bg-pink-lighten-3{background-color:#f48fb1!important}.bg-pink-lighten-3{color:#000!important}.bg-pink-lighten-2{background-color:#f06292!important}.bg-pink-lighten-2{color:#fff!important}.bg-pink-lighten-1{background-color:#ec407a!important}.bg-pink-lighten-1{color:#fff!important}.bg-pink-darken-1{background-color:#d81b60!important}.bg-pink-darken-1{color:#fff!important}.bg-pink-darken-2{background-color:#c2185b!important}.bg-pink-darken-2{color:#fff!important}.bg-pink-darken-3{background-color:#ad1457!important}.bg-pink-darken-3{color:#fff!important}.bg-pink-darken-4{background-color:#880e4f!important}.bg-pink-darken-4{color:#fff!important}.bg-pink-accent-1{background-color:#ff80ab!important}.bg-pink-accent-1{color:#fff!important}.bg-pink-accent-2{background-color:#ff4081!important}.bg-pink-accent-2{color:#fff!important}.bg-pink-accent-3{background-color:#f50057!important}.bg-pink-accent-3{color:#fff!important}.bg-pink-accent-4{background-color:#c51162!important}.bg-pink-accent-4{color:#fff!important}.bg-purple{background-color:#9c27b0!important}.bg-purple{color:#fff!important}.bg-purple-lighten-5{background-color:#f3e5f5!important}.bg-purple-lighten-5{color:#000!important}.bg-purple-lighten-4{background-color:#e1bee7!important}.bg-purple-lighten-4{color:#000!important}.bg-purple-lighten-3{background-color:#ce93d8!important}.bg-purple-lighten-3{color:#fff!important}.bg-purple-lighten-2{background-color:#ba68c8!important}.bg-purple-lighten-2{color:#fff!important}.bg-purple-lighten-1{background-color:#ab47bc!important}.bg-purple-lighten-1{color:#fff!important}.bg-purple-darken-1{background-color:#8e24aa!important}.bg-purple-darken-1{color:#fff!important}.bg-purple-darken-2{background-color:#7b1fa2!important}.bg-purple-darken-2{color:#fff!important}.bg-purple-darken-3{background-color:#6a1b9a!important}.bg-purple-darken-3{color:#fff!important}.bg-purple-darken-4{background-color:#4a148c!important}.bg-purple-darken-4{color:#fff!important}.bg-purple-accent-1{background-color:#ea80fc!important}.bg-purple-accent-1{color:#fff!important}.bg-purple-accent-2{background-color:#e040fb!important}.bg-purple-accent-2{color:#fff!important}.bg-purple-accent-3{background-color:#d500f9!important}.bg-purple-accent-3{color:#fff!important}.bg-purple-accent-4{background-color:#a0f!important}.bg-purple-accent-4{color:#fff!important}.bg-deep-purple{background-color:#673ab7!important}.bg-deep-purple{color:#fff!important}.bg-deep-purple-lighten-5{background-color:#ede7f6!important}.bg-deep-purple-lighten-5{color:#000!important}.bg-deep-purple-lighten-4{background-color:#d1c4e9!important}.bg-deep-purple-lighten-4{color:#000!important}.bg-deep-purple-lighten-3{background-color:#b39ddb!important}.bg-deep-purple-lighten-3{color:#fff!important}.bg-deep-purple-lighten-2{background-color:#9575cd!important}.bg-deep-purple-lighten-2{color:#fff!important}.bg-deep-purple-lighten-1{background-color:#7e57c2!important}.bg-deep-purple-lighten-1{color:#fff!important}.bg-deep-purple-darken-1{background-color:#5e35b1!important}.bg-deep-purple-darken-1{color:#fff!important}.bg-deep-purple-darken-2{background-color:#512da8!important}.bg-deep-purple-darken-2{color:#fff!important}.bg-deep-purple-darken-3{background-color:#4527a0!important}.bg-deep-purple-darken-3{color:#fff!important}.bg-deep-purple-darken-4{background-color:#311b92!important}.bg-deep-purple-darken-4{color:#fff!important}.bg-deep-purple-accent-1{background-color:#b388ff!important}.bg-deep-purple-accent-1{color:#fff!important}.bg-deep-purple-accent-2{background-color:#7c4dff!important}.bg-deep-purple-accent-2{color:#fff!important}.bg-deep-purple-accent-3{background-color:#651fff!important}.bg-deep-purple-accent-3{color:#fff!important}.bg-deep-purple-accent-4{background-color:#6200ea!important}.bg-deep-purple-accent-4{color:#fff!important}.bg-indigo{background-color:#3f51b5!important}.bg-indigo{color:#fff!important}.bg-indigo-lighten-5{background-color:#e8eaf6!important}.bg-indigo-lighten-5{color:#000!important}.bg-indigo-lighten-4{background-color:#c5cae9!important}.bg-indigo-lighten-4{color:#000!important}.bg-indigo-lighten-3{background-color:#9fa8da!important}.bg-indigo-lighten-3{color:#fff!important}.bg-indigo-lighten-2{background-color:#7986cb!important}.bg-indigo-lighten-2{color:#fff!important}.bg-indigo-lighten-1{background-color:#5c6bc0!important}.bg-indigo-lighten-1{color:#fff!important}.bg-indigo-darken-1{background-color:#3949ab!important}.bg-indigo-darken-1{color:#fff!important}.bg-indigo-darken-2{background-color:#303f9f!important}.bg-indigo-darken-2{color:#fff!important}.bg-indigo-darken-3{background-color:#283593!important}.bg-indigo-darken-3{color:#fff!important}.bg-indigo-darken-4{background-color:#1a237e!important}.bg-indigo-darken-4{color:#fff!important}.bg-indigo-accent-1{background-color:#8c9eff!important}.bg-indigo-accent-1{color:#fff!important}.bg-indigo-accent-2{background-color:#536dfe!important}.bg-indigo-accent-2{color:#fff!important}.bg-indigo-accent-3{background-color:#3d5afe!important}.bg-indigo-accent-3{color:#fff!important}.bg-indigo-accent-4{background-color:#304ffe!important}.bg-indigo-accent-4{color:#fff!important}.bg-blue{background-color:#2196f3!important}.bg-blue{color:#fff!important}.bg-blue-lighten-5{background-color:#e3f2fd!important}.bg-blue-lighten-5{color:#000!important}.bg-blue-lighten-4{background-color:#bbdefb!important}.bg-blue-lighten-4{color:#000!important}.bg-blue-lighten-3{background-color:#90caf9!important}.bg-blue-lighten-3{color:#000!important}.bg-blue-lighten-2{background-color:#64b5f6!important}.bg-blue-lighten-2{color:#000!important}.bg-blue-lighten-1{background-color:#42a5f5!important}.bg-blue-lighten-1{color:#fff!important}.bg-blue-darken-1{background-color:#1e88e5!important}.bg-blue-darken-1{color:#fff!important}.bg-blue-darken-2{background-color:#1976d2!important}.bg-blue-darken-2{color:#fff!important}.bg-blue-darken-3{background-color:#1565c0!important}.bg-blue-darken-3{color:#fff!important}.bg-blue-darken-4{background-color:#0d47a1!important}.bg-blue-darken-4{color:#fff!important}.bg-blue-accent-1{background-color:#82b1ff!important}.bg-blue-accent-1{color:#000!important}.bg-blue-accent-2{background-color:#448aff!important}.bg-blue-accent-2{color:#fff!important}.bg-blue-accent-3{background-color:#2979ff!important}.bg-blue-accent-3{color:#fff!important}.bg-blue-accent-4{background-color:#2962ff!important}.bg-blue-accent-4{color:#fff!important}.bg-light-blue{background-color:#03a9f4!important}.bg-light-blue{color:#fff!important}.bg-light-blue-lighten-5{background-color:#e1f5fe!important}.bg-light-blue-lighten-5{color:#000!important}.bg-light-blue-lighten-4{background-color:#b3e5fc!important}.bg-light-blue-lighten-4{color:#000!important}.bg-light-blue-lighten-3{background-color:#81d4fa!important}.bg-light-blue-lighten-3{color:#000!important}.bg-light-blue-lighten-2{background-color:#4fc3f7!important}.bg-light-blue-lighten-2{color:#000!important}.bg-light-blue-lighten-1{background-color:#29b6f6!important}.bg-light-blue-lighten-1{color:#000!important}.bg-light-blue-darken-1{background-color:#039be5!important}.bg-light-blue-darken-1{color:#fff!important}.bg-light-blue-darken-2{background-color:#0288d1!important}.bg-light-blue-darken-2{color:#fff!important}.bg-light-blue-darken-3{background-color:#0277bd!important}.bg-light-blue-darken-3{color:#fff!important}.bg-light-blue-darken-4{background-color:#01579b!important}.bg-light-blue-darken-4{color:#fff!important}.bg-light-blue-accent-1{background-color:#80d8ff!important}.bg-light-blue-accent-1{color:#000!important}.bg-light-blue-accent-2{background-color:#40c4ff!important}.bg-light-blue-accent-2{color:#000!important}.bg-light-blue-accent-3{background-color:#00b0ff!important}.bg-light-blue-accent-3{color:#fff!important}.bg-light-blue-accent-4{background-color:#0091ea!important}.bg-light-blue-accent-4{color:#fff!important}.bg-cyan{background-color:#00bcd4!important}.bg-cyan{color:#000!important}.bg-cyan-lighten-5{background-color:#e0f7fa!important}.bg-cyan-lighten-5{color:#000!important}.bg-cyan-lighten-4{background-color:#b2ebf2!important}.bg-cyan-lighten-4{color:#000!important}.bg-cyan-lighten-3{background-color:#80deea!important}.bg-cyan-lighten-3{color:#000!important}.bg-cyan-lighten-2{background-color:#4dd0e1!important}.bg-cyan-lighten-2{color:#000!important}.bg-cyan-lighten-1{background-color:#26c6da!important}.bg-cyan-lighten-1{color:#000!important}.bg-cyan-darken-1{background-color:#00acc1!important}.bg-cyan-darken-1{color:#fff!important}.bg-cyan-darken-2{background-color:#0097a7!important}.bg-cyan-darken-2{color:#fff!important}.bg-cyan-darken-3{background-color:#00838f!important}.bg-cyan-darken-3{color:#fff!important}.bg-cyan-darken-4{background-color:#006064!important}.bg-cyan-darken-4{color:#fff!important}.bg-cyan-accent-1{background-color:#84ffff!important}.bg-cyan-accent-1{color:#000!important}.bg-cyan-accent-2{background-color:#18ffff!important}.bg-cyan-accent-2{color:#000!important}.bg-cyan-accent-3{background-color:#00e5ff!important}.bg-cyan-accent-3{color:#000!important}.bg-cyan-accent-4{background-color:#00b8d4!important}.bg-cyan-accent-4{color:#fff!important}.bg-teal{background-color:#009688!important}.bg-teal{color:#fff!important}.bg-teal-lighten-5{background-color:#e0f2f1!important}.bg-teal-lighten-5{color:#000!important}.bg-teal-lighten-4{background-color:#b2dfdb!important}.bg-teal-lighten-4{color:#000!important}.bg-teal-lighten-3{background-color:#80cbc4!important}.bg-teal-lighten-3{color:#000!important}.bg-teal-lighten-2{background-color:#4db6ac!important}.bg-teal-lighten-2{color:#fff!important}.bg-teal-lighten-1{background-color:#26a69a!important}.bg-teal-lighten-1{color:#fff!important}.bg-teal-darken-1{background-color:#00897b!important}.bg-teal-darken-1{color:#fff!important}.bg-teal-darken-2{background-color:#00796b!important}.bg-teal-darken-2{color:#fff!important}.bg-teal-darken-3{background-color:#00695c!important}.bg-teal-darken-3{color:#fff!important}.bg-teal-darken-4{background-color:#004d40!important}.bg-teal-darken-4{color:#fff!important}.bg-teal-accent-1{background-color:#a7ffeb!important}.bg-teal-accent-1{color:#000!important}.bg-teal-accent-2{background-color:#64ffda!important}.bg-teal-accent-2{color:#000!important}.bg-teal-accent-3{background-color:#1de9b6!important}.bg-teal-accent-3{color:#000!important}.bg-teal-accent-4{background-color:#00bfa5!important}.bg-teal-accent-4{color:#fff!important}.bg-green{background-color:#4caf50!important}.bg-green{color:#fff!important}.bg-green-lighten-5{background-color:#e8f5e9!important}.bg-green-lighten-5{color:#000!important}.bg-green-lighten-4{background-color:#c8e6c9!important}.bg-green-lighten-4{color:#000!important}.bg-green-lighten-3{background-color:#a5d6a7!important}.bg-green-lighten-3{color:#000!important}.bg-green-lighten-2{background-color:#81c784!important}.bg-green-lighten-2{color:#000!important}.bg-green-lighten-1{background-color:#66bb6a!important}.bg-green-lighten-1{color:#fff!important}.bg-green-darken-1{background-color:#43a047!important}.bg-green-darken-1{color:#fff!important}.bg-green-darken-2{background-color:#388e3c!important}.bg-green-darken-2{color:#fff!important}.bg-green-darken-3{background-color:#2e7d32!important}.bg-green-darken-3{color:#fff!important}.bg-green-darken-4{background-color:#1b5e20!important}.bg-green-darken-4{color:#fff!important}.bg-green-accent-1{background-color:#b9f6ca!important}.bg-green-accent-1{color:#000!important}.bg-green-accent-2{background-color:#69f0ae!important}.bg-green-accent-2{color:#000!important}.bg-green-accent-3{background-color:#00e676!important}.bg-green-accent-3{color:#000!important}.bg-green-accent-4{background-color:#00c853!important}.bg-green-accent-4{color:#000!important}.bg-light-green{background-color:#8bc34a!important}.bg-light-green{color:#000!important}.bg-light-green-lighten-5{background-color:#f1f8e9!important}.bg-light-green-lighten-5{color:#000!important}.bg-light-green-lighten-4{background-color:#dcedc8!important}.bg-light-green-lighten-4{color:#000!important}.bg-light-green-lighten-3{background-color:#c5e1a5!important}.bg-light-green-lighten-3{color:#000!important}.bg-light-green-lighten-2{background-color:#aed581!important}.bg-light-green-lighten-2{color:#000!important}.bg-light-green-lighten-1{background-color:#9ccc65!important}.bg-light-green-lighten-1{color:#000!important}.bg-light-green-darken-1{background-color:#7cb342!important}.bg-light-green-darken-1{color:#fff!important}.bg-light-green-darken-2{background-color:#689f38!important}.bg-light-green-darken-2{color:#fff!important}.bg-light-green-darken-3{background-color:#558b2f!important}.bg-light-green-darken-3{color:#fff!important}.bg-light-green-darken-4{background-color:#33691e!important}.bg-light-green-darken-4{color:#fff!important}.bg-light-green-accent-1{background-color:#ccff90!important}.bg-light-green-accent-1{color:#000!important}.bg-light-green-accent-2{background-color:#b2ff59!important}.bg-light-green-accent-2{color:#000!important}.bg-light-green-accent-3{background-color:#76ff03!important}.bg-light-green-accent-3{color:#000!important}.bg-light-green-accent-4{background-color:#64dd17!important}.bg-light-green-accent-4{color:#000!important}.bg-lime{background-color:#cddc39!important}.bg-lime{color:#000!important}.bg-lime-lighten-5{background-color:#f9fbe7!important}.bg-lime-lighten-5{color:#000!important}.bg-lime-lighten-4{background-color:#f0f4c3!important}.bg-lime-lighten-4{color:#000!important}.bg-lime-lighten-3{background-color:#e6ee9c!important}.bg-lime-lighten-3{color:#000!important}.bg-lime-lighten-2{background-color:#dce775!important}.bg-lime-lighten-2{color:#000!important}.bg-lime-lighten-1{background-color:#d4e157!important}.bg-lime-lighten-1{color:#000!important}.bg-lime-darken-1{background-color:#c0ca33!important}.bg-lime-darken-1{color:#000!important}.bg-lime-darken-2{background-color:#afb42b!important}.bg-lime-darken-2{color:#000!important}.bg-lime-darken-3{background-color:#9e9d24!important}.bg-lime-darken-3{color:#fff!important}.bg-lime-darken-4{background-color:#827717!important}.bg-lime-darken-4{color:#fff!important}.bg-lime-accent-1{background-color:#f4ff81!important}.bg-lime-accent-1{color:#000!important}.bg-lime-accent-2{background-color:#eeff41!important}.bg-lime-accent-2{color:#000!important}.bg-lime-accent-3{background-color:#c6ff00!important}.bg-lime-accent-3{color:#000!important}.bg-lime-accent-4{background-color:#aeea00!important}.bg-lime-accent-4{color:#000!important}.bg-yellow{background-color:#ffeb3b!important}.bg-yellow{color:#000!important}.bg-yellow-lighten-5{background-color:#fffde7!important}.bg-yellow-lighten-5{color:#000!important}.bg-yellow-lighten-4{background-color:#fff9c4!important}.bg-yellow-lighten-4{color:#000!important}.bg-yellow-lighten-3{background-color:#fff59d!important}.bg-yellow-lighten-3{color:#000!important}.bg-yellow-lighten-2{background-color:#fff176!important}.bg-yellow-lighten-2{color:#000!important}.bg-yellow-lighten-1{background-color:#ffee58!important}.bg-yellow-lighten-1{color:#000!important}.bg-yellow-darken-1{background-color:#fdd835!important}.bg-yellow-darken-1{color:#000!important}.bg-yellow-darken-2{background-color:#fbc02d!important}.bg-yellow-darken-2{color:#000!important}.bg-yellow-darken-3{background-color:#f9a825!important}.bg-yellow-darken-3{color:#000!important}.bg-yellow-darken-4{background-color:#f57f17!important}.bg-yellow-darken-4{color:#fff!important}.bg-yellow-accent-1{background-color:#ffff8d!important}.bg-yellow-accent-1{color:#000!important}.bg-yellow-accent-2{background-color:#ff0!important}.bg-yellow-accent-2{color:#000!important}.bg-yellow-accent-3{background-color:#ffea00!important}.bg-yellow-accent-3{color:#000!important}.bg-yellow-accent-4{background-color:#ffd600!important}.bg-yellow-accent-4{color:#000!important}.bg-amber{background-color:#ffc107!important}.bg-amber{color:#000!important}.bg-amber-lighten-5{background-color:#fff8e1!important}.bg-amber-lighten-5{color:#000!important}.bg-amber-lighten-4{background-color:#ffecb3!important}.bg-amber-lighten-4{color:#000!important}.bg-amber-lighten-3{background-color:#ffe082!important}.bg-amber-lighten-3{color:#000!important}.bg-amber-lighten-2{background-color:#ffd54f!important}.bg-amber-lighten-2{color:#000!important}.bg-amber-lighten-1{background-color:#ffca28!important}.bg-amber-lighten-1{color:#000!important}.bg-amber-darken-1{background-color:#ffb300!important}.bg-amber-darken-1{color:#000!important}.bg-amber-darken-2{background-color:#ffa000!important}.bg-amber-darken-2{color:#000!important}.bg-amber-darken-3{background-color:#ff8f00!important}.bg-amber-darken-3{color:#000!important}.bg-amber-darken-4{background-color:#ff6f00!important}.bg-amber-darken-4{color:#fff!important}.bg-amber-accent-1{background-color:#ffe57f!important}.bg-amber-accent-1{color:#000!important}.bg-amber-accent-2{background-color:#ffd740!important}.bg-amber-accent-2{color:#000!important}.bg-amber-accent-3{background-color:#ffc400!important}.bg-amber-accent-3{color:#000!important}.bg-amber-accent-4{background-color:#ffab00!important}.bg-amber-accent-4{color:#000!important}.bg-orange{background-color:#ff9800!important}.bg-orange{color:#000!important}.bg-orange-lighten-5{background-color:#fff3e0!important}.bg-orange-lighten-5{color:#000!important}.bg-orange-lighten-4{background-color:#ffe0b2!important}.bg-orange-lighten-4{color:#000!important}.bg-orange-lighten-3{background-color:#ffcc80!important}.bg-orange-lighten-3{color:#000!important}.bg-orange-lighten-2{background-color:#ffb74d!important}.bg-orange-lighten-2{color:#000!important}.bg-orange-lighten-1{background-color:#ffa726!important}.bg-orange-lighten-1{color:#000!important}.bg-orange-darken-1{background-color:#fb8c00!important}.bg-orange-darken-1{color:#fff!important}.bg-orange-darken-2{background-color:#f57c00!important}.bg-orange-darken-2{color:#fff!important}.bg-orange-darken-3{background-color:#ef6c00!important}.bg-orange-darken-3{color:#fff!important}.bg-orange-darken-4{background-color:#e65100!important}.bg-orange-darken-4{color:#fff!important}.bg-orange-accent-1{background-color:#ffd180!important}.bg-orange-accent-1{color:#000!important}.bg-orange-accent-2{background-color:#ffab40!important}.bg-orange-accent-2{color:#000!important}.bg-orange-accent-3{background-color:#ff9100!important}.bg-orange-accent-3{color:#000!important}.bg-orange-accent-4{background-color:#ff6d00!important}.bg-orange-accent-4{color:#fff!important}.bg-deep-orange{background-color:#ff5722!important}.bg-deep-orange{color:#fff!important}.bg-deep-orange-lighten-5{background-color:#fbe9e7!important}.bg-deep-orange-lighten-5{color:#000!important}.bg-deep-orange-lighten-4{background-color:#ffccbc!important}.bg-deep-orange-lighten-4{color:#000!important}.bg-deep-orange-lighten-3{background-color:#ffab91!important}.bg-deep-orange-lighten-3{color:#000!important}.bg-deep-orange-lighten-2{background-color:#ff8a65!important}.bg-deep-orange-lighten-2{color:#000!important}.bg-deep-orange-lighten-1{background-color:#ff7043!important}.bg-deep-orange-lighten-1{color:#fff!important}.bg-deep-orange-darken-1{background-color:#f4511e!important}.bg-deep-orange-darken-1{color:#fff!important}.bg-deep-orange-darken-2{background-color:#e64a19!important}.bg-deep-orange-darken-2{color:#fff!important}.bg-deep-orange-darken-3{background-color:#d84315!important}.bg-deep-orange-darken-3{color:#fff!important}.bg-deep-orange-darken-4{background-color:#bf360c!important}.bg-deep-orange-darken-4{color:#fff!important}.bg-deep-orange-accent-1{background-color:#ff9e80!important}.bg-deep-orange-accent-1{color:#000!important}.bg-deep-orange-accent-2{background-color:#ff6e40!important}.bg-deep-orange-accent-2{color:#fff!important}.bg-deep-orange-accent-3{background-color:#ff3d00!important}.bg-deep-orange-accent-3{color:#fff!important}.bg-deep-orange-accent-4{background-color:#dd2c00!important}.bg-deep-orange-accent-4{color:#fff!important}.bg-brown{background-color:#795548!important}.bg-brown{color:#fff!important}.bg-brown-lighten-5{background-color:#efebe9!important}.bg-brown-lighten-5{color:#000!important}.bg-brown-lighten-4{background-color:#d7ccc8!important}.bg-brown-lighten-4{color:#000!important}.bg-brown-lighten-3{background-color:#bcaaa4!important}.bg-brown-lighten-3{color:#000!important}.bg-brown-lighten-2{background-color:#a1887f!important}.bg-brown-lighten-2{color:#fff!important}.bg-brown-lighten-1{background-color:#8d6e63!important}.bg-brown-lighten-1{color:#fff!important}.bg-brown-darken-1{background-color:#6d4c41!important}.bg-brown-darken-1{color:#fff!important}.bg-brown-darken-2{background-color:#5d4037!important}.bg-brown-darken-2{color:#fff!important}.bg-brown-darken-3{background-color:#4e342e!important}.bg-brown-darken-3{color:#fff!important}.bg-brown-darken-4{background-color:#3e2723!important}.bg-brown-darken-4{color:#fff!important}.bg-blue-grey{background-color:#607d8b!important}.bg-blue-grey{color:#fff!important}.bg-blue-grey-lighten-5{background-color:#eceff1!important}.bg-blue-grey-lighten-5{color:#000!important}.bg-blue-grey-lighten-4{background-color:#cfd8dc!important}.bg-blue-grey-lighten-4{color:#000!important}.bg-blue-grey-lighten-3{background-color:#b0bec5!important}.bg-blue-grey-lighten-3{color:#000!important}.bg-blue-grey-lighten-2{background-color:#90a4ae!important}.bg-blue-grey-lighten-2{color:#fff!important}.bg-blue-grey-lighten-1{background-color:#78909c!important}.bg-blue-grey-lighten-1{color:#fff!important}.bg-blue-grey-darken-1{background-color:#546e7a!important}.bg-blue-grey-darken-1{color:#fff!important}.bg-blue-grey-darken-2{background-color:#455a64!important}.bg-blue-grey-darken-2{color:#fff!important}.bg-blue-grey-darken-3{background-color:#37474f!important}.bg-blue-grey-darken-3{color:#fff!important}.bg-blue-grey-darken-4{background-color:#263238!important}.bg-blue-grey-darken-4{color:#fff!important}.bg-grey{background-color:#9e9e9e!important}.bg-grey{color:#fff!important}.bg-grey-lighten-5{background-color:#fafafa!important}.bg-grey-lighten-5{color:#000!important}.bg-grey-lighten-4{background-color:#f5f5f5!important}.bg-grey-lighten-4{color:#000!important}.bg-grey-lighten-3{background-color:#eee!important}.bg-grey-lighten-3{color:#000!important}.bg-grey-lighten-2{background-color:#e0e0e0!important}.bg-grey-lighten-2{color:#000!important}.bg-grey-lighten-1{background-color:#bdbdbd!important}.bg-grey-lighten-1{color:#000!important}.bg-grey-darken-1{background-color:#757575!important}.bg-grey-darken-1{color:#fff!important}.bg-grey-darken-2{background-color:#616161!important}.bg-grey-darken-2{color:#fff!important}.bg-grey-darken-3{background-color:#424242!important}.bg-grey-darken-3{color:#fff!important}.bg-grey-darken-4{background-color:#212121!important}.bg-grey-darken-4{color:#fff!important}.bg-shades-black{background-color:#000!important}.bg-shades-black{color:#fff!important}.bg-shades-white{background-color:#fff!important}.bg-shades-white{color:#000!important}.bg-shades-transparent{background-color:transparent!important}.bg-shades-transparent{color:currentColor!important}.text-black{color:#000!important}.text-white{color:#fff!important}.text-transparent{color:transparent!important}.text-red{color:#f44336!important}.text-red-lighten-5{color:#ffebee!important}.text-red-lighten-4{color:#ffcdd2!important}.text-red-lighten-3{color:#ef9a9a!important}.text-red-lighten-2{color:#e57373!important}.text-red-lighten-1{color:#ef5350!important}.text-red-darken-1{color:#e53935!important}.text-red-darken-2{color:#d32f2f!important}.text-red-darken-3{color:#c62828!important}.text-red-darken-4{color:#b71c1c!important}.text-red-accent-1{color:#ff8a80!important}.text-red-accent-2{color:#ff5252!important}.text-red-accent-3{color:#ff1744!important}.text-red-accent-4{color:#d50000!important}.text-pink{color:#e91e63!important}.text-pink-lighten-5{color:#fce4ec!important}.text-pink-lighten-4{color:#f8bbd0!important}.text-pink-lighten-3{color:#f48fb1!important}.text-pink-lighten-2{color:#f06292!important}.text-pink-lighten-1{color:#ec407a!important}.text-pink-darken-1{color:#d81b60!important}.text-pink-darken-2{color:#c2185b!important}.text-pink-darken-3{color:#ad1457!important}.text-pink-darken-4{color:#880e4f!important}.text-pink-accent-1{color:#ff80ab!important}.text-pink-accent-2{color:#ff4081!important}.text-pink-accent-3{color:#f50057!important}.text-pink-accent-4{color:#c51162!important}.text-purple{color:#9c27b0!important}.text-purple-lighten-5{color:#f3e5f5!important}.text-purple-lighten-4{color:#e1bee7!important}.text-purple-lighten-3{color:#ce93d8!important}.text-purple-lighten-2{color:#ba68c8!important}.text-purple-lighten-1{color:#ab47bc!important}.text-purple-darken-1{color:#8e24aa!important}.text-purple-darken-2{color:#7b1fa2!important}.text-purple-darken-3{color:#6a1b9a!important}.text-purple-darken-4{color:#4a148c!important}.text-purple-accent-1{color:#ea80fc!important}.text-purple-accent-2{color:#e040fb!important}.text-purple-accent-3{color:#d500f9!important}.text-purple-accent-4{color:#a0f!important}.text-deep-purple{color:#673ab7!important}.text-deep-purple-lighten-5{color:#ede7f6!important}.text-deep-purple-lighten-4{color:#d1c4e9!important}.text-deep-purple-lighten-3{color:#b39ddb!important}.text-deep-purple-lighten-2{color:#9575cd!important}.text-deep-purple-lighten-1{color:#7e57c2!important}.text-deep-purple-darken-1{color:#5e35b1!important}.text-deep-purple-darken-2{color:#512da8!important}.text-deep-purple-darken-3{color:#4527a0!important}.text-deep-purple-darken-4{color:#311b92!important}.text-deep-purple-accent-1{color:#b388ff!important}.text-deep-purple-accent-2{color:#7c4dff!important}.text-deep-purple-accent-3{color:#651fff!important}.text-deep-purple-accent-4{color:#6200ea!important}.text-indigo{color:#3f51b5!important}.text-indigo-lighten-5{color:#e8eaf6!important}.text-indigo-lighten-4{color:#c5cae9!important}.text-indigo-lighten-3{color:#9fa8da!important}.text-indigo-lighten-2{color:#7986cb!important}.text-indigo-lighten-1{color:#5c6bc0!important}.text-indigo-darken-1{color:#3949ab!important}.text-indigo-darken-2{color:#303f9f!important}.text-indigo-darken-3{color:#283593!important}.text-indigo-darken-4{color:#1a237e!important}.text-indigo-accent-1{color:#8c9eff!important}.text-indigo-accent-2{color:#536dfe!important}.text-indigo-accent-3{color:#3d5afe!important}.text-indigo-accent-4{color:#304ffe!important}.text-blue{color:#2196f3!important}.text-blue-lighten-5{color:#e3f2fd!important}.text-blue-lighten-4{color:#bbdefb!important}.text-blue-lighten-3{color:#90caf9!important}.text-blue-lighten-2{color:#64b5f6!important}.text-blue-lighten-1{color:#42a5f5!important}.text-blue-darken-1{color:#1e88e5!important}.text-blue-darken-2{color:#1976d2!important}.text-blue-darken-3{color:#1565c0!important}.text-blue-darken-4{color:#0d47a1!important}.text-blue-accent-1{color:#82b1ff!important}.text-blue-accent-2{color:#448aff!important}.text-blue-accent-3{color:#2979ff!important}.text-blue-accent-4{color:#2962ff!important}.text-light-blue{color:#03a9f4!important}.text-light-blue-lighten-5{color:#e1f5fe!important}.text-light-blue-lighten-4{color:#b3e5fc!important}.text-light-blue-lighten-3{color:#81d4fa!important}.text-light-blue-lighten-2{color:#4fc3f7!important}.text-light-blue-lighten-1{color:#29b6f6!important}.text-light-blue-darken-1{color:#039be5!important}.text-light-blue-darken-2{color:#0288d1!important}.text-light-blue-darken-3{color:#0277bd!important}.text-light-blue-darken-4{color:#01579b!important}.text-light-blue-accent-1{color:#80d8ff!important}.text-light-blue-accent-2{color:#40c4ff!important}.text-light-blue-accent-3{color:#00b0ff!important}.text-light-blue-accent-4{color:#0091ea!important}.text-cyan{color:#00bcd4!important}.text-cyan-lighten-5{color:#e0f7fa!important}.text-cyan-lighten-4{color:#b2ebf2!important}.text-cyan-lighten-3{color:#80deea!important}.text-cyan-lighten-2{color:#4dd0e1!important}.text-cyan-lighten-1{color:#26c6da!important}.text-cyan-darken-1{color:#00acc1!important}.text-cyan-darken-2{color:#0097a7!important}.text-cyan-darken-3{color:#00838f!important}.text-cyan-darken-4{color:#006064!important}.text-cyan-accent-1{color:#84ffff!important}.text-cyan-accent-2{color:#18ffff!important}.text-cyan-accent-3{color:#00e5ff!important}.text-cyan-accent-4{color:#00b8d4!important}.text-teal{color:#009688!important}.text-teal-lighten-5{color:#e0f2f1!important}.text-teal-lighten-4{color:#b2dfdb!important}.text-teal-lighten-3{color:#80cbc4!important}.text-teal-lighten-2{color:#4db6ac!important}.text-teal-lighten-1{color:#26a69a!important}.text-teal-darken-1{color:#00897b!important}.text-teal-darken-2{color:#00796b!important}.text-teal-darken-3{color:#00695c!important}.text-teal-darken-4{color:#004d40!important}.text-teal-accent-1{color:#a7ffeb!important}.text-teal-accent-2{color:#64ffda!important}.text-teal-accent-3{color:#1de9b6!important}.text-teal-accent-4{color:#00bfa5!important}.text-green{color:#4caf50!important}.text-green-lighten-5{color:#e8f5e9!important}.text-green-lighten-4{color:#c8e6c9!important}.text-green-lighten-3{color:#a5d6a7!important}.text-green-lighten-2{color:#81c784!important}.text-green-lighten-1{color:#66bb6a!important}.text-green-darken-1{color:#43a047!important}.text-green-darken-2{color:#388e3c!important}.text-green-darken-3{color:#2e7d32!important}.text-green-darken-4{color:#1b5e20!important}.text-green-accent-1{color:#b9f6ca!important}.text-green-accent-2{color:#69f0ae!important}.text-green-accent-3{color:#00e676!important}.text-green-accent-4{color:#00c853!important}.text-light-green{color:#8bc34a!important}.text-light-green-lighten-5{color:#f1f8e9!important}.text-light-green-lighten-4{color:#dcedc8!important}.text-light-green-lighten-3{color:#c5e1a5!important}.text-light-green-lighten-2{color:#aed581!important}.text-light-green-lighten-1{color:#9ccc65!important}.text-light-green-darken-1{color:#7cb342!important}.text-light-green-darken-2{color:#689f38!important}.text-light-green-darken-3{color:#558b2f!important}.text-light-green-darken-4{color:#33691e!important}.text-light-green-accent-1{color:#ccff90!important}.text-light-green-accent-2{color:#b2ff59!important}.text-light-green-accent-3{color:#76ff03!important}.text-light-green-accent-4{color:#64dd17!important}.text-lime{color:#cddc39!important}.text-lime-lighten-5{color:#f9fbe7!important}.text-lime-lighten-4{color:#f0f4c3!important}.text-lime-lighten-3{color:#e6ee9c!important}.text-lime-lighten-2{color:#dce775!important}.text-lime-lighten-1{color:#d4e157!important}.text-lime-darken-1{color:#c0ca33!important}.text-lime-darken-2{color:#afb42b!important}.text-lime-darken-3{color:#9e9d24!important}.text-lime-darken-4{color:#827717!important}.text-lime-accent-1{color:#f4ff81!important}.text-lime-accent-2{color:#eeff41!important}.text-lime-accent-3{color:#c6ff00!important}.text-lime-accent-4{color:#aeea00!important}.text-yellow{color:#ffeb3b!important}.text-yellow-lighten-5{color:#fffde7!important}.text-yellow-lighten-4{color:#fff9c4!important}.text-yellow-lighten-3{color:#fff59d!important}.text-yellow-lighten-2{color:#fff176!important}.text-yellow-lighten-1{color:#ffee58!important}.text-yellow-darken-1{color:#fdd835!important}.text-yellow-darken-2{color:#fbc02d!important}.text-yellow-darken-3{color:#f9a825!important}.text-yellow-darken-4{color:#f57f17!important}.text-yellow-accent-1{color:#ffff8d!important}.text-yellow-accent-2{color:#ff0!important}.text-yellow-accent-3{color:#ffea00!important}.text-yellow-accent-4{color:#ffd600!important}.text-amber{color:#ffc107!important}.text-amber-lighten-5{color:#fff8e1!important}.text-amber-lighten-4{color:#ffecb3!important}.text-amber-lighten-3{color:#ffe082!important}.text-amber-lighten-2{color:#ffd54f!important}.text-amber-lighten-1{color:#ffca28!important}.text-amber-darken-1{color:#ffb300!important}.text-amber-darken-2{color:#ffa000!important}.text-amber-darken-3{color:#ff8f00!important}.text-amber-darken-4{color:#ff6f00!important}.text-amber-accent-1{color:#ffe57f!important}.text-amber-accent-2{color:#ffd740!important}.text-amber-accent-3{color:#ffc400!important}.text-amber-accent-4{color:#ffab00!important}.text-orange{color:#ff9800!important}.text-orange-lighten-5{color:#fff3e0!important}.text-orange-lighten-4{color:#ffe0b2!important}.text-orange-lighten-3{color:#ffcc80!important}.text-orange-lighten-2{color:#ffb74d!important}.text-orange-lighten-1{color:#ffa726!important}.text-orange-darken-1{color:#fb8c00!important}.text-orange-darken-2{color:#f57c00!important}.text-orange-darken-3{color:#ef6c00!important}.text-orange-darken-4{color:#e65100!important}.text-orange-accent-1{color:#ffd180!important}.text-orange-accent-2{color:#ffab40!important}.text-orange-accent-3{color:#ff9100!important}.text-orange-accent-4{color:#ff6d00!important}.text-deep-orange{color:#ff5722!important}.text-deep-orange-lighten-5{color:#fbe9e7!important}.text-deep-orange-lighten-4{color:#ffccbc!important}.text-deep-orange-lighten-3{color:#ffab91!important}.text-deep-orange-lighten-2{color:#ff8a65!important}.text-deep-orange-lighten-1{color:#ff7043!important}.text-deep-orange-darken-1{color:#f4511e!important}.text-deep-orange-darken-2{color:#e64a19!important}.text-deep-orange-darken-3{color:#d84315!important}.text-deep-orange-darken-4{color:#bf360c!important}.text-deep-orange-accent-1{color:#ff9e80!important}.text-deep-orange-accent-2{color:#ff6e40!important}.text-deep-orange-accent-3{color:#ff3d00!important}.text-deep-orange-accent-4{color:#dd2c00!important}.text-brown{color:#795548!important}.text-brown-lighten-5{color:#efebe9!important}.text-brown-lighten-4{color:#d7ccc8!important}.text-brown-lighten-3{color:#bcaaa4!important}.text-brown-lighten-2{color:#a1887f!important}.text-brown-lighten-1{color:#8d6e63!important}.text-brown-darken-1{color:#6d4c41!important}.text-brown-darken-2{color:#5d4037!important}.text-brown-darken-3{color:#4e342e!important}.text-brown-darken-4{color:#3e2723!important}.text-blue-grey{color:#607d8b!important}.text-blue-grey-lighten-5{color:#eceff1!important}.text-blue-grey-lighten-4{color:#cfd8dc!important}.text-blue-grey-lighten-3{color:#b0bec5!important}.text-blue-grey-lighten-2{color:#90a4ae!important}.text-blue-grey-lighten-1{color:#78909c!important}.text-blue-grey-darken-1{color:#546e7a!important}.text-blue-grey-darken-2{color:#455a64!important}.text-blue-grey-darken-3{color:#37474f!important}.text-blue-grey-darken-4{color:#263238!important}.text-grey{color:#9e9e9e!important}.text-grey-lighten-5{color:#fafafa!important}.text-grey-lighten-4{color:#f5f5f5!important}.text-grey-lighten-3{color:#eee!important}.text-grey-lighten-2{color:#e0e0e0!important}.text-grey-lighten-1{color:#bdbdbd!important}.text-grey-darken-1{color:#757575!important}.text-grey-darken-2{color:#616161!important}.text-grey-darken-3{color:#424242!important}.text-grey-darken-4{color:#212121!important}.text-shades-black{color:#000!important}.text-shades-white{color:#fff!important}.text-shades-transparent{color:transparent!important}/*!
+@charset "UTF-8";.v-application{display:flex;background:rgb(var(--v-theme-background));color:rgba(var(--v-theme-on-background),var(--v-high-emphasis-opacity))}.v-application__wrap{backface-visibility:hidden;display:flex;flex-direction:column;flex:1 1 auto;max-width:100%;min-height:100vh;min-height:100dvh;position:relative}.v-app-bar{display:flex}.v-app-bar.v-toolbar{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-app-bar.v-toolbar:not(.v-toolbar--flat){box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-app-bar:not(.v-toolbar--absolute){padding-inline-end:var(--v-scrollbar-offset)}.v-toolbar{align-items:flex-start;display:flex;flex:none;flex-direction:column;justify-content:space-between;max-width:100%;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);transition-property:height,width,transform,max-width,left,right,top,bottom,box-shadow;width:100%}.v-toolbar{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-toolbar--border{border-width:thin;box-shadow:none}.v-toolbar{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-toolbar{border-radius:0}.v-toolbar{background:rgb(var(--v-theme-surface-light));color:rgba(var(--v-theme-on-surface-light),var(--v-high-emphasis-opacity))}.v-toolbar--absolute{position:absolute}.v-toolbar--collapse{max-width:112px;overflow:hidden;border-end-end-radius:24px}.v-toolbar--collapse .v-toolbar-title{display:none}.v-toolbar--flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-toolbar--floating{display:inline-flex}.v-toolbar--rounded{border-radius:4px}.v-toolbar__content,.v-toolbar__extension{align-items:center;display:flex;flex:0 0 auto;position:relative;transition:inherit;width:100%}.v-toolbar__content{overflow:hidden}.v-toolbar__content>.v-btn:first-child{margin-inline-start:4px}.v-toolbar__content>.v-btn:last-child{margin-inline-end:4px}.v-toolbar__content>.v-toolbar-title{margin-inline-start:20px}.v-toolbar--density-prominent .v-toolbar__content{align-items:flex-start}.v-toolbar__image{display:flex;opacity:var(--v-toolbar-image-opacity, 1);transition-property:opacity}.v-toolbar__image{position:absolute;top:0;left:0;width:100%;height:100%}.v-toolbar__prepend,.v-toolbar__append{align-items:center;align-self:stretch;display:flex}.v-toolbar__prepend{margin-inline:4px auto}.v-toolbar__append{margin-inline:auto 4px}.v-toolbar-title{flex:1 1;font-size:1.25rem;min-width:0}.v-toolbar-title{font-size:1.25rem;font-weight:400;letter-spacing:0;line-height:1.75rem;text-transform:none}.v-toolbar--density-prominent .v-toolbar-title{align-self:flex-end;padding-bottom:6px}.v-toolbar--density-prominent .v-toolbar-title{font-size:1.5rem;font-weight:400;letter-spacing:0;line-height:2.25rem;text-transform:none}.v-toolbar-title__placeholder{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-toolbar-items{display:flex;height:inherit;align-self:stretch}.v-toolbar-items>.v-btn{border-radius:0}.v-img{--v-theme-overlay-multiplier: 3;z-index:0}.v-img--booting .v-responsive__sizer{transition:none}.v-img--rounded{border-radius:4px}.v-img__img,.v-img__picture,.v-img__gradient,.v-img__placeholder,.v-img__error{z-index:-1}.v-img__img,.v-img__picture,.v-img__gradient,.v-img__placeholder,.v-img__error{position:absolute;top:0;left:0;width:100%;height:100%}.v-img__img--preload{filter:blur(4px)}.v-img__img--contain{object-fit:contain}.v-img__img--cover{object-fit:cover}.v-img__gradient{background-repeat:no-repeat}.v-responsive{display:flex;flex:1 0 auto;max-height:100%;max-width:100%;overflow:hidden;position:relative}.v-responsive--inline{display:inline-flex;flex:0 0 auto}.v-responsive__content{flex:1 0 0px;max-width:100%}.v-responsive__sizer~.v-responsive__content{margin-inline-start:-100%}.v-responsive__sizer{flex:1 0 0px;transition:padding-bottom .2s cubic-bezier(.4,0,.2,1);pointer-events:none}.v-btn{align-items:center;border-radius:4px;display:inline-grid;grid-template-areas:"prepend content append";grid-template-columns:max-content auto max-content;font-weight:500;justify-content:center;letter-spacing:.0892857143em;line-height:normal;max-width:100%;outline:none;position:relative;text-decoration:none;text-indent:.0892857143em;text-transform:uppercase;transition-property:box-shadow,transform,opacity,background;transition-duration:.28s;transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-user-select:none;user-select:none;vertical-align:middle;flex-shrink:0}.v-btn--size-x-small{--v-btn-size: .625rem;--v-btn-height: 20px;font-size:var(--v-btn-size);min-width:36px;padding:0 8px}.v-btn--size-small{--v-btn-size: .75rem;--v-btn-height: 28px;font-size:var(--v-btn-size);min-width:50px;padding:0 12px}.v-btn--size-default{--v-btn-size: .875rem;--v-btn-height: 36px;font-size:var(--v-btn-size);min-width:64px;padding:0 16px}.v-btn--size-large{--v-btn-size: 1rem;--v-btn-height: 44px;font-size:var(--v-btn-size);min-width:78px;padding:0 20px}.v-btn--size-x-large{--v-btn-size: 1.125rem;--v-btn-height: 52px;font-size:var(--v-btn-size);min-width:92px;padding:0 24px}.v-btn.v-btn--density-default{height:calc(var(--v-btn-height) + 0px)}.v-btn.v-btn--density-comfortable{height:calc(var(--v-btn-height) + -8px)}.v-btn.v-btn--density-compact{height:calc(var(--v-btn-height) + -12px)}.v-btn{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-btn--border{border-width:thin;box-shadow:none}.v-btn--absolute{position:absolute}.v-btn--fixed{position:fixed}.v-btn:hover>.v-btn__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-btn:focus-visible>.v-btn__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn:focus>.v-btn__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-btn--active>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]>.v-btn__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-btn--active:hover>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:hover>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-btn--active:focus-visible>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn--active:focus>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:focus>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-btn--variant-plain,.v-btn--variant-outlined,.v-btn--variant-text,.v-btn--variant-tonal{background:transparent;color:inherit}.v-btn--variant-plain{opacity:.62}.v-btn--variant-plain:focus,.v-btn--variant-plain:hover{opacity:1}.v-btn--variant-plain .v-btn__overlay{display:none}.v-btn--variant-elevated,.v-btn--variant-flat{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-btn--variant-elevated{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--variant-outlined{border:thin solid currentColor}.v-btn--variant-text .v-btn__overlay{background:currentColor}.v-btn--variant-tonal .v-btn__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-btn .v-btn__underlay{position:absolute}@supports selector(:focus-visible){.v-btn:after{pointer-events:none;border:2px solid currentColor;border-radius:inherit;opacity:0;transition:opacity .2s ease-in-out}.v-btn:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-btn:focus-visible:after{opacity:calc(.25 * var(--v-theme-overlay-multiplier))}}.v-btn--icon{border-radius:50%;min-width:0;padding:0}.v-btn--icon.v-btn--size-default{--v-btn-size: 1rem}.v-btn--icon.v-btn--density-default{width:calc(var(--v-btn-height) + 12px);height:calc(var(--v-btn-height) + 12px)}.v-btn--icon.v-btn--density-comfortable{width:calc(var(--v-btn-height) + 0px);height:calc(var(--v-btn-height) + 0px)}.v-btn--icon.v-btn--density-compact{width:calc(var(--v-btn-height) + -8px);height:calc(var(--v-btn-height) + -8px)}.v-btn--elevated:hover,.v-btn--elevated:focus{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--elevated:active{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--flat{box-shadow:none}.v-btn--block{display:flex;flex:1 0 auto;min-width:100%}.v-btn--disabled{pointer-events:none;opacity:.26}.v-btn--disabled:hover{opacity:.26}.v-btn--disabled.v-btn--variant-elevated,.v-btn--disabled.v-btn--variant-flat{box-shadow:none;opacity:1;color:rgba(var(--v-theme-on-surface),.26);background:rgb(var(--v-theme-surface))}.v-btn--disabled.v-btn--variant-elevated .v-btn__overlay,.v-btn--disabled.v-btn--variant-flat .v-btn__overlay{opacity:.4615384615}.v-btn--loading{pointer-events:none}.v-btn--loading .v-btn__content,.v-btn--loading .v-btn__prepend,.v-btn--loading .v-btn__append{opacity:0}.v-btn--stacked{grid-template-areas:"prepend" "content" "append";grid-template-columns:auto;grid-template-rows:max-content max-content max-content;justify-items:center;align-content:center}.v-btn--stacked .v-btn__content{flex-direction:column;line-height:1.25}.v-btn--stacked .v-btn__prepend,.v-btn--stacked .v-btn__append,.v-btn--stacked .v-btn__content>.v-icon--start,.v-btn--stacked .v-btn__content>.v-icon--end{margin-inline:0}.v-btn--stacked .v-btn__prepend,.v-btn--stacked .v-btn__content>.v-icon--start{margin-bottom:4px}.v-btn--stacked .v-btn__append,.v-btn--stacked .v-btn__content>.v-icon--end{margin-top:4px}.v-btn--stacked.v-btn--size-x-small{--v-btn-size: .625rem;--v-btn-height: 56px;font-size:var(--v-btn-size);min-width:56px;padding:0 12px}.v-btn--stacked.v-btn--size-small{--v-btn-size: .75rem;--v-btn-height: 64px;font-size:var(--v-btn-size);min-width:64px;padding:0 14px}.v-btn--stacked.v-btn--size-default{--v-btn-size: .875rem;--v-btn-height: 72px;font-size:var(--v-btn-size);min-width:72px;padding:0 16px}.v-btn--stacked.v-btn--size-large{--v-btn-size: 1rem;--v-btn-height: 80px;font-size:var(--v-btn-size);min-width:80px;padding:0 18px}.v-btn--stacked.v-btn--size-x-large{--v-btn-size: 1.125rem;--v-btn-height: 88px;font-size:var(--v-btn-size);min-width:88px;padding:0 20px}.v-btn--stacked.v-btn--density-default{height:calc(var(--v-btn-height) + 0px)}.v-btn--stacked.v-btn--density-comfortable{height:calc(var(--v-btn-height) + -16px)}.v-btn--stacked.v-btn--density-compact{height:calc(var(--v-btn-height) + -24px)}.v-btn--slim{padding:0 8px}.v-btn--readonly{pointer-events:none}.v-btn--rounded{border-radius:24px}.v-btn--rounded.v-btn--icon{border-radius:4px}.v-btn .v-icon{--v-icon-size-multiplier: .8571428571}.v-btn--icon .v-icon{--v-icon-size-multiplier: 1}.v-btn--stacked .v-icon{--v-icon-size-multiplier: 1.1428571429}.v-btn--stacked.v-btn--block{min-width:100%}.v-btn__loader{align-items:center;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.v-btn__loader>.v-progress-circular{width:1.5em;height:1.5em}.v-btn__content,.v-btn__prepend,.v-btn__append{align-items:center;display:flex;transition:transform,opacity .2s cubic-bezier(.4,0,.2,1)}.v-btn__prepend{grid-area:prepend;margin-inline:calc(var(--v-btn-height) / -9) calc(var(--v-btn-height) / 4.5)}.v-btn--slim .v-btn__prepend{margin-inline-start:0}.v-btn__append{grid-area:append;margin-inline:calc(var(--v-btn-height) / 4.5) calc(var(--v-btn-height) / -9)}.v-btn--slim .v-btn__append{margin-inline-end:0}.v-btn__content{grid-area:content;justify-content:center;white-space:nowrap}.v-btn__content>.v-icon--start{margin-inline:calc(var(--v-btn-height) / -9) calc(var(--v-btn-height) / 4.5)}.v-btn__content>.v-icon--end{margin-inline:calc(var(--v-btn-height) / 4.5) calc(var(--v-btn-height) / -9)}.v-btn--stacked .v-btn__content{white-space:normal}.v-btn__overlay{background-color:currentColor;border-radius:inherit;opacity:0;transition:opacity .2s ease-in-out}.v-btn__overlay,.v-btn__underlay{pointer-events:none}.v-btn__overlay,.v-btn__underlay{position:absolute;top:0;left:0;width:100%;height:100%}.v-card-actions .v-btn~.v-btn:not(.v-btn-toggle .v-btn){margin-inline-start:.5rem}.v-pagination .v-btn{border-radius:4px}.v-pagination .v-btn--rounded{border-radius:50%}.v-btn__overlay{transition:none}.v-pagination__item--is-active .v-btn__overlay{opacity:var(--v-border-opacity)}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled)>.v-btn__overlay{opacity:calc(0 * var(--v-theme-overlay-multiplier))}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):hover>.v-btn__overlay{opacity:calc((0 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):focus-visible>.v-btn__overlay{opacity:calc((0 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):focus>.v-btn__overlay{opacity:calc((0 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-btn-group{display:inline-flex;flex-wrap:nowrap;max-width:100%;min-width:0;overflow:hidden;vertical-align:middle}.v-btn-group{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-btn-group--border{border-width:thin;box-shadow:none}.v-btn-group{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn-group{border-radius:4px}.v-btn-group{background:transparent;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-btn-group--density-default.v-btn-group{height:48px}.v-btn-group--density-comfortable.v-btn-group{height:40px}.v-btn-group--density-compact.v-btn-group{height:36px}.v-btn-group .v-btn{border-radius:0;border-color:inherit}.v-btn-group .v-btn:not(:last-child){border-inline-end:none}.v-btn-group .v-btn:not(:first-child){border-inline-start:none}.v-btn-group .v-btn:first-child{border-start-start-radius:inherit;border-end-start-radius:inherit}.v-btn-group .v-btn:last-child{border-start-end-radius:inherit;border-end-end-radius:inherit}.v-btn-group--divided .v-btn:not(:last-child){border-inline-end-width:thin;border-inline-end-style:solid;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))}.v-btn-group--tile{border-radius:0}.v-icon{--v-icon-size-multiplier: 1;align-items:center;display:inline-flex;font-feature-settings:"liga";height:1em;justify-content:center;letter-spacing:normal;line-height:1;position:relative;text-indent:0;text-align:center;-webkit-user-select:none;user-select:none;vertical-align:middle;width:1em;min-width:1em}.v-icon--clickable{cursor:pointer}.v-icon--disabled{pointer-events:none;opacity:.38}.v-icon--size-x-small{font-size:calc(var(--v-icon-size-multiplier) * 1em)}.v-icon--size-small{font-size:calc(var(--v-icon-size-multiplier) * 1.25em)}.v-icon--size-default{font-size:calc(var(--v-icon-size-multiplier) * 1.5em)}.v-icon--size-large{font-size:calc(var(--v-icon-size-multiplier) * 1.75em)}.v-icon--size-x-large{font-size:calc(var(--v-icon-size-multiplier) * 2em)}.v-icon__svg{fill:currentColor;width:100%;height:100%}.v-icon--start{margin-inline-end:8px}.v-icon--end{margin-inline-start:8px}.v-progress-circular{align-items:center;display:inline-flex;justify-content:center;position:relative;vertical-align:middle}.v-progress-circular>svg{width:100%;height:100%;margin:auto;position:absolute;top:0;bottom:0;left:0;right:0;z-index:0}.v-progress-circular__content{align-items:center;display:flex;justify-content:center}.v-progress-circular__underlay{color:rgba(var(--v-border-color),var(--v-border-opacity));stroke:currentColor;z-index:1}.v-progress-circular__overlay{stroke:currentColor;transition:all .2s ease-in-out,stroke-width 0s;z-index:2}.v-progress-circular--size-x-small{height:16px;width:16px}.v-progress-circular--size-small{height:24px;width:24px}.v-progress-circular--size-default{height:32px;width:32px}.v-progress-circular--size-large{height:48px;width:48px}.v-progress-circular--size-x-large{height:64px;width:64px}.v-progress-circular--indeterminate>svg{animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;transition:all .2s ease-in-out}.v-progress-circular--indeterminate .v-progress-circular__overlay{animation:progress-circular-dash 1.4s ease-in-out infinite,progress-circular-rotate 1.4s linear infinite;stroke-dasharray:25,200;stroke-dashoffset:0;stroke-linecap:round;transform-origin:center center;transform:rotate(-90deg)}.v-progress-circular--disable-shrink>svg{animation-duration:.7s}.v-progress-circular--disable-shrink .v-progress-circular__overlay{animation:none}.v-progress-circular--indeterminate:not(.v-progress-circular--visible)>svg,.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay{animation-play-state:paused!important}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-124px}}@keyframes progress-circular-rotate{to{transform:rotate(270deg)}}.v-progress-linear{background:transparent;overflow:hidden;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);width:100%}@media (forced-colors: active){.v-progress-linear{border:thin solid buttontext}}.v-progress-linear__background,.v-progress-linear__buffer{background:currentColor;bottom:0;left:0;opacity:var(--v-border-opacity);position:absolute;top:0;width:100%;transition-property:width,left,right;transition:inherit}@media (forced-colors: active){.v-progress-linear__buffer{background-color:highlight;opacity:.3}}.v-progress-linear__content{align-items:center;display:flex;height:100%;justify-content:center;left:0;pointer-events:none;position:absolute;top:0;width:100%}.v-progress-linear__determinate,.v-progress-linear__indeterminate{background:currentColor}@media (forced-colors: active){.v-progress-linear__determinate,.v-progress-linear__indeterminate{background-color:highlight}}.v-progress-linear__determinate{height:inherit;left:0;position:absolute;transition:inherit;transition-property:width,left,right}.v-progress-linear__indeterminate .long,.v-progress-linear__indeterminate .short{animation-play-state:paused;animation-duration:2.2s;animation-iteration-count:infinite;bottom:0;height:inherit;left:0;position:absolute;right:auto;top:0;width:auto}.v-progress-linear__indeterminate .long{animation-name:indeterminate-ltr}.v-progress-linear__indeterminate .short{animation-name:indeterminate-short-ltr}.v-progress-linear__stream{animation:stream .25s infinite linear;animation-play-state:paused;bottom:0;left:auto;opacity:.3;pointer-events:none;position:absolute;transition:inherit;transition-property:width,left,right}.v-progress-linear--reverse .v-progress-linear__background,.v-progress-linear--reverse .v-progress-linear__determinate,.v-progress-linear--reverse .v-progress-linear__content,.v-progress-linear--reverse .v-progress-linear__indeterminate .long,.v-progress-linear--reverse .v-progress-linear__indeterminate .short{left:auto;right:0}.v-progress-linear--reverse .v-progress-linear__indeterminate .long{animation-name:indeterminate-rtl}.v-progress-linear--reverse .v-progress-linear__indeterminate .short{animation-name:indeterminate-short-rtl}.v-progress-linear--reverse .v-progress-linear__stream{right:auto}.v-progress-linear--absolute,.v-progress-linear--fixed{left:0;z-index:1}.v-progress-linear--absolute{position:absolute}.v-progress-linear--fixed{position:fixed}.v-progress-linear--rounded{border-radius:9999px}.v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__indeterminate{border-radius:inherit}.v-progress-linear--striped .v-progress-linear__determinate{animation:progress-linear-stripes 1s infinite linear;background-image:linear-gradient(135deg,hsla(0,0%,100%,.25) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.25) 0,hsla(0,0%,100%,.25) 75%,transparent 0,transparent);background-repeat:repeat;background-size:var(--v-progress-linear-height)}.v-progress-linear--active .v-progress-linear__indeterminate .long,.v-progress-linear--active .v-progress-linear__indeterminate .short,.v-progress-linear--active .v-progress-linear__stream{animation-play-state:running}.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-progress-linear--rounded-bar .v-progress-linear__indeterminate,.v-progress-linear--rounded-bar .v-progress-linear__stream+.v-progress-linear__background{border-radius:9999px}.v-progress-linear--rounded-bar .v-progress-linear__determinate{border-start-start-radius:0;border-end-start-radius:0}@keyframes indeterminate-ltr{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@keyframes indeterminate-rtl{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@keyframes indeterminate-short-ltr{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes indeterminate-short-rtl{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}@keyframes stream{to{transform:translate(var(--v-progress-linear-stream-to))}}@keyframes progress-linear-stripes{0%{background-position-x:var(--v-progress-linear-height)}}.v-ripple__container{color:inherit;border-radius:inherit;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;z-index:0;pointer-events:none;contain:strict}.v-ripple__animation{color:inherit;position:absolute;top:0;left:0;border-radius:50%;background:currentColor;opacity:0;pointer-events:none;overflow:hidden;will-change:transform,opacity}.v-ripple__animation--enter{transition:none;opacity:0}.v-ripple__animation--in{transition:transform .25s cubic-bezier(0,0,.2,1),opacity .1s cubic-bezier(0,0,.2,1);opacity:calc(.25 * var(--v-theme-overlay-multiplier))}.v-ripple__animation--out{transition:opacity .3s cubic-bezier(0,0,.2,1);opacity:0}.v-alert{display:grid;flex:1 1;grid-template-areas:"prepend content append close" ". content . .";grid-template-columns:max-content auto max-content max-content;position:relative;padding:16px;overflow:hidden;--v-border-color: currentColor}.v-alert--absolute{position:absolute}.v-alert--fixed{position:fixed}.v-alert--sticky{position:sticky}.v-alert{border-radius:4px}.v-alert--variant-plain,.v-alert--variant-outlined,.v-alert--variant-text,.v-alert--variant-tonal{background:transparent;color:inherit}.v-alert--variant-plain{opacity:.62}.v-alert--variant-plain:focus,.v-alert--variant-plain:hover{opacity:1}.v-alert--variant-plain .v-alert__overlay{display:none}.v-alert--variant-elevated,.v-alert--variant-flat{background:rgb(var(--v-theme-surface-light));color:rgba(var(--v-theme-on-surface-light),var(--v-high-emphasis-opacity))}.v-alert--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-alert--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-alert--variant-outlined{border:thin solid currentColor}.v-alert--variant-text .v-alert__overlay{background:currentColor}.v-alert--variant-tonal .v-alert__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-alert .v-alert__underlay{position:absolute}.v-alert--prominent{grid-template-areas:"prepend content append close" "prepend content . ."}.v-alert.v-alert--border{--v-border-opacity: .38}.v-alert.v-alert--border.v-alert--border-start{padding-inline-start:24px}.v-alert.v-alert--border.v-alert--border-end{padding-inline-end:24px}.v-alert--variant-plain{transition:.2s opacity cubic-bezier(.4,0,.2,1)}.v-alert--density-default{padding-bottom:16px;padding-top:16px}.v-alert--density-default.v-alert--border-top{padding-top:24px}.v-alert--density-default.v-alert--border-bottom{padding-bottom:24px}.v-alert--density-comfortable{padding-bottom:12px;padding-top:12px}.v-alert--density-comfortable.v-alert--border-top{padding-top:20px}.v-alert--density-comfortable.v-alert--border-bottom{padding-bottom:20px}.v-alert--density-compact{padding-bottom:8px;padding-top:8px}.v-alert--density-compact.v-alert--border-top{padding-top:16px}.v-alert--density-compact.v-alert--border-bottom{padding-bottom:16px}.v-alert__border{border-radius:inherit;bottom:0;left:0;opacity:var(--v-border-opacity);position:absolute;pointer-events:none;right:0;top:0;width:100%}.v-alert__border{border-color:currentColor;border-style:solid;border-width:0}.v-alert__border--border{border-width:8px;box-shadow:none}.v-alert--border-start .v-alert__border{border-inline-start-width:8px}.v-alert--border-end .v-alert__border{border-inline-end-width:8px}.v-alert--border-top .v-alert__border{border-top-width:8px}.v-alert--border-bottom .v-alert__border{border-bottom-width:8px}.v-alert__close{flex:0 1 auto;grid-area:close}.v-alert__content{align-self:center;grid-area:content;overflow:hidden}.v-alert__append,.v-alert__close{align-self:flex-start;margin-inline-start:16px}.v-alert__append{align-self:flex-start;grid-area:append}.v-alert__append+.v-alert__close{margin-inline-start:16px}.v-alert__prepend{align-self:flex-start;display:flex;align-items:center;grid-area:prepend;margin-inline-end:16px}.v-alert--prominent .v-alert__prepend{align-self:center}.v-alert__underlay{grid-area:none;position:absolute}.v-alert--border-start .v-alert__underlay{border-top-left-radius:0;border-bottom-left-radius:0}.v-alert--border-end .v-alert__underlay{border-top-right-radius:0;border-bottom-right-radius:0}.v-alert--border-top .v-alert__underlay{border-top-left-radius:0;border-top-right-radius:0}.v-alert--border-bottom .v-alert__underlay{border-bottom-left-radius:0;border-bottom-right-radius:0}.v-alert-title{align-items:center;align-self:center;display:flex;font-size:1.25rem;font-weight:500;-webkit-hyphens:auto;hyphens:auto;letter-spacing:.0125em;line-height:1.75rem;overflow-wrap:normal;text-transform:none;word-break:normal;word-wrap:break-word}.v-autocomplete .v-field .v-text-field__prefix,.v-autocomplete .v-field .v-text-field__suffix,.v-autocomplete .v-field .v-field__input,.v-autocomplete .v-field.v-field{cursor:text}.v-autocomplete .v-field .v-field__input>input{flex:1 1}.v-autocomplete .v-field input{min-width:64px}.v-autocomplete .v-field:not(.v-field--focused) input{min-width:0}.v-autocomplete .v-field--dirty .v-autocomplete__selection{margin-inline-end:2px}.v-autocomplete .v-autocomplete__selection-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-autocomplete__content{overflow:hidden}.v-autocomplete__content{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-autocomplete__content{border-radius:4px}.v-autocomplete__mask{background:rgb(var(--v-theme-surface-light))}.v-autocomplete__selection{display:inline-flex;align-items:center;height:1.5rem;letter-spacing:inherit;line-height:inherit;max-width:calc(100% - 4px)}.v-autocomplete__selection:first-child{margin-inline-start:0}.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating{top:0}.v-autocomplete--selecting-index .v-autocomplete__selection{opacity:var(--v-medium-emphasis-opacity)}.v-autocomplete--selecting-index .v-autocomplete__selection--selected{opacity:1}.v-autocomplete--selecting-index .v-field__input>input{caret-color:transparent}.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input{flex:1 1;position:absolute;left:0;right:0;width:100%;padding-inline:inherit}.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input{transition:none}.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input{opacity:0}.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection{opacity:0}.v-autocomplete__menu-icon{margin-inline-start:4px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-autocomplete--active-menu .v-autocomplete__menu-icon{opacity:var(--v-high-emphasis-opacity);transform:rotate(180deg)}.v-avatar{flex:none;align-items:center;display:inline-flex;justify-content:center;line-height:normal;overflow:hidden;position:relative;text-align:center;transition:.2s cubic-bezier(.4,0,.2,1);transition-property:width,height;vertical-align:middle}.v-avatar.v-avatar--size-x-small{--v-avatar-height: 24px}.v-avatar.v-avatar--size-small{--v-avatar-height: 32px}.v-avatar.v-avatar--size-default{--v-avatar-height: 40px}.v-avatar.v-avatar--size-large{--v-avatar-height: 48px}.v-avatar.v-avatar--size-x-large{--v-avatar-height: 56px}.v-avatar.v-avatar--density-default{height:calc(var(--v-avatar-height) + 0px);width:calc(var(--v-avatar-height) + 0px)}.v-avatar.v-avatar--density-comfortable{height:calc(var(--v-avatar-height) + -4px);width:calc(var(--v-avatar-height) + -4px)}.v-avatar.v-avatar--density-compact{height:calc(var(--v-avatar-height) + -8px);width:calc(var(--v-avatar-height) + -8px)}.v-avatar{border-radius:50%}.v-avatar--variant-plain,.v-avatar--variant-outlined,.v-avatar--variant-text,.v-avatar--variant-tonal{background:transparent;color:inherit}.v-avatar--variant-plain{opacity:.62}.v-avatar--variant-plain:focus,.v-avatar--variant-plain:hover{opacity:1}.v-avatar--variant-plain .v-avatar__overlay{display:none}.v-avatar--variant-elevated,.v-avatar--variant-flat{background:var(--v-theme-surface);color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity))}.v-avatar--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-avatar--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-avatar--variant-outlined{border:thin solid currentColor}.v-avatar--variant-text .v-avatar__overlay{background:currentColor}.v-avatar--variant-tonal .v-avatar__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-avatar .v-avatar__underlay{position:absolute}.v-avatar--rounded{border-radius:4px}.v-avatar--start{margin-inline-end:8px}.v-avatar--end{margin-inline-start:8px}.v-avatar .v-img{height:100%;width:100%}.v-selection-control{align-items:center;contain:layout;display:flex;flex:1 0;grid-area:control;position:relative;-webkit-user-select:none;user-select:none}.v-selection-control .v-label{white-space:normal;word-break:break-word;height:100%}.v-selection-control--disabled{opacity:var(--v-disabled-opacity);pointer-events:none}.v-selection-control--error .v-label,.v-selection-control--disabled .v-label{opacity:1}.v-selection-control--error:not(.v-selection-control--disabled) .v-label{color:rgb(var(--v-theme-error))}.v-selection-control--inline{display:inline-flex;flex:0 0 auto;min-width:0;max-width:100%}.v-selection-control--inline .v-label{width:auto}.v-selection-control--density-default{--v-selection-control-size: 40px}.v-selection-control--density-comfortable{--v-selection-control-size: 36px}.v-selection-control--density-compact{--v-selection-control-size: 28px}.v-selection-control__wrapper{width:var(--v-selection-control-size);height:var(--v-selection-control-size);display:inline-flex;align-items:center;position:relative;justify-content:center;flex:none}.v-selection-control__input{width:var(--v-selection-control-size);height:var(--v-selection-control-size);align-items:center;display:flex;flex:none;justify-content:center;position:relative;border-radius:50%}.v-selection-control__input input{cursor:pointer;position:absolute;left:0;top:0;width:100%;height:100%;opacity:0}.v-selection-control__input:before{border-radius:100%;background-color:currentColor;opacity:0;pointer-events:none}.v-selection-control__input:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-selection-control__input:hover:before{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-selection-control__input>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-selection-control--disabled .v-selection-control__input>.v-icon,.v-selection-control--dirty .v-selection-control__input>.v-icon,.v-selection-control--error .v-selection-control__input>.v-icon{opacity:1}.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input>.v-icon{color:rgb(var(--v-theme-error))}.v-selection-control--focus-visible .v-selection-control__input:before{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}.v-label{align-items:center;color:inherit;display:inline-flex;font-size:1rem;letter-spacing:.009375em;min-width:0;opacity:var(--v-medium-emphasis-opacity);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-label--clickable{cursor:pointer}.v-selection-control-group{grid-area:control;display:flex;flex-direction:column}.v-selection-control-group--inline{flex-direction:row;flex-wrap:wrap}.v-input{display:grid;flex:1 1 auto;font-size:1rem;font-weight:400;line-height:1.5}.v-input--disabled{pointer-events:none}.v-input--density-default{--v-input-control-height: 56px;--v-input-padding-top: 16px}.v-input--density-comfortable{--v-input-control-height: 48px;--v-input-padding-top: 12px}.v-input--density-compact{--v-input-control-height: 40px;--v-input-padding-top: 8px}.v-input--vertical{grid-template-areas:"append" "control" "prepend";grid-template-rows:max-content auto max-content;grid-template-columns:min-content}.v-input--vertical .v-input__prepend{margin-block-start:16px}.v-input--vertical .v-input__append{margin-block-end:16px}.v-input--horizontal{grid-template-areas:"prepend control append" "a messages b";grid-template-columns:max-content minmax(0,1fr) max-content;grid-template-rows:auto auto}.v-input--horizontal .v-input__prepend{margin-inline-end:16px}.v-input--horizontal .v-input__append{margin-inline-start:16px}.v-input__details{align-items:flex-end;display:flex;font-size:.75rem;font-weight:400;grid-area:messages;letter-spacing:.0333333333em;line-height:normal;min-height:22px;padding-top:6px;overflow:hidden;justify-content:space-between}.v-input__details>.v-icon,.v-input__prepend>.v-icon,.v-input__append>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-input--disabled .v-input__details>.v-icon,.v-input--disabled .v-input__details .v-messages,.v-input--error .v-input__details>.v-icon,.v-input--error .v-input__details .v-messages,.v-input--disabled .v-input__prepend>.v-icon,.v-input--disabled .v-input__prepend .v-messages,.v-input--error .v-input__prepend>.v-icon,.v-input--error .v-input__prepend .v-messages,.v-input--disabled .v-input__append>.v-icon,.v-input--disabled .v-input__append .v-messages,.v-input--error .v-input__append>.v-icon,.v-input--error .v-input__append .v-messages{opacity:1}.v-input--disabled .v-input__details,.v-input--disabled .v-input__prepend,.v-input--disabled .v-input__append{opacity:var(--v-disabled-opacity)}.v-input--error:not(.v-input--disabled) .v-input__details>.v-icon,.v-input--error:not(.v-input--disabled) .v-input__details .v-messages,.v-input--error:not(.v-input--disabled) .v-input__prepend>.v-icon,.v-input--error:not(.v-input--disabled) .v-input__prepend .v-messages,.v-input--error:not(.v-input--disabled) .v-input__append>.v-icon,.v-input--error:not(.v-input--disabled) .v-input__append .v-messages{color:rgb(var(--v-theme-error))}.v-input__prepend,.v-input__append{display:flex;align-items:flex-start;padding-top:var(--v-input-padding-top)}.v-input--center-affix .v-input__prepend,.v-input--center-affix .v-input__append{align-items:center;padding-top:0}.v-input__prepend{grid-area:prepend}.v-input__append{grid-area:append}.v-input__control{display:flex;grid-area:control}.v-input--hide-spin-buttons input::-webkit-outer-spin-button,.v-input--hide-spin-buttons input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.v-input--hide-spin-buttons input[type=number]{-moz-appearance:textfield}.v-input--plain-underlined .v-input__prepend,.v-input--plain-underlined .v-input__append{align-items:flex-start}.v-input--density-default.v-input--plain-underlined .v-input__prepend,.v-input--density-default.v-input--plain-underlined .v-input__append{padding-top:calc(var(--v-input-padding-top) + 4px)}.v-input--density-comfortable.v-input--plain-underlined .v-input__prepend,.v-input--density-comfortable.v-input--plain-underlined .v-input__append{padding-top:calc(var(--v-input-padding-top) + 2px)}.v-input--density-compact.v-input--plain-underlined .v-input__prepend,.v-input--density-compact.v-input--plain-underlined .v-input__append{padding-top:calc(var(--v-input-padding-top) + 0px)}.v-messages{flex:1 1 auto;font-size:12px;min-height:14px;min-width:1px;opacity:var(--v-medium-emphasis-opacity);position:relative}.v-messages__message{line-height:12px;word-break:break-word;overflow-wrap:break-word;word-wrap:break-word;-webkit-hyphens:auto;hyphens:auto;transition-duration:.15s}.v-chip{align-items:center;display:inline-flex;font-weight:400;max-width:100%;min-width:0;overflow:hidden;position:relative;text-decoration:none;white-space:nowrap;vertical-align:middle}.v-chip .v-icon{--v-icon-size-multiplier: .8571428571}.v-chip.v-chip--size-x-small{--v-chip-size: .625rem;--v-chip-height: 20px;font-size:.625rem;padding:0 8px}.v-chip.v-chip--size-x-small .v-avatar{--v-avatar-height: 14px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar{--v-avatar-height: 20px}.v-chip.v-chip--size-x-small .v-avatar--start{margin-inline-start:-5.6px;margin-inline-end:4px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--start{margin-inline-start:-8px}.v-chip.v-chip--size-x-small .v-avatar--end{margin-inline-start:4px;margin-inline-end:-5.6px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--end{margin-inline-end:-8px}.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--end+.v-chip__close{margin-inline-start:12px}.v-chip.v-chip--size-x-small .v-icon--start,.v-chip.v-chip--size-x-small .v-chip__filter{margin-inline-start:-4px;margin-inline-end:4px}.v-chip.v-chip--size-x-small .v-icon--end,.v-chip.v-chip--size-x-small .v-chip__close{margin-inline-start:4px;margin-inline-end:-4px}.v-chip.v-chip--size-x-small .v-icon--end+.v-chip__close,.v-chip.v-chip--size-x-small .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-x-small .v-chip__append+.v-chip__close{margin-inline-start:8px}.v-chip.v-chip--size-small{--v-chip-size: .75rem;--v-chip-height: 26px;font-size:.75rem;padding:0 10px}.v-chip.v-chip--size-small .v-avatar{--v-avatar-height: 20px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar{--v-avatar-height: 26px}.v-chip.v-chip--size-small .v-avatar--start{margin-inline-start:-7px;margin-inline-end:5px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar--start{margin-inline-start:-10px}.v-chip.v-chip--size-small .v-avatar--end{margin-inline-start:5px;margin-inline-end:-7px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar--end{margin-inline-end:-10px}.v-chip--pill.v-chip.v-chip--size-small .v-avatar--end+.v-chip__close{margin-inline-start:15px}.v-chip.v-chip--size-small .v-icon--start,.v-chip.v-chip--size-small .v-chip__filter{margin-inline-start:-5px;margin-inline-end:5px}.v-chip.v-chip--size-small .v-icon--end,.v-chip.v-chip--size-small .v-chip__close{margin-inline-start:5px;margin-inline-end:-5px}.v-chip.v-chip--size-small .v-icon--end+.v-chip__close,.v-chip.v-chip--size-small .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-small .v-chip__append+.v-chip__close{margin-inline-start:10px}.v-chip.v-chip--size-default{--v-chip-size: .875rem;--v-chip-height: 32px;font-size:.875rem;padding:0 12px}.v-chip.v-chip--size-default .v-avatar{--v-avatar-height: 26px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar{--v-avatar-height: 32px}.v-chip.v-chip--size-default .v-avatar--start{margin-inline-start:-8.4px;margin-inline-end:6px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar--start{margin-inline-start:-12px}.v-chip.v-chip--size-default .v-avatar--end{margin-inline-start:6px;margin-inline-end:-8.4px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar--end{margin-inline-end:-12px}.v-chip--pill.v-chip.v-chip--size-default .v-avatar--end+.v-chip__close{margin-inline-start:18px}.v-chip.v-chip--size-default .v-icon--start,.v-chip.v-chip--size-default .v-chip__filter{margin-inline-start:-6px;margin-inline-end:6px}.v-chip.v-chip--size-default .v-icon--end,.v-chip.v-chip--size-default .v-chip__close{margin-inline-start:6px;margin-inline-end:-6px}.v-chip.v-chip--size-default .v-icon--end+.v-chip__close,.v-chip.v-chip--size-default .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-default .v-chip__append+.v-chip__close{margin-inline-start:12px}.v-chip.v-chip--size-large{--v-chip-size: 1rem;--v-chip-height: 38px;font-size:1rem;padding:0 14px}.v-chip.v-chip--size-large .v-avatar{--v-avatar-height: 32px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar{--v-avatar-height: 38px}.v-chip.v-chip--size-large .v-avatar--start{margin-inline-start:-9.8px;margin-inline-end:7px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar--start{margin-inline-start:-14px}.v-chip.v-chip--size-large .v-avatar--end{margin-inline-start:7px;margin-inline-end:-9.8px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar--end{margin-inline-end:-14px}.v-chip--pill.v-chip.v-chip--size-large .v-avatar--end+.v-chip__close{margin-inline-start:21px}.v-chip.v-chip--size-large .v-icon--start,.v-chip.v-chip--size-large .v-chip__filter{margin-inline-start:-7px;margin-inline-end:7px}.v-chip.v-chip--size-large .v-icon--end,.v-chip.v-chip--size-large .v-chip__close{margin-inline-start:7px;margin-inline-end:-7px}.v-chip.v-chip--size-large .v-icon--end+.v-chip__close,.v-chip.v-chip--size-large .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-large .v-chip__append+.v-chip__close{margin-inline-start:14px}.v-chip.v-chip--size-x-large{--v-chip-size: 1.125rem;--v-chip-height: 44px;font-size:1.125rem;padding:0 17px}.v-chip.v-chip--size-x-large .v-avatar{--v-avatar-height: 38px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar{--v-avatar-height: 44px}.v-chip.v-chip--size-x-large .v-avatar--start{margin-inline-start:-11.9px;margin-inline-end:8.5px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--start{margin-inline-start:-17px}.v-chip.v-chip--size-x-large .v-avatar--end{margin-inline-start:8.5px;margin-inline-end:-11.9px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--end{margin-inline-end:-17px}.v-chip--pill.v-chip.v-chip--size-x-large .v-avatar--end+.v-chip__close{margin-inline-start:25.5px}.v-chip.v-chip--size-x-large .v-icon--start,.v-chip.v-chip--size-x-large .v-chip__filter{margin-inline-start:-8.5px;margin-inline-end:8.5px}.v-chip.v-chip--size-x-large .v-icon--end,.v-chip.v-chip--size-x-large .v-chip__close{margin-inline-start:8.5px;margin-inline-end:-8.5px}.v-chip.v-chip--size-x-large .v-icon--end+.v-chip__close,.v-chip.v-chip--size-x-large .v-avatar--end+.v-chip__close,.v-chip.v-chip--size-x-large .v-chip__append+.v-chip__close{margin-inline-start:17px}.v-chip.v-chip--density-default{height:calc(var(--v-chip-height) + 0px)}.v-chip.v-chip--density-comfortable{height:calc(var(--v-chip-height) + -4px)}.v-chip.v-chip--density-compact{height:calc(var(--v-chip-height) + -8px)}.v-chip{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-chip:hover>.v-chip__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-chip:focus-visible>.v-chip__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-chip:focus>.v-chip__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-chip--active>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]>.v-chip__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-chip--active:hover>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]:hover>.v-chip__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-chip--active:focus-visible>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-chip__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-chip--active:focus>.v-chip__overlay,.v-chip[aria-haspopup=menu][aria-expanded=true]:focus>.v-chip__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-chip{border-radius:9999px}.v-chip--variant-plain,.v-chip--variant-outlined,.v-chip--variant-text,.v-chip--variant-tonal{background:transparent;color:inherit}.v-chip--variant-plain{opacity:.26}.v-chip--variant-plain:focus,.v-chip--variant-plain:hover{opacity:1}.v-chip--variant-plain .v-chip__overlay{display:none}.v-chip--variant-elevated,.v-chip--variant-flat{background:rgb(var(--v-theme-surface-variant));color:rgb(var(--v-theme-on-surface-variant))}.v-chip--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-chip--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-chip--variant-outlined{border:thin solid currentColor}.v-chip--variant-text .v-chip__overlay{background:currentColor}.v-chip--variant-tonal .v-chip__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-chip .v-chip__underlay{position:absolute}.v-chip--border{border-width:thin}.v-chip--link{cursor:pointer}.v-chip--link,.v-chip--filter{-webkit-user-select:none;user-select:none}.v-chip__content{align-items:center;display:inline-flex}.v-autocomplete__selection .v-chip__content,.v-combobox__selection .v-chip__content,.v-select__selection .v-chip__content{overflow:hidden}.v-chip__filter,.v-chip__prepend,.v-chip__append,.v-chip__close{align-items:center;display:inline-flex}.v-chip__close{cursor:pointer;flex:0 1 auto;font-size:18px;max-height:18px;max-width:18px;-webkit-user-select:none;user-select:none}.v-chip__close .v-icon{font-size:inherit}.v-chip__filter{transition:.15s cubic-bezier(.4,0,.2,1)}.v-chip__overlay{background-color:currentColor;border-radius:inherit;pointer-events:none;opacity:0;transition:opacity .2s ease-in-out}.v-chip__overlay{position:absolute;top:0;left:0;width:100%;height:100%}.v-chip--disabled{opacity:.3;pointer-events:none;-webkit-user-select:none;user-select:none}.v-chip--label{border-radius:4px}.v-chip-group{display:flex;max-width:100%;min-width:0;overflow-x:auto;padding:4px 0}.v-chip-group .v-chip{margin:4px 8px 4px 0}.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay{opacity:var(--v-activated-opacity)}.v-chip-group--column .v-slide-group__content{white-space:normal;flex-wrap:wrap;max-width:100%}.v-slide-group{display:flex;overflow:hidden}.v-slide-group__next,.v-slide-group__prev{align-items:center;display:flex;flex:0 1 52px;justify-content:center;min-width:52px;cursor:pointer}.v-slide-group__next--disabled,.v-slide-group__prev--disabled{pointer-events:none;opacity:var(--v-disabled-opacity)}.v-slide-group__content{display:flex;flex:1 0 auto;position:relative;transition:.2s all cubic-bezier(.4,0,.2,1);white-space:nowrap}.v-slide-group__content>*{white-space:initial}.v-slide-group__container{contain:content;display:flex;flex:1 1 auto;overflow-x:auto;overflow-y:hidden;scrollbar-width:none;scrollbar-color:rgba(0,0,0,0)}.v-slide-group__container::-webkit-scrollbar{display:none}.v-slide-group--vertical{max-height:inherit}.v-slide-group--vertical,.v-slide-group--vertical .v-slide-group__container,.v-slide-group--vertical .v-slide-group__content{flex-direction:column}.v-slide-group--vertical .v-slide-group__container{overflow-x:hidden;overflow-y:auto}.v-list{overflow:auto;padding:8px 0;position:relative;outline:none}.v-list{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-list--border{border-width:thin;box-shadow:none}.v-list{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-list{border-radius:0}.v-list{background:rgba(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-list--disabled{pointer-events:none;-webkit-user-select:none;user-select:none}.v-list--nav{padding-inline:8px}.v-list--rounded{border-radius:4px}.v-list--subheader{padding-top:0}.v-list-img{border-radius:inherit;display:flex;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.v-list-subheader{align-items:center;background:inherit;color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity));display:flex;font-size:.875rem;font-weight:400;line-height:1.375rem;padding-inline-end:16px;min-height:40px;transition:.2s min-height cubic-bezier(.4,0,.2,1)}.v-list-subheader__text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-list--density-default .v-list-subheader{min-height:40px;padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list--density-comfortable .v-list-subheader{min-height:36px;padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list--density-compact .v-list-subheader{min-height:32px;padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list-subheader--inset{--indent-padding: 56px}.v-list--nav .v-list-subheader{font-size:.75rem}.v-list-subheader--sticky{background:inherit;left:0;position:sticky;top:0;z-index:1}.v-list__overlay{background-color:currentColor;border-radius:inherit;bottom:0;left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .2s ease-in-out}.v-list-item{align-items:center;display:grid;flex:none;grid-template-areas:"prepend content append";grid-template-columns:max-content 1fr auto;outline:none;max-width:100%;padding:4px 16px;position:relative;text-decoration:none}.v-list-item{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-list-item--border{border-width:thin;box-shadow:none}.v-list-item:hover>.v-list-item__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-list-item:focus-visible>.v-list-item__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-list-item:focus>.v-list-item__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-list-item--active>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]>.v-list-item__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-list-item--active:hover>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]:hover>.v-list-item__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-list-item--active:focus-visible>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-list-item__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-list-item--active:focus>.v-list-item__overlay,.v-list-item[aria-haspopup=menu][aria-expanded=true]:focus>.v-list-item__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-list-item{border-radius:0}.v-list-item--variant-plain,.v-list-item--variant-outlined,.v-list-item--variant-text,.v-list-item--variant-tonal{background:transparent;color:inherit}.v-list-item--variant-plain{opacity:.62}.v-list-item--variant-plain:focus,.v-list-item--variant-plain:hover{opacity:1}.v-list-item--variant-plain .v-list-item__overlay{display:none}.v-list-item--variant-elevated,.v-list-item--variant-flat{background:rgba(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-list-item--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-list-item--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-list-item--variant-outlined{border:thin solid currentColor}.v-list-item--variant-text .v-list-item__overlay{background:currentColor}.v-list-item--variant-tonal .v-list-item__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-list-item .v-list-item__underlay{position:absolute}@supports selector(:focus-visible){.v-list-item:after{pointer-events:none;border:2px solid currentColor;border-radius:4px;opacity:0;transition:opacity .2s ease-in-out}.v-list-item:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-list-item:focus-visible:after{opacity:calc(.15 * var(--v-theme-overlay-multiplier))}}.v-list-item__prepend>.v-badge .v-icon,.v-list-item__prepend>.v-icon,.v-list-item__append>.v-badge .v-icon,.v-list-item__append>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-list-item--active .v-list-item__prepend>.v-badge .v-icon,.v-list-item--active .v-list-item__prepend>.v-icon,.v-list-item--active .v-list-item__append>.v-badge .v-icon,.v-list-item--active .v-list-item__append>.v-icon{opacity:1}.v-list-item--active:not(.v-list-item--link) .v-list-item__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-list-item--rounded{border-radius:4px}.v-list-item--disabled{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.6}.v-list-item--link{cursor:pointer}.v-navigation-drawer--rail:not(.v-navigation-drawer--expand-on-hover) .v-list-item .v-avatar,.v-navigation-drawer--rail.v-navigation-drawer--expand-on-hover:not(.v-navigation-drawer--is-hovering) .v-list-item .v-avatar{--v-avatar-height: 24px}.v-list-item__prepend{align-items:center;align-self:center;display:flex;grid-area:prepend}.v-list-item__prepend>.v-badge~.v-list-item__spacer,.v-list-item__prepend>.v-icon~.v-list-item__spacer,.v-list-item__prepend>.v-tooltip~.v-list-item__spacer{width:0}.v-list-item__prepend>.v-avatar~.v-list-item__spacer{width:16px}.v-list-item__prepend>.v-list-item-action~.v-list-item__spacer{width:16px}.v-list-item--slim .v-list-item__prepend>.v-badge~.v-list-item__spacer,.v-list-item--slim .v-list-item__prepend>.v-icon~.v-list-item__spacer,.v-list-item--slim .v-list-item__prepend>.v-tooltip~.v-list-item__spacer{width:20px}.v-list-item--slim .v-list-item__prepend>.v-avatar~.v-list-item__spacer{width:4px}.v-list-item--slim .v-list-item__prepend>.v-list-item-action~.v-list-item__spacer{width:4px}.v-list-item--three-line .v-list-item__prepend{align-self:start}.v-list-item__append{align-self:center;display:flex;align-items:center;grid-area:append}.v-list-item__append .v-list-item__spacer{order:-1;transition:.15s width cubic-bezier(.4,0,.2,1)}.v-list-item__append>.v-badge~.v-list-item__spacer,.v-list-item__append>.v-icon~.v-list-item__spacer,.v-list-item__append>.v-tooltip~.v-list-item__spacer{width:32px}.v-list-item__append>.v-avatar~.v-list-item__spacer{width:16px}.v-list-item__append>.v-list-item-action~.v-list-item__spacer{width:16px}.v-list-item--slim .v-list-item__append>.v-badge~.v-list-item__spacer,.v-list-item--slim .v-list-item__append>.v-icon~.v-list-item__spacer,.v-list-item--slim .v-list-item__append>.v-tooltip~.v-list-item__spacer{width:20px}.v-list-item--slim .v-list-item__append>.v-avatar~.v-list-item__spacer{width:4px}.v-list-item--slim .v-list-item__append>.v-list-item-action~.v-list-item__spacer{width:4px}.v-list-item--three-line .v-list-item__append{align-self:start}.v-list-item__content{align-self:center;grid-area:content;overflow:hidden}.v-list-item-action{align-self:center;display:flex;align-items:center;flex:none;transition:inherit;transition-property:height,width}.v-list-item-action--start{margin-inline-end:8px;margin-inline-start:-8px}.v-list-item-action--end{margin-inline-start:8px;margin-inline-end:-8px}.v-list-item-media{margin-top:0;margin-bottom:0}.v-list-item-media--start{margin-inline-end:16px}.v-list-item-media--end{margin-inline-start:16px}.v-list-item--two-line .v-list-item-media{margin-top:-4px;margin-bottom:-4px}.v-list-item--three-line .v-list-item-media{margin-top:0;margin-bottom:0}.v-list-item-subtitle{-webkit-box-orient:vertical;display:-webkit-box;opacity:var(--v-list-item-subtitle-opacity, var(--v-medium-emphasis-opacity));overflow:hidden;padding:0;text-overflow:ellipsis;overflow-wrap:break-word;word-break:initial}.v-list-item--one-line .v-list-item-subtitle{-webkit-line-clamp:1}.v-list-item--two-line .v-list-item-subtitle{-webkit-line-clamp:2}.v-list-item--three-line .v-list-item-subtitle{-webkit-line-clamp:3}.v-list-item-subtitle{font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;line-height:1rem;text-transform:none}.v-list-item--nav .v-list-item-subtitle{font-size:.75rem;font-weight:400;letter-spacing:.0178571429em;line-height:1rem}.v-list-item-title{-webkit-hyphens:auto;hyphens:auto;overflow-wrap:normal;overflow:hidden;padding:0;white-space:nowrap;text-overflow:ellipsis;word-break:normal;word-wrap:break-word}.v-list-item-title{font-size:1rem;font-weight:400;letter-spacing:.009375em;line-height:1.5;text-transform:none}.v-list-item--nav .v-list-item-title{font-size:.8125rem;font-weight:500;letter-spacing:normal;line-height:1rem}.v-list-item--density-default{min-height:40px}.v-list-item--density-default.v-list-item--one-line{min-height:48px;padding-top:4px;padding-bottom:4px}.v-list-item--density-default.v-list-item--two-line{min-height:64px;padding-top:12px;padding-bottom:12px}.v-list-item--density-default.v-list-item--three-line{min-height:88px;padding-top:16px;padding-bottom:16px}.v-list-item--density-default.v-list-item--three-line .v-list-item__prepend,.v-list-item--density-default.v-list-item--three-line .v-list-item__append{padding-top:8px}.v-list-item--density-default:not(.v-list-item--nav).v-list-item--one-line{padding-inline:16px}.v-list-item--density-default:not(.v-list-item--nav).v-list-item--two-line{padding-inline:16px}.v-list-item--density-default:not(.v-list-item--nav).v-list-item--three-line{padding-inline:16px}.v-list-item--density-comfortable{min-height:36px}.v-list-item--density-comfortable.v-list-item--one-line{min-height:44px}.v-list-item--density-comfortable.v-list-item--two-line{min-height:60px;padding-top:8px;padding-bottom:8px}.v-list-item--density-comfortable.v-list-item--three-line{min-height:84px;padding-top:12px;padding-bottom:12px}.v-list-item--density-comfortable.v-list-item--three-line .v-list-item__prepend,.v-list-item--density-comfortable.v-list-item--three-line .v-list-item__append{padding-top:6px}.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--one-line{padding-inline:16px}.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--two-line{padding-inline:16px}.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--three-line{padding-inline:16px}.v-list-item--density-compact{min-height:32px}.v-list-item--density-compact.v-list-item--one-line{min-height:40px}.v-list-item--density-compact.v-list-item--two-line{min-height:56px;padding-top:4px;padding-bottom:4px}.v-list-item--density-compact.v-list-item--three-line{min-height:80px;padding-top:8px;padding-bottom:8px}.v-list-item--density-compact.v-list-item--three-line .v-list-item__prepend,.v-list-item--density-compact.v-list-item--three-line .v-list-item__append{padding-top:4px}.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--one-line{padding-inline:16px}.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--two-line{padding-inline:16px}.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--three-line{padding-inline:16px}.v-list-item--nav{padding-inline:8px}.v-list .v-list-item--nav:not(:only-child){margin-bottom:4px}.v-list-item__underlay{position:absolute}.v-list-item__overlay{background-color:currentColor;border-radius:inherit;bottom:0;left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .2s ease-in-out}.v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay{--v-theme-overlay-multiplier: 0}.v-list{--indent-padding: 0px}.v-list--nav{--indent-padding: -8px}.v-list-group{--list-indent-size: 16px;--parent-padding: var(--indent-padding);--prepend-width: 40px}.v-list--slim .v-list-group{--prepend-width: 28px}.v-list-group--fluid{--list-indent-size: 0px}.v-list-group--prepend{--parent-padding: calc(var(--indent-padding) + var(--prepend-width))}.v-list-group--fluid.v-list-group--prepend{--parent-padding: var(--indent-padding)}.v-list-group__items{--indent-padding: calc(var(--parent-padding) + var(--list-indent-size))}.v-list-group__items .v-list-item{padding-inline-start:calc(16px + var(--indent-padding))!important}.v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:not(:focus-visible) .v-list-item__overlay{opacity:0}.v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:hover .v-list-item__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-divider{display:block;flex:1 1 100%;height:0px;max-height:0px;opacity:var(--v-border-opacity);transition:inherit}.v-divider{border-style:solid;border-width:thin 0 0 0}.v-divider--vertical{align-self:stretch;border-width:0 thin 0 0;display:inline-flex;height:auto;margin-left:-1px;max-height:100%;max-width:0px;vertical-align:text-bottom;width:0px}.v-divider--inset:not(.v-divider--vertical){max-width:calc(100% - 72px);margin-inline-start:72px}.v-divider--inset.v-divider--vertical{margin-bottom:8px;margin-top:8px;max-height:calc(100% - 16px)}.v-divider__content{padding:0 16px;text-wrap:nowrap}.v-divider__wrapper--vertical .v-divider__content{padding:4px 0}.v-divider__wrapper{display:flex;align-items:center;justify-content:center}.v-divider__wrapper--vertical{flex-direction:column;height:100%}.v-divider__wrapper--vertical .v-divider{margin:0 auto}.v-menu>.v-overlay__content{display:flex;flex-direction:column}.v-menu>.v-overlay__content{border-radius:4px}.v-menu>.v-overlay__content>.v-card,.v-menu>.v-overlay__content>.v-sheet,.v-menu>.v-overlay__content>.v-list{background:rgb(var(--v-theme-surface));border-radius:inherit;overflow:auto;height:100%}.v-menu>.v-overlay__content>.v-card,.v-menu>.v-overlay__content>.v-sheet,.v-menu>.v-overlay__content>.v-list{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-overlay-container{contain:layout;left:0;pointer-events:none;position:absolute;top:0;display:contents}.v-overlay-scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.v-overlay-scroll-blocked:not(html){overflow-y:hidden!important}html.v-overlay-scroll-blocked{position:fixed;top:var(--v-body-scroll-y);left:var(--v-body-scroll-x);width:100%;height:100%}.v-overlay{border-radius:inherit;display:flex;left:0;pointer-events:none;position:fixed;top:0;bottom:0;right:0}.v-overlay__content{outline:none;position:absolute;pointer-events:auto;contain:layout}.v-overlay__scrim{pointer-events:auto;background:rgb(var(--v-theme-on-surface));border-radius:inherit;bottom:0;left:0;opacity:var(--v-overlay-opacity, .32);position:fixed;right:0;top:0}.v-overlay--absolute,.v-overlay--contained .v-overlay__scrim{position:absolute}.v-overlay--scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.v-select .v-field .v-text-field__prefix,.v-select .v-field .v-text-field__suffix,.v-select .v-field .v-field__input,.v-select .v-field.v-field{cursor:pointer}.v-select .v-field .v-field__input>input{align-self:flex-start;opacity:1;flex:0 0;position:absolute;width:100%;transition:none;pointer-events:none;caret-color:transparent}.v-select .v-field--dirty .v-select__selection{margin-inline-end:2px}.v-select .v-select__selection-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-select__content{overflow:hidden}.v-select__content{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-select__content{border-radius:4px}.v-select__selection{display:inline-flex;align-items:center;letter-spacing:inherit;line-height:inherit;max-width:100%}.v-select .v-select__selection:first-child{margin-inline-start:0}.v-select--selected .v-field .v-field__input>input{opacity:0}.v-select__menu-icon{margin-inline-start:4px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-select--active-menu .v-select__menu-icon{opacity:var(--v-high-emphasis-opacity);transform:rotate(180deg)}.v-text-field input{color:inherit;opacity:0;flex:1;transition:.15s opacity cubic-bezier(.4,0,.2,1);min-width:0}.v-text-field input:focus,.v-text-field input:active{outline:none}.v-text-field input:invalid{box-shadow:none}.v-text-field .v-field{cursor:text}.v-text-field--prefixed.v-text-field .v-field__input{--v-field-padding-start: 6px}.v-text-field--suffixed.v-text-field .v-field__input{--v-field-padding-end: 0}.v-text-field .v-input__details{padding-inline:16px}.v-input--plain-underlined.v-text-field .v-input__details{padding-inline:0}.v-text-field .v-field--no-label input,.v-text-field .v-field--active input{opacity:1}.v-text-field .v-field--single-line input{transition:none}.v-text-field__prefix,.v-text-field__suffix{align-items:center;color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity));cursor:default;display:flex;opacity:0;transition:inherit;white-space:nowrap;min-height:max(var(--v-input-control-height, 56px),1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));padding-top:calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));padding-bottom:var(--v-field-padding-bottom, 6px)}.v-field--active .v-text-field__prefix,.v-field--active .v-text-field__suffix{opacity:1}.v-field--disabled .v-text-field__prefix,.v-field--disabled .v-text-field__suffix{color:rgba(var(--v-theme-on-surface),var(--v-disabled-opacity))}.v-text-field__prefix{padding-inline-start:var(--v-field-padding-start)}.v-text-field__suffix{padding-inline-end:var(--v-field-padding-end)}.v-counter{color:rgba(var(--v-theme-on-surface),var(--v-medium-emphasis-opacity));flex:0 1 auto;font-size:12px;transition-duration:.15s}.v-field{display:grid;grid-template-areas:"prepend-inner field clear append-inner";grid-template-columns:min-content minmax(0,1fr) min-content min-content;font-size:16px;letter-spacing:.009375em;max-width:100%;border-radius:4px;contain:layout;flex:1 0;grid-area:control;position:relative;--v-theme-overlay-multiplier: 1;--v-field-padding-start: 16px;--v-field-padding-end: 16px;--v-field-padding-top: 8px;--v-field-padding-bottom: 4px;--v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));--v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px)}.v-field--disabled{opacity:var(--v-disabled-opacity);pointer-events:none}.v-field .v-chip{--v-chip-height: 24px}.v-field--prepended{padding-inline-start:12px}.v-field--appended{padding-inline-end:12px}.v-field--variant-solo,.v-field--variant-solo-filled{background:rgb(var(--v-theme-surface));border-color:transparent;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-field--variant-solo,.v-field--variant-solo-filled{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-field--variant-solo-inverted{background:rgb(var(--v-theme-surface));border-color:transparent;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-field--variant-solo-inverted{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-field--variant-solo-inverted.v-field--focused{color:rgb(var(--v-theme-on-surface-variant))}.v-field--variant-filled{border-bottom-left-radius:0;border-bottom-right-radius:0}.v-input--density-default .v-field--variant-solo,.v-input--density-default .v-field--variant-solo-inverted,.v-input--density-default .v-field--variant-solo-filled,.v-input--density-default .v-field--variant-filled{--v-input-control-height: 56px;--v-field-padding-bottom: 4px}.v-input--density-comfortable .v-field--variant-solo,.v-input--density-comfortable .v-field--variant-solo-inverted,.v-input--density-comfortable .v-field--variant-solo-filled,.v-input--density-comfortable .v-field--variant-filled{--v-input-control-height: 48px;--v-field-padding-bottom: 0px}.v-input--density-compact .v-field--variant-solo,.v-input--density-compact .v-field--variant-solo-inverted,.v-input--density-compact .v-field--variant-solo-filled,.v-input--density-compact .v-field--variant-filled{--v-input-control-height: 40px;--v-field-padding-bottom: 0px}.v-field--variant-outlined,.v-field--single-line,.v-field--no-label{--v-field-padding-top: 0px}.v-input--density-default .v-field--variant-outlined,.v-input--density-default .v-field--single-line,.v-input--density-default .v-field--no-label{--v-field-padding-bottom: 16px}.v-input--density-comfortable .v-field--variant-outlined,.v-input--density-comfortable .v-field--single-line,.v-input--density-comfortable .v-field--no-label{--v-field-padding-bottom: 12px}.v-input--density-compact .v-field--variant-outlined,.v-input--density-compact .v-field--single-line,.v-input--density-compact .v-field--no-label{--v-field-padding-bottom: 8px}.v-field--variant-plain,.v-field--variant-underlined{border-radius:0;padding:0}.v-field--variant-plain.v-field,.v-field--variant-underlined.v-field{--v-field-padding-start: 0px;--v-field-padding-end: 0px}.v-input--density-default .v-field--variant-plain,.v-input--density-default .v-field--variant-underlined{--v-input-control-height: 48px;--v-field-padding-top: 4px;--v-field-padding-bottom: 4px}.v-input--density-comfortable .v-field--variant-plain,.v-input--density-comfortable .v-field--variant-underlined{--v-input-control-height: 40px;--v-field-padding-top: 2px;--v-field-padding-bottom: 0px}.v-input--density-compact .v-field--variant-plain,.v-input--density-compact .v-field--variant-underlined{--v-input-control-height: 32px;--v-field-padding-top: 0px;--v-field-padding-bottom: 0px}.v-field--flat{box-shadow:none}.v-field--rounded{border-radius:24px}.v-field.v-field--prepended{--v-field-padding-start: 6px}.v-field.v-field--appended{--v-field-padding-end: 6px}.v-field__input{align-items:center;color:inherit;column-gap:2px;display:flex;flex-wrap:wrap;letter-spacing:.009375em;opacity:var(--v-high-emphasis-opacity);min-height:max(var(--v-input-control-height, 56px),1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));min-width:0;padding-inline:var(--v-field-padding-start) var(--v-field-padding-end);padding-top:var(--v-field-input-padding-top);padding-bottom:var(--v-field-input-padding-bottom);position:relative;width:100%}.v-input--density-default .v-field__input{row-gap:8px}.v-input--density-comfortable .v-field__input{row-gap:6px}.v-input--density-compact .v-field__input{row-gap:4px}.v-field__input input{letter-spacing:inherit}.v-field__input input::placeholder,input.v-field__input::placeholder,textarea.v-field__input::placeholder{color:currentColor;opacity:var(--v-disabled-opacity)}.v-field__input:focus,.v-field__input:active{outline:none}.v-field__input:invalid{box-shadow:none}.v-field__field{flex:1 0;grid-area:field;position:relative;align-items:flex-start;display:flex}.v-field__prepend-inner{grid-area:prepend-inner;padding-inline-end:var(--v-field-padding-after)}.v-field__clearable{grid-area:clear}.v-field__append-inner{grid-area:append-inner;padding-inline-start:var(--v-field-padding-after)}.v-field__append-inner,.v-field__clearable,.v-field__prepend-inner{display:flex;align-items:flex-start;padding-top:var(--v-input-padding-top, 8px)}.v-field--center-affix .v-field__append-inner,.v-field--center-affix .v-field__clearable,.v-field--center-affix .v-field__prepend-inner{align-items:center;padding-top:0}.v-field.v-field--variant-underlined .v-field__append-inner,.v-field.v-field--variant-underlined .v-field__clearable,.v-field.v-field--variant-underlined .v-field__prepend-inner,.v-field.v-field--variant-plain .v-field__append-inner,.v-field.v-field--variant-plain .v-field__clearable,.v-field.v-field--variant-plain .v-field__prepend-inner{align-items:flex-start;padding-top:calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));padding-bottom:var(--v-field-padding-bottom, 4px)}.v-field--focused .v-field__prepend-inner,.v-field--focused .v-field__append-inner{opacity:1}.v-field__prepend-inner>.v-icon,.v-field__append-inner>.v-icon,.v-field__clearable>.v-icon{opacity:var(--v-medium-emphasis-opacity)}.v-field--disabled .v-field__prepend-inner>.v-icon,.v-field--error .v-field__prepend-inner>.v-icon,.v-field--disabled .v-field__append-inner>.v-icon,.v-field--error .v-field__append-inner>.v-icon,.v-field--disabled .v-field__clearable>.v-icon,.v-field--error .v-field__clearable>.v-icon{opacity:1}.v-field--error:not(.v-field--disabled) .v-field__prepend-inner>.v-icon,.v-field--error:not(.v-field--disabled) .v-field__append-inner>.v-icon,.v-field--error:not(.v-field--disabled) .v-field__clearable>.v-icon{color:rgb(var(--v-theme-error))}.v-field__clearable{cursor:pointer;opacity:0;overflow:hidden;margin-inline:4px;transition:.15s cubic-bezier(.4,0,.2,1);transition-property:opacity,transform,width}.v-field--focused .v-field__clearable,.v-field--persistent-clear .v-field__clearable{opacity:1}@media (hover: hover){.v-field:hover .v-field__clearable{opacity:1}}@media (hover: none){.v-field__clearable{opacity:1}}.v-label.v-field-label{contain:layout paint;display:block;margin-inline-start:var(--v-field-padding-start);margin-inline-end:var(--v-field-padding-end);max-width:calc(100% - var(--v-field-padding-start) - var(--v-field-padding-end));pointer-events:none;position:absolute;top:var(--v-input-padding-top);transform-origin:left center;transition:.15s cubic-bezier(.4,0,.2,1);transition-property:opacity,transform;z-index:1}.v-field--variant-underlined .v-label.v-field-label,.v-field--variant-plain .v-label.v-field-label{top:calc(var(--v-input-padding-top) + var(--v-field-padding-top))}.v-field--center-affix .v-label.v-field-label{top:50%;transform:translateY(-50%)}.v-field--active .v-label.v-field-label{visibility:hidden}.v-field--focused .v-label.v-field-label,.v-field--error .v-label.v-field-label{opacity:1}.v-field--error:not(.v-field--disabled) .v-label.v-field-label{color:rgb(var(--v-theme-error))}.v-label.v-field-label--floating{--v-field-label-scale: .75em;font-size:var(--v-field-label-scale);visibility:hidden;max-width:100%}.v-field--center-affix .v-label.v-field-label--floating{transform:none}.v-field.v-field--active .v-label.v-field-label--floating{visibility:unset}.v-input--density-default .v-field--variant-solo .v-label.v-field-label--floating,.v-input--density-default .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-input--density-default .v-field--variant-filled .v-label.v-field-label--floating,.v-input--density-default .v-field--variant-solo-filled .v-label.v-field-label--floating{top:7px}.v-input--density-comfortable .v-field--variant-solo .v-label.v-field-label--floating,.v-input--density-comfortable .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-input--density-comfortable .v-field--variant-filled .v-label.v-field-label--floating,.v-input--density-comfortable .v-field--variant-solo-filled .v-label.v-field-label--floating{top:5px}.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating{top:3px}.v-field--variant-plain .v-label.v-field-label--floating,.v-field--variant-underlined .v-label.v-field-label--floating{transform:translateY(-16px);margin:0;top:var(--v-input-padding-top)}.v-field--variant-outlined .v-label.v-field-label--floating{transform:translateY(-50%);transform-origin:center;position:static;margin:0 4px}.v-field__outline{--v-field-border-width: 1px;--v-field-border-opacity: .38;align-items:stretch;contain:layout;display:flex;height:100%;left:0;pointer-events:none;position:absolute;right:0;width:100%}@media (hover: hover){.v-field:hover .v-field__outline{--v-field-border-opacity: var(--v-high-emphasis-opacity)}}.v-field--error:not(.v-field--disabled) .v-field__outline{color:rgb(var(--v-theme-error))}.v-field.v-field--focused .v-field__outline,.v-input.v-input--error .v-field__outline{--v-field-border-opacity: 1}.v-field--variant-outlined.v-field--focused .v-field__outline{--v-field-border-width: 2px}.v-field--variant-filled .v-field__outline:before,.v-field--variant-underlined .v-field__outline:before{border-color:currentColor;border-style:solid;border-width:0 0 var(--v-field-border-width);opacity:var(--v-field-border-opacity);transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-filled .v-field__outline:before,.v-field--variant-underlined .v-field__outline:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-field--variant-filled .v-field__outline:after,.v-field--variant-underlined .v-field__outline:after{border-color:currentColor;border-style:solid;border-width:0 0 2px;transform:scaleX(0);transition:transform .15s cubic-bezier(.4,0,.2,1)}.v-field--variant-filled .v-field__outline:after,.v-field--variant-underlined .v-field__outline:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-field--focused.v-field--variant-filled .v-field__outline:after,.v-field--focused.v-field--variant-underlined .v-field__outline:after{transform:scaleX(1)}.v-field--variant-outlined .v-field__outline{border-radius:inherit}.v-field--variant-outlined .v-field__outline__start,.v-field--variant-outlined .v-field__outline__notch:before,.v-field--variant-outlined .v-field__outline__notch:after,.v-field--variant-outlined .v-field__outline__end{border:0 solid currentColor;opacity:var(--v-field-border-opacity);transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-outlined .v-field__outline__start{flex:0 0 12px;border-top-width:var(--v-field-border-width);border-bottom-width:var(--v-field-border-width);border-inline-start-width:var(--v-field-border-width);border-start-start-radius:inherit;border-start-end-radius:0;border-end-end-radius:0;border-end-start-radius:inherit}.v-field--rounded.v-field--variant-outlined .v-field__outline__start,[class^=rounded-].v-field--variant-outlined .v-field__outline__start,[class*=" rounded-"].v-field--variant-outlined .v-field__outline__start{flex-basis:calc(var(--v-input-control-height) / 2 + 2px)}.v-field--reverse.v-field--variant-outlined .v-field__outline__start{border-start-start-radius:0;border-start-end-radius:inherit;border-end-end-radius:inherit;border-end-start-radius:0;border-inline-end-width:var(--v-field-border-width);border-inline-start-width:0}.v-field--variant-outlined .v-field__outline__notch{flex:none;position:relative;max-width:calc(100% - 12px)}.v-field--variant-outlined .v-field__outline__notch:before,.v-field--variant-outlined .v-field__outline__notch:after{opacity:var(--v-field-border-opacity);transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-outlined .v-field__outline__notch:before,.v-field--variant-outlined .v-field__outline__notch:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-field--variant-outlined .v-field__outline__notch:before{border-width:var(--v-field-border-width) 0 0}.v-field--variant-outlined .v-field__outline__notch:after{bottom:0;border-width:0 0 var(--v-field-border-width)}.v-field--active.v-field--variant-outlined .v-field__outline__notch:before{opacity:0}.v-field--variant-outlined .v-field__outline__end{flex:1;border-top-width:var(--v-field-border-width);border-bottom-width:var(--v-field-border-width);border-inline-end-width:var(--v-field-border-width);border-start-start-radius:0;border-start-end-radius:inherit;border-end-end-radius:inherit;border-end-start-radius:0}.v-field--reverse.v-field--variant-outlined .v-field__outline__end{border-start-start-radius:inherit;border-start-end-radius:0;border-end-end-radius:0;border-end-start-radius:inherit;border-inline-end-width:0;border-inline-start-width:var(--v-field-border-width)}.v-field__loader{top:calc(100% - 2px);left:0;position:absolute;right:0;width:100%;border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;overflow:hidden}.v-field--variant-outlined .v-field__loader{top:calc(100% - 3px);width:calc(100% - 2px);left:1px}.v-field__overlay{border-radius:inherit;pointer-events:none}.v-field__overlay{position:absolute;top:0;left:0;width:100%;height:100%}.v-field--variant-filled .v-field__overlay{background-color:currentColor;opacity:.04;transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-filled.v-field--has-background .v-field__overlay{opacity:0}@media (hover: hover){.v-field--variant-filled:hover .v-field__overlay{opacity:calc((.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}}.v-field--variant-filled.v-field--focused .v-field__overlay{opacity:calc((.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}.v-field--variant-solo-filled .v-field__overlay{background-color:currentColor;opacity:.04;transition:opacity .25s cubic-bezier(.4,0,.2,1)}@media (hover: hover){.v-field--variant-solo-filled:hover .v-field__overlay{opacity:calc((.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}}.v-field--variant-solo-filled.v-field--focused .v-field__overlay{opacity:calc((.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}.v-field--variant-solo-inverted .v-field__overlay{transition:opacity .25s cubic-bezier(.4,0,.2,1)}.v-field--variant-solo-inverted.v-field--has-background .v-field__overlay{opacity:0}@media (hover: hover){.v-field--variant-solo-inverted:hover .v-field__overlay{opacity:calc((.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}}.v-field--variant-solo-inverted.v-field--focused .v-field__overlay{background-color:rgb(var(--v-theme-surface-variant));opacity:1}.v-field--reverse .v-field__field,.v-field--reverse .v-field__input,.v-field--reverse .v-field__outline{flex-direction:row-reverse}.v-field--reverse .v-field__input,.v-field--reverse input{text-align:end}.v-input--disabled .v-field--variant-filled .v-field__outline:before,.v-input--disabled .v-field--variant-underlined .v-field__outline:before{border-image:repeating-linear-gradient(to right,rgba(var(--v-theme-on-surface),var(--v-disabled-opacity)) 0px,rgba(var(--v-theme-on-surface),var(--v-disabled-opacity)) 2px,transparent 2px,transparent 4px) 1 repeat}.v-field--loading .v-field__outline:after,.v-field--loading .v-field__outline:before{opacity:0}.v-virtual-scroll{display:block;flex:1 1 auto;max-width:100%;overflow:auto;position:relative}.v-virtual-scroll__container{display:block}.v-dialog{align-items:center;justify-content:center;margin:auto}.v-dialog>.v-overlay__content{max-height:calc(100% - 48px);width:calc(100% - 48px);max-width:calc(100% - 48px);margin:24px}.v-dialog>.v-overlay__content,.v-dialog>.v-overlay__content>form{display:flex;flex-direction:column;min-height:0}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>.v-sheet,.v-dialog>.v-overlay__content>form>.v-card,.v-dialog>.v-overlay__content>form>.v-sheet{--v-scrollbar-offset: 0px;border-radius:4px;overflow-y:auto}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>.v-sheet,.v-dialog>.v-overlay__content>form>.v-card,.v-dialog>.v-overlay__content>form>.v-sheet{box-shadow:0 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>form>.v-card{display:flex;flex-direction:column}.v-dialog>.v-overlay__content>.v-card>.v-card-item,.v-dialog>.v-overlay__content>form>.v-card>.v-card-item{padding:16px 24px}.v-dialog>.v-overlay__content>.v-card>.v-card-item+.v-card-text,.v-dialog>.v-overlay__content>form>.v-card>.v-card-item+.v-card-text{padding-top:0}.v-dialog>.v-overlay__content>.v-card>.v-card-text,.v-dialog>.v-overlay__content>form>.v-card>.v-card-text{font-size:inherit;letter-spacing:.03125em;line-height:inherit;padding:16px 24px 24px}.v-dialog>.v-overlay__content>.v-card>.v-card-actions,.v-dialog>.v-overlay__content>form>.v-card>.v-card-actions{justify-content:flex-end}.v-dialog--fullscreen{--v-scrollbar-offset: 0px}.v-dialog--fullscreen>.v-overlay__content{border-radius:0;margin:0;padding:0;width:100%;height:100%;max-width:100%;max-height:100%;overflow-y:auto;top:0;left:0}.v-dialog--fullscreen>.v-overlay__content>.v-card,.v-dialog--fullscreen>.v-overlay__content>.v-sheet,.v-dialog--fullscreen>.v-overlay__content>form>.v-card,.v-dialog--fullscreen>.v-overlay__content>form>.v-sheet{min-height:100%;min-width:100%;border-radius:0}.v-dialog--scrollable>.v-overlay__content,.v-dialog--scrollable>.v-overlay__content>form{display:flex}.v-dialog--scrollable>.v-overlay__content>.v-card,.v-dialog--scrollable>.v-overlay__content>form>.v-card{display:flex;flex:1 1 100%;flex-direction:column;max-height:100%;max-width:100%}.v-dialog--scrollable>.v-overlay__content>.v-card>.v-card-text,.v-dialog--scrollable>.v-overlay__content>form>.v-card>.v-card-text{backface-visibility:hidden;overflow-y:auto}.v-card{display:block;overflow:hidden;overflow-wrap:break-word;position:relative;padding:0;text-decoration:none;transition-duration:.28s;transition-property:box-shadow,opacity,background;transition-timing-function:cubic-bezier(.4,0,.2,1);z-index:0}.v-card{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-card--border{border-width:thin;box-shadow:none}.v-card--absolute{position:absolute}.v-card--fixed{position:fixed}.v-card{border-radius:4px}.v-card:hover>.v-card__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-card:focus-visible>.v-card__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-card:focus>.v-card__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-card--active>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]>.v-card__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-card--active:hover>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]:hover>.v-card__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-card--active:focus-visible>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-card__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-card--active:focus>.v-card__overlay,.v-card[aria-haspopup=menu][aria-expanded=true]:focus>.v-card__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-card--variant-plain,.v-card--variant-outlined,.v-card--variant-text,.v-card--variant-tonal{background:transparent;color:inherit}.v-card--variant-plain{opacity:.62}.v-card--variant-plain:focus,.v-card--variant-plain:hover{opacity:1}.v-card--variant-plain .v-card__overlay{display:none}.v-card--variant-elevated,.v-card--variant-flat{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-card--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-card--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-card--variant-outlined{border:thin solid currentColor}.v-card--variant-text .v-card__overlay{background:currentColor}.v-card--variant-tonal .v-card__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-card .v-card__underlay{position:absolute}.v-card--disabled{pointer-events:none;-webkit-user-select:none;user-select:none}.v-card--disabled>:not(.v-card__loader){opacity:.6}.v-card--flat{box-shadow:none}.v-card--hover{cursor:pointer}.v-card--hover:before,.v-card--hover:after{border-radius:inherit;bottom:0;content:"";display:block;left:0;pointer-events:none;position:absolute;right:0;top:0;transition:inherit}.v-card--hover:before{opacity:1;z-index:-1}.v-card--hover:before{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-card--hover:after{z-index:1;opacity:0}.v-card--hover:after{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-card--hover:hover:after{opacity:1}.v-card--hover:hover:before{opacity:0}.v-card--hover:hover{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-card--link{cursor:pointer}.v-card-actions{align-items:center;display:flex;flex:none;min-height:52px;padding:.5rem}.v-card-item{align-items:center;display:grid;flex:none;grid-template-areas:"prepend content append";grid-template-columns:max-content auto max-content;padding:.625rem 1rem}.v-card-item+.v-card-text{padding-top:0}.v-card-item__prepend,.v-card-item__append{align-items:center;display:flex}.v-card-item__prepend{grid-area:prepend;padding-inline-end:.5rem}.v-card-item__append{grid-area:append;padding-inline-start:.5rem}.v-card-item__content{align-self:center;grid-area:content;overflow:hidden}.v-card-title{display:block;flex:none;font-size:1.25rem;font-weight:500;-webkit-hyphens:auto;hyphens:auto;letter-spacing:.0125em;min-width:0;overflow-wrap:normal;overflow:hidden;padding:.5rem 1rem;text-overflow:ellipsis;text-transform:none;white-space:nowrap;word-break:normal;word-wrap:break-word}.v-card .v-card-title{line-height:1.6}.v-card--density-comfortable .v-card-title{line-height:1.75rem}.v-card--density-compact .v-card-title{line-height:1.55rem}.v-card-item .v-card-title{padding:0}.v-card-title+.v-card-text,.v-card-title+.v-card-actions{padding-top:0}.v-card-subtitle{display:block;flex:none;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;opacity:var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));overflow:hidden;padding:0 1rem;text-overflow:ellipsis;text-transform:none;white-space:nowrap}.v-card .v-card-subtitle{line-height:1.425}.v-card--density-comfortable .v-card-subtitle{line-height:1.125rem}.v-card--density-compact .v-card-subtitle{line-height:1rem}.v-card-item .v-card-subtitle{padding:0 0 .25rem}.v-card-text{flex:1 1 auto;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;opacity:var(--v-card-text-opacity, 1);padding:1rem;text-transform:none}.v-card .v-card-text{line-height:1.425}.v-card--density-comfortable .v-card-text{line-height:1.2rem}.v-card--density-compact .v-card-text{line-height:1.15rem}.v-card__image{display:flex;height:100%;flex:1 1 auto;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.v-card__content{border-radius:inherit;overflow:hidden;position:relative}.v-card__loader{bottom:auto;top:0;left:0;position:absolute;right:0;width:100%;z-index:1}.v-card__overlay{background-color:currentColor;border-radius:inherit;position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;opacity:0;transition:opacity .2s ease-in-out}.v-slider .v-slider__container input{cursor:default;padding:0;width:100%;display:none}.v-slider>.v-input__append,.v-slider>.v-input__prepend{padding:0}.v-slider__container{position:relative;min-height:inherit;width:100%;height:100%;display:flex;justify-content:center;align-items:center;cursor:pointer}.v-input--disabled .v-slider__container{opacity:var(--v-disabled-opacity)}.v-input--error:not(.v-input--disabled) .v-slider__container{color:rgb(var(--v-theme-error))}.v-slider.v-input--horizontal{align-items:center;margin-inline:8px 8px}.v-slider.v-input--horizontal>.v-input__control{min-height:32px;display:flex;align-items:center}.v-slider.v-input--vertical{justify-content:center;margin-top:12px;margin-bottom:12px}.v-slider.v-input--vertical>.v-input__control{min-height:300px}.v-slider.v-input--disabled{pointer-events:none}.v-slider--has-labels>.v-input__control{margin-bottom:4px}.v-slider__label{margin-inline-end:12px}.v-slider-thumb{touch-action:none;color:rgb(var(--v-theme-surface-variant))}.v-input--error:not(.v-input--disabled) .v-slider-thumb{color:inherit}.v-slider-thumb__label{background:rgba(var(--v-theme-surface-variant),.7);color:rgb(var(--v-theme-on-surface-variant))}.v-slider-thumb__label:before{color:rgba(var(--v-theme-surface-variant),.7)}.v-slider-thumb{outline:none;position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1)}.v-slider-thumb__surface{cursor:pointer;width:var(--v-slider-thumb-size);height:var(--v-slider-thumb-size);border-radius:50%;-webkit-user-select:none;user-select:none;background-color:currentColor}@media (forced-colors: active){.v-slider-thumb__surface{background-color:highlight}}.v-slider-thumb__surface:before{transition:.3s cubic-bezier(.4,0,.2,1);content:"";color:inherit;top:0;left:0;width:100%;height:100%;border-radius:50%;background:currentColor;position:absolute;pointer-events:none;opacity:0}.v-slider-thumb__surface:after{content:"";width:42px;height:42px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.v-slider-thumb__label-container{position:absolute;transition:.2s cubic-bezier(.4,0,1,1)}.v-slider-thumb__label{display:flex;align-items:center;justify-content:center;font-size:.75rem;min-width:35px;height:25px;border-radius:4px;padding:6px;position:absolute;-webkit-user-select:none;user-select:none;transition:.2s cubic-bezier(.4,0,1,1)}.v-slider-thumb__label:before{content:"";width:0;height:0;position:absolute}.v-slider-thumb__ripple{position:absolute;left:calc(var(--v-slider-thumb-size) / -2);top:calc(var(--v-slider-thumb-size) / -2);width:calc(var(--v-slider-thumb-size) * 2);height:calc(var(--v-slider-thumb-size) * 2);background:inherit}.v-slider.v-input--horizontal .v-slider-thumb{top:50%;transform:translateY(-50%);inset-inline-start:calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2)}.v-slider.v-input--horizontal .v-slider-thumb__label-container{left:calc(var(--v-slider-thumb-size) / 2);top:0}.v-slider.v-input--horizontal .v-slider-thumb__label{bottom:calc(var(--v-slider-thumb-size) / 2)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label{transform:translate(-50%)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label{transform:translate(50%)}.v-slider.v-input--horizontal .v-slider-thumb__label:before{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid currentColor;bottom:-6px}.v-slider.v-input--vertical .v-slider-thumb{top:calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2)}.v-slider.v-input--vertical .v-slider-thumb__label-container{top:calc(var(--v-slider-thumb-size) / 2);right:0}.v-slider.v-input--vertical .v-slider-thumb__label{top:-12.5px;left:calc(var(--v-slider-thumb-size) / 2)}.v-slider.v-input--vertical .v-slider-thumb__label:before{border-right:6px solid currentColor;border-top:6px solid transparent;border-bottom:6px solid transparent;left:-6px}.v-slider-thumb--focused .v-slider-thumb__surface:before{transform:scale(2);opacity:var(--v-focus-opacity)}.v-slider-thumb--pressed{transition:none}.v-slider-thumb--pressed .v-slider-thumb__surface:before{opacity:var(--v-pressed-opacity)}@media (hover: hover){.v-slider-thumb:hover .v-slider-thumb__surface:before{transform:scale(2)}.v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface:before{opacity:var(--v-hover-opacity)}}.v-slider-track__background{background-color:rgb(var(--v-theme-surface-variant))}@media (forced-colors: active){.v-slider-track__background{background-color:highlight}}.v-slider-track__fill{background-color:rgb(var(--v-theme-surface-variant))}@media (forced-colors: active){.v-slider-track__fill{background-color:highlight}}.v-slider-track__tick{background-color:rgb(var(--v-theme-surface-variant))}.v-slider-track__tick--filled{background-color:rgb(var(--v-theme-surface-light))}.v-slider-track{border-radius:6px}@media (forced-colors: active){.v-slider-track{border:thin solid buttontext}}.v-slider-track__background,.v-slider-track__fill{position:absolute;transition:.3s cubic-bezier(.25,.8,.5,1);border-radius:inherit}.v-slider--pressed .v-slider-track__background,.v-slider--pressed .v-slider-track__fill{transition:none}.v-input--error:not(.v-input--disabled) .v-slider-track__background,.v-input--error:not(.v-input--disabled) .v-slider-track__fill{background-color:currentColor}.v-slider-track__ticks{height:100%;width:100%;position:relative}.v-slider-track__tick{position:absolute;opacity:0;transition:.2s opacity cubic-bezier(.4,0,.2,1);border-radius:2px;width:var(--v-slider-tick-size);height:var(--v-slider-tick-size);transform:translate(calc(var(--v-slider-tick-size) / -2),calc(var(--v-slider-tick-size) / -2))}.v-locale--is-ltr.v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-ltr .v-slider-track__tick--first .v-slider-track__tick-label{transform:none}.v-locale--is-rtl.v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-rtl .v-slider-track__tick--first .v-slider-track__tick-label{transform:translate(100%)}.v-locale--is-ltr.v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-ltr .v-slider-track__tick--last .v-slider-track__tick-label{transform:translate(-100%)}.v-locale--is-rtl.v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-rtl .v-slider-track__tick--last .v-slider-track__tick-label{transform:none}.v-slider-track__tick-label{position:absolute;-webkit-user-select:none;user-select:none;white-space:nowrap}.v-slider.v-input--horizontal .v-slider-track{display:flex;align-items:center;width:100%;height:calc(var(--v-slider-track-size) + 2px);touch-action:pan-y}.v-slider.v-input--horizontal .v-slider-track__background{height:var(--v-slider-track-size)}.v-slider.v-input--horizontal .v-slider-track__fill{height:inherit}.v-slider.v-input--horizontal .v-slider-track__tick{margin-top:calc(calc(var(--v-slider-track-size) + 2px) / 2)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick{transform:translate(calc(var(--v-slider-tick-size) / 2),calc(var(--v-slider-tick-size) / -2))}.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label{margin-top:calc(var(--v-slider-track-size) / 2 + 8px)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label{transform:translate(-50%)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label{transform:translate(50%)}.v-slider.v-input--horizontal .v-slider-track__tick--first{margin-inline-start:calc(var(--v-slider-tick-size) + 1px)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label{transform:translate(0)}.v-slider.v-input--horizontal .v-slider-track__tick--last{margin-inline-start:calc(100% - var(--v-slider-tick-size) - 1px)}.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label{transform:translate(-100%)}.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label,.v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label{transform:translate(100%)}.v-slider.v-input--vertical .v-slider-track{height:100%;display:flex;justify-content:center;width:calc(var(--v-slider-track-size) + 2px);touch-action:pan-x}.v-slider.v-input--vertical .v-slider-track__background{width:var(--v-slider-track-size)}.v-slider.v-input--vertical .v-slider-track__fill{width:inherit}.v-slider.v-input--vertical .v-slider-track__ticks{height:100%}.v-slider.v-input--vertical .v-slider-track__tick{margin-inline-start:calc(calc(var(--v-slider-track-size) + 2px) / 2);transform:translate(calc(var(--v-slider-tick-size) / -2),calc(var(--v-slider-tick-size) / 2))}.v-locale--is-rtl.v-slider.v-input--vertical .v-slider-track__tick,.v-locale--is-rtl .v-slider.v-input--vertical .v-slider-track__tick{transform:translate(calc(var(--v-slider-tick-size) / 2),calc(var(--v-slider-tick-size) / 2))}.v-slider.v-input--vertical .v-slider-track__tick--first{bottom:calc(0% + var(--v-slider-tick-size) + 1px)}.v-slider.v-input--vertical .v-slider-track__tick--last{bottom:calc(100% - var(--v-slider-tick-size) - 1px)}.v-slider.v-input--vertical .v-slider-track__tick .v-slider-track__tick-label{margin-inline-start:calc(var(--v-slider-track-size) / 2 + 12px);transform:translateY(-50%)}.v-slider-track__ticks--always-show .v-slider-track__tick,.v-slider--focused .v-slider-track__tick{opacity:1}.v-slider-track__background--opacity{opacity:.38}.v-combobox .v-field .v-text-field__prefix,.v-combobox .v-field .v-text-field__suffix,.v-combobox .v-field .v-field__input,.v-combobox .v-field.v-field{cursor:text}.v-combobox .v-field .v-field__input>input{flex:1 1}.v-combobox .v-field input{min-width:64px}.v-combobox .v-field:not(.v-field--focused) input{min-width:0}.v-combobox .v-field--dirty .v-combobox__selection{margin-inline-end:2px}.v-combobox .v-combobox__selection-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v-combobox__content{overflow:hidden}.v-combobox__content{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-combobox__content{border-radius:4px}.v-combobox__mask{background:rgb(var(--v-theme-surface-light))}.v-combobox__selection{display:inline-flex;align-items:center;height:1.5rem;letter-spacing:inherit;line-height:inherit;max-width:calc(100% - 4px)}.v-combobox__selection:first-child{margin-inline-start:0}.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating{top:0}.v-combobox--selecting-index .v-combobox__selection{opacity:var(--v-medium-emphasis-opacity)}.v-combobox--selecting-index .v-combobox__selection--selected{opacity:1}.v-combobox--selecting-index .v-field__input>input{caret-color:transparent}.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input{flex:1 1;position:absolute;left:0;right:0;width:100%;padding-inline:inherit}.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input{transition:none}.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input{opacity:0}.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection{opacity:0}.v-combobox__menu-icon{margin-inline-start:4px;transition:.2s cubic-bezier(.4,0,.2,1)}.v-combobox--active-menu .v-combobox__menu-icon{opacity:var(--v-high-emphasis-opacity);transform:rotate(180deg)}.v-data-table{width:100%}.v-data-table__table{width:100%;border-collapse:separate;border-spacing:0}.v-data-table__tr--focus{border:1px dotted black}.v-data-table__tr--clickable{cursor:pointer}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--align-end,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--align-end,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--align-end,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--align-end{text-align:end}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--align-end .v-data-table-header__content,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--align-end .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--align-end .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--align-end .v-data-table-header__content{flex-direction:row-reverse}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--align-center,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--align-center,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--align-center,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--align-center{text-align:center}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--align-center .v-data-table-header__content,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--align-center .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--align-center .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--align-center .v-data-table-header__content{justify-content:center}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--no-padding,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--no-padding,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--no-padding,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--no-padding{padding:0 8px}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--nowrap,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--nowrap,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--nowrap,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--nowrap{text-overflow:ellipsis;text-wrap:nowrap;overflow:hidden}.v-data-table .v-table__wrapper>table>thead>tr>td.v-data-table-column--nowrap .v-data-table-header__content,.v-data-table .v-table__wrapper>table>thead>tr th.v-data-table-column--nowrap .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr>td.v-data-table-column--nowrap .v-data-table-header__content,.v-data-table .v-table__wrapper>table tbody>tr th.v-data-table-column--nowrap .v-data-table-header__content{display:contents}.v-data-table .v-table__wrapper>table>thead>tr>th,.v-data-table .v-table__wrapper>table tbody>tr>th{align-items:center}.v-data-table .v-table__wrapper>table>thead>tr>th.v-data-table__th--fixed,.v-data-table .v-table__wrapper>table tbody>tr>th.v-data-table__th--fixed{position:sticky}.v-data-table .v-table__wrapper>table>thead>tr>th.v-data-table__th--sortable:hover,.v-data-table .v-table__wrapper>table tbody>tr>th.v-data-table__th--sortable:hover{cursor:pointer;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-data-table .v-table__wrapper>table>thead>tr>th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon,.v-data-table .v-table__wrapper>table tbody>tr>th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon{opacity:0}.v-data-table .v-table__wrapper>table>thead>tr>th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon,.v-data-table .v-table__wrapper>table tbody>tr>th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon{opacity:.5}.v-data-table .v-table__wrapper>table>thead>tr.v-data-table__tr--mobile>td,.v-data-table .v-table__wrapper>table tbody>tr.v-data-table__tr--mobile>td{height:fit-content}.v-data-table-column--fixed,.v-data-table__th--sticky{background:rgb(var(--v-theme-surface));position:sticky!important;left:0;z-index:1}.v-data-table-column--last-fixed{border-right:1px solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-data-table.v-table--fixed-header>.v-table__wrapper>table>thead>tr>th.v-data-table-column--fixed{z-index:2}.v-data-table-group-header-row td{background:rgba(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface))}.v-data-table-group-header-row td>span{padding-left:5px}.v-data-table--loading .v-data-table__td{opacity:var(--v-disabled-opacity)}.v-data-table-group-header-row__column{padding-left:calc(var(--v-data-table-group-header-row-depth) * 16px)!important}.v-data-table-header__content{display:flex;align-items:center}.v-data-table-header__sort-badge{display:inline-flex;justify-content:center;align-items:center;font-size:.875rem;padding:4px;border-radius:50%;background:rgba(var(--v-border-color),var(--v-border-opacity));min-width:20px;min-height:20px;width:20px;height:20px}.v-data-table-progress>th{border:none!important;height:auto!important;padding:0!important}.v-data-table-progress__loader{position:relative}.v-data-table-rows-loading,.v-data-table-rows-no-data{text-align:center}.v-data-table__tr--mobile>.v-data-table__td--expanded-row{grid-template-columns:0;justify-content:center}.v-data-table__tr--mobile>.v-data-table__td--select-row{grid-template-columns:0;justify-content:end}.v-data-table__tr--mobile>td{align-items:center;column-gap:4px;display:grid;grid-template-columns:repeat(2,1fr);min-height:var(--v-table-row-height)}.v-data-table__tr--mobile>td:not(:last-child){border-bottom:0!important}.v-data-table__td-title{font-weight:500;text-align:left}.v-data-table__td-value{text-align:right}.v-data-table__td-sort-icon{color:rgba(var(--v-theme-on-surface),var(--v-disabled-opacity))}.v-data-table__td-sort-icon-active{color:rgba(var(--v-theme-on-surface))}.v-data-table-footer{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-end;padding:8px 4px}.v-data-table-footer__items-per-page{align-items:center;display:flex;justify-content:center}.v-data-table-footer__items-per-page>span{padding-inline-end:8px}.v-data-table-footer__items-per-page>.v-select{width:90px}.v-data-table-footer__info{display:flex;justify-content:flex-end;min-width:116px;padding:0 16px}.v-data-table-footer__paginationz{align-items:center;display:flex;margin-inline-start:16px}.v-data-table-footer__page{padding:0 8px}.v-pagination__list{display:inline-flex;list-style-type:none;justify-content:center;width:100%}.v-pagination__item,.v-pagination__first,.v-pagination__prev,.v-pagination__next,.v-pagination__last{margin:.3rem}.v-table{font-size:.875rem;transition-duration:.28s;transition-property:box-shadow,opacity,background,height;transition-timing-function:cubic-bezier(.4,0,.2,1)}.v-table{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-table .v-table-divider{border-right:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table .v-table__wrapper>table>thead>tr>th{border-bottom:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table .v-table__wrapper>table>tbody>tr:not(:last-child)>td,.v-table .v-table__wrapper>table>tbody>tr:not(:last-child)>th{border-bottom:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table .v-table__wrapper>table>tfoot>tr>td,.v-table .v-table__wrapper>table>tfoot>tr>th{border-top:thin solid rgba(var(--v-border-color),var(--v-border-opacity))}.v-table.v-table--hover>.v-table__wrapper>table>tbody>tr>td{position:relative}.v-table.v-table--hover>.v-table__wrapper>table>tbody>tr:hover>td:after{background:rgba(var(--v-border-color),var(--v-hover-opacity));pointer-events:none}.v-table.v-table--hover>.v-table__wrapper>table>tbody>tr:hover>td:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-table.v-table--fixed-header>.v-table__wrapper>table>thead>tr>th{background:rgb(var(--v-theme-surface));box-shadow:inset 0 -1px 0 rgba(var(--v-border-color),var(--v-border-opacity));z-index:1}.v-table.v-table--fixed-footer>tfoot>tr>th,.v-table.v-table--fixed-footer>tfoot>tr>td{background:rgb(var(--v-theme-surface));box-shadow:inset 0 1px 0 rgba(var(--v-border-color),var(--v-border-opacity))}.v-table{border-radius:inherit;line-height:1.5;max-width:100%;display:flex;flex-direction:column}.v-table>.v-table__wrapper>table{width:100%;border-spacing:0}.v-table>.v-table__wrapper>table>tbody>tr>td,.v-table>.v-table__wrapper>table>tbody>tr>th,.v-table>.v-table__wrapper>table>thead>tr>td,.v-table>.v-table__wrapper>table>thead>tr>th,.v-table>.v-table__wrapper>table>tfoot>tr>td,.v-table>.v-table__wrapper>table>tfoot>tr>th{padding:0 16px;transition-duration:.28s;transition-property:box-shadow,opacity,background,height;transition-timing-function:cubic-bezier(.4,0,.2,1)}.v-table>.v-table__wrapper>table>tbody>tr>td,.v-table>.v-table__wrapper>table>thead>tr>td,.v-table>.v-table__wrapper>table>tfoot>tr>td{height:var(--v-table-row-height)}.v-table>.v-table__wrapper>table>tbody>tr>th,.v-table>.v-table__wrapper>table>thead>tr>th,.v-table>.v-table__wrapper>table>tfoot>tr>th{height:var(--v-table-header-height);font-weight:500;-webkit-user-select:none;user-select:none;text-align:start}.v-table--density-default{--v-table-header-height: 56px;--v-table-row-height: 52px}.v-table--density-comfortable{--v-table-header-height: 48px;--v-table-row-height: 44px}.v-table--density-compact{--v-table-header-height: 40px;--v-table-row-height: 36px}.v-table__wrapper{border-radius:inherit;overflow:auto;flex:1 1 auto}.v-table--has-top>.v-table__wrapper>table>tbody>tr:first-child:hover>td:first-child{border-top-left-radius:0}.v-table--has-top>.v-table__wrapper>table>tbody>tr:first-child:hover>td:last-child{border-top-right-radius:0}.v-table--has-bottom>.v-table__wrapper>table>tbody>tr:last-child:hover>td:first-child{border-bottom-left-radius:0}.v-table--has-bottom>.v-table__wrapper>table>tbody>tr:last-child:hover>td:last-child{border-bottom-right-radius:0}.v-table--fixed-height>.v-table__wrapper{overflow-y:auto}.v-table--fixed-header>.v-table__wrapper>table>thead{position:sticky;top:0;z-index:2}.v-table--fixed-header>.v-table__wrapper>table>thead>tr>th{border-bottom:0px!important}.v-table--fixed-footer>.v-table__wrapper>table>tfoot>tr{position:sticky;bottom:0;z-index:1}.v-table--fixed-footer>.v-table__wrapper>table>tfoot>tr>td,.v-table--fixed-footer>.v-table__wrapper>table>tfoot>tr>th{border-top:0px!important}.v-container{width:100%;padding:16px;margin-right:auto;margin-left:auto}@media (min-width: 960px){.v-container{max-width:900px}}@media (min-width: 1280px){.v-container{max-width:1200px}}@media (min-width: 1920px){.v-container{max-width:1800px}}@media (min-width: 2560px){.v-container{max-width:2400px}}.v-container--fluid{max-width:100%}.v-container.fill-height{align-items:center;display:flex;flex-wrap:wrap}.v-row{display:flex;flex-wrap:wrap;flex:1 1 auto;margin:-12px}.v-row+.v-row{margin-top:12px}.v-row+.v-row--dense{margin-top:4px}.v-row--dense{margin:-4px}.v-row--dense>.v-col,.v-row--dense>[class*=v-col-]{padding:4px}.v-row.v-row--no-gutters{margin:0}.v-row.v-row--no-gutters>.v-col,.v-row.v-row--no-gutters>[class*=v-col-]{padding:0}.v-spacer{flex-grow:1}.v-col-xxl,.v-col-xxl-auto,.v-col-xxl-12,.v-col-xxl-11,.v-col-xxl-10,.v-col-xxl-9,.v-col-xxl-8,.v-col-xxl-7,.v-col-xxl-6,.v-col-xxl-5,.v-col-xxl-4,.v-col-xxl-3,.v-col-xxl-2,.v-col-xxl-1,.v-col-xl,.v-col-xl-auto,.v-col-xl-12,.v-col-xl-11,.v-col-xl-10,.v-col-xl-9,.v-col-xl-8,.v-col-xl-7,.v-col-xl-6,.v-col-xl-5,.v-col-xl-4,.v-col-xl-3,.v-col-xl-2,.v-col-xl-1,.v-col-lg,.v-col-lg-auto,.v-col-lg-12,.v-col-lg-11,.v-col-lg-10,.v-col-lg-9,.v-col-lg-8,.v-col-lg-7,.v-col-lg-6,.v-col-lg-5,.v-col-lg-4,.v-col-lg-3,.v-col-lg-2,.v-col-lg-1,.v-col-md,.v-col-md-auto,.v-col-md-12,.v-col-md-11,.v-col-md-10,.v-col-md-9,.v-col-md-8,.v-col-md-7,.v-col-md-6,.v-col-md-5,.v-col-md-4,.v-col-md-3,.v-col-md-2,.v-col-md-1,.v-col-sm,.v-col-sm-auto,.v-col-sm-12,.v-col-sm-11,.v-col-sm-10,.v-col-sm-9,.v-col-sm-8,.v-col-sm-7,.v-col-sm-6,.v-col-sm-5,.v-col-sm-4,.v-col-sm-3,.v-col-sm-2,.v-col-sm-1,.v-col,.v-col-auto,.v-col-12,.v-col-11,.v-col-10,.v-col-9,.v-col-8,.v-col-7,.v-col-6,.v-col-5,.v-col-4,.v-col-3,.v-col-2,.v-col-1{width:100%;padding:12px}.v-col{flex-basis:0;flex-grow:1;max-width:100%}.v-col-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-3{flex:0 0 25%;max-width:25%}.v-col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-6{flex:0 0 50%;max-width:50%}.v-col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-9{flex:0 0 75%;max-width:75%}.v-col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-12{flex:0 0 100%;max-width:100%}.offset-1{margin-inline-start:8.3333333333%}.offset-2{margin-inline-start:16.6666666667%}.offset-3{margin-inline-start:25%}.offset-4{margin-inline-start:33.3333333333%}.offset-5{margin-inline-start:41.6666666667%}.offset-6{margin-inline-start:50%}.offset-7{margin-inline-start:58.3333333333%}.offset-8{margin-inline-start:66.6666666667%}.offset-9{margin-inline-start:75%}.offset-10{margin-inline-start:83.3333333333%}.offset-11{margin-inline-start:91.6666666667%}@media (min-width: 600px){.v-col-sm{flex-basis:0;flex-grow:1;max-width:100%}.v-col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-sm-3{flex:0 0 25%;max-width:25%}.v-col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-sm-6{flex:0 0 50%;max-width:50%}.v-col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-sm-9{flex:0 0 75%;max-width:75%}.v-col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-sm-12{flex:0 0 100%;max-width:100%}.offset-sm-0{margin-inline-start:0}.offset-sm-1{margin-inline-start:8.3333333333%}.offset-sm-2{margin-inline-start:16.6666666667%}.offset-sm-3{margin-inline-start:25%}.offset-sm-4{margin-inline-start:33.3333333333%}.offset-sm-5{margin-inline-start:41.6666666667%}.offset-sm-6{margin-inline-start:50%}.offset-sm-7{margin-inline-start:58.3333333333%}.offset-sm-8{margin-inline-start:66.6666666667%}.offset-sm-9{margin-inline-start:75%}.offset-sm-10{margin-inline-start:83.3333333333%}.offset-sm-11{margin-inline-start:91.6666666667%}}@media (min-width: 960px){.v-col-md{flex-basis:0;flex-grow:1;max-width:100%}.v-col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-md-3{flex:0 0 25%;max-width:25%}.v-col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-md-6{flex:0 0 50%;max-width:50%}.v-col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-md-9{flex:0 0 75%;max-width:75%}.v-col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-md-12{flex:0 0 100%;max-width:100%}.offset-md-0{margin-inline-start:0}.offset-md-1{margin-inline-start:8.3333333333%}.offset-md-2{margin-inline-start:16.6666666667%}.offset-md-3{margin-inline-start:25%}.offset-md-4{margin-inline-start:33.3333333333%}.offset-md-5{margin-inline-start:41.6666666667%}.offset-md-6{margin-inline-start:50%}.offset-md-7{margin-inline-start:58.3333333333%}.offset-md-8{margin-inline-start:66.6666666667%}.offset-md-9{margin-inline-start:75%}.offset-md-10{margin-inline-start:83.3333333333%}.offset-md-11{margin-inline-start:91.6666666667%}}@media (min-width: 1280px){.v-col-lg{flex-basis:0;flex-grow:1;max-width:100%}.v-col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-lg-3{flex:0 0 25%;max-width:25%}.v-col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-lg-6{flex:0 0 50%;max-width:50%}.v-col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-lg-9{flex:0 0 75%;max-width:75%}.v-col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-lg-12{flex:0 0 100%;max-width:100%}.offset-lg-0{margin-inline-start:0}.offset-lg-1{margin-inline-start:8.3333333333%}.offset-lg-2{margin-inline-start:16.6666666667%}.offset-lg-3{margin-inline-start:25%}.offset-lg-4{margin-inline-start:33.3333333333%}.offset-lg-5{margin-inline-start:41.6666666667%}.offset-lg-6{margin-inline-start:50%}.offset-lg-7{margin-inline-start:58.3333333333%}.offset-lg-8{margin-inline-start:66.6666666667%}.offset-lg-9{margin-inline-start:75%}.offset-lg-10{margin-inline-start:83.3333333333%}.offset-lg-11{margin-inline-start:91.6666666667%}}@media (min-width: 1920px){.v-col-xl{flex-basis:0;flex-grow:1;max-width:100%}.v-col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-xl-3{flex:0 0 25%;max-width:25%}.v-col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-xl-6{flex:0 0 50%;max-width:50%}.v-col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-xl-9{flex:0 0 75%;max-width:75%}.v-col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-xl-12{flex:0 0 100%;max-width:100%}.offset-xl-0{margin-inline-start:0}.offset-xl-1{margin-inline-start:8.3333333333%}.offset-xl-2{margin-inline-start:16.6666666667%}.offset-xl-3{margin-inline-start:25%}.offset-xl-4{margin-inline-start:33.3333333333%}.offset-xl-5{margin-inline-start:41.6666666667%}.offset-xl-6{margin-inline-start:50%}.offset-xl-7{margin-inline-start:58.3333333333%}.offset-xl-8{margin-inline-start:66.6666666667%}.offset-xl-9{margin-inline-start:75%}.offset-xl-10{margin-inline-start:83.3333333333%}.offset-xl-11{margin-inline-start:91.6666666667%}}@media (min-width: 2560px){.v-col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.v-col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.v-col-xxl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.v-col-xxl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.v-col-xxl-3{flex:0 0 25%;max-width:25%}.v-col-xxl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.v-col-xxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.v-col-xxl-6{flex:0 0 50%;max-width:50%}.v-col-xxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.v-col-xxl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.v-col-xxl-9{flex:0 0 75%;max-width:75%}.v-col-xxl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.v-col-xxl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.v-col-xxl-12{flex:0 0 100%;max-width:100%}.offset-xxl-0{margin-inline-start:0}.offset-xxl-1{margin-inline-start:8.3333333333%}.offset-xxl-2{margin-inline-start:16.6666666667%}.offset-xxl-3{margin-inline-start:25%}.offset-xxl-4{margin-inline-start:33.3333333333%}.offset-xxl-5{margin-inline-start:41.6666666667%}.offset-xxl-6{margin-inline-start:50%}.offset-xxl-7{margin-inline-start:58.3333333333%}.offset-xxl-8{margin-inline-start:66.6666666667%}.offset-xxl-9{margin-inline-start:75%}.offset-xxl-10{margin-inline-start:83.3333333333%}.offset-xxl-11{margin-inline-start:91.6666666667%}}.v-expansion-panel{background-color:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-expansion-panel:not(:first-child):after{border-color:rgba(var(--v-border-color),var(--v-border-opacity))}.v-expansion-panel--disabled .v-expansion-panel-title{color:rgba(var(--v-theme-on-surface),.26)}.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay{opacity:.4615384615}.v-expansion-panels{display:flex;flex-wrap:wrap;justify-content:center;list-style-type:none;padding:0;width:100%;position:relative;z-index:1}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active){border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active){border-top-left-radius:0!important;border-top-right-radius:0!important}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active){border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.v-expansion-panels:not(.v-expansion-panels--variant-accordion)>:last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active){border-top-left-radius:0!important;border-top-right-radius:0!important}.v-expansion-panels--variant-accordion>:first-child:not(:last-child){border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.v-expansion-panels--variant-accordion>:last-child:not(:first-child){border-top-left-radius:0!important;border-top-right-radius:0!important}.v-expansion-panels--variant-accordion>:last-child:not(:first-child) .v-expansion-panel-title--active{border-bottom-left-radius:initial;border-bottom-right-radius:initial}.v-expansion-panels--variant-accordion>:not(:first-child):not(:last-child){border-radius:0!important}.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay{transition:.3s border-radius cubic-bezier(.4,0,.2,1)}.v-expansion-panel{flex:1 0 100%;max-width:100%;position:relative;transition:.3s all cubic-bezier(.4,0,.2,1);transition-property:margin-top,border-radius,border,max-width;border-radius:4px}.v-expansion-panel:not(:first-child):after{border-top-style:solid;border-top-width:thin;content:"";left:0;position:absolute;right:0;top:0;transition:.3s opacity cubic-bezier(.4,0,.2,1)}.v-expansion-panel--disabled .v-expansion-panel-title{pointer-events:none}.v-expansion-panel--active:not(:first-child),.v-expansion-panel--active+.v-expansion-panel{margin-top:16px}.v-expansion-panel--active:not(:first-child):after,.v-expansion-panel--active+.v-expansion-panel:after{opacity:0}.v-expansion-panel--active>.v-expansion-panel-title{border-bottom-left-radius:0;border-bottom-right-radius:0}.v-expansion-panel--active>.v-expansion-panel-title:not(.v-expansion-panel-title--static){min-height:31px}.v-expansion-panel__shadow{border-radius:inherit;z-index:-1}.v-expansion-panel__shadow{position:absolute;top:0;left:0;width:100%;height:100%}.v-expansion-panel__shadow{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-expansion-panel-title{align-items:center;text-align:start;border-radius:inherit;display:flex;font-size:.9375rem;line-height:1;min-height:31px;outline:none;padding:8px 24px;position:relative;transition:.3s min-height cubic-bezier(.4,0,.2,1);width:100%;justify-content:space-between}.v-expansion-panel-title:hover>.v-expansion-panel-title__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-expansion-panel-title:focus-visible>.v-expansion-panel-title__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-expansion-panel-title:focus>.v-expansion-panel-title__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-expansion-panel-title__overlay{background-color:currentColor;border-radius:inherit;opacity:0}.v-expansion-panel-title__overlay{position:absolute;top:0;left:0;width:100%;height:100%}.v-expansion-panel-title__icon{display:inline-flex;margin-bottom:-4px;margin-top:-4px;-webkit-user-select:none;user-select:none;margin-inline-start:auto}.v-expansion-panel-text{display:flex}.v-expansion-panel-text__wrapper{padding:8px 24px 16px;flex:1 1 auto;max-width:100%}.v-expansion-panels--variant-accordion>.v-expansion-panel{margin-top:0}.v-expansion-panels--variant-accordion>.v-expansion-panel:after{opacity:1}.v-expansion-panels--variant-popout>.v-expansion-panel{max-width:calc(100% - 32px)}.v-expansion-panels--variant-popout>.v-expansion-panel--active{max-width:calc(100% + 16px)}.v-expansion-panels--variant-inset>.v-expansion-panel{max-width:100%}.v-expansion-panels--variant-inset>.v-expansion-panel--active{max-width:calc(100% - 32px)}.v-expansion-panels--flat>.v-expansion-panel:after{border-top:none}.v-expansion-panels--flat>.v-expansion-panel .v-expansion-panel__shadow{display:none}.v-expansion-panels--tile{border-radius:0}.v-expansion-panels--tile>.v-expansion-panel{border-radius:0}.v-footer{align-items:center;display:flex;flex:1 1 auto;padding:8px 16px;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);transition-property:height,width,transform,max-width,left,right,top,bottom}.v-footer{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-footer--border{border-width:thin;box-shadow:none}.v-footer{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-footer--absolute{position:absolute}.v-footer--fixed{position:fixed}.v-footer{border-radius:0}.v-footer{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-footer--rounded{border-radius:4px}.v-main{flex:1 0 auto;max-width:100%;transition:.2s cubic-bezier(.4,0,.2,1);padding-left:var(--v-layout-left);padding-right:var(--v-layout-right);padding-top:var(--v-layout-top);padding-bottom:var(--v-layout-bottom)}.v-main__scroller{max-width:100%;position:relative}.v-main--scrollable{display:flex}.v-main--scrollable{position:absolute;top:0;left:0;width:100%;height:100%}.v-main--scrollable>.v-main__scroller{flex:1 1 auto;overflow-y:auto;--v-layout-left: 0px;--v-layout-right: 0px;--v-layout-top: 0px;--v-layout-bottom: 0px}.v-navigation-drawer{-webkit-overflow-scrolling:touch;background:rgb(var(--v-theme-surface));display:flex;flex-direction:column;height:100%;max-width:100%;pointer-events:auto;transition-duration:.2s;transition-property:box-shadow,transform,visibility,width,height,left,right,top,bottom;transition-timing-function:cubic-bezier(.4,0,.2,1);position:absolute}.v-navigation-drawer{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-navigation-drawer--border{border-width:thin;box-shadow:none}.v-navigation-drawer{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-navigation-drawer{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-navigation-drawer--rounded{border-radius:4px}.v-navigation-drawer--top,.v-navigation-drawer--bottom{max-height:-webkit-fill-available;overflow-y:auto}.v-navigation-drawer--top{top:0;border-bottom-width:thin}.v-navigation-drawer--bottom{left:0;border-top-width:thin}.v-navigation-drawer--left{top:0;left:0;right:auto;border-right-width:thin}.v-navigation-drawer--right{top:0;left:auto;right:0;border-left-width:thin}.v-navigation-drawer--floating{border:none}.v-navigation-drawer--temporary.v-navigation-drawer--active{box-shadow:0 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-navigation-drawer--sticky{height:auto;transition:box-shadow,transform,visibility,width,height,left,right}.v-navigation-drawer .v-list{overflow:hidden}.v-navigation-drawer__content{flex:0 1 auto;height:100%;max-width:100%;overflow-x:hidden;overflow-y:auto}.v-navigation-drawer__img{height:100%;left:0;position:absolute;top:0;width:100%;z-index:-1}.v-navigation-drawer__img img:not(.v-img__img){height:inherit;object-fit:cover;width:inherit}.v-navigation-drawer__scrim{position:absolute;top:0;left:0;width:100%;height:100%;background:black;opacity:.2;transition:opacity .2s cubic-bezier(.4,0,.2,1);z-index:1}.v-navigation-drawer__prepend,.v-navigation-drawer__append{flex:none;overflow:hidden}.v-rating{max-width:100%;display:inline-flex;white-space:nowrap}.v-rating--readonly{pointer-events:none}.v-rating__wrapper{align-items:center;display:inline-flex;flex-direction:column}.v-rating__wrapper--bottom{flex-direction:column-reverse}.v-rating__item{display:inline-flex;position:relative}.v-rating__item label{cursor:pointer}.v-rating__item .v-btn--variant-plain{opacity:1}.v-rating__item .v-btn{transition-property:transform}.v-rating__item .v-btn .v-icon{transition:inherit;transition-timing-function:cubic-bezier(0,0,.2,1)}.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn{transform:scale(1.25)}.v-rating__item--half{overflow:hidden;position:absolute;clip-path:polygon(0 0,50% 0,50% 100%,0 100%);z-index:1}.v-rating__item--half .v-btn__overlay,.v-rating__item--half:hover .v-btn__overlay{opacity:0}.v-rating__hidden{height:0;opacity:0;position:absolute;width:0}.v-snackbar{justify-content:center;z-index:10000;margin:8px;margin-inline-end:calc(8px + var(--v-scrollbar-offset));padding:var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left)}.v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top){align-items:flex-end}.v-snackbar__wrapper{align-items:center;display:flex;max-width:672px;min-height:48px;min-width:344px;overflow:hidden;padding:0}.v-snackbar__wrapper{border-radius:4px}.v-snackbar--variant-plain,.v-snackbar--variant-outlined,.v-snackbar--variant-text,.v-snackbar--variant-tonal{background:transparent;color:inherit}.v-snackbar--variant-plain{opacity:.62}.v-snackbar--variant-plain:focus,.v-snackbar--variant-plain:hover{opacity:1}.v-snackbar--variant-plain .v-snackbar__overlay{display:none}.v-snackbar--variant-elevated,.v-snackbar--variant-flat{background:rgb(var(--v-theme-surface-variant));color:rgb(var(--v-theme-on-surface-variant))}.v-snackbar--variant-elevated{box-shadow:0 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 6px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 18px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-snackbar--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-snackbar--variant-outlined{border:thin solid currentColor}.v-snackbar--variant-text .v-snackbar__overlay{background:currentColor}.v-snackbar--variant-tonal .v-snackbar__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-snackbar .v-snackbar__underlay{position:absolute}.v-snackbar__content{flex-grow:1;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;line-height:1.425;margin-right:auto;padding:14px 16px;text-align:initial}.v-snackbar__actions{align-items:center;align-self:center;display:flex;margin-inline-end:8px}.v-snackbar__actions>.v-btn{padding:0 8px;min-width:auto}.v-snackbar__timer{width:100%;position:absolute;top:0}.v-snackbar__timer .v-progress-linear{transition:.2s linear}.v-snackbar--absolute{position:absolute;z-index:1}.v-snackbar--multi-line .v-snackbar__wrapper{min-height:68px}.v-snackbar--vertical .v-snackbar__wrapper{flex-direction:column}.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{align-self:flex-end;margin-bottom:8px}.v-snackbar--center{align-items:center;justify-content:center}.v-snackbar--top{align-items:flex-start}.v-snackbar--bottom{align-items:flex-end}.v-snackbar--left,.v-snackbar--start{justify-content:flex-start}.v-snackbar--right,.v-snackbar--end{justify-content:flex-end}.v-snackbar-transition-enter-active,.v-snackbar-transition-leave-active{transition-duration:.15s;transition-timing-function:cubic-bezier(0,0,.2,1)}.v-snackbar-transition-enter-active{transition-property:opacity,transform}.v-snackbar-transition-enter-from{opacity:0;transform:scale(.8)}.v-snackbar-transition-leave-active{transition-property:opacity}.v-snackbar-transition-leave-to{opacity:0}.v-switch .v-label{padding-inline-start:10px}.v-switch__loader{display:flex}.v-switch__loader .v-progress-circular{color:rgb(var(--v-theme-surface))}.v-switch__track,.v-switch__thumb{transition:none}.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb{background-color:rgb(var(--v-theme-error));color:rgb(var(--v-theme-on-error))}.v-switch__track-true{margin-inline-end:auto}.v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true{opacity:0}.v-switch__track-false{margin-inline-start:auto}.v-selection-control--dirty .v-switch__track-false{opacity:0}.v-switch__track{display:inline-flex;align-items:center;font-size:.5rem;padding:0 5px;background-color:rgb(var(--v-theme-surface-variant));border-radius:9999px;height:14px;opacity:.6;min-width:36px;cursor:pointer;transition:.2s background-color cubic-bezier(.4,0,.2,1)}.v-switch--inset .v-switch__track{border-radius:9999px;font-size:.75rem;height:32px;min-width:52px}.v-switch__thumb{align-items:center;background-color:rgb(var(--v-theme-surface-bright));color:rgb(var(--v-theme-on-surface-bright));border-radius:50%;display:flex;font-size:.75rem;height:20px;justify-content:center;width:20px;pointer-events:none;transition:.15s .05s transform cubic-bezier(0,0,.2,1),.2s color cubic-bezier(.4,0,.2,1),.2s background-color cubic-bezier(.4,0,.2,1);position:relative;overflow:hidden}.v-switch:not(.v-switch--inset) .v-switch__thumb{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb{background:rgb(var(--v-theme-surface-variant));color:rgb(var(--v-theme-on-surface-variant))}.v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-switch--inset .v-switch__thumb{height:24px;width:24px;transform:scale(.6666666667)}.v-switch--inset .v-switch__thumb--filled{transform:none}.v-switch--inset .v-selection-control--dirty .v-switch__thumb{transform:none;transition:.15s .05s transform cubic-bezier(0,0,.2,1)}.v-switch.v-input{flex:0 1 auto}.v-switch .v-selection-control{min-height:var(--v-input-control-height)}.v-switch .v-selection-control__input{border-radius:50%;transition:.2s transform cubic-bezier(.4,0,.2,1);position:absolute}.v-locale--is-ltr.v-switch .v-selection-control__input,.v-locale--is-ltr .v-switch .v-selection-control__input{transform:translate(-10px)}.v-locale--is-rtl.v-switch .v-selection-control__input,.v-locale--is-rtl .v-switch .v-selection-control__input{transform:translate(10px)}.v-switch .v-selection-control__input .v-icon{position:absolute}.v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input,.v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input{transform:translate(10px)}.v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input,.v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input{transform:translate(-10px)}.v-switch.v-switch--indeterminate .v-selection-control__input{transform:scale(.8)}.v-switch.v-switch--indeterminate .v-switch__thumb{transform:scale(.75);box-shadow:none}.v-switch.v-switch--inset .v-selection-control__wrapper{width:auto}.v-switch.v-input--vertical .v-label{min-width:max-content}.v-switch.v-input--vertical .v-selection-control__wrapper{transform:rotate(-90deg)}@media (forced-colors: active){.v-switch .v-switch__loader .v-progress-circular{color:currentColor}.v-switch .v-switch__thumb{background-color:buttontext}.v-switch .v-switch__track,.v-switch .v-switch__thumb{border:1px solid;color:buttontext}.v-switch:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb{background-color:highlight}.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track{background-color:highlight}.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track,.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb{color:highlight}.v-switch.v-switch--inset .v-switch__track{border-width:2px}.v-switch.v-switch--inset:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb{background-color:highlighttext;color:highlighttext}.v-switch.v-input--disabled .v-switch__thumb{background-color:graytext}.v-switch.v-input--disabled .v-switch__track,.v-switch.v-input--disabled .v-switch__thumb{color:graytext}.v-switch.v-switch--loading .v-switch__thumb{background-color:canvas}.v-switch.v-switch--loading.v-switch--inset .v-switch__thumb,.v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb{border-width:0}}.v-textarea .v-field{--v-textarea-control-height: var(--v-input-control-height)}.v-textarea .v-field__field{--v-input-control-height: var(--v-textarea-control-height)}.v-textarea .v-field__input{flex:1 1 auto;outline:none;-webkit-mask-image:linear-gradient(to bottom,transparent,transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px),black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));mask-image:linear-gradient(to bottom,transparent,transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px),black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px))}.v-textarea .v-field__input.v-textarea__sizer{visibility:hidden;position:absolute;top:0;left:0;height:0!important;min-height:0!important;pointer-events:none}.v-textarea--no-resize .v-field__input{resize:none}.v-textarea .v-field--no-label textarea,.v-textarea .v-field--active textarea{opacity:1}.v-textarea textarea{opacity:0;flex:1;min-width:0;transition:.15s opacity cubic-bezier(.4,0,.2,1)}.v-textarea textarea:focus,.v-textarea textarea:active{outline:none}.v-textarea textarea:invalid{box-shadow:none}.v-tooltip>.v-overlay__content{background:rgb(var(--v-theme-bluegrey));color:rgb(var(--v-theme-on-surface-variant));border-radius:4px;font-size:.875rem;line-height:1.6;display:inline-block;padding:5px 16px;text-transform:initial;width:auto;opacity:1;pointer-events:none;transition-property:opacity,transform;overflow-wrap:break-word}.v-tooltip>.v-overlay__content[class*=enter-active]{transition-timing-function:cubic-bezier(0,0,.2,1);transition-duration:.15s}.v-tooltip>.v-overlay__content[class*=leave-active]{transition-timing-function:cubic-bezier(.4,0,1,1);transition-duration:75ms}.divider[data-v-c00c2563]{position:relative;height:24px}.divider__divider-line[data-v-c00c2563]{position:absolute;top:50%;width:100%;transform:translateY(-50%)}.divider__btn[data-v-c00c2563]{position:absolute;top:0;left:50%;transform:translate(-50%);opacity:1}.divider[data-v-c00c2563]:hover{cursor:pointer}.divider:hover .divider__divider-line[data-v-c00c2563]{background-color:#fff}.divider:hover .divider__btn[data-v-c00c2563]{color:#fff!important}.cell[data-v-09a4d2b3]{padding:18px;display:flex;margin-bottom:2px}.cell--dev[data-v-09a4d2b3]{margin-bottom:16px}.message-btn--alert[data-v-09a4d2b3]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSIjQUU5RkU4Ij48cGF0aCBkPSJNMTMuMzA1IDIyLjVMMTIgMjEuNzVMMTUgMTYuNUgxOS41QzE5Ljg5NzggMTYuNSAyMC4yNzk0IDE2LjM0MiAyMC41NjA3IDE2LjA2MDdDMjAuODQyIDE1Ljc3OTQgMjEgMTUuMzk3OCAyMSAxNVY2QzIxIDUuNjAyMTggMjAuODQyIDUuMjIwNjQgMjAuNTYwNyA0LjkzOTM0QzIwLjI3OTQgNC42NTgwNCAxOS44OTc4IDQuNSAxOS41IDQuNUg0LjVDNC4xMDIxOCA0LjUgMy43MjA2NCA0LjY1ODA0IDMuNDM5MzQgNC45MzkzNEMzLjE1ODA0IDUuMjIwNjQgMyA1LjYwMjE4IDMgNlYxNUMzIDE1LjM5NzggMy4xNTgwNCAxNS43Nzk0IDMuNDM5MzQgMTYuMDYwN0MzLjcyMDY0IDE2LjM0MiA0LjEwMjE4IDE2LjUgNC41IDE2LjVIMTEuMjVWMThINC41QzMuNzA0MzUgMTggMi45NDEyOSAxNy42ODM5IDIuMzc4NjggMTcuMTIxM0MxLjgxNjA3IDE2LjU1ODcgMS41IDE1Ljc5NTYgMS41IDE1VjZDMS41IDUuMjA0MzUgMS44MTYwNyA0LjQ0MTI5IDIuMzc4NjggMy44Nzg2OEMyLjk0MTI5IDMuMzE2MDcgMy43MDQzNSAzIDQuNSAzSDE5LjVDMjAuMjk1NiAzIDIxLjA1ODcgMy4zMTYwNyAyMS42MjEzIDMuODc4NjhDMjIuMTgzOSA0LjQ0MTI5IDIyLjUgNS4yMDQzNSAyMi41IDZWMTVDMjIuNSAxNS43OTU2IDIyLjE4MzkgMTYuNTU4NyAyMS42MjEzIDE3LjEyMTNDMjEuMDU4NyAxNy42ODM5IDIwLjI5NTYgMTggMTkuNSAxOEgxNS44N0wxMy4zMDUgMjIuNVoiIGZpbGw9IiNBRTlGRTgiLz48L3N2Zz4=);background-position:center;background-repeat:no-repeat;transition:none}.message-btn__counter[data-v-09a4d2b3]{margin-bottom:4px}.delete-cell[data-v-09a4d2b3]:hover{background-color:#6e3d41}.content[data-v-09a4d2b3]{flex:1;margin-left:16px;margin-right:0;width:calc(100% - 36px)}.indicator[data-v-09a4d2b3]{border-radius:4px}.header[data-v-09a4d2b3]{display:flex;justify-content:space-between;margin-bottom:16px}.code[data-v-09a4d2b3],.outcome[data-v-09a4d2b3]{padding:0}.code--dev[data-v-09a4d2b3],.outcome--dev[data-v-09a4d2b3]{border:1px solid rgba(var(--v-theme-bluegrey));border-radius:4px;padding:12px}.code[data-v-09a4d2b3]{margin-bottom:16px}.click-edit[data-v-09a4d2b3]{width:calc(100% - 135px)}.click-edit__name[data-v-09a4d2b3]{cursor:text;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.click-edit__show-text[data-v-09a4d2b3],.click-edit__edit-field-wrapper[data-v-09a4d2b3]{height:100%;display:flex;align-items:center}.click-edit__name[data-v-09a4d2b3]:hover{cursor:text;padding-left:3px;padding-right:3px;border:1px solid #294455}.click-edit__static-name[data-v-09a4d2b3]{cursor:text;font-weight:400;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.click-edit__edit-field[data-v-09a4d2b3]{margin-top:-11px}.click-edit__edit-field[data-v-09a4d2b3] .v-field__input{font-size:1rem;letter-spacing:normal}.click-edit .actions[data-v-09a4d2b3]{display:flex;align-items:center}.click-edit .loading-wrapper[data-v-09a4d2b3]{display:flex;align-items:center;margin-right:8px}.click-edit .green-loader[data-v-09a4d2b3]{color:rgba(var(--v-theme-success))}.app-static-name[data-v-062456ec]{cursor:text;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}[data-v-062456ec] .plot-container{overflow:auto}.markdown-content[data-v-d5250b54]{font-family:Arial,sans-serif;line-height:1.6;color:#fff}.markdown-content h1[data-v-d5250b54],h2[data-v-d5250b54],h3[data-v-d5250b54],h4[data-v-d5250b54],h5[data-v-d5250b54],h6[data-v-d5250b54]{margin-top:1.5em;margin-bottom:.5em;font-weight:700;line-height:1.3}.markdown-content p[data-v-d5250b54]{margin-top:0;margin-bottom:1em}.markdown-content ul[data-v-d5250b54],ol[data-v-d5250b54]{padding-left:20px;margin-top:.5em;margin-bottom:.5em}.markdown-content ul[data-v-d5250b54]{list-style-type:disc}.markdown-content ol[data-v-d5250b54]{list-style-type:decimal}.markdown-content li[data-v-d5250b54]{margin-bottom:.25em}.markdown-content a[data-v-d5250b54]{color:#007bff;text-decoration:none}.markdown-content a[data-v-d5250b54]:hover{text-decoration:underline}.markdown-content img[data-v-d5250b54]{max-width:100%;height:auto}.markdown-content blockquote[data-v-d5250b54]{margin:0;padding-left:1em;color:#6a737d;border-left:.25em solid #dfe2e5}.tox{box-shadow:none;box-sizing:content-box;color:#2a3746;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox *:not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox *:not(svg):not(rect){background:transparent;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:1px solid #000000;border-radius:0;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#222f3e;border:1px solid #000000;border-radius:0;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;z-index:1300}.tox-tinymce *:focus,.tox-tinymce-aux *:focus{outline:none}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:3px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:#1e71aa66;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#207ab7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus{background-color:#1c6ca1}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#185d8c}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:#ffa50080;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus{background-color:#f2d574;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:#cc000080;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus{background-color:#e9a4a4;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:#78ab4680;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>*:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>*:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>*:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .mce-codemirror{background:#fff;bottom:0;font-size:13px;left:0;position:absolute;right:0;top:0;z-index:1}.tox .mce-codemirror.tox-inline-codemirror{margin:8px;position:absolute}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#000;border-radius:0;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar,.tox .tox-bottom-anchorbar,.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#207ab7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#207ab7;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:none;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button:before{border-radius:3px;bottom:-1px;box-shadow:inset 0 0 0 1px #fff,0 0 0 2px #207ab7;content:"";left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#207ab7;background-image:none;border-color:#207ab7;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:focus:not(:disabled):before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#114060;background-image:none;border-color:#114060;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#3d546f;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#3d546f;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;color:#fff;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:none;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#3d546f;background-image:none;border-color:#3d546f;box-shadow:none;color:#ffffff80}.tox .tox-button--secondary:focus:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:hover:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:active:not(:disabled){background-color:#2b3b4e;background-image:none;border-color:#2b3b4e;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled{background-color:#346085;background-image:none;border-color:#346085;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#346085;background-image:none;border-color:#346085;box-shadow:none;color:#ffffff80}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#2d5373;background-image:none;border-color:#2d5373;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#2d5373;background-image:none;border-color:#2d5373;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#264560;background-image:none;border-color:#264560;box-shadow:none;color:#fff}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked[disabled]{background-color:#3d546f;border-color:#3d546f;box-shadow:none;color:#ffffff80}.tox .tox-button--naked:hover:not(:disabled){background-color:#34485f;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--naked:focus:not(:disabled){background-color:#34485f;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--naked:active:not(:disabled){background-color:#2b3b4e;border-color:#2b3b4e;box-shadow:none;color:#fff}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#fff}.tox .tox-checkbox{align-items:center;border-radius:3px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:3px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:3px;width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:#fff3}@media (forced-colors: active){.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:currentColor!important}}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#207ab7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#207ab7}.tox .tox-checkbox--disabled{color:#ffffff80;cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:#ffffff80}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:#ffffff80}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:#ffffff80}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:3px;box-shadow:inset 0 0 0 1px #207ab7;padding:3px}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#1a1a1a;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#333;color:#fff;cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#fff;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item,.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#2b3b4e;color:#fff}.tox .tox-collection--list .tox-collection__item--active{background-color:#4a5562}.tox .tox-collection--toolbar .tox-collection__item--enabled,.tox .tox-collection--toolbar .tox-collection__item--enabled.tox-collection__item--active,.tox .tox-collection--toolbar .tox-collection__item--enabled.tox-collection__item--active:hover{background-color:#757d87;color:#fff}@media (forced-colors: active){.tox .tox-collection--toolbar .tox-collection__item--enabled,.tox .tox-collection--toolbar .tox-collection__item--enabled.tox-collection__item--active,.tox .tox-collection--toolbar .tox-collection__item--enabled.tox-collection__item--active:hover{border-radius:3px;outline:solid 1px}}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#2b3b4e;position:relative}.tox .tox-collection--toolbar .tox-collection__item--active:hover{background-color:#4a5562;color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active:focus{background-color:#4a5562;color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-collection--toolbar .tox-collection__item--active:focus:after{border:2px solid highlight}}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#757d87;color:#fff}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#4a5562;color:#fff;position:relative;z-index:1}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent "inset";content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus:after{border:2px solid highlight}}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}@media (forced-colors: active){.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){border:solid 1px}}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}@media (forced-colors: active){.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):hover{border-radius:3px;outline:solid 1px}}.tox .tox-collection__item-icon,.tox .tox-collection__item-checkmark{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-icon svg,.tox .tox-collection__item-checkmark svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:currentColor;display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret:after{content:"";font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:currentColor}.tox .tox-collection__item--state-disabled{background-color:transparent;color:#ffffff80;cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:#ffffff80}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#2b3b4e;border:1px solid #1a1a1a;border-radius:3px;box-shadow:0 0 2px #2a374633,0 4px 8px #2a374626;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:34px;margin:3px 0 2px;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid #000000}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>*:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid #000000}.tox[dir=rtl] .tox-collection--list .tox-collection__item>*:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}@media (forced-colors: active){.tox .tox-hue-slider,.tox .tox-rgb-form .tox-rgba-preview{background-color:currentColor!important;border:1px solid highlight!important;forced-color-adjust:none}}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:none;border:1px solid black;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid white;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,#f00,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,#f00);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:white;border:1px solid black;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid black;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette,.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__primary .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches{margin:2px 0 3px 4px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px 0}.tox .tox-swatches__row{display:flex}@media (forced-colors: active){.tox .tox-swatches__row{forced-color-adjust:none}}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:hover,.tox .tox-swatch:focus{box-shadow:0 0 0 1px #7f7f7f4d inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:none;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#fff;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#4a5562}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#fff;height:24px;margin:3px;width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#2b3b4e;position:relative}.tox .tox-comment-thread>*:not(:first-child){margin-top:8px}.tox .tox-comment{background:#2b3b4e;border:1px solid #000000;border-radius:3px;box-shadow:0 4px 8px #2a37461a;padding:8px 8px 16px;position:relative}.tox .tox-comment__header{align-items:center;color:#fff;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#fff;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#fff;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:#ffffff80;font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay:after{background:#2b3b4e;bottom:0;content:"";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>*:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient:after{background:linear-gradient(rgba(43,59,78,0),#2b3b4e);bottom:0;content:"";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#2b3b4e;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#fff;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#2b3b4e;box-shadow:0 0 8px 8px #2b3b4e;color:#fff;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#2b3b4e;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>*:last-child,.tox:not([dir=rtl]) .tox-comment__edit>*:last-child,.tox:not([dir=rtl]) .tox-comment__reply>*:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>*:last-child,.tox[dir=rtl] .tox-comment__edit>*:last-child,.tox[dir=rtl] .tox-comment__reply>*:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:#ffffff80}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#fff;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar svg,.tox:not([dir=rtl]) .tox-user__avatar img{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar svg,.tox[dir=rtl] .tox-user__avatar img{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:#222f3ebf;bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#222f3e}.tox .tox-dialog{background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:0 16px 16px -10px #2a374626,0 0 40px 1px #2a374626;display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 16px);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#2b3b4e;border-bottom:none;color:#fff;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#fff;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px}@media only screen and (min-width: 768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:#ffffff80;display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:#207ab71a}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #207ab7;color:#207ab7}@media (forced-colors: active){.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid highlight;color:highlight}}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>*:first-child{margin-top:0}.tox .tox-dialog__body-content>*:last-child{margin-bottom:0}.tox .tox-dialog__body-content>*:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#207ab7;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:hover,.tox .tox-dialog__body-content a:focus{color:#114060;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #207ab7;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#092335;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#fff}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content ul,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content dd{padding-inline-start:2.5rem}.tox .tox-dialog__body-content ul,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content dl{margin-bottom:16px}.tox .tox-dialog__body-content ul,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dt{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#fff;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#fff;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#2b3b4e;border-top:1px solid #000000;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-start,.tox .tox-dialog__footer-end{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:#222f3ebf;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #000000}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered:before{border:1px solid #000000;border-radius:3px;content:"";top:0;right:0;bottom:0;left:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered iframe{border-radius:3px}.tox .tox-navobj-bordered-focus.tox-navobj-bordered:before{border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width: 767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #000000;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:#ffffff80;margin:0 0 16px}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area:before{border:0 solid transparent;border-radius:4px;content:"";top:0;right:0;bottom:0;left:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}@media (forced-colors: active){.tox .tox-edit-area:before{border:0 solid highlight}}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area:before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #000000}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#222f3e;border-bottom:none;box-shadow:none;padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #000000;box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#222f3e;box-shadow:0 4px 4px -3px #00000040;padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px #00000040}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:none;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-custom-preview{border-color:#000;border-radius:3px;border-style:solid;border-width:1px;flex:1;padding:8px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:#2a374633;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}@media (forced-colors: active){.tox .tox-color-input span{border-color:currentColor;border-width:2px!important;forced-color-adjust:none}}.tox .tox-color-input span:hover:not([aria-disabled=true]),.tox .tox-color-input span:focus:not([aria-disabled=true]){border-color:#207ab7;cursor:pointer}.tox .tox-color-input span:before{background-image:linear-gradient(45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(255,255,255,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(255,255,255,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #2b3b4e;border-radius:3px;box-sizing:border-box;content:"";height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}@media (forced-colors: active){.tox .tox-color-input span:before{border:none}}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:#ffffff80;display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - 4px)}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - 4px)}.tox .tox-form__controls-h-stack,.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>*:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>*:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-textfield,.tox .tox-toolbar-textfield,.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:none;padding:5px 4.75px;resize:none;width:100%}.tox .tox-textfield[disabled],.tox .tox-textarea[disabled]{background-color:#222f3e;color:#ffffffd9;cursor:not-allowed}.tox .tox-textfield:focus,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-custom-editor:focus-within{background-color:#2b3b4e;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#207ab7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#fff}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#19232e;color:#ffffffd9;cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#fff}@media (forced-colors: active){.tox .tox-listbox__select-chevron svg{fill:currentColor!important}}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:none;padding:5px 4.75px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#19232e;color:#ffffffd9;cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#2b3b4e;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size="0"],.tox:not([dir=rtl]) .tox-selectfield select[size="1"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size="0"],.tox[dir=rtl] .tox-selectfield select[size="1"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#000;border-radius:3px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox.tox-tinymce.tox-fullscreen,.tox-shadowhost.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:black;filter:alpha(opacity=50);opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid white;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{background-color:#222f3e;display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:#000;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:0 -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:#207ab780;border-color:#207ab780}@media (forced-colors: active){.tox .tox-insert-table-picker .tox-insert-table-picker__selected{border-color:Highlight;filter:contrast(50%)}}.tox .tox-insert-table-picker__label{color:#fff;display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#2b3b4e;border:1px solid #000000;border-radius:3px;box-shadow:0 4px 8px #2a37461a;display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--toolbar,.tox .tox-menu.tox-collection.tox-collection--grid{padding:4px}@media only screen and (min-width: 768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p,.tox .tox-menu__label blockquote,.tox .tox-menu__label code{margin:0}.tox .tox-menubar{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #222f3e;background-color:#222f3e;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1 / -1;grid-row:1;padding:0 4px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #222f3e;background-color:#222f3e;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:#222f3e;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:2px 0 3px;outline:none;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:#222f3e;border:0;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#4a5562;border:0;box-shadow:none;color:#fff;position:relative;z-index:1}.tox .tox-mbtn:focus:not(:disabled):after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-mbtn:focus:not(:disabled):after{border:2px solid highlight}}.tox .tox-mbtn--active,.tox .tox-mbtn:not(:disabled).tox-mbtn--active:focus{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-left:auto;margin-right:auto;margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity .15s ease-in;width:-moz-max-content;width:max-content}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification:focus{border-color:#207ab7;box-shadow:none}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#334840;border-color:#3c5440;color:#fff}.tox .tox-notification--success p{color:#fff}.tox .tox-notification--success a{color:#b5d199}.tox .tox-notification--success a:hover,.tox .tox-notification--success a:focus{color:#82b153;text-decoration:underline}.tox .tox-notification--success a:focus-visible{border-radius:1px;outline:2px solid #b5d199;outline-offset:2px}.tox .tox-notification--success a:active{color:#689041;text-decoration:underline}.tox .tox-notification--success svg{fill:#fff}.tox .tox-notification--error{background-color:#442632;border-color:#55212b;color:#fff}.tox .tox-notification--error p{color:#fff}.tox .tox-notification--error a{color:#e68080}.tox .tox-notification--error a:hover,.tox .tox-notification--error a:focus{color:#d42b2b;text-decoration:underline}.tox .tox-notification--error a:focus-visible{border-radius:1px;outline:2px solid #e68080;outline-offset:2px}.tox .tox-notification--error a:active{color:#a22;text-decoration:underline}.tox .tox-notification--error svg{fill:#fff}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#222f3e;border-color:#000;color:#fff0b3}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#fff0b3}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#fc0}.tox .tox-notification--warn a:hover,.tox .tox-notification--warning a:hover,.tox .tox-notification--warn a:focus,.tox .tox-notification--warning a:focus{color:#997a00;text-decoration:underline}.tox .tox-notification--warn a:focus-visible,.tox .tox-notification--warning a:focus-visible{border-radius:1px;outline:2px solid #ffcc00;outline-offset:2px}.tox .tox-notification--warn a:active,.tox .tox-notification--warning a:active{color:#665200;text-decoration:underline}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#fff0b3}.tox .tox-notification--info{background-color:#254161;border-color:#264972;color:#fff}.tox .tox-notification--info p{color:#fff}.tox .tox-notification--info a{color:#83b7f3}.tox .tox-notification--info a:hover,.tox .tox-notification--info a:focus{color:#2681ea;text-decoration:underline}.tox .tox-notification--info a:focus-visible{border-radius:1px;outline:2px solid #83b7f3;outline-offset:2px}.tox .tox-notification--info a:active{color:#1368c9;text-decoration:underline}.tox .tox-notification--info svg{fill:#fff}.tox .tox-notification__body{align-self:center;color:#fff;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-notification-container-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-notification-container-dock-fadein{opacity:1;visibility:visible}.tox .tox-notification-container-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-notification-container-dock-transition.tox-notification-container-dock-fadein{transition-delay:0s}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition:before,.tox .tox-pop--transition:after{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#222f3e;border:1px solid #000000;border-radius:3px;box-shadow:0 0 2px #2a374633,0 4px 8px #2a374626;min-width:0;overflow:hidden}.tox .tox-pop__dialog>*:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop:before,.tox .tox-pop:after{border-style:solid;content:"";display:block;height:0;opacity:1;position:absolute;width:0}@media (forced-colors: active){.tox .tox-pop:before,.tox .tox-pop:after{content:none}}.tox .tox-pop.tox-pop--inset:before,.tox .tox-pop.tox-pop--inset:after{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom:before,.tox .tox-pop.tox-pop--bottom:after{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom:after{border-color:#222f3e transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom:before{border-color:#000000 transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top:before,.tox .tox-pop.tox-pop--top:after{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top:after{border-color:transparent transparent #222f3e transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top:before{border-color:transparent transparent #000000 transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left:before,.tox .tox-pop.tox-pop--left:after{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left:after{border-color:transparent #222f3e transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left:before{border-color:transparent #000000 transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right:before,.tox .tox-pop.tox-pop--right:after{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right:after{border-color:transparent transparent transparent #222f3e;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right:before{border-color:transparent transparent transparent #000000;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left:before,.tox .tox-pop.tox-pop--align-left:after{left:20px}.tox .tox-pop.tox-pop--align-right:before,.tox .tox-pop.tox-pop--align-right:after{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#222f3e;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container,.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #000000;border-radius:3px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#207ab7;border:2px solid #185d8c;border-radius:3px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translate(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:#ffffff80;border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#222f3e;border-top:1px solid #000000;color:#fff;display:flex;flex:0 0 auto;font-size:12px;font-weight:400;height:18px;overflow:hidden;padding:0 8px;position:relative;text-transform:uppercase}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between}@media only screen and (min-width: 768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width: 767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:#fff;position:relative;text-decoration:none}.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]){color:#fff;cursor:pointer}.tox .tox-statusbar a:focus-visible:after,.tox .tox-statusbar__path-item:focus-visible:after,.tox .tox-statusbar__wordcount:focus-visible:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-statusbar a:focus-visible:after,.tox .tox-statusbar__path-item:focus-visible:after,.tox .tox-statusbar__wordcount:focus-visible:after{border:2px solid highlight}}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin:3px -5px 3px 4px;padding-bottom:0;padding-left:0;padding-right:0;position:relative}.tox .tox-statusbar__resize-handle svg{display:block;fill:#ffffff80}.tox .tox-statusbar__resize-handle:hover svg,.tox .tox-statusbar__resize-handle:focus svg{fill:#fff}.tox .tox-statusbar__resize-handle:focus-visible{background-color:transparent;border-radius:1px 1px -4px;box-shadow:0 0 0 2px transparent}.tox .tox-statusbar__resize-handle:focus-visible:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-statusbar__resize-handle:focus-visible:after{border:2px solid highlight}}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:#222f3e99;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:#222f3e;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:3px 0 2px;outline:none;padding:0;text-transform:none;width:34px}@media (forced-colors: active){.tox .tox-tbtn:hover,.tox .tox-tbtn.tox-tbtn:hover{outline:1px dashed currentColor}.tox .tox-tbtn.tox-tbtn--active,.tox .tox-tbtn.tox-tbtn--enabled,.tox .tox-tbtn.tox-tbtn--enabled:hover,.tox .tox-tbtn.tox-tbtn--enabled:focus,.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){outline:1px solid currentColor;position:relative}}.tox .tox-tbtn svg{display:block;fill:#fff}@media (forced-colors: active){.tox .tox-tbtn svg{fill:currentColor!important}.tox .tox-tbtn svg.tox-tbtn--enabled,.tox .tox-tbtn svg:focus:not(.tox-tbtn--disabled){fill:currentColor!important}.tox .tox-tbtn svg.tox-tbtn--disabled,.tox .tox-tbtn svg.tox-tbtn--disabled:hover,.tox .tox-tbtn svg .tox-tbtn:disabled,.tox .tox-tbtn svg .tox-tbtn:disabled:hover{filter:contrast(0%)}}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#4a5562;border:0;box-shadow:none;position:relative;z-index:1}.tox .tox-tbtn:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-tbtn:focus:after{border:2px solid highlight}}.tox .tox-tbtn:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:hover svg{fill:#fff}.tox .tox-tbtn:active{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:active svg{fill:#fff}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:#ffffff80}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:#222f3e;border:0;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:#ffffff80}.tox .tox-tbtn--active,.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover,.tox .tox-tbtn--enabled:focus{background:#757d87;border:0;box-shadow:none;color:#fff;position:relative}.tox .tox-tbtn--active>*,.tox .tox-tbtn--enabled>*,.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled:focus>*{transform:none}.tox .tox-tbtn--active svg,.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg,.tox .tox-tbtn--enabled:focus svg{fill:#fff}.tox .tox-tbtn--active.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:focus.tox-tbtn--disabled svg{fill:#ffffff80}.tox .tox-tbtn--enabled:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-tbtn--enabled:focus:after{border:2px solid highlight}}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#fff}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#fff}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:51px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:68px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{background:transparent;border-radius:3px;display:flex;margin:3px 0 2px;position:relative;width:auto}.tox .tox-number-input:focus{background:#4a5562}.tox .tox-number-input:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-number-input:focus:after{border:2px solid highlight}}.tox .tox-number-input .tox-input-wrapper{display:flex;pointer-events:none;position:relative;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background-color:#4a5562;z-index:1}.tox .tox-number-input .tox-input-wrapper:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-number-input .tox-input-wrapper:focus:after{border:2px solid highlight}}.tox .tox-number-input .tox-input-wrapper:has(input:focus):after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-number-input .tox-input-wrapper:has(input:focus):after{border:2px solid highlight}}.tox .tox-number-input input{border-radius:3px;color:#fff;font-size:14px;margin:2px 0;pointer-events:all;position:relative;width:60px}.tox .tox-number-input input:hover{background:#4a5562;color:#fff}.tox .tox-number-input input:focus{background-color:#4a5562}.tox .tox-number-input input:disabled{background:#222f3e;border:0;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-number-input button{color:#fff;height:34px;position:relative;text-align:center;width:24px}@media (forced-colors: active){.tox .tox-number-input button:hover,.tox .tox-number-input button:focus,.tox .tox-number-input button:active{outline:1px solid currentColor!important}}.tox .tox-number-input button svg{display:block;fill:#fff;margin:0 auto;transform:scale(.67)}@media (forced-colors: active){.tox .tox-number-input button svg,.tox .tox-number-input button svg:active,.tox .tox-number-input button svg:hover{fill:currentColor!important}.tox .tox-number-input button svg:disabled{filter:contrast(0)}}.tox .tox-number-input button:focus{background:#4a5562;z-index:1}.tox .tox-number-input button:focus:after{border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-number-input button:focus:after{border:2px solid highlight}}.tox .tox-number-input button:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:hover svg{fill:#fff}.tox .tox-number-input button:active{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:active svg{fill:#fff}.tox .tox-number-input button:disabled{background:#222f3e;border:0;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:#ffffff80}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>button,.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper{background:#4a5562}.tox .tox-tbtn--select{margin:3px 0 2px;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:#ffffff80}@media (forced-colors: active){.tox .tox-tbtn__select-chevron svg{fill:currentColor}}.tox .tox-tbtn--bespoke{background:transparent}.tox .tox-tbtn--bespoke:focus{background:#4a5562}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:0}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:3px 0 2px}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #4a5562 inset}.tox .tox-split-button:focus{background:#4a5562;box-shadow:none;color:#fff;position:relative;z-index:1}.tox .tox-split-button:focus:after{pointer-events:none;border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-split-button:focus:after{border:2px solid highlight}}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button>*:nth-child(1){border-bottom-left-radius:3px;border-top-left-radius:3px}.tox .tox-split-button>*:nth-child(2){border-bottom-right-radius:3px;border-top-right-radius:3px}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:#ffffff80}@media (forced-colors: active){.tox .tox-split-button__chevron svg{fill:currentColor}}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button:focus .tox-tbtn{background-color:transparent}.tox .tox-split-button.tox-tbtn--disabled:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus{background:#222f3e;box-shadow:none;color:#ffffff80}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#222f3e}.tox .tox-toolbar,.tox .tox-toolbar__primary,.tox .tox-toolbar__overflow{background-attachment:local;background-color:#222f3e;background-image:repeating-linear-gradient(#000000 0px 1px,transparent 1px 39px);background-position:center top 39px;background-repeat:no-repeat;background-size:calc(100% - 8px) calc(100% - 39px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__primary,.tox .tox-toolbar-overlord>.tox-toolbar__overflow{background-position:center top 0px;background-size:calc(100% - 8px) calc(100% + -0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-toolbar-overlord,.tox .tox-anchorbar{grid-column:1 / -1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid #000000;margin-top:-1px;padding-bottom:0;padding-top:0}@media (forced-colors: active){.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{outline:1px solid currentColor}}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#222f3e;background-position:center top 43px;background-size:calc(100% - 16px) calc(100% - 51px);border:none;border-radius:3px;box-shadow:0 0 2px #2a374633,0 4px 8px #2a374626;overscroll-behavior:none;padding:4px 0}@media (forced-colors: active){.tox.tox-tinymce-aux .tox-toolbar__overflow{border:solid}}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 8px) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0;padding:0 4px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid #000000}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid #000000}.tox .tox-tooltip{display:inline-block;max-width:15em;padding:8px;pointer-events:none;position:relative;width:-moz-max-content;width:max-content;z-index:1150}.tox .tox-tooltip__body{background-color:#2a3746;border-radius:3px;box-shadow:none;color:#fff;font-size:12px;font-style:normal;font-weight:600;overflow-wrap:break-word;padding:4px 6px;text-transform:none}@media (forced-colors: active){.tox .tox-tooltip__body{outline:outset 1px}}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #2A3746;bottom:0;left:50%;position:absolute;transform:translate(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #2A3746;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translate(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #2A3746;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #2A3746;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:transparent;border:0;border-radius:4px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:none;overflow:hidden;padding:0 0 0 8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#fff}.tox .tox-tree .tox-trbtn:focus{background:#4a5562;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:active{background:#6ea9d0;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:active svg{fill:#fff}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:transparent;border:0;box-shadow:none;color:#ffffff80;cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:#ffffff80}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#6ea9d0;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn--enabled>*,.tox .tox-tree .tox-trbtn--enabled:hover>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#fff}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-revisionhistory__pane{padding:0!important}.tox .tox-revisionhistory__container{display:flex;flex-direction:column;height:100%}.tox .tox-revisionhistory{background-color:#2b3b4e;border-radius:4px;border-top:1px solid #000000;display:flex;flex:1;height:100%;margin-top:8px;overflow-x:auto;overflow-y:hidden;position:relative;width:100%}.tox .tox-revisionhistory--align-right{margin-left:auto}.tox .tox-revisionhistory__iframe{flex:1}.tox .tox-revisionhistory__sidebar{border-left:1px solid #000000;height:100%;max-width:360px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__sidebar-title{border-bottom:1px solid #000000;color:#fff;font-size:20px;font-weight:400;height:60px;min-width:192px;padding:16px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions{flex-direction:column;max-height:calc(100% - 60px);min-width:192px;overflow-y:auto;padding:8px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus{height:100%;position:relative;z-index:1}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus:after{box-shadow:0 0 0 0 transparent;content:"";position:absolute;border-radius:3px;bottom:1px;left:1px;right:1px;top:1px}@media (forced-colors: active){.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus:after{border:2px solid highlight}}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card{border:1px solid #000000;border-radius:3px;color:#fff;cursor:pointer;font-size:14px;margin-bottom:8px;padding:8px;text-overflow:ellipsis;text-wrap:nowrap;width:100%}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:hover{background-color:#4a5562;box-shadow:none;color:#fff}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus{position:relative;z-index:1}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus:after{border-radius:3px!important;border-radius:3px;bottom:0;box-shadow:0 0 0 0 transparent;content:"";left:0;position:absolute;right:0;top:0}@media (forced-colors: active){.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus:after{border:2px solid highlight}}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected{background-color:#6ea9d0;box-shadow:none;color:#fff}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__norevision{color:#ffffff80;font-size:16px;line-height:24px;padding:5px 5.5px}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#222f3e;display:flex;flex:1;flex-direction:column;height:100%}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0;position:relative}.tox .tox-view__label{color:#fff;font-weight:700;line-height:24px;padding:4px 16px;text-align:center;white-space:nowrap}.tox .tox-view__label--normal{font-size:16px}.tox .tox-view__label--large{font-size:20px}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;overflow-x:auto;padding:8px 8px 0}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-start,.tox .tox-view__header-end{display:flex}.tox .tox-view__pane{height:100%;padding:8px;position:relative;width:100%}.tox .tox-view__pane_panel{border:1px solid #000000;border-radius:3px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-start>*,.tox[dir=rtl] .tox-view__header .tox-view__header-end>*{margin-right:8px}.tox .tox-well{border:1px solid #000000;border-radius:3px;padding:8px;width:100%}.tox .tox-well>*:first-child{margin-top:0}.tox .tox-well>*:last-child{margin-bottom:0}.tox .tox-well>*:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #000000;border-radius:3px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading:before{background-color:#00000080;content:"";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js,.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:none;padding:0}.tox.tox-tinymce--toolbar-bottom .tox-editor-header,.tox.tox-tinymce-inline .tox-editor-header{margin-bottom:-1px}.tox.tox-tinymce-inline .tox-editor-container{overflow:hidden}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:none;box-shadow:none}.tox.tox.tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:transparent;box-shadow:0 4px 4px -3px #00000040;padding:0}.tox.tox.tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px #00000040}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px 0}.tox .tox-menu.tox-collection.tox-collection--list{padding:0}.tox .tox-pop{box-shadow:none}.tox .tox-tbtn,.tox .tox-number-input,.tox .tox-tbtn--select,.tox .tox-split-button{margin:2px 0 3px}.tox .tox-toolbar,.tox .tox-toolbar__primary,.tox .tox-toolbar__overflow{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0px #222f3e!important}.tox .tox-menubar+.tox-toolbar-overlord{border-top:none}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord .tox-toolbar__primary{border-top:1px solid #000000;margin-top:-1px}.tox.tox-tinymce-aux .tox-toolbar__overflow{border:1px solid #000000;padding:0}.tox .tox-pop .tox-pop__dialog .tox-toolbar{padding:0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-menubar{border-top:1px solid #000000}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar-overlord:first-child .tox-toolbar__primary,.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar:first-child{border-top:1px solid #000000}.tox .tox-toolbar__group{padding:0 4px}.tox .tox-collection__item{border-radius:0;cursor:pointer}.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]){color:#fff}.tox .tox-statusbar__branding svg{fill:#fffc;height:1em;margin-left:.3em;width:auto}@media (forced-colors: active){.tox .tox-statusbar__branding svg{fill:currentColor}}.tox .tox-statusbar__branding a{align-items:center;display:inline-flex}.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg{fill:#fff}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:1ch}.tox[dir=rtl] .tox-statusbar__branding svg{margin-left:0;margin-right:.3em}.tox .tox-statusbar__resize-handle{padding-bottom:0;padding-right:0}.tox .tox-button:before{display:none}.tox .tox-toolbar,.tox .tox-toolbar__primary,.tox .tox-toolbar__overflow{background-color:#0e1b23!important}.tox-tinymce{border:none!important}.app-static-name[data-v-0948e122]{cursor:text;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cell-name[data-v-588566c2]{position:sticky;top:100px}.message[data-v-588566c2]{padding-top:10px}.message__timestamp[data-v-588566c2]{font-size:.75rem;color:rgba(var(--v-theme-bluegrey))}.message__content[data-v-588566c2]{font-size:14px;word-break:break-word}.comment__actions[data-v-588566c2]{position:absolute;right:0}.card[data-v-793087b5]{position:sticky;height:87.5vh;top:3.9rem}.close-btn[data-v-793087b5]{position:absolute;top:0;right:0}.content[data-v-793087b5]{position:relative;height:100%}.empty-state[data-v-793087b5]{margin-top:200px;text-align:center}.empty-state__text[data-v-793087b5]{max-width:20em;margin:0 auto;line-height:1.8rem;color:rgb(var(--v-theme-bluegrey))}.comments-wrapper[data-v-793087b5]{max-height:66vh;overflow-y:auto}.cell-container{padding-top:0}.cell-container--app{padding-bottom:0}.cm-editor{height:auto!important}.zt-app-bar[data-v-e40b79f1]{padding-top:6px;padding-bottom:6px}.logo-btn[data-v-e40b79f1] .v-icon{width:1.5em;height:1.5em}.cm-editor[data-v-e40b79f1]{height:auto!important}.click-edit[data-v-e40b79f1]{max-width:200px;width:100%}.click-edit__name[data-v-e40b79f1]{font-weight:400;cursor:text}.click-edit__show-text[data-v-e40b79f1],.click-edit__edit-field-wrapper[data-v-e40b79f1]{display:flex;align-items:center}.click-edit__name[data-v-e40b79f1]:hover{padding-left:3px;padding-right:3px;cursor:text;border:1px solid #294455}.click-edit__edit-field[data-v-e40b79f1]{margin-top:-11px}.click-edit__edit-field[data-v-e40b79f1] .v-field__input{font-size:1.5rem;letter-spacing:normal}@media (min-width: 600px){.click-edit[data-v-e40b79f1]{max-width:250px}}@media (min-width: 1280px){.click-edit[data-v-e40b79f1]{max-width:450px}}@media (min-width: 1920px){.click-edit[data-v-e40b79f1]{max-width:600px}}.content[data-v-e40b79f1]{padding-left:0!important;padding-right:0!important}.content__comments[data-v-e40b79f1]{width:0;transition:width .15s ease}.content__comments--show[data-v-e40b79f1]{width:380px}.footer[data-v-e40b79f1]{display:flex;justify-content:space-between;flex-direction:column;padding:4px 16px}.footer__left-container[data-v-e40b79f1],.footer__right-container[data-v-e40b79f1]{display:flex;width:100%}@media (min-width: 960px){.footer__left-container[data-v-e40b79f1],.footer__right-container[data-v-e40b79f1]{align-items:center;width:auto}}.footer__right-container[data-v-e40b79f1]{align-items:center;flex-direction:column;justify-content:flex-start}@media (min-width: 600px){.footer__right-container[data-v-e40b79f1]{flex-direction:row}}.footer__left-container[data-v-e40b79f1]{flex-direction:column;margin:0 0 20px}@media (min-width: 600px){.footer__left-container[data-v-e40b79f1]{margin:0;flex-direction:row}}.footer__queue-length-wrapper[data-v-e40b79f1]{display:flex;justify-content:flex-start;width:100%}@media (min-width: 600px){.footer__queue-length-wrapper[data-v-e40b79f1]{width:auto}}.footer .dot-divider[data-v-e40b79f1]{display:none;margin:0 5px}@media (min-width: 600px){.footer .dot-divider[data-v-e40b79f1]{display:flex;margin:0 16px}}@media (min-width: 1280px){.footer .dot-divider[data-v-e40b79f1]{margin:0 16px}}@media (min-width: 1920px){.footer .dot-divider[data-v-e40b79f1]{margin:0 24px}}.footer__status-wrapper[data-v-e40b79f1]{display:flex;justify-content:flex-start;width:100%;align-items:center}.footer__status-wrapper .dot-divider[data-v-e40b79f1]{display:none}@media (min-width: 960px){.footer__status-wrapper .dot-divider[data-v-e40b79f1]{display:flex}}.footer__code-version-icon[data-v-e40b79f1]{margin-right:0;margin-left:-5px}@media (min-width: 600px){.footer__code-version-icon[data-v-e40b79f1]{margin-right:12px}}.footer__queue-length-btn[data-v-e40b79f1]{margin:0 2px}@media (min-width: 960px){.footer__queue-length-btn[data-v-e40b79f1]{margin:0 8px 0 24px}}.footer__code-running-loader[data-v-e40b79f1]{margin-right:10px}@media (min-width: 1280px){.footer__code-running-loader[data-v-e40b79f1]{margin-right:10px}}.footer__queue-list[data-v-e40b79f1]{font-size:.625rem}.footer__queue-list-item--pending[data-v-e40b79f1]{color:rgba(var(--v-theme-bluegrey-darken-2))}.footer__status[data-v-e40b79f1]{color:rgba(var(--v-theme-success))}.footer__status--error[data-v-e40b79f1]{color:rgba(var(--v-theme-error))}.footer__status--connected[data-v-e40b79f1]{color:rgba(var(--v-theme-info))}@media (min-width: 960px){.footer[data-v-e40b79f1]{flex-direction:row;height:34px}}.toggle-group[data-v-e40b79f1]{display:flex;justify-content:center;position:absolute;left:50%;transform:translate(-50%)}@font-face{font-family:Material Design Icons;src:url(./materialdesignicons-webfont-5159a347.eot?v=7.3.67);src:url(./materialdesignicons-webfont-5159a347.eot?#iefix&v=7.3.67) format("embedded-opentype"),url(./materialdesignicons-webfont-31010194.woff2?v=7.3.67) format("woff2"),url(./materialdesignicons-webfont-28c8f97f.woff?v=7.3.67) format("woff"),url(./materialdesignicons-webfont-be825c12.ttf?v=7.3.67) format("truetype");font-weight:400;font-style:normal}.mdi:before,.mdi-set{display:inline-block;font: 24px/1 Material Design Icons;font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mdi-ab-testing:before{content:""}.mdi-abacus:before{content:""}.mdi-abjad-arabic:before{content:""}.mdi-abjad-hebrew:before{content:""}.mdi-abugida-devanagari:before{content:""}.mdi-abugida-thai:before{content:""}.mdi-access-point:before{content:""}.mdi-access-point-check:before{content:""}.mdi-access-point-minus:before{content:""}.mdi-access-point-network:before{content:""}.mdi-access-point-network-off:before{content:""}.mdi-access-point-off:before{content:""}.mdi-access-point-plus:before{content:""}.mdi-access-point-remove:before{content:""}.mdi-account:before{content:""}.mdi-account-alert:before{content:""}.mdi-account-alert-outline:before{content:""}.mdi-account-arrow-down:before{content:""}.mdi-account-arrow-down-outline:before{content:""}.mdi-account-arrow-left:before{content:""}.mdi-account-arrow-left-outline:before{content:""}.mdi-account-arrow-right:before{content:""}.mdi-account-arrow-right-outline:before{content:""}.mdi-account-arrow-up:before{content:""}.mdi-account-arrow-up-outline:before{content:""}.mdi-account-badge:before{content:""}.mdi-account-badge-outline:before{content:""}.mdi-account-box:before{content:""}.mdi-account-box-multiple:before{content:""}.mdi-account-box-multiple-outline:before{content:""}.mdi-account-box-outline:before{content:""}.mdi-account-cancel:before{content:""}.mdi-account-cancel-outline:before{content:""}.mdi-account-card:before{content:""}.mdi-account-card-outline:before{content:""}.mdi-account-cash:before{content:""}.mdi-account-cash-outline:before{content:""}.mdi-account-check:before{content:""}.mdi-account-check-outline:before{content:""}.mdi-account-child:before{content:""}.mdi-account-child-circle:before{content:""}.mdi-account-child-outline:before{content:""}.mdi-account-circle:before{content:""}.mdi-account-circle-outline:before{content:""}.mdi-account-clock:before{content:""}.mdi-account-clock-outline:before{content:""}.mdi-account-cog:before{content:""}.mdi-account-cog-outline:before{content:""}.mdi-account-convert:before{content:""}.mdi-account-convert-outline:before{content:""}.mdi-account-cowboy-hat:before{content:""}.mdi-account-cowboy-hat-outline:before{content:""}.mdi-account-credit-card:before{content:""}.mdi-account-credit-card-outline:before{content:""}.mdi-account-details:before{content:""}.mdi-account-details-outline:before{content:""}.mdi-account-edit:before{content:""}.mdi-account-edit-outline:before{content:""}.mdi-account-eye:before{content:""}.mdi-account-eye-outline:before{content:""}.mdi-account-file:before{content:""}.mdi-account-file-outline:before{content:""}.mdi-account-file-text:before{content:""}.mdi-account-file-text-outline:before{content:""}.mdi-account-filter:before{content:""}.mdi-account-filter-outline:before{content:""}.mdi-account-group:before{content:""}.mdi-account-group-outline:before{content:""}.mdi-account-hard-hat:before{content:""}.mdi-account-hard-hat-outline:before{content:""}.mdi-account-heart:before{content:""}.mdi-account-heart-outline:before{content:""}.mdi-account-injury:before{content:""}.mdi-account-injury-outline:before{content:""}.mdi-account-key:before{content:""}.mdi-account-key-outline:before{content:""}.mdi-account-lock:before{content:""}.mdi-account-lock-open:before{content:""}.mdi-account-lock-open-outline:before{content:""}.mdi-account-lock-outline:before{content:""}.mdi-account-minus:before{content:""}.mdi-account-minus-outline:before{content:""}.mdi-account-multiple:before{content:""}.mdi-account-multiple-check:before{content:""}.mdi-account-multiple-check-outline:before{content:""}.mdi-account-multiple-minus:before{content:""}.mdi-account-multiple-minus-outline:before{content:""}.mdi-account-multiple-outline:before{content:""}.mdi-account-multiple-plus:before{content:""}.mdi-account-multiple-plus-outline:before{content:""}.mdi-account-multiple-remove:before{content:""}.mdi-account-multiple-remove-outline:before{content:""}.mdi-account-music:before{content:""}.mdi-account-music-outline:before{content:""}.mdi-account-network:before{content:""}.mdi-account-network-off:before{content:""}.mdi-account-network-off-outline:before{content:""}.mdi-account-network-outline:before{content:""}.mdi-account-off:before{content:""}.mdi-account-off-outline:before{content:""}.mdi-account-outline:before{content:""}.mdi-account-plus:before{content:""}.mdi-account-plus-outline:before{content:""}.mdi-account-question:before{content:""}.mdi-account-question-outline:before{content:""}.mdi-account-reactivate:before{content:""}.mdi-account-reactivate-outline:before{content:""}.mdi-account-remove:before{content:""}.mdi-account-remove-outline:before{content:""}.mdi-account-school:before{content:""}.mdi-account-school-outline:before{content:""}.mdi-account-search:before{content:""}.mdi-account-search-outline:before{content:""}.mdi-account-settings:before{content:""}.mdi-account-settings-outline:before{content:""}.mdi-account-star:before{content:""}.mdi-account-star-outline:before{content:""}.mdi-account-supervisor:before{content:""}.mdi-account-supervisor-circle:before{content:""}.mdi-account-supervisor-circle-outline:before{content:""}.mdi-account-supervisor-outline:before{content:""}.mdi-account-switch:before{content:""}.mdi-account-switch-outline:before{content:""}.mdi-account-sync:before{content:""}.mdi-account-sync-outline:before{content:""}.mdi-account-tag:before{content:""}.mdi-account-tag-outline:before{content:""}.mdi-account-tie:before{content:""}.mdi-account-tie-hat:before{content:""}.mdi-account-tie-hat-outline:before{content:""}.mdi-account-tie-outline:before{content:""}.mdi-account-tie-voice:before{content:""}.mdi-account-tie-voice-off:before{content:""}.mdi-account-tie-voice-off-outline:before{content:""}.mdi-account-tie-voice-outline:before{content:""}.mdi-account-tie-woman:before{content:""}.mdi-account-voice:before{content:""}.mdi-account-voice-off:before{content:""}.mdi-account-wrench:before{content:""}.mdi-account-wrench-outline:before{content:""}.mdi-adjust:before{content:""}.mdi-advertisements:before{content:""}.mdi-advertisements-off:before{content:""}.mdi-air-conditioner:before{content:""}.mdi-air-filter:before{content:""}.mdi-air-horn:before{content:""}.mdi-air-humidifier:before{content:""}.mdi-air-humidifier-off:before{content:""}.mdi-air-purifier:before{content:""}.mdi-air-purifier-off:before{content:""}.mdi-airbag:before{content:""}.mdi-airballoon:before{content:""}.mdi-airballoon-outline:before{content:""}.mdi-airplane:before{content:""}.mdi-airplane-alert:before{content:""}.mdi-airplane-check:before{content:""}.mdi-airplane-clock:before{content:""}.mdi-airplane-cog:before{content:""}.mdi-airplane-edit:before{content:""}.mdi-airplane-landing:before{content:""}.mdi-airplane-marker:before{content:""}.mdi-airplane-minus:before{content:""}.mdi-airplane-off:before{content:""}.mdi-airplane-plus:before{content:""}.mdi-airplane-remove:before{content:""}.mdi-airplane-search:before{content:""}.mdi-airplane-settings:before{content:""}.mdi-airplane-takeoff:before{content:""}.mdi-airport:before{content:""}.mdi-alarm:before{content:""}.mdi-alarm-bell:before{content:""}.mdi-alarm-check:before{content:""}.mdi-alarm-light:before{content:""}.mdi-alarm-light-off:before{content:""}.mdi-alarm-light-off-outline:before{content:""}.mdi-alarm-light-outline:before{content:""}.mdi-alarm-multiple:before{content:""}.mdi-alarm-note:before{content:""}.mdi-alarm-note-off:before{content:""}.mdi-alarm-off:before{content:""}.mdi-alarm-panel:before{content:""}.mdi-alarm-panel-outline:before{content:""}.mdi-alarm-plus:before{content:""}.mdi-alarm-snooze:before{content:""}.mdi-album:before{content:""}.mdi-alert:before{content:""}.mdi-alert-box:before{content:""}.mdi-alert-box-outline:before{content:""}.mdi-alert-circle:before{content:""}.mdi-alert-circle-check:before{content:""}.mdi-alert-circle-check-outline:before{content:""}.mdi-alert-circle-outline:before{content:""}.mdi-alert-decagram:before{content:""}.mdi-alert-decagram-outline:before{content:""}.mdi-alert-minus:before{content:""}.mdi-alert-minus-outline:before{content:""}.mdi-alert-octagon:before{content:""}.mdi-alert-octagon-outline:before{content:""}.mdi-alert-octagram:before{content:""}.mdi-alert-octagram-outline:before{content:""}.mdi-alert-outline:before{content:""}.mdi-alert-plus:before{content:""}.mdi-alert-plus-outline:before{content:""}.mdi-alert-remove:before{content:""}.mdi-alert-remove-outline:before{content:""}.mdi-alert-rhombus:before{content:""}.mdi-alert-rhombus-outline:before{content:""}.mdi-alien:before{content:""}.mdi-alien-outline:before{content:""}.mdi-align-horizontal-center:before{content:""}.mdi-align-horizontal-distribute:before{content:""}.mdi-align-horizontal-left:before{content:""}.mdi-align-horizontal-right:before{content:""}.mdi-align-vertical-bottom:before{content:""}.mdi-align-vertical-center:before{content:""}.mdi-align-vertical-distribute:before{content:""}.mdi-align-vertical-top:before{content:""}.mdi-all-inclusive:before{content:""}.mdi-all-inclusive-box:before{content:""}.mdi-all-inclusive-box-outline:before{content:""}.mdi-allergy:before{content:""}.mdi-alpha:before{content:""}.mdi-alpha-a:before{content:""}.mdi-alpha-a-box:before{content:""}.mdi-alpha-a-box-outline:before{content:""}.mdi-alpha-a-circle:before{content:""}.mdi-alpha-a-circle-outline:before{content:""}.mdi-alpha-b:before{content:""}.mdi-alpha-b-box:before{content:""}.mdi-alpha-b-box-outline:before{content:""}.mdi-alpha-b-circle:before{content:""}.mdi-alpha-b-circle-outline:before{content:""}.mdi-alpha-c:before{content:""}.mdi-alpha-c-box:before{content:""}.mdi-alpha-c-box-outline:before{content:""}.mdi-alpha-c-circle:before{content:""}.mdi-alpha-c-circle-outline:before{content:""}.mdi-alpha-d:before{content:""}.mdi-alpha-d-box:before{content:""}.mdi-alpha-d-box-outline:before{content:""}.mdi-alpha-d-circle:before{content:""}.mdi-alpha-d-circle-outline:before{content:""}.mdi-alpha-e:before{content:""}.mdi-alpha-e-box:before{content:""}.mdi-alpha-e-box-outline:before{content:""}.mdi-alpha-e-circle:before{content:""}.mdi-alpha-e-circle-outline:before{content:""}.mdi-alpha-f:before{content:""}.mdi-alpha-f-box:before{content:""}.mdi-alpha-f-box-outline:before{content:""}.mdi-alpha-f-circle:before{content:""}.mdi-alpha-f-circle-outline:before{content:""}.mdi-alpha-g:before{content:""}.mdi-alpha-g-box:before{content:""}.mdi-alpha-g-box-outline:before{content:""}.mdi-alpha-g-circle:before{content:""}.mdi-alpha-g-circle-outline:before{content:""}.mdi-alpha-h:before{content:""}.mdi-alpha-h-box:before{content:""}.mdi-alpha-h-box-outline:before{content:""}.mdi-alpha-h-circle:before{content:""}.mdi-alpha-h-circle-outline:before{content:""}.mdi-alpha-i:before{content:""}.mdi-alpha-i-box:before{content:""}.mdi-alpha-i-box-outline:before{content:""}.mdi-alpha-i-circle:before{content:""}.mdi-alpha-i-circle-outline:before{content:""}.mdi-alpha-j:before{content:""}.mdi-alpha-j-box:before{content:""}.mdi-alpha-j-box-outline:before{content:""}.mdi-alpha-j-circle:before{content:""}.mdi-alpha-j-circle-outline:before{content:""}.mdi-alpha-k:before{content:""}.mdi-alpha-k-box:before{content:""}.mdi-alpha-k-box-outline:before{content:""}.mdi-alpha-k-circle:before{content:""}.mdi-alpha-k-circle-outline:before{content:""}.mdi-alpha-l:before{content:""}.mdi-alpha-l-box:before{content:""}.mdi-alpha-l-box-outline:before{content:""}.mdi-alpha-l-circle:before{content:""}.mdi-alpha-l-circle-outline:before{content:""}.mdi-alpha-m:before{content:""}.mdi-alpha-m-box:before{content:""}.mdi-alpha-m-box-outline:before{content:""}.mdi-alpha-m-circle:before{content:""}.mdi-alpha-m-circle-outline:before{content:""}.mdi-alpha-n:before{content:""}.mdi-alpha-n-box:before{content:""}.mdi-alpha-n-box-outline:before{content:""}.mdi-alpha-n-circle:before{content:""}.mdi-alpha-n-circle-outline:before{content:""}.mdi-alpha-o:before{content:""}.mdi-alpha-o-box:before{content:""}.mdi-alpha-o-box-outline:before{content:""}.mdi-alpha-o-circle:before{content:""}.mdi-alpha-o-circle-outline:before{content:""}.mdi-alpha-p:before{content:""}.mdi-alpha-p-box:before{content:""}.mdi-alpha-p-box-outline:before{content:""}.mdi-alpha-p-circle:before{content:""}.mdi-alpha-p-circle-outline:before{content:""}.mdi-alpha-q:before{content:""}.mdi-alpha-q-box:before{content:""}.mdi-alpha-q-box-outline:before{content:""}.mdi-alpha-q-circle:before{content:""}.mdi-alpha-q-circle-outline:before{content:""}.mdi-alpha-r:before{content:""}.mdi-alpha-r-box:before{content:""}.mdi-alpha-r-box-outline:before{content:""}.mdi-alpha-r-circle:before{content:""}.mdi-alpha-r-circle-outline:before{content:""}.mdi-alpha-s:before{content:""}.mdi-alpha-s-box:before{content:""}.mdi-alpha-s-box-outline:before{content:""}.mdi-alpha-s-circle:before{content:""}.mdi-alpha-s-circle-outline:before{content:""}.mdi-alpha-t:before{content:""}.mdi-alpha-t-box:before{content:""}.mdi-alpha-t-box-outline:before{content:""}.mdi-alpha-t-circle:before{content:""}.mdi-alpha-t-circle-outline:before{content:""}.mdi-alpha-u:before{content:""}.mdi-alpha-u-box:before{content:""}.mdi-alpha-u-box-outline:before{content:""}.mdi-alpha-u-circle:before{content:""}.mdi-alpha-u-circle-outline:before{content:""}.mdi-alpha-v:before{content:""}.mdi-alpha-v-box:before{content:""}.mdi-alpha-v-box-outline:before{content:""}.mdi-alpha-v-circle:before{content:""}.mdi-alpha-v-circle-outline:before{content:""}.mdi-alpha-w:before{content:""}.mdi-alpha-w-box:before{content:""}.mdi-alpha-w-box-outline:before{content:""}.mdi-alpha-w-circle:before{content:""}.mdi-alpha-w-circle-outline:before{content:""}.mdi-alpha-x:before{content:""}.mdi-alpha-x-box:before{content:""}.mdi-alpha-x-box-outline:before{content:""}.mdi-alpha-x-circle:before{content:""}.mdi-alpha-x-circle-outline:before{content:""}.mdi-alpha-y:before{content:""}.mdi-alpha-y-box:before{content:""}.mdi-alpha-y-box-outline:before{content:""}.mdi-alpha-y-circle:before{content:""}.mdi-alpha-y-circle-outline:before{content:""}.mdi-alpha-z:before{content:""}.mdi-alpha-z-box:before{content:""}.mdi-alpha-z-box-outline:before{content:""}.mdi-alpha-z-circle:before{content:""}.mdi-alpha-z-circle-outline:before{content:""}.mdi-alphabet-aurebesh:before{content:""}.mdi-alphabet-cyrillic:before{content:""}.mdi-alphabet-greek:before{content:""}.mdi-alphabet-latin:before{content:""}.mdi-alphabet-piqad:before{content:""}.mdi-alphabet-tengwar:before{content:""}.mdi-alphabetical:before{content:""}.mdi-alphabetical-off:before{content:""}.mdi-alphabetical-variant:before{content:""}.mdi-alphabetical-variant-off:before{content:""}.mdi-altimeter:before{content:""}.mdi-ambulance:before{content:""}.mdi-ammunition:before{content:""}.mdi-ampersand:before{content:""}.mdi-amplifier:before{content:""}.mdi-amplifier-off:before{content:""}.mdi-anchor:before{content:""}.mdi-android:before{content:""}.mdi-android-studio:before{content:""}.mdi-angle-acute:before{content:""}.mdi-angle-obtuse:before{content:""}.mdi-angle-right:before{content:""}.mdi-angular:before{content:""}.mdi-angularjs:before{content:""}.mdi-animation:before{content:""}.mdi-animation-outline:before{content:""}.mdi-animation-play:before{content:""}.mdi-animation-play-outline:before{content:""}.mdi-ansible:before{content:""}.mdi-antenna:before{content:""}.mdi-anvil:before{content:""}.mdi-apache-kafka:before{content:""}.mdi-api:before{content:""}.mdi-api-off:before{content:""}.mdi-apple:before{content:""}.mdi-apple-finder:before{content:""}.mdi-apple-icloud:before{content:""}.mdi-apple-ios:before{content:""}.mdi-apple-keyboard-caps:before{content:""}.mdi-apple-keyboard-command:before{content:""}.mdi-apple-keyboard-control:before{content:""}.mdi-apple-keyboard-option:before{content:""}.mdi-apple-keyboard-shift:before{content:""}.mdi-apple-safari:before{content:""}.mdi-application:before{content:""}.mdi-application-array:before{content:""}.mdi-application-array-outline:before{content:""}.mdi-application-braces:before{content:""}.mdi-application-braces-outline:before{content:""}.mdi-application-brackets:before{content:""}.mdi-application-brackets-outline:before{content:""}.mdi-application-cog:before{content:""}.mdi-application-cog-outline:before{content:""}.mdi-application-edit:before{content:""}.mdi-application-edit-outline:before{content:""}.mdi-application-export:before{content:""}.mdi-application-import:before{content:""}.mdi-application-outline:before{content:""}.mdi-application-parentheses:before{content:""}.mdi-application-parentheses-outline:before{content:""}.mdi-application-settings:before{content:""}.mdi-application-settings-outline:before{content:""}.mdi-application-variable:before{content:""}.mdi-application-variable-outline:before{content:""}.mdi-approximately-equal:before{content:""}.mdi-approximately-equal-box:before{content:""}.mdi-apps:before{content:""}.mdi-apps-box:before{content:""}.mdi-arch:before{content:""}.mdi-archive:before{content:""}.mdi-archive-alert:before{content:""}.mdi-archive-alert-outline:before{content:""}.mdi-archive-arrow-down:before{content:""}.mdi-archive-arrow-down-outline:before{content:""}.mdi-archive-arrow-up:before{content:""}.mdi-archive-arrow-up-outline:before{content:""}.mdi-archive-cancel:before{content:""}.mdi-archive-cancel-outline:before{content:""}.mdi-archive-check:before{content:""}.mdi-archive-check-outline:before{content:""}.mdi-archive-clock:before{content:""}.mdi-archive-clock-outline:before{content:""}.mdi-archive-cog:before{content:""}.mdi-archive-cog-outline:before{content:""}.mdi-archive-edit:before{content:""}.mdi-archive-edit-outline:before{content:""}.mdi-archive-eye:before{content:""}.mdi-archive-eye-outline:before{content:""}.mdi-archive-lock:before{content:""}.mdi-archive-lock-open:before{content:""}.mdi-archive-lock-open-outline:before{content:""}.mdi-archive-lock-outline:before{content:""}.mdi-archive-marker:before{content:""}.mdi-archive-marker-outline:before{content:""}.mdi-archive-minus:before{content:""}.mdi-archive-minus-outline:before{content:""}.mdi-archive-music:before{content:""}.mdi-archive-music-outline:before{content:""}.mdi-archive-off:before{content:""}.mdi-archive-off-outline:before{content:""}.mdi-archive-outline:before{content:""}.mdi-archive-plus:before{content:""}.mdi-archive-plus-outline:before{content:""}.mdi-archive-refresh:before{content:""}.mdi-archive-refresh-outline:before{content:""}.mdi-archive-remove:before{content:""}.mdi-archive-remove-outline:before{content:""}.mdi-archive-search:before{content:""}.mdi-archive-search-outline:before{content:""}.mdi-archive-settings:before{content:""}.mdi-archive-settings-outline:before{content:""}.mdi-archive-star:before{content:""}.mdi-archive-star-outline:before{content:""}.mdi-archive-sync:before{content:""}.mdi-archive-sync-outline:before{content:""}.mdi-arm-flex:before{content:""}.mdi-arm-flex-outline:before{content:""}.mdi-arrange-bring-forward:before{content:""}.mdi-arrange-bring-to-front:before{content:""}.mdi-arrange-send-backward:before{content:""}.mdi-arrange-send-to-back:before{content:""}.mdi-arrow-all:before{content:""}.mdi-arrow-bottom-left:before{content:""}.mdi-arrow-bottom-left-bold-box:before{content:""}.mdi-arrow-bottom-left-bold-box-outline:before{content:""}.mdi-arrow-bottom-left-bold-outline:before{content:""}.mdi-arrow-bottom-left-thick:before{content:""}.mdi-arrow-bottom-left-thin:before{content:""}.mdi-arrow-bottom-left-thin-circle-outline:before{content:""}.mdi-arrow-bottom-right:before{content:""}.mdi-arrow-bottom-right-bold-box:before{content:""}.mdi-arrow-bottom-right-bold-box-outline:before{content:""}.mdi-arrow-bottom-right-bold-outline:before{content:""}.mdi-arrow-bottom-right-thick:before{content:""}.mdi-arrow-bottom-right-thin:before{content:""}.mdi-arrow-bottom-right-thin-circle-outline:before{content:""}.mdi-arrow-collapse:before{content:""}.mdi-arrow-collapse-all:before{content:""}.mdi-arrow-collapse-down:before{content:""}.mdi-arrow-collapse-horizontal:before{content:""}.mdi-arrow-collapse-left:before{content:""}.mdi-arrow-collapse-right:before{content:""}.mdi-arrow-collapse-up:before{content:""}.mdi-arrow-collapse-vertical:before{content:""}.mdi-arrow-decision:before{content:""}.mdi-arrow-decision-auto:before{content:""}.mdi-arrow-decision-auto-outline:before{content:""}.mdi-arrow-decision-outline:before{content:""}.mdi-arrow-down:before{content:""}.mdi-arrow-down-bold:before{content:""}.mdi-arrow-down-bold-box:before{content:""}.mdi-arrow-down-bold-box-outline:before{content:""}.mdi-arrow-down-bold-circle:before{content:""}.mdi-arrow-down-bold-circle-outline:before{content:""}.mdi-arrow-down-bold-hexagon-outline:before{content:""}.mdi-arrow-down-bold-outline:before{content:""}.mdi-arrow-down-box:before{content:""}.mdi-arrow-down-circle:before{content:""}.mdi-arrow-down-circle-outline:before{content:""}.mdi-arrow-down-drop-circle:before{content:""}.mdi-arrow-down-drop-circle-outline:before{content:""}.mdi-arrow-down-left:before{content:""}.mdi-arrow-down-left-bold:before{content:""}.mdi-arrow-down-right:before{content:""}.mdi-arrow-down-right-bold:before{content:""}.mdi-arrow-down-thick:before{content:""}.mdi-arrow-down-thin:before{content:""}.mdi-arrow-down-thin-circle-outline:before{content:""}.mdi-arrow-expand:before{content:""}.mdi-arrow-expand-all:before{content:""}.mdi-arrow-expand-down:before{content:""}.mdi-arrow-expand-horizontal:before{content:""}.mdi-arrow-expand-left:before{content:""}.mdi-arrow-expand-right:before{content:""}.mdi-arrow-expand-up:before{content:""}.mdi-arrow-expand-vertical:before{content:""}.mdi-arrow-horizontal-lock:before{content:""}.mdi-arrow-left:before{content:""}.mdi-arrow-left-bold:before{content:""}.mdi-arrow-left-bold-box:before{content:""}.mdi-arrow-left-bold-box-outline:before{content:""}.mdi-arrow-left-bold-circle:before{content:""}.mdi-arrow-left-bold-circle-outline:before{content:""}.mdi-arrow-left-bold-hexagon-outline:before{content:""}.mdi-arrow-left-bold-outline:before{content:""}.mdi-arrow-left-bottom:before{content:""}.mdi-arrow-left-bottom-bold:before{content:""}.mdi-arrow-left-box:before{content:""}.mdi-arrow-left-circle:before{content:""}.mdi-arrow-left-circle-outline:before{content:""}.mdi-arrow-left-drop-circle:before{content:""}.mdi-arrow-left-drop-circle-outline:before{content:""}.mdi-arrow-left-right:before{content:""}.mdi-arrow-left-right-bold:before{content:""}.mdi-arrow-left-right-bold-outline:before{content:""}.mdi-arrow-left-thick:before{content:""}.mdi-arrow-left-thin:before{content:""}.mdi-arrow-left-thin-circle-outline:before{content:""}.mdi-arrow-left-top:before{content:""}.mdi-arrow-left-top-bold:before{content:""}.mdi-arrow-oscillating:before{content:""}.mdi-arrow-oscillating-off:before{content:""}.mdi-arrow-projectile:before{content:""}.mdi-arrow-projectile-multiple:before{content:""}.mdi-arrow-right:before{content:""}.mdi-arrow-right-bold:before{content:""}.mdi-arrow-right-bold-box:before{content:""}.mdi-arrow-right-bold-box-outline:before{content:""}.mdi-arrow-right-bold-circle:before{content:""}.mdi-arrow-right-bold-circle-outline:before{content:""}.mdi-arrow-right-bold-hexagon-outline:before{content:""}.mdi-arrow-right-bold-outline:before{content:""}.mdi-arrow-right-bottom:before{content:""}.mdi-arrow-right-bottom-bold:before{content:""}.mdi-arrow-right-box:before{content:""}.mdi-arrow-right-circle:before{content:""}.mdi-arrow-right-circle-outline:before{content:""}.mdi-arrow-right-drop-circle:before{content:""}.mdi-arrow-right-drop-circle-outline:before{content:""}.mdi-arrow-right-thick:before{content:""}.mdi-arrow-right-thin:before{content:""}.mdi-arrow-right-thin-circle-outline:before{content:""}.mdi-arrow-right-top:before{content:""}.mdi-arrow-right-top-bold:before{content:""}.mdi-arrow-split-horizontal:before{content:""}.mdi-arrow-split-vertical:before{content:""}.mdi-arrow-top-left:before{content:""}.mdi-arrow-top-left-bold-box:before{content:""}.mdi-arrow-top-left-bold-box-outline:before{content:""}.mdi-arrow-top-left-bold-outline:before{content:""}.mdi-arrow-top-left-bottom-right:before{content:""}.mdi-arrow-top-left-bottom-right-bold:before{content:""}.mdi-arrow-top-left-thick:before{content:""}.mdi-arrow-top-left-thin:before{content:""}.mdi-arrow-top-left-thin-circle-outline:before{content:""}.mdi-arrow-top-right:before{content:""}.mdi-arrow-top-right-bold-box:before{content:""}.mdi-arrow-top-right-bold-box-outline:before{content:""}.mdi-arrow-top-right-bold-outline:before{content:""}.mdi-arrow-top-right-bottom-left:before{content:""}.mdi-arrow-top-right-bottom-left-bold:before{content:""}.mdi-arrow-top-right-thick:before{content:""}.mdi-arrow-top-right-thin:before{content:""}.mdi-arrow-top-right-thin-circle-outline:before{content:""}.mdi-arrow-u-down-left:before{content:""}.mdi-arrow-u-down-left-bold:before{content:""}.mdi-arrow-u-down-right:before{content:""}.mdi-arrow-u-down-right-bold:before{content:""}.mdi-arrow-u-left-bottom:before{content:""}.mdi-arrow-u-left-bottom-bold:before{content:""}.mdi-arrow-u-left-top:before{content:""}.mdi-arrow-u-left-top-bold:before{content:""}.mdi-arrow-u-right-bottom:before{content:""}.mdi-arrow-u-right-bottom-bold:before{content:""}.mdi-arrow-u-right-top:before{content:""}.mdi-arrow-u-right-top-bold:before{content:""}.mdi-arrow-u-up-left:before{content:""}.mdi-arrow-u-up-left-bold:before{content:""}.mdi-arrow-u-up-right:before{content:""}.mdi-arrow-u-up-right-bold:before{content:""}.mdi-arrow-up:before{content:""}.mdi-arrow-up-bold:before{content:""}.mdi-arrow-up-bold-box:before{content:""}.mdi-arrow-up-bold-box-outline:before{content:""}.mdi-arrow-up-bold-circle:before{content:""}.mdi-arrow-up-bold-circle-outline:before{content:""}.mdi-arrow-up-bold-hexagon-outline:before{content:""}.mdi-arrow-up-bold-outline:before{content:""}.mdi-arrow-up-box:before{content:""}.mdi-arrow-up-circle:before{content:""}.mdi-arrow-up-circle-outline:before{content:""}.mdi-arrow-up-down:before{content:""}.mdi-arrow-up-down-bold:before{content:""}.mdi-arrow-up-down-bold-outline:before{content:""}.mdi-arrow-up-drop-circle:before{content:""}.mdi-arrow-up-drop-circle-outline:before{content:""}.mdi-arrow-up-left:before{content:""}.mdi-arrow-up-left-bold:before{content:""}.mdi-arrow-up-right:before{content:""}.mdi-arrow-up-right-bold:before{content:""}.mdi-arrow-up-thick:before{content:""}.mdi-arrow-up-thin:before{content:""}.mdi-arrow-up-thin-circle-outline:before{content:""}.mdi-arrow-vertical-lock:before{content:""}.mdi-artboard:before{content:""}.mdi-artstation:before{content:""}.mdi-aspect-ratio:before{content:""}.mdi-assistant:before{content:""}.mdi-asterisk:before{content:""}.mdi-asterisk-circle-outline:before{content:""}.mdi-at:before{content:""}.mdi-atlassian:before{content:""}.mdi-atm:before{content:""}.mdi-atom:before{content:""}.mdi-atom-variant:before{content:""}.mdi-attachment:before{content:""}.mdi-attachment-check:before{content:""}.mdi-attachment-lock:before{content:""}.mdi-attachment-minus:before{content:""}.mdi-attachment-off:before{content:""}.mdi-attachment-plus:before{content:""}.mdi-attachment-remove:before{content:""}.mdi-atv:before{content:""}.mdi-audio-input-rca:before{content:""}.mdi-audio-input-stereo-minijack:before{content:""}.mdi-audio-input-xlr:before{content:""}.mdi-audio-video:before{content:""}.mdi-audio-video-off:before{content:""}.mdi-augmented-reality:before{content:""}.mdi-aurora:before{content:""}.mdi-auto-download:before{content:""}.mdi-auto-fix:before{content:""}.mdi-auto-mode:before{content:""}.mdi-auto-upload:before{content:""}.mdi-autorenew:before{content:""}.mdi-autorenew-off:before{content:""}.mdi-av-timer:before{content:""}.mdi-awning:before{content:""}.mdi-awning-outline:before{content:""}.mdi-aws:before{content:""}.mdi-axe:before{content:""}.mdi-axe-battle:before{content:""}.mdi-axis:before{content:""}.mdi-axis-arrow:before{content:""}.mdi-axis-arrow-info:before{content:""}.mdi-axis-arrow-lock:before{content:""}.mdi-axis-lock:before{content:""}.mdi-axis-x-arrow:before{content:""}.mdi-axis-x-arrow-lock:before{content:""}.mdi-axis-x-rotate-clockwise:before{content:""}.mdi-axis-x-rotate-counterclockwise:before{content:""}.mdi-axis-x-y-arrow-lock:before{content:""}.mdi-axis-y-arrow:before{content:""}.mdi-axis-y-arrow-lock:before{content:""}.mdi-axis-y-rotate-clockwise:before{content:""}.mdi-axis-y-rotate-counterclockwise:before{content:""}.mdi-axis-z-arrow:before{content:""}.mdi-axis-z-arrow-lock:before{content:""}.mdi-axis-z-rotate-clockwise:before{content:""}.mdi-axis-z-rotate-counterclockwise:before{content:""}.mdi-babel:before{content:""}.mdi-baby:before{content:""}.mdi-baby-bottle:before{content:""}.mdi-baby-bottle-outline:before{content:""}.mdi-baby-buggy:before{content:""}.mdi-baby-buggy-off:before{content:""}.mdi-baby-carriage:before{content:""}.mdi-baby-carriage-off:before{content:""}.mdi-baby-face:before{content:""}.mdi-baby-face-outline:before{content:""}.mdi-backburger:before{content:""}.mdi-backspace:before{content:""}.mdi-backspace-outline:before{content:""}.mdi-backspace-reverse:before{content:""}.mdi-backspace-reverse-outline:before{content:""}.mdi-backup-restore:before{content:""}.mdi-bacteria:before{content:""}.mdi-bacteria-outline:before{content:""}.mdi-badge-account:before{content:""}.mdi-badge-account-alert:before{content:""}.mdi-badge-account-alert-outline:before{content:""}.mdi-badge-account-horizontal:before{content:""}.mdi-badge-account-horizontal-outline:before{content:""}.mdi-badge-account-outline:before{content:""}.mdi-badminton:before{content:""}.mdi-bag-carry-on:before{content:""}.mdi-bag-carry-on-check:before{content:""}.mdi-bag-carry-on-off:before{content:""}.mdi-bag-checked:before{content:""}.mdi-bag-personal:before{content:""}.mdi-bag-personal-off:before{content:""}.mdi-bag-personal-off-outline:before{content:""}.mdi-bag-personal-outline:before{content:""}.mdi-bag-personal-plus:before{content:""}.mdi-bag-personal-plus-outline:before{content:""}.mdi-bag-personal-tag:before{content:""}.mdi-bag-personal-tag-outline:before{content:""}.mdi-bag-suitcase:before{content:""}.mdi-bag-suitcase-off:before{content:""}.mdi-bag-suitcase-off-outline:before{content:""}.mdi-bag-suitcase-outline:before{content:""}.mdi-baguette:before{content:""}.mdi-balcony:before{content:""}.mdi-balloon:before{content:""}.mdi-ballot:before{content:""}.mdi-ballot-outline:before{content:""}.mdi-ballot-recount:before{content:""}.mdi-ballot-recount-outline:before{content:""}.mdi-bandage:before{content:""}.mdi-bank:before{content:""}.mdi-bank-check:before{content:""}.mdi-bank-circle:before{content:""}.mdi-bank-circle-outline:before{content:""}.mdi-bank-minus:before{content:""}.mdi-bank-off:before{content:""}.mdi-bank-off-outline:before{content:""}.mdi-bank-outline:before{content:""}.mdi-bank-plus:before{content:""}.mdi-bank-remove:before{content:""}.mdi-bank-transfer:before{content:""}.mdi-bank-transfer-in:before{content:""}.mdi-bank-transfer-out:before{content:""}.mdi-barcode:before{content:""}.mdi-barcode-off:before{content:""}.mdi-barcode-scan:before{content:""}.mdi-barley:before{content:""}.mdi-barley-off:before{content:""}.mdi-barn:before{content:""}.mdi-barrel:before{content:""}.mdi-barrel-outline:before{content:""}.mdi-baseball:before{content:""}.mdi-baseball-bat:before{content:""}.mdi-baseball-diamond:before{content:""}.mdi-baseball-diamond-outline:before{content:""}.mdi-baseball-outline:before{content:""}.mdi-bash:before{content:""}.mdi-basket:before{content:""}.mdi-basket-check:before{content:""}.mdi-basket-check-outline:before{content:""}.mdi-basket-fill:before{content:""}.mdi-basket-minus:before{content:""}.mdi-basket-minus-outline:before{content:""}.mdi-basket-off:before{content:""}.mdi-basket-off-outline:before{content:""}.mdi-basket-outline:before{content:""}.mdi-basket-plus:before{content:""}.mdi-basket-plus-outline:before{content:""}.mdi-basket-remove:before{content:""}.mdi-basket-remove-outline:before{content:""}.mdi-basket-unfill:before{content:""}.mdi-basketball:before{content:""}.mdi-basketball-hoop:before{content:""}.mdi-basketball-hoop-outline:before{content:""}.mdi-bat:before{content:""}.mdi-bathtub:before{content:""}.mdi-bathtub-outline:before{content:""}.mdi-battery:before{content:""}.mdi-battery-10:before{content:""}.mdi-battery-10-bluetooth:before{content:""}.mdi-battery-20:before{content:""}.mdi-battery-20-bluetooth:before{content:""}.mdi-battery-30:before{content:""}.mdi-battery-30-bluetooth:before{content:""}.mdi-battery-40:before{content:""}.mdi-battery-40-bluetooth:before{content:""}.mdi-battery-50:before{content:""}.mdi-battery-50-bluetooth:before{content:""}.mdi-battery-60:before{content:""}.mdi-battery-60-bluetooth:before{content:""}.mdi-battery-70:before{content:""}.mdi-battery-70-bluetooth:before{content:""}.mdi-battery-80:before{content:""}.mdi-battery-80-bluetooth:before{content:""}.mdi-battery-90:before{content:""}.mdi-battery-90-bluetooth:before{content:""}.mdi-battery-alert:before{content:""}.mdi-battery-alert-bluetooth:before{content:""}.mdi-battery-alert-variant:before{content:""}.mdi-battery-alert-variant-outline:before{content:""}.mdi-battery-arrow-down:before{content:""}.mdi-battery-arrow-down-outline:before{content:""}.mdi-battery-arrow-up:before{content:""}.mdi-battery-arrow-up-outline:before{content:""}.mdi-battery-bluetooth:before{content:""}.mdi-battery-bluetooth-variant:before{content:""}.mdi-battery-charging:before{content:""}.mdi-battery-charging-10:before{content:""}.mdi-battery-charging-100:before{content:""}.mdi-battery-charging-20:before{content:""}.mdi-battery-charging-30:before{content:""}.mdi-battery-charging-40:before{content:""}.mdi-battery-charging-50:before{content:""}.mdi-battery-charging-60:before{content:""}.mdi-battery-charging-70:before{content:""}.mdi-battery-charging-80:before{content:""}.mdi-battery-charging-90:before{content:""}.mdi-battery-charging-high:before{content:""}.mdi-battery-charging-low:before{content:""}.mdi-battery-charging-medium:before{content:""}.mdi-battery-charging-outline:before{content:""}.mdi-battery-charging-wireless:before{content:""}.mdi-battery-charging-wireless-10:before{content:""}.mdi-battery-charging-wireless-20:before{content:""}.mdi-battery-charging-wireless-30:before{content:""}.mdi-battery-charging-wireless-40:before{content:""}.mdi-battery-charging-wireless-50:before{content:""}.mdi-battery-charging-wireless-60:before{content:""}.mdi-battery-charging-wireless-70:before{content:""}.mdi-battery-charging-wireless-80:before{content:""}.mdi-battery-charging-wireless-90:before{content:""}.mdi-battery-charging-wireless-alert:before{content:""}.mdi-battery-charging-wireless-outline:before{content:""}.mdi-battery-check:before{content:""}.mdi-battery-check-outline:before{content:""}.mdi-battery-clock:before{content:""}.mdi-battery-clock-outline:before{content:""}.mdi-battery-heart:before{content:""}.mdi-battery-heart-outline:before{content:""}.mdi-battery-heart-variant:before{content:""}.mdi-battery-high:before{content:""}.mdi-battery-lock:before{content:""}.mdi-battery-lock-open:before{content:""}.mdi-battery-low:before{content:""}.mdi-battery-medium:before{content:""}.mdi-battery-minus:before{content:""}.mdi-battery-minus-outline:before{content:""}.mdi-battery-minus-variant:before{content:""}.mdi-battery-negative:before{content:""}.mdi-battery-off:before{content:""}.mdi-battery-off-outline:before{content:""}.mdi-battery-outline:before{content:""}.mdi-battery-plus:before{content:""}.mdi-battery-plus-outline:before{content:""}.mdi-battery-plus-variant:before{content:""}.mdi-battery-positive:before{content:""}.mdi-battery-remove:before{content:""}.mdi-battery-remove-outline:before{content:""}.mdi-battery-sync:before{content:""}.mdi-battery-sync-outline:before{content:""}.mdi-battery-unknown:before{content:""}.mdi-battery-unknown-bluetooth:before{content:""}.mdi-beach:before{content:""}.mdi-beaker:before{content:""}.mdi-beaker-alert:before{content:""}.mdi-beaker-alert-outline:before{content:""}.mdi-beaker-check:before{content:""}.mdi-beaker-check-outline:before{content:""}.mdi-beaker-minus:before{content:""}.mdi-beaker-minus-outline:before{content:""}.mdi-beaker-outline:before{content:""}.mdi-beaker-plus:before{content:""}.mdi-beaker-plus-outline:before{content:""}.mdi-beaker-question:before{content:""}.mdi-beaker-question-outline:before{content:""}.mdi-beaker-remove:before{content:""}.mdi-beaker-remove-outline:before{content:""}.mdi-bed:before{content:""}.mdi-bed-clock:before{content:""}.mdi-bed-double:before{content:""}.mdi-bed-double-outline:before{content:""}.mdi-bed-empty:before{content:""}.mdi-bed-king:before{content:""}.mdi-bed-king-outline:before{content:""}.mdi-bed-outline:before{content:""}.mdi-bed-queen:before{content:""}.mdi-bed-queen-outline:before{content:""}.mdi-bed-single:before{content:""}.mdi-bed-single-outline:before{content:""}.mdi-bee:before{content:""}.mdi-bee-flower:before{content:""}.mdi-beehive-off-outline:before{content:""}.mdi-beehive-outline:before{content:""}.mdi-beekeeper:before{content:""}.mdi-beer:before{content:""}.mdi-beer-outline:before{content:""}.mdi-bell:before{content:""}.mdi-bell-alert:before{content:""}.mdi-bell-alert-outline:before{content:""}.mdi-bell-badge:before{content:""}.mdi-bell-badge-outline:before{content:""}.mdi-bell-cancel:before{content:""}.mdi-bell-cancel-outline:before{content:""}.mdi-bell-check:before{content:""}.mdi-bell-check-outline:before{content:""}.mdi-bell-circle:before{content:""}.mdi-bell-circle-outline:before{content:""}.mdi-bell-cog:before{content:""}.mdi-bell-cog-outline:before{content:""}.mdi-bell-minus:before{content:""}.mdi-bell-minus-outline:before{content:""}.mdi-bell-off:before{content:""}.mdi-bell-off-outline:before{content:""}.mdi-bell-outline:before{content:""}.mdi-bell-plus:before{content:""}.mdi-bell-plus-outline:before{content:""}.mdi-bell-remove:before{content:""}.mdi-bell-remove-outline:before{content:""}.mdi-bell-ring:before{content:""}.mdi-bell-ring-outline:before{content:""}.mdi-bell-sleep:before{content:""}.mdi-bell-sleep-outline:before{content:""}.mdi-bench:before{content:""}.mdi-bench-back:before{content:""}.mdi-beta:before{content:""}.mdi-betamax:before{content:""}.mdi-biathlon:before{content:""}.mdi-bicycle:before{content:""}.mdi-bicycle-basket:before{content:""}.mdi-bicycle-cargo:before{content:""}.mdi-bicycle-electric:before{content:""}.mdi-bicycle-penny-farthing:before{content:""}.mdi-bike:before{content:""}.mdi-bike-fast:before{content:""}.mdi-bike-pedal:before{content:""}.mdi-bike-pedal-clipless:before{content:""}.mdi-bike-pedal-mountain:before{content:""}.mdi-billboard:before{content:""}.mdi-billiards:before{content:""}.mdi-billiards-rack:before{content:""}.mdi-binoculars:before{content:""}.mdi-bio:before{content:""}.mdi-biohazard:before{content:""}.mdi-bird:before{content:""}.mdi-bitbucket:before{content:""}.mdi-bitcoin:before{content:""}.mdi-black-mesa:before{content:""}.mdi-blender:before{content:""}.mdi-blender-outline:before{content:""}.mdi-blender-software:before{content:""}.mdi-blinds:before{content:""}.mdi-blinds-horizontal:before{content:""}.mdi-blinds-horizontal-closed:before{content:""}.mdi-blinds-open:before{content:""}.mdi-blinds-vertical:before{content:""}.mdi-blinds-vertical-closed:before{content:""}.mdi-block-helper:before{content:""}.mdi-blood-bag:before{content:""}.mdi-bluetooth:before{content:""}.mdi-bluetooth-audio:before{content:""}.mdi-bluetooth-connect:before{content:""}.mdi-bluetooth-off:before{content:""}.mdi-bluetooth-settings:before{content:""}.mdi-bluetooth-transfer:before{content:""}.mdi-blur:before{content:""}.mdi-blur-linear:before{content:""}.mdi-blur-off:before{content:""}.mdi-blur-radial:before{content:""}.mdi-bolt:before{content:""}.mdi-bomb:before{content:""}.mdi-bomb-off:before{content:""}.mdi-bone:before{content:""}.mdi-bone-off:before{content:""}.mdi-book:before{content:""}.mdi-book-account:before{content:""}.mdi-book-account-outline:before{content:""}.mdi-book-alert:before{content:""}.mdi-book-alert-outline:before{content:""}.mdi-book-alphabet:before{content:""}.mdi-book-arrow-down:before{content:""}.mdi-book-arrow-down-outline:before{content:""}.mdi-book-arrow-left:before{content:""}.mdi-book-arrow-left-outline:before{content:""}.mdi-book-arrow-right:before{content:""}.mdi-book-arrow-right-outline:before{content:""}.mdi-book-arrow-up:before{content:""}.mdi-book-arrow-up-outline:before{content:""}.mdi-book-cancel:before{content:""}.mdi-book-cancel-outline:before{content:""}.mdi-book-check:before{content:""}.mdi-book-check-outline:before{content:""}.mdi-book-clock:before{content:""}.mdi-book-clock-outline:before{content:""}.mdi-book-cog:before{content:""}.mdi-book-cog-outline:before{content:""}.mdi-book-cross:before{content:""}.mdi-book-edit:before{content:""}.mdi-book-edit-outline:before{content:""}.mdi-book-education:before{content:""}.mdi-book-education-outline:before{content:""}.mdi-book-heart:before{content:""}.mdi-book-heart-outline:before{content:""}.mdi-book-information-variant:before{content:""}.mdi-book-lock:before{content:""}.mdi-book-lock-open:before{content:""}.mdi-book-lock-open-outline:before{content:""}.mdi-book-lock-outline:before{content:""}.mdi-book-marker:before{content:""}.mdi-book-marker-outline:before{content:""}.mdi-book-minus:before{content:""}.mdi-book-minus-multiple:before{content:""}.mdi-book-minus-multiple-outline:before{content:""}.mdi-book-minus-outline:before{content:""}.mdi-book-multiple:before{content:""}.mdi-book-multiple-outline:before{content:""}.mdi-book-music:before{content:""}.mdi-book-music-outline:before{content:""}.mdi-book-off:before{content:""}.mdi-book-off-outline:before{content:""}.mdi-book-open:before{content:""}.mdi-book-open-blank-variant:before{content:""}.mdi-book-open-outline:before{content:""}.mdi-book-open-page-variant:before{content:""}.mdi-book-open-page-variant-outline:before{content:""}.mdi-book-open-variant:before{content:""}.mdi-book-outline:before{content:""}.mdi-book-play:before{content:""}.mdi-book-play-outline:before{content:""}.mdi-book-plus:before{content:""}.mdi-book-plus-multiple:before{content:""}.mdi-book-plus-multiple-outline:before{content:""}.mdi-book-plus-outline:before{content:""}.mdi-book-refresh:before{content:""}.mdi-book-refresh-outline:before{content:""}.mdi-book-remove:before{content:""}.mdi-book-remove-multiple:before{content:""}.mdi-book-remove-multiple-outline:before{content:""}.mdi-book-remove-outline:before{content:""}.mdi-book-search:before{content:""}.mdi-book-search-outline:before{content:""}.mdi-book-settings:before{content:""}.mdi-book-settings-outline:before{content:""}.mdi-book-sync:before{content:""}.mdi-book-sync-outline:before{content:""}.mdi-book-variant:before{content:""}.mdi-bookmark:before{content:""}.mdi-bookmark-box:before{content:""}.mdi-bookmark-box-multiple:before{content:""}.mdi-bookmark-box-multiple-outline:before{content:""}.mdi-bookmark-box-outline:before{content:""}.mdi-bookmark-check:before{content:""}.mdi-bookmark-check-outline:before{content:""}.mdi-bookmark-minus:before{content:""}.mdi-bookmark-minus-outline:before{content:""}.mdi-bookmark-multiple:before{content:""}.mdi-bookmark-multiple-outline:before{content:""}.mdi-bookmark-music:before{content:""}.mdi-bookmark-music-outline:before{content:""}.mdi-bookmark-off:before{content:""}.mdi-bookmark-off-outline:before{content:""}.mdi-bookmark-outline:before{content:""}.mdi-bookmark-plus:before{content:""}.mdi-bookmark-plus-outline:before{content:""}.mdi-bookmark-remove:before{content:""}.mdi-bookmark-remove-outline:before{content:""}.mdi-bookshelf:before{content:""}.mdi-boom-gate:before{content:""}.mdi-boom-gate-alert:before{content:""}.mdi-boom-gate-alert-outline:before{content:""}.mdi-boom-gate-arrow-down:before{content:""}.mdi-boom-gate-arrow-down-outline:before{content:""}.mdi-boom-gate-arrow-up:before{content:""}.mdi-boom-gate-arrow-up-outline:before{content:""}.mdi-boom-gate-outline:before{content:""}.mdi-boom-gate-up:before{content:""}.mdi-boom-gate-up-outline:before{content:""}.mdi-boombox:before{content:""}.mdi-boomerang:before{content:""}.mdi-bootstrap:before{content:""}.mdi-border-all:before{content:""}.mdi-border-all-variant:before{content:""}.mdi-border-bottom:before{content:""}.mdi-border-bottom-variant:before{content:""}.mdi-border-color:before{content:""}.mdi-border-horizontal:before{content:""}.mdi-border-inside:before{content:""}.mdi-border-left:before{content:""}.mdi-border-left-variant:before{content:""}.mdi-border-none:before{content:""}.mdi-border-none-variant:before{content:""}.mdi-border-outside:before{content:""}.mdi-border-radius:before{content:""}.mdi-border-right:before{content:""}.mdi-border-right-variant:before{content:""}.mdi-border-style:before{content:""}.mdi-border-top:before{content:""}.mdi-border-top-variant:before{content:""}.mdi-border-vertical:before{content:""}.mdi-bottle-soda:before{content:""}.mdi-bottle-soda-classic:before{content:""}.mdi-bottle-soda-classic-outline:before{content:""}.mdi-bottle-soda-outline:before{content:""}.mdi-bottle-tonic:before{content:""}.mdi-bottle-tonic-outline:before{content:""}.mdi-bottle-tonic-plus:before{content:""}.mdi-bottle-tonic-plus-outline:before{content:""}.mdi-bottle-tonic-skull:before{content:""}.mdi-bottle-tonic-skull-outline:before{content:""}.mdi-bottle-wine:before{content:""}.mdi-bottle-wine-outline:before{content:""}.mdi-bow-arrow:before{content:""}.mdi-bow-tie:before{content:""}.mdi-bowl:before{content:""}.mdi-bowl-mix:before{content:""}.mdi-bowl-mix-outline:before{content:""}.mdi-bowl-outline:before{content:""}.mdi-bowling:before{content:""}.mdi-box:before{content:""}.mdi-box-cutter:before{content:""}.mdi-box-cutter-off:before{content:""}.mdi-box-shadow:before{content:""}.mdi-boxing-glove:before{content:""}.mdi-braille:before{content:""}.mdi-brain:before{content:""}.mdi-bread-slice:before{content:""}.mdi-bread-slice-outline:before{content:""}.mdi-bridge:before{content:""}.mdi-briefcase:before{content:""}.mdi-briefcase-account:before{content:""}.mdi-briefcase-account-outline:before{content:""}.mdi-briefcase-arrow-left-right:before{content:""}.mdi-briefcase-arrow-left-right-outline:before{content:""}.mdi-briefcase-arrow-up-down:before{content:""}.mdi-briefcase-arrow-up-down-outline:before{content:""}.mdi-briefcase-check:before{content:""}.mdi-briefcase-check-outline:before{content:""}.mdi-briefcase-clock:before{content:""}.mdi-briefcase-clock-outline:before{content:""}.mdi-briefcase-download:before{content:""}.mdi-briefcase-download-outline:before{content:""}.mdi-briefcase-edit:before{content:""}.mdi-briefcase-edit-outline:before{content:""}.mdi-briefcase-eye:before{content:""}.mdi-briefcase-eye-outline:before{content:""}.mdi-briefcase-minus:before{content:""}.mdi-briefcase-minus-outline:before{content:""}.mdi-briefcase-off:before{content:""}.mdi-briefcase-off-outline:before{content:""}.mdi-briefcase-outline:before{content:""}.mdi-briefcase-plus:before{content:""}.mdi-briefcase-plus-outline:before{content:""}.mdi-briefcase-remove:before{content:""}.mdi-briefcase-remove-outline:before{content:""}.mdi-briefcase-search:before{content:""}.mdi-briefcase-search-outline:before{content:""}.mdi-briefcase-upload:before{content:""}.mdi-briefcase-upload-outline:before{content:""}.mdi-briefcase-variant:before{content:""}.mdi-briefcase-variant-off:before{content:""}.mdi-briefcase-variant-off-outline:before{content:""}.mdi-briefcase-variant-outline:before{content:""}.mdi-brightness-1:before{content:""}.mdi-brightness-2:before{content:""}.mdi-brightness-3:before{content:""}.mdi-brightness-4:before{content:""}.mdi-brightness-5:before{content:""}.mdi-brightness-6:before{content:""}.mdi-brightness-7:before{content:""}.mdi-brightness-auto:before{content:""}.mdi-brightness-percent:before{content:""}.mdi-broadcast:before{content:""}.mdi-broadcast-off:before{content:""}.mdi-broom:before{content:""}.mdi-brush:before{content:""}.mdi-brush-off:before{content:""}.mdi-brush-outline:before{content:""}.mdi-brush-variant:before{content:""}.mdi-bucket:before{content:""}.mdi-bucket-outline:before{content:""}.mdi-buffet:before{content:""}.mdi-bug:before{content:""}.mdi-bug-check:before{content:""}.mdi-bug-check-outline:before{content:""}.mdi-bug-outline:before{content:""}.mdi-bug-pause:before{content:""}.mdi-bug-pause-outline:before{content:""}.mdi-bug-play:before{content:""}.mdi-bug-play-outline:before{content:""}.mdi-bug-stop:before{content:""}.mdi-bug-stop-outline:before{content:""}.mdi-bugle:before{content:""}.mdi-bulkhead-light:before{content:""}.mdi-bulldozer:before{content:""}.mdi-bullet:before{content:""}.mdi-bulletin-board:before{content:""}.mdi-bullhorn:before{content:""}.mdi-bullhorn-outline:before{content:""}.mdi-bullhorn-variant:before{content:""}.mdi-bullhorn-variant-outline:before{content:""}.mdi-bullseye:before{content:""}.mdi-bullseye-arrow:before{content:""}.mdi-bulma:before{content:""}.mdi-bunk-bed:before{content:""}.mdi-bunk-bed-outline:before{content:""}.mdi-bus:before{content:""}.mdi-bus-alert:before{content:""}.mdi-bus-articulated-end:before{content:""}.mdi-bus-articulated-front:before{content:""}.mdi-bus-clock:before{content:""}.mdi-bus-double-decker:before{content:""}.mdi-bus-electric:before{content:""}.mdi-bus-marker:before{content:""}.mdi-bus-multiple:before{content:""}.mdi-bus-school:before{content:""}.mdi-bus-side:before{content:""}.mdi-bus-sign:before{content:""}.mdi-bus-stop:before{content:""}.mdi-bus-stop-covered:before{content:""}.mdi-bus-stop-uncovered:before{content:""}.mdi-bus-wrench:before{content:""}.mdi-butterfly:before{content:""}.mdi-butterfly-outline:before{content:""}.mdi-button-cursor:before{content:""}.mdi-button-pointer:before{content:""}.mdi-cabin-a-frame:before{content:""}.mdi-cable-data:before{content:""}.mdi-cached:before{content:""}.mdi-cactus:before{content:""}.mdi-cake:before{content:""}.mdi-cake-layered:before{content:""}.mdi-cake-variant:before{content:""}.mdi-cake-variant-outline:before{content:""}.mdi-calculator:before{content:""}.mdi-calculator-variant:before{content:""}.mdi-calculator-variant-outline:before{content:""}.mdi-calendar:before{content:""}.mdi-calendar-account:before{content:""}.mdi-calendar-account-outline:before{content:""}.mdi-calendar-alert:before{content:""}.mdi-calendar-alert-outline:before{content:""}.mdi-calendar-arrow-left:before{content:""}.mdi-calendar-arrow-right:before{content:""}.mdi-calendar-badge:before{content:""}.mdi-calendar-badge-outline:before{content:""}.mdi-calendar-blank:before{content:""}.mdi-calendar-blank-multiple:before{content:""}.mdi-calendar-blank-outline:before{content:""}.mdi-calendar-check:before{content:""}.mdi-calendar-check-outline:before{content:""}.mdi-calendar-clock:before{content:""}.mdi-calendar-clock-outline:before{content:""}.mdi-calendar-collapse-horizontal:before{content:""}.mdi-calendar-collapse-horizontal-outline:before{content:""}.mdi-calendar-cursor:before{content:""}.mdi-calendar-cursor-outline:before{content:""}.mdi-calendar-edit:before{content:""}.mdi-calendar-edit-outline:before{content:""}.mdi-calendar-end:before{content:""}.mdi-calendar-end-outline:before{content:""}.mdi-calendar-expand-horizontal:before{content:""}.mdi-calendar-expand-horizontal-outline:before{content:""}.mdi-calendar-export:before{content:""}.mdi-calendar-export-outline:before{content:""}.mdi-calendar-filter:before{content:""}.mdi-calendar-filter-outline:before{content:""}.mdi-calendar-heart:before{content:""}.mdi-calendar-heart-outline:before{content:""}.mdi-calendar-import:before{content:""}.mdi-calendar-import-outline:before{content:""}.mdi-calendar-lock:before{content:""}.mdi-calendar-lock-open:before{content:""}.mdi-calendar-lock-open-outline:before{content:""}.mdi-calendar-lock-outline:before{content:""}.mdi-calendar-minus:before{content:""}.mdi-calendar-minus-outline:before{content:""}.mdi-calendar-month:before{content:""}.mdi-calendar-month-outline:before{content:""}.mdi-calendar-multiple:before{content:""}.mdi-calendar-multiple-check:before{content:""}.mdi-calendar-multiselect:before{content:""}.mdi-calendar-multiselect-outline:before{content:""}.mdi-calendar-outline:before{content:""}.mdi-calendar-plus:before{content:""}.mdi-calendar-plus-outline:before{content:""}.mdi-calendar-question:before{content:""}.mdi-calendar-question-outline:before{content:""}.mdi-calendar-range:before{content:""}.mdi-calendar-range-outline:before{content:""}.mdi-calendar-refresh:before{content:""}.mdi-calendar-refresh-outline:before{content:""}.mdi-calendar-remove:before{content:""}.mdi-calendar-remove-outline:before{content:""}.mdi-calendar-search:before{content:""}.mdi-calendar-search-outline:before{content:""}.mdi-calendar-star:before{content:""}.mdi-calendar-star-four-points:before{content:""}.mdi-calendar-star-outline:before{content:""}.mdi-calendar-start:before{content:""}.mdi-calendar-start-outline:before{content:""}.mdi-calendar-sync:before{content:""}.mdi-calendar-sync-outline:before{content:""}.mdi-calendar-text:before{content:""}.mdi-calendar-text-outline:before{content:""}.mdi-calendar-today:before{content:""}.mdi-calendar-today-outline:before{content:""}.mdi-calendar-week:before{content:""}.mdi-calendar-week-begin:before{content:""}.mdi-calendar-week-begin-outline:before{content:""}.mdi-calendar-week-outline:before{content:""}.mdi-calendar-weekend:before{content:""}.mdi-calendar-weekend-outline:before{content:""}.mdi-call-made:before{content:""}.mdi-call-merge:before{content:""}.mdi-call-missed:before{content:""}.mdi-call-received:before{content:""}.mdi-call-split:before{content:""}.mdi-camcorder:before{content:""}.mdi-camcorder-off:before{content:""}.mdi-camera:before{content:""}.mdi-camera-account:before{content:""}.mdi-camera-burst:before{content:""}.mdi-camera-control:before{content:""}.mdi-camera-document:before{content:""}.mdi-camera-document-off:before{content:""}.mdi-camera-enhance:before{content:""}.mdi-camera-enhance-outline:before{content:""}.mdi-camera-flip:before{content:""}.mdi-camera-flip-outline:before{content:""}.mdi-camera-front:before{content:""}.mdi-camera-front-variant:before{content:""}.mdi-camera-gopro:before{content:""}.mdi-camera-image:before{content:""}.mdi-camera-iris:before{content:""}.mdi-camera-lock:before{content:""}.mdi-camera-lock-open:before{content:""}.mdi-camera-lock-open-outline:before{content:""}.mdi-camera-lock-outline:before{content:""}.mdi-camera-marker:before{content:""}.mdi-camera-marker-outline:before{content:""}.mdi-camera-metering-center:before{content:""}.mdi-camera-metering-matrix:before{content:""}.mdi-camera-metering-partial:before{content:""}.mdi-camera-metering-spot:before{content:""}.mdi-camera-off:before{content:""}.mdi-camera-off-outline:before{content:""}.mdi-camera-outline:before{content:""}.mdi-camera-party-mode:before{content:""}.mdi-camera-plus:before{content:""}.mdi-camera-plus-outline:before{content:""}.mdi-camera-rear:before{content:""}.mdi-camera-rear-variant:before{content:""}.mdi-camera-retake:before{content:""}.mdi-camera-retake-outline:before{content:""}.mdi-camera-switch:before{content:""}.mdi-camera-switch-outline:before{content:""}.mdi-camera-timer:before{content:""}.mdi-camera-wireless:before{content:""}.mdi-camera-wireless-outline:before{content:""}.mdi-campfire:before{content:""}.mdi-cancel:before{content:""}.mdi-candelabra:before{content:""}.mdi-candelabra-fire:before{content:""}.mdi-candle:before{content:""}.mdi-candy:before{content:""}.mdi-candy-off:before{content:""}.mdi-candy-off-outline:before{content:""}.mdi-candy-outline:before{content:""}.mdi-candycane:before{content:""}.mdi-cannabis:before{content:""}.mdi-cannabis-off:before{content:""}.mdi-caps-lock:before{content:""}.mdi-car:before{content:""}.mdi-car-2-plus:before{content:""}.mdi-car-3-plus:before{content:""}.mdi-car-arrow-left:before{content:""}.mdi-car-arrow-right:before{content:""}.mdi-car-back:before{content:""}.mdi-car-battery:before{content:""}.mdi-car-brake-abs:before{content:""}.mdi-car-brake-alert:before{content:""}.mdi-car-brake-fluid-level:before{content:""}.mdi-car-brake-hold:before{content:""}.mdi-car-brake-low-pressure:before{content:""}.mdi-car-brake-parking:before{content:""}.mdi-car-brake-retarder:before{content:""}.mdi-car-brake-temperature:before{content:""}.mdi-car-brake-worn-linings:before{content:""}.mdi-car-child-seat:before{content:""}.mdi-car-clock:before{content:""}.mdi-car-clutch:before{content:""}.mdi-car-cog:before{content:""}.mdi-car-connected:before{content:""}.mdi-car-convertible:before{content:""}.mdi-car-coolant-level:before{content:""}.mdi-car-cruise-control:before{content:""}.mdi-car-defrost-front:before{content:""}.mdi-car-defrost-rear:before{content:""}.mdi-car-door:before{content:""}.mdi-car-door-lock:before{content:""}.mdi-car-door-lock-open:before{content:""}.mdi-car-electric:before{content:""}.mdi-car-electric-outline:before{content:""}.mdi-car-emergency:before{content:""}.mdi-car-esp:before{content:""}.mdi-car-estate:before{content:""}.mdi-car-hatchback:before{content:""}.mdi-car-info:before{content:""}.mdi-car-key:before{content:""}.mdi-car-lifted-pickup:before{content:""}.mdi-car-light-alert:before{content:""}.mdi-car-light-dimmed:before{content:""}.mdi-car-light-fog:before{content:""}.mdi-car-light-high:before{content:""}.mdi-car-limousine:before{content:""}.mdi-car-multiple:before{content:""}.mdi-car-off:before{content:""}.mdi-car-outline:before{content:""}.mdi-car-parking-lights:before{content:""}.mdi-car-pickup:before{content:""}.mdi-car-search:before{content:""}.mdi-car-search-outline:before{content:""}.mdi-car-seat:before{content:""}.mdi-car-seat-cooler:before{content:""}.mdi-car-seat-heater:before{content:""}.mdi-car-select:before{content:""}.mdi-car-settings:before{content:""}.mdi-car-shift-pattern:before{content:""}.mdi-car-side:before{content:""}.mdi-car-speed-limiter:before{content:""}.mdi-car-sports:before{content:""}.mdi-car-tire-alert:before{content:""}.mdi-car-traction-control:before{content:""}.mdi-car-turbocharger:before{content:""}.mdi-car-wash:before{content:""}.mdi-car-windshield:before{content:""}.mdi-car-windshield-outline:before{content:""}.mdi-car-wireless:before{content:""}.mdi-car-wrench:before{content:""}.mdi-carabiner:before{content:""}.mdi-caravan:before{content:""}.mdi-card:before{content:""}.mdi-card-account-details:before{content:""}.mdi-card-account-details-outline:before{content:""}.mdi-card-account-details-star:before{content:""}.mdi-card-account-details-star-outline:before{content:""}.mdi-card-account-mail:before{content:""}.mdi-card-account-mail-outline:before{content:""}.mdi-card-account-phone:before{content:""}.mdi-card-account-phone-outline:before{content:""}.mdi-card-bulleted:before{content:""}.mdi-card-bulleted-off:before{content:""}.mdi-card-bulleted-off-outline:before{content:""}.mdi-card-bulleted-outline:before{content:""}.mdi-card-bulleted-settings:before{content:""}.mdi-card-bulleted-settings-outline:before{content:""}.mdi-card-minus:before{content:""}.mdi-card-minus-outline:before{content:""}.mdi-card-multiple:before{content:""}.mdi-card-multiple-outline:before{content:""}.mdi-card-off:before{content:""}.mdi-card-off-outline:before{content:""}.mdi-card-outline:before{content:""}.mdi-card-plus:before{content:""}.mdi-card-plus-outline:before{content:""}.mdi-card-remove:before{content:""}.mdi-card-remove-outline:before{content:""}.mdi-card-search:before{content:""}.mdi-card-search-outline:before{content:""}.mdi-card-text:before{content:""}.mdi-card-text-outline:before{content:""}.mdi-cards:before{content:""}.mdi-cards-club:before{content:""}.mdi-cards-club-outline:before{content:""}.mdi-cards-diamond:before{content:""}.mdi-cards-diamond-outline:before{content:""}.mdi-cards-heart:before{content:""}.mdi-cards-heart-outline:before{content:""}.mdi-cards-outline:before{content:""}.mdi-cards-playing:before{content:""}.mdi-cards-playing-club:before{content:""}.mdi-cards-playing-club-multiple:before{content:""}.mdi-cards-playing-club-multiple-outline:before{content:""}.mdi-cards-playing-club-outline:before{content:""}.mdi-cards-playing-diamond:before{content:""}.mdi-cards-playing-diamond-multiple:before{content:""}.mdi-cards-playing-diamond-multiple-outline:before{content:""}.mdi-cards-playing-diamond-outline:before{content:""}.mdi-cards-playing-heart:before{content:""}.mdi-cards-playing-heart-multiple:before{content:""}.mdi-cards-playing-heart-multiple-outline:before{content:""}.mdi-cards-playing-heart-outline:before{content:""}.mdi-cards-playing-outline:before{content:""}.mdi-cards-playing-spade:before{content:""}.mdi-cards-playing-spade-multiple:before{content:""}.mdi-cards-playing-spade-multiple-outline:before{content:""}.mdi-cards-playing-spade-outline:before{content:""}.mdi-cards-spade:before{content:""}.mdi-cards-spade-outline:before{content:""}.mdi-cards-variant:before{content:""}.mdi-carrot:before{content:""}.mdi-cart:before{content:""}.mdi-cart-arrow-down:before{content:""}.mdi-cart-arrow-right:before{content:""}.mdi-cart-arrow-up:before{content:""}.mdi-cart-check:before{content:""}.mdi-cart-heart:before{content:""}.mdi-cart-minus:before{content:""}.mdi-cart-off:before{content:""}.mdi-cart-outline:before{content:""}.mdi-cart-percent:before{content:""}.mdi-cart-plus:before{content:""}.mdi-cart-remove:before{content:""}.mdi-cart-variant:before{content:""}.mdi-case-sensitive-alt:before{content:""}.mdi-cash:before{content:""}.mdi-cash-100:before{content:""}.mdi-cash-check:before{content:""}.mdi-cash-clock:before{content:""}.mdi-cash-edit:before{content:""}.mdi-cash-fast:before{content:""}.mdi-cash-lock:before{content:""}.mdi-cash-lock-open:before{content:""}.mdi-cash-marker:before{content:""}.mdi-cash-minus:before{content:""}.mdi-cash-multiple:before{content:""}.mdi-cash-off:before{content:""}.mdi-cash-plus:before{content:""}.mdi-cash-refund:before{content:""}.mdi-cash-register:before{content:""}.mdi-cash-remove:before{content:""}.mdi-cash-sync:before{content:""}.mdi-cassette:before{content:""}.mdi-cast:before{content:""}.mdi-cast-audio:before{content:""}.mdi-cast-audio-variant:before{content:""}.mdi-cast-connected:before{content:""}.mdi-cast-education:before{content:""}.mdi-cast-off:before{content:""}.mdi-cast-variant:before{content:""}.mdi-castle:before{content:""}.mdi-cat:before{content:""}.mdi-cctv:before{content:""}.mdi-cctv-off:before{content:""}.mdi-ceiling-fan:before{content:""}.mdi-ceiling-fan-light:before{content:""}.mdi-ceiling-light:before{content:""}.mdi-ceiling-light-multiple:before{content:""}.mdi-ceiling-light-multiple-outline:before{content:""}.mdi-ceiling-light-outline:before{content:""}.mdi-cellphone:before{content:""}.mdi-cellphone-arrow-down:before{content:""}.mdi-cellphone-arrow-down-variant:before{content:""}.mdi-cellphone-basic:before{content:""}.mdi-cellphone-charging:before{content:""}.mdi-cellphone-check:before{content:""}.mdi-cellphone-cog:before{content:""}.mdi-cellphone-dock:before{content:""}.mdi-cellphone-information:before{content:""}.mdi-cellphone-key:before{content:""}.mdi-cellphone-link:before{content:""}.mdi-cellphone-link-off:before{content:""}.mdi-cellphone-lock:before{content:""}.mdi-cellphone-marker:before{content:""}.mdi-cellphone-message:before{content:""}.mdi-cellphone-message-off:before{content:""}.mdi-cellphone-nfc:before{content:""}.mdi-cellphone-nfc-off:before{content:""}.mdi-cellphone-off:before{content:""}.mdi-cellphone-play:before{content:""}.mdi-cellphone-remove:before{content:""}.mdi-cellphone-screenshot:before{content:""}.mdi-cellphone-settings:before{content:""}.mdi-cellphone-sound:before{content:""}.mdi-cellphone-text:before{content:""}.mdi-cellphone-wireless:before{content:""}.mdi-centos:before{content:""}.mdi-certificate:before{content:""}.mdi-certificate-outline:before{content:""}.mdi-chair-rolling:before{content:""}.mdi-chair-school:before{content:""}.mdi-chandelier:before{content:""}.mdi-charity:before{content:""}.mdi-charity-search:before{content:""}.mdi-chart-arc:before{content:""}.mdi-chart-areaspline:before{content:""}.mdi-chart-areaspline-variant:before{content:""}.mdi-chart-bar:before{content:""}.mdi-chart-bar-stacked:before{content:""}.mdi-chart-bell-curve:before{content:""}.mdi-chart-bell-curve-cumulative:before{content:""}.mdi-chart-box:before{content:""}.mdi-chart-box-outline:before{content:""}.mdi-chart-box-plus-outline:before{content:""}.mdi-chart-bubble:before{content:""}.mdi-chart-donut:before{content:""}.mdi-chart-donut-variant:before{content:""}.mdi-chart-gantt:before{content:""}.mdi-chart-histogram:before{content:""}.mdi-chart-line:before{content:""}.mdi-chart-line-stacked:before{content:""}.mdi-chart-line-variant:before{content:""}.mdi-chart-multiline:before{content:""}.mdi-chart-multiple:before{content:""}.mdi-chart-pie:before{content:""}.mdi-chart-pie-outline:before{content:""}.mdi-chart-ppf:before{content:""}.mdi-chart-sankey:before{content:""}.mdi-chart-sankey-variant:before{content:""}.mdi-chart-scatter-plot:before{content:""}.mdi-chart-scatter-plot-hexbin:before{content:""}.mdi-chart-timeline:before{content:""}.mdi-chart-timeline-variant:before{content:""}.mdi-chart-timeline-variant-shimmer:before{content:""}.mdi-chart-tree:before{content:""}.mdi-chart-waterfall:before{content:""}.mdi-chat:before{content:""}.mdi-chat-alert:before{content:""}.mdi-chat-alert-outline:before{content:""}.mdi-chat-minus:before{content:""}.mdi-chat-minus-outline:before{content:""}.mdi-chat-outline:before{content:""}.mdi-chat-plus:before{content:""}.mdi-chat-plus-outline:before{content:""}.mdi-chat-processing:before{content:""}.mdi-chat-processing-outline:before{content:""}.mdi-chat-question:before{content:""}.mdi-chat-question-outline:before{content:""}.mdi-chat-remove:before{content:""}.mdi-chat-remove-outline:before{content:""}.mdi-chat-sleep:before{content:""}.mdi-chat-sleep-outline:before{content:""}.mdi-check:before{content:""}.mdi-check-all:before{content:""}.mdi-check-bold:before{content:""}.mdi-check-circle:before{content:""}.mdi-check-circle-outline:before{content:""}.mdi-check-decagram:before{content:""}.mdi-check-decagram-outline:before{content:""}.mdi-check-network:before{content:""}.mdi-check-network-outline:before{content:""}.mdi-check-outline:before{content:""}.mdi-check-underline:before{content:""}.mdi-check-underline-circle:before{content:""}.mdi-check-underline-circle-outline:before{content:""}.mdi-checkbook:before{content:""}.mdi-checkbook-arrow-left:before{content:""}.mdi-checkbook-arrow-right:before{content:""}.mdi-checkbox-blank:before{content:""}.mdi-checkbox-blank-badge:before{content:""}.mdi-checkbox-blank-badge-outline:before{content:""}.mdi-checkbox-blank-circle:before{content:""}.mdi-checkbox-blank-circle-outline:before{content:""}.mdi-checkbox-blank-off:before{content:""}.mdi-checkbox-blank-off-outline:before{content:""}.mdi-checkbox-blank-outline:before{content:""}.mdi-checkbox-intermediate:before{content:""}.mdi-checkbox-intermediate-variant:before{content:""}.mdi-checkbox-marked:before{content:""}.mdi-checkbox-marked-circle:before{content:""}.mdi-checkbox-marked-circle-auto-outline:before{content:""}.mdi-checkbox-marked-circle-minus-outline:before{content:""}.mdi-checkbox-marked-circle-outline:before{content:""}.mdi-checkbox-marked-circle-plus-outline:before{content:""}.mdi-checkbox-marked-outline:before{content:""}.mdi-checkbox-multiple-blank:before{content:""}.mdi-checkbox-multiple-blank-circle:before{content:""}.mdi-checkbox-multiple-blank-circle-outline:before{content:""}.mdi-checkbox-multiple-blank-outline:before{content:""}.mdi-checkbox-multiple-marked:before{content:""}.mdi-checkbox-multiple-marked-circle:before{content:""}.mdi-checkbox-multiple-marked-circle-outline:before{content:""}.mdi-checkbox-multiple-marked-outline:before{content:""}.mdi-checkbox-multiple-outline:before{content:""}.mdi-checkbox-outline:before{content:""}.mdi-checkerboard:before{content:""}.mdi-checkerboard-minus:before{content:""}.mdi-checkerboard-plus:before{content:""}.mdi-checkerboard-remove:before{content:""}.mdi-cheese:before{content:""}.mdi-cheese-off:before{content:""}.mdi-chef-hat:before{content:""}.mdi-chemical-weapon:before{content:""}.mdi-chess-bishop:before{content:""}.mdi-chess-king:before{content:""}.mdi-chess-knight:before{content:""}.mdi-chess-pawn:before{content:""}.mdi-chess-queen:before{content:""}.mdi-chess-rook:before{content:""}.mdi-chevron-double-down:before{content:""}.mdi-chevron-double-left:before{content:""}.mdi-chevron-double-right:before{content:""}.mdi-chevron-double-up:before{content:""}.mdi-chevron-down:before{content:""}.mdi-chevron-down-box:before{content:""}.mdi-chevron-down-box-outline:before{content:""}.mdi-chevron-down-circle:before{content:""}.mdi-chevron-down-circle-outline:before{content:""}.mdi-chevron-left:before{content:""}.mdi-chevron-left-box:before{content:""}.mdi-chevron-left-box-outline:before{content:""}.mdi-chevron-left-circle:before{content:""}.mdi-chevron-left-circle-outline:before{content:""}.mdi-chevron-right:before{content:""}.mdi-chevron-right-box:before{content:""}.mdi-chevron-right-box-outline:before{content:""}.mdi-chevron-right-circle:before{content:""}.mdi-chevron-right-circle-outline:before{content:""}.mdi-chevron-triple-down:before{content:""}.mdi-chevron-triple-left:before{content:""}.mdi-chevron-triple-right:before{content:""}.mdi-chevron-triple-up:before{content:""}.mdi-chevron-up:before{content:""}.mdi-chevron-up-box:before{content:""}.mdi-chevron-up-box-outline:before{content:""}.mdi-chevron-up-circle:before{content:""}.mdi-chevron-up-circle-outline:before{content:""}.mdi-chili-alert:before{content:""}.mdi-chili-alert-outline:before{content:""}.mdi-chili-hot:before{content:""}.mdi-chili-hot-outline:before{content:""}.mdi-chili-medium:before{content:""}.mdi-chili-medium-outline:before{content:""}.mdi-chili-mild:before{content:""}.mdi-chili-mild-outline:before{content:""}.mdi-chili-off:before{content:""}.mdi-chili-off-outline:before{content:""}.mdi-chip:before{content:""}.mdi-church:before{content:""}.mdi-church-outline:before{content:""}.mdi-cigar:before{content:""}.mdi-cigar-off:before{content:""}.mdi-circle:before{content:""}.mdi-circle-box:before{content:""}.mdi-circle-box-outline:before{content:""}.mdi-circle-double:before{content:""}.mdi-circle-edit-outline:before{content:""}.mdi-circle-expand:before{content:""}.mdi-circle-half:before{content:""}.mdi-circle-half-full:before{content:""}.mdi-circle-medium:before{content:""}.mdi-circle-multiple:before{content:""}.mdi-circle-multiple-outline:before{content:""}.mdi-circle-off-outline:before{content:""}.mdi-circle-opacity:before{content:""}.mdi-circle-outline:before{content:""}.mdi-circle-slice-1:before{content:""}.mdi-circle-slice-2:before{content:""}.mdi-circle-slice-3:before{content:""}.mdi-circle-slice-4:before{content:""}.mdi-circle-slice-5:before{content:""}.mdi-circle-slice-6:before{content:""}.mdi-circle-slice-7:before{content:""}.mdi-circle-slice-8:before{content:""}.mdi-circle-small:before{content:""}.mdi-circular-saw:before{content:""}.mdi-city:before{content:""}.mdi-city-switch:before{content:""}.mdi-city-variant:before{content:""}.mdi-city-variant-outline:before{content:""}.mdi-clipboard:before{content:""}.mdi-clipboard-account:before{content:""}.mdi-clipboard-account-outline:before{content:""}.mdi-clipboard-alert:before{content:""}.mdi-clipboard-alert-outline:before{content:""}.mdi-clipboard-arrow-down:before{content:""}.mdi-clipboard-arrow-down-outline:before{content:""}.mdi-clipboard-arrow-left:before{content:""}.mdi-clipboard-arrow-left-outline:before{content:""}.mdi-clipboard-arrow-right:before{content:""}.mdi-clipboard-arrow-right-outline:before{content:""}.mdi-clipboard-arrow-up:before{content:""}.mdi-clipboard-arrow-up-outline:before{content:""}.mdi-clipboard-check:before{content:""}.mdi-clipboard-check-multiple:before{content:""}.mdi-clipboard-check-multiple-outline:before{content:""}.mdi-clipboard-check-outline:before{content:""}.mdi-clipboard-clock:before{content:""}.mdi-clipboard-clock-outline:before{content:""}.mdi-clipboard-edit:before{content:""}.mdi-clipboard-edit-outline:before{content:""}.mdi-clipboard-file:before{content:""}.mdi-clipboard-file-outline:before{content:""}.mdi-clipboard-flow:before{content:""}.mdi-clipboard-flow-outline:before{content:""}.mdi-clipboard-list:before{content:""}.mdi-clipboard-list-outline:before{content:""}.mdi-clipboard-minus:before{content:""}.mdi-clipboard-minus-outline:before{content:""}.mdi-clipboard-multiple:before{content:""}.mdi-clipboard-multiple-outline:before{content:""}.mdi-clipboard-off:before{content:""}.mdi-clipboard-off-outline:before{content:""}.mdi-clipboard-outline:before{content:""}.mdi-clipboard-play:before{content:""}.mdi-clipboard-play-multiple:before{content:""}.mdi-clipboard-play-multiple-outline:before{content:""}.mdi-clipboard-play-outline:before{content:""}.mdi-clipboard-plus:before{content:""}.mdi-clipboard-plus-outline:before{content:""}.mdi-clipboard-pulse:before{content:""}.mdi-clipboard-pulse-outline:before{content:""}.mdi-clipboard-remove:before{content:""}.mdi-clipboard-remove-outline:before{content:""}.mdi-clipboard-search:before{content:""}.mdi-clipboard-search-outline:before{content:""}.mdi-clipboard-text:before{content:""}.mdi-clipboard-text-clock:before{content:""}.mdi-clipboard-text-clock-outline:before{content:""}.mdi-clipboard-text-multiple:before{content:""}.mdi-clipboard-text-multiple-outline:before{content:""}.mdi-clipboard-text-off:before{content:""}.mdi-clipboard-text-off-outline:before{content:""}.mdi-clipboard-text-outline:before{content:""}.mdi-clipboard-text-play:before{content:""}.mdi-clipboard-text-play-outline:before{content:""}.mdi-clipboard-text-search:before{content:""}.mdi-clipboard-text-search-outline:before{content:""}.mdi-clippy:before{content:""}.mdi-clock:before{content:""}.mdi-clock-alert:before{content:""}.mdi-clock-alert-outline:before{content:""}.mdi-clock-check:before{content:""}.mdi-clock-check-outline:before{content:""}.mdi-clock-digital:before{content:""}.mdi-clock-edit:before{content:""}.mdi-clock-edit-outline:before{content:""}.mdi-clock-end:before{content:""}.mdi-clock-fast:before{content:""}.mdi-clock-in:before{content:""}.mdi-clock-minus:before{content:""}.mdi-clock-minus-outline:before{content:""}.mdi-clock-out:before{content:""}.mdi-clock-outline:before{content:""}.mdi-clock-plus:before{content:""}.mdi-clock-plus-outline:before{content:""}.mdi-clock-remove:before{content:""}.mdi-clock-remove-outline:before{content:""}.mdi-clock-star-four-points:before{content:""}.mdi-clock-star-four-points-outline:before{content:""}.mdi-clock-start:before{content:""}.mdi-clock-time-eight:before{content:""}.mdi-clock-time-eight-outline:before{content:""}.mdi-clock-time-eleven:before{content:""}.mdi-clock-time-eleven-outline:before{content:""}.mdi-clock-time-five:before{content:""}.mdi-clock-time-five-outline:before{content:""}.mdi-clock-time-four:before{content:""}.mdi-clock-time-four-outline:before{content:""}.mdi-clock-time-nine:before{content:""}.mdi-clock-time-nine-outline:before{content:""}.mdi-clock-time-one:before{content:""}.mdi-clock-time-one-outline:before{content:""}.mdi-clock-time-seven:before{content:""}.mdi-clock-time-seven-outline:before{content:""}.mdi-clock-time-six:before{content:""}.mdi-clock-time-six-outline:before{content:""}.mdi-clock-time-ten:before{content:""}.mdi-clock-time-ten-outline:before{content:""}.mdi-clock-time-three:before{content:""}.mdi-clock-time-three-outline:before{content:""}.mdi-clock-time-twelve:before{content:""}.mdi-clock-time-twelve-outline:before{content:""}.mdi-clock-time-two:before{content:""}.mdi-clock-time-two-outline:before{content:""}.mdi-close:before{content:""}.mdi-close-box:before{content:""}.mdi-close-box-multiple:before{content:""}.mdi-close-box-multiple-outline:before{content:""}.mdi-close-box-outline:before{content:""}.mdi-close-circle:before{content:""}.mdi-close-circle-multiple:before{content:""}.mdi-close-circle-multiple-outline:before{content:""}.mdi-close-circle-outline:before{content:""}.mdi-close-network:before{content:""}.mdi-close-network-outline:before{content:""}.mdi-close-octagon:before{content:""}.mdi-close-octagon-outline:before{content:""}.mdi-close-outline:before{content:""}.mdi-close-thick:before{content:""}.mdi-closed-caption:before{content:""}.mdi-closed-caption-outline:before{content:""}.mdi-cloud:before{content:""}.mdi-cloud-alert:before{content:""}.mdi-cloud-alert-outline:before{content:""}.mdi-cloud-arrow-down:before{content:""}.mdi-cloud-arrow-down-outline:before{content:""}.mdi-cloud-arrow-left:before{content:""}.mdi-cloud-arrow-left-outline:before{content:""}.mdi-cloud-arrow-right:before{content:""}.mdi-cloud-arrow-right-outline:before{content:""}.mdi-cloud-arrow-up:before{content:""}.mdi-cloud-arrow-up-outline:before{content:""}.mdi-cloud-braces:before{content:""}.mdi-cloud-cancel:before{content:""}.mdi-cloud-cancel-outline:before{content:""}.mdi-cloud-check:before{content:""}.mdi-cloud-check-outline:before{content:""}.mdi-cloud-check-variant:before{content:""}.mdi-cloud-check-variant-outline:before{content:""}.mdi-cloud-circle:before{content:""}.mdi-cloud-circle-outline:before{content:""}.mdi-cloud-clock:before{content:""}.mdi-cloud-clock-outline:before{content:""}.mdi-cloud-cog:before{content:""}.mdi-cloud-cog-outline:before{content:""}.mdi-cloud-download:before{content:""}.mdi-cloud-download-outline:before{content:""}.mdi-cloud-key:before{content:""}.mdi-cloud-key-outline:before{content:""}.mdi-cloud-lock:before{content:""}.mdi-cloud-lock-open:before{content:""}.mdi-cloud-lock-open-outline:before{content:""}.mdi-cloud-lock-outline:before{content:""}.mdi-cloud-minus:before{content:""}.mdi-cloud-minus-outline:before{content:""}.mdi-cloud-off:before{content:""}.mdi-cloud-off-outline:before{content:""}.mdi-cloud-outline:before{content:""}.mdi-cloud-percent:before{content:""}.mdi-cloud-percent-outline:before{content:""}.mdi-cloud-plus:before{content:""}.mdi-cloud-plus-outline:before{content:""}.mdi-cloud-print:before{content:""}.mdi-cloud-print-outline:before{content:""}.mdi-cloud-question:before{content:""}.mdi-cloud-question-outline:before{content:""}.mdi-cloud-refresh:before{content:""}.mdi-cloud-refresh-outline:before{content:""}.mdi-cloud-refresh-variant:before{content:""}.mdi-cloud-refresh-variant-outline:before{content:""}.mdi-cloud-remove:before{content:""}.mdi-cloud-remove-outline:before{content:""}.mdi-cloud-search:before{content:""}.mdi-cloud-search-outline:before{content:""}.mdi-cloud-sync:before{content:""}.mdi-cloud-sync-outline:before{content:""}.mdi-cloud-tags:before{content:""}.mdi-cloud-upload:before{content:""}.mdi-cloud-upload-outline:before{content:""}.mdi-clouds:before{content:""}.mdi-clover:before{content:""}.mdi-clover-outline:before{content:""}.mdi-coach-lamp:before{content:""}.mdi-coach-lamp-variant:before{content:""}.mdi-coat-rack:before{content:""}.mdi-code-array:before{content:""}.mdi-code-block-braces:before{content:""}.mdi-code-block-brackets:before{content:""}.mdi-code-block-parentheses:before{content:""}.mdi-code-block-tags:before{content:""}.mdi-code-braces:before{content:""}.mdi-code-braces-box:before{content:""}.mdi-code-brackets:before{content:""}.mdi-code-equal:before{content:""}.mdi-code-greater-than:before{content:""}.mdi-code-greater-than-or-equal:before{content:""}.mdi-code-json:before{content:""}.mdi-code-less-than:before{content:""}.mdi-code-less-than-or-equal:before{content:""}.mdi-code-not-equal:before{content:""}.mdi-code-not-equal-variant:before{content:""}.mdi-code-parentheses:before{content:""}.mdi-code-parentheses-box:before{content:""}.mdi-code-string:before{content:""}.mdi-code-tags:before{content:""}.mdi-code-tags-check:before{content:""}.mdi-codepen:before{content:""}.mdi-coffee:before{content:""}.mdi-coffee-maker:before{content:""}.mdi-coffee-maker-check:before{content:""}.mdi-coffee-maker-check-outline:before{content:""}.mdi-coffee-maker-outline:before{content:""}.mdi-coffee-off:before{content:""}.mdi-coffee-off-outline:before{content:""}.mdi-coffee-outline:before{content:""}.mdi-coffee-to-go:before{content:""}.mdi-coffee-to-go-outline:before{content:""}.mdi-coffin:before{content:""}.mdi-cog:before{content:""}.mdi-cog-box:before{content:""}.mdi-cog-clockwise:before{content:""}.mdi-cog-counterclockwise:before{content:""}.mdi-cog-off:before{content:""}.mdi-cog-off-outline:before{content:""}.mdi-cog-outline:before{content:""}.mdi-cog-pause:before{content:""}.mdi-cog-pause-outline:before{content:""}.mdi-cog-play:before{content:""}.mdi-cog-play-outline:before{content:""}.mdi-cog-refresh:before{content:""}.mdi-cog-refresh-outline:before{content:""}.mdi-cog-stop:before{content:""}.mdi-cog-stop-outline:before{content:""}.mdi-cog-sync:before{content:""}.mdi-cog-sync-outline:before{content:""}.mdi-cog-transfer:before{content:""}.mdi-cog-transfer-outline:before{content:""}.mdi-cogs:before{content:""}.mdi-collage:before{content:""}.mdi-collapse-all:before{content:""}.mdi-collapse-all-outline:before{content:""}.mdi-color-helper:before{content:""}.mdi-comma:before{content:""}.mdi-comma-box:before{content:""}.mdi-comma-box-outline:before{content:""}.mdi-comma-circle:before{content:""}.mdi-comma-circle-outline:before{content:""}.mdi-comment:before{content:""}.mdi-comment-account:before{content:""}.mdi-comment-account-outline:before{content:""}.mdi-comment-alert:before{content:""}.mdi-comment-alert-outline:before{content:""}.mdi-comment-arrow-left:before{content:""}.mdi-comment-arrow-left-outline:before{content:""}.mdi-comment-arrow-right:before{content:""}.mdi-comment-arrow-right-outline:before{content:""}.mdi-comment-bookmark:before{content:""}.mdi-comment-bookmark-outline:before{content:""}.mdi-comment-check:before{content:""}.mdi-comment-check-outline:before{content:""}.mdi-comment-edit:before{content:""}.mdi-comment-edit-outline:before{content:""}.mdi-comment-eye:before{content:""}.mdi-comment-eye-outline:before{content:""}.mdi-comment-flash:before{content:""}.mdi-comment-flash-outline:before{content:""}.mdi-comment-minus:before{content:""}.mdi-comment-minus-outline:before{content:""}.mdi-comment-multiple:before{content:""}.mdi-comment-multiple-outline:before{content:""}.mdi-comment-off:before{content:""}.mdi-comment-off-outline:before{content:""}.mdi-comment-outline:before{content:""}.mdi-comment-plus:before{content:""}.mdi-comment-plus-outline:before{content:""}.mdi-comment-processing:before{content:""}.mdi-comment-processing-outline:before{content:""}.mdi-comment-question:before{content:""}.mdi-comment-question-outline:before{content:""}.mdi-comment-quote:before{content:""}.mdi-comment-quote-outline:before{content:""}.mdi-comment-remove:before{content:""}.mdi-comment-remove-outline:before{content:""}.mdi-comment-search:before{content:""}.mdi-comment-search-outline:before{content:""}.mdi-comment-text:before{content:""}.mdi-comment-text-multiple:before{content:""}.mdi-comment-text-multiple-outline:before{content:""}.mdi-comment-text-outline:before{content:""}.mdi-compare:before{content:""}.mdi-compare-horizontal:before{content:""}.mdi-compare-remove:before{content:""}.mdi-compare-vertical:before{content:""}.mdi-compass:before{content:""}.mdi-compass-off:before{content:""}.mdi-compass-off-outline:before{content:""}.mdi-compass-outline:before{content:""}.mdi-compass-rose:before{content:""}.mdi-compost:before{content:""}.mdi-cone:before{content:""}.mdi-cone-off:before{content:""}.mdi-connection:before{content:""}.mdi-console:before{content:""}.mdi-console-line:before{content:""}.mdi-console-network:before{content:""}.mdi-console-network-outline:before{content:""}.mdi-consolidate:before{content:""}.mdi-contactless-payment:before{content:""}.mdi-contactless-payment-circle:before{content:""}.mdi-contactless-payment-circle-outline:before{content:""}.mdi-contacts:before{content:""}.mdi-contacts-outline:before{content:""}.mdi-contain:before{content:""}.mdi-contain-end:before{content:""}.mdi-contain-start:before{content:""}.mdi-content-copy:before{content:""}.mdi-content-cut:before{content:""}.mdi-content-duplicate:before{content:""}.mdi-content-paste:before{content:""}.mdi-content-save:before{content:""}.mdi-content-save-alert:before{content:""}.mdi-content-save-alert-outline:before{content:""}.mdi-content-save-all:before{content:""}.mdi-content-save-all-outline:before{content:""}.mdi-content-save-check:before{content:""}.mdi-content-save-check-outline:before{content:""}.mdi-content-save-cog:before{content:""}.mdi-content-save-cog-outline:before{content:""}.mdi-content-save-edit:before{content:""}.mdi-content-save-edit-outline:before{content:""}.mdi-content-save-minus:before{content:""}.mdi-content-save-minus-outline:before{content:""}.mdi-content-save-move:before{content:""}.mdi-content-save-move-outline:before{content:""}.mdi-content-save-off:before{content:""}.mdi-content-save-off-outline:before{content:""}.mdi-content-save-outline:before{content:""}.mdi-content-save-plus:before{content:""}.mdi-content-save-plus-outline:before{content:""}.mdi-content-save-settings:before{content:""}.mdi-content-save-settings-outline:before{content:""}.mdi-contrast:before{content:""}.mdi-contrast-box:before{content:""}.mdi-contrast-circle:before{content:""}.mdi-controller:before{content:""}.mdi-controller-classic:before{content:""}.mdi-controller-classic-outline:before{content:""}.mdi-controller-off:before{content:""}.mdi-cookie:before{content:""}.mdi-cookie-alert:before{content:""}.mdi-cookie-alert-outline:before{content:""}.mdi-cookie-check:before{content:""}.mdi-cookie-check-outline:before{content:""}.mdi-cookie-clock:before{content:""}.mdi-cookie-clock-outline:before{content:""}.mdi-cookie-cog:before{content:""}.mdi-cookie-cog-outline:before{content:""}.mdi-cookie-edit:before{content:""}.mdi-cookie-edit-outline:before{content:""}.mdi-cookie-lock:before{content:""}.mdi-cookie-lock-outline:before{content:""}.mdi-cookie-minus:before{content:""}.mdi-cookie-minus-outline:before{content:""}.mdi-cookie-off:before{content:""}.mdi-cookie-off-outline:before{content:""}.mdi-cookie-outline:before{content:""}.mdi-cookie-plus:before{content:""}.mdi-cookie-plus-outline:before{content:""}.mdi-cookie-refresh:before{content:""}.mdi-cookie-refresh-outline:before{content:""}.mdi-cookie-remove:before{content:""}.mdi-cookie-remove-outline:before{content:""}.mdi-cookie-settings:before{content:""}.mdi-cookie-settings-outline:before{content:""}.mdi-coolant-temperature:before{content:""}.mdi-copyleft:before{content:""}.mdi-copyright:before{content:""}.mdi-cordova:before{content:""}.mdi-corn:before{content:""}.mdi-corn-off:before{content:""}.mdi-cosine-wave:before{content:""}.mdi-counter:before{content:""}.mdi-countertop:before{content:""}.mdi-countertop-outline:before{content:""}.mdi-cow:before{content:""}.mdi-cow-off:before{content:""}.mdi-cpu-32-bit:before{content:""}.mdi-cpu-64-bit:before{content:""}.mdi-cradle:before{content:""}.mdi-cradle-outline:before{content:""}.mdi-crane:before{content:""}.mdi-creation:before{content:""}.mdi-creation-outline:before{content:""}.mdi-creative-commons:before{content:""}.mdi-credit-card:before{content:""}.mdi-credit-card-check:before{content:""}.mdi-credit-card-check-outline:before{content:""}.mdi-credit-card-chip:before{content:""}.mdi-credit-card-chip-outline:before{content:""}.mdi-credit-card-clock:before{content:""}.mdi-credit-card-clock-outline:before{content:""}.mdi-credit-card-edit:before{content:""}.mdi-credit-card-edit-outline:before{content:""}.mdi-credit-card-fast:before{content:""}.mdi-credit-card-fast-outline:before{content:""}.mdi-credit-card-lock:before{content:""}.mdi-credit-card-lock-outline:before{content:""}.mdi-credit-card-marker:before{content:""}.mdi-credit-card-marker-outline:before{content:""}.mdi-credit-card-minus:before{content:""}.mdi-credit-card-minus-outline:before{content:""}.mdi-credit-card-multiple:before{content:""}.mdi-credit-card-multiple-outline:before{content:""}.mdi-credit-card-off:before{content:""}.mdi-credit-card-off-outline:before{content:""}.mdi-credit-card-outline:before{content:""}.mdi-credit-card-plus:before{content:""}.mdi-credit-card-plus-outline:before{content:""}.mdi-credit-card-refresh:before{content:""}.mdi-credit-card-refresh-outline:before{content:""}.mdi-credit-card-refund:before{content:""}.mdi-credit-card-refund-outline:before{content:""}.mdi-credit-card-remove:before{content:""}.mdi-credit-card-remove-outline:before{content:""}.mdi-credit-card-scan:before{content:""}.mdi-credit-card-scan-outline:before{content:""}.mdi-credit-card-search:before{content:""}.mdi-credit-card-search-outline:before{content:""}.mdi-credit-card-settings:before{content:""}.mdi-credit-card-settings-outline:before{content:""}.mdi-credit-card-sync:before{content:""}.mdi-credit-card-sync-outline:before{content:""}.mdi-credit-card-wireless:before{content:""}.mdi-credit-card-wireless-off:before{content:""}.mdi-credit-card-wireless-off-outline:before{content:""}.mdi-credit-card-wireless-outline:before{content:""}.mdi-cricket:before{content:""}.mdi-crop:before{content:""}.mdi-crop-free:before{content:""}.mdi-crop-landscape:before{content:""}.mdi-crop-portrait:before{content:""}.mdi-crop-rotate:before{content:""}.mdi-crop-square:before{content:""}.mdi-cross:before{content:""}.mdi-cross-bolnisi:before{content:""}.mdi-cross-celtic:before{content:""}.mdi-cross-outline:before{content:""}.mdi-crosshairs:before{content:""}.mdi-crosshairs-gps:before{content:""}.mdi-crosshairs-off:before{content:""}.mdi-crosshairs-question:before{content:""}.mdi-crowd:before{content:""}.mdi-crown:before{content:""}.mdi-crown-circle:before{content:""}.mdi-crown-circle-outline:before{content:""}.mdi-crown-outline:before{content:""}.mdi-cryengine:before{content:""}.mdi-crystal-ball:before{content:""}.mdi-cube:before{content:""}.mdi-cube-off:before{content:""}.mdi-cube-off-outline:before{content:""}.mdi-cube-outline:before{content:""}.mdi-cube-scan:before{content:""}.mdi-cube-send:before{content:""}.mdi-cube-unfolded:before{content:""}.mdi-cup:before{content:""}.mdi-cup-off:before{content:""}.mdi-cup-off-outline:before{content:""}.mdi-cup-outline:before{content:""}.mdi-cup-water:before{content:""}.mdi-cupboard:before{content:""}.mdi-cupboard-outline:before{content:""}.mdi-cupcake:before{content:""}.mdi-curling:before{content:""}.mdi-currency-bdt:before{content:""}.mdi-currency-brl:before{content:""}.mdi-currency-btc:before{content:""}.mdi-currency-cny:before{content:""}.mdi-currency-eth:before{content:""}.mdi-currency-eur:before{content:""}.mdi-currency-eur-off:before{content:""}.mdi-currency-fra:before{content:""}.mdi-currency-gbp:before{content:""}.mdi-currency-ils:before{content:""}.mdi-currency-inr:before{content:""}.mdi-currency-jpy:before{content:""}.mdi-currency-krw:before{content:""}.mdi-currency-kzt:before{content:""}.mdi-currency-mnt:before{content:""}.mdi-currency-ngn:before{content:""}.mdi-currency-php:before{content:""}.mdi-currency-rial:before{content:""}.mdi-currency-rub:before{content:""}.mdi-currency-rupee:before{content:""}.mdi-currency-sign:before{content:""}.mdi-currency-thb:before{content:""}.mdi-currency-try:before{content:""}.mdi-currency-twd:before{content:""}.mdi-currency-uah:before{content:""}.mdi-currency-usd:before{content:""}.mdi-currency-usd-off:before{content:""}.mdi-current-ac:before{content:""}.mdi-current-dc:before{content:""}.mdi-cursor-default:before{content:""}.mdi-cursor-default-click:before{content:""}.mdi-cursor-default-click-outline:before{content:""}.mdi-cursor-default-gesture:before{content:""}.mdi-cursor-default-gesture-outline:before{content:""}.mdi-cursor-default-outline:before{content:""}.mdi-cursor-move:before{content:""}.mdi-cursor-pointer:before{content:""}.mdi-cursor-text:before{content:""}.mdi-curtains:before{content:""}.mdi-curtains-closed:before{content:""}.mdi-cylinder:before{content:""}.mdi-cylinder-off:before{content:""}.mdi-dance-ballroom:before{content:""}.mdi-dance-pole:before{content:""}.mdi-data-matrix:before{content:""}.mdi-data-matrix-edit:before{content:""}.mdi-data-matrix-minus:before{content:""}.mdi-data-matrix-plus:before{content:""}.mdi-data-matrix-remove:before{content:""}.mdi-data-matrix-scan:before{content:""}.mdi-database:before{content:""}.mdi-database-alert:before{content:""}.mdi-database-alert-outline:before{content:""}.mdi-database-arrow-down:before{content:""}.mdi-database-arrow-down-outline:before{content:""}.mdi-database-arrow-left:before{content:""}.mdi-database-arrow-left-outline:before{content:""}.mdi-database-arrow-right:before{content:""}.mdi-database-arrow-right-outline:before{content:""}.mdi-database-arrow-up:before{content:""}.mdi-database-arrow-up-outline:before{content:""}.mdi-database-check:before{content:""}.mdi-database-check-outline:before{content:""}.mdi-database-clock:before{content:""}.mdi-database-clock-outline:before{content:""}.mdi-database-cog:before{content:""}.mdi-database-cog-outline:before{content:""}.mdi-database-edit:before{content:""}.mdi-database-edit-outline:before{content:""}.mdi-database-export:before{content:""}.mdi-database-export-outline:before{content:""}.mdi-database-eye:before{content:""}.mdi-database-eye-off:before{content:""}.mdi-database-eye-off-outline:before{content:""}.mdi-database-eye-outline:before{content:""}.mdi-database-import:before{content:""}.mdi-database-import-outline:before{content:""}.mdi-database-lock:before{content:""}.mdi-database-lock-outline:before{content:""}.mdi-database-marker:before{content:""}.mdi-database-marker-outline:before{content:""}.mdi-database-minus:before{content:""}.mdi-database-minus-outline:before{content:""}.mdi-database-off:before{content:""}.mdi-database-off-outline:before{content:""}.mdi-database-outline:before{content:""}.mdi-database-plus:before{content:""}.mdi-database-plus-outline:before{content:""}.mdi-database-refresh:before{content:""}.mdi-database-refresh-outline:before{content:""}.mdi-database-remove:before{content:""}.mdi-database-remove-outline:before{content:""}.mdi-database-search:before{content:""}.mdi-database-search-outline:before{content:""}.mdi-database-settings:before{content:""}.mdi-database-settings-outline:before{content:""}.mdi-database-sync:before{content:""}.mdi-database-sync-outline:before{content:""}.mdi-death-star:before{content:""}.mdi-death-star-variant:before{content:""}.mdi-deathly-hallows:before{content:""}.mdi-debian:before{content:""}.mdi-debug-step-into:before{content:""}.mdi-debug-step-out:before{content:""}.mdi-debug-step-over:before{content:""}.mdi-decagram:before{content:""}.mdi-decagram-outline:before{content:""}.mdi-decimal:before{content:""}.mdi-decimal-comma:before{content:""}.mdi-decimal-comma-decrease:before{content:""}.mdi-decimal-comma-increase:before{content:""}.mdi-decimal-decrease:before{content:""}.mdi-decimal-increase:before{content:""}.mdi-delete:before{content:""}.mdi-delete-alert:before{content:""}.mdi-delete-alert-outline:before{content:""}.mdi-delete-circle:before{content:""}.mdi-delete-circle-outline:before{content:""}.mdi-delete-clock:before{content:""}.mdi-delete-clock-outline:before{content:""}.mdi-delete-empty:before{content:""}.mdi-delete-empty-outline:before{content:""}.mdi-delete-forever:before{content:""}.mdi-delete-forever-outline:before{content:""}.mdi-delete-off:before{content:""}.mdi-delete-off-outline:before{content:""}.mdi-delete-outline:before{content:""}.mdi-delete-restore:before{content:""}.mdi-delete-sweep:before{content:""}.mdi-delete-sweep-outline:before{content:""}.mdi-delete-variant:before{content:""}.mdi-delta:before{content:""}.mdi-desk:before{content:""}.mdi-desk-lamp:before{content:""}.mdi-desk-lamp-off:before{content:""}.mdi-desk-lamp-on:before{content:""}.mdi-deskphone:before{content:""}.mdi-desktop-classic:before{content:""}.mdi-desktop-tower:before{content:""}.mdi-desktop-tower-monitor:before{content:""}.mdi-details:before{content:""}.mdi-dev-to:before{content:""}.mdi-developer-board:before{content:""}.mdi-deviantart:before{content:""}.mdi-devices:before{content:""}.mdi-dharmachakra:before{content:""}.mdi-diabetes:before{content:""}.mdi-dialpad:before{content:""}.mdi-diameter:before{content:""}.mdi-diameter-outline:before{content:""}.mdi-diameter-variant:before{content:""}.mdi-diamond:before{content:""}.mdi-diamond-outline:before{content:""}.mdi-diamond-stone:before{content:""}.mdi-dice-1:before{content:""}.mdi-dice-1-outline:before{content:""}.mdi-dice-2:before{content:""}.mdi-dice-2-outline:before{content:""}.mdi-dice-3:before{content:""}.mdi-dice-3-outline:before{content:""}.mdi-dice-4:before{content:""}.mdi-dice-4-outline:before{content:""}.mdi-dice-5:before{content:""}.mdi-dice-5-outline:before{content:""}.mdi-dice-6:before{content:""}.mdi-dice-6-outline:before{content:""}.mdi-dice-d10:before{content:""}.mdi-dice-d10-outline:before{content:""}.mdi-dice-d12:before{content:""}.mdi-dice-d12-outline:before{content:""}.mdi-dice-d20:before{content:""}.mdi-dice-d20-outline:before{content:""}.mdi-dice-d4:before{content:""}.mdi-dice-d4-outline:before{content:""}.mdi-dice-d6:before{content:""}.mdi-dice-d6-outline:before{content:""}.mdi-dice-d8:before{content:""}.mdi-dice-d8-outline:before{content:""}.mdi-dice-multiple:before{content:""}.mdi-dice-multiple-outline:before{content:""}.mdi-digital-ocean:before{content:""}.mdi-dip-switch:before{content:""}.mdi-directions:before{content:""}.mdi-directions-fork:before{content:""}.mdi-disc:before{content:""}.mdi-disc-alert:before{content:""}.mdi-disc-player:before{content:""}.mdi-dishwasher:before{content:""}.mdi-dishwasher-alert:before{content:""}.mdi-dishwasher-off:before{content:""}.mdi-disqus:before{content:""}.mdi-distribute-horizontal-center:before{content:""}.mdi-distribute-horizontal-left:before{content:""}.mdi-distribute-horizontal-right:before{content:""}.mdi-distribute-vertical-bottom:before{content:""}.mdi-distribute-vertical-center:before{content:""}.mdi-distribute-vertical-top:before{content:""}.mdi-diversify:before{content:""}.mdi-diving:before{content:""}.mdi-diving-flippers:before{content:""}.mdi-diving-helmet:before{content:""}.mdi-diving-scuba:before{content:""}.mdi-diving-scuba-flag:before{content:""}.mdi-diving-scuba-mask:before{content:""}.mdi-diving-scuba-tank:before{content:""}.mdi-diving-scuba-tank-multiple:before{content:""}.mdi-diving-snorkel:before{content:""}.mdi-division:before{content:""}.mdi-division-box:before{content:""}.mdi-dlna:before{content:""}.mdi-dna:before{content:""}.mdi-dns:before{content:""}.mdi-dns-outline:before{content:""}.mdi-dock-bottom:before{content:""}.mdi-dock-left:before{content:""}.mdi-dock-right:before{content:""}.mdi-dock-top:before{content:""}.mdi-dock-window:before{content:""}.mdi-docker:before{content:""}.mdi-doctor:before{content:""}.mdi-dog:before{content:""}.mdi-dog-service:before{content:""}.mdi-dog-side:before{content:""}.mdi-dog-side-off:before{content:""}.mdi-dolby:before{content:""}.mdi-dolly:before{content:""}.mdi-dolphin:before{content:""}.mdi-domain:before{content:""}.mdi-domain-off:before{content:""}.mdi-domain-plus:before{content:""}.mdi-domain-remove:before{content:""}.mdi-domain-switch:before{content:""}.mdi-dome-light:before{content:""}.mdi-domino-mask:before{content:""}.mdi-donkey:before{content:""}.mdi-door:before{content:""}.mdi-door-closed:before{content:""}.mdi-door-closed-cancel:before{content:""}.mdi-door-closed-lock:before{content:""}.mdi-door-open:before{content:""}.mdi-door-sliding:before{content:""}.mdi-door-sliding-lock:before{content:""}.mdi-door-sliding-open:before{content:""}.mdi-doorbell:before{content:""}.mdi-doorbell-video:before{content:""}.mdi-dot-net:before{content:""}.mdi-dots-circle:before{content:""}.mdi-dots-grid:before{content:""}.mdi-dots-hexagon:before{content:""}.mdi-dots-horizontal:before{content:""}.mdi-dots-horizontal-circle:before{content:""}.mdi-dots-horizontal-circle-outline:before{content:""}.mdi-dots-square:before{content:""}.mdi-dots-triangle:before{content:""}.mdi-dots-vertical:before{content:""}.mdi-dots-vertical-circle:before{content:""}.mdi-dots-vertical-circle-outline:before{content:""}.mdi-download:before{content:""}.mdi-download-box:before{content:""}.mdi-download-box-outline:before{content:""}.mdi-download-circle:before{content:""}.mdi-download-circle-outline:before{content:""}.mdi-download-lock:before{content:""}.mdi-download-lock-outline:before{content:""}.mdi-download-multiple:before{content:""}.mdi-download-network:before{content:""}.mdi-download-network-outline:before{content:""}.mdi-download-off:before{content:""}.mdi-download-off-outline:before{content:""}.mdi-download-outline:before{content:""}.mdi-drag:before{content:""}.mdi-drag-horizontal:before{content:""}.mdi-drag-horizontal-variant:before{content:""}.mdi-drag-variant:before{content:""}.mdi-drag-vertical:before{content:""}.mdi-drag-vertical-variant:before{content:""}.mdi-drama-masks:before{content:""}.mdi-draw:before{content:""}.mdi-draw-pen:before{content:""}.mdi-drawing:before{content:""}.mdi-drawing-box:before{content:""}.mdi-dresser:before{content:""}.mdi-dresser-outline:before{content:""}.mdi-drone:before{content:""}.mdi-dropbox:before{content:""}.mdi-drupal:before{content:""}.mdi-duck:before{content:""}.mdi-dumbbell:before{content:""}.mdi-dump-truck:before{content:""}.mdi-ear-hearing:before{content:""}.mdi-ear-hearing-loop:before{content:""}.mdi-ear-hearing-off:before{content:""}.mdi-earbuds:before{content:""}.mdi-earbuds-off:before{content:""}.mdi-earbuds-off-outline:before{content:""}.mdi-earbuds-outline:before{content:""}.mdi-earth:before{content:""}.mdi-earth-arrow-down:before{content:""}.mdi-earth-arrow-left:before{content:""}.mdi-earth-arrow-right:before{content:""}.mdi-earth-arrow-up:before{content:""}.mdi-earth-box:before{content:""}.mdi-earth-box-minus:before{content:""}.mdi-earth-box-off:before{content:""}.mdi-earth-box-plus:before{content:""}.mdi-earth-box-remove:before{content:""}.mdi-earth-minus:before{content:""}.mdi-earth-off:before{content:""}.mdi-earth-plus:before{content:""}.mdi-earth-remove:before{content:""}.mdi-egg:before{content:""}.mdi-egg-easter:before{content:""}.mdi-egg-fried:before{content:""}.mdi-egg-off:before{content:""}.mdi-egg-off-outline:before{content:""}.mdi-egg-outline:before{content:""}.mdi-eiffel-tower:before{content:""}.mdi-eight-track:before{content:""}.mdi-eject:before{content:""}.mdi-eject-circle:before{content:""}.mdi-eject-circle-outline:before{content:""}.mdi-eject-outline:before{content:""}.mdi-electric-switch:before{content:""}.mdi-electric-switch-closed:before{content:""}.mdi-electron-framework:before{content:""}.mdi-elephant:before{content:""}.mdi-elevation-decline:before{content:""}.mdi-elevation-rise:before{content:""}.mdi-elevator:before{content:""}.mdi-elevator-down:before{content:""}.mdi-elevator-passenger:before{content:""}.mdi-elevator-passenger-off:before{content:""}.mdi-elevator-passenger-off-outline:before{content:""}.mdi-elevator-passenger-outline:before{content:""}.mdi-elevator-up:before{content:""}.mdi-ellipse:before{content:""}.mdi-ellipse-outline:before{content:""}.mdi-email:before{content:""}.mdi-email-alert:before{content:""}.mdi-email-alert-outline:before{content:""}.mdi-email-arrow-left:before{content:""}.mdi-email-arrow-left-outline:before{content:""}.mdi-email-arrow-right:before{content:""}.mdi-email-arrow-right-outline:before{content:""}.mdi-email-box:before{content:""}.mdi-email-check:before{content:""}.mdi-email-check-outline:before{content:""}.mdi-email-edit:before{content:""}.mdi-email-edit-outline:before{content:""}.mdi-email-fast:before{content:""}.mdi-email-fast-outline:before{content:""}.mdi-email-heart-outline:before{content:""}.mdi-email-lock:before{content:""}.mdi-email-lock-outline:before{content:""}.mdi-email-mark-as-unread:before{content:""}.mdi-email-minus:before{content:""}.mdi-email-minus-outline:before{content:""}.mdi-email-multiple:before{content:""}.mdi-email-multiple-outline:before{content:""}.mdi-email-newsletter:before{content:""}.mdi-email-off:before{content:""}.mdi-email-off-outline:before{content:""}.mdi-email-open:before{content:""}.mdi-email-open-heart-outline:before{content:""}.mdi-email-open-multiple:before{content:""}.mdi-email-open-multiple-outline:before{content:""}.mdi-email-open-outline:before{content:""}.mdi-email-outline:before{content:""}.mdi-email-plus:before{content:""}.mdi-email-plus-outline:before{content:""}.mdi-email-remove:before{content:""}.mdi-email-remove-outline:before{content:""}.mdi-email-seal:before{content:""}.mdi-email-seal-outline:before{content:""}.mdi-email-search:before{content:""}.mdi-email-search-outline:before{content:""}.mdi-email-sync:before{content:""}.mdi-email-sync-outline:before{content:""}.mdi-email-variant:before{content:""}.mdi-ember:before{content:""}.mdi-emby:before{content:""}.mdi-emoticon:before{content:""}.mdi-emoticon-angry:before{content:""}.mdi-emoticon-angry-outline:before{content:""}.mdi-emoticon-confused:before{content:""}.mdi-emoticon-confused-outline:before{content:""}.mdi-emoticon-cool:before{content:""}.mdi-emoticon-cool-outline:before{content:""}.mdi-emoticon-cry:before{content:""}.mdi-emoticon-cry-outline:before{content:""}.mdi-emoticon-dead:before{content:""}.mdi-emoticon-dead-outline:before{content:""}.mdi-emoticon-devil:before{content:""}.mdi-emoticon-devil-outline:before{content:""}.mdi-emoticon-excited:before{content:""}.mdi-emoticon-excited-outline:before{content:""}.mdi-emoticon-frown:before{content:""}.mdi-emoticon-frown-outline:before{content:""}.mdi-emoticon-happy:before{content:""}.mdi-emoticon-happy-outline:before{content:""}.mdi-emoticon-kiss:before{content:""}.mdi-emoticon-kiss-outline:before{content:""}.mdi-emoticon-lol:before{content:""}.mdi-emoticon-lol-outline:before{content:""}.mdi-emoticon-minus:before{content:""}.mdi-emoticon-minus-outline:before{content:""}.mdi-emoticon-neutral:before{content:""}.mdi-emoticon-neutral-outline:before{content:""}.mdi-emoticon-outline:before{content:""}.mdi-emoticon-plus:before{content:""}.mdi-emoticon-plus-outline:before{content:""}.mdi-emoticon-poop:before{content:""}.mdi-emoticon-poop-outline:before{content:""}.mdi-emoticon-remove:before{content:""}.mdi-emoticon-remove-outline:before{content:""}.mdi-emoticon-sad:before{content:""}.mdi-emoticon-sad-outline:before{content:""}.mdi-emoticon-sick:before{content:""}.mdi-emoticon-sick-outline:before{content:""}.mdi-emoticon-tongue:before{content:""}.mdi-emoticon-tongue-outline:before{content:""}.mdi-emoticon-wink:before{content:""}.mdi-emoticon-wink-outline:before{content:""}.mdi-engine:before{content:""}.mdi-engine-off:before{content:""}.mdi-engine-off-outline:before{content:""}.mdi-engine-outline:before{content:""}.mdi-epsilon:before{content:""}.mdi-equal:before{content:""}.mdi-equal-box:before{content:""}.mdi-equalizer:before{content:""}.mdi-equalizer-outline:before{content:""}.mdi-eraser:before{content:""}.mdi-eraser-variant:before{content:""}.mdi-escalator:before{content:""}.mdi-escalator-box:before{content:""}.mdi-escalator-down:before{content:""}.mdi-escalator-up:before{content:""}.mdi-eslint:before{content:""}.mdi-et:before{content:""}.mdi-ethereum:before{content:""}.mdi-ethernet:before{content:""}.mdi-ethernet-cable:before{content:""}.mdi-ethernet-cable-off:before{content:""}.mdi-ev-plug-ccs1:before{content:""}.mdi-ev-plug-ccs2:before{content:""}.mdi-ev-plug-chademo:before{content:""}.mdi-ev-plug-tesla:before{content:""}.mdi-ev-plug-type1:before{content:""}.mdi-ev-plug-type2:before{content:""}.mdi-ev-station:before{content:""}.mdi-evernote:before{content:""}.mdi-excavator:before{content:""}.mdi-exclamation:before{content:""}.mdi-exclamation-thick:before{content:""}.mdi-exit-run:before{content:""}.mdi-exit-to-app:before{content:""}.mdi-expand-all:before{content:""}.mdi-expand-all-outline:before{content:""}.mdi-expansion-card:before{content:""}.mdi-expansion-card-variant:before{content:""}.mdi-exponent:before{content:""}.mdi-exponent-box:before{content:""}.mdi-export:before{content:""}.mdi-export-variant:before{content:""}.mdi-eye:before{content:""}.mdi-eye-arrow-left:before{content:""}.mdi-eye-arrow-left-outline:before{content:""}.mdi-eye-arrow-right:before{content:""}.mdi-eye-arrow-right-outline:before{content:""}.mdi-eye-check:before{content:""}.mdi-eye-check-outline:before{content:""}.mdi-eye-circle:before{content:""}.mdi-eye-circle-outline:before{content:""}.mdi-eye-closed:before{content:""}.mdi-eye-lock:before{content:""}.mdi-eye-lock-open:before{content:""}.mdi-eye-lock-open-outline:before{content:""}.mdi-eye-lock-outline:before{content:""}.mdi-eye-minus:before{content:""}.mdi-eye-minus-outline:before{content:""}.mdi-eye-off:before{content:""}.mdi-eye-off-outline:before{content:""}.mdi-eye-outline:before{content:""}.mdi-eye-plus:before{content:""}.mdi-eye-plus-outline:before{content:""}.mdi-eye-refresh:before{content:""}.mdi-eye-refresh-outline:before{content:""}.mdi-eye-remove:before{content:""}.mdi-eye-remove-outline:before{content:""}.mdi-eye-settings:before{content:""}.mdi-eye-settings-outline:before{content:""}.mdi-eyedropper:before{content:""}.mdi-eyedropper-minus:before{content:""}.mdi-eyedropper-off:before{content:""}.mdi-eyedropper-plus:before{content:""}.mdi-eyedropper-remove:before{content:""}.mdi-eyedropper-variant:before{content:""}.mdi-face-agent:before{content:""}.mdi-face-man:before{content:""}.mdi-face-man-outline:before{content:""}.mdi-face-man-profile:before{content:""}.mdi-face-man-shimmer:before{content:""}.mdi-face-man-shimmer-outline:before{content:""}.mdi-face-mask:before{content:""}.mdi-face-mask-outline:before{content:""}.mdi-face-recognition:before{content:""}.mdi-face-woman:before{content:""}.mdi-face-woman-outline:before{content:""}.mdi-face-woman-profile:before{content:""}.mdi-face-woman-shimmer:before{content:""}.mdi-face-woman-shimmer-outline:before{content:""}.mdi-facebook:before{content:""}.mdi-facebook-gaming:before{content:""}.mdi-facebook-messenger:before{content:""}.mdi-facebook-workplace:before{content:""}.mdi-factory:before{content:""}.mdi-family-tree:before{content:""}.mdi-fan:before{content:""}.mdi-fan-alert:before{content:""}.mdi-fan-auto:before{content:""}.mdi-fan-chevron-down:before{content:""}.mdi-fan-chevron-up:before{content:""}.mdi-fan-clock:before{content:""}.mdi-fan-minus:before{content:""}.mdi-fan-off:before{content:""}.mdi-fan-plus:before{content:""}.mdi-fan-remove:before{content:""}.mdi-fan-speed-1:before{content:""}.mdi-fan-speed-2:before{content:""}.mdi-fan-speed-3:before{content:""}.mdi-fast-forward:before{content:""}.mdi-fast-forward-10:before{content:""}.mdi-fast-forward-15:before{content:""}.mdi-fast-forward-30:before{content:""}.mdi-fast-forward-45:before{content:""}.mdi-fast-forward-5:before{content:""}.mdi-fast-forward-60:before{content:""}.mdi-fast-forward-outline:before{content:""}.mdi-faucet:before{content:""}.mdi-faucet-variant:before{content:""}.mdi-fax:before{content:""}.mdi-feather:before{content:""}.mdi-feature-search:before{content:""}.mdi-feature-search-outline:before{content:""}.mdi-fedora:before{content:""}.mdi-fence:before{content:""}.mdi-fence-electric:before{content:""}.mdi-fencing:before{content:""}.mdi-ferris-wheel:before{content:""}.mdi-ferry:before{content:""}.mdi-file:before{content:""}.mdi-file-account:before{content:""}.mdi-file-account-outline:before{content:""}.mdi-file-alert:before{content:""}.mdi-file-alert-outline:before{content:""}.mdi-file-arrow-left-right:before{content:""}.mdi-file-arrow-left-right-outline:before{content:""}.mdi-file-arrow-up-down:before{content:""}.mdi-file-arrow-up-down-outline:before{content:""}.mdi-file-cabinet:before{content:""}.mdi-file-cad:before{content:""}.mdi-file-cad-box:before{content:""}.mdi-file-cancel:before{content:""}.mdi-file-cancel-outline:before{content:""}.mdi-file-certificate:before{content:""}.mdi-file-certificate-outline:before{content:""}.mdi-file-chart:before{content:""}.mdi-file-chart-check:before{content:""}.mdi-file-chart-check-outline:before{content:""}.mdi-file-chart-outline:before{content:""}.mdi-file-check:before{content:""}.mdi-file-check-outline:before{content:""}.mdi-file-clock:before{content:""}.mdi-file-clock-outline:before{content:""}.mdi-file-cloud:before{content:""}.mdi-file-cloud-outline:before{content:""}.mdi-file-code:before{content:""}.mdi-file-code-outline:before{content:""}.mdi-file-cog:before{content:""}.mdi-file-cog-outline:before{content:""}.mdi-file-compare:before{content:""}.mdi-file-delimited:before{content:""}.mdi-file-delimited-outline:before{content:""}.mdi-file-document:before{content:""}.mdi-file-document-alert:before{content:""}.mdi-file-document-alert-outline:before{content:""}.mdi-file-document-arrow-right:before{content:""}.mdi-file-document-arrow-right-outline:before{content:""}.mdi-file-document-check:before{content:""}.mdi-file-document-check-outline:before{content:""}.mdi-file-document-edit:before{content:""}.mdi-file-document-edit-outline:before{content:""}.mdi-file-document-minus:before{content:""}.mdi-file-document-minus-outline:before{content:""}.mdi-file-document-multiple:before{content:""}.mdi-file-document-multiple-outline:before{content:""}.mdi-file-document-outline:before{content:""}.mdi-file-document-plus:before{content:""}.mdi-file-document-plus-outline:before{content:""}.mdi-file-document-refresh:before{content:""}.mdi-file-document-refresh-outline:before{content:""}.mdi-file-document-remove:before{content:""}.mdi-file-document-remove-outline:before{content:""}.mdi-file-download:before{content:""}.mdi-file-download-outline:before{content:""}.mdi-file-edit:before{content:""}.mdi-file-edit-outline:before{content:""}.mdi-file-excel:before{content:""}.mdi-file-excel-box:before{content:""}.mdi-file-excel-box-outline:before{content:""}.mdi-file-excel-outline:before{content:""}.mdi-file-export:before{content:""}.mdi-file-export-outline:before{content:""}.mdi-file-eye:before{content:""}.mdi-file-eye-outline:before{content:""}.mdi-file-find:before{content:""}.mdi-file-find-outline:before{content:""}.mdi-file-gif-box:before{content:""}.mdi-file-hidden:before{content:""}.mdi-file-image:before{content:""}.mdi-file-image-marker:before{content:""}.mdi-file-image-marker-outline:before{content:""}.mdi-file-image-minus:before{content:""}.mdi-file-image-minus-outline:before{content:""}.mdi-file-image-outline:before{content:""}.mdi-file-image-plus:before{content:""}.mdi-file-image-plus-outline:before{content:""}.mdi-file-image-remove:before{content:""}.mdi-file-image-remove-outline:before{content:""}.mdi-file-import:before{content:""}.mdi-file-import-outline:before{content:""}.mdi-file-jpg-box:before{content:""}.mdi-file-key:before{content:""}.mdi-file-key-outline:before{content:""}.mdi-file-link:before{content:""}.mdi-file-link-outline:before{content:""}.mdi-file-lock:before{content:""}.mdi-file-lock-open:before{content:""}.mdi-file-lock-open-outline:before{content:""}.mdi-file-lock-outline:before{content:""}.mdi-file-marker:before{content:""}.mdi-file-marker-outline:before{content:""}.mdi-file-minus:before{content:""}.mdi-file-minus-outline:before{content:""}.mdi-file-move:before{content:""}.mdi-file-move-outline:before{content:""}.mdi-file-multiple:before{content:""}.mdi-file-multiple-outline:before{content:""}.mdi-file-music:before{content:""}.mdi-file-music-outline:before{content:""}.mdi-file-outline:before{content:""}.mdi-file-pdf-box:before{content:""}.mdi-file-percent:before{content:""}.mdi-file-percent-outline:before{content:""}.mdi-file-phone:before{content:""}.mdi-file-phone-outline:before{content:""}.mdi-file-plus:before{content:""}.mdi-file-plus-outline:before{content:""}.mdi-file-png-box:before{content:""}.mdi-file-powerpoint:before{content:""}.mdi-file-powerpoint-box:before{content:""}.mdi-file-powerpoint-box-outline:before{content:""}.mdi-file-powerpoint-outline:before{content:""}.mdi-file-presentation-box:before{content:""}.mdi-file-question:before{content:""}.mdi-file-question-outline:before{content:""}.mdi-file-refresh:before{content:""}.mdi-file-refresh-outline:before{content:""}.mdi-file-remove:before{content:""}.mdi-file-remove-outline:before{content:""}.mdi-file-replace:before{content:""}.mdi-file-replace-outline:before{content:""}.mdi-file-restore:before{content:""}.mdi-file-restore-outline:before{content:""}.mdi-file-rotate-left:before{content:""}.mdi-file-rotate-left-outline:before{content:""}.mdi-file-rotate-right:before{content:""}.mdi-file-rotate-right-outline:before{content:""}.mdi-file-search:before{content:""}.mdi-file-search-outline:before{content:""}.mdi-file-send:before{content:""}.mdi-file-send-outline:before{content:""}.mdi-file-settings:before{content:""}.mdi-file-settings-outline:before{content:""}.mdi-file-sign:before{content:""}.mdi-file-star:before{content:""}.mdi-file-star-four-points:before{content:""}.mdi-file-star-four-points-outline:before{content:""}.mdi-file-star-outline:before{content:""}.mdi-file-swap:before{content:""}.mdi-file-swap-outline:before{content:""}.mdi-file-sync:before{content:""}.mdi-file-sync-outline:before{content:""}.mdi-file-table:before{content:""}.mdi-file-table-box:before{content:""}.mdi-file-table-box-multiple:before{content:""}.mdi-file-table-box-multiple-outline:before{content:""}.mdi-file-table-box-outline:before{content:""}.mdi-file-table-outline:before{content:""}.mdi-file-tree:before{content:""}.mdi-file-tree-outline:before{content:""}.mdi-file-undo:before{content:""}.mdi-file-undo-outline:before{content:""}.mdi-file-upload:before{content:""}.mdi-file-upload-outline:before{content:""}.mdi-file-video:before{content:""}.mdi-file-video-outline:before{content:""}.mdi-file-word:before{content:""}.mdi-file-word-box:before{content:""}.mdi-file-word-box-outline:before{content:""}.mdi-file-word-outline:before{content:""}.mdi-file-xml-box:before{content:""}.mdi-film:before{content:""}.mdi-filmstrip:before{content:""}.mdi-filmstrip-box:before{content:""}.mdi-filmstrip-box-multiple:before{content:""}.mdi-filmstrip-off:before{content:""}.mdi-filter:before{content:""}.mdi-filter-check:before{content:""}.mdi-filter-check-outline:before{content:""}.mdi-filter-cog:before{content:""}.mdi-filter-cog-outline:before{content:""}.mdi-filter-menu:before{content:""}.mdi-filter-menu-outline:before{content:""}.mdi-filter-minus:before{content:""}.mdi-filter-minus-outline:before{content:""}.mdi-filter-multiple:before{content:""}.mdi-filter-multiple-outline:before{content:""}.mdi-filter-off:before{content:""}.mdi-filter-off-outline:before{content:""}.mdi-filter-outline:before{content:""}.mdi-filter-plus:before{content:""}.mdi-filter-plus-outline:before{content:""}.mdi-filter-remove:before{content:""}.mdi-filter-remove-outline:before{content:""}.mdi-filter-settings:before{content:""}.mdi-filter-settings-outline:before{content:""}.mdi-filter-variant:before{content:""}.mdi-filter-variant-minus:before{content:""}.mdi-filter-variant-plus:before{content:""}.mdi-filter-variant-remove:before{content:""}.mdi-finance:before{content:""}.mdi-find-replace:before{content:""}.mdi-fingerprint:before{content:""}.mdi-fingerprint-off:before{content:""}.mdi-fire:before{content:""}.mdi-fire-alert:before{content:""}.mdi-fire-circle:before{content:""}.mdi-fire-extinguisher:before{content:""}.mdi-fire-hydrant:before{content:""}.mdi-fire-hydrant-alert:before{content:""}.mdi-fire-hydrant-off:before{content:""}.mdi-fire-off:before{content:""}.mdi-fire-station:before{content:""}.mdi-fire-truck:before{content:""}.mdi-firebase:before{content:""}.mdi-firefox:before{content:""}.mdi-fireplace:before{content:""}.mdi-fireplace-off:before{content:""}.mdi-firewire:before{content:""}.mdi-firework:before{content:""}.mdi-firework-off:before{content:""}.mdi-fish:before{content:""}.mdi-fish-off:before{content:""}.mdi-fishbowl:before{content:""}.mdi-fishbowl-outline:before{content:""}.mdi-fit-to-page:before{content:""}.mdi-fit-to-page-outline:before{content:""}.mdi-fit-to-screen:before{content:""}.mdi-fit-to-screen-outline:before{content:""}.mdi-flag:before{content:""}.mdi-flag-checkered:before{content:""}.mdi-flag-minus:before{content:""}.mdi-flag-minus-outline:before{content:""}.mdi-flag-off:before{content:""}.mdi-flag-off-outline:before{content:""}.mdi-flag-outline:before{content:""}.mdi-flag-plus:before{content:""}.mdi-flag-plus-outline:before{content:""}.mdi-flag-remove:before{content:""}.mdi-flag-remove-outline:before{content:""}.mdi-flag-triangle:before{content:""}.mdi-flag-variant:before{content:""}.mdi-flag-variant-minus:before{content:""}.mdi-flag-variant-minus-outline:before{content:""}.mdi-flag-variant-off:before{content:""}.mdi-flag-variant-off-outline:before{content:""}.mdi-flag-variant-outline:before{content:""}.mdi-flag-variant-plus:before{content:""}.mdi-flag-variant-plus-outline:before{content:""}.mdi-flag-variant-remove:before{content:""}.mdi-flag-variant-remove-outline:before{content:""}.mdi-flare:before{content:""}.mdi-flash:before{content:""}.mdi-flash-alert:before{content:""}.mdi-flash-alert-outline:before{content:""}.mdi-flash-auto:before{content:""}.mdi-flash-off:before{content:""}.mdi-flash-off-outline:before{content:""}.mdi-flash-outline:before{content:""}.mdi-flash-red-eye:before{content:""}.mdi-flash-triangle:before{content:""}.mdi-flash-triangle-outline:before{content:""}.mdi-flashlight:before{content:""}.mdi-flashlight-off:before{content:""}.mdi-flask:before{content:""}.mdi-flask-empty:before{content:""}.mdi-flask-empty-minus:before{content:""}.mdi-flask-empty-minus-outline:before{content:""}.mdi-flask-empty-off:before{content:""}.mdi-flask-empty-off-outline:before{content:""}.mdi-flask-empty-outline:before{content:""}.mdi-flask-empty-plus:before{content:""}.mdi-flask-empty-plus-outline:before{content:""}.mdi-flask-empty-remove:before{content:""}.mdi-flask-empty-remove-outline:before{content:""}.mdi-flask-minus:before{content:""}.mdi-flask-minus-outline:before{content:""}.mdi-flask-off:before{content:""}.mdi-flask-off-outline:before{content:""}.mdi-flask-outline:before{content:""}.mdi-flask-plus:before{content:""}.mdi-flask-plus-outline:before{content:""}.mdi-flask-remove:before{content:""}.mdi-flask-remove-outline:before{content:""}.mdi-flask-round-bottom:before{content:""}.mdi-flask-round-bottom-empty:before{content:""}.mdi-flask-round-bottom-empty-outline:before{content:""}.mdi-flask-round-bottom-outline:before{content:""}.mdi-fleur-de-lis:before{content:""}.mdi-flip-horizontal:before{content:""}.mdi-flip-to-back:before{content:""}.mdi-flip-to-front:before{content:""}.mdi-flip-vertical:before{content:""}.mdi-floor-lamp:before{content:""}.mdi-floor-lamp-dual:before{content:""}.mdi-floor-lamp-dual-outline:before{content:""}.mdi-floor-lamp-outline:before{content:""}.mdi-floor-lamp-torchiere:before{content:""}.mdi-floor-lamp-torchiere-outline:before{content:""}.mdi-floor-lamp-torchiere-variant:before{content:""}.mdi-floor-lamp-torchiere-variant-outline:before{content:""}.mdi-floor-plan:before{content:""}.mdi-floppy:before{content:""}.mdi-floppy-variant:before{content:""}.mdi-flower:before{content:""}.mdi-flower-outline:before{content:""}.mdi-flower-pollen:before{content:""}.mdi-flower-pollen-outline:before{content:""}.mdi-flower-poppy:before{content:""}.mdi-flower-tulip:before{content:""}.mdi-flower-tulip-outline:before{content:""}.mdi-focus-auto:before{content:""}.mdi-focus-field:before{content:""}.mdi-focus-field-horizontal:before{content:""}.mdi-focus-field-vertical:before{content:""}.mdi-folder:before{content:""}.mdi-folder-account:before{content:""}.mdi-folder-account-outline:before{content:""}.mdi-folder-alert:before{content:""}.mdi-folder-alert-outline:before{content:""}.mdi-folder-arrow-down:before{content:""}.mdi-folder-arrow-down-outline:before{content:""}.mdi-folder-arrow-left:before{content:""}.mdi-folder-arrow-left-outline:before{content:""}.mdi-folder-arrow-left-right:before{content:""}.mdi-folder-arrow-left-right-outline:before{content:""}.mdi-folder-arrow-right:before{content:""}.mdi-folder-arrow-right-outline:before{content:""}.mdi-folder-arrow-up:before{content:""}.mdi-folder-arrow-up-down:before{content:""}.mdi-folder-arrow-up-down-outline:before{content:""}.mdi-folder-arrow-up-outline:before{content:""}.mdi-folder-cancel:before{content:""}.mdi-folder-cancel-outline:before{content:""}.mdi-folder-check:before{content:""}.mdi-folder-check-outline:before{content:""}.mdi-folder-clock:before{content:""}.mdi-folder-clock-outline:before{content:""}.mdi-folder-cog:before{content:""}.mdi-folder-cog-outline:before{content:""}.mdi-folder-download:before{content:""}.mdi-folder-download-outline:before{content:""}.mdi-folder-edit:before{content:""}.mdi-folder-edit-outline:before{content:""}.mdi-folder-eye:before{content:""}.mdi-folder-eye-outline:before{content:""}.mdi-folder-file:before{content:""}.mdi-folder-file-outline:before{content:""}.mdi-folder-google-drive:before{content:""}.mdi-folder-heart:before{content:""}.mdi-folder-heart-outline:before{content:""}.mdi-folder-hidden:before{content:""}.mdi-folder-home:before{content:""}.mdi-folder-home-outline:before{content:""}.mdi-folder-image:before{content:""}.mdi-folder-information:before{content:""}.mdi-folder-information-outline:before{content:""}.mdi-folder-key:before{content:""}.mdi-folder-key-network:before{content:""}.mdi-folder-key-network-outline:before{content:""}.mdi-folder-key-outline:before{content:""}.mdi-folder-lock:before{content:""}.mdi-folder-lock-open:before{content:""}.mdi-folder-lock-open-outline:before{content:""}.mdi-folder-lock-outline:before{content:""}.mdi-folder-marker:before{content:""}.mdi-folder-marker-outline:before{content:""}.mdi-folder-minus:before{content:""}.mdi-folder-minus-outline:before{content:""}.mdi-folder-move:before{content:""}.mdi-folder-move-outline:before{content:""}.mdi-folder-multiple:before{content:""}.mdi-folder-multiple-image:before{content:""}.mdi-folder-multiple-outline:before{content:""}.mdi-folder-multiple-plus:before{content:""}.mdi-folder-multiple-plus-outline:before{content:""}.mdi-folder-music:before{content:""}.mdi-folder-music-outline:before{content:""}.mdi-folder-network:before{content:""}.mdi-folder-network-outline:before{content:""}.mdi-folder-off:before{content:""}.mdi-folder-off-outline:before{content:""}.mdi-folder-open:before{content:""}.mdi-folder-open-outline:before{content:""}.mdi-folder-outline:before{content:""}.mdi-folder-play:before{content:""}.mdi-folder-play-outline:before{content:""}.mdi-folder-plus:before{content:""}.mdi-folder-plus-outline:before{content:""}.mdi-folder-pound:before{content:""}.mdi-folder-pound-outline:before{content:""}.mdi-folder-question:before{content:""}.mdi-folder-question-outline:before{content:""}.mdi-folder-refresh:before{content:""}.mdi-folder-refresh-outline:before{content:""}.mdi-folder-remove:before{content:""}.mdi-folder-remove-outline:before{content:""}.mdi-folder-search:before{content:""}.mdi-folder-search-outline:before{content:""}.mdi-folder-settings:before{content:""}.mdi-folder-settings-outline:before{content:""}.mdi-folder-star:before{content:""}.mdi-folder-star-multiple:before{content:""}.mdi-folder-star-multiple-outline:before{content:""}.mdi-folder-star-outline:before{content:""}.mdi-folder-swap:before{content:""}.mdi-folder-swap-outline:before{content:""}.mdi-folder-sync:before{content:""}.mdi-folder-sync-outline:before{content:""}.mdi-folder-table:before{content:""}.mdi-folder-table-outline:before{content:""}.mdi-folder-text:before{content:""}.mdi-folder-text-outline:before{content:""}.mdi-folder-upload:before{content:""}.mdi-folder-upload-outline:before{content:""}.mdi-folder-wrench:before{content:""}.mdi-folder-wrench-outline:before{content:""}.mdi-folder-zip:before{content:""}.mdi-folder-zip-outline:before{content:""}.mdi-font-awesome:before{content:""}.mdi-food:before{content:""}.mdi-food-apple:before{content:""}.mdi-food-apple-outline:before{content:""}.mdi-food-croissant:before{content:""}.mdi-food-drumstick:before{content:""}.mdi-food-drumstick-off:before{content:""}.mdi-food-drumstick-off-outline:before{content:""}.mdi-food-drumstick-outline:before{content:""}.mdi-food-fork-drink:before{content:""}.mdi-food-halal:before{content:""}.mdi-food-hot-dog:before{content:""}.mdi-food-kosher:before{content:""}.mdi-food-off:before{content:""}.mdi-food-off-outline:before{content:""}.mdi-food-outline:before{content:""}.mdi-food-steak:before{content:""}.mdi-food-steak-off:before{content:""}.mdi-food-takeout-box:before{content:""}.mdi-food-takeout-box-outline:before{content:""}.mdi-food-turkey:before{content:""}.mdi-food-variant:before{content:""}.mdi-food-variant-off:before{content:""}.mdi-foot-print:before{content:""}.mdi-football:before{content:""}.mdi-football-australian:before{content:""}.mdi-football-helmet:before{content:""}.mdi-forest:before{content:""}.mdi-forest-outline:before{content:""}.mdi-forklift:before{content:""}.mdi-form-dropdown:before{content:""}.mdi-form-select:before{content:""}.mdi-form-textarea:before{content:""}.mdi-form-textbox:before{content:""}.mdi-form-textbox-lock:before{content:""}.mdi-form-textbox-password:before{content:""}.mdi-format-align-bottom:before{content:""}.mdi-format-align-center:before{content:""}.mdi-format-align-justify:before{content:""}.mdi-format-align-left:before{content:""}.mdi-format-align-middle:before{content:""}.mdi-format-align-right:before{content:""}.mdi-format-align-top:before{content:""}.mdi-format-annotation-minus:before{content:""}.mdi-format-annotation-plus:before{content:""}.mdi-format-bold:before{content:""}.mdi-format-clear:before{content:""}.mdi-format-color-fill:before{content:""}.mdi-format-color-highlight:before{content:""}.mdi-format-color-marker-cancel:before{content:""}.mdi-format-color-text:before{content:""}.mdi-format-columns:before{content:""}.mdi-format-float-center:before{content:""}.mdi-format-float-left:before{content:""}.mdi-format-float-none:before{content:""}.mdi-format-float-right:before{content:""}.mdi-format-font:before{content:""}.mdi-format-font-size-decrease:before{content:""}.mdi-format-font-size-increase:before{content:""}.mdi-format-header-1:before{content:""}.mdi-format-header-2:before{content:""}.mdi-format-header-3:before{content:""}.mdi-format-header-4:before{content:""}.mdi-format-header-5:before{content:""}.mdi-format-header-6:before{content:""}.mdi-format-header-decrease:before{content:""}.mdi-format-header-equal:before{content:""}.mdi-format-header-increase:before{content:""}.mdi-format-header-pound:before{content:""}.mdi-format-horizontal-align-center:before{content:""}.mdi-format-horizontal-align-left:before{content:""}.mdi-format-horizontal-align-right:before{content:""}.mdi-format-indent-decrease:before{content:""}.mdi-format-indent-increase:before{content:""}.mdi-format-italic:before{content:""}.mdi-format-letter-case:before{content:""}.mdi-format-letter-case-lower:before{content:""}.mdi-format-letter-case-upper:before{content:""}.mdi-format-letter-ends-with:before{content:""}.mdi-format-letter-matches:before{content:""}.mdi-format-letter-spacing:before{content:""}.mdi-format-letter-spacing-variant:before{content:""}.mdi-format-letter-starts-with:before{content:""}.mdi-format-line-height:before{content:""}.mdi-format-line-spacing:before{content:""}.mdi-format-line-style:before{content:""}.mdi-format-line-weight:before{content:""}.mdi-format-list-bulleted:before{content:""}.mdi-format-list-bulleted-square:before{content:""}.mdi-format-list-bulleted-triangle:before{content:""}.mdi-format-list-bulleted-type:before{content:""}.mdi-format-list-checkbox:before{content:""}.mdi-format-list-checks:before{content:""}.mdi-format-list-group:before{content:""}.mdi-format-list-group-plus:before{content:""}.mdi-format-list-numbered:before{content:""}.mdi-format-list-numbered-rtl:before{content:""}.mdi-format-list-text:before{content:""}.mdi-format-overline:before{content:""}.mdi-format-page-break:before{content:""}.mdi-format-page-split:before{content:""}.mdi-format-paint:before{content:""}.mdi-format-paragraph:before{content:""}.mdi-format-paragraph-spacing:before{content:""}.mdi-format-pilcrow:before{content:""}.mdi-format-pilcrow-arrow-left:before{content:""}.mdi-format-pilcrow-arrow-right:before{content:""}.mdi-format-quote-close:before{content:""}.mdi-format-quote-close-outline:before{content:""}.mdi-format-quote-open:before{content:""}.mdi-format-quote-open-outline:before{content:""}.mdi-format-rotate-90:before{content:""}.mdi-format-section:before{content:""}.mdi-format-size:before{content:""}.mdi-format-strikethrough:before{content:""}.mdi-format-strikethrough-variant:before{content:""}.mdi-format-subscript:before{content:""}.mdi-format-superscript:before{content:""}.mdi-format-text:before{content:""}.mdi-format-text-rotation-angle-down:before{content:""}.mdi-format-text-rotation-angle-up:before{content:""}.mdi-format-text-rotation-down:before{content:""}.mdi-format-text-rotation-down-vertical:before{content:""}.mdi-format-text-rotation-none:before{content:""}.mdi-format-text-rotation-up:before{content:""}.mdi-format-text-rotation-vertical:before{content:""}.mdi-format-text-variant:before{content:""}.mdi-format-text-variant-outline:before{content:""}.mdi-format-text-wrapping-clip:before{content:""}.mdi-format-text-wrapping-overflow:before{content:""}.mdi-format-text-wrapping-wrap:before{content:""}.mdi-format-textbox:before{content:""}.mdi-format-title:before{content:""}.mdi-format-underline:before{content:""}.mdi-format-underline-wavy:before{content:""}.mdi-format-vertical-align-bottom:before{content:""}.mdi-format-vertical-align-center:before{content:""}.mdi-format-vertical-align-top:before{content:""}.mdi-format-wrap-inline:before{content:""}.mdi-format-wrap-square:before{content:""}.mdi-format-wrap-tight:before{content:""}.mdi-format-wrap-top-bottom:before{content:""}.mdi-forum:before{content:""}.mdi-forum-minus:before{content:""}.mdi-forum-minus-outline:before{content:""}.mdi-forum-outline:before{content:""}.mdi-forum-plus:before{content:""}.mdi-forum-plus-outline:before{content:""}.mdi-forum-remove:before{content:""}.mdi-forum-remove-outline:before{content:""}.mdi-forward:before{content:""}.mdi-forwardburger:before{content:""}.mdi-fountain:before{content:""}.mdi-fountain-pen:before{content:""}.mdi-fountain-pen-tip:before{content:""}.mdi-fraction-one-half:before{content:""}.mdi-freebsd:before{content:""}.mdi-french-fries:before{content:""}.mdi-frequently-asked-questions:before{content:""}.mdi-fridge:before{content:""}.mdi-fridge-alert:before{content:""}.mdi-fridge-alert-outline:before{content:""}.mdi-fridge-bottom:before{content:""}.mdi-fridge-industrial:before{content:""}.mdi-fridge-industrial-alert:before{content:""}.mdi-fridge-industrial-alert-outline:before{content:""}.mdi-fridge-industrial-off:before{content:""}.mdi-fridge-industrial-off-outline:before{content:""}.mdi-fridge-industrial-outline:before{content:""}.mdi-fridge-off:before{content:""}.mdi-fridge-off-outline:before{content:""}.mdi-fridge-outline:before{content:""}.mdi-fridge-top:before{content:""}.mdi-fridge-variant:before{content:""}.mdi-fridge-variant-alert:before{content:""}.mdi-fridge-variant-alert-outline:before{content:""}.mdi-fridge-variant-off:before{content:""}.mdi-fridge-variant-off-outline:before{content:""}.mdi-fridge-variant-outline:before{content:""}.mdi-fruit-cherries:before{content:""}.mdi-fruit-cherries-off:before{content:""}.mdi-fruit-citrus:before{content:""}.mdi-fruit-citrus-off:before{content:""}.mdi-fruit-grapes:before{content:""}.mdi-fruit-grapes-outline:before{content:""}.mdi-fruit-pear:before{content:""}.mdi-fruit-pineapple:before{content:""}.mdi-fruit-watermelon:before{content:""}.mdi-fuel:before{content:""}.mdi-fuel-cell:before{content:""}.mdi-fullscreen:before{content:""}.mdi-fullscreen-exit:before{content:""}.mdi-function:before{content:""}.mdi-function-variant:before{content:""}.mdi-furigana-horizontal:before{content:""}.mdi-furigana-vertical:before{content:""}.mdi-fuse:before{content:""}.mdi-fuse-alert:before{content:""}.mdi-fuse-blade:before{content:""}.mdi-fuse-off:before{content:""}.mdi-gamepad:before{content:""}.mdi-gamepad-circle:before{content:""}.mdi-gamepad-circle-down:before{content:""}.mdi-gamepad-circle-left:before{content:""}.mdi-gamepad-circle-outline:before{content:""}.mdi-gamepad-circle-right:before{content:""}.mdi-gamepad-circle-up:before{content:""}.mdi-gamepad-down:before{content:""}.mdi-gamepad-left:before{content:""}.mdi-gamepad-outline:before{content:""}.mdi-gamepad-right:before{content:""}.mdi-gamepad-round:before{content:""}.mdi-gamepad-round-down:before{content:""}.mdi-gamepad-round-left:before{content:""}.mdi-gamepad-round-outline:before{content:""}.mdi-gamepad-round-right:before{content:""}.mdi-gamepad-round-up:before{content:""}.mdi-gamepad-square:before{content:""}.mdi-gamepad-square-outline:before{content:""}.mdi-gamepad-up:before{content:""}.mdi-gamepad-variant:before{content:""}.mdi-gamepad-variant-outline:before{content:""}.mdi-gamma:before{content:""}.mdi-gantry-crane:before{content:""}.mdi-garage:before{content:""}.mdi-garage-alert:before{content:""}.mdi-garage-alert-variant:before{content:""}.mdi-garage-lock:before{content:""}.mdi-garage-open:before{content:""}.mdi-garage-open-variant:before{content:""}.mdi-garage-variant:before{content:""}.mdi-garage-variant-lock:before{content:""}.mdi-gas-burner:before{content:""}.mdi-gas-cylinder:before{content:""}.mdi-gas-station:before{content:""}.mdi-gas-station-in-use:before{content:""}.mdi-gas-station-in-use-outline:before{content:""}.mdi-gas-station-off:before{content:""}.mdi-gas-station-off-outline:before{content:""}.mdi-gas-station-outline:before{content:""}.mdi-gate:before{content:""}.mdi-gate-alert:before{content:""}.mdi-gate-and:before{content:""}.mdi-gate-arrow-left:before{content:""}.mdi-gate-arrow-right:before{content:""}.mdi-gate-buffer:before{content:""}.mdi-gate-nand:before{content:""}.mdi-gate-nor:before{content:""}.mdi-gate-not:before{content:""}.mdi-gate-open:before{content:""}.mdi-gate-or:before{content:""}.mdi-gate-xnor:before{content:""}.mdi-gate-xor:before{content:""}.mdi-gatsby:before{content:""}.mdi-gauge:before{content:""}.mdi-gauge-empty:before{content:""}.mdi-gauge-full:before{content:""}.mdi-gauge-low:before{content:""}.mdi-gavel:before{content:""}.mdi-gender-female:before{content:""}.mdi-gender-male:before{content:""}.mdi-gender-male-female:before{content:""}.mdi-gender-male-female-variant:before{content:""}.mdi-gender-non-binary:before{content:""}.mdi-gender-transgender:before{content:""}.mdi-generator-mobile:before{content:""}.mdi-generator-portable:before{content:""}.mdi-generator-stationary:before{content:""}.mdi-gentoo:before{content:""}.mdi-gesture:before{content:""}.mdi-gesture-double-tap:before{content:""}.mdi-gesture-pinch:before{content:""}.mdi-gesture-spread:before{content:""}.mdi-gesture-swipe:before{content:""}.mdi-gesture-swipe-down:before{content:""}.mdi-gesture-swipe-horizontal:before{content:""}.mdi-gesture-swipe-left:before{content:""}.mdi-gesture-swipe-right:before{content:""}.mdi-gesture-swipe-up:before{content:""}.mdi-gesture-swipe-vertical:before{content:""}.mdi-gesture-tap:before{content:""}.mdi-gesture-tap-box:before{content:""}.mdi-gesture-tap-button:before{content:""}.mdi-gesture-tap-hold:before{content:""}.mdi-gesture-two-double-tap:before{content:""}.mdi-gesture-two-tap:before{content:""}.mdi-ghost:before{content:""}.mdi-ghost-off:before{content:""}.mdi-ghost-off-outline:before{content:""}.mdi-ghost-outline:before{content:""}.mdi-gift:before{content:""}.mdi-gift-off:before{content:""}.mdi-gift-off-outline:before{content:""}.mdi-gift-open:before{content:""}.mdi-gift-open-outline:before{content:""}.mdi-gift-outline:before{content:""}.mdi-git:before{content:""}.mdi-github:before{content:""}.mdi-gitlab:before{content:""}.mdi-glass-cocktail:before{content:""}.mdi-glass-cocktail-off:before{content:""}.mdi-glass-flute:before{content:""}.mdi-glass-fragile:before{content:""}.mdi-glass-mug:before{content:""}.mdi-glass-mug-off:before{content:""}.mdi-glass-mug-variant:before{content:""}.mdi-glass-mug-variant-off:before{content:""}.mdi-glass-pint-outline:before{content:""}.mdi-glass-stange:before{content:""}.mdi-glass-tulip:before{content:""}.mdi-glass-wine:before{content:""}.mdi-glasses:before{content:""}.mdi-globe-light:before{content:""}.mdi-globe-light-outline:before{content:""}.mdi-globe-model:before{content:""}.mdi-gmail:before{content:""}.mdi-gnome:before{content:""}.mdi-go-kart:before{content:""}.mdi-go-kart-track:before{content:""}.mdi-gog:before{content:""}.mdi-gold:before{content:""}.mdi-golf:before{content:""}.mdi-golf-cart:before{content:""}.mdi-golf-tee:before{content:""}.mdi-gondola:before{content:""}.mdi-goodreads:before{content:""}.mdi-google:before{content:""}.mdi-google-ads:before{content:""}.mdi-google-analytics:before{content:""}.mdi-google-assistant:before{content:""}.mdi-google-cardboard:before{content:""}.mdi-google-chrome:before{content:""}.mdi-google-circles:before{content:""}.mdi-google-circles-communities:before{content:""}.mdi-google-circles-extended:before{content:""}.mdi-google-circles-group:before{content:""}.mdi-google-classroom:before{content:""}.mdi-google-cloud:before{content:""}.mdi-google-downasaur:before{content:""}.mdi-google-drive:before{content:""}.mdi-google-earth:before{content:""}.mdi-google-fit:before{content:""}.mdi-google-glass:before{content:""}.mdi-google-hangouts:before{content:""}.mdi-google-keep:before{content:""}.mdi-google-lens:before{content:""}.mdi-google-maps:before{content:""}.mdi-google-my-business:before{content:""}.mdi-google-nearby:before{content:""}.mdi-google-play:before{content:""}.mdi-google-plus:before{content:""}.mdi-google-podcast:before{content:""}.mdi-google-spreadsheet:before{content:""}.mdi-google-street-view:before{content:""}.mdi-google-translate:before{content:""}.mdi-gradient-horizontal:before{content:""}.mdi-gradient-vertical:before{content:""}.mdi-grain:before{content:""}.mdi-graph:before{content:""}.mdi-graph-outline:before{content:""}.mdi-graphql:before{content:""}.mdi-grass:before{content:""}.mdi-grave-stone:before{content:""}.mdi-grease-pencil:before{content:""}.mdi-greater-than:before{content:""}.mdi-greater-than-or-equal:before{content:""}.mdi-greenhouse:before{content:""}.mdi-grid:before{content:""}.mdi-grid-large:before{content:""}.mdi-grid-off:before{content:""}.mdi-grill:before{content:""}.mdi-grill-outline:before{content:""}.mdi-group:before{content:""}.mdi-guitar-acoustic:before{content:""}.mdi-guitar-electric:before{content:""}.mdi-guitar-pick:before{content:""}.mdi-guitar-pick-outline:before{content:""}.mdi-guy-fawkes-mask:before{content:""}.mdi-gymnastics:before{content:""}.mdi-hail:before{content:""}.mdi-hair-dryer:before{content:""}.mdi-hair-dryer-outline:before{content:""}.mdi-halloween:before{content:""}.mdi-hamburger:before{content:""}.mdi-hamburger-check:before{content:""}.mdi-hamburger-minus:before{content:""}.mdi-hamburger-off:before{content:""}.mdi-hamburger-plus:before{content:""}.mdi-hamburger-remove:before{content:""}.mdi-hammer:before{content:""}.mdi-hammer-screwdriver:before{content:""}.mdi-hammer-sickle:before{content:""}.mdi-hammer-wrench:before{content:""}.mdi-hand-back-left:before{content:""}.mdi-hand-back-left-off:before{content:""}.mdi-hand-back-left-off-outline:before{content:""}.mdi-hand-back-left-outline:before{content:""}.mdi-hand-back-right:before{content:""}.mdi-hand-back-right-off:before{content:""}.mdi-hand-back-right-off-outline:before{content:""}.mdi-hand-back-right-outline:before{content:""}.mdi-hand-clap:before{content:""}.mdi-hand-clap-off:before{content:""}.mdi-hand-coin:before{content:""}.mdi-hand-coin-outline:before{content:""}.mdi-hand-cycle:before{content:""}.mdi-hand-extended:before{content:""}.mdi-hand-extended-outline:before{content:""}.mdi-hand-front-left:before{content:""}.mdi-hand-front-left-outline:before{content:""}.mdi-hand-front-right:before{content:""}.mdi-hand-front-right-outline:before{content:""}.mdi-hand-heart:before{content:""}.mdi-hand-heart-outline:before{content:""}.mdi-hand-okay:before{content:""}.mdi-hand-peace:before{content:""}.mdi-hand-peace-variant:before{content:""}.mdi-hand-pointing-down:before{content:""}.mdi-hand-pointing-left:before{content:""}.mdi-hand-pointing-right:before{content:""}.mdi-hand-pointing-up:before{content:""}.mdi-hand-saw:before{content:""}.mdi-hand-wash:before{content:""}.mdi-hand-wash-outline:before{content:""}.mdi-hand-water:before{content:""}.mdi-hand-wave:before{content:""}.mdi-hand-wave-outline:before{content:""}.mdi-handball:before{content:""}.mdi-handcuffs:before{content:""}.mdi-hands-pray:before{content:""}.mdi-handshake:before{content:""}.mdi-handshake-outline:before{content:""}.mdi-hanger:before{content:""}.mdi-hard-hat:before{content:""}.mdi-harddisk:before{content:""}.mdi-harddisk-plus:before{content:""}.mdi-harddisk-remove:before{content:""}.mdi-hat-fedora:before{content:""}.mdi-hazard-lights:before{content:""}.mdi-hdmi-port:before{content:""}.mdi-hdr:before{content:""}.mdi-hdr-off:before{content:""}.mdi-head:before{content:""}.mdi-head-alert:before{content:""}.mdi-head-alert-outline:before{content:""}.mdi-head-check:before{content:""}.mdi-head-check-outline:before{content:""}.mdi-head-cog:before{content:""}.mdi-head-cog-outline:before{content:""}.mdi-head-dots-horizontal:before{content:""}.mdi-head-dots-horizontal-outline:before{content:""}.mdi-head-flash:before{content:""}.mdi-head-flash-outline:before{content:""}.mdi-head-heart:before{content:""}.mdi-head-heart-outline:before{content:""}.mdi-head-lightbulb:before{content:""}.mdi-head-lightbulb-outline:before{content:""}.mdi-head-minus:before{content:""}.mdi-head-minus-outline:before{content:""}.mdi-head-outline:before{content:""}.mdi-head-plus:before{content:""}.mdi-head-plus-outline:before{content:""}.mdi-head-question:before{content:""}.mdi-head-question-outline:before{content:""}.mdi-head-remove:before{content:""}.mdi-head-remove-outline:before{content:""}.mdi-head-snowflake:before{content:""}.mdi-head-snowflake-outline:before{content:""}.mdi-head-sync:before{content:""}.mdi-head-sync-outline:before{content:""}.mdi-headphones:before{content:""}.mdi-headphones-bluetooth:before{content:""}.mdi-headphones-box:before{content:""}.mdi-headphones-off:before{content:""}.mdi-headphones-settings:before{content:""}.mdi-headset:before{content:""}.mdi-headset-dock:before{content:""}.mdi-headset-off:before{content:""}.mdi-heart:before{content:""}.mdi-heart-box:before{content:""}.mdi-heart-box-outline:before{content:""}.mdi-heart-broken:before{content:""}.mdi-heart-broken-outline:before{content:""}.mdi-heart-circle:before{content:""}.mdi-heart-circle-outline:before{content:""}.mdi-heart-cog:before{content:""}.mdi-heart-cog-outline:before{content:""}.mdi-heart-flash:before{content:""}.mdi-heart-half:before{content:""}.mdi-heart-half-full:before{content:""}.mdi-heart-half-outline:before{content:""}.mdi-heart-minus:before{content:""}.mdi-heart-minus-outline:before{content:""}.mdi-heart-multiple:before{content:""}.mdi-heart-multiple-outline:before{content:""}.mdi-heart-off:before{content:""}.mdi-heart-off-outline:before{content:""}.mdi-heart-outline:before{content:""}.mdi-heart-plus:before{content:""}.mdi-heart-plus-outline:before{content:""}.mdi-heart-pulse:before{content:""}.mdi-heart-remove:before{content:""}.mdi-heart-remove-outline:before{content:""}.mdi-heart-search:before{content:""}.mdi-heart-settings:before{content:""}.mdi-heart-settings-outline:before{content:""}.mdi-heat-pump:before{content:""}.mdi-heat-pump-outline:before{content:""}.mdi-heat-wave:before{content:""}.mdi-heating-coil:before{content:""}.mdi-helicopter:before{content:""}.mdi-help:before{content:""}.mdi-help-box:before{content:""}.mdi-help-box-multiple:before{content:""}.mdi-help-box-multiple-outline:before{content:""}.mdi-help-box-outline:before{content:""}.mdi-help-circle:before{content:""}.mdi-help-circle-outline:before{content:""}.mdi-help-network:before{content:""}.mdi-help-network-outline:before{content:""}.mdi-help-rhombus:before{content:""}.mdi-help-rhombus-outline:before{content:""}.mdi-hexadecimal:before{content:""}.mdi-hexagon:before{content:""}.mdi-hexagon-multiple:before{content:""}.mdi-hexagon-multiple-outline:before{content:""}.mdi-hexagon-outline:before{content:""}.mdi-hexagon-slice-1:before{content:""}.mdi-hexagon-slice-2:before{content:""}.mdi-hexagon-slice-3:before{content:""}.mdi-hexagon-slice-4:before{content:""}.mdi-hexagon-slice-5:before{content:""}.mdi-hexagon-slice-6:before{content:""}.mdi-hexagram:before{content:""}.mdi-hexagram-outline:before{content:""}.mdi-high-definition:before{content:""}.mdi-high-definition-box:before{content:""}.mdi-highway:before{content:""}.mdi-hiking:before{content:""}.mdi-history:before{content:""}.mdi-hockey-puck:before{content:""}.mdi-hockey-sticks:before{content:""}.mdi-hololens:before{content:""}.mdi-home:before{content:""}.mdi-home-account:before{content:""}.mdi-home-alert:before{content:""}.mdi-home-alert-outline:before{content:""}.mdi-home-analytics:before{content:""}.mdi-home-assistant:before{content:""}.mdi-home-automation:before{content:""}.mdi-home-battery:before{content:""}.mdi-home-battery-outline:before{content:""}.mdi-home-circle:before{content:""}.mdi-home-circle-outline:before{content:""}.mdi-home-city:before{content:""}.mdi-home-city-outline:before{content:""}.mdi-home-clock:before{content:""}.mdi-home-clock-outline:before{content:""}.mdi-home-edit:before{content:""}.mdi-home-edit-outline:before{content:""}.mdi-home-export-outline:before{content:""}.mdi-home-flood:before{content:""}.mdi-home-floor-0:before{content:""}.mdi-home-floor-1:before{content:""}.mdi-home-floor-2:before{content:""}.mdi-home-floor-3:before{content:""}.mdi-home-floor-a:before{content:""}.mdi-home-floor-b:before{content:""}.mdi-home-floor-g:before{content:""}.mdi-home-floor-l:before{content:""}.mdi-home-floor-negative-1:before{content:""}.mdi-home-group:before{content:""}.mdi-home-group-minus:before{content:""}.mdi-home-group-plus:before{content:""}.mdi-home-group-remove:before{content:""}.mdi-home-heart:before{content:""}.mdi-home-import-outline:before{content:""}.mdi-home-lightbulb:before{content:""}.mdi-home-lightbulb-outline:before{content:""}.mdi-home-lightning-bolt:before{content:""}.mdi-home-lightning-bolt-outline:before{content:""}.mdi-home-lock:before{content:""}.mdi-home-lock-open:before{content:""}.mdi-home-map-marker:before{content:""}.mdi-home-minus:before{content:""}.mdi-home-minus-outline:before{content:""}.mdi-home-modern:before{content:""}.mdi-home-off:before{content:""}.mdi-home-off-outline:before{content:""}.mdi-home-outline:before{content:""}.mdi-home-percent:before{content:""}.mdi-home-percent-outline:before{content:""}.mdi-home-plus:before{content:""}.mdi-home-plus-outline:before{content:""}.mdi-home-remove:before{content:""}.mdi-home-remove-outline:before{content:""}.mdi-home-roof:before{content:""}.mdi-home-search:before{content:""}.mdi-home-search-outline:before{content:""}.mdi-home-silo:before{content:""}.mdi-home-silo-outline:before{content:""}.mdi-home-sound-in:before{content:""}.mdi-home-sound-in-outline:before{content:""}.mdi-home-sound-out:before{content:""}.mdi-home-sound-out-outline:before{content:""}.mdi-home-switch:before{content:""}.mdi-home-switch-outline:before{content:""}.mdi-home-thermometer:before{content:""}.mdi-home-thermometer-outline:before{content:""}.mdi-home-variant:before{content:""}.mdi-home-variant-outline:before{content:""}.mdi-hook:before{content:""}.mdi-hook-off:before{content:""}.mdi-hoop-house:before{content:""}.mdi-hops:before{content:""}.mdi-horizontal-rotate-clockwise:before{content:""}.mdi-horizontal-rotate-counterclockwise:before{content:""}.mdi-horse:before{content:""}.mdi-horse-human:before{content:""}.mdi-horse-variant:before{content:""}.mdi-horse-variant-fast:before{content:""}.mdi-horseshoe:before{content:""}.mdi-hospital:before{content:""}.mdi-hospital-box:before{content:""}.mdi-hospital-box-outline:before{content:""}.mdi-hospital-building:before{content:""}.mdi-hospital-marker:before{content:""}.mdi-hot-tub:before{content:""}.mdi-hours-12:before{content:""}.mdi-hours-24:before{content:""}.mdi-hub:before{content:""}.mdi-hub-outline:before{content:""}.mdi-hubspot:before{content:""}.mdi-hulu:before{content:""}.mdi-human:before{content:""}.mdi-human-baby-changing-table:before{content:""}.mdi-human-cane:before{content:""}.mdi-human-capacity-decrease:before{content:""}.mdi-human-capacity-increase:before{content:""}.mdi-human-child:before{content:""}.mdi-human-dolly:before{content:""}.mdi-human-edit:before{content:""}.mdi-human-female:before{content:""}.mdi-human-female-boy:before{content:""}.mdi-human-female-dance:before{content:""}.mdi-human-female-female:before{content:""}.mdi-human-female-female-child:before{content:""}.mdi-human-female-girl:before{content:""}.mdi-human-greeting:before{content:""}.mdi-human-greeting-proximity:before{content:""}.mdi-human-greeting-variant:before{content:""}.mdi-human-handsdown:before{content:""}.mdi-human-handsup:before{content:""}.mdi-human-male:before{content:""}.mdi-human-male-board:before{content:""}.mdi-human-male-board-poll:before{content:""}.mdi-human-male-boy:before{content:""}.mdi-human-male-child:before{content:""}.mdi-human-male-female:before{content:""}.mdi-human-male-female-child:before{content:""}.mdi-human-male-girl:before{content:""}.mdi-human-male-height:before{content:""}.mdi-human-male-height-variant:before{content:""}.mdi-human-male-male:before{content:""}.mdi-human-male-male-child:before{content:""}.mdi-human-non-binary:before{content:""}.mdi-human-pregnant:before{content:""}.mdi-human-queue:before{content:""}.mdi-human-scooter:before{content:""}.mdi-human-walker:before{content:""}.mdi-human-wheelchair:before{content:""}.mdi-human-white-cane:before{content:""}.mdi-humble-bundle:before{content:""}.mdi-hvac:before{content:""}.mdi-hvac-off:before{content:""}.mdi-hydraulic-oil-level:before{content:""}.mdi-hydraulic-oil-temperature:before{content:""}.mdi-hydro-power:before{content:""}.mdi-hydrogen-station:before{content:""}.mdi-ice-cream:before{content:""}.mdi-ice-cream-off:before{content:""}.mdi-ice-pop:before{content:""}.mdi-id-card:before{content:""}.mdi-identifier:before{content:""}.mdi-ideogram-cjk:before{content:""}.mdi-ideogram-cjk-variant:before{content:""}.mdi-image:before{content:""}.mdi-image-album:before{content:""}.mdi-image-area:before{content:""}.mdi-image-area-close:before{content:""}.mdi-image-auto-adjust:before{content:""}.mdi-image-broken:before{content:""}.mdi-image-broken-variant:before{content:""}.mdi-image-check:before{content:""}.mdi-image-check-outline:before{content:""}.mdi-image-edit:before{content:""}.mdi-image-edit-outline:before{content:""}.mdi-image-filter-black-white:before{content:""}.mdi-image-filter-center-focus:before{content:""}.mdi-image-filter-center-focus-strong:before{content:""}.mdi-image-filter-center-focus-strong-outline:before{content:""}.mdi-image-filter-center-focus-weak:before{content:""}.mdi-image-filter-drama:before{content:""}.mdi-image-filter-drama-outline:before{content:""}.mdi-image-filter-frames:before{content:""}.mdi-image-filter-hdr:before{content:""}.mdi-image-filter-hdr-outline:before{content:""}.mdi-image-filter-none:before{content:""}.mdi-image-filter-tilt-shift:before{content:""}.mdi-image-filter-vintage:before{content:""}.mdi-image-frame:before{content:""}.mdi-image-lock:before{content:""}.mdi-image-lock-outline:before{content:""}.mdi-image-marker:before{content:""}.mdi-image-marker-outline:before{content:""}.mdi-image-minus:before{content:""}.mdi-image-minus-outline:before{content:""}.mdi-image-move:before{content:""}.mdi-image-multiple:before{content:""}.mdi-image-multiple-outline:before{content:""}.mdi-image-off:before{content:""}.mdi-image-off-outline:before{content:""}.mdi-image-outline:before{content:""}.mdi-image-plus:before{content:""}.mdi-image-plus-outline:before{content:""}.mdi-image-refresh:before{content:""}.mdi-image-refresh-outline:before{content:""}.mdi-image-remove:before{content:""}.mdi-image-remove-outline:before{content:""}.mdi-image-search:before{content:""}.mdi-image-search-outline:before{content:""}.mdi-image-size-select-actual:before{content:""}.mdi-image-size-select-large:before{content:""}.mdi-image-size-select-small:before{content:""}.mdi-image-sync:before{content:""}.mdi-image-sync-outline:before{content:""}.mdi-image-text:before{content:""}.mdi-import:before{content:""}.mdi-inbox:before{content:""}.mdi-inbox-arrow-down:before{content:""}.mdi-inbox-arrow-down-outline:before{content:""}.mdi-inbox-arrow-up:before{content:""}.mdi-inbox-arrow-up-outline:before{content:""}.mdi-inbox-full:before{content:""}.mdi-inbox-full-outline:before{content:""}.mdi-inbox-multiple:before{content:""}.mdi-inbox-multiple-outline:before{content:""}.mdi-inbox-outline:before{content:""}.mdi-inbox-remove:before{content:""}.mdi-inbox-remove-outline:before{content:""}.mdi-incognito:before{content:""}.mdi-incognito-circle:before{content:""}.mdi-incognito-circle-off:before{content:""}.mdi-incognito-off:before{content:""}.mdi-induction:before{content:""}.mdi-infinity:before{content:""}.mdi-information:before{content:""}.mdi-information-box:before{content:""}.mdi-information-box-outline:before{content:""}.mdi-information-off:before{content:""}.mdi-information-off-outline:before{content:""}.mdi-information-outline:before{content:""}.mdi-information-slab-box:before{content:""}.mdi-information-slab-box-outline:before{content:""}.mdi-information-slab-circle:before{content:""}.mdi-information-slab-circle-outline:before{content:""}.mdi-information-slab-symbol:before{content:""}.mdi-information-symbol:before{content:""}.mdi-information-variant:before{content:""}.mdi-information-variant-box:before{content:""}.mdi-information-variant-box-outline:before{content:""}.mdi-information-variant-circle:before{content:""}.mdi-information-variant-circle-outline:before{content:""}.mdi-instagram:before{content:""}.mdi-instrument-triangle:before{content:""}.mdi-integrated-circuit-chip:before{content:""}.mdi-invert-colors:before{content:""}.mdi-invert-colors-off:before{content:""}.mdi-iobroker:before{content:""}.mdi-ip:before{content:""}.mdi-ip-network:before{content:""}.mdi-ip-network-outline:before{content:""}.mdi-ip-outline:before{content:""}.mdi-ipod:before{content:""}.mdi-iron:before{content:""}.mdi-iron-board:before{content:""}.mdi-iron-outline:before{content:""}.mdi-island:before{content:""}.mdi-island-variant:before{content:""}.mdi-iv-bag:before{content:""}.mdi-jabber:before{content:""}.mdi-jeepney:before{content:""}.mdi-jellyfish:before{content:""}.mdi-jellyfish-outline:before{content:""}.mdi-jira:before{content:""}.mdi-jquery:before{content:""}.mdi-jsfiddle:before{content:""}.mdi-jump-rope:before{content:""}.mdi-kabaddi:before{content:""}.mdi-kangaroo:before{content:""}.mdi-karate:before{content:""}.mdi-kayaking:before{content:""}.mdi-keg:before{content:""}.mdi-kettle:before{content:""}.mdi-kettle-alert:before{content:""}.mdi-kettle-alert-outline:before{content:""}.mdi-kettle-off:before{content:""}.mdi-kettle-off-outline:before{content:""}.mdi-kettle-outline:before{content:""}.mdi-kettle-pour-over:before{content:""}.mdi-kettle-steam:before{content:""}.mdi-kettle-steam-outline:before{content:""}.mdi-kettlebell:before{content:""}.mdi-key:before{content:""}.mdi-key-alert:before{content:""}.mdi-key-alert-outline:before{content:""}.mdi-key-arrow-right:before{content:""}.mdi-key-chain:before{content:""}.mdi-key-chain-variant:before{content:""}.mdi-key-change:before{content:""}.mdi-key-link:before{content:""}.mdi-key-minus:before{content:""}.mdi-key-outline:before{content:""}.mdi-key-plus:before{content:""}.mdi-key-remove:before{content:""}.mdi-key-star:before{content:""}.mdi-key-variant:before{content:""}.mdi-key-wireless:before{content:""}.mdi-keyboard:before{content:""}.mdi-keyboard-backspace:before{content:""}.mdi-keyboard-caps:before{content:""}.mdi-keyboard-close:before{content:""}.mdi-keyboard-close-outline:before{content:""}.mdi-keyboard-esc:before{content:""}.mdi-keyboard-f1:before{content:""}.mdi-keyboard-f10:before{content:""}.mdi-keyboard-f11:before{content:""}.mdi-keyboard-f12:before{content:""}.mdi-keyboard-f2:before{content:""}.mdi-keyboard-f3:before{content:""}.mdi-keyboard-f4:before{content:""}.mdi-keyboard-f5:before{content:""}.mdi-keyboard-f6:before{content:""}.mdi-keyboard-f7:before{content:""}.mdi-keyboard-f8:before{content:""}.mdi-keyboard-f9:before{content:""}.mdi-keyboard-off:before{content:""}.mdi-keyboard-off-outline:before{content:""}.mdi-keyboard-outline:before{content:""}.mdi-keyboard-return:before{content:""}.mdi-keyboard-settings:before{content:""}.mdi-keyboard-settings-outline:before{content:""}.mdi-keyboard-space:before{content:""}.mdi-keyboard-tab:before{content:""}.mdi-keyboard-tab-reverse:before{content:""}.mdi-keyboard-variant:before{content:""}.mdi-khanda:before{content:""}.mdi-kickstarter:before{content:""}.mdi-kite:before{content:""}.mdi-kite-outline:before{content:""}.mdi-kitesurfing:before{content:""}.mdi-klingon:before{content:""}.mdi-knife:before{content:""}.mdi-knife-military:before{content:""}.mdi-knob:before{content:""}.mdi-koala:before{content:""}.mdi-kodi:before{content:""}.mdi-kubernetes:before{content:""}.mdi-label:before{content:""}.mdi-label-multiple:before{content:""}.mdi-label-multiple-outline:before{content:""}.mdi-label-off:before{content:""}.mdi-label-off-outline:before{content:""}.mdi-label-outline:before{content:""}.mdi-label-percent:before{content:""}.mdi-label-percent-outline:before{content:""}.mdi-label-variant:before{content:""}.mdi-label-variant-outline:before{content:""}.mdi-ladder:before{content:""}.mdi-ladybug:before{content:""}.mdi-lambda:before{content:""}.mdi-lamp:before{content:""}.mdi-lamp-outline:before{content:""}.mdi-lamps:before{content:""}.mdi-lamps-outline:before{content:""}.mdi-lan:before{content:""}.mdi-lan-check:before{content:""}.mdi-lan-connect:before{content:""}.mdi-lan-disconnect:before{content:""}.mdi-lan-pending:before{content:""}.mdi-land-fields:before{content:""}.mdi-land-plots:before{content:""}.mdi-land-plots-circle:before{content:""}.mdi-land-plots-circle-variant:before{content:""}.mdi-land-plots-marker:before{content:""}.mdi-land-rows-horizontal:before{content:""}.mdi-land-rows-vertical:before{content:""}.mdi-landslide:before{content:""}.mdi-landslide-outline:before{content:""}.mdi-language-c:before{content:""}.mdi-language-cpp:before{content:""}.mdi-language-csharp:before{content:""}.mdi-language-css3:before{content:""}.mdi-language-fortran:before{content:""}.mdi-language-go:before{content:""}.mdi-language-haskell:before{content:""}.mdi-language-html5:before{content:""}.mdi-language-java:before{content:""}.mdi-language-javascript:before{content:""}.mdi-language-kotlin:before{content:""}.mdi-language-lua:before{content:""}.mdi-language-markdown:before{content:""}.mdi-language-markdown-outline:before{content:""}.mdi-language-php:before{content:""}.mdi-language-python:before{content:""}.mdi-language-r:before{content:""}.mdi-language-ruby:before{content:""}.mdi-language-ruby-on-rails:before{content:""}.mdi-language-rust:before{content:""}.mdi-language-swift:before{content:""}.mdi-language-typescript:before{content:""}.mdi-language-xaml:before{content:""}.mdi-laptop:before{content:""}.mdi-laptop-account:before{content:""}.mdi-laptop-off:before{content:""}.mdi-laravel:before{content:""}.mdi-laser-pointer:before{content:""}.mdi-lasso:before{content:""}.mdi-lastpass:before{content:""}.mdi-latitude:before{content:""}.mdi-launch:before{content:""}.mdi-lava-lamp:before{content:""}.mdi-layers:before{content:""}.mdi-layers-edit:before{content:""}.mdi-layers-minus:before{content:""}.mdi-layers-off:before{content:""}.mdi-layers-off-outline:before{content:""}.mdi-layers-outline:before{content:""}.mdi-layers-plus:before{content:""}.mdi-layers-remove:before{content:""}.mdi-layers-search:before{content:""}.mdi-layers-search-outline:before{content:""}.mdi-layers-triple:before{content:""}.mdi-layers-triple-outline:before{content:""}.mdi-lead-pencil:before{content:""}.mdi-leaf:before{content:""}.mdi-leaf-circle:before{content:""}.mdi-leaf-circle-outline:before{content:""}.mdi-leaf-maple:before{content:""}.mdi-leaf-maple-off:before{content:""}.mdi-leaf-off:before{content:""}.mdi-leak:before{content:""}.mdi-leak-off:before{content:""}.mdi-lectern:before{content:""}.mdi-led-off:before{content:""}.mdi-led-on:before{content:""}.mdi-led-outline:before{content:""}.mdi-led-strip:before{content:""}.mdi-led-strip-variant:before{content:""}.mdi-led-strip-variant-off:before{content:""}.mdi-led-variant-off:before{content:""}.mdi-led-variant-on:before{content:""}.mdi-led-variant-outline:before{content:""}.mdi-leek:before{content:""}.mdi-less-than:before{content:""}.mdi-less-than-or-equal:before{content:""}.mdi-library:before{content:""}.mdi-library-outline:before{content:""}.mdi-library-shelves:before{content:""}.mdi-license:before{content:""}.mdi-lifebuoy:before{content:""}.mdi-light-flood-down:before{content:""}.mdi-light-flood-up:before{content:""}.mdi-light-recessed:before{content:""}.mdi-light-switch:before{content:""}.mdi-light-switch-off:before{content:""}.mdi-lightbulb:before{content:""}.mdi-lightbulb-alert:before{content:""}.mdi-lightbulb-alert-outline:before{content:""}.mdi-lightbulb-auto:before{content:""}.mdi-lightbulb-auto-outline:before{content:""}.mdi-lightbulb-cfl:before{content:""}.mdi-lightbulb-cfl-off:before{content:""}.mdi-lightbulb-cfl-spiral:before{content:""}.mdi-lightbulb-cfl-spiral-off:before{content:""}.mdi-lightbulb-fluorescent-tube:before{content:""}.mdi-lightbulb-fluorescent-tube-outline:before{content:""}.mdi-lightbulb-group:before{content:""}.mdi-lightbulb-group-off:before{content:""}.mdi-lightbulb-group-off-outline:before{content:""}.mdi-lightbulb-group-outline:before{content:""}.mdi-lightbulb-multiple:before{content:""}.mdi-lightbulb-multiple-off:before{content:""}.mdi-lightbulb-multiple-off-outline:before{content:""}.mdi-lightbulb-multiple-outline:before{content:""}.mdi-lightbulb-night:before{content:""}.mdi-lightbulb-night-outline:before{content:""}.mdi-lightbulb-off:before{content:""}.mdi-lightbulb-off-outline:before{content:""}.mdi-lightbulb-on:before{content:""}.mdi-lightbulb-on-10:before{content:""}.mdi-lightbulb-on-20:before{content:""}.mdi-lightbulb-on-30:before{content:""}.mdi-lightbulb-on-40:before{content:""}.mdi-lightbulb-on-50:before{content:""}.mdi-lightbulb-on-60:before{content:""}.mdi-lightbulb-on-70:before{content:""}.mdi-lightbulb-on-80:before{content:""}.mdi-lightbulb-on-90:before{content:""}.mdi-lightbulb-on-outline:before{content:""}.mdi-lightbulb-outline:before{content:""}.mdi-lightbulb-question:before{content:""}.mdi-lightbulb-question-outline:before{content:""}.mdi-lightbulb-spot:before{content:""}.mdi-lightbulb-spot-off:before{content:""}.mdi-lightbulb-variant:before{content:""}.mdi-lightbulb-variant-outline:before{content:""}.mdi-lighthouse:before{content:""}.mdi-lighthouse-on:before{content:""}.mdi-lightning-bolt:before{content:""}.mdi-lightning-bolt-circle:before{content:""}.mdi-lightning-bolt-outline:before{content:""}.mdi-line-scan:before{content:""}.mdi-lingerie:before{content:""}.mdi-link:before{content:""}.mdi-link-box:before{content:""}.mdi-link-box-outline:before{content:""}.mdi-link-box-variant:before{content:""}.mdi-link-box-variant-outline:before{content:""}.mdi-link-circle:before{content:""}.mdi-link-circle-outline:before{content:""}.mdi-link-edit:before{content:""}.mdi-link-lock:before{content:""}.mdi-link-off:before{content:""}.mdi-link-plus:before{content:""}.mdi-link-variant:before{content:""}.mdi-link-variant-minus:before{content:""}.mdi-link-variant-off:before{content:""}.mdi-link-variant-plus:before{content:""}.mdi-link-variant-remove:before{content:""}.mdi-linkedin:before{content:""}.mdi-linux:before{content:""}.mdi-linux-mint:before{content:""}.mdi-lipstick:before{content:""}.mdi-liquid-spot:before{content:""}.mdi-liquor:before{content:""}.mdi-list-box:before{content:""}.mdi-list-box-outline:before{content:""}.mdi-list-status:before{content:""}.mdi-litecoin:before{content:""}.mdi-loading:before{content:""}.mdi-location-enter:before{content:""}.mdi-location-exit:before{content:""}.mdi-lock:before{content:""}.mdi-lock-alert:before{content:""}.mdi-lock-alert-outline:before{content:""}.mdi-lock-check:before{content:""}.mdi-lock-check-outline:before{content:""}.mdi-lock-clock:before{content:""}.mdi-lock-minus:before{content:""}.mdi-lock-minus-outline:before{content:""}.mdi-lock-off:before{content:""}.mdi-lock-off-outline:before{content:""}.mdi-lock-open:before{content:""}.mdi-lock-open-alert:before{content:""}.mdi-lock-open-alert-outline:before{content:""}.mdi-lock-open-check:before{content:""}.mdi-lock-open-check-outline:before{content:""}.mdi-lock-open-minus:before{content:""}.mdi-lock-open-minus-outline:before{content:""}.mdi-lock-open-outline:before{content:""}.mdi-lock-open-plus:before{content:""}.mdi-lock-open-plus-outline:before{content:""}.mdi-lock-open-remove:before{content:""}.mdi-lock-open-remove-outline:before{content:""}.mdi-lock-open-variant:before{content:""}.mdi-lock-open-variant-outline:before{content:""}.mdi-lock-outline:before{content:""}.mdi-lock-pattern:before{content:""}.mdi-lock-percent:before{content:""}.mdi-lock-percent-open:before{content:""}.mdi-lock-percent-open-outline:before{content:""}.mdi-lock-percent-open-variant:before{content:""}.mdi-lock-percent-open-variant-outline:before{content:""}.mdi-lock-percent-outline:before{content:""}.mdi-lock-plus:before{content:""}.mdi-lock-plus-outline:before{content:""}.mdi-lock-question:before{content:""}.mdi-lock-remove:before{content:""}.mdi-lock-remove-outline:before{content:""}.mdi-lock-reset:before{content:""}.mdi-lock-smart:before{content:""}.mdi-locker:before{content:""}.mdi-locker-multiple:before{content:""}.mdi-login:before{content:""}.mdi-login-variant:before{content:""}.mdi-logout:before{content:""}.mdi-logout-variant:before{content:""}.mdi-longitude:before{content:""}.mdi-looks:before{content:""}.mdi-lotion:before{content:""}.mdi-lotion-outline:before{content:""}.mdi-lotion-plus:before{content:""}.mdi-lotion-plus-outline:before{content:""}.mdi-loupe:before{content:""}.mdi-lumx:before{content:""}.mdi-lungs:before{content:""}.mdi-mace:before{content:""}.mdi-magazine-pistol:before{content:""}.mdi-magazine-rifle:before{content:""}.mdi-magic-staff:before{content:""}.mdi-magnet:before{content:""}.mdi-magnet-on:before{content:""}.mdi-magnify:before{content:""}.mdi-magnify-close:before{content:""}.mdi-magnify-expand:before{content:""}.mdi-magnify-minus:before{content:""}.mdi-magnify-minus-cursor:before{content:""}.mdi-magnify-minus-outline:before{content:""}.mdi-magnify-plus:before{content:""}.mdi-magnify-plus-cursor:before{content:""}.mdi-magnify-plus-outline:before{content:""}.mdi-magnify-remove-cursor:before{content:""}.mdi-magnify-remove-outline:before{content:""}.mdi-magnify-scan:before{content:""}.mdi-mail:before{content:""}.mdi-mailbox:before{content:""}.mdi-mailbox-open:before{content:""}.mdi-mailbox-open-outline:before{content:""}.mdi-mailbox-open-up:before{content:""}.mdi-mailbox-open-up-outline:before{content:""}.mdi-mailbox-outline:before{content:""}.mdi-mailbox-up:before{content:""}.mdi-mailbox-up-outline:before{content:""}.mdi-manjaro:before{content:""}.mdi-map:before{content:""}.mdi-map-check:before{content:""}.mdi-map-check-outline:before{content:""}.mdi-map-clock:before{content:""}.mdi-map-clock-outline:before{content:""}.mdi-map-legend:before{content:""}.mdi-map-marker:before{content:""}.mdi-map-marker-account:before{content:""}.mdi-map-marker-account-outline:before{content:""}.mdi-map-marker-alert:before{content:""}.mdi-map-marker-alert-outline:before{content:""}.mdi-map-marker-check:before{content:""}.mdi-map-marker-check-outline:before{content:""}.mdi-map-marker-circle:before{content:""}.mdi-map-marker-distance:before{content:""}.mdi-map-marker-down:before{content:""}.mdi-map-marker-left:before{content:""}.mdi-map-marker-left-outline:before{content:""}.mdi-map-marker-minus:before{content:""}.mdi-map-marker-minus-outline:before{content:""}.mdi-map-marker-multiple:before{content:""}.mdi-map-marker-multiple-outline:before{content:""}.mdi-map-marker-off:before{content:""}.mdi-map-marker-off-outline:before{content:""}.mdi-map-marker-outline:before{content:""}.mdi-map-marker-path:before{content:""}.mdi-map-marker-plus:before{content:""}.mdi-map-marker-plus-outline:before{content:""}.mdi-map-marker-question:before{content:""}.mdi-map-marker-question-outline:before{content:""}.mdi-map-marker-radius:before{content:""}.mdi-map-marker-radius-outline:before{content:""}.mdi-map-marker-remove:before{content:""}.mdi-map-marker-remove-outline:before{content:""}.mdi-map-marker-remove-variant:before{content:""}.mdi-map-marker-right:before{content:""}.mdi-map-marker-right-outline:before{content:""}.mdi-map-marker-star:before{content:""}.mdi-map-marker-star-outline:before{content:""}.mdi-map-marker-up:before{content:""}.mdi-map-minus:before{content:""}.mdi-map-outline:before{content:""}.mdi-map-plus:before{content:""}.mdi-map-search:before{content:""}.mdi-map-search-outline:before{content:""}.mdi-mapbox:before{content:""}.mdi-margin:before{content:""}.mdi-marker:before{content:""}.mdi-marker-cancel:before{content:""}.mdi-marker-check:before{content:""}.mdi-mastodon:before{content:""}.mdi-material-design:before{content:""}.mdi-material-ui:before{content:""}.mdi-math-compass:before{content:""}.mdi-math-cos:before{content:""}.mdi-math-integral:before{content:""}.mdi-math-integral-box:before{content:""}.mdi-math-log:before{content:""}.mdi-math-norm:before{content:""}.mdi-math-norm-box:before{content:""}.mdi-math-sin:before{content:""}.mdi-math-tan:before{content:""}.mdi-matrix:before{content:""}.mdi-medal:before{content:""}.mdi-medal-outline:before{content:""}.mdi-medical-bag:before{content:""}.mdi-medical-cotton-swab:before{content:""}.mdi-medication:before{content:""}.mdi-medication-outline:before{content:""}.mdi-meditation:before{content:""}.mdi-memory:before{content:""}.mdi-memory-arrow-down:before{content:""}.mdi-menorah:before{content:""}.mdi-menorah-fire:before{content:""}.mdi-menu:before{content:""}.mdi-menu-close:before{content:""}.mdi-menu-down:before{content:""}.mdi-menu-down-outline:before{content:""}.mdi-menu-left:before{content:""}.mdi-menu-left-outline:before{content:""}.mdi-menu-open:before{content:""}.mdi-menu-right:before{content:""}.mdi-menu-right-outline:before{content:""}.mdi-menu-swap:before{content:""}.mdi-menu-swap-outline:before{content:""}.mdi-menu-up:before{content:""}.mdi-menu-up-outline:before{content:""}.mdi-merge:before{content:""}.mdi-message:before{content:""}.mdi-message-alert:before{content:""}.mdi-message-alert-outline:before{content:""}.mdi-message-arrow-left:before{content:""}.mdi-message-arrow-left-outline:before{content:""}.mdi-message-arrow-right:before{content:""}.mdi-message-arrow-right-outline:before{content:""}.mdi-message-badge:before{content:""}.mdi-message-badge-outline:before{content:""}.mdi-message-bookmark:before{content:""}.mdi-message-bookmark-outline:before{content:""}.mdi-message-bulleted:before{content:""}.mdi-message-bulleted-off:before{content:""}.mdi-message-check:before{content:""}.mdi-message-check-outline:before{content:""}.mdi-message-cog:before{content:""}.mdi-message-cog-outline:before{content:""}.mdi-message-draw:before{content:""}.mdi-message-fast:before{content:""}.mdi-message-fast-outline:before{content:""}.mdi-message-flash:before{content:""}.mdi-message-flash-outline:before{content:""}.mdi-message-image:before{content:""}.mdi-message-image-outline:before{content:""}.mdi-message-lock:before{content:""}.mdi-message-lock-outline:before{content:""}.mdi-message-minus:before{content:""}.mdi-message-minus-outline:before{content:""}.mdi-message-off:before{content:""}.mdi-message-off-outline:before{content:""}.mdi-message-outline:before{content:""}.mdi-message-plus:before{content:""}.mdi-message-plus-outline:before{content:""}.mdi-message-processing:before{content:""}.mdi-message-processing-outline:before{content:""}.mdi-message-question:before{content:""}.mdi-message-question-outline:before{content:""}.mdi-message-reply:before{content:""}.mdi-message-reply-outline:before{content:""}.mdi-message-reply-text:before{content:""}.mdi-message-reply-text-outline:before{content:""}.mdi-message-settings:before{content:""}.mdi-message-settings-outline:before{content:""}.mdi-message-star:before{content:""}.mdi-message-star-outline:before{content:""}.mdi-message-text:before{content:""}.mdi-message-text-clock:before{content:""}.mdi-message-text-clock-outline:before{content:""}.mdi-message-text-fast:before{content:""}.mdi-message-text-fast-outline:before{content:""}.mdi-message-text-lock:before{content:""}.mdi-message-text-lock-outline:before{content:""}.mdi-message-text-outline:before{content:""}.mdi-message-video:before{content:""}.mdi-meteor:before{content:""}.mdi-meter-electric:before{content:""}.mdi-meter-electric-outline:before{content:""}.mdi-meter-gas:before{content:""}.mdi-meter-gas-outline:before{content:""}.mdi-metronome:before{content:""}.mdi-metronome-tick:before{content:""}.mdi-micro-sd:before{content:""}.mdi-microphone:before{content:""}.mdi-microphone-message:before{content:""}.mdi-microphone-message-off:before{content:""}.mdi-microphone-minus:before{content:""}.mdi-microphone-off:before{content:""}.mdi-microphone-outline:before{content:""}.mdi-microphone-plus:before{content:""}.mdi-microphone-question:before{content:""}.mdi-microphone-question-outline:before{content:""}.mdi-microphone-settings:before{content:""}.mdi-microphone-variant:before{content:""}.mdi-microphone-variant-off:before{content:""}.mdi-microscope:before{content:""}.mdi-microsoft:before{content:""}.mdi-microsoft-access:before{content:""}.mdi-microsoft-azure:before{content:""}.mdi-microsoft-azure-devops:before{content:""}.mdi-microsoft-bing:before{content:""}.mdi-microsoft-dynamics-365:before{content:""}.mdi-microsoft-edge:before{content:""}.mdi-microsoft-excel:before{content:""}.mdi-microsoft-internet-explorer:before{content:""}.mdi-microsoft-office:before{content:""}.mdi-microsoft-onedrive:before{content:""}.mdi-microsoft-onenote:before{content:""}.mdi-microsoft-outlook:before{content:""}.mdi-microsoft-powerpoint:before{content:""}.mdi-microsoft-sharepoint:before{content:""}.mdi-microsoft-teams:before{content:""}.mdi-microsoft-visual-studio:before{content:""}.mdi-microsoft-visual-studio-code:before{content:""}.mdi-microsoft-windows:before{content:""}.mdi-microsoft-windows-classic:before{content:""}.mdi-microsoft-word:before{content:""}.mdi-microsoft-xbox:before{content:""}.mdi-microsoft-xbox-controller:before{content:""}.mdi-microsoft-xbox-controller-battery-alert:before{content:""}.mdi-microsoft-xbox-controller-battery-charging:before{content:""}.mdi-microsoft-xbox-controller-battery-empty:before{content:""}.mdi-microsoft-xbox-controller-battery-full:before{content:""}.mdi-microsoft-xbox-controller-battery-low:before{content:""}.mdi-microsoft-xbox-controller-battery-medium:before{content:""}.mdi-microsoft-xbox-controller-battery-unknown:before{content:""}.mdi-microsoft-xbox-controller-menu:before{content:""}.mdi-microsoft-xbox-controller-off:before{content:""}.mdi-microsoft-xbox-controller-view:before{content:""}.mdi-microwave:before{content:""}.mdi-microwave-off:before{content:""}.mdi-middleware:before{content:""}.mdi-middleware-outline:before{content:""}.mdi-midi:before{content:""}.mdi-midi-port:before{content:""}.mdi-mine:before{content:""}.mdi-minecraft:before{content:""}.mdi-mini-sd:before{content:""}.mdi-minidisc:before{content:""}.mdi-minus:before{content:""}.mdi-minus-box:before{content:""}.mdi-minus-box-multiple:before{content:""}.mdi-minus-box-multiple-outline:before{content:""}.mdi-minus-box-outline:before{content:""}.mdi-minus-circle:before{content:""}.mdi-minus-circle-multiple:before{content:""}.mdi-minus-circle-multiple-outline:before{content:""}.mdi-minus-circle-off:before{content:""}.mdi-minus-circle-off-outline:before{content:""}.mdi-minus-circle-outline:before{content:""}.mdi-minus-network:before{content:""}.mdi-minus-network-outline:before{content:""}.mdi-minus-thick:before{content:""}.mdi-mirror:before{content:""}.mdi-mirror-rectangle:before{content:""}.mdi-mirror-variant:before{content:""}.mdi-mixed-martial-arts:before{content:""}.mdi-mixed-reality:before{content:""}.mdi-molecule:before{content:""}.mdi-molecule-co:before{content:""}.mdi-molecule-co2:before{content:""}.mdi-monitor:before{content:""}.mdi-monitor-account:before{content:""}.mdi-monitor-arrow-down:before{content:""}.mdi-monitor-arrow-down-variant:before{content:""}.mdi-monitor-cellphone:before{content:""}.mdi-monitor-cellphone-star:before{content:""}.mdi-monitor-dashboard:before{content:""}.mdi-monitor-edit:before{content:""}.mdi-monitor-eye:before{content:""}.mdi-monitor-lock:before{content:""}.mdi-monitor-multiple:before{content:""}.mdi-monitor-off:before{content:""}.mdi-monitor-screenshot:before{content:""}.mdi-monitor-share:before{content:""}.mdi-monitor-shimmer:before{content:""}.mdi-monitor-small:before{content:""}.mdi-monitor-speaker:before{content:""}.mdi-monitor-speaker-off:before{content:""}.mdi-monitor-star:before{content:""}.mdi-monitor-vertical:before{content:""}.mdi-moon-first-quarter:before{content:""}.mdi-moon-full:before{content:""}.mdi-moon-last-quarter:before{content:""}.mdi-moon-new:before{content:""}.mdi-moon-waning-crescent:before{content:""}.mdi-moon-waning-gibbous:before{content:""}.mdi-moon-waxing-crescent:before{content:""}.mdi-moon-waxing-gibbous:before{content:""}.mdi-moped:before{content:""}.mdi-moped-electric:before{content:""}.mdi-moped-electric-outline:before{content:""}.mdi-moped-outline:before{content:""}.mdi-more:before{content:""}.mdi-mortar-pestle:before{content:""}.mdi-mortar-pestle-plus:before{content:""}.mdi-mosque:before{content:""}.mdi-mosque-outline:before{content:""}.mdi-mother-heart:before{content:""}.mdi-mother-nurse:before{content:""}.mdi-motion:before{content:""}.mdi-motion-outline:before{content:""}.mdi-motion-pause:before{content:""}.mdi-motion-pause-outline:before{content:""}.mdi-motion-play:before{content:""}.mdi-motion-play-outline:before{content:""}.mdi-motion-sensor:before{content:""}.mdi-motion-sensor-off:before{content:""}.mdi-motorbike:before{content:""}.mdi-motorbike-electric:before{content:""}.mdi-motorbike-off:before{content:""}.mdi-mouse:before{content:""}.mdi-mouse-bluetooth:before{content:""}.mdi-mouse-move-down:before{content:""}.mdi-mouse-move-up:before{content:""}.mdi-mouse-move-vertical:before{content:""}.mdi-mouse-off:before{content:""}.mdi-mouse-variant:before{content:""}.mdi-mouse-variant-off:before{content:""}.mdi-move-resize:before{content:""}.mdi-move-resize-variant:before{content:""}.mdi-movie:before{content:""}.mdi-movie-check:before{content:""}.mdi-movie-check-outline:before{content:""}.mdi-movie-cog:before{content:""}.mdi-movie-cog-outline:before{content:""}.mdi-movie-edit:before{content:""}.mdi-movie-edit-outline:before{content:""}.mdi-movie-filter:before{content:""}.mdi-movie-filter-outline:before{content:""}.mdi-movie-minus:before{content:""}.mdi-movie-minus-outline:before{content:""}.mdi-movie-off:before{content:""}.mdi-movie-off-outline:before{content:""}.mdi-movie-open:before{content:""}.mdi-movie-open-check:before{content:""}.mdi-movie-open-check-outline:before{content:""}.mdi-movie-open-cog:before{content:""}.mdi-movie-open-cog-outline:before{content:""}.mdi-movie-open-edit:before{content:""}.mdi-movie-open-edit-outline:before{content:""}.mdi-movie-open-minus:before{content:""}.mdi-movie-open-minus-outline:before{content:""}.mdi-movie-open-off:before{content:""}.mdi-movie-open-off-outline:before{content:""}.mdi-movie-open-outline:before{content:""}.mdi-movie-open-play:before{content:""}.mdi-movie-open-play-outline:before{content:""}.mdi-movie-open-plus:before{content:""}.mdi-movie-open-plus-outline:before{content:""}.mdi-movie-open-remove:before{content:""}.mdi-movie-open-remove-outline:before{content:""}.mdi-movie-open-settings:before{content:""}.mdi-movie-open-settings-outline:before{content:""}.mdi-movie-open-star:before{content:""}.mdi-movie-open-star-outline:before{content:""}.mdi-movie-outline:before{content:""}.mdi-movie-play:before{content:""}.mdi-movie-play-outline:before{content:""}.mdi-movie-plus:before{content:""}.mdi-movie-plus-outline:before{content:""}.mdi-movie-remove:before{content:""}.mdi-movie-remove-outline:before{content:""}.mdi-movie-roll:before{content:""}.mdi-movie-search:before{content:""}.mdi-movie-search-outline:before{content:""}.mdi-movie-settings:before{content:""}.mdi-movie-settings-outline:before{content:""}.mdi-movie-star:before{content:""}.mdi-movie-star-outline:before{content:""}.mdi-mower:before{content:""}.mdi-mower-bag:before{content:""}.mdi-mower-bag-on:before{content:""}.mdi-mower-on:before{content:""}.mdi-muffin:before{content:""}.mdi-multicast:before{content:""}.mdi-multimedia:before{content:""}.mdi-multiplication:before{content:""}.mdi-multiplication-box:before{content:""}.mdi-mushroom:before{content:""}.mdi-mushroom-off:before{content:""}.mdi-mushroom-off-outline:before{content:""}.mdi-mushroom-outline:before{content:""}.mdi-music:before{content:""}.mdi-music-accidental-double-flat:before{content:""}.mdi-music-accidental-double-sharp:before{content:""}.mdi-music-accidental-flat:before{content:""}.mdi-music-accidental-natural:before{content:""}.mdi-music-accidental-sharp:before{content:""}.mdi-music-box:before{content:""}.mdi-music-box-multiple:before{content:""}.mdi-music-box-multiple-outline:before{content:""}.mdi-music-box-outline:before{content:""}.mdi-music-circle:before{content:""}.mdi-music-circle-outline:before{content:""}.mdi-music-clef-alto:before{content:""}.mdi-music-clef-bass:before{content:""}.mdi-music-clef-treble:before{content:""}.mdi-music-note:before{content:""}.mdi-music-note-bluetooth:before{content:""}.mdi-music-note-bluetooth-off:before{content:""}.mdi-music-note-eighth:before{content:""}.mdi-music-note-eighth-dotted:before{content:""}.mdi-music-note-half:before{content:""}.mdi-music-note-half-dotted:before{content:""}.mdi-music-note-minus:before{content:""}.mdi-music-note-off:before{content:""}.mdi-music-note-off-outline:before{content:""}.mdi-music-note-outline:before{content:""}.mdi-music-note-plus:before{content:""}.mdi-music-note-quarter:before{content:""}.mdi-music-note-quarter-dotted:before{content:""}.mdi-music-note-sixteenth:before{content:""}.mdi-music-note-sixteenth-dotted:before{content:""}.mdi-music-note-whole:before{content:""}.mdi-music-note-whole-dotted:before{content:""}.mdi-music-off:before{content:""}.mdi-music-rest-eighth:before{content:""}.mdi-music-rest-half:before{content:""}.mdi-music-rest-quarter:before{content:""}.mdi-music-rest-sixteenth:before{content:""}.mdi-music-rest-whole:before{content:""}.mdi-mustache:before{content:""}.mdi-nail:before{content:""}.mdi-nas:before{content:""}.mdi-nativescript:before{content:""}.mdi-nature:before{content:""}.mdi-nature-outline:before{content:""}.mdi-nature-people:before{content:""}.mdi-nature-people-outline:before{content:""}.mdi-navigation:before{content:""}.mdi-navigation-outline:before{content:""}.mdi-navigation-variant:before{content:""}.mdi-navigation-variant-outline:before{content:""}.mdi-near-me:before{content:""}.mdi-necklace:before{content:""}.mdi-needle:before{content:""}.mdi-needle-off:before{content:""}.mdi-netflix:before{content:""}.mdi-network:before{content:""}.mdi-network-off:before{content:""}.mdi-network-off-outline:before{content:""}.mdi-network-outline:before{content:""}.mdi-network-pos:before{content:""}.mdi-network-strength-1:before{content:""}.mdi-network-strength-1-alert:before{content:""}.mdi-network-strength-2:before{content:""}.mdi-network-strength-2-alert:before{content:""}.mdi-network-strength-3:before{content:""}.mdi-network-strength-3-alert:before{content:""}.mdi-network-strength-4:before{content:""}.mdi-network-strength-4-alert:before{content:""}.mdi-network-strength-4-cog:before{content:""}.mdi-network-strength-off:before{content:""}.mdi-network-strength-off-outline:before{content:""}.mdi-network-strength-outline:before{content:""}.mdi-new-box:before{content:""}.mdi-newspaper:before{content:""}.mdi-newspaper-check:before{content:""}.mdi-newspaper-minus:before{content:""}.mdi-newspaper-plus:before{content:""}.mdi-newspaper-remove:before{content:""}.mdi-newspaper-variant:before{content:""}.mdi-newspaper-variant-multiple:before{content:""}.mdi-newspaper-variant-multiple-outline:before{content:""}.mdi-newspaper-variant-outline:before{content:""}.mdi-nfc:before{content:""}.mdi-nfc-search-variant:before{content:""}.mdi-nfc-tap:before{content:""}.mdi-nfc-variant:before{content:""}.mdi-nfc-variant-off:before{content:""}.mdi-ninja:before{content:""}.mdi-nintendo-game-boy:before{content:""}.mdi-nintendo-switch:before{content:""}.mdi-nintendo-wii:before{content:""}.mdi-nintendo-wiiu:before{content:""}.mdi-nix:before{content:""}.mdi-nodejs:before{content:""}.mdi-noodles:before{content:""}.mdi-not-equal:before{content:""}.mdi-not-equal-variant:before{content:""}.mdi-note:before{content:""}.mdi-note-alert:before{content:""}.mdi-note-alert-outline:before{content:""}.mdi-note-check:before{content:""}.mdi-note-check-outline:before{content:""}.mdi-note-edit:before{content:""}.mdi-note-edit-outline:before{content:""}.mdi-note-minus:before{content:""}.mdi-note-minus-outline:before{content:""}.mdi-note-multiple:before{content:""}.mdi-note-multiple-outline:before{content:""}.mdi-note-off:before{content:""}.mdi-note-off-outline:before{content:""}.mdi-note-outline:before{content:""}.mdi-note-plus:before{content:""}.mdi-note-plus-outline:before{content:""}.mdi-note-remove:before{content:""}.mdi-note-remove-outline:before{content:""}.mdi-note-search:before{content:""}.mdi-note-search-outline:before{content:""}.mdi-note-text:before{content:""}.mdi-note-text-outline:before{content:""}.mdi-notebook:before{content:""}.mdi-notebook-check:before{content:""}.mdi-notebook-check-outline:before{content:""}.mdi-notebook-edit:before{content:""}.mdi-notebook-edit-outline:before{content:""}.mdi-notebook-heart:before{content:""}.mdi-notebook-heart-outline:before{content:""}.mdi-notebook-minus:before{content:""}.mdi-notebook-minus-outline:before{content:""}.mdi-notebook-multiple:before{content:""}.mdi-notebook-outline:before{content:""}.mdi-notebook-plus:before{content:""}.mdi-notebook-plus-outline:before{content:""}.mdi-notebook-remove:before{content:""}.mdi-notebook-remove-outline:before{content:""}.mdi-notification-clear-all:before{content:""}.mdi-npm:before{content:""}.mdi-nuke:before{content:""}.mdi-null:before{content:""}.mdi-numeric:before{content:""}.mdi-numeric-0:before{content:""}.mdi-numeric-0-box:before{content:""}.mdi-numeric-0-box-multiple:before{content:""}.mdi-numeric-0-box-multiple-outline:before{content:""}.mdi-numeric-0-box-outline:before{content:""}.mdi-numeric-0-circle:before{content:""}.mdi-numeric-0-circle-outline:before{content:""}.mdi-numeric-1:before{content:""}.mdi-numeric-1-box:before{content:""}.mdi-numeric-1-box-multiple:before{content:""}.mdi-numeric-1-box-multiple-outline:before{content:""}.mdi-numeric-1-box-outline:before{content:""}.mdi-numeric-1-circle:before{content:""}.mdi-numeric-1-circle-outline:before{content:""}.mdi-numeric-10:before{content:""}.mdi-numeric-10-box:before{content:""}.mdi-numeric-10-box-multiple:before{content:""}.mdi-numeric-10-box-multiple-outline:before{content:""}.mdi-numeric-10-box-outline:before{content:""}.mdi-numeric-10-circle:before{content:""}.mdi-numeric-10-circle-outline:before{content:""}.mdi-numeric-2:before{content:""}.mdi-numeric-2-box:before{content:""}.mdi-numeric-2-box-multiple:before{content:""}.mdi-numeric-2-box-multiple-outline:before{content:""}.mdi-numeric-2-box-outline:before{content:""}.mdi-numeric-2-circle:before{content:""}.mdi-numeric-2-circle-outline:before{content:""}.mdi-numeric-3:before{content:""}.mdi-numeric-3-box:before{content:""}.mdi-numeric-3-box-multiple:before{content:""}.mdi-numeric-3-box-multiple-outline:before{content:""}.mdi-numeric-3-box-outline:before{content:""}.mdi-numeric-3-circle:before{content:""}.mdi-numeric-3-circle-outline:before{content:""}.mdi-numeric-4:before{content:""}.mdi-numeric-4-box:before{content:""}.mdi-numeric-4-box-multiple:before{content:""}.mdi-numeric-4-box-multiple-outline:before{content:""}.mdi-numeric-4-box-outline:before{content:""}.mdi-numeric-4-circle:before{content:""}.mdi-numeric-4-circle-outline:before{content:""}.mdi-numeric-5:before{content:""}.mdi-numeric-5-box:before{content:""}.mdi-numeric-5-box-multiple:before{content:""}.mdi-numeric-5-box-multiple-outline:before{content:""}.mdi-numeric-5-box-outline:before{content:""}.mdi-numeric-5-circle:before{content:""}.mdi-numeric-5-circle-outline:before{content:""}.mdi-numeric-6:before{content:""}.mdi-numeric-6-box:before{content:""}.mdi-numeric-6-box-multiple:before{content:""}.mdi-numeric-6-box-multiple-outline:before{content:""}.mdi-numeric-6-box-outline:before{content:""}.mdi-numeric-6-circle:before{content:""}.mdi-numeric-6-circle-outline:before{content:""}.mdi-numeric-7:before{content:""}.mdi-numeric-7-box:before{content:""}.mdi-numeric-7-box-multiple:before{content:""}.mdi-numeric-7-box-multiple-outline:before{content:""}.mdi-numeric-7-box-outline:before{content:""}.mdi-numeric-7-circle:before{content:""}.mdi-numeric-7-circle-outline:before{content:""}.mdi-numeric-8:before{content:""}.mdi-numeric-8-box:before{content:""}.mdi-numeric-8-box-multiple:before{content:""}.mdi-numeric-8-box-multiple-outline:before{content:""}.mdi-numeric-8-box-outline:before{content:""}.mdi-numeric-8-circle:before{content:""}.mdi-numeric-8-circle-outline:before{content:""}.mdi-numeric-9:before{content:""}.mdi-numeric-9-box:before{content:""}.mdi-numeric-9-box-multiple:before{content:""}.mdi-numeric-9-box-multiple-outline:before{content:""}.mdi-numeric-9-box-outline:before{content:""}.mdi-numeric-9-circle:before{content:""}.mdi-numeric-9-circle-outline:before{content:""}.mdi-numeric-9-plus:before{content:""}.mdi-numeric-9-plus-box:before{content:""}.mdi-numeric-9-plus-box-multiple:before{content:""}.mdi-numeric-9-plus-box-multiple-outline:before{content:""}.mdi-numeric-9-plus-box-outline:before{content:""}.mdi-numeric-9-plus-circle:before{content:""}.mdi-numeric-9-plus-circle-outline:before{content:""}.mdi-numeric-negative-1:before{content:""}.mdi-numeric-off:before{content:""}.mdi-numeric-positive-1:before{content:""}.mdi-nut:before{content:""}.mdi-nutrition:before{content:""}.mdi-nuxt:before{content:""}.mdi-oar:before{content:""}.mdi-ocarina:before{content:""}.mdi-oci:before{content:""}.mdi-ocr:before{content:""}.mdi-octagon:before{content:""}.mdi-octagon-outline:before{content:""}.mdi-octagram:before{content:""}.mdi-octagram-edit:before{content:""}.mdi-octagram-edit-outline:before{content:""}.mdi-octagram-minus:before{content:""}.mdi-octagram-minus-outline:before{content:""}.mdi-octagram-outline:before{content:""}.mdi-octagram-plus:before{content:""}.mdi-octagram-plus-outline:before{content:""}.mdi-octahedron:before{content:""}.mdi-octahedron-off:before{content:""}.mdi-odnoklassniki:before{content:""}.mdi-offer:before{content:""}.mdi-office-building:before{content:""}.mdi-office-building-cog:before{content:""}.mdi-office-building-cog-outline:before{content:""}.mdi-office-building-marker:before{content:""}.mdi-office-building-marker-outline:before{content:""}.mdi-office-building-minus:before{content:""}.mdi-office-building-minus-outline:before{content:""}.mdi-office-building-outline:before{content:""}.mdi-office-building-plus:before{content:""}.mdi-office-building-plus-outline:before{content:""}.mdi-office-building-remove:before{content:""}.mdi-office-building-remove-outline:before{content:""}.mdi-oil:before{content:""}.mdi-oil-lamp:before{content:""}.mdi-oil-level:before{content:""}.mdi-oil-temperature:before{content:""}.mdi-om:before{content:""}.mdi-omega:before{content:""}.mdi-one-up:before{content:""}.mdi-onepassword:before{content:""}.mdi-opacity:before{content:""}.mdi-open-in-app:before{content:""}.mdi-open-in-new:before{content:""}.mdi-open-source-initiative:before{content:""}.mdi-openid:before{content:""}.mdi-opera:before{content:""}.mdi-orbit:before{content:""}.mdi-orbit-variant:before{content:""}.mdi-order-alphabetical-ascending:before{content:""}.mdi-order-alphabetical-descending:before{content:""}.mdi-order-bool-ascending:before{content:""}.mdi-order-bool-ascending-variant:before{content:""}.mdi-order-bool-descending:before{content:""}.mdi-order-bool-descending-variant:before{content:""}.mdi-order-numeric-ascending:before{content:""}.mdi-order-numeric-descending:before{content:""}.mdi-origin:before{content:""}.mdi-ornament:before{content:""}.mdi-ornament-variant:before{content:""}.mdi-outdoor-lamp:before{content:""}.mdi-overscan:before{content:""}.mdi-owl:before{content:""}.mdi-pac-man:before{content:""}.mdi-package:before{content:""}.mdi-package-check:before{content:""}.mdi-package-down:before{content:""}.mdi-package-up:before{content:""}.mdi-package-variant:before{content:""}.mdi-package-variant-closed:before{content:""}.mdi-package-variant-closed-check:before{content:""}.mdi-package-variant-closed-minus:before{content:""}.mdi-package-variant-closed-plus:before{content:""}.mdi-package-variant-closed-remove:before{content:""}.mdi-package-variant-minus:before{content:""}.mdi-package-variant-plus:before{content:""}.mdi-package-variant-remove:before{content:""}.mdi-page-first:before{content:""}.mdi-page-last:before{content:""}.mdi-page-layout-body:before{content:""}.mdi-page-layout-footer:before{content:""}.mdi-page-layout-header:before{content:""}.mdi-page-layout-header-footer:before{content:""}.mdi-page-layout-sidebar-left:before{content:""}.mdi-page-layout-sidebar-right:before{content:""}.mdi-page-next:before{content:""}.mdi-page-next-outline:before{content:""}.mdi-page-previous:before{content:""}.mdi-page-previous-outline:before{content:""}.mdi-pail:before{content:""}.mdi-pail-minus:before{content:""}.mdi-pail-minus-outline:before{content:""}.mdi-pail-off:before{content:""}.mdi-pail-off-outline:before{content:""}.mdi-pail-outline:before{content:""}.mdi-pail-plus:before{content:""}.mdi-pail-plus-outline:before{content:""}.mdi-pail-remove:before{content:""}.mdi-pail-remove-outline:before{content:""}.mdi-palette:before{content:""}.mdi-palette-advanced:before{content:""}.mdi-palette-outline:before{content:""}.mdi-palette-swatch:before{content:""}.mdi-palette-swatch-outline:before{content:""}.mdi-palette-swatch-variant:before{content:""}.mdi-palm-tree:before{content:""}.mdi-pan:before{content:""}.mdi-pan-bottom-left:before{content:""}.mdi-pan-bottom-right:before{content:""}.mdi-pan-down:before{content:""}.mdi-pan-horizontal:before{content:""}.mdi-pan-left:before{content:""}.mdi-pan-right:before{content:""}.mdi-pan-top-left:before{content:""}.mdi-pan-top-right:before{content:""}.mdi-pan-up:before{content:""}.mdi-pan-vertical:before{content:""}.mdi-panda:before{content:""}.mdi-pandora:before{content:""}.mdi-panorama:before{content:""}.mdi-panorama-fisheye:before{content:""}.mdi-panorama-horizontal:before{content:""}.mdi-panorama-horizontal-outline:before{content:""}.mdi-panorama-outline:before{content:""}.mdi-panorama-sphere:before{content:""}.mdi-panorama-sphere-outline:before{content:""}.mdi-panorama-variant:before{content:""}.mdi-panorama-variant-outline:before{content:""}.mdi-panorama-vertical:before{content:""}.mdi-panorama-vertical-outline:before{content:""}.mdi-panorama-wide-angle:before{content:""}.mdi-panorama-wide-angle-outline:before{content:""}.mdi-paper-cut-vertical:before{content:""}.mdi-paper-roll:before{content:""}.mdi-paper-roll-outline:before{content:""}.mdi-paperclip:before{content:""}.mdi-paperclip-check:before{content:""}.mdi-paperclip-lock:before{content:""}.mdi-paperclip-minus:before{content:""}.mdi-paperclip-off:before{content:""}.mdi-paperclip-plus:before{content:""}.mdi-paperclip-remove:before{content:""}.mdi-parachute:before{content:""}.mdi-parachute-outline:before{content:""}.mdi-paragliding:before{content:""}.mdi-parking:before{content:""}.mdi-party-popper:before{content:""}.mdi-passport:before{content:""}.mdi-passport-alert:before{content:""}.mdi-passport-biometric:before{content:""}.mdi-passport-cancel:before{content:""}.mdi-passport-check:before{content:""}.mdi-passport-minus:before{content:""}.mdi-passport-plus:before{content:""}.mdi-passport-remove:before{content:""}.mdi-pasta:before{content:""}.mdi-patio-heater:before{content:""}.mdi-patreon:before{content:""}.mdi-pause:before{content:""}.mdi-pause-box:before{content:""}.mdi-pause-box-outline:before{content:""}.mdi-pause-circle:before{content:""}.mdi-pause-circle-outline:before{content:""}.mdi-pause-octagon:before{content:""}.mdi-pause-octagon-outline:before{content:""}.mdi-paw:before{content:""}.mdi-paw-off:before{content:""}.mdi-paw-off-outline:before{content:""}.mdi-paw-outline:before{content:""}.mdi-peace:before{content:""}.mdi-peanut:before{content:""}.mdi-peanut-off:before{content:""}.mdi-peanut-off-outline:before{content:""}.mdi-peanut-outline:before{content:""}.mdi-pen:before{content:""}.mdi-pen-lock:before{content:""}.mdi-pen-minus:before{content:""}.mdi-pen-off:before{content:""}.mdi-pen-plus:before{content:""}.mdi-pen-remove:before{content:""}.mdi-pencil:before{content:""}.mdi-pencil-box:before{content:""}.mdi-pencil-box-multiple:before{content:""}.mdi-pencil-box-multiple-outline:before{content:""}.mdi-pencil-box-outline:before{content:""}.mdi-pencil-circle:before{content:""}.mdi-pencil-circle-outline:before{content:""}.mdi-pencil-lock:before{content:""}.mdi-pencil-lock-outline:before{content:""}.mdi-pencil-minus:before{content:""}.mdi-pencil-minus-outline:before{content:""}.mdi-pencil-off:before{content:""}.mdi-pencil-off-outline:before{content:""}.mdi-pencil-outline:before{content:""}.mdi-pencil-plus:before{content:""}.mdi-pencil-plus-outline:before{content:""}.mdi-pencil-remove:before{content:""}.mdi-pencil-remove-outline:before{content:""}.mdi-pencil-ruler:before{content:""}.mdi-pencil-ruler-outline:before{content:""}.mdi-penguin:before{content:""}.mdi-pentagon:before{content:""}.mdi-pentagon-outline:before{content:""}.mdi-pentagram:before{content:""}.mdi-percent:before{content:""}.mdi-percent-box:before{content:""}.mdi-percent-box-outline:before{content:""}.mdi-percent-circle:before{content:""}.mdi-percent-circle-outline:before{content:""}.mdi-percent-outline:before{content:""}.mdi-periodic-table:before{content:""}.mdi-perspective-less:before{content:""}.mdi-perspective-more:before{content:""}.mdi-ph:before{content:""}.mdi-phone:before{content:""}.mdi-phone-alert:before{content:""}.mdi-phone-alert-outline:before{content:""}.mdi-phone-bluetooth:before{content:""}.mdi-phone-bluetooth-outline:before{content:""}.mdi-phone-cancel:before{content:""}.mdi-phone-cancel-outline:before{content:""}.mdi-phone-check:before{content:""}.mdi-phone-check-outline:before{content:""}.mdi-phone-classic:before{content:""}.mdi-phone-classic-off:before{content:""}.mdi-phone-clock:before{content:""}.mdi-phone-dial:before{content:""}.mdi-phone-dial-outline:before{content:""}.mdi-phone-forward:before{content:""}.mdi-phone-forward-outline:before{content:""}.mdi-phone-hangup:before{content:""}.mdi-phone-hangup-outline:before{content:""}.mdi-phone-in-talk:before{content:""}.mdi-phone-in-talk-outline:before{content:""}.mdi-phone-incoming:before{content:""}.mdi-phone-incoming-outgoing:before{content:""}.mdi-phone-incoming-outgoing-outline:before{content:""}.mdi-phone-incoming-outline:before{content:""}.mdi-phone-lock:before{content:""}.mdi-phone-lock-outline:before{content:""}.mdi-phone-log:before{content:""}.mdi-phone-log-outline:before{content:""}.mdi-phone-message:before{content:""}.mdi-phone-message-outline:before{content:""}.mdi-phone-minus:before{content:""}.mdi-phone-minus-outline:before{content:""}.mdi-phone-missed:before{content:""}.mdi-phone-missed-outline:before{content:""}.mdi-phone-off:before{content:""}.mdi-phone-off-outline:before{content:""}.mdi-phone-outgoing:before{content:""}.mdi-phone-outgoing-outline:before{content:""}.mdi-phone-outline:before{content:""}.mdi-phone-paused:before{content:""}.mdi-phone-paused-outline:before{content:""}.mdi-phone-plus:before{content:""}.mdi-phone-plus-outline:before{content:""}.mdi-phone-refresh:before{content:""}.mdi-phone-refresh-outline:before{content:""}.mdi-phone-remove:before{content:""}.mdi-phone-remove-outline:before{content:""}.mdi-phone-return:before{content:""}.mdi-phone-return-outline:before{content:""}.mdi-phone-ring:before{content:""}.mdi-phone-ring-outline:before{content:""}.mdi-phone-rotate-landscape:before{content:""}.mdi-phone-rotate-portrait:before{content:""}.mdi-phone-settings:before{content:""}.mdi-phone-settings-outline:before{content:""}.mdi-phone-sync:before{content:""}.mdi-phone-sync-outline:before{content:""}.mdi-phone-voip:before{content:""}.mdi-pi:before{content:""}.mdi-pi-box:before{content:""}.mdi-pi-hole:before{content:""}.mdi-piano:before{content:""}.mdi-piano-off:before{content:""}.mdi-pickaxe:before{content:""}.mdi-picture-in-picture-bottom-right:before{content:""}.mdi-picture-in-picture-bottom-right-outline:before{content:""}.mdi-picture-in-picture-top-right:before{content:""}.mdi-picture-in-picture-top-right-outline:before{content:""}.mdi-pier:before{content:""}.mdi-pier-crane:before{content:""}.mdi-pig:before{content:""}.mdi-pig-variant:before{content:""}.mdi-pig-variant-outline:before{content:""}.mdi-piggy-bank:before{content:""}.mdi-piggy-bank-outline:before{content:""}.mdi-pill:before{content:""}.mdi-pill-multiple:before{content:""}.mdi-pill-off:before{content:""}.mdi-pillar:before{content:""}.mdi-pin:before{content:""}.mdi-pin-off:before{content:""}.mdi-pin-off-outline:before{content:""}.mdi-pin-outline:before{content:""}.mdi-pine-tree:before{content:""}.mdi-pine-tree-box:before{content:""}.mdi-pine-tree-fire:before{content:""}.mdi-pine-tree-variant:before{content:""}.mdi-pine-tree-variant-outline:before{content:""}.mdi-pinterest:before{content:""}.mdi-pinwheel:before{content:""}.mdi-pinwheel-outline:before{content:""}.mdi-pipe:before{content:""}.mdi-pipe-disconnected:before{content:""}.mdi-pipe-leak:before{content:""}.mdi-pipe-valve:before{content:""}.mdi-pipe-wrench:before{content:""}.mdi-pirate:before{content:""}.mdi-pistol:before{content:""}.mdi-piston:before{content:""}.mdi-pitchfork:before{content:""}.mdi-pizza:before{content:""}.mdi-plane-car:before{content:""}.mdi-plane-train:before{content:""}.mdi-play:before{content:""}.mdi-play-box:before{content:""}.mdi-play-box-edit-outline:before{content:""}.mdi-play-box-lock:before{content:""}.mdi-play-box-lock-open:before{content:""}.mdi-play-box-lock-open-outline:before{content:""}.mdi-play-box-lock-outline:before{content:""}.mdi-play-box-multiple:before{content:""}.mdi-play-box-multiple-outline:before{content:""}.mdi-play-box-outline:before{content:""}.mdi-play-circle:before{content:""}.mdi-play-circle-outline:before{content:""}.mdi-play-network:before{content:""}.mdi-play-network-outline:before{content:""}.mdi-play-outline:before{content:""}.mdi-play-pause:before{content:""}.mdi-play-protected-content:before{content:""}.mdi-play-speed:before{content:""}.mdi-playlist-check:before{content:""}.mdi-playlist-edit:before{content:""}.mdi-playlist-minus:before{content:""}.mdi-playlist-music:before{content:""}.mdi-playlist-music-outline:before{content:""}.mdi-playlist-play:before{content:""}.mdi-playlist-plus:before{content:""}.mdi-playlist-remove:before{content:""}.mdi-playlist-star:before{content:""}.mdi-plex:before{content:""}.mdi-pliers:before{content:""}.mdi-plus:before{content:""}.mdi-plus-box:before{content:""}.mdi-plus-box-multiple:before{content:""}.mdi-plus-box-multiple-outline:before{content:""}.mdi-plus-box-outline:before{content:""}.mdi-plus-circle:before{content:""}.mdi-plus-circle-multiple:before{content:""}.mdi-plus-circle-multiple-outline:before{content:""}.mdi-plus-circle-outline:before{content:""}.mdi-plus-lock:before{content:""}.mdi-plus-lock-open:before{content:""}.mdi-plus-minus:before{content:""}.mdi-plus-minus-box:before{content:""}.mdi-plus-minus-variant:before{content:""}.mdi-plus-network:before{content:""}.mdi-plus-network-outline:before{content:""}.mdi-plus-outline:before{content:""}.mdi-plus-thick:before{content:""}.mdi-pocket:before{content:""}.mdi-podcast:before{content:""}.mdi-podium:before{content:""}.mdi-podium-bronze:before{content:""}.mdi-podium-gold:before{content:""}.mdi-podium-silver:before{content:""}.mdi-point-of-sale:before{content:""}.mdi-pokeball:before{content:""}.mdi-pokemon-go:before{content:""}.mdi-poker-chip:before{content:""}.mdi-polaroid:before{content:""}.mdi-police-badge:before{content:""}.mdi-police-badge-outline:before{content:""}.mdi-police-station:before{content:""}.mdi-poll:before{content:""}.mdi-polo:before{content:""}.mdi-polymer:before{content:""}.mdi-pool:before{content:""}.mdi-pool-thermometer:before{content:""}.mdi-popcorn:before{content:""}.mdi-post:before{content:""}.mdi-post-lamp:before{content:""}.mdi-post-outline:before{content:""}.mdi-postage-stamp:before{content:""}.mdi-pot:before{content:""}.mdi-pot-mix:before{content:""}.mdi-pot-mix-outline:before{content:""}.mdi-pot-outline:before{content:""}.mdi-pot-steam:before{content:""}.mdi-pot-steam-outline:before{content:""}.mdi-pound:before{content:""}.mdi-pound-box:before{content:""}.mdi-pound-box-outline:before{content:""}.mdi-power:before{content:""}.mdi-power-cycle:before{content:""}.mdi-power-off:before{content:""}.mdi-power-on:before{content:""}.mdi-power-plug:before{content:""}.mdi-power-plug-battery:before{content:""}.mdi-power-plug-battery-outline:before{content:""}.mdi-power-plug-off:before{content:""}.mdi-power-plug-off-outline:before{content:""}.mdi-power-plug-outline:before{content:""}.mdi-power-settings:before{content:""}.mdi-power-sleep:before{content:""}.mdi-power-socket:before{content:""}.mdi-power-socket-au:before{content:""}.mdi-power-socket-ch:before{content:""}.mdi-power-socket-de:before{content:""}.mdi-power-socket-eu:before{content:""}.mdi-power-socket-fr:before{content:""}.mdi-power-socket-it:before{content:""}.mdi-power-socket-jp:before{content:""}.mdi-power-socket-uk:before{content:""}.mdi-power-socket-us:before{content:""}.mdi-power-standby:before{content:""}.mdi-powershell:before{content:""}.mdi-prescription:before{content:""}.mdi-presentation:before{content:""}.mdi-presentation-play:before{content:""}.mdi-pretzel:before{content:""}.mdi-printer:before{content:""}.mdi-printer-3d:before{content:""}.mdi-printer-3d-nozzle:before{content:""}.mdi-printer-3d-nozzle-alert:before{content:""}.mdi-printer-3d-nozzle-alert-outline:before{content:""}.mdi-printer-3d-nozzle-heat:before{content:""}.mdi-printer-3d-nozzle-heat-outline:before{content:""}.mdi-printer-3d-nozzle-off:before{content:""}.mdi-printer-3d-nozzle-off-outline:before{content:""}.mdi-printer-3d-nozzle-outline:before{content:""}.mdi-printer-3d-off:before{content:""}.mdi-printer-alert:before{content:""}.mdi-printer-check:before{content:""}.mdi-printer-eye:before{content:""}.mdi-printer-off:before{content:""}.mdi-printer-off-outline:before{content:""}.mdi-printer-outline:before{content:""}.mdi-printer-pos:before{content:""}.mdi-printer-pos-alert:before{content:""}.mdi-printer-pos-alert-outline:before{content:""}.mdi-printer-pos-cancel:before{content:""}.mdi-printer-pos-cancel-outline:before{content:""}.mdi-printer-pos-check:before{content:""}.mdi-printer-pos-check-outline:before{content:""}.mdi-printer-pos-cog:before{content:""}.mdi-printer-pos-cog-outline:before{content:""}.mdi-printer-pos-edit:before{content:""}.mdi-printer-pos-edit-outline:before{content:""}.mdi-printer-pos-minus:before{content:""}.mdi-printer-pos-minus-outline:before{content:""}.mdi-printer-pos-network:before{content:""}.mdi-printer-pos-network-outline:before{content:""}.mdi-printer-pos-off:before{content:""}.mdi-printer-pos-off-outline:before{content:""}.mdi-printer-pos-outline:before{content:""}.mdi-printer-pos-pause:before{content:""}.mdi-printer-pos-pause-outline:before{content:""}.mdi-printer-pos-play:before{content:""}.mdi-printer-pos-play-outline:before{content:""}.mdi-printer-pos-plus:before{content:""}.mdi-printer-pos-plus-outline:before{content:""}.mdi-printer-pos-refresh:before{content:""}.mdi-printer-pos-refresh-outline:before{content:""}.mdi-printer-pos-remove:before{content:""}.mdi-printer-pos-remove-outline:before{content:""}.mdi-printer-pos-star:before{content:""}.mdi-printer-pos-star-outline:before{content:""}.mdi-printer-pos-stop:before{content:""}.mdi-printer-pos-stop-outline:before{content:""}.mdi-printer-pos-sync:before{content:""}.mdi-printer-pos-sync-outline:before{content:""}.mdi-printer-pos-wrench:before{content:""}.mdi-printer-pos-wrench-outline:before{content:""}.mdi-printer-search:before{content:""}.mdi-printer-settings:before{content:""}.mdi-printer-wireless:before{content:""}.mdi-priority-high:before{content:""}.mdi-priority-low:before{content:""}.mdi-professional-hexagon:before{content:""}.mdi-progress-alert:before{content:""}.mdi-progress-check:before{content:""}.mdi-progress-clock:before{content:""}.mdi-progress-close:before{content:""}.mdi-progress-download:before{content:""}.mdi-progress-helper:before{content:""}.mdi-progress-pencil:before{content:""}.mdi-progress-question:before{content:""}.mdi-progress-star:before{content:""}.mdi-progress-star-four-points:before{content:""}.mdi-progress-upload:before{content:""}.mdi-progress-wrench:before{content:""}.mdi-projector:before{content:""}.mdi-projector-off:before{content:""}.mdi-projector-screen:before{content:""}.mdi-projector-screen-off:before{content:""}.mdi-projector-screen-off-outline:before{content:""}.mdi-projector-screen-outline:before{content:""}.mdi-projector-screen-variant:before{content:""}.mdi-projector-screen-variant-off:before{content:""}.mdi-projector-screen-variant-off-outline:before{content:""}.mdi-projector-screen-variant-outline:before{content:""}.mdi-propane-tank:before{content:""}.mdi-propane-tank-outline:before{content:""}.mdi-protocol:before{content:""}.mdi-publish:before{content:""}.mdi-publish-off:before{content:""}.mdi-pulse:before{content:""}.mdi-pump:before{content:""}.mdi-pump-off:before{content:""}.mdi-pumpkin:before{content:""}.mdi-purse:before{content:""}.mdi-purse-outline:before{content:""}.mdi-puzzle:before{content:""}.mdi-puzzle-check:before{content:""}.mdi-puzzle-check-outline:before{content:""}.mdi-puzzle-edit:before{content:""}.mdi-puzzle-edit-outline:before{content:""}.mdi-puzzle-heart:before{content:""}.mdi-puzzle-heart-outline:before{content:""}.mdi-puzzle-minus:before{content:""}.mdi-puzzle-minus-outline:before{content:""}.mdi-puzzle-outline:before{content:""}.mdi-puzzle-plus:before{content:""}.mdi-puzzle-plus-outline:before{content:""}.mdi-puzzle-remove:before{content:""}.mdi-puzzle-remove-outline:before{content:""}.mdi-puzzle-star:before{content:""}.mdi-puzzle-star-outline:before{content:""}.mdi-pyramid:before{content:""}.mdi-pyramid-off:before{content:""}.mdi-qi:before{content:""}.mdi-qqchat:before{content:""}.mdi-qrcode:before{content:""}.mdi-qrcode-edit:before{content:""}.mdi-qrcode-minus:before{content:""}.mdi-qrcode-plus:before{content:""}.mdi-qrcode-remove:before{content:""}.mdi-qrcode-scan:before{content:""}.mdi-quadcopter:before{content:""}.mdi-quality-high:before{content:""}.mdi-quality-low:before{content:""}.mdi-quality-medium:before{content:""}.mdi-queue-first-in-last-out:before{content:""}.mdi-quora:before{content:""}.mdi-rabbit:before{content:""}.mdi-rabbit-variant:before{content:""}.mdi-rabbit-variant-outline:before{content:""}.mdi-racing-helmet:before{content:""}.mdi-racquetball:before{content:""}.mdi-radar:before{content:""}.mdi-radiator:before{content:""}.mdi-radiator-disabled:before{content:""}.mdi-radiator-off:before{content:""}.mdi-radio:before{content:""}.mdi-radio-am:before{content:""}.mdi-radio-fm:before{content:""}.mdi-radio-handheld:before{content:""}.mdi-radio-off:before{content:""}.mdi-radio-tower:before{content:""}.mdi-radioactive:before{content:""}.mdi-radioactive-circle:before{content:""}.mdi-radioactive-circle-outline:before{content:""}.mdi-radioactive-off:before{content:""}.mdi-radiobox-blank:before{content:""}.mdi-radiobox-indeterminate-variant:before{content:""}.mdi-radiobox-marked:before{content:""}.mdi-radiology-box:before{content:""}.mdi-radiology-box-outline:before{content:""}.mdi-radius:before{content:""}.mdi-radius-outline:before{content:""}.mdi-railroad-light:before{content:""}.mdi-rake:before{content:""}.mdi-raspberry-pi:before{content:""}.mdi-raw:before{content:""}.mdi-raw-off:before{content:""}.mdi-ray-end:before{content:""}.mdi-ray-end-arrow:before{content:""}.mdi-ray-start:before{content:""}.mdi-ray-start-arrow:before{content:""}.mdi-ray-start-end:before{content:""}.mdi-ray-start-vertex-end:before{content:""}.mdi-ray-vertex:before{content:""}.mdi-razor-double-edge:before{content:""}.mdi-razor-single-edge:before{content:""}.mdi-react:before{content:""}.mdi-read:before{content:""}.mdi-receipt:before{content:""}.mdi-receipt-clock:before{content:""}.mdi-receipt-clock-outline:before{content:""}.mdi-receipt-outline:before{content:""}.mdi-receipt-send:before{content:""}.mdi-receipt-send-outline:before{content:""}.mdi-receipt-text:before{content:""}.mdi-receipt-text-arrow-left:before{content:""}.mdi-receipt-text-arrow-left-outline:before{content:""}.mdi-receipt-text-arrow-right:before{content:""}.mdi-receipt-text-arrow-right-outline:before{content:""}.mdi-receipt-text-check:before{content:""}.mdi-receipt-text-check-outline:before{content:""}.mdi-receipt-text-clock:before{content:""}.mdi-receipt-text-clock-outline:before{content:""}.mdi-receipt-text-edit:before{content:""}.mdi-receipt-text-edit-outline:before{content:""}.mdi-receipt-text-minus:before{content:""}.mdi-receipt-text-minus-outline:before{content:""}.mdi-receipt-text-outline:before{content:""}.mdi-receipt-text-plus:before{content:""}.mdi-receipt-text-plus-outline:before{content:""}.mdi-receipt-text-remove:before{content:""}.mdi-receipt-text-remove-outline:before{content:""}.mdi-receipt-text-send:before{content:""}.mdi-receipt-text-send-outline:before{content:""}.mdi-record:before{content:""}.mdi-record-circle:before{content:""}.mdi-record-circle-outline:before{content:""}.mdi-record-player:before{content:""}.mdi-record-rec:before{content:""}.mdi-rectangle:before{content:""}.mdi-rectangle-outline:before{content:""}.mdi-recycle:before{content:""}.mdi-recycle-variant:before{content:""}.mdi-reddit:before{content:""}.mdi-redhat:before{content:""}.mdi-redo:before{content:""}.mdi-redo-variant:before{content:""}.mdi-reflect-horizontal:before{content:""}.mdi-reflect-vertical:before{content:""}.mdi-refresh:before{content:""}.mdi-refresh-auto:before{content:""}.mdi-refresh-circle:before{content:""}.mdi-regex:before{content:""}.mdi-registered-trademark:before{content:""}.mdi-reiterate:before{content:""}.mdi-relation-many-to-many:before{content:""}.mdi-relation-many-to-one:before{content:""}.mdi-relation-many-to-one-or-many:before{content:""}.mdi-relation-many-to-only-one:before{content:""}.mdi-relation-many-to-zero-or-many:before{content:""}.mdi-relation-many-to-zero-or-one:before{content:""}.mdi-relation-one-or-many-to-many:before{content:""}.mdi-relation-one-or-many-to-one:before{content:""}.mdi-relation-one-or-many-to-one-or-many:before{content:""}.mdi-relation-one-or-many-to-only-one:before{content:""}.mdi-relation-one-or-many-to-zero-or-many:before{content:""}.mdi-relation-one-or-many-to-zero-or-one:before{content:""}.mdi-relation-one-to-many:before{content:""}.mdi-relation-one-to-one:before{content:""}.mdi-relation-one-to-one-or-many:before{content:""}.mdi-relation-one-to-only-one:before{content:""}.mdi-relation-one-to-zero-or-many:before{content:""}.mdi-relation-one-to-zero-or-one:before{content:""}.mdi-relation-only-one-to-many:before{content:""}.mdi-relation-only-one-to-one:before{content:""}.mdi-relation-only-one-to-one-or-many:before{content:""}.mdi-relation-only-one-to-only-one:before{content:""}.mdi-relation-only-one-to-zero-or-many:before{content:""}.mdi-relation-only-one-to-zero-or-one:before{content:""}.mdi-relation-zero-or-many-to-many:before{content:""}.mdi-relation-zero-or-many-to-one:before{content:""}.mdi-relation-zero-or-many-to-one-or-many:before{content:""}.mdi-relation-zero-or-many-to-only-one:before{content:""}.mdi-relation-zero-or-many-to-zero-or-many:before{content:""}.mdi-relation-zero-or-many-to-zero-or-one:before{content:""}.mdi-relation-zero-or-one-to-many:before{content:""}.mdi-relation-zero-or-one-to-one:before{content:""}.mdi-relation-zero-or-one-to-one-or-many:before{content:""}.mdi-relation-zero-or-one-to-only-one:before{content:""}.mdi-relation-zero-or-one-to-zero-or-many:before{content:""}.mdi-relation-zero-or-one-to-zero-or-one:before{content:""}.mdi-relative-scale:before{content:""}.mdi-reload:before{content:""}.mdi-reload-alert:before{content:""}.mdi-reminder:before{content:""}.mdi-remote:before{content:""}.mdi-remote-desktop:before{content:""}.mdi-remote-off:before{content:""}.mdi-remote-tv:before{content:""}.mdi-remote-tv-off:before{content:""}.mdi-rename:before{content:""}.mdi-rename-box:before{content:""}.mdi-rename-box-outline:before{content:""}.mdi-rename-outline:before{content:""}.mdi-reorder-horizontal:before{content:""}.mdi-reorder-vertical:before{content:""}.mdi-repeat:before{content:""}.mdi-repeat-off:before{content:""}.mdi-repeat-once:before{content:""}.mdi-repeat-variant:before{content:""}.mdi-replay:before{content:""}.mdi-reply:before{content:""}.mdi-reply-all:before{content:""}.mdi-reply-all-outline:before{content:""}.mdi-reply-circle:before{content:""}.mdi-reply-outline:before{content:""}.mdi-reproduction:before{content:""}.mdi-resistor:before{content:""}.mdi-resistor-nodes:before{content:""}.mdi-resize:before{content:""}.mdi-resize-bottom-right:before{content:""}.mdi-responsive:before{content:""}.mdi-restart:before{content:""}.mdi-restart-alert:before{content:""}.mdi-restart-off:before{content:""}.mdi-restore:before{content:""}.mdi-restore-alert:before{content:""}.mdi-rewind:before{content:""}.mdi-rewind-10:before{content:""}.mdi-rewind-15:before{content:""}.mdi-rewind-30:before{content:""}.mdi-rewind-45:before{content:""}.mdi-rewind-5:before{content:""}.mdi-rewind-60:before{content:""}.mdi-rewind-outline:before{content:""}.mdi-rhombus:before{content:""}.mdi-rhombus-medium:before{content:""}.mdi-rhombus-medium-outline:before{content:""}.mdi-rhombus-outline:before{content:""}.mdi-rhombus-split:before{content:""}.mdi-rhombus-split-outline:before{content:""}.mdi-ribbon:before{content:""}.mdi-rice:before{content:""}.mdi-rickshaw:before{content:""}.mdi-rickshaw-electric:before{content:""}.mdi-ring:before{content:""}.mdi-rivet:before{content:""}.mdi-road:before{content:""}.mdi-road-variant:before{content:""}.mdi-robber:before{content:""}.mdi-robot:before{content:""}.mdi-robot-angry:before{content:""}.mdi-robot-angry-outline:before{content:""}.mdi-robot-confused:before{content:""}.mdi-robot-confused-outline:before{content:""}.mdi-robot-dead:before{content:""}.mdi-robot-dead-outline:before{content:""}.mdi-robot-excited:before{content:""}.mdi-robot-excited-outline:before{content:""}.mdi-robot-happy:before{content:""}.mdi-robot-happy-outline:before{content:""}.mdi-robot-industrial:before{content:""}.mdi-robot-industrial-outline:before{content:""}.mdi-robot-love:before{content:""}.mdi-robot-love-outline:before{content:""}.mdi-robot-mower:before{content:""}.mdi-robot-mower-outline:before{content:""}.mdi-robot-off:before{content:""}.mdi-robot-off-outline:before{content:""}.mdi-robot-outline:before{content:""}.mdi-robot-vacuum:before{content:""}.mdi-robot-vacuum-alert:before{content:""}.mdi-robot-vacuum-off:before{content:""}.mdi-robot-vacuum-variant:before{content:""}.mdi-robot-vacuum-variant-alert:before{content:""}.mdi-robot-vacuum-variant-off:before{content:""}.mdi-rocket:before{content:""}.mdi-rocket-launch:before{content:""}.mdi-rocket-launch-outline:before{content:""}.mdi-rocket-outline:before{content:""}.mdi-rodent:before{content:""}.mdi-roller-shade:before{content:""}.mdi-roller-shade-closed:before{content:""}.mdi-roller-skate:before{content:""}.mdi-roller-skate-off:before{content:""}.mdi-rollerblade:before{content:""}.mdi-rollerblade-off:before{content:""}.mdi-rollupjs:before{content:""}.mdi-rolodex:before{content:""}.mdi-rolodex-outline:before{content:""}.mdi-roman-numeral-1:before{content:""}.mdi-roman-numeral-10:before{content:""}.mdi-roman-numeral-2:before{content:""}.mdi-roman-numeral-3:before{content:""}.mdi-roman-numeral-4:before{content:""}.mdi-roman-numeral-5:before{content:""}.mdi-roman-numeral-6:before{content:""}.mdi-roman-numeral-7:before{content:""}.mdi-roman-numeral-8:before{content:""}.mdi-roman-numeral-9:before{content:""}.mdi-room-service:before{content:""}.mdi-room-service-outline:before{content:""}.mdi-rotate-360:before{content:""}.mdi-rotate-3d:before{content:""}.mdi-rotate-3d-variant:before{content:""}.mdi-rotate-left:before{content:""}.mdi-rotate-left-variant:before{content:""}.mdi-rotate-orbit:before{content:""}.mdi-rotate-right:before{content:""}.mdi-rotate-right-variant:before{content:""}.mdi-rounded-corner:before{content:""}.mdi-router:before{content:""}.mdi-router-network:before{content:""}.mdi-router-network-wireless:before{content:""}.mdi-router-wireless:before{content:""}.mdi-router-wireless-off:before{content:""}.mdi-router-wireless-settings:before{content:""}.mdi-routes:before{content:""}.mdi-routes-clock:before{content:""}.mdi-rowing:before{content:""}.mdi-rss:before{content:""}.mdi-rss-box:before{content:""}.mdi-rss-off:before{content:""}.mdi-rug:before{content:""}.mdi-rugby:before{content:""}.mdi-ruler:before{content:""}.mdi-ruler-square:before{content:""}.mdi-ruler-square-compass:before{content:""}.mdi-run:before{content:""}.mdi-run-fast:before{content:""}.mdi-rv-truck:before{content:""}.mdi-sack:before{content:""}.mdi-sack-outline:before{content:""}.mdi-sack-percent:before{content:""}.mdi-safe:before{content:""}.mdi-safe-square:before{content:""}.mdi-safe-square-outline:before{content:""}.mdi-safety-goggles:before{content:""}.mdi-sail-boat:before{content:""}.mdi-sail-boat-sink:before{content:""}.mdi-sale:before{content:""}.mdi-sale-outline:before{content:""}.mdi-salesforce:before{content:""}.mdi-sass:before{content:""}.mdi-satellite:before{content:""}.mdi-satellite-uplink:before{content:""}.mdi-satellite-variant:before{content:""}.mdi-sausage:before{content:""}.mdi-sausage-off:before{content:""}.mdi-saw-blade:before{content:""}.mdi-sawtooth-wave:before{content:""}.mdi-saxophone:before{content:""}.mdi-scale:before{content:""}.mdi-scale-balance:before{content:""}.mdi-scale-bathroom:before{content:""}.mdi-scale-off:before{content:""}.mdi-scale-unbalanced:before{content:""}.mdi-scan-helper:before{content:""}.mdi-scanner:before{content:""}.mdi-scanner-off:before{content:""}.mdi-scatter-plot:before{content:""}.mdi-scatter-plot-outline:before{content:""}.mdi-scent:before{content:""}.mdi-scent-off:before{content:""}.mdi-school:before{content:""}.mdi-school-outline:before{content:""}.mdi-scissors-cutting:before{content:""}.mdi-scooter:before{content:""}.mdi-scooter-electric:before{content:""}.mdi-scoreboard:before{content:""}.mdi-scoreboard-outline:before{content:""}.mdi-screen-rotation:before{content:""}.mdi-screen-rotation-lock:before{content:""}.mdi-screw-flat-top:before{content:""}.mdi-screw-lag:before{content:""}.mdi-screw-machine-flat-top:before{content:""}.mdi-screw-machine-round-top:before{content:""}.mdi-screw-round-top:before{content:""}.mdi-screwdriver:before{content:""}.mdi-script:before{content:""}.mdi-script-outline:before{content:""}.mdi-script-text:before{content:""}.mdi-script-text-key:before{content:""}.mdi-script-text-key-outline:before{content:""}.mdi-script-text-outline:before{content:""}.mdi-script-text-play:before{content:""}.mdi-script-text-play-outline:before{content:""}.mdi-sd:before{content:""}.mdi-seal:before{content:""}.mdi-seal-variant:before{content:""}.mdi-search-web:before{content:""}.mdi-seat:before{content:""}.mdi-seat-flat:before{content:""}.mdi-seat-flat-angled:before{content:""}.mdi-seat-individual-suite:before{content:""}.mdi-seat-legroom-extra:before{content:""}.mdi-seat-legroom-normal:before{content:""}.mdi-seat-legroom-reduced:before{content:""}.mdi-seat-outline:before{content:""}.mdi-seat-passenger:before{content:""}.mdi-seat-recline-extra:before{content:""}.mdi-seat-recline-normal:before{content:""}.mdi-seatbelt:before{content:""}.mdi-security:before{content:""}.mdi-security-network:before{content:""}.mdi-seed:before{content:""}.mdi-seed-off:before{content:""}.mdi-seed-off-outline:before{content:""}.mdi-seed-outline:before{content:""}.mdi-seed-plus:before{content:""}.mdi-seed-plus-outline:before{content:""}.mdi-seesaw:before{content:""}.mdi-segment:before{content:""}.mdi-select:before{content:""}.mdi-select-all:before{content:""}.mdi-select-arrow-down:before{content:""}.mdi-select-arrow-up:before{content:""}.mdi-select-color:before{content:""}.mdi-select-compare:before{content:""}.mdi-select-drag:before{content:""}.mdi-select-group:before{content:""}.mdi-select-inverse:before{content:""}.mdi-select-marker:before{content:""}.mdi-select-multiple:before{content:""}.mdi-select-multiple-marker:before{content:""}.mdi-select-off:before{content:""}.mdi-select-place:before{content:""}.mdi-select-remove:before{content:""}.mdi-select-search:before{content:""}.mdi-selection:before{content:""}.mdi-selection-drag:before{content:""}.mdi-selection-ellipse:before{content:""}.mdi-selection-ellipse-arrow-inside:before{content:""}.mdi-selection-ellipse-remove:before{content:""}.mdi-selection-marker:before{content:""}.mdi-selection-multiple:before{content:""}.mdi-selection-multiple-marker:before{content:""}.mdi-selection-off:before{content:""}.mdi-selection-remove:before{content:""}.mdi-selection-search:before{content:""}.mdi-semantic-web:before{content:""}.mdi-send:before{content:""}.mdi-send-check:before{content:""}.mdi-send-check-outline:before{content:""}.mdi-send-circle:before{content:""}.mdi-send-circle-outline:before{content:""}.mdi-send-clock:before{content:""}.mdi-send-clock-outline:before{content:""}.mdi-send-lock:before{content:""}.mdi-send-lock-outline:before{content:""}.mdi-send-outline:before{content:""}.mdi-send-variant:before{content:""}.mdi-send-variant-clock:before{content:""}.mdi-send-variant-clock-outline:before{content:""}.mdi-send-variant-outline:before{content:""}.mdi-serial-port:before{content:""}.mdi-server:before{content:""}.mdi-server-minus:before{content:""}.mdi-server-minus-outline:before{content:""}.mdi-server-network:before{content:""}.mdi-server-network-off:before{content:""}.mdi-server-network-outline:before{content:""}.mdi-server-off:before{content:""}.mdi-server-outline:before{content:""}.mdi-server-plus:before{content:""}.mdi-server-plus-outline:before{content:""}.mdi-server-remove:before{content:""}.mdi-server-security:before{content:""}.mdi-set-all:before{content:""}.mdi-set-center:before{content:""}.mdi-set-center-right:before{content:""}.mdi-set-left:before{content:""}.mdi-set-left-center:before{content:""}.mdi-set-left-right:before{content:""}.mdi-set-merge:before{content:""}.mdi-set-none:before{content:""}.mdi-set-right:before{content:""}.mdi-set-split:before{content:""}.mdi-set-square:before{content:""}.mdi-set-top-box:before{content:""}.mdi-settings-helper:before{content:""}.mdi-shaker:before{content:""}.mdi-shaker-outline:before{content:""}.mdi-shape:before{content:""}.mdi-shape-circle-plus:before{content:""}.mdi-shape-outline:before{content:""}.mdi-shape-oval-plus:before{content:""}.mdi-shape-plus:before{content:""}.mdi-shape-plus-outline:before{content:""}.mdi-shape-polygon-plus:before{content:""}.mdi-shape-rectangle-plus:before{content:""}.mdi-shape-square-plus:before{content:""}.mdi-shape-square-rounded-plus:before{content:""}.mdi-share:before{content:""}.mdi-share-all:before{content:""}.mdi-share-all-outline:before{content:""}.mdi-share-circle:before{content:""}.mdi-share-off:before{content:""}.mdi-share-off-outline:before{content:""}.mdi-share-outline:before{content:""}.mdi-share-variant:before{content:""}.mdi-share-variant-outline:before{content:""}.mdi-shark:before{content:""}.mdi-shark-fin:before{content:""}.mdi-shark-fin-outline:before{content:""}.mdi-shark-off:before{content:""}.mdi-sheep:before{content:""}.mdi-shield:before{content:""}.mdi-shield-account:before{content:""}.mdi-shield-account-outline:before{content:""}.mdi-shield-account-variant:before{content:""}.mdi-shield-account-variant-outline:before{content:""}.mdi-shield-airplane:before{content:""}.mdi-shield-airplane-outline:before{content:""}.mdi-shield-alert:before{content:""}.mdi-shield-alert-outline:before{content:""}.mdi-shield-bug:before{content:""}.mdi-shield-bug-outline:before{content:""}.mdi-shield-car:before{content:""}.mdi-shield-check:before{content:""}.mdi-shield-check-outline:before{content:""}.mdi-shield-cross:before{content:""}.mdi-shield-cross-outline:before{content:""}.mdi-shield-crown:before{content:""}.mdi-shield-crown-outline:before{content:""}.mdi-shield-edit:before{content:""}.mdi-shield-edit-outline:before{content:""}.mdi-shield-half:before{content:""}.mdi-shield-half-full:before{content:""}.mdi-shield-home:before{content:""}.mdi-shield-home-outline:before{content:""}.mdi-shield-key:before{content:""}.mdi-shield-key-outline:before{content:""}.mdi-shield-link-variant:before{content:""}.mdi-shield-link-variant-outline:before{content:""}.mdi-shield-lock:before{content:""}.mdi-shield-lock-open:before{content:""}.mdi-shield-lock-open-outline:before{content:""}.mdi-shield-lock-outline:before{content:""}.mdi-shield-moon:before{content:""}.mdi-shield-moon-outline:before{content:""}.mdi-shield-off:before{content:""}.mdi-shield-off-outline:before{content:""}.mdi-shield-outline:before{content:""}.mdi-shield-plus:before{content:""}.mdi-shield-plus-outline:before{content:""}.mdi-shield-refresh:before{content:""}.mdi-shield-refresh-outline:before{content:""}.mdi-shield-remove:before{content:""}.mdi-shield-remove-outline:before{content:""}.mdi-shield-search:before{content:""}.mdi-shield-star:before{content:""}.mdi-shield-star-outline:before{content:""}.mdi-shield-sun:before{content:""}.mdi-shield-sun-outline:before{content:""}.mdi-shield-sword:before{content:""}.mdi-shield-sword-outline:before{content:""}.mdi-shield-sync:before{content:""}.mdi-shield-sync-outline:before{content:""}.mdi-shimmer:before{content:""}.mdi-ship-wheel:before{content:""}.mdi-shipping-pallet:before{content:""}.mdi-shoe-ballet:before{content:""}.mdi-shoe-cleat:before{content:""}.mdi-shoe-formal:before{content:""}.mdi-shoe-heel:before{content:""}.mdi-shoe-print:before{content:""}.mdi-shoe-sneaker:before{content:""}.mdi-shopping:before{content:""}.mdi-shopping-music:before{content:""}.mdi-shopping-outline:before{content:""}.mdi-shopping-search:before{content:""}.mdi-shopping-search-outline:before{content:""}.mdi-shore:before{content:""}.mdi-shovel:before{content:""}.mdi-shovel-off:before{content:""}.mdi-shower:before{content:""}.mdi-shower-head:before{content:""}.mdi-shredder:before{content:""}.mdi-shuffle:before{content:""}.mdi-shuffle-disabled:before{content:""}.mdi-shuffle-variant:before{content:""}.mdi-shuriken:before{content:""}.mdi-sickle:before{content:""}.mdi-sigma:before{content:""}.mdi-sigma-lower:before{content:""}.mdi-sign-caution:before{content:""}.mdi-sign-direction:before{content:""}.mdi-sign-direction-minus:before{content:""}.mdi-sign-direction-plus:before{content:""}.mdi-sign-direction-remove:before{content:""}.mdi-sign-language:before{content:""}.mdi-sign-language-outline:before{content:""}.mdi-sign-pole:before{content:""}.mdi-sign-real-estate:before{content:""}.mdi-sign-text:before{content:""}.mdi-sign-yield:before{content:""}.mdi-signal:before{content:""}.mdi-signal-2g:before{content:""}.mdi-signal-3g:before{content:""}.mdi-signal-4g:before{content:""}.mdi-signal-5g:before{content:""}.mdi-signal-cellular-1:before{content:""}.mdi-signal-cellular-2:before{content:""}.mdi-signal-cellular-3:before{content:""}.mdi-signal-cellular-outline:before{content:""}.mdi-signal-distance-variant:before{content:""}.mdi-signal-hspa:before{content:""}.mdi-signal-hspa-plus:before{content:""}.mdi-signal-off:before{content:""}.mdi-signal-variant:before{content:""}.mdi-signature:before{content:""}.mdi-signature-freehand:before{content:""}.mdi-signature-image:before{content:""}.mdi-signature-text:before{content:""}.mdi-silo:before{content:""}.mdi-silo-outline:before{content:""}.mdi-silverware:before{content:""}.mdi-silverware-clean:before{content:""}.mdi-silverware-fork:before{content:""}.mdi-silverware-fork-knife:before{content:""}.mdi-silverware-spoon:before{content:""}.mdi-silverware-variant:before{content:""}.mdi-sim:before{content:""}.mdi-sim-alert:before{content:""}.mdi-sim-alert-outline:before{content:""}.mdi-sim-off:before{content:""}.mdi-sim-off-outline:before{content:""}.mdi-sim-outline:before{content:""}.mdi-simple-icons:before{content:""}.mdi-sina-weibo:before{content:""}.mdi-sine-wave:before{content:""}.mdi-sitemap:before{content:""}.mdi-sitemap-outline:before{content:""}.mdi-size-l:before{content:""}.mdi-size-m:before{content:""}.mdi-size-s:before{content:""}.mdi-size-xl:before{content:""}.mdi-size-xs:before{content:""}.mdi-size-xxl:before{content:""}.mdi-size-xxs:before{content:""}.mdi-size-xxxl:before{content:""}.mdi-skate:before{content:""}.mdi-skate-off:before{content:""}.mdi-skateboard:before{content:""}.mdi-skateboarding:before{content:""}.mdi-skew-less:before{content:""}.mdi-skew-more:before{content:""}.mdi-ski:before{content:""}.mdi-ski-cross-country:before{content:""}.mdi-ski-water:before{content:""}.mdi-skip-backward:before{content:""}.mdi-skip-backward-outline:before{content:""}.mdi-skip-forward:before{content:""}.mdi-skip-forward-outline:before{content:""}.mdi-skip-next:before{content:""}.mdi-skip-next-circle:before{content:""}.mdi-skip-next-circle-outline:before{content:""}.mdi-skip-next-outline:before{content:""}.mdi-skip-previous:before{content:""}.mdi-skip-previous-circle:before{content:""}.mdi-skip-previous-circle-outline:before{content:""}.mdi-skip-previous-outline:before{content:""}.mdi-skull:before{content:""}.mdi-skull-crossbones:before{content:""}.mdi-skull-crossbones-outline:before{content:""}.mdi-skull-outline:before{content:""}.mdi-skull-scan:before{content:""}.mdi-skull-scan-outline:before{content:""}.mdi-skype:before{content:""}.mdi-skype-business:before{content:""}.mdi-slack:before{content:""}.mdi-slash-forward:before{content:""}.mdi-slash-forward-box:before{content:""}.mdi-sledding:before{content:""}.mdi-sleep:before{content:""}.mdi-sleep-off:before{content:""}.mdi-slide:before{content:""}.mdi-slope-downhill:before{content:""}.mdi-slope-uphill:before{content:""}.mdi-slot-machine:before{content:""}.mdi-slot-machine-outline:before{content:""}.mdi-smart-card:before{content:""}.mdi-smart-card-off:before{content:""}.mdi-smart-card-off-outline:before{content:""}.mdi-smart-card-outline:before{content:""}.mdi-smart-card-reader:before{content:""}.mdi-smart-card-reader-outline:before{content:""}.mdi-smog:before{content:""}.mdi-smoke:before{content:""}.mdi-smoke-detector:before{content:""}.mdi-smoke-detector-alert:before{content:""}.mdi-smoke-detector-alert-outline:before{content:""}.mdi-smoke-detector-off:before{content:""}.mdi-smoke-detector-off-outline:before{content:""}.mdi-smoke-detector-outline:before{content:""}.mdi-smoke-detector-variant:before{content:""}.mdi-smoke-detector-variant-alert:before{content:""}.mdi-smoke-detector-variant-off:before{content:""}.mdi-smoking:before{content:""}.mdi-smoking-off:before{content:""}.mdi-smoking-pipe:before{content:""}.mdi-smoking-pipe-off:before{content:""}.mdi-snail:before{content:""}.mdi-snake:before{content:""}.mdi-snapchat:before{content:""}.mdi-snowboard:before{content:""}.mdi-snowflake:before{content:""}.mdi-snowflake-alert:before{content:""}.mdi-snowflake-check:before{content:""}.mdi-snowflake-melt:before{content:""}.mdi-snowflake-off:before{content:""}.mdi-snowflake-thermometer:before{content:""}.mdi-snowflake-variant:before{content:""}.mdi-snowman:before{content:""}.mdi-snowmobile:before{content:""}.mdi-snowshoeing:before{content:""}.mdi-soccer:before{content:""}.mdi-soccer-field:before{content:""}.mdi-social-distance-2-meters:before{content:""}.mdi-social-distance-6-feet:before{content:""}.mdi-sofa:before{content:""}.mdi-sofa-outline:before{content:""}.mdi-sofa-single:before{content:""}.mdi-sofa-single-outline:before{content:""}.mdi-solar-panel:before{content:""}.mdi-solar-panel-large:before{content:""}.mdi-solar-power:before{content:""}.mdi-solar-power-variant:before{content:""}.mdi-solar-power-variant-outline:before{content:""}.mdi-soldering-iron:before{content:""}.mdi-solid:before{content:""}.mdi-sony-playstation:before{content:""}.mdi-sort:before{content:""}.mdi-sort-alphabetical-ascending:before{content:""}.mdi-sort-alphabetical-ascending-variant:before{content:""}.mdi-sort-alphabetical-descending:before{content:""}.mdi-sort-alphabetical-descending-variant:before{content:""}.mdi-sort-alphabetical-variant:before{content:""}.mdi-sort-ascending:before{content:""}.mdi-sort-bool-ascending:before{content:""}.mdi-sort-bool-ascending-variant:before{content:""}.mdi-sort-bool-descending:before{content:""}.mdi-sort-bool-descending-variant:before{content:""}.mdi-sort-calendar-ascending:before{content:""}.mdi-sort-calendar-descending:before{content:""}.mdi-sort-clock-ascending:before{content:""}.mdi-sort-clock-ascending-outline:before{content:""}.mdi-sort-clock-descending:before{content:""}.mdi-sort-clock-descending-outline:before{content:""}.mdi-sort-descending:before{content:""}.mdi-sort-numeric-ascending:before{content:""}.mdi-sort-numeric-ascending-variant:before{content:""}.mdi-sort-numeric-descending:before{content:""}.mdi-sort-numeric-descending-variant:before{content:""}.mdi-sort-numeric-variant:before{content:""}.mdi-sort-reverse-variant:before{content:""}.mdi-sort-variant:before{content:""}.mdi-sort-variant-lock:before{content:""}.mdi-sort-variant-lock-open:before{content:""}.mdi-sort-variant-off:before{content:""}.mdi-sort-variant-remove:before{content:""}.mdi-soundbar:before{content:""}.mdi-soundcloud:before{content:""}.mdi-source-branch:before{content:""}.mdi-source-branch-check:before{content:""}.mdi-source-branch-minus:before{content:""}.mdi-source-branch-plus:before{content:""}.mdi-source-branch-refresh:before{content:""}.mdi-source-branch-remove:before{content:""}.mdi-source-branch-sync:before{content:""}.mdi-source-commit:before{content:""}.mdi-source-commit-end:before{content:""}.mdi-source-commit-end-local:before{content:""}.mdi-source-commit-local:before{content:""}.mdi-source-commit-next-local:before{content:""}.mdi-source-commit-start:before{content:""}.mdi-source-commit-start-next-local:before{content:""}.mdi-source-fork:before{content:""}.mdi-source-merge:before{content:""}.mdi-source-pull:before{content:""}.mdi-source-repository:before{content:""}.mdi-source-repository-multiple:before{content:""}.mdi-soy-sauce:before{content:""}.mdi-soy-sauce-off:before{content:""}.mdi-spa:before{content:""}.mdi-spa-outline:before{content:""}.mdi-space-invaders:before{content:""}.mdi-space-station:before{content:""}.mdi-spade:before{content:""}.mdi-speaker:before{content:""}.mdi-speaker-bluetooth:before{content:""}.mdi-speaker-message:before{content:""}.mdi-speaker-multiple:before{content:""}.mdi-speaker-off:before{content:""}.mdi-speaker-pause:before{content:""}.mdi-speaker-play:before{content:""}.mdi-speaker-stop:before{content:""}.mdi-speaker-wireless:before{content:""}.mdi-spear:before{content:""}.mdi-speedometer:before{content:""}.mdi-speedometer-medium:before{content:""}.mdi-speedometer-slow:before{content:""}.mdi-spellcheck:before{content:""}.mdi-sphere:before{content:""}.mdi-sphere-off:before{content:""}.mdi-spider:before{content:""}.mdi-spider-outline:before{content:""}.mdi-spider-thread:before{content:""}.mdi-spider-web:before{content:""}.mdi-spirit-level:before{content:""}.mdi-spoon-sugar:before{content:""}.mdi-spotify:before{content:""}.mdi-spotlight:before{content:""}.mdi-spotlight-beam:before{content:""}.mdi-spray:before{content:""}.mdi-spray-bottle:before{content:""}.mdi-sprinkler:before{content:""}.mdi-sprinkler-fire:before{content:""}.mdi-sprinkler-variant:before{content:""}.mdi-sprout:before{content:""}.mdi-sprout-outline:before{content:""}.mdi-square:before{content:""}.mdi-square-circle:before{content:""}.mdi-square-circle-outline:before{content:""}.mdi-square-edit-outline:before{content:""}.mdi-square-medium:before{content:""}.mdi-square-medium-outline:before{content:""}.mdi-square-off:before{content:""}.mdi-square-off-outline:before{content:""}.mdi-square-opacity:before{content:""}.mdi-square-outline:before{content:""}.mdi-square-root:before{content:""}.mdi-square-root-box:before{content:""}.mdi-square-rounded:before{content:""}.mdi-square-rounded-badge:before{content:""}.mdi-square-rounded-badge-outline:before{content:""}.mdi-square-rounded-outline:before{content:""}.mdi-square-small:before{content:""}.mdi-square-wave:before{content:""}.mdi-squeegee:before{content:""}.mdi-ssh:before{content:""}.mdi-stack-exchange:before{content:""}.mdi-stack-overflow:before{content:""}.mdi-stackpath:before{content:""}.mdi-stadium:before{content:""}.mdi-stadium-outline:before{content:""}.mdi-stadium-variant:before{content:""}.mdi-stairs:before{content:""}.mdi-stairs-box:before{content:""}.mdi-stairs-down:before{content:""}.mdi-stairs-up:before{content:""}.mdi-stamper:before{content:""}.mdi-standard-definition:before{content:""}.mdi-star:before{content:""}.mdi-star-box:before{content:""}.mdi-star-box-multiple:before{content:""}.mdi-star-box-multiple-outline:before{content:""}.mdi-star-box-outline:before{content:""}.mdi-star-check:before{content:""}.mdi-star-check-outline:before{content:""}.mdi-star-circle:before{content:""}.mdi-star-circle-outline:before{content:""}.mdi-star-cog:before{content:""}.mdi-star-cog-outline:before{content:""}.mdi-star-crescent:before{content:""}.mdi-star-david:before{content:""}.mdi-star-face:before{content:""}.mdi-star-four-points:before{content:""}.mdi-star-four-points-box:before{content:""}.mdi-star-four-points-box-outline:before{content:""}.mdi-star-four-points-circle:before{content:""}.mdi-star-four-points-circle-outline:before{content:""}.mdi-star-four-points-outline:before{content:""}.mdi-star-four-points-small:before{content:""}.mdi-star-half:before{content:""}.mdi-star-half-full:before{content:""}.mdi-star-minus:before{content:""}.mdi-star-minus-outline:before{content:""}.mdi-star-off:before{content:""}.mdi-star-off-outline:before{content:""}.mdi-star-outline:before{content:""}.mdi-star-plus:before{content:""}.mdi-star-plus-outline:before{content:""}.mdi-star-remove:before{content:""}.mdi-star-remove-outline:before{content:""}.mdi-star-settings:before{content:""}.mdi-star-settings-outline:before{content:""}.mdi-star-shooting:before{content:""}.mdi-star-shooting-outline:before{content:""}.mdi-star-three-points:before{content:""}.mdi-star-three-points-outline:before{content:""}.mdi-state-machine:before{content:""}.mdi-steam:before{content:""}.mdi-steering:before{content:""}.mdi-steering-off:before{content:""}.mdi-step-backward:before{content:""}.mdi-step-backward-2:before{content:""}.mdi-step-forward:before{content:""}.mdi-step-forward-2:before{content:""}.mdi-stethoscope:before{content:""}.mdi-sticker:before{content:""}.mdi-sticker-alert:before{content:""}.mdi-sticker-alert-outline:before{content:""}.mdi-sticker-check:before{content:""}.mdi-sticker-check-outline:before{content:""}.mdi-sticker-circle-outline:before{content:""}.mdi-sticker-emoji:before{content:""}.mdi-sticker-minus:before{content:""}.mdi-sticker-minus-outline:before{content:""}.mdi-sticker-outline:before{content:""}.mdi-sticker-plus:before{content:""}.mdi-sticker-plus-outline:before{content:""}.mdi-sticker-remove:before{content:""}.mdi-sticker-remove-outline:before{content:""}.mdi-sticker-text:before{content:""}.mdi-sticker-text-outline:before{content:""}.mdi-stocking:before{content:""}.mdi-stomach:before{content:""}.mdi-stool:before{content:""}.mdi-stool-outline:before{content:""}.mdi-stop:before{content:""}.mdi-stop-circle:before{content:""}.mdi-stop-circle-outline:before{content:""}.mdi-storage-tank:before{content:""}.mdi-storage-tank-outline:before{content:""}.mdi-store:before{content:""}.mdi-store-24-hour:before{content:""}.mdi-store-alert:before{content:""}.mdi-store-alert-outline:before{content:""}.mdi-store-check:before{content:""}.mdi-store-check-outline:before{content:""}.mdi-store-clock:before{content:""}.mdi-store-clock-outline:before{content:""}.mdi-store-cog:before{content:""}.mdi-store-cog-outline:before{content:""}.mdi-store-edit:before{content:""}.mdi-store-edit-outline:before{content:""}.mdi-store-marker:before{content:""}.mdi-store-marker-outline:before{content:""}.mdi-store-minus:before{content:""}.mdi-store-minus-outline:before{content:""}.mdi-store-off:before{content:""}.mdi-store-off-outline:before{content:""}.mdi-store-outline:before{content:""}.mdi-store-plus:before{content:""}.mdi-store-plus-outline:before{content:""}.mdi-store-remove:before{content:""}.mdi-store-remove-outline:before{content:""}.mdi-store-search:before{content:""}.mdi-store-search-outline:before{content:""}.mdi-store-settings:before{content:""}.mdi-store-settings-outline:before{content:""}.mdi-storefront:before{content:""}.mdi-storefront-check:before{content:""}.mdi-storefront-check-outline:before{content:""}.mdi-storefront-edit:before{content:""}.mdi-storefront-edit-outline:before{content:""}.mdi-storefront-minus:before{content:""}.mdi-storefront-minus-outline:before{content:""}.mdi-storefront-outline:before{content:""}.mdi-storefront-plus:before{content:""}.mdi-storefront-plus-outline:before{content:""}.mdi-storefront-remove:before{content:""}.mdi-storefront-remove-outline:before{content:""}.mdi-stove:before{content:""}.mdi-strategy:before{content:""}.mdi-stretch-to-page:before{content:""}.mdi-stretch-to-page-outline:before{content:""}.mdi-string-lights:before{content:""}.mdi-string-lights-off:before{content:""}.mdi-subdirectory-arrow-left:before{content:""}.mdi-subdirectory-arrow-right:before{content:""}.mdi-submarine:before{content:""}.mdi-subtitles:before{content:""}.mdi-subtitles-outline:before{content:""}.mdi-subway:before{content:""}.mdi-subway-alert-variant:before{content:""}.mdi-subway-variant:before{content:""}.mdi-summit:before{content:""}.mdi-sun-angle:before{content:""}.mdi-sun-angle-outline:before{content:""}.mdi-sun-clock:before{content:""}.mdi-sun-clock-outline:before{content:""}.mdi-sun-compass:before{content:""}.mdi-sun-snowflake:before{content:""}.mdi-sun-snowflake-variant:before{content:""}.mdi-sun-thermometer:before{content:""}.mdi-sun-thermometer-outline:before{content:""}.mdi-sun-wireless:before{content:""}.mdi-sun-wireless-outline:before{content:""}.mdi-sunglasses:before{content:""}.mdi-surfing:before{content:""}.mdi-surround-sound:before{content:""}.mdi-surround-sound-2-0:before{content:""}.mdi-surround-sound-2-1:before{content:""}.mdi-surround-sound-3-1:before{content:""}.mdi-surround-sound-5-1:before{content:""}.mdi-surround-sound-5-1-2:before{content:""}.mdi-surround-sound-7-1:before{content:""}.mdi-svg:before{content:""}.mdi-swap-horizontal:before{content:""}.mdi-swap-horizontal-bold:before{content:""}.mdi-swap-horizontal-circle:before{content:""}.mdi-swap-horizontal-circle-outline:before{content:""}.mdi-swap-horizontal-variant:before{content:""}.mdi-swap-vertical:before{content:""}.mdi-swap-vertical-bold:before{content:""}.mdi-swap-vertical-circle:before{content:""}.mdi-swap-vertical-circle-outline:before{content:""}.mdi-swap-vertical-variant:before{content:""}.mdi-swim:before{content:""}.mdi-switch:before{content:""}.mdi-sword:before{content:""}.mdi-sword-cross:before{content:""}.mdi-syllabary-hangul:before{content:""}.mdi-syllabary-hiragana:before{content:""}.mdi-syllabary-katakana:before{content:""}.mdi-syllabary-katakana-halfwidth:before{content:""}.mdi-symbol:before{content:""}.mdi-symfony:before{content:""}.mdi-synagogue:before{content:""}.mdi-synagogue-outline:before{content:""}.mdi-sync:before{content:""}.mdi-sync-alert:before{content:""}.mdi-sync-circle:before{content:""}.mdi-sync-off:before{content:""}.mdi-tab:before{content:""}.mdi-tab-minus:before{content:""}.mdi-tab-plus:before{content:""}.mdi-tab-remove:before{content:""}.mdi-tab-search:before{content:""}.mdi-tab-unselected:before{content:""}.mdi-table:before{content:""}.mdi-table-account:before{content:""}.mdi-table-alert:before{content:""}.mdi-table-arrow-down:before{content:""}.mdi-table-arrow-left:before{content:""}.mdi-table-arrow-right:before{content:""}.mdi-table-arrow-up:before{content:""}.mdi-table-border:before{content:""}.mdi-table-cancel:before{content:""}.mdi-table-chair:before{content:""}.mdi-table-check:before{content:""}.mdi-table-clock:before{content:""}.mdi-table-cog:before{content:""}.mdi-table-column:before{content:""}.mdi-table-column-plus-after:before{content:""}.mdi-table-column-plus-before:before{content:""}.mdi-table-column-remove:before{content:""}.mdi-table-column-width:before{content:""}.mdi-table-edit:before{content:""}.mdi-table-eye:before{content:""}.mdi-table-eye-off:before{content:""}.mdi-table-filter:before{content:""}.mdi-table-furniture:before{content:""}.mdi-table-headers-eye:before{content:""}.mdi-table-headers-eye-off:before{content:""}.mdi-table-heart:before{content:""}.mdi-table-key:before{content:""}.mdi-table-large:before{content:""}.mdi-table-large-plus:before{content:""}.mdi-table-large-remove:before{content:""}.mdi-table-lock:before{content:""}.mdi-table-merge-cells:before{content:""}.mdi-table-minus:before{content:""}.mdi-table-multiple:before{content:""}.mdi-table-network:before{content:""}.mdi-table-of-contents:before{content:""}.mdi-table-off:before{content:""}.mdi-table-picnic:before{content:""}.mdi-table-pivot:before{content:""}.mdi-table-plus:before{content:""}.mdi-table-question:before{content:""}.mdi-table-refresh:before{content:""}.mdi-table-remove:before{content:""}.mdi-table-row:before{content:""}.mdi-table-row-height:before{content:""}.mdi-table-row-plus-after:before{content:""}.mdi-table-row-plus-before:before{content:""}.mdi-table-row-remove:before{content:""}.mdi-table-search:before{content:""}.mdi-table-settings:before{content:""}.mdi-table-split-cell:before{content:""}.mdi-table-star:before{content:""}.mdi-table-sync:before{content:""}.mdi-table-tennis:before{content:""}.mdi-tablet:before{content:""}.mdi-tablet-cellphone:before{content:""}.mdi-tablet-dashboard:before{content:""}.mdi-taco:before{content:""}.mdi-tag:before{content:""}.mdi-tag-arrow-down:before{content:""}.mdi-tag-arrow-down-outline:before{content:""}.mdi-tag-arrow-left:before{content:""}.mdi-tag-arrow-left-outline:before{content:""}.mdi-tag-arrow-right:before{content:""}.mdi-tag-arrow-right-outline:before{content:""}.mdi-tag-arrow-up:before{content:""}.mdi-tag-arrow-up-outline:before{content:""}.mdi-tag-check:before{content:""}.mdi-tag-check-outline:before{content:""}.mdi-tag-edit:before{content:""}.mdi-tag-edit-outline:before{content:""}.mdi-tag-faces:before{content:""}.mdi-tag-heart:before{content:""}.mdi-tag-heart-outline:before{content:""}.mdi-tag-hidden:before{content:""}.mdi-tag-minus:before{content:""}.mdi-tag-minus-outline:before{content:""}.mdi-tag-multiple:before{content:""}.mdi-tag-multiple-outline:before{content:""}.mdi-tag-off:before{content:""}.mdi-tag-off-outline:before{content:""}.mdi-tag-outline:before{content:""}.mdi-tag-plus:before{content:""}.mdi-tag-plus-outline:before{content:""}.mdi-tag-remove:before{content:""}.mdi-tag-remove-outline:before{content:""}.mdi-tag-search:before{content:""}.mdi-tag-search-outline:before{content:""}.mdi-tag-text:before{content:""}.mdi-tag-text-outline:before{content:""}.mdi-tailwind:before{content:""}.mdi-tally-mark-1:before{content:""}.mdi-tally-mark-2:before{content:""}.mdi-tally-mark-3:before{content:""}.mdi-tally-mark-4:before{content:""}.mdi-tally-mark-5:before{content:""}.mdi-tangram:before{content:""}.mdi-tank:before{content:""}.mdi-tanker-truck:before{content:""}.mdi-tape-drive:before{content:""}.mdi-tape-measure:before{content:""}.mdi-target:before{content:""}.mdi-target-account:before{content:""}.mdi-target-variant:before{content:""}.mdi-taxi:before{content:""}.mdi-tea:before{content:""}.mdi-tea-outline:before{content:""}.mdi-teamviewer:before{content:""}.mdi-teddy-bear:before{content:""}.mdi-telescope:before{content:""}.mdi-television:before{content:""}.mdi-television-ambient-light:before{content:""}.mdi-television-box:before{content:""}.mdi-television-classic:before{content:""}.mdi-television-classic-off:before{content:""}.mdi-television-guide:before{content:""}.mdi-television-off:before{content:""}.mdi-television-pause:before{content:""}.mdi-television-play:before{content:""}.mdi-television-shimmer:before{content:""}.mdi-television-speaker:before{content:""}.mdi-television-speaker-off:before{content:""}.mdi-television-stop:before{content:""}.mdi-temperature-celsius:before{content:""}.mdi-temperature-fahrenheit:before{content:""}.mdi-temperature-kelvin:before{content:""}.mdi-temple-buddhist:before{content:""}.mdi-temple-buddhist-outline:before{content:""}.mdi-temple-hindu:before{content:""}.mdi-temple-hindu-outline:before{content:""}.mdi-tennis:before{content:""}.mdi-tennis-ball:before{content:""}.mdi-tennis-ball-outline:before{content:""}.mdi-tent:before{content:""}.mdi-terraform:before{content:""}.mdi-terrain:before{content:""}.mdi-test-tube:before{content:""}.mdi-test-tube-empty:before{content:""}.mdi-test-tube-off:before{content:""}.mdi-text:before{content:""}.mdi-text-account:before{content:""}.mdi-text-box:before{content:""}.mdi-text-box-check:before{content:""}.mdi-text-box-check-outline:before{content:""}.mdi-text-box-edit:before{content:""}.mdi-text-box-edit-outline:before{content:""}.mdi-text-box-minus:before{content:""}.mdi-text-box-minus-outline:before{content:""}.mdi-text-box-multiple:before{content:""}.mdi-text-box-multiple-outline:before{content:""}.mdi-text-box-outline:before{content:""}.mdi-text-box-plus:before{content:""}.mdi-text-box-plus-outline:before{content:""}.mdi-text-box-remove:before{content:""}.mdi-text-box-remove-outline:before{content:""}.mdi-text-box-search:before{content:""}.mdi-text-box-search-outline:before{content:""}.mdi-text-long:before{content:""}.mdi-text-recognition:before{content:""}.mdi-text-search:before{content:""}.mdi-text-search-variant:before{content:""}.mdi-text-shadow:before{content:""}.mdi-text-short:before{content:""}.mdi-texture:before{content:""}.mdi-texture-box:before{content:""}.mdi-theater:before{content:""}.mdi-theme-light-dark:before{content:""}.mdi-thermometer:before{content:""}.mdi-thermometer-alert:before{content:""}.mdi-thermometer-auto:before{content:""}.mdi-thermometer-bluetooth:before{content:""}.mdi-thermometer-check:before{content:""}.mdi-thermometer-chevron-down:before{content:""}.mdi-thermometer-chevron-up:before{content:""}.mdi-thermometer-high:before{content:""}.mdi-thermometer-lines:before{content:""}.mdi-thermometer-low:before{content:""}.mdi-thermometer-minus:before{content:""}.mdi-thermometer-off:before{content:""}.mdi-thermometer-plus:before{content:""}.mdi-thermometer-probe:before{content:""}.mdi-thermometer-probe-off:before{content:""}.mdi-thermometer-water:before{content:""}.mdi-thermostat:before{content:""}.mdi-thermostat-auto:before{content:""}.mdi-thermostat-box:before{content:""}.mdi-thermostat-box-auto:before{content:""}.mdi-thermostat-cog:before{content:""}.mdi-thought-bubble:before{content:""}.mdi-thought-bubble-outline:before{content:""}.mdi-thumb-down:before{content:""}.mdi-thumb-down-outline:before{content:""}.mdi-thumb-up:before{content:""}.mdi-thumb-up-outline:before{content:""}.mdi-thumbs-up-down:before{content:""}.mdi-thumbs-up-down-outline:before{content:""}.mdi-ticket:before{content:""}.mdi-ticket-account:before{content:""}.mdi-ticket-confirmation:before{content:""}.mdi-ticket-confirmation-outline:before{content:""}.mdi-ticket-outline:before{content:""}.mdi-ticket-percent:before{content:""}.mdi-ticket-percent-outline:before{content:""}.mdi-tie:before{content:""}.mdi-tilde:before{content:""}.mdi-tilde-off:before{content:""}.mdi-timelapse:before{content:""}.mdi-timeline:before{content:""}.mdi-timeline-alert:before{content:""}.mdi-timeline-alert-outline:before{content:""}.mdi-timeline-check:before{content:""}.mdi-timeline-check-outline:before{content:""}.mdi-timeline-clock:before{content:""}.mdi-timeline-clock-outline:before{content:""}.mdi-timeline-minus:before{content:""}.mdi-timeline-minus-outline:before{content:""}.mdi-timeline-outline:before{content:""}.mdi-timeline-plus:before{content:""}.mdi-timeline-plus-outline:before{content:""}.mdi-timeline-question:before{content:""}.mdi-timeline-question-outline:before{content:""}.mdi-timeline-remove:before{content:""}.mdi-timeline-remove-outline:before{content:""}.mdi-timeline-text:before{content:""}.mdi-timeline-text-outline:before{content:""}.mdi-timer:before{content:""}.mdi-timer-10:before{content:""}.mdi-timer-3:before{content:""}.mdi-timer-alert:before{content:""}.mdi-timer-alert-outline:before{content:""}.mdi-timer-cancel:before{content:""}.mdi-timer-cancel-outline:before{content:""}.mdi-timer-check:before{content:""}.mdi-timer-check-outline:before{content:""}.mdi-timer-cog:before{content:""}.mdi-timer-cog-outline:before{content:""}.mdi-timer-edit:before{content:""}.mdi-timer-edit-outline:before{content:""}.mdi-timer-lock:before{content:""}.mdi-timer-lock-open:before{content:""}.mdi-timer-lock-open-outline:before{content:""}.mdi-timer-lock-outline:before{content:""}.mdi-timer-marker:before{content:""}.mdi-timer-marker-outline:before{content:""}.mdi-timer-minus:before{content:""}.mdi-timer-minus-outline:before{content:""}.mdi-timer-music:before{content:""}.mdi-timer-music-outline:before{content:""}.mdi-timer-off:before{content:""}.mdi-timer-off-outline:before{content:""}.mdi-timer-outline:before{content:""}.mdi-timer-pause:before{content:""}.mdi-timer-pause-outline:before{content:""}.mdi-timer-play:before{content:""}.mdi-timer-play-outline:before{content:""}.mdi-timer-plus:before{content:""}.mdi-timer-plus-outline:before{content:""}.mdi-timer-refresh:before{content:""}.mdi-timer-refresh-outline:before{content:""}.mdi-timer-remove:before{content:""}.mdi-timer-remove-outline:before{content:""}.mdi-timer-sand:before{content:""}.mdi-timer-sand-complete:before{content:""}.mdi-timer-sand-empty:before{content:""}.mdi-timer-sand-full:before{content:""}.mdi-timer-sand-paused:before{content:""}.mdi-timer-settings:before{content:""}.mdi-timer-settings-outline:before{content:""}.mdi-timer-star:before{content:""}.mdi-timer-star-outline:before{content:""}.mdi-timer-stop:before{content:""}.mdi-timer-stop-outline:before{content:""}.mdi-timer-sync:before{content:""}.mdi-timer-sync-outline:before{content:""}.mdi-timetable:before{content:""}.mdi-tire:before{content:""}.mdi-toaster:before{content:""}.mdi-toaster-off:before{content:""}.mdi-toaster-oven:before{content:""}.mdi-toggle-switch:before{content:""}.mdi-toggle-switch-off:before{content:""}.mdi-toggle-switch-off-outline:before{content:""}.mdi-toggle-switch-outline:before{content:""}.mdi-toggle-switch-variant:before{content:""}.mdi-toggle-switch-variant-off:before{content:""}.mdi-toilet:before{content:""}.mdi-toolbox:before{content:""}.mdi-toolbox-outline:before{content:""}.mdi-tools:before{content:""}.mdi-tooltip:before{content:""}.mdi-tooltip-account:before{content:""}.mdi-tooltip-cellphone:before{content:""}.mdi-tooltip-check:before{content:""}.mdi-tooltip-check-outline:before{content:""}.mdi-tooltip-edit:before{content:""}.mdi-tooltip-edit-outline:before{content:""}.mdi-tooltip-image:before{content:""}.mdi-tooltip-image-outline:before{content:""}.mdi-tooltip-minus:before{content:""}.mdi-tooltip-minus-outline:before{content:""}.mdi-tooltip-outline:before{content:""}.mdi-tooltip-plus:before{content:""}.mdi-tooltip-plus-outline:before{content:""}.mdi-tooltip-question:before{content:""}.mdi-tooltip-question-outline:before{content:""}.mdi-tooltip-remove:before{content:""}.mdi-tooltip-remove-outline:before{content:""}.mdi-tooltip-text:before{content:""}.mdi-tooltip-text-outline:before{content:""}.mdi-tooth:before{content:""}.mdi-tooth-outline:before{content:""}.mdi-toothbrush:before{content:""}.mdi-toothbrush-electric:before{content:""}.mdi-toothbrush-paste:before{content:""}.mdi-torch:before{content:""}.mdi-tortoise:before{content:""}.mdi-toslink:before{content:""}.mdi-touch-text-outline:before{content:""}.mdi-tournament:before{content:""}.mdi-tow-truck:before{content:""}.mdi-tower-beach:before{content:""}.mdi-tower-fire:before{content:""}.mdi-town-hall:before{content:""}.mdi-toy-brick:before{content:""}.mdi-toy-brick-marker:before{content:""}.mdi-toy-brick-marker-outline:before{content:""}.mdi-toy-brick-minus:before{content:""}.mdi-toy-brick-minus-outline:before{content:""}.mdi-toy-brick-outline:before{content:""}.mdi-toy-brick-plus:before{content:""}.mdi-toy-brick-plus-outline:before{content:""}.mdi-toy-brick-remove:before{content:""}.mdi-toy-brick-remove-outline:before{content:""}.mdi-toy-brick-search:before{content:""}.mdi-toy-brick-search-outline:before{content:""}.mdi-track-light:before{content:""}.mdi-track-light-off:before{content:""}.mdi-trackpad:before{content:""}.mdi-trackpad-lock:before{content:""}.mdi-tractor:before{content:""}.mdi-tractor-variant:before{content:""}.mdi-trademark:before{content:""}.mdi-traffic-cone:before{content:""}.mdi-traffic-light:before{content:""}.mdi-traffic-light-outline:before{content:""}.mdi-train:before{content:""}.mdi-train-bus:before{content:""}.mdi-train-car:before{content:""}.mdi-train-car-autorack:before{content:""}.mdi-train-car-box:before{content:""}.mdi-train-car-box-full:before{content:""}.mdi-train-car-box-open:before{content:""}.mdi-train-car-caboose:before{content:""}.mdi-train-car-centerbeam:before{content:""}.mdi-train-car-centerbeam-full:before{content:""}.mdi-train-car-container:before{content:""}.mdi-train-car-flatbed:before{content:""}.mdi-train-car-flatbed-car:before{content:""}.mdi-train-car-flatbed-tank:before{content:""}.mdi-train-car-gondola:before{content:""}.mdi-train-car-gondola-full:before{content:""}.mdi-train-car-hopper:before{content:""}.mdi-train-car-hopper-covered:before{content:""}.mdi-train-car-hopper-full:before{content:""}.mdi-train-car-intermodal:before{content:""}.mdi-train-car-passenger:before{content:""}.mdi-train-car-passenger-door:before{content:""}.mdi-train-car-passenger-door-open:before{content:""}.mdi-train-car-passenger-variant:before{content:""}.mdi-train-car-tank:before{content:""}.mdi-train-variant:before{content:""}.mdi-tram:before{content:""}.mdi-tram-side:before{content:""}.mdi-transcribe:before{content:""}.mdi-transcribe-close:before{content:""}.mdi-transfer:before{content:""}.mdi-transfer-down:before{content:""}.mdi-transfer-left:before{content:""}.mdi-transfer-right:before{content:""}.mdi-transfer-up:before{content:""}.mdi-transit-connection:before{content:""}.mdi-transit-connection-horizontal:before{content:""}.mdi-transit-connection-variant:before{content:""}.mdi-transit-detour:before{content:""}.mdi-transit-skip:before{content:""}.mdi-transit-transfer:before{content:""}.mdi-transition:before{content:""}.mdi-transition-masked:before{content:""}.mdi-translate:before{content:""}.mdi-translate-off:before{content:""}.mdi-translate-variant:before{content:""}.mdi-transmission-tower:before{content:""}.mdi-transmission-tower-export:before{content:""}.mdi-transmission-tower-import:before{content:""}.mdi-transmission-tower-off:before{content:""}.mdi-trash-can:before{content:""}.mdi-trash-can-outline:before{content:""}.mdi-tray:before{content:""}.mdi-tray-alert:before{content:""}.mdi-tray-arrow-down:before{content:""}.mdi-tray-arrow-up:before{content:""}.mdi-tray-full:before{content:""}.mdi-tray-minus:before{content:""}.mdi-tray-plus:before{content:""}.mdi-tray-remove:before{content:""}.mdi-treasure-chest:before{content:""}.mdi-treasure-chest-outline:before{content:""}.mdi-tree:before{content:""}.mdi-tree-outline:before{content:""}.mdi-trello:before{content:""}.mdi-trending-down:before{content:""}.mdi-trending-neutral:before{content:""}.mdi-trending-up:before{content:""}.mdi-triangle:before{content:""}.mdi-triangle-down:before{content:""}.mdi-triangle-down-outline:before{content:""}.mdi-triangle-outline:before{content:""}.mdi-triangle-small-down:before{content:""}.mdi-triangle-small-up:before{content:""}.mdi-triangle-wave:before{content:""}.mdi-triforce:before{content:""}.mdi-trophy:before{content:""}.mdi-trophy-award:before{content:""}.mdi-trophy-broken:before{content:""}.mdi-trophy-outline:before{content:""}.mdi-trophy-variant:before{content:""}.mdi-trophy-variant-outline:before{content:""}.mdi-truck:before{content:""}.mdi-truck-alert:before{content:""}.mdi-truck-alert-outline:before{content:""}.mdi-truck-cargo-container:before{content:""}.mdi-truck-check:before{content:""}.mdi-truck-check-outline:before{content:""}.mdi-truck-delivery:before{content:""}.mdi-truck-delivery-outline:before{content:""}.mdi-truck-fast:before{content:""}.mdi-truck-fast-outline:before{content:""}.mdi-truck-flatbed:before{content:""}.mdi-truck-minus:before{content:""}.mdi-truck-minus-outline:before{content:""}.mdi-truck-off-road:before{content:""}.mdi-truck-off-road-off:before{content:""}.mdi-truck-outline:before{content:""}.mdi-truck-plus:before{content:""}.mdi-truck-plus-outline:before{content:""}.mdi-truck-remove:before{content:""}.mdi-truck-remove-outline:before{content:""}.mdi-truck-snowflake:before{content:""}.mdi-truck-trailer:before{content:""}.mdi-trumpet:before{content:""}.mdi-tshirt-crew:before{content:""}.mdi-tshirt-crew-outline:before{content:""}.mdi-tshirt-v:before{content:""}.mdi-tshirt-v-outline:before{content:""}.mdi-tsunami:before{content:""}.mdi-tumble-dryer:before{content:""}.mdi-tumble-dryer-alert:before{content:""}.mdi-tumble-dryer-off:before{content:""}.mdi-tune:before{content:""}.mdi-tune-variant:before{content:""}.mdi-tune-vertical:before{content:""}.mdi-tune-vertical-variant:before{content:""}.mdi-tunnel:before{content:""}.mdi-tunnel-outline:before{content:""}.mdi-turbine:before{content:""}.mdi-turkey:before{content:""}.mdi-turnstile:before{content:""}.mdi-turnstile-outline:before{content:""}.mdi-turtle:before{content:""}.mdi-twitch:before{content:""}.mdi-twitter:before{content:""}.mdi-two-factor-authentication:before{content:""}.mdi-typewriter:before{content:""}.mdi-ubisoft:before{content:""}.mdi-ubuntu:before{content:""}.mdi-ufo:before{content:""}.mdi-ufo-outline:before{content:""}.mdi-ultra-high-definition:before{content:""}.mdi-umbraco:before{content:""}.mdi-umbrella:before{content:""}.mdi-umbrella-beach:before{content:""}.mdi-umbrella-beach-outline:before{content:""}.mdi-umbrella-closed:before{content:""}.mdi-umbrella-closed-outline:before{content:""}.mdi-umbrella-closed-variant:before{content:""}.mdi-umbrella-outline:before{content:""}.mdi-undo:before{content:""}.mdi-undo-variant:before{content:""}.mdi-unfold-less-horizontal:before{content:""}.mdi-unfold-less-vertical:before{content:""}.mdi-unfold-more-horizontal:before{content:""}.mdi-unfold-more-vertical:before{content:""}.mdi-ungroup:before{content:""}.mdi-unicode:before{content:""}.mdi-unicorn:before{content:""}.mdi-unicorn-variant:before{content:""}.mdi-unicycle:before{content:""}.mdi-unity:before{content:""}.mdi-unreal:before{content:""}.mdi-update:before{content:""}.mdi-upload:before{content:""}.mdi-upload-lock:before{content:""}.mdi-upload-lock-outline:before{content:""}.mdi-upload-multiple:before{content:""}.mdi-upload-network:before{content:""}.mdi-upload-network-outline:before{content:""}.mdi-upload-off:before{content:""}.mdi-upload-off-outline:before{content:""}.mdi-upload-outline:before{content:""}.mdi-usb:before{content:""}.mdi-usb-c-port:before{content:""}.mdi-usb-flash-drive:before{content:""}.mdi-usb-flash-drive-outline:before{content:""}.mdi-usb-port:before{content:""}.mdi-vacuum:before{content:""}.mdi-vacuum-outline:before{content:""}.mdi-valve:before{content:""}.mdi-valve-closed:before{content:""}.mdi-valve-open:before{content:""}.mdi-van-passenger:before{content:""}.mdi-van-utility:before{content:""}.mdi-vanish:before{content:""}.mdi-vanish-quarter:before{content:""}.mdi-vanity-light:before{content:""}.mdi-variable:before{content:""}.mdi-variable-box:before{content:""}.mdi-vector-arrange-above:before{content:""}.mdi-vector-arrange-below:before{content:""}.mdi-vector-bezier:before{content:""}.mdi-vector-circle:before{content:""}.mdi-vector-circle-variant:before{content:""}.mdi-vector-combine:before{content:""}.mdi-vector-curve:before{content:""}.mdi-vector-difference:before{content:""}.mdi-vector-difference-ab:before{content:""}.mdi-vector-difference-ba:before{content:""}.mdi-vector-ellipse:before{content:""}.mdi-vector-intersection:before{content:""}.mdi-vector-line:before{content:""}.mdi-vector-link:before{content:""}.mdi-vector-point:before{content:""}.mdi-vector-point-edit:before{content:""}.mdi-vector-point-minus:before{content:""}.mdi-vector-point-plus:before{content:""}.mdi-vector-point-select:before{content:""}.mdi-vector-polygon:before{content:""}.mdi-vector-polygon-variant:before{content:""}.mdi-vector-polyline:before{content:""}.mdi-vector-polyline-edit:before{content:""}.mdi-vector-polyline-minus:before{content:""}.mdi-vector-polyline-plus:before{content:""}.mdi-vector-polyline-remove:before{content:""}.mdi-vector-radius:before{content:""}.mdi-vector-rectangle:before{content:""}.mdi-vector-selection:before{content:""}.mdi-vector-square:before{content:""}.mdi-vector-square-close:before{content:""}.mdi-vector-square-edit:before{content:""}.mdi-vector-square-minus:before{content:""}.mdi-vector-square-open:before{content:""}.mdi-vector-square-plus:before{content:""}.mdi-vector-square-remove:before{content:""}.mdi-vector-triangle:before{content:""}.mdi-vector-union:before{content:""}.mdi-vhs:before{content:""}.mdi-vibrate:before{content:""}.mdi-vibrate-off:before{content:""}.mdi-video:before{content:""}.mdi-video-2d:before{content:""}.mdi-video-3d:before{content:""}.mdi-video-3d-off:before{content:""}.mdi-video-3d-variant:before{content:""}.mdi-video-4k-box:before{content:""}.mdi-video-account:before{content:""}.mdi-video-box:before{content:""}.mdi-video-box-off:before{content:""}.mdi-video-check:before{content:""}.mdi-video-check-outline:before{content:""}.mdi-video-high-definition:before{content:""}.mdi-video-image:before{content:""}.mdi-video-input-antenna:before{content:""}.mdi-video-input-component:before{content:""}.mdi-video-input-hdmi:before{content:""}.mdi-video-input-scart:before{content:""}.mdi-video-input-svideo:before{content:""}.mdi-video-marker:before{content:""}.mdi-video-marker-outline:before{content:""}.mdi-video-minus:before{content:""}.mdi-video-minus-outline:before{content:""}.mdi-video-off:before{content:""}.mdi-video-off-outline:before{content:""}.mdi-video-outline:before{content:""}.mdi-video-plus:before{content:""}.mdi-video-plus-outline:before{content:""}.mdi-video-stabilization:before{content:""}.mdi-video-standard-definition:before{content:""}.mdi-video-switch:before{content:""}.mdi-video-switch-outline:before{content:""}.mdi-video-vintage:before{content:""}.mdi-video-wireless:before{content:""}.mdi-video-wireless-outline:before{content:""}.mdi-view-agenda:before{content:""}.mdi-view-agenda-outline:before{content:""}.mdi-view-array:before{content:""}.mdi-view-array-outline:before{content:""}.mdi-view-carousel:before{content:""}.mdi-view-carousel-outline:before{content:""}.mdi-view-column:before{content:""}.mdi-view-column-outline:before{content:""}.mdi-view-comfy:before{content:""}.mdi-view-comfy-outline:before{content:""}.mdi-view-compact:before{content:""}.mdi-view-compact-outline:before{content:""}.mdi-view-dashboard:before{content:""}.mdi-view-dashboard-edit:before{content:""}.mdi-view-dashboard-edit-outline:before{content:""}.mdi-view-dashboard-outline:before{content:""}.mdi-view-dashboard-variant:before{content:""}.mdi-view-dashboard-variant-outline:before{content:""}.mdi-view-day:before{content:""}.mdi-view-day-outline:before{content:""}.mdi-view-gallery:before{content:""}.mdi-view-gallery-outline:before{content:""}.mdi-view-grid:before{content:""}.mdi-view-grid-compact:before{content:""}.mdi-view-grid-outline:before{content:""}.mdi-view-grid-plus:before{content:""}.mdi-view-grid-plus-outline:before{content:""}.mdi-view-headline:before{content:""}.mdi-view-list:before{content:""}.mdi-view-list-outline:before{content:""}.mdi-view-module:before{content:""}.mdi-view-module-outline:before{content:""}.mdi-view-parallel:before{content:""}.mdi-view-parallel-outline:before{content:""}.mdi-view-quilt:before{content:""}.mdi-view-quilt-outline:before{content:""}.mdi-view-sequential:before{content:""}.mdi-view-sequential-outline:before{content:""}.mdi-view-split-horizontal:before{content:""}.mdi-view-split-vertical:before{content:""}.mdi-view-stream:before{content:""}.mdi-view-stream-outline:before{content:""}.mdi-view-week:before{content:""}.mdi-view-week-outline:before{content:""}.mdi-vimeo:before{content:""}.mdi-violin:before{content:""}.mdi-virtual-reality:before{content:""}.mdi-virus:before{content:""}.mdi-virus-off:before{content:""}.mdi-virus-off-outline:before{content:""}.mdi-virus-outline:before{content:""}.mdi-vlc:before{content:""}.mdi-voicemail:before{content:""}.mdi-volcano:before{content:""}.mdi-volcano-outline:before{content:""}.mdi-volleyball:before{content:""}.mdi-volume-equal:before{content:""}.mdi-volume-high:before{content:""}.mdi-volume-low:before{content:""}.mdi-volume-medium:before{content:""}.mdi-volume-minus:before{content:""}.mdi-volume-mute:before{content:""}.mdi-volume-off:before{content:""}.mdi-volume-plus:before{content:""}.mdi-volume-source:before{content:""}.mdi-volume-variant-off:before{content:""}.mdi-volume-vibrate:before{content:""}.mdi-vote:before{content:""}.mdi-vote-outline:before{content:""}.mdi-vpn:before{content:""}.mdi-vuejs:before{content:""}.mdi-vuetify:before{content:""}.mdi-walk:before{content:""}.mdi-wall:before{content:""}.mdi-wall-fire:before{content:""}.mdi-wall-sconce:before{content:""}.mdi-wall-sconce-flat:before{content:""}.mdi-wall-sconce-flat-outline:before{content:""}.mdi-wall-sconce-flat-variant:before{content:""}.mdi-wall-sconce-flat-variant-outline:before{content:""}.mdi-wall-sconce-outline:before{content:""}.mdi-wall-sconce-round:before{content:""}.mdi-wall-sconce-round-outline:before{content:""}.mdi-wall-sconce-round-variant:before{content:""}.mdi-wall-sconce-round-variant-outline:before{content:""}.mdi-wallet:before{content:""}.mdi-wallet-bifold:before{content:""}.mdi-wallet-bifold-outline:before{content:""}.mdi-wallet-giftcard:before{content:""}.mdi-wallet-membership:before{content:""}.mdi-wallet-outline:before{content:""}.mdi-wallet-plus:before{content:""}.mdi-wallet-plus-outline:before{content:""}.mdi-wallet-travel:before{content:""}.mdi-wallpaper:before{content:""}.mdi-wan:before{content:""}.mdi-wardrobe:before{content:""}.mdi-wardrobe-outline:before{content:""}.mdi-warehouse:before{content:""}.mdi-washing-machine:before{content:""}.mdi-washing-machine-alert:before{content:""}.mdi-washing-machine-off:before{content:""}.mdi-watch:before{content:""}.mdi-watch-export:before{content:""}.mdi-watch-export-variant:before{content:""}.mdi-watch-import:before{content:""}.mdi-watch-import-variant:before{content:""}.mdi-watch-variant:before{content:""}.mdi-watch-vibrate:before{content:""}.mdi-watch-vibrate-off:before{content:""}.mdi-water:before{content:""}.mdi-water-alert:before{content:""}.mdi-water-alert-outline:before{content:""}.mdi-water-boiler:before{content:""}.mdi-water-boiler-alert:before{content:""}.mdi-water-boiler-auto:before{content:""}.mdi-water-boiler-off:before{content:""}.mdi-water-check:before{content:""}.mdi-water-check-outline:before{content:""}.mdi-water-circle:before{content:""}.mdi-water-minus:before{content:""}.mdi-water-minus-outline:before{content:""}.mdi-water-off:before{content:""}.mdi-water-off-outline:before{content:""}.mdi-water-opacity:before{content:""}.mdi-water-outline:before{content:""}.mdi-water-percent:before{content:""}.mdi-water-percent-alert:before{content:""}.mdi-water-plus:before{content:""}.mdi-water-plus-outline:before{content:""}.mdi-water-polo:before{content:""}.mdi-water-pump:before{content:""}.mdi-water-pump-off:before{content:""}.mdi-water-remove:before{content:""}.mdi-water-remove-outline:before{content:""}.mdi-water-sync:before{content:""}.mdi-water-thermometer:before{content:""}.mdi-water-thermometer-outline:before{content:""}.mdi-water-well:before{content:""}.mdi-water-well-outline:before{content:""}.mdi-waterfall:before{content:""}.mdi-watering-can:before{content:""}.mdi-watering-can-outline:before{content:""}.mdi-watermark:before{content:""}.mdi-wave:before{content:""}.mdi-wave-arrow-down:before{content:""}.mdi-wave-arrow-up:before{content:""}.mdi-wave-undercurrent:before{content:""}.mdi-waveform:before{content:""}.mdi-waves:before{content:""}.mdi-waves-arrow-left:before{content:""}.mdi-waves-arrow-right:before{content:""}.mdi-waves-arrow-up:before{content:""}.mdi-waze:before{content:""}.mdi-weather-cloudy:before{content:""}.mdi-weather-cloudy-alert:before{content:""}.mdi-weather-cloudy-arrow-right:before{content:""}.mdi-weather-cloudy-clock:before{content:""}.mdi-weather-dust:before{content:""}.mdi-weather-fog:before{content:""}.mdi-weather-hail:before{content:""}.mdi-weather-hazy:before{content:""}.mdi-weather-hurricane:before{content:""}.mdi-weather-hurricane-outline:before{content:""}.mdi-weather-lightning:before{content:""}.mdi-weather-lightning-rainy:before{content:""}.mdi-weather-night:before{content:""}.mdi-weather-night-partly-cloudy:before{content:""}.mdi-weather-partly-cloudy:before{content:""}.mdi-weather-partly-lightning:before{content:""}.mdi-weather-partly-rainy:before{content:""}.mdi-weather-partly-snowy:before{content:""}.mdi-weather-partly-snowy-rainy:before{content:""}.mdi-weather-pouring:before{content:""}.mdi-weather-rainy:before{content:""}.mdi-weather-snowy:before{content:""}.mdi-weather-snowy-heavy:before{content:""}.mdi-weather-snowy-rainy:before{content:""}.mdi-weather-sunny:before{content:""}.mdi-weather-sunny-alert:before{content:""}.mdi-weather-sunny-off:before{content:""}.mdi-weather-sunset:before{content:""}.mdi-weather-sunset-down:before{content:""}.mdi-weather-sunset-up:before{content:""}.mdi-weather-tornado:before{content:""}.mdi-weather-windy:before{content:""}.mdi-weather-windy-variant:before{content:""}.mdi-web:before{content:""}.mdi-web-box:before{content:""}.mdi-web-cancel:before{content:""}.mdi-web-check:before{content:""}.mdi-web-clock:before{content:""}.mdi-web-minus:before{content:""}.mdi-web-off:before{content:""}.mdi-web-plus:before{content:""}.mdi-web-refresh:before{content:""}.mdi-web-remove:before{content:""}.mdi-web-sync:before{content:""}.mdi-webcam:before{content:""}.mdi-webcam-off:before{content:""}.mdi-webhook:before{content:""}.mdi-webpack:before{content:""}.mdi-webrtc:before{content:""}.mdi-wechat:before{content:""}.mdi-weight:before{content:""}.mdi-weight-gram:before{content:""}.mdi-weight-kilogram:before{content:""}.mdi-weight-lifter:before{content:""}.mdi-weight-pound:before{content:""}.mdi-whatsapp:before{content:""}.mdi-wheel-barrow:before{content:""}.mdi-wheelchair:before{content:""}.mdi-wheelchair-accessibility:before{content:""}.mdi-whistle:before{content:""}.mdi-whistle-outline:before{content:""}.mdi-white-balance-auto:before{content:""}.mdi-white-balance-incandescent:before{content:""}.mdi-white-balance-iridescent:before{content:""}.mdi-white-balance-sunny:before{content:""}.mdi-widgets:before{content:""}.mdi-widgets-outline:before{content:""}.mdi-wifi:before{content:""}.mdi-wifi-alert:before{content:""}.mdi-wifi-arrow-down:before{content:""}.mdi-wifi-arrow-left:before{content:""}.mdi-wifi-arrow-left-right:before{content:""}.mdi-wifi-arrow-right:before{content:""}.mdi-wifi-arrow-up:before{content:""}.mdi-wifi-arrow-up-down:before{content:""}.mdi-wifi-cancel:before{content:""}.mdi-wifi-check:before{content:""}.mdi-wifi-cog:before{content:""}.mdi-wifi-lock:before{content:""}.mdi-wifi-lock-open:before{content:""}.mdi-wifi-marker:before{content:""}.mdi-wifi-minus:before{content:""}.mdi-wifi-off:before{content:""}.mdi-wifi-plus:before{content:""}.mdi-wifi-refresh:before{content:""}.mdi-wifi-remove:before{content:""}.mdi-wifi-settings:before{content:""}.mdi-wifi-star:before{content:""}.mdi-wifi-strength-1:before{content:""}.mdi-wifi-strength-1-alert:before{content:""}.mdi-wifi-strength-1-lock:before{content:""}.mdi-wifi-strength-1-lock-open:before{content:""}.mdi-wifi-strength-2:before{content:""}.mdi-wifi-strength-2-alert:before{content:""}.mdi-wifi-strength-2-lock:before{content:""}.mdi-wifi-strength-2-lock-open:before{content:""}.mdi-wifi-strength-3:before{content:""}.mdi-wifi-strength-3-alert:before{content:""}.mdi-wifi-strength-3-lock:before{content:""}.mdi-wifi-strength-3-lock-open:before{content:""}.mdi-wifi-strength-4:before{content:""}.mdi-wifi-strength-4-alert:before{content:""}.mdi-wifi-strength-4-lock:before{content:""}.mdi-wifi-strength-4-lock-open:before{content:""}.mdi-wifi-strength-alert-outline:before{content:""}.mdi-wifi-strength-lock-open-outline:before{content:""}.mdi-wifi-strength-lock-outline:before{content:""}.mdi-wifi-strength-off:before{content:""}.mdi-wifi-strength-off-outline:before{content:""}.mdi-wifi-strength-outline:before{content:""}.mdi-wifi-sync:before{content:""}.mdi-wikipedia:before{content:""}.mdi-wind-power:before{content:""}.mdi-wind-power-outline:before{content:""}.mdi-wind-turbine:before{content:""}.mdi-wind-turbine-alert:before{content:""}.mdi-wind-turbine-check:before{content:""}.mdi-window-close:before{content:""}.mdi-window-closed:before{content:""}.mdi-window-closed-variant:before{content:""}.mdi-window-maximize:before{content:""}.mdi-window-minimize:before{content:""}.mdi-window-open:before{content:""}.mdi-window-open-variant:before{content:""}.mdi-window-restore:before{content:""}.mdi-window-shutter:before{content:""}.mdi-window-shutter-alert:before{content:""}.mdi-window-shutter-auto:before{content:""}.mdi-window-shutter-cog:before{content:""}.mdi-window-shutter-open:before{content:""}.mdi-window-shutter-settings:before{content:""}.mdi-windsock:before{content:""}.mdi-wiper:before{content:""}.mdi-wiper-wash:before{content:""}.mdi-wiper-wash-alert:before{content:""}.mdi-wizard-hat:before{content:""}.mdi-wordpress:before{content:""}.mdi-wrap:before{content:""}.mdi-wrap-disabled:before{content:""}.mdi-wrench:before{content:""}.mdi-wrench-check:before{content:""}.mdi-wrench-check-outline:before{content:""}.mdi-wrench-clock:before{content:""}.mdi-wrench-clock-outline:before{content:""}.mdi-wrench-cog:before{content:""}.mdi-wrench-cog-outline:before{content:""}.mdi-wrench-outline:before{content:""}.mdi-xamarin:before{content:""}.mdi-xml:before{content:""}.mdi-xmpp:before{content:""}.mdi-yahoo:before{content:""}.mdi-yeast:before{content:""}.mdi-yin-yang:before{content:""}.mdi-yoga:before{content:""}.mdi-youtube:before{content:""}.mdi-youtube-gaming:before{content:""}.mdi-youtube-studio:before{content:""}.mdi-youtube-subscription:before{content:""}.mdi-youtube-tv:before{content:""}.mdi-yurt:before{content:""}.mdi-z-wave:before{content:""}.mdi-zend:before{content:""}.mdi-zigbee:before{content:""}.mdi-zip-box:before{content:""}.mdi-zip-box-outline:before{content:""}.mdi-zip-disk:before{content:""}.mdi-zodiac-aquarius:before{content:""}.mdi-zodiac-aries:before{content:""}.mdi-zodiac-cancer:before{content:""}.mdi-zodiac-capricorn:before{content:""}.mdi-zodiac-gemini:before{content:""}.mdi-zodiac-leo:before{content:""}.mdi-zodiac-libra:before{content:""}.mdi-zodiac-pisces:before{content:""}.mdi-zodiac-sagittarius:before{content:""}.mdi-zodiac-scorpio:before{content:""}.mdi-zodiac-taurus:before{content:""}.mdi-zodiac-virgo:before{content:""}.mdi-blank:before{content:"";visibility:hidden}.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}.mdi-dark:before{color:#0000008a}.mdi-dark.mdi-inactive:before{color:#00000042}.mdi-light:before{color:#fff}.mdi-light.mdi-inactive:before{color:#ffffff4d}.mdi-rotate-45:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mdi-rotate-90:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.mdi-rotate-135:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.mdi-rotate-180:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.mdi-rotate-225:before{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.mdi-rotate-270:before{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.mdi-rotate-315:before{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.mdi-flip-h:before{-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}.mdi-flip-v:before{-webkit-transform:scaleY(-1);transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.mdi-spin:before{-webkit-animation:mdi-spin 2s infinite linear;animation:mdi-spin 2s infinite linear}@-webkit-keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}html,body{font-family:Pathway Extreme,sans-serif}h1,h2,h3,h4,h5,p{margin:0}ul{list-style-position:inside}.zt-menu{border:1px solid rgba(var(--v-theme-bluegrey))}.zt-menu .v-list-item__prepend{margin-right:12px}.v-container{max-width:1250px}.code-output{white-space:pre-wrap}.v-expansion-panel--active>.v-expansion-panel-title{min-height:31px}.add-cell-item:hover{background-color:rgba(var(--v-theme-bluegrey))}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@keyframes v-shake{59%{margin-left:0}60%,80%{margin-left:2px}70%,90%{margin-left:-2px}}.bg-black{background-color:#000!important}.bg-black{color:#fff!important}.bg-white{background-color:#fff!important}.bg-white{color:#000!important}.bg-transparent{background-color:transparent!important}.bg-transparent{color:currentColor!important}.bg-red{background-color:#f44336!important}.bg-red{color:#fff!important}.bg-red-lighten-5{background-color:#ffebee!important}.bg-red-lighten-5{color:#000!important}.bg-red-lighten-4{background-color:#ffcdd2!important}.bg-red-lighten-4{color:#000!important}.bg-red-lighten-3{background-color:#ef9a9a!important}.bg-red-lighten-3{color:#000!important}.bg-red-lighten-2{background-color:#e57373!important}.bg-red-lighten-2{color:#fff!important}.bg-red-lighten-1{background-color:#ef5350!important}.bg-red-lighten-1{color:#fff!important}.bg-red-darken-1{background-color:#e53935!important}.bg-red-darken-1{color:#fff!important}.bg-red-darken-2{background-color:#d32f2f!important}.bg-red-darken-2{color:#fff!important}.bg-red-darken-3{background-color:#c62828!important}.bg-red-darken-3{color:#fff!important}.bg-red-darken-4{background-color:#b71c1c!important}.bg-red-darken-4{color:#fff!important}.bg-red-accent-1{background-color:#ff8a80!important}.bg-red-accent-1{color:#000!important}.bg-red-accent-2{background-color:#ff5252!important}.bg-red-accent-2{color:#fff!important}.bg-red-accent-3{background-color:#ff1744!important}.bg-red-accent-3{color:#fff!important}.bg-red-accent-4{background-color:#d50000!important}.bg-red-accent-4{color:#fff!important}.bg-pink{background-color:#e91e63!important}.bg-pink{color:#fff!important}.bg-pink-lighten-5{background-color:#fce4ec!important}.bg-pink-lighten-5{color:#000!important}.bg-pink-lighten-4{background-color:#f8bbd0!important}.bg-pink-lighten-4{color:#000!important}.bg-pink-lighten-3{background-color:#f48fb1!important}.bg-pink-lighten-3{color:#000!important}.bg-pink-lighten-2{background-color:#f06292!important}.bg-pink-lighten-2{color:#fff!important}.bg-pink-lighten-1{background-color:#ec407a!important}.bg-pink-lighten-1{color:#fff!important}.bg-pink-darken-1{background-color:#d81b60!important}.bg-pink-darken-1{color:#fff!important}.bg-pink-darken-2{background-color:#c2185b!important}.bg-pink-darken-2{color:#fff!important}.bg-pink-darken-3{background-color:#ad1457!important}.bg-pink-darken-3{color:#fff!important}.bg-pink-darken-4{background-color:#880e4f!important}.bg-pink-darken-4{color:#fff!important}.bg-pink-accent-1{background-color:#ff80ab!important}.bg-pink-accent-1{color:#fff!important}.bg-pink-accent-2{background-color:#ff4081!important}.bg-pink-accent-2{color:#fff!important}.bg-pink-accent-3{background-color:#f50057!important}.bg-pink-accent-3{color:#fff!important}.bg-pink-accent-4{background-color:#c51162!important}.bg-pink-accent-4{color:#fff!important}.bg-purple{background-color:#9c27b0!important}.bg-purple{color:#fff!important}.bg-purple-lighten-5{background-color:#f3e5f5!important}.bg-purple-lighten-5{color:#000!important}.bg-purple-lighten-4{background-color:#e1bee7!important}.bg-purple-lighten-4{color:#000!important}.bg-purple-lighten-3{background-color:#ce93d8!important}.bg-purple-lighten-3{color:#fff!important}.bg-purple-lighten-2{background-color:#ba68c8!important}.bg-purple-lighten-2{color:#fff!important}.bg-purple-lighten-1{background-color:#ab47bc!important}.bg-purple-lighten-1{color:#fff!important}.bg-purple-darken-1{background-color:#8e24aa!important}.bg-purple-darken-1{color:#fff!important}.bg-purple-darken-2{background-color:#7b1fa2!important}.bg-purple-darken-2{color:#fff!important}.bg-purple-darken-3{background-color:#6a1b9a!important}.bg-purple-darken-3{color:#fff!important}.bg-purple-darken-4{background-color:#4a148c!important}.bg-purple-darken-4{color:#fff!important}.bg-purple-accent-1{background-color:#ea80fc!important}.bg-purple-accent-1{color:#fff!important}.bg-purple-accent-2{background-color:#e040fb!important}.bg-purple-accent-2{color:#fff!important}.bg-purple-accent-3{background-color:#d500f9!important}.bg-purple-accent-3{color:#fff!important}.bg-purple-accent-4{background-color:#a0f!important}.bg-purple-accent-4{color:#fff!important}.bg-deep-purple{background-color:#673ab7!important}.bg-deep-purple{color:#fff!important}.bg-deep-purple-lighten-5{background-color:#ede7f6!important}.bg-deep-purple-lighten-5{color:#000!important}.bg-deep-purple-lighten-4{background-color:#d1c4e9!important}.bg-deep-purple-lighten-4{color:#000!important}.bg-deep-purple-lighten-3{background-color:#b39ddb!important}.bg-deep-purple-lighten-3{color:#fff!important}.bg-deep-purple-lighten-2{background-color:#9575cd!important}.bg-deep-purple-lighten-2{color:#fff!important}.bg-deep-purple-lighten-1{background-color:#7e57c2!important}.bg-deep-purple-lighten-1{color:#fff!important}.bg-deep-purple-darken-1{background-color:#5e35b1!important}.bg-deep-purple-darken-1{color:#fff!important}.bg-deep-purple-darken-2{background-color:#512da8!important}.bg-deep-purple-darken-2{color:#fff!important}.bg-deep-purple-darken-3{background-color:#4527a0!important}.bg-deep-purple-darken-3{color:#fff!important}.bg-deep-purple-darken-4{background-color:#311b92!important}.bg-deep-purple-darken-4{color:#fff!important}.bg-deep-purple-accent-1{background-color:#b388ff!important}.bg-deep-purple-accent-1{color:#fff!important}.bg-deep-purple-accent-2{background-color:#7c4dff!important}.bg-deep-purple-accent-2{color:#fff!important}.bg-deep-purple-accent-3{background-color:#651fff!important}.bg-deep-purple-accent-3{color:#fff!important}.bg-deep-purple-accent-4{background-color:#6200ea!important}.bg-deep-purple-accent-4{color:#fff!important}.bg-indigo{background-color:#3f51b5!important}.bg-indigo{color:#fff!important}.bg-indigo-lighten-5{background-color:#e8eaf6!important}.bg-indigo-lighten-5{color:#000!important}.bg-indigo-lighten-4{background-color:#c5cae9!important}.bg-indigo-lighten-4{color:#000!important}.bg-indigo-lighten-3{background-color:#9fa8da!important}.bg-indigo-lighten-3{color:#fff!important}.bg-indigo-lighten-2{background-color:#7986cb!important}.bg-indigo-lighten-2{color:#fff!important}.bg-indigo-lighten-1{background-color:#5c6bc0!important}.bg-indigo-lighten-1{color:#fff!important}.bg-indigo-darken-1{background-color:#3949ab!important}.bg-indigo-darken-1{color:#fff!important}.bg-indigo-darken-2{background-color:#303f9f!important}.bg-indigo-darken-2{color:#fff!important}.bg-indigo-darken-3{background-color:#283593!important}.bg-indigo-darken-3{color:#fff!important}.bg-indigo-darken-4{background-color:#1a237e!important}.bg-indigo-darken-4{color:#fff!important}.bg-indigo-accent-1{background-color:#8c9eff!important}.bg-indigo-accent-1{color:#fff!important}.bg-indigo-accent-2{background-color:#536dfe!important}.bg-indigo-accent-2{color:#fff!important}.bg-indigo-accent-3{background-color:#3d5afe!important}.bg-indigo-accent-3{color:#fff!important}.bg-indigo-accent-4{background-color:#304ffe!important}.bg-indigo-accent-4{color:#fff!important}.bg-blue{background-color:#2196f3!important}.bg-blue{color:#fff!important}.bg-blue-lighten-5{background-color:#e3f2fd!important}.bg-blue-lighten-5{color:#000!important}.bg-blue-lighten-4{background-color:#bbdefb!important}.bg-blue-lighten-4{color:#000!important}.bg-blue-lighten-3{background-color:#90caf9!important}.bg-blue-lighten-3{color:#000!important}.bg-blue-lighten-2{background-color:#64b5f6!important}.bg-blue-lighten-2{color:#000!important}.bg-blue-lighten-1{background-color:#42a5f5!important}.bg-blue-lighten-1{color:#fff!important}.bg-blue-darken-1{background-color:#1e88e5!important}.bg-blue-darken-1{color:#fff!important}.bg-blue-darken-2{background-color:#1976d2!important}.bg-blue-darken-2{color:#fff!important}.bg-blue-darken-3{background-color:#1565c0!important}.bg-blue-darken-3{color:#fff!important}.bg-blue-darken-4{background-color:#0d47a1!important}.bg-blue-darken-4{color:#fff!important}.bg-blue-accent-1{background-color:#82b1ff!important}.bg-blue-accent-1{color:#000!important}.bg-blue-accent-2{background-color:#448aff!important}.bg-blue-accent-2{color:#fff!important}.bg-blue-accent-3{background-color:#2979ff!important}.bg-blue-accent-3{color:#fff!important}.bg-blue-accent-4{background-color:#2962ff!important}.bg-blue-accent-4{color:#fff!important}.bg-light-blue{background-color:#03a9f4!important}.bg-light-blue{color:#fff!important}.bg-light-blue-lighten-5{background-color:#e1f5fe!important}.bg-light-blue-lighten-5{color:#000!important}.bg-light-blue-lighten-4{background-color:#b3e5fc!important}.bg-light-blue-lighten-4{color:#000!important}.bg-light-blue-lighten-3{background-color:#81d4fa!important}.bg-light-blue-lighten-3{color:#000!important}.bg-light-blue-lighten-2{background-color:#4fc3f7!important}.bg-light-blue-lighten-2{color:#000!important}.bg-light-blue-lighten-1{background-color:#29b6f6!important}.bg-light-blue-lighten-1{color:#000!important}.bg-light-blue-darken-1{background-color:#039be5!important}.bg-light-blue-darken-1{color:#fff!important}.bg-light-blue-darken-2{background-color:#0288d1!important}.bg-light-blue-darken-2{color:#fff!important}.bg-light-blue-darken-3{background-color:#0277bd!important}.bg-light-blue-darken-3{color:#fff!important}.bg-light-blue-darken-4{background-color:#01579b!important}.bg-light-blue-darken-4{color:#fff!important}.bg-light-blue-accent-1{background-color:#80d8ff!important}.bg-light-blue-accent-1{color:#000!important}.bg-light-blue-accent-2{background-color:#40c4ff!important}.bg-light-blue-accent-2{color:#000!important}.bg-light-blue-accent-3{background-color:#00b0ff!important}.bg-light-blue-accent-3{color:#fff!important}.bg-light-blue-accent-4{background-color:#0091ea!important}.bg-light-blue-accent-4{color:#fff!important}.bg-cyan{background-color:#00bcd4!important}.bg-cyan{color:#000!important}.bg-cyan-lighten-5{background-color:#e0f7fa!important}.bg-cyan-lighten-5{color:#000!important}.bg-cyan-lighten-4{background-color:#b2ebf2!important}.bg-cyan-lighten-4{color:#000!important}.bg-cyan-lighten-3{background-color:#80deea!important}.bg-cyan-lighten-3{color:#000!important}.bg-cyan-lighten-2{background-color:#4dd0e1!important}.bg-cyan-lighten-2{color:#000!important}.bg-cyan-lighten-1{background-color:#26c6da!important}.bg-cyan-lighten-1{color:#000!important}.bg-cyan-darken-1{background-color:#00acc1!important}.bg-cyan-darken-1{color:#fff!important}.bg-cyan-darken-2{background-color:#0097a7!important}.bg-cyan-darken-2{color:#fff!important}.bg-cyan-darken-3{background-color:#00838f!important}.bg-cyan-darken-3{color:#fff!important}.bg-cyan-darken-4{background-color:#006064!important}.bg-cyan-darken-4{color:#fff!important}.bg-cyan-accent-1{background-color:#84ffff!important}.bg-cyan-accent-1{color:#000!important}.bg-cyan-accent-2{background-color:#18ffff!important}.bg-cyan-accent-2{color:#000!important}.bg-cyan-accent-3{background-color:#00e5ff!important}.bg-cyan-accent-3{color:#000!important}.bg-cyan-accent-4{background-color:#00b8d4!important}.bg-cyan-accent-4{color:#fff!important}.bg-teal{background-color:#009688!important}.bg-teal{color:#fff!important}.bg-teal-lighten-5{background-color:#e0f2f1!important}.bg-teal-lighten-5{color:#000!important}.bg-teal-lighten-4{background-color:#b2dfdb!important}.bg-teal-lighten-4{color:#000!important}.bg-teal-lighten-3{background-color:#80cbc4!important}.bg-teal-lighten-3{color:#000!important}.bg-teal-lighten-2{background-color:#4db6ac!important}.bg-teal-lighten-2{color:#fff!important}.bg-teal-lighten-1{background-color:#26a69a!important}.bg-teal-lighten-1{color:#fff!important}.bg-teal-darken-1{background-color:#00897b!important}.bg-teal-darken-1{color:#fff!important}.bg-teal-darken-2{background-color:#00796b!important}.bg-teal-darken-2{color:#fff!important}.bg-teal-darken-3{background-color:#00695c!important}.bg-teal-darken-3{color:#fff!important}.bg-teal-darken-4{background-color:#004d40!important}.bg-teal-darken-4{color:#fff!important}.bg-teal-accent-1{background-color:#a7ffeb!important}.bg-teal-accent-1{color:#000!important}.bg-teal-accent-2{background-color:#64ffda!important}.bg-teal-accent-2{color:#000!important}.bg-teal-accent-3{background-color:#1de9b6!important}.bg-teal-accent-3{color:#000!important}.bg-teal-accent-4{background-color:#00bfa5!important}.bg-teal-accent-4{color:#fff!important}.bg-green{background-color:#4caf50!important}.bg-green{color:#fff!important}.bg-green-lighten-5{background-color:#e8f5e9!important}.bg-green-lighten-5{color:#000!important}.bg-green-lighten-4{background-color:#c8e6c9!important}.bg-green-lighten-4{color:#000!important}.bg-green-lighten-3{background-color:#a5d6a7!important}.bg-green-lighten-3{color:#000!important}.bg-green-lighten-2{background-color:#81c784!important}.bg-green-lighten-2{color:#000!important}.bg-green-lighten-1{background-color:#66bb6a!important}.bg-green-lighten-1{color:#fff!important}.bg-green-darken-1{background-color:#43a047!important}.bg-green-darken-1{color:#fff!important}.bg-green-darken-2{background-color:#388e3c!important}.bg-green-darken-2{color:#fff!important}.bg-green-darken-3{background-color:#2e7d32!important}.bg-green-darken-3{color:#fff!important}.bg-green-darken-4{background-color:#1b5e20!important}.bg-green-darken-4{color:#fff!important}.bg-green-accent-1{background-color:#b9f6ca!important}.bg-green-accent-1{color:#000!important}.bg-green-accent-2{background-color:#69f0ae!important}.bg-green-accent-2{color:#000!important}.bg-green-accent-3{background-color:#00e676!important}.bg-green-accent-3{color:#000!important}.bg-green-accent-4{background-color:#00c853!important}.bg-green-accent-4{color:#000!important}.bg-light-green{background-color:#8bc34a!important}.bg-light-green{color:#000!important}.bg-light-green-lighten-5{background-color:#f1f8e9!important}.bg-light-green-lighten-5{color:#000!important}.bg-light-green-lighten-4{background-color:#dcedc8!important}.bg-light-green-lighten-4{color:#000!important}.bg-light-green-lighten-3{background-color:#c5e1a5!important}.bg-light-green-lighten-3{color:#000!important}.bg-light-green-lighten-2{background-color:#aed581!important}.bg-light-green-lighten-2{color:#000!important}.bg-light-green-lighten-1{background-color:#9ccc65!important}.bg-light-green-lighten-1{color:#000!important}.bg-light-green-darken-1{background-color:#7cb342!important}.bg-light-green-darken-1{color:#fff!important}.bg-light-green-darken-2{background-color:#689f38!important}.bg-light-green-darken-2{color:#fff!important}.bg-light-green-darken-3{background-color:#558b2f!important}.bg-light-green-darken-3{color:#fff!important}.bg-light-green-darken-4{background-color:#33691e!important}.bg-light-green-darken-4{color:#fff!important}.bg-light-green-accent-1{background-color:#ccff90!important}.bg-light-green-accent-1{color:#000!important}.bg-light-green-accent-2{background-color:#b2ff59!important}.bg-light-green-accent-2{color:#000!important}.bg-light-green-accent-3{background-color:#76ff03!important}.bg-light-green-accent-3{color:#000!important}.bg-light-green-accent-4{background-color:#64dd17!important}.bg-light-green-accent-4{color:#000!important}.bg-lime{background-color:#cddc39!important}.bg-lime{color:#000!important}.bg-lime-lighten-5{background-color:#f9fbe7!important}.bg-lime-lighten-5{color:#000!important}.bg-lime-lighten-4{background-color:#f0f4c3!important}.bg-lime-lighten-4{color:#000!important}.bg-lime-lighten-3{background-color:#e6ee9c!important}.bg-lime-lighten-3{color:#000!important}.bg-lime-lighten-2{background-color:#dce775!important}.bg-lime-lighten-2{color:#000!important}.bg-lime-lighten-1{background-color:#d4e157!important}.bg-lime-lighten-1{color:#000!important}.bg-lime-darken-1{background-color:#c0ca33!important}.bg-lime-darken-1{color:#000!important}.bg-lime-darken-2{background-color:#afb42b!important}.bg-lime-darken-2{color:#000!important}.bg-lime-darken-3{background-color:#9e9d24!important}.bg-lime-darken-3{color:#fff!important}.bg-lime-darken-4{background-color:#827717!important}.bg-lime-darken-4{color:#fff!important}.bg-lime-accent-1{background-color:#f4ff81!important}.bg-lime-accent-1{color:#000!important}.bg-lime-accent-2{background-color:#eeff41!important}.bg-lime-accent-2{color:#000!important}.bg-lime-accent-3{background-color:#c6ff00!important}.bg-lime-accent-3{color:#000!important}.bg-lime-accent-4{background-color:#aeea00!important}.bg-lime-accent-4{color:#000!important}.bg-yellow{background-color:#ffeb3b!important}.bg-yellow{color:#000!important}.bg-yellow-lighten-5{background-color:#fffde7!important}.bg-yellow-lighten-5{color:#000!important}.bg-yellow-lighten-4{background-color:#fff9c4!important}.bg-yellow-lighten-4{color:#000!important}.bg-yellow-lighten-3{background-color:#fff59d!important}.bg-yellow-lighten-3{color:#000!important}.bg-yellow-lighten-2{background-color:#fff176!important}.bg-yellow-lighten-2{color:#000!important}.bg-yellow-lighten-1{background-color:#ffee58!important}.bg-yellow-lighten-1{color:#000!important}.bg-yellow-darken-1{background-color:#fdd835!important}.bg-yellow-darken-1{color:#000!important}.bg-yellow-darken-2{background-color:#fbc02d!important}.bg-yellow-darken-2{color:#000!important}.bg-yellow-darken-3{background-color:#f9a825!important}.bg-yellow-darken-3{color:#000!important}.bg-yellow-darken-4{background-color:#f57f17!important}.bg-yellow-darken-4{color:#fff!important}.bg-yellow-accent-1{background-color:#ffff8d!important}.bg-yellow-accent-1{color:#000!important}.bg-yellow-accent-2{background-color:#ff0!important}.bg-yellow-accent-2{color:#000!important}.bg-yellow-accent-3{background-color:#ffea00!important}.bg-yellow-accent-3{color:#000!important}.bg-yellow-accent-4{background-color:#ffd600!important}.bg-yellow-accent-4{color:#000!important}.bg-amber{background-color:#ffc107!important}.bg-amber{color:#000!important}.bg-amber-lighten-5{background-color:#fff8e1!important}.bg-amber-lighten-5{color:#000!important}.bg-amber-lighten-4{background-color:#ffecb3!important}.bg-amber-lighten-4{color:#000!important}.bg-amber-lighten-3{background-color:#ffe082!important}.bg-amber-lighten-3{color:#000!important}.bg-amber-lighten-2{background-color:#ffd54f!important}.bg-amber-lighten-2{color:#000!important}.bg-amber-lighten-1{background-color:#ffca28!important}.bg-amber-lighten-1{color:#000!important}.bg-amber-darken-1{background-color:#ffb300!important}.bg-amber-darken-1{color:#000!important}.bg-amber-darken-2{background-color:#ffa000!important}.bg-amber-darken-2{color:#000!important}.bg-amber-darken-3{background-color:#ff8f00!important}.bg-amber-darken-3{color:#000!important}.bg-amber-darken-4{background-color:#ff6f00!important}.bg-amber-darken-4{color:#fff!important}.bg-amber-accent-1{background-color:#ffe57f!important}.bg-amber-accent-1{color:#000!important}.bg-amber-accent-2{background-color:#ffd740!important}.bg-amber-accent-2{color:#000!important}.bg-amber-accent-3{background-color:#ffc400!important}.bg-amber-accent-3{color:#000!important}.bg-amber-accent-4{background-color:#ffab00!important}.bg-amber-accent-4{color:#000!important}.bg-orange{background-color:#ff9800!important}.bg-orange{color:#000!important}.bg-orange-lighten-5{background-color:#fff3e0!important}.bg-orange-lighten-5{color:#000!important}.bg-orange-lighten-4{background-color:#ffe0b2!important}.bg-orange-lighten-4{color:#000!important}.bg-orange-lighten-3{background-color:#ffcc80!important}.bg-orange-lighten-3{color:#000!important}.bg-orange-lighten-2{background-color:#ffb74d!important}.bg-orange-lighten-2{color:#000!important}.bg-orange-lighten-1{background-color:#ffa726!important}.bg-orange-lighten-1{color:#000!important}.bg-orange-darken-1{background-color:#fb8c00!important}.bg-orange-darken-1{color:#fff!important}.bg-orange-darken-2{background-color:#f57c00!important}.bg-orange-darken-2{color:#fff!important}.bg-orange-darken-3{background-color:#ef6c00!important}.bg-orange-darken-3{color:#fff!important}.bg-orange-darken-4{background-color:#e65100!important}.bg-orange-darken-4{color:#fff!important}.bg-orange-accent-1{background-color:#ffd180!important}.bg-orange-accent-1{color:#000!important}.bg-orange-accent-2{background-color:#ffab40!important}.bg-orange-accent-2{color:#000!important}.bg-orange-accent-3{background-color:#ff9100!important}.bg-orange-accent-3{color:#000!important}.bg-orange-accent-4{background-color:#ff6d00!important}.bg-orange-accent-4{color:#fff!important}.bg-deep-orange{background-color:#ff5722!important}.bg-deep-orange{color:#fff!important}.bg-deep-orange-lighten-5{background-color:#fbe9e7!important}.bg-deep-orange-lighten-5{color:#000!important}.bg-deep-orange-lighten-4{background-color:#ffccbc!important}.bg-deep-orange-lighten-4{color:#000!important}.bg-deep-orange-lighten-3{background-color:#ffab91!important}.bg-deep-orange-lighten-3{color:#000!important}.bg-deep-orange-lighten-2{background-color:#ff8a65!important}.bg-deep-orange-lighten-2{color:#000!important}.bg-deep-orange-lighten-1{background-color:#ff7043!important}.bg-deep-orange-lighten-1{color:#fff!important}.bg-deep-orange-darken-1{background-color:#f4511e!important}.bg-deep-orange-darken-1{color:#fff!important}.bg-deep-orange-darken-2{background-color:#e64a19!important}.bg-deep-orange-darken-2{color:#fff!important}.bg-deep-orange-darken-3{background-color:#d84315!important}.bg-deep-orange-darken-3{color:#fff!important}.bg-deep-orange-darken-4{background-color:#bf360c!important}.bg-deep-orange-darken-4{color:#fff!important}.bg-deep-orange-accent-1{background-color:#ff9e80!important}.bg-deep-orange-accent-1{color:#000!important}.bg-deep-orange-accent-2{background-color:#ff6e40!important}.bg-deep-orange-accent-2{color:#fff!important}.bg-deep-orange-accent-3{background-color:#ff3d00!important}.bg-deep-orange-accent-3{color:#fff!important}.bg-deep-orange-accent-4{background-color:#dd2c00!important}.bg-deep-orange-accent-4{color:#fff!important}.bg-brown{background-color:#795548!important}.bg-brown{color:#fff!important}.bg-brown-lighten-5{background-color:#efebe9!important}.bg-brown-lighten-5{color:#000!important}.bg-brown-lighten-4{background-color:#d7ccc8!important}.bg-brown-lighten-4{color:#000!important}.bg-brown-lighten-3{background-color:#bcaaa4!important}.bg-brown-lighten-3{color:#000!important}.bg-brown-lighten-2{background-color:#a1887f!important}.bg-brown-lighten-2{color:#fff!important}.bg-brown-lighten-1{background-color:#8d6e63!important}.bg-brown-lighten-1{color:#fff!important}.bg-brown-darken-1{background-color:#6d4c41!important}.bg-brown-darken-1{color:#fff!important}.bg-brown-darken-2{background-color:#5d4037!important}.bg-brown-darken-2{color:#fff!important}.bg-brown-darken-3{background-color:#4e342e!important}.bg-brown-darken-3{color:#fff!important}.bg-brown-darken-4{background-color:#3e2723!important}.bg-brown-darken-4{color:#fff!important}.bg-blue-grey{background-color:#607d8b!important}.bg-blue-grey{color:#fff!important}.bg-blue-grey-lighten-5{background-color:#eceff1!important}.bg-blue-grey-lighten-5{color:#000!important}.bg-blue-grey-lighten-4{background-color:#cfd8dc!important}.bg-blue-grey-lighten-4{color:#000!important}.bg-blue-grey-lighten-3{background-color:#b0bec5!important}.bg-blue-grey-lighten-3{color:#000!important}.bg-blue-grey-lighten-2{background-color:#90a4ae!important}.bg-blue-grey-lighten-2{color:#fff!important}.bg-blue-grey-lighten-1{background-color:#78909c!important}.bg-blue-grey-lighten-1{color:#fff!important}.bg-blue-grey-darken-1{background-color:#546e7a!important}.bg-blue-grey-darken-1{color:#fff!important}.bg-blue-grey-darken-2{background-color:#455a64!important}.bg-blue-grey-darken-2{color:#fff!important}.bg-blue-grey-darken-3{background-color:#37474f!important}.bg-blue-grey-darken-3{color:#fff!important}.bg-blue-grey-darken-4{background-color:#263238!important}.bg-blue-grey-darken-4{color:#fff!important}.bg-grey{background-color:#9e9e9e!important}.bg-grey{color:#fff!important}.bg-grey-lighten-5{background-color:#fafafa!important}.bg-grey-lighten-5{color:#000!important}.bg-grey-lighten-4{background-color:#f5f5f5!important}.bg-grey-lighten-4{color:#000!important}.bg-grey-lighten-3{background-color:#eee!important}.bg-grey-lighten-3{color:#000!important}.bg-grey-lighten-2{background-color:#e0e0e0!important}.bg-grey-lighten-2{color:#000!important}.bg-grey-lighten-1{background-color:#bdbdbd!important}.bg-grey-lighten-1{color:#000!important}.bg-grey-darken-1{background-color:#757575!important}.bg-grey-darken-1{color:#fff!important}.bg-grey-darken-2{background-color:#616161!important}.bg-grey-darken-2{color:#fff!important}.bg-grey-darken-3{background-color:#424242!important}.bg-grey-darken-3{color:#fff!important}.bg-grey-darken-4{background-color:#212121!important}.bg-grey-darken-4{color:#fff!important}.bg-shades-black{background-color:#000!important}.bg-shades-black{color:#fff!important}.bg-shades-white{background-color:#fff!important}.bg-shades-white{color:#000!important}.bg-shades-transparent{background-color:transparent!important}.bg-shades-transparent{color:currentColor!important}.text-black{color:#000!important}.text-white{color:#fff!important}.text-transparent{color:transparent!important}.text-red{color:#f44336!important}.text-red-lighten-5{color:#ffebee!important}.text-red-lighten-4{color:#ffcdd2!important}.text-red-lighten-3{color:#ef9a9a!important}.text-red-lighten-2{color:#e57373!important}.text-red-lighten-1{color:#ef5350!important}.text-red-darken-1{color:#e53935!important}.text-red-darken-2{color:#d32f2f!important}.text-red-darken-3{color:#c62828!important}.text-red-darken-4{color:#b71c1c!important}.text-red-accent-1{color:#ff8a80!important}.text-red-accent-2{color:#ff5252!important}.text-red-accent-3{color:#ff1744!important}.text-red-accent-4{color:#d50000!important}.text-pink{color:#e91e63!important}.text-pink-lighten-5{color:#fce4ec!important}.text-pink-lighten-4{color:#f8bbd0!important}.text-pink-lighten-3{color:#f48fb1!important}.text-pink-lighten-2{color:#f06292!important}.text-pink-lighten-1{color:#ec407a!important}.text-pink-darken-1{color:#d81b60!important}.text-pink-darken-2{color:#c2185b!important}.text-pink-darken-3{color:#ad1457!important}.text-pink-darken-4{color:#880e4f!important}.text-pink-accent-1{color:#ff80ab!important}.text-pink-accent-2{color:#ff4081!important}.text-pink-accent-3{color:#f50057!important}.text-pink-accent-4{color:#c51162!important}.text-purple{color:#9c27b0!important}.text-purple-lighten-5{color:#f3e5f5!important}.text-purple-lighten-4{color:#e1bee7!important}.text-purple-lighten-3{color:#ce93d8!important}.text-purple-lighten-2{color:#ba68c8!important}.text-purple-lighten-1{color:#ab47bc!important}.text-purple-darken-1{color:#8e24aa!important}.text-purple-darken-2{color:#7b1fa2!important}.text-purple-darken-3{color:#6a1b9a!important}.text-purple-darken-4{color:#4a148c!important}.text-purple-accent-1{color:#ea80fc!important}.text-purple-accent-2{color:#e040fb!important}.text-purple-accent-3{color:#d500f9!important}.text-purple-accent-4{color:#a0f!important}.text-deep-purple{color:#673ab7!important}.text-deep-purple-lighten-5{color:#ede7f6!important}.text-deep-purple-lighten-4{color:#d1c4e9!important}.text-deep-purple-lighten-3{color:#b39ddb!important}.text-deep-purple-lighten-2{color:#9575cd!important}.text-deep-purple-lighten-1{color:#7e57c2!important}.text-deep-purple-darken-1{color:#5e35b1!important}.text-deep-purple-darken-2{color:#512da8!important}.text-deep-purple-darken-3{color:#4527a0!important}.text-deep-purple-darken-4{color:#311b92!important}.text-deep-purple-accent-1{color:#b388ff!important}.text-deep-purple-accent-2{color:#7c4dff!important}.text-deep-purple-accent-3{color:#651fff!important}.text-deep-purple-accent-4{color:#6200ea!important}.text-indigo{color:#3f51b5!important}.text-indigo-lighten-5{color:#e8eaf6!important}.text-indigo-lighten-4{color:#c5cae9!important}.text-indigo-lighten-3{color:#9fa8da!important}.text-indigo-lighten-2{color:#7986cb!important}.text-indigo-lighten-1{color:#5c6bc0!important}.text-indigo-darken-1{color:#3949ab!important}.text-indigo-darken-2{color:#303f9f!important}.text-indigo-darken-3{color:#283593!important}.text-indigo-darken-4{color:#1a237e!important}.text-indigo-accent-1{color:#8c9eff!important}.text-indigo-accent-2{color:#536dfe!important}.text-indigo-accent-3{color:#3d5afe!important}.text-indigo-accent-4{color:#304ffe!important}.text-blue{color:#2196f3!important}.text-blue-lighten-5{color:#e3f2fd!important}.text-blue-lighten-4{color:#bbdefb!important}.text-blue-lighten-3{color:#90caf9!important}.text-blue-lighten-2{color:#64b5f6!important}.text-blue-lighten-1{color:#42a5f5!important}.text-blue-darken-1{color:#1e88e5!important}.text-blue-darken-2{color:#1976d2!important}.text-blue-darken-3{color:#1565c0!important}.text-blue-darken-4{color:#0d47a1!important}.text-blue-accent-1{color:#82b1ff!important}.text-blue-accent-2{color:#448aff!important}.text-blue-accent-3{color:#2979ff!important}.text-blue-accent-4{color:#2962ff!important}.text-light-blue{color:#03a9f4!important}.text-light-blue-lighten-5{color:#e1f5fe!important}.text-light-blue-lighten-4{color:#b3e5fc!important}.text-light-blue-lighten-3{color:#81d4fa!important}.text-light-blue-lighten-2{color:#4fc3f7!important}.text-light-blue-lighten-1{color:#29b6f6!important}.text-light-blue-darken-1{color:#039be5!important}.text-light-blue-darken-2{color:#0288d1!important}.text-light-blue-darken-3{color:#0277bd!important}.text-light-blue-darken-4{color:#01579b!important}.text-light-blue-accent-1{color:#80d8ff!important}.text-light-blue-accent-2{color:#40c4ff!important}.text-light-blue-accent-3{color:#00b0ff!important}.text-light-blue-accent-4{color:#0091ea!important}.text-cyan{color:#00bcd4!important}.text-cyan-lighten-5{color:#e0f7fa!important}.text-cyan-lighten-4{color:#b2ebf2!important}.text-cyan-lighten-3{color:#80deea!important}.text-cyan-lighten-2{color:#4dd0e1!important}.text-cyan-lighten-1{color:#26c6da!important}.text-cyan-darken-1{color:#00acc1!important}.text-cyan-darken-2{color:#0097a7!important}.text-cyan-darken-3{color:#00838f!important}.text-cyan-darken-4{color:#006064!important}.text-cyan-accent-1{color:#84ffff!important}.text-cyan-accent-2{color:#18ffff!important}.text-cyan-accent-3{color:#00e5ff!important}.text-cyan-accent-4{color:#00b8d4!important}.text-teal{color:#009688!important}.text-teal-lighten-5{color:#e0f2f1!important}.text-teal-lighten-4{color:#b2dfdb!important}.text-teal-lighten-3{color:#80cbc4!important}.text-teal-lighten-2{color:#4db6ac!important}.text-teal-lighten-1{color:#26a69a!important}.text-teal-darken-1{color:#00897b!important}.text-teal-darken-2{color:#00796b!important}.text-teal-darken-3{color:#00695c!important}.text-teal-darken-4{color:#004d40!important}.text-teal-accent-1{color:#a7ffeb!important}.text-teal-accent-2{color:#64ffda!important}.text-teal-accent-3{color:#1de9b6!important}.text-teal-accent-4{color:#00bfa5!important}.text-green{color:#4caf50!important}.text-green-lighten-5{color:#e8f5e9!important}.text-green-lighten-4{color:#c8e6c9!important}.text-green-lighten-3{color:#a5d6a7!important}.text-green-lighten-2{color:#81c784!important}.text-green-lighten-1{color:#66bb6a!important}.text-green-darken-1{color:#43a047!important}.text-green-darken-2{color:#388e3c!important}.text-green-darken-3{color:#2e7d32!important}.text-green-darken-4{color:#1b5e20!important}.text-green-accent-1{color:#b9f6ca!important}.text-green-accent-2{color:#69f0ae!important}.text-green-accent-3{color:#00e676!important}.text-green-accent-4{color:#00c853!important}.text-light-green{color:#8bc34a!important}.text-light-green-lighten-5{color:#f1f8e9!important}.text-light-green-lighten-4{color:#dcedc8!important}.text-light-green-lighten-3{color:#c5e1a5!important}.text-light-green-lighten-2{color:#aed581!important}.text-light-green-lighten-1{color:#9ccc65!important}.text-light-green-darken-1{color:#7cb342!important}.text-light-green-darken-2{color:#689f38!important}.text-light-green-darken-3{color:#558b2f!important}.text-light-green-darken-4{color:#33691e!important}.text-light-green-accent-1{color:#ccff90!important}.text-light-green-accent-2{color:#b2ff59!important}.text-light-green-accent-3{color:#76ff03!important}.text-light-green-accent-4{color:#64dd17!important}.text-lime{color:#cddc39!important}.text-lime-lighten-5{color:#f9fbe7!important}.text-lime-lighten-4{color:#f0f4c3!important}.text-lime-lighten-3{color:#e6ee9c!important}.text-lime-lighten-2{color:#dce775!important}.text-lime-lighten-1{color:#d4e157!important}.text-lime-darken-1{color:#c0ca33!important}.text-lime-darken-2{color:#afb42b!important}.text-lime-darken-3{color:#9e9d24!important}.text-lime-darken-4{color:#827717!important}.text-lime-accent-1{color:#f4ff81!important}.text-lime-accent-2{color:#eeff41!important}.text-lime-accent-3{color:#c6ff00!important}.text-lime-accent-4{color:#aeea00!important}.text-yellow{color:#ffeb3b!important}.text-yellow-lighten-5{color:#fffde7!important}.text-yellow-lighten-4{color:#fff9c4!important}.text-yellow-lighten-3{color:#fff59d!important}.text-yellow-lighten-2{color:#fff176!important}.text-yellow-lighten-1{color:#ffee58!important}.text-yellow-darken-1{color:#fdd835!important}.text-yellow-darken-2{color:#fbc02d!important}.text-yellow-darken-3{color:#f9a825!important}.text-yellow-darken-4{color:#f57f17!important}.text-yellow-accent-1{color:#ffff8d!important}.text-yellow-accent-2{color:#ff0!important}.text-yellow-accent-3{color:#ffea00!important}.text-yellow-accent-4{color:#ffd600!important}.text-amber{color:#ffc107!important}.text-amber-lighten-5{color:#fff8e1!important}.text-amber-lighten-4{color:#ffecb3!important}.text-amber-lighten-3{color:#ffe082!important}.text-amber-lighten-2{color:#ffd54f!important}.text-amber-lighten-1{color:#ffca28!important}.text-amber-darken-1{color:#ffb300!important}.text-amber-darken-2{color:#ffa000!important}.text-amber-darken-3{color:#ff8f00!important}.text-amber-darken-4{color:#ff6f00!important}.text-amber-accent-1{color:#ffe57f!important}.text-amber-accent-2{color:#ffd740!important}.text-amber-accent-3{color:#ffc400!important}.text-amber-accent-4{color:#ffab00!important}.text-orange{color:#ff9800!important}.text-orange-lighten-5{color:#fff3e0!important}.text-orange-lighten-4{color:#ffe0b2!important}.text-orange-lighten-3{color:#ffcc80!important}.text-orange-lighten-2{color:#ffb74d!important}.text-orange-lighten-1{color:#ffa726!important}.text-orange-darken-1{color:#fb8c00!important}.text-orange-darken-2{color:#f57c00!important}.text-orange-darken-3{color:#ef6c00!important}.text-orange-darken-4{color:#e65100!important}.text-orange-accent-1{color:#ffd180!important}.text-orange-accent-2{color:#ffab40!important}.text-orange-accent-3{color:#ff9100!important}.text-orange-accent-4{color:#ff6d00!important}.text-deep-orange{color:#ff5722!important}.text-deep-orange-lighten-5{color:#fbe9e7!important}.text-deep-orange-lighten-4{color:#ffccbc!important}.text-deep-orange-lighten-3{color:#ffab91!important}.text-deep-orange-lighten-2{color:#ff8a65!important}.text-deep-orange-lighten-1{color:#ff7043!important}.text-deep-orange-darken-1{color:#f4511e!important}.text-deep-orange-darken-2{color:#e64a19!important}.text-deep-orange-darken-3{color:#d84315!important}.text-deep-orange-darken-4{color:#bf360c!important}.text-deep-orange-accent-1{color:#ff9e80!important}.text-deep-orange-accent-2{color:#ff6e40!important}.text-deep-orange-accent-3{color:#ff3d00!important}.text-deep-orange-accent-4{color:#dd2c00!important}.text-brown{color:#795548!important}.text-brown-lighten-5{color:#efebe9!important}.text-brown-lighten-4{color:#d7ccc8!important}.text-brown-lighten-3{color:#bcaaa4!important}.text-brown-lighten-2{color:#a1887f!important}.text-brown-lighten-1{color:#8d6e63!important}.text-brown-darken-1{color:#6d4c41!important}.text-brown-darken-2{color:#5d4037!important}.text-brown-darken-3{color:#4e342e!important}.text-brown-darken-4{color:#3e2723!important}.text-blue-grey{color:#607d8b!important}.text-blue-grey-lighten-5{color:#eceff1!important}.text-blue-grey-lighten-4{color:#cfd8dc!important}.text-blue-grey-lighten-3{color:#b0bec5!important}.text-blue-grey-lighten-2{color:#90a4ae!important}.text-blue-grey-lighten-1{color:#78909c!important}.text-blue-grey-darken-1{color:#546e7a!important}.text-blue-grey-darken-2{color:#455a64!important}.text-blue-grey-darken-3{color:#37474f!important}.text-blue-grey-darken-4{color:#263238!important}.text-grey{color:#9e9e9e!important}.text-grey-lighten-5{color:#fafafa!important}.text-grey-lighten-4{color:#f5f5f5!important}.text-grey-lighten-3{color:#eee!important}.text-grey-lighten-2{color:#e0e0e0!important}.text-grey-lighten-1{color:#bdbdbd!important}.text-grey-darken-1{color:#757575!important}.text-grey-darken-2{color:#616161!important}.text-grey-darken-3{color:#424242!important}.text-grey-darken-4{color:#212121!important}.text-shades-black{color:#000!important}.text-shades-white{color:#fff!important}.text-shades-transparent{color:transparent!important}/*!
* ress.css • v2.0.4
* MIT License
* github.com/filipelinhares/ress
diff --git a/zt_backend/dist_app/assets/index-de12265c.js b/zt_backend/dist_app/assets/index-fb670233.js
similarity index 86%
rename from zt_backend/dist_app/assets/index-de12265c.js
rename to zt_backend/dist_app/assets/index-fb670233.js
index 5827d5f1..7e1f15f9 100644
--- a/zt_backend/dist_app/assets/index-de12265c.js
+++ b/zt_backend/dist_app/assets/index-fb670233.js
@@ -1,20 +1,20 @@
-var VOe=Object.defineProperty;var UOe=(t,e,o)=>e in t?VOe(t,e,{enumerable:!0,configurable:!0,writable:!0,value:o}):t[e]=o;var _c=(t,e,o)=>(UOe(t,typeof e!="symbol"?e+"":e,o),o),jOe=(t,e,o)=>{if(!e.has(t))throw TypeError("Cannot "+o)};var Woe=(t,e,o)=>{if(e.has(t))throw TypeError("Cannot add the same private member more than once");e instanceof WeakSet?e.add(t):e.set(t,o)};var gQ=(t,e,o)=>(jOe(t,e,"access private method"),o);(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const P of document.querySelectorAll('link[rel="modulepreload"]'))f(P);new MutationObserver(P=>{for(const d of P)if(d.type==="childList")for(const l of d.addedNodes)l.tagName==="LINK"&&l.rel==="modulepreload"&&f(l)}).observe(document,{childList:!0,subtree:!0});function o(P){const d={};return P.integrity&&(d.integrity=P.integrity),P.referrerPolicy&&(d.referrerPolicy=P.referrerPolicy),P.crossOrigin==="use-credentials"?d.credentials="include":P.crossOrigin==="anonymous"?d.credentials="omit":d.credentials="same-origin",d}function f(P){if(P.ep)return;P.ep=!0;const d=o(P);fetch(P.href,d)}})();function D0e(t,e){return function(){return t.apply(e,arguments)}}const{toString:QOe}=Object.prototype,{getPrototypeOf:cle}=Object,RZ=(t=>e=>{const o=QOe.call(e);return t[o]||(t[o]=o.slice(8,-1).toLowerCase())})(Object.create(null)),g_=t=>(t=t.toLowerCase(),e=>RZ(e)===t),LZ=t=>e=>typeof e===t,{isArray:OM}=Array,gI=LZ("undefined");function HOe(t){return t!==null&&!gI(t)&&t.constructor!==null&&!gI(t.constructor)&&Jy(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const B0e=g_("ArrayBuffer");function ZOe(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&B0e(t.buffer),e}const qOe=LZ("string"),Jy=LZ("function"),z0e=LZ("number"),IZ=t=>t!==null&&typeof t=="object",WOe=t=>t===!0||t===!1,iH=t=>{if(RZ(t)!=="object")return!1;const e=cle(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},YOe=g_("Date"),XOe=g_("File"),GOe=g_("Blob"),KOe=g_("FileList"),JOe=t=>IZ(t)&&Jy(t.pipe),e3e=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||Jy(t.append)&&((e=RZ(t))==="formdata"||e==="object"&&Jy(t.toString)&&t.toString()==="[object FormData]"))},t3e=g_("URLSearchParams"),n3e=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function aD(t,e,{allOwnKeys:o=!1}={}){if(t===null||typeof t>"u")return;let f,P;if(typeof t!="object"&&(t=[t]),OM(t))for(f=0,P=t.length;f
0;)if(P=o[f],e===P.toLowerCase())return P;return null}const N0e=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),$0e=t=>!gI(t)&&t!==N0e;function uae(){const{caseless:t}=$0e(this)&&this||{},e={},o=(f,P)=>{const d=t&&F0e(e,P)||P;iH(e[d])&&iH(f)?e[d]=uae(e[d],f):iH(f)?e[d]=uae({},f):OM(f)?e[d]=f.slice():e[d]=f};for(let f=0,P=arguments.length;f
(aD(e,(P,d)=>{o&&Jy(P)?t[d]=D0e(P,o):t[d]=P},{allOwnKeys:f}),t),o3e=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),i3e=(t,e,o,f)=>{t.prototype=Object.create(e.prototype,f),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),o&&Object.assign(t.prototype,o)},a3e=(t,e,o,f)=>{let P,d,l;const n={};if(e=e||{},t==null)return e;do{for(P=Object.getOwnPropertyNames(t),d=P.length;d-- >0;)l=P[d],(!f||f(l,t,e))&&!n[l]&&(e[l]=t[l],n[l]=!0);t=o!==!1&&cle(t)}while(t&&(!o||o(t,e))&&t!==Object.prototype);return e},s3e=(t,e,o)=>{t=String(t),(o===void 0||o>t.length)&&(o=t.length),o-=e.length;const f=t.indexOf(e,o);return f!==-1&&f===o},l3e=t=>{if(!t)return null;if(OM(t))return t;let e=t.length;if(!z0e(e))return null;const o=new Array(e);for(;e-- >0;)o[e]=t[e];return o},c3e=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&cle(Uint8Array)),u3e=(t,e)=>{const f=(t&&t[Symbol.iterator]).call(t);let P;for(;(P=f.next())&&!P.done;){const d=P.value;e.call(t,d[0],d[1])}},f3e=(t,e)=>{let o;const f=[];for(;(o=t.exec(e))!==null;)f.push(o);return f},d3e=g_("HTMLFormElement"),h3e=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(o,f,P){return f.toUpperCase()+P}),ode=(({hasOwnProperty:t})=>(e,o)=>t.call(e,o))(Object.prototype),p3e=g_("RegExp"),V0e=(t,e)=>{const o=Object.getOwnPropertyDescriptors(t),f={};aD(o,(P,d)=>{let l;(l=e(P,d,t))!==!1&&(f[d]=l||P)}),Object.defineProperties(t,f)},m3e=t=>{V0e(t,(e,o)=>{if(Jy(t)&&["arguments","caller","callee"].indexOf(o)!==-1)return!1;const f=t[o];if(Jy(f)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+o+"'")})}})},g3e=(t,e)=>{const o={},f=P=>{P.forEach(d=>{o[d]=!0})};return OM(t)?f(t):f(String(t).split(e)),o},v3e=()=>{},y3e=(t,e)=>(t=+t,Number.isFinite(t)?t:e),Yoe="abcdefghijklmnopqrstuvwxyz",ide="0123456789",U0e={DIGIT:ide,ALPHA:Yoe,ALPHA_DIGIT:Yoe+Yoe.toUpperCase()+ide},b3e=(t=16,e=U0e.ALPHA_DIGIT)=>{let o="";const{length:f}=e;for(;t--;)o+=e[Math.random()*f|0];return o};function x3e(t){return!!(t&&Jy(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}const _3e=t=>{const e=new Array(10),o=(f,P)=>{if(IZ(f)){if(e.indexOf(f)>=0)return;if(!("toJSON"in f)){e[P]=f;const d=OM(f)?[]:{};return aD(f,(l,n)=>{const c=o(l,P+1);!gI(c)&&(d[n]=c)}),e[P]=void 0,d}}return f};return o(t,0)},w3e=g_("AsyncFunction"),O3e=t=>t&&(IZ(t)||Jy(t))&&Jy(t.then)&&Jy(t.catch),ui={isArray:OM,isArrayBuffer:B0e,isBuffer:HOe,isFormData:e3e,isArrayBufferView:ZOe,isString:qOe,isNumber:z0e,isBoolean:WOe,isObject:IZ,isPlainObject:iH,isUndefined:gI,isDate:YOe,isFile:XOe,isBlob:GOe,isRegExp:p3e,isFunction:Jy,isStream:JOe,isURLSearchParams:t3e,isTypedArray:c3e,isFileList:KOe,forEach:aD,merge:uae,extend:r3e,trim:n3e,stripBOM:o3e,inherits:i3e,toFlatObject:a3e,kindOf:RZ,kindOfTest:g_,endsWith:s3e,toArray:l3e,forEachEntry:u3e,matchAll:f3e,isHTMLForm:d3e,hasOwnProperty:ode,hasOwnProp:ode,reduceDescriptors:V0e,freezeMethods:m3e,toObjectSet:g3e,toCamelCase:h3e,noop:v3e,toFiniteNumber:y3e,findKey:F0e,global:N0e,isContextDefined:$0e,ALPHABET:U0e,generateString:b3e,isSpecCompliantForm:x3e,toJSONObject:_3e,isAsyncFn:w3e,isThenable:O3e};function Ic(t,e,o,f,P){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),o&&(this.config=o),f&&(this.request=f),P&&(this.response=P)}ui.inherits(Ic,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:ui.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const j0e=Ic.prototype,Q0e={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{Q0e[t]={value:t}});Object.defineProperties(Ic,Q0e);Object.defineProperty(j0e,"isAxiosError",{value:!0});Ic.from=(t,e,o,f,P,d)=>{const l=Object.create(j0e);return ui.toFlatObject(t,l,function(c){return c!==Error.prototype},n=>n!=="isAxiosError"),Ic.call(l,t.message,e,o,f,P),l.cause=t,l.name=t.name,d&&Object.assign(l,d),l};const S3e=null;function fae(t){return ui.isPlainObject(t)||ui.isArray(t)}function H0e(t){return ui.endsWith(t,"[]")?t.slice(0,-2):t}function ade(t,e,o){return t?t.concat(e).map(function(P,d){return P=H0e(P),!o&&d?"["+P+"]":P}).join(o?".":""):e}function k3e(t){return ui.isArray(t)&&!t.some(fae)}const T3e=ui.toFlatObject(ui,{},null,function(e){return/^is[A-Z]/.test(e)});function DZ(t,e,o){if(!ui.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,o=ui.toFlatObject(o,{metaTokens:!0,dots:!1,indexes:!1},!1,function(a,u){return!ui.isUndefined(u[a])});const f=o.metaTokens,P=o.visitor||i,d=o.dots,l=o.indexes,c=(o.Blob||typeof Blob<"u"&&Blob)&&ui.isSpecCompliantForm(e);if(!ui.isFunction(P))throw new TypeError("visitor must be a function");function b(p){if(p===null)return"";if(ui.isDate(p))return p.toISOString();if(!c&&ui.isBlob(p))throw new Ic("Blob is not supported. Use a Buffer instead.");return ui.isArrayBuffer(p)||ui.isTypedArray(p)?c&&typeof Blob=="function"?new Blob([p]):Buffer.from(p):p}function i(p,a,u){let h=p;if(p&&!u&&typeof p=="object"){if(ui.endsWith(a,"{}"))a=f?a:a.slice(0,-2),p=JSON.stringify(p);else if(ui.isArray(p)&&k3e(p)||(ui.isFileList(p)||ui.endsWith(a,"[]"))&&(h=ui.toArray(p)))return a=H0e(a),h.forEach(function(v,_){!(ui.isUndefined(v)||v===null)&&e.append(l===!0?ade([a],_,d):l===null?a:a+"[]",b(v))}),!1}return fae(p)?!0:(e.append(ade(u,a,d),b(p)),!1)}const O=[],w=Object.assign(T3e,{defaultVisitor:i,convertValue:b,isVisitable:fae});function y(p,a){if(!ui.isUndefined(p)){if(O.indexOf(p)!==-1)throw Error("Circular reference detected in "+a.join("."));O.push(p),ui.forEach(p,function(h,m){(!(ui.isUndefined(h)||h===null)&&P.call(e,h,ui.isString(m)?m.trim():m,a,w))===!0&&y(h,a?a.concat(m):[m])}),O.pop()}}if(!ui.isObject(t))throw new TypeError("data must be an object");return y(t),e}function sde(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(f){return e[f]})}function ule(t,e){this._pairs=[],t&&DZ(t,this,e)}const Z0e=ule.prototype;Z0e.append=function(e,o){this._pairs.push([e,o])};Z0e.toString=function(e){const o=e?function(f){return e.call(this,f,sde)}:sde;return this._pairs.map(function(P){return o(P[0])+"="+o(P[1])},"").join("&")};function C3e(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function q0e(t,e,o){if(!e)return t;const f=o&&o.encode||C3e,P=o&&o.serialize;let d;if(P?d=P(e,o):d=ui.isURLSearchParams(e)?e.toString():new ule(e,o).toString(f),d){const l=t.indexOf("#");l!==-1&&(t=t.slice(0,l)),t+=(t.indexOf("?")===-1?"?":"&")+d}return t}class A3e{constructor(){this.handlers=[]}use(e,o,f){return this.handlers.push({fulfilled:e,rejected:o,synchronous:f?f.synchronous:!1,runWhen:f?f.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){ui.forEach(this.handlers,function(f){f!==null&&e(f)})}}const lde=A3e,W0e={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},M3e=typeof URLSearchParams<"u"?URLSearchParams:ule,E3e=typeof FormData<"u"?FormData:null,P3e=typeof Blob<"u"?Blob:null,R3e={isBrowser:!0,classes:{URLSearchParams:M3e,FormData:E3e,Blob:P3e},protocols:["http","https","file","blob","url","data"]},Y0e=typeof window<"u"&&typeof document<"u",L3e=(t=>Y0e&&["ReactNative","NativeScript","NS"].indexOf(t)<0)(typeof navigator<"u"&&navigator.product),I3e=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),D3e=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Y0e,hasStandardBrowserEnv:L3e,hasStandardBrowserWebWorkerEnv:I3e},Symbol.toStringTag,{value:"Module"})),o_={...D3e,...R3e};function B3e(t,e){return DZ(t,new o_.classes.URLSearchParams,Object.assign({visitor:function(o,f,P,d){return o_.isNode&&ui.isBuffer(o)?(this.append(f,o.toString("base64")),!1):d.defaultVisitor.apply(this,arguments)}},e))}function z3e(t){return ui.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function F3e(t){const e={},o=Object.keys(t);let f;const P=o.length;let d;for(f=0;f
=o.length;return l=!l&&ui.isArray(P)?P.length:l,c?(ui.hasOwnProp(P,l)?P[l]=[P[l],f]:P[l]=f,!n):((!P[l]||!ui.isObject(P[l]))&&(P[l]=[]),e(o,f,P[l],d)&&ui.isArray(P[l])&&(P[l]=F3e(P[l])),!n)}if(ui.isFormData(t)&&ui.isFunction(t.entries)){const o={};return ui.forEachEntry(t,(f,P)=>{e(z3e(f),P,o,0)}),o}return null}function N3e(t,e,o){if(ui.isString(t))try{return(e||JSON.parse)(t),ui.trim(t)}catch(f){if(f.name!=="SyntaxError")throw f}return(o||JSON.stringify)(t)}const fle={transitional:W0e,adapter:["xhr","http"],transformRequest:[function(e,o){const f=o.getContentType()||"",P=f.indexOf("application/json")>-1,d=ui.isObject(e);if(d&&ui.isHTMLForm(e)&&(e=new FormData(e)),ui.isFormData(e))return P&&P?JSON.stringify(X0e(e)):e;if(ui.isArrayBuffer(e)||ui.isBuffer(e)||ui.isStream(e)||ui.isFile(e)||ui.isBlob(e))return e;if(ui.isArrayBufferView(e))return e.buffer;if(ui.isURLSearchParams(e))return o.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let n;if(d){if(f.indexOf("application/x-www-form-urlencoded")>-1)return B3e(e,this.formSerializer).toString();if((n=ui.isFileList(e))||f.indexOf("multipart/form-data")>-1){const c=this.env&&this.env.FormData;return DZ(n?{"files[]":e}:e,c&&new c,this.formSerializer)}}return d||P?(o.setContentType("application/json",!1),N3e(e)):e}],transformResponse:[function(e){const o=this.transitional||fle.transitional,f=o&&o.forcedJSONParsing,P=this.responseType==="json";if(e&&ui.isString(e)&&(f&&!this.responseType||P)){const l=!(o&&o.silentJSONParsing)&&P;try{return JSON.parse(e)}catch(n){if(l)throw n.name==="SyntaxError"?Ic.from(n,Ic.ERR_BAD_RESPONSE,this,null,this.response):n}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:o_.classes.FormData,Blob:o_.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};ui.forEach(["delete","get","head","post","put","patch"],t=>{fle.headers[t]={}});const dle=fle,$3e=ui.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),V3e=t=>{const e={};let o,f,P;return t&&t.split(`
-`).forEach(function(l){P=l.indexOf(":"),o=l.substring(0,P).trim().toLowerCase(),f=l.substring(P+1).trim(),!(!o||e[o]&&$3e[o])&&(o==="set-cookie"?e[o]?e[o].push(f):e[o]=[f]:e[o]=e[o]?e[o]+", "+f:f)}),e},cde=Symbol("internals");function ML(t){return t&&String(t).trim().toLowerCase()}function aH(t){return t===!1||t==null?t:ui.isArray(t)?t.map(aH):String(t)}function U3e(t){const e=Object.create(null),o=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let f;for(;f=o.exec(t);)e[f[1]]=f[2];return e}const j3e=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function Xoe(t,e,o,f,P){if(ui.isFunction(f))return f.call(this,e,o);if(P&&(e=o),!!ui.isString(e)){if(ui.isString(f))return e.indexOf(f)!==-1;if(ui.isRegExp(f))return f.test(e)}}function Q3e(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,o,f)=>o.toUpperCase()+f)}function H3e(t,e){const o=ui.toCamelCase(" "+e);["get","set","has"].forEach(f=>{Object.defineProperty(t,f+o,{value:function(P,d,l){return this[f].call(this,e,P,d,l)},configurable:!0})})}class BZ{constructor(e){e&&this.set(e)}set(e,o,f){const P=this;function d(n,c,b){const i=ML(c);if(!i)throw new Error("header name must be a non-empty string");const O=ui.findKey(P,i);(!O||P[O]===void 0||b===!0||b===void 0&&P[O]!==!1)&&(P[O||c]=aH(n))}const l=(n,c)=>ui.forEach(n,(b,i)=>d(b,i,c));return ui.isPlainObject(e)||e instanceof this.constructor?l(e,o):ui.isString(e)&&(e=e.trim())&&!j3e(e)?l(V3e(e),o):e!=null&&d(o,e,f),this}get(e,o){if(e=ML(e),e){const f=ui.findKey(this,e);if(f){const P=this[f];if(!o)return P;if(o===!0)return U3e(P);if(ui.isFunction(o))return o.call(this,P,f);if(ui.isRegExp(o))return o.exec(P);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,o){if(e=ML(e),e){const f=ui.findKey(this,e);return!!(f&&this[f]!==void 0&&(!o||Xoe(this,this[f],f,o)))}return!1}delete(e,o){const f=this;let P=!1;function d(l){if(l=ML(l),l){const n=ui.findKey(f,l);n&&(!o||Xoe(f,f[n],n,o))&&(delete f[n],P=!0)}}return ui.isArray(e)?e.forEach(d):d(e),P}clear(e){const o=Object.keys(this);let f=o.length,P=!1;for(;f--;){const d=o[f];(!e||Xoe(this,this[d],d,e,!0))&&(delete this[d],P=!0)}return P}normalize(e){const o=this,f={};return ui.forEach(this,(P,d)=>{const l=ui.findKey(f,d);if(l){o[l]=aH(P),delete o[d];return}const n=e?Q3e(d):String(d).trim();n!==d&&delete o[d],o[n]=aH(P),f[n]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const o=Object.create(null);return ui.forEach(this,(f,P)=>{f!=null&&f!==!1&&(o[P]=e&&ui.isArray(f)?f.join(", "):f)}),o}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,o])=>e+": "+o).join(`
-`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...o){const f=new this(e);return o.forEach(P=>f.set(P)),f}static accessor(e){const f=(this[cde]=this[cde]={accessors:{}}).accessors,P=this.prototype;function d(l){const n=ML(l);f[n]||(H3e(P,l),f[n]=!0)}return ui.isArray(e)?e.forEach(d):d(e),this}}BZ.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);ui.reduceDescriptors(BZ.prototype,({value:t},e)=>{let o=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(f){this[o]=f}}});ui.freezeMethods(BZ);const wO=BZ;function Goe(t,e){const o=this||dle,f=e||o,P=wO.from(f.headers);let d=f.data;return ui.forEach(t,function(n){d=n.call(o,d,P.normalize(),e?e.status:void 0)}),P.normalize(),d}function G0e(t){return!!(t&&t.__CANCEL__)}function sD(t,e,o){Ic.call(this,t??"canceled",Ic.ERR_CANCELED,e,o),this.name="CanceledError"}ui.inherits(sD,Ic,{__CANCEL__:!0});function Z3e(t,e,o){const f=o.config.validateStatus;!o.status||!f||f(o.status)?t(o):e(new Ic("Request failed with status code "+o.status,[Ic.ERR_BAD_REQUEST,Ic.ERR_BAD_RESPONSE][Math.floor(o.status/100)-4],o.config,o.request,o))}const q3e=o_.hasStandardBrowserEnv?{write(t,e,o,f,P,d){const l=[t+"="+encodeURIComponent(e)];ui.isNumber(o)&&l.push("expires="+new Date(o).toGMTString()),ui.isString(f)&&l.push("path="+f),ui.isString(P)&&l.push("domain="+P),d===!0&&l.push("secure"),document.cookie=l.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function W3e(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function Y3e(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}function K0e(t,e){return t&&!W3e(e)?Y3e(t,e):e}const X3e=o_.hasStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),o=document.createElement("a");let f;function P(d){let l=d;return e&&(o.setAttribute("href",l),l=o.href),o.setAttribute("href",l),{href:o.href,protocol:o.protocol?o.protocol.replace(/:$/,""):"",host:o.host,search:o.search?o.search.replace(/^\?/,""):"",hash:o.hash?o.hash.replace(/^#/,""):"",hostname:o.hostname,port:o.port,pathname:o.pathname.charAt(0)==="/"?o.pathname:"/"+o.pathname}}return f=P(window.location.href),function(l){const n=ui.isString(l)?P(l):l;return n.protocol===f.protocol&&n.host===f.host}}():function(){return function(){return!0}}();function G3e(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function K3e(t,e){t=t||10;const o=new Array(t),f=new Array(t);let P=0,d=0,l;return e=e!==void 0?e:1e3,function(c){const b=Date.now(),i=f[d];l||(l=b),o[P]=c,f[P]=b;let O=d,w=0;for(;O!==P;)w+=o[O++],O=O%t;if(P=(P+1)%t,P===d&&(d=(d+1)%t),b-l{const d=P.loaded,l=P.lengthComputable?P.total:void 0,n=d-o,c=f(n),b=d<=l;o=d;const i={loaded:d,total:l,progress:l?d/l:void 0,bytes:n,rate:c||void 0,estimated:c&&l&&b?(l-d)/c:void 0,event:P};i[e?"download":"upload"]=!0,t(i)}}const J3e=typeof XMLHttpRequest<"u",e4e=J3e&&function(t){return new Promise(function(o,f){let P=t.data;const d=wO.from(t.headers).normalize();let{responseType:l,withXSRFToken:n}=t,c;function b(){t.cancelToken&&t.cancelToken.unsubscribe(c),t.signal&&t.signal.removeEventListener("abort",c)}let i;if(ui.isFormData(P)){if(o_.hasStandardBrowserEnv||o_.hasStandardBrowserWebWorkerEnv)d.setContentType(!1);else if((i=d.getContentType())!==!1){const[a,...u]=i?i.split(";").map(h=>h.trim()).filter(Boolean):[];d.setContentType([a||"multipart/form-data",...u].join("; "))}}let O=new XMLHttpRequest;if(t.auth){const a=t.auth.username||"",u=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";d.set("Authorization","Basic "+btoa(a+":"+u))}const w=K0e(t.baseURL,t.url);O.open(t.method.toUpperCase(),q0e(w,t.params,t.paramsSerializer),!0),O.timeout=t.timeout;function y(){if(!O)return;const a=wO.from("getAllResponseHeaders"in O&&O.getAllResponseHeaders()),h={data:!l||l==="text"||l==="json"?O.responseText:O.response,status:O.status,statusText:O.statusText,headers:a,config:t,request:O};Z3e(function(v){o(v),b()},function(v){f(v),b()},h),O=null}if("onloadend"in O?O.onloadend=y:O.onreadystatechange=function(){!O||O.readyState!==4||O.status===0&&!(O.responseURL&&O.responseURL.indexOf("file:")===0)||setTimeout(y)},O.onabort=function(){O&&(f(new Ic("Request aborted",Ic.ECONNABORTED,t,O)),O=null)},O.onerror=function(){f(new Ic("Network Error",Ic.ERR_NETWORK,t,O)),O=null},O.ontimeout=function(){let u=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const h=t.transitional||W0e;t.timeoutErrorMessage&&(u=t.timeoutErrorMessage),f(new Ic(u,h.clarifyTimeoutError?Ic.ETIMEDOUT:Ic.ECONNABORTED,t,O)),O=null},o_.hasStandardBrowserEnv&&(n&&ui.isFunction(n)&&(n=n(t)),n||n!==!1&&X3e(w))){const a=t.xsrfHeaderName&&t.xsrfCookieName&&q3e.read(t.xsrfCookieName);a&&d.set(t.xsrfHeaderName,a)}P===void 0&&d.setContentType(null),"setRequestHeader"in O&&ui.forEach(d.toJSON(),function(u,h){O.setRequestHeader(h,u)}),ui.isUndefined(t.withCredentials)||(O.withCredentials=!!t.withCredentials),l&&l!=="json"&&(O.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&O.addEventListener("progress",ude(t.onDownloadProgress,!0)),typeof t.onUploadProgress=="function"&&O.upload&&O.upload.addEventListener("progress",ude(t.onUploadProgress)),(t.cancelToken||t.signal)&&(c=a=>{O&&(f(!a||a.type?new sD(null,t,O):a),O.abort(),O=null)},t.cancelToken&&t.cancelToken.subscribe(c),t.signal&&(t.signal.aborted?c():t.signal.addEventListener("abort",c)));const p=G3e(w);if(p&&o_.protocols.indexOf(p)===-1){f(new Ic("Unsupported protocol "+p+":",Ic.ERR_BAD_REQUEST,t));return}O.send(P||null)})},dae={http:S3e,xhr:e4e};ui.forEach(dae,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const fde=t=>`- ${t}`,t4e=t=>ui.isFunction(t)||t===null||t===!1,J0e={getAdapter:t=>{t=ui.isArray(t)?t:[t];const{length:e}=t;let o,f;const P={};for(let d=0;d`adapter ${n} `+(c===!1?"is not supported by the environment":"is not available in the build"));let l=e?d.length>1?`since :
-`+d.map(fde).join(`
-`):" "+fde(d[0]):"as no adapter specified";throw new Ic("There is no suitable adapter to dispatch the request "+l,"ERR_NOT_SUPPORT")}return f},adapters:dae};function Koe(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new sD(null,t)}function dde(t){return Koe(t),t.headers=wO.from(t.headers),t.data=Goe.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),J0e.getAdapter(t.adapter||dle.adapter)(t).then(function(f){return Koe(t),f.data=Goe.call(t,t.transformResponse,f),f.headers=wO.from(f.headers),f},function(f){return G0e(f)||(Koe(t),f&&f.response&&(f.response.data=Goe.call(t,t.transformResponse,f.response),f.response.headers=wO.from(f.response.headers))),Promise.reject(f)})}const hde=t=>t instanceof wO?t.toJSON():t;function nM(t,e){e=e||{};const o={};function f(b,i,O){return ui.isPlainObject(b)&&ui.isPlainObject(i)?ui.merge.call({caseless:O},b,i):ui.isPlainObject(i)?ui.merge({},i):ui.isArray(i)?i.slice():i}function P(b,i,O){if(ui.isUndefined(i)){if(!ui.isUndefined(b))return f(void 0,b,O)}else return f(b,i,O)}function d(b,i){if(!ui.isUndefined(i))return f(void 0,i)}function l(b,i){if(ui.isUndefined(i)){if(!ui.isUndefined(b))return f(void 0,b)}else return f(void 0,i)}function n(b,i,O){if(O in e)return f(b,i);if(O in t)return f(void 0,b)}const c={url:d,method:d,data:d,baseURL:l,transformRequest:l,transformResponse:l,paramsSerializer:l,timeout:l,timeoutMessage:l,withCredentials:l,withXSRFToken:l,adapter:l,responseType:l,xsrfCookieName:l,xsrfHeaderName:l,onUploadProgress:l,onDownloadProgress:l,decompress:l,maxContentLength:l,maxBodyLength:l,beforeRedirect:l,transport:l,httpAgent:l,httpsAgent:l,cancelToken:l,socketPath:l,responseEncoding:l,validateStatus:n,headers:(b,i)=>P(hde(b),hde(i),!0)};return ui.forEach(Object.keys(Object.assign({},t,e)),function(i){const O=c[i]||P,w=O(t[i],e[i],i);ui.isUndefined(w)&&O!==n||(o[i]=w)}),o}const e1e="1.6.2",hle={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{hle[t]=function(f){return typeof f===t||"a"+(e<1?"n ":" ")+t}});const pde={};hle.transitional=function(e,o,f){function P(d,l){return"[Axios v"+e1e+"] Transitional option '"+d+"'"+l+(f?". "+f:"")}return(d,l,n)=>{if(e===!1)throw new Ic(P(l," has been removed"+(o?" in "+o:"")),Ic.ERR_DEPRECATED);return o&&!pde[l]&&(pde[l]=!0,console.warn(P(l," has been deprecated since v"+o+" and will be removed in the near future"))),e?e(d,l,n):!0}};function n4e(t,e,o){if(typeof t!="object")throw new Ic("options must be an object",Ic.ERR_BAD_OPTION_VALUE);const f=Object.keys(t);let P=f.length;for(;P-- >0;){const d=f[P],l=e[d];if(l){const n=t[d],c=n===void 0||l(n,d,t);if(c!==!0)throw new Ic("option "+d+" must be "+c,Ic.ERR_BAD_OPTION_VALUE);continue}if(o!==!0)throw new Ic("Unknown option "+d,Ic.ERR_BAD_OPTION)}}const hae={assertOptions:n4e,validators:hle},I4=hae.validators;class MH{constructor(e){this.defaults=e,this.interceptors={request:new lde,response:new lde}}request(e,o){typeof e=="string"?(o=o||{},o.url=e):o=e||{},o=nM(this.defaults,o);const{transitional:f,paramsSerializer:P,headers:d}=o;f!==void 0&&hae.assertOptions(f,{silentJSONParsing:I4.transitional(I4.boolean),forcedJSONParsing:I4.transitional(I4.boolean),clarifyTimeoutError:I4.transitional(I4.boolean)},!1),P!=null&&(ui.isFunction(P)?o.paramsSerializer={serialize:P}:hae.assertOptions(P,{encode:I4.function,serialize:I4.function},!0)),o.method=(o.method||this.defaults.method||"get").toLowerCase();let l=d&&ui.merge(d.common,d[o.method]);d&&ui.forEach(["delete","get","head","post","put","patch","common"],p=>{delete d[p]}),o.headers=wO.concat(l,d);const n=[];let c=!0;this.interceptors.request.forEach(function(a){typeof a.runWhen=="function"&&a.runWhen(o)===!1||(c=c&&a.synchronous,n.unshift(a.fulfilled,a.rejected))});const b=[];this.interceptors.response.forEach(function(a){b.push(a.fulfilled,a.rejected)});let i,O=0,w;if(!c){const p=[dde.bind(this),void 0];for(p.unshift.apply(p,n),p.push.apply(p,b),w=p.length,i=Promise.resolve(o);O{if(!f._listeners)return;let d=f._listeners.length;for(;d-- >0;)f._listeners[d](P);f._listeners=null}),this.promise.then=P=>{let d;const l=new Promise(n=>{f.subscribe(n),d=n}).then(P);return l.cancel=function(){f.unsubscribe(d)},l},e(function(d,l,n){f.reason||(f.reason=new sD(d,l,n),o(f.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const o=this._listeners.indexOf(e);o!==-1&&this._listeners.splice(o,1)}static source(){let e;return{token:new ple(function(P){e=P}),cancel:e}}}const r4e=ple;function o4e(t){return function(o){return t.apply(null,o)}}function i4e(t){return ui.isObject(t)&&t.isAxiosError===!0}const pae={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(pae).forEach(([t,e])=>{pae[e]=t});const a4e=pae;function t1e(t){const e=new sH(t),o=D0e(sH.prototype.request,e);return ui.extend(o,sH.prototype,e,{allOwnKeys:!0}),ui.extend(o,e,null,{allOwnKeys:!0}),o.create=function(P){return t1e(nM(t,P))},o}const Jh=t1e(dle);Jh.Axios=sH;Jh.CanceledError=sD;Jh.CancelToken=r4e;Jh.isCancel=G0e;Jh.VERSION=e1e;Jh.toFormData=DZ;Jh.AxiosError=Ic;Jh.Cancel=Jh.CanceledError;Jh.all=function(e){return Promise.all(e)};Jh.spread=o4e;Jh.isAxiosError=i4e;Jh.mergeConfig=nM;Jh.AxiosHeaders=wO;Jh.formToJSON=t=>X0e(ui.isHTMLForm(t)?new FormData(t):t);Jh.getAdapter=J0e.getAdapter;Jh.HttpStatusCode=a4e;Jh.default=Jh;const fu=Jh;function mle(t,e){const o=Object.create(null),f=t.split(",");for(let P=0;P!!o[P.toLowerCase()]:P=>!!o[P]}const od={},HA=[],vx=()=>{},s4e=()=>!1,l4e=/^on[^a-z]/,zZ=t=>l4e.test(t),gle=t=>t.startsWith("onUpdate:"),Nh=Object.assign,vle=(t,e)=>{const o=t.indexOf(e);o>-1&&t.splice(o,1)},c4e=Object.prototype.hasOwnProperty,Zc=(t,e)=>c4e.call(t,e),bs=Array.isArray,ZA=t=>FZ(t)==="[object Map]",n1e=t=>FZ(t)==="[object Set]",ll=t=>typeof t=="function",hh=t=>typeof t=="string",yle=t=>typeof t=="symbol",zf=t=>t!==null&&typeof t=="object",r1e=t=>zf(t)&&ll(t.then)&&ll(t.catch),o1e=Object.prototype.toString,FZ=t=>o1e.call(t),u4e=t=>FZ(t).slice(8,-1),i1e=t=>FZ(t)==="[object Object]",ble=t=>hh(t)&&t!=="NaN"&&t[0]!=="-"&&""+parseInt(t,10)===t,lH=mle(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),NZ=t=>{const e=Object.create(null);return o=>e[o]||(e[o]=t(o))},f4e=/-(\w)/g,rb=NZ(t=>t.replace(f4e,(e,o)=>o?o.toUpperCase():"")),d4e=/\B([A-Z])/g,xT=NZ(t=>t.replace(d4e,"-$1").toLowerCase()),v_=NZ(t=>t.charAt(0).toUpperCase()+t.slice(1)),eI=NZ(t=>t?`on${v_(t)}`:""),vI=(t,e)=>!Object.is(t,e),cH=(t,e)=>{for(let o=0;o{Object.defineProperty(t,e,{configurable:!0,enumerable:!1,value:o})},mae=t=>{const e=parseFloat(t);return isNaN(e)?t:e},a1e=t=>{const e=hh(t)?Number(t):NaN;return isNaN(e)?t:e};let mde;const gae=()=>mde||(mde=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function lD(t){if(bs(t)){const e={};for(let o=0;o{if(o){const f=o.split(p4e);f.length>1&&(e[f[0].trim()]=f[1].trim())}}),e}function zv(t){let e="";if(hh(t))e=t;else if(bs(t))for(let o=0;ohh(t)?t:t==null?"":bs(t)||zf(t)&&(t.toString===o1e||!ll(t.toString))?JSON.stringify(t,l1e,2):String(t),l1e=(t,e)=>e&&e.__v_isRef?l1e(t,e.value):ZA(e)?{[`Map(${e.size})`]:[...e.entries()].reduce((o,[f,P])=>(o[`${f} =>`]=P,o),{})}:n1e(e)?{[`Set(${e.size})`]:[...e.values()]}:zf(e)&&!bs(e)&&!i1e(e)?String(e):e;let Ev;class c1e{constructor(e=!1){this.detached=e,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Ev,!e&&Ev&&(this.index=(Ev.scopes||(Ev.scopes=[])).push(this)-1)}get active(){return this._active}run(e){if(this._active){const o=Ev;try{return Ev=this,e()}finally{Ev=o}}}on(){Ev=this}off(){Ev=this.parent}stop(e){if(this._active){let o,f;for(o=0,f=this.effects.length;o{const e=new Set(t);return e.w=0,e.n=0,e},f1e=t=>(t.w&nS)>0,d1e=t=>(t.n&nS)>0,x4e=({deps:t})=>{if(t.length)for(let e=0;e{const{deps:e}=t;if(e.length){let o=0;for(let f=0;f{(i==="length"||i>=c)&&n.push(b)})}else switch(o!==void 0&&n.push(l.get(o)),e){case"add":bs(t)?ble(o)&&n.push(l.get("length")):(n.push(l.get(cT)),ZA(t)&&n.push(l.get(yae)));break;case"delete":bs(t)||(n.push(l.get(cT)),ZA(t)&&n.push(l.get(yae)));break;case"set":ZA(t)&&n.push(l.get(cT));break}if(n.length===1)n[0]&&bae(n[0]);else{const c=[];for(const b of n)b&&c.push(...b);bae(xle(c))}}function bae(t,e){const o=bs(t)?t:[...t];for(const f of o)f.computed&&vde(f);for(const f of o)f.computed||vde(f)}function vde(t,e){(t!==gx||t.allowRecurse)&&(t.scheduler?t.scheduler():t.run())}function w4e(t,e){var o;return(o=PH.get(t))==null?void 0:o.get(e)}const O4e=mle("__proto__,__v_isRef,__isVue"),m1e=new Set(Object.getOwnPropertyNames(Symbol).filter(t=>t!=="arguments"&&t!=="caller").map(t=>Symbol[t]).filter(yle)),S4e=wle(),k4e=wle(!1,!0),T4e=wle(!0),yde=C4e();function C4e(){const t={};return["includes","indexOf","lastIndexOf"].forEach(e=>{t[e]=function(...o){const f=As(this);for(let d=0,l=this.length;d{t[e]=function(...o){SM();const f=As(this)[e].apply(this,o);return kM(),f}}),t}function A4e(t){const e=As(this);return _1(e,"has",t),e.hasOwnProperty(t)}function wle(t=!1,e=!1){return function(f,P,d){if(P==="__v_isReactive")return!t;if(P==="__v_isReadonly")return t;if(P==="__v_isShallow")return e;if(P==="__v_raw"&&d===(t?e?Q4e:x1e:e?b1e:y1e).get(f))return f;const l=bs(f);if(!t){if(l&&Zc(yde,P))return Reflect.get(yde,P,d);if(P==="hasOwnProperty")return A4e}const n=Reflect.get(f,P,d);return(yle(P)?m1e.has(P):O4e(P))||(t||_1(f,"get",P),e)?n:Dc(n)?l&&ble(P)?n:n.value:zf(n)?t?TM(n):lm(n):n}}const M4e=g1e(),E4e=g1e(!0);function g1e(t=!1){return function(o,f,P,d){let l=o[f];if(rM(l)&&Dc(l)&&!Dc(P))return!1;if(!t&&(!RH(P)&&!rM(P)&&(l=As(l),P=As(P)),!bs(o)&&Dc(l)&&!Dc(P)))return l.value=P,!0;const n=bs(o)&&ble(f)?Number(f)t,$Z=t=>Reflect.getPrototypeOf(t);function vQ(t,e,o=!1,f=!1){t=t.__v_raw;const P=As(t),d=As(e);o||(e!==d&&_1(P,"get",e),_1(P,"get",d));const{has:l}=$Z(P),n=f?Ole:o?Tle:yI;if(l.call(P,e))return n(t.get(e));if(l.call(P,d))return n(t.get(d));t!==P&&t.get(e)}function yQ(t,e=!1){const o=this.__v_raw,f=As(o),P=As(t);return e||(t!==P&&_1(f,"has",t),_1(f,"has",P)),t===P?o.has(t):o.has(t)||o.has(P)}function bQ(t,e=!1){return t=t.__v_raw,!e&&_1(As(t),"iterate",cT),Reflect.get(t,"size",t)}function bde(t){t=As(t);const e=As(this);return $Z(e).has.call(e,t)||(e.add(t),kO(e,"add",t,t)),this}function xde(t,e){e=As(e);const o=As(this),{has:f,get:P}=$Z(o);let d=f.call(o,t);d||(t=As(t),d=f.call(o,t));const l=P.call(o,t);return o.set(t,e),d?vI(e,l)&&kO(o,"set",t,e):kO(o,"add",t,e),this}function _de(t){const e=As(this),{has:o,get:f}=$Z(e);let P=o.call(e,t);P||(t=As(t),P=o.call(e,t)),f&&f.call(e,t);const d=e.delete(t);return P&&kO(e,"delete",t,void 0),d}function wde(){const t=As(this),e=t.size!==0,o=t.clear();return e&&kO(t,"clear",void 0,void 0),o}function xQ(t,e){return function(f,P){const d=this,l=d.__v_raw,n=As(l),c=e?Ole:t?Tle:yI;return!t&&_1(n,"iterate",cT),l.forEach((b,i)=>f.call(P,c(b),c(i),d))}}function _Q(t,e,o){return function(...f){const P=this.__v_raw,d=As(P),l=ZA(d),n=t==="entries"||t===Symbol.iterator&&l,c=t==="keys"&&l,b=P[t](...f),i=o?Ole:e?Tle:yI;return!e&&_1(d,"iterate",c?yae:cT),{next(){const{value:O,done:w}=b.next();return w?{value:O,done:w}:{value:n?[i(O[0]),i(O[1])]:i(O),done:w}},[Symbol.iterator](){return this}}}}function D4(t){return function(...e){return t==="delete"?!1:this}}function B4e(){const t={get(d){return vQ(this,d)},get size(){return bQ(this)},has:yQ,add:bde,set:xde,delete:_de,clear:wde,forEach:xQ(!1,!1)},e={get(d){return vQ(this,d,!1,!0)},get size(){return bQ(this)},has:yQ,add:bde,set:xde,delete:_de,clear:wde,forEach:xQ(!1,!0)},o={get(d){return vQ(this,d,!0)},get size(){return bQ(this,!0)},has(d){return yQ.call(this,d,!0)},add:D4("add"),set:D4("set"),delete:D4("delete"),clear:D4("clear"),forEach:xQ(!0,!1)},f={get(d){return vQ(this,d,!0,!0)},get size(){return bQ(this,!0)},has(d){return yQ.call(this,d,!0)},add:D4("add"),set:D4("set"),delete:D4("delete"),clear:D4("clear"),forEach:xQ(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(d=>{t[d]=_Q(d,!1,!1),o[d]=_Q(d,!0,!1),e[d]=_Q(d,!1,!0),f[d]=_Q(d,!0,!0)}),[t,o,e,f]}const[z4e,F4e,N4e,$4e]=B4e();function Sle(t,e){const o=e?t?$4e:N4e:t?F4e:z4e;return(f,P,d)=>P==="__v_isReactive"?!t:P==="__v_isReadonly"?t:P==="__v_raw"?f:Reflect.get(Zc(o,P)&&P in f?o:f,P,d)}const V4e={get:Sle(!1,!1)},U4e={get:Sle(!1,!0)},j4e={get:Sle(!0,!1)},y1e=new WeakMap,b1e=new WeakMap,x1e=new WeakMap,Q4e=new WeakMap;function H4e(t){switch(t){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Z4e(t){return t.__v_skip||!Object.isExtensible(t)?0:H4e(u4e(t))}function lm(t){return rM(t)?t:kle(t,!1,v1e,V4e,y1e)}function _1e(t){return kle(t,!1,D4e,U4e,b1e)}function TM(t){return kle(t,!0,I4e,j4e,x1e)}function kle(t,e,o,f,P){if(!zf(t)||t.__v_raw&&!(e&&t.__v_isReactive))return t;const d=P.get(t);if(d)return d;const l=Z4e(t);if(l===0)return t;const n=new Proxy(t,l===2?f:o);return P.set(t,n),n}function OO(t){return rM(t)?OO(t.__v_raw):!!(t&&t.__v_isReactive)}function rM(t){return!!(t&&t.__v_isReadonly)}function RH(t){return!!(t&&t.__v_isShallow)}function w1e(t){return OO(t)||rM(t)}function As(t){const e=t&&t.__v_raw;return e?As(e):t}function uD(t){return EH(t,"__v_skip",!0),t}const yI=t=>zf(t)?lm(t):t,Tle=t=>zf(t)?TM(t):t;function O1e(t){G4&&gx&&(t=As(t),p1e(t.dep||(t.dep=xle())))}function S1e(t,e){t=As(t);const o=t.dep;o&&bae(o)}function Dc(t){return!!(t&&t.__v_isRef===!0)}function ei(t){return k1e(t,!1)}function Ai(t){return k1e(t,!0)}function k1e(t,e){return Dc(t)?t:new q4e(t,e)}class q4e{constructor(e,o){this.__v_isShallow=o,this.dep=void 0,this.__v_isRef=!0,this._rawValue=o?e:As(e),this._value=o?e:yI(e)}get value(){return O1e(this),this._value}set value(e){const o=this.__v_isShallow||RH(e)||rM(e);e=o?e:As(e),vI(e,this._rawValue)&&(this._rawValue=e,this._value=o?e:yI(e),S1e(this))}}function wa(t){return Dc(t)?t.value:t}const W4e={get:(t,e,o)=>wa(Reflect.get(t,e,o)),set:(t,e,o,f)=>{const P=t[e];return Dc(P)&&!Dc(o)?(P.value=o,!0):Reflect.set(t,e,o,f)}};function T1e(t){return OO(t)?t:new Proxy(t,W4e)}function CM(t){const e=bs(t)?new Array(t.length):{};for(const o in t)e[o]=C1e(t,o);return e}class Y4e{constructor(e,o,f){this._object=e,this._key=o,this._defaultValue=f,this.__v_isRef=!0}get value(){const e=this._object[this._key];return e===void 0?this._defaultValue:e}set value(e){this._object[this._key]=e}get dep(){return w4e(As(this._object),this._key)}}class X4e{constructor(e){this._getter=e,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Oi(t,e,o){return Dc(t)?t:ll(t)?new X4e(t):zf(t)&&arguments.length>1?C1e(t,e,o):ei(t)}function C1e(t,e,o){const f=t[e];return Dc(f)?f:new Y4e(t,e,o)}class G4e{constructor(e,o,f,P){this._setter=o,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new _le(e,()=>{this._dirty||(this._dirty=!0,S1e(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!P,this.__v_isReadonly=f}get value(){const e=As(this);return O1e(e),(e._dirty||!e._cacheable)&&(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function K4e(t,e,o=!1){let f,P;const d=ll(t);return d?(f=t,P=vx):(f=t.get,P=t.set),new G4e(f,P,d||!P,o)}function K4(t,e,o,f){let P;try{P=f?t(...f):t()}catch(d){fD(d,e,o)}return P}function eb(t,e,o,f){if(ll(t)){const d=K4(t,e,o,f);return d&&r1e(d)&&d.catch(l=>{fD(l,e,o)}),d}const P=[];for(let d=0;d>>1;xI(Ng[f])e_&&Ng.splice(e,1)}function E1e(t){bs(t)?qA.push(...t):(!xO||!xO.includes(t,t.allowRecurse?Jk+1:Jk))&&qA.push(t),M1e()}function Ode(t,e=bI?e_+1:0){for(;exI(o)-xI(f)),Jk=0;Jkt.id==null?1/0:t.id,nSe=(t,e)=>{const o=xI(t)-xI(e);if(o===0){if(t.pre&&!e.pre)return-1;if(e.pre&&!t.pre)return 1}return o};function R1e(t){xae=!1,bI=!0,Ng.sort(nSe);const e=vx;try{for(e_=0;e_hh(y)?y.trim():y)),O&&(P=o.map(mae))}let n,c=f[n=eI(e)]||f[n=eI(rb(e))];!c&&d&&(c=f[n=eI(xT(e))]),c&&eb(c,t,6,P);const b=f[n+"Once"];if(b){if(!t.emitted)t.emitted={};else if(t.emitted[n])return;t.emitted[n]=!0,eb(b,t,6,P)}}function L1e(t,e,o=!1){const f=e.emitsCache,P=f.get(t);if(P!==void 0)return P;const d=t.emits;let l={},n=!1;if(!ll(t)){const c=b=>{const i=L1e(b,e,!0);i&&(n=!0,Nh(l,i))};!o&&e.mixins.length&&e.mixins.forEach(c),t.extends&&c(t.extends),t.mixins&&t.mixins.forEach(c)}return!d&&!n?(zf(t)&&f.set(t,null),null):(bs(d)?d.forEach(c=>l[c]=null):Nh(l,d),zf(t)&&f.set(t,l),l)}function VZ(t,e){return!t||!zZ(e)?!1:(e=e.slice(2).replace(/Once$/,""),Zc(t,e[0].toLowerCase()+e.slice(1))||Zc(t,xT(e))||Zc(t,e))}let cm=null,UZ=null;function LH(t){const e=cm;return cm=t,UZ=t&&t.type.__scopeId||null,e}function Mle(t){UZ=t}function Ele(){UZ=null}function Oo(t,e=cm,o){if(!e||t._n)return t;const f=(...P)=>{f._d&&Fde(-1);const d=LH(e);let l;try{l=t(...P)}finally{LH(d),f._d&&Fde(1)}return l};return f._n=!0,f._c=!0,f._d=!0,f}function Joe(t){const{type:e,vnode:o,proxy:f,withProxy:P,props:d,propsOptions:[l],slots:n,attrs:c,emit:b,render:i,renderCache:O,data:w,setupState:y,ctx:p,inheritAttrs:a}=t;let u,h;const m=LH(t);try{if(o.shapeFlag&4){const _=P||f;u=hx(i.call(_,_,O,d,y,w,p)),h=c}else{const _=e;u=hx(_.length>1?_(d,{attrs:c,slots:n,emit:b}):_(d,null)),h=e.props?c:iSe(c)}}catch(_){oI.length=0,fD(_,t,1),u=Zt(k0)}let v=u;if(h&&a!==!1){const _=Object.keys(h),{shapeFlag:S}=v;_.length&&S&7&&(l&&_.some(gle)&&(h=aSe(h,l)),v=TO(v,h))}return o.dirs&&(v=TO(v),v.dirs=v.dirs?v.dirs.concat(o.dirs):o.dirs),o.transition&&(v.transition=o.transition),u=v,LH(m),u}function oSe(t){let e;for(let o=0;o{let e;for(const o in t)(o==="class"||o==="style"||zZ(o))&&((e||(e={}))[o]=t[o]);return e},aSe=(t,e)=>{const o={};for(const f in t)(!gle(f)||!(f.slice(9)in e))&&(o[f]=t[f]);return o};function sSe(t,e,o){const{props:f,children:P,component:d}=t,{props:l,children:n,patchFlag:c}=e,b=d.emitsOptions;if(e.dirs||e.transition)return!0;if(o&&c>=0){if(c&1024)return!0;if(c&16)return f?Sde(f,l,b):!!l;if(c&8){const i=e.dynamicProps;for(let O=0;Ot.__isSuspense,cSe={name:"Suspense",__isSuspense:!0,process(t,e,o,f,P,d,l,n,c,b){t==null?fSe(e,o,f,P,d,l,n,c,b):dSe(t,e,o,f,P,l,n,c,b)},hydrate:hSe,create:Rle,normalize:pSe},uSe=cSe;function _I(t,e){const o=t.props&&t.props[e];ll(o)&&o()}function fSe(t,e,o,f,P,d,l,n,c){const{p:b,o:{createElement:i}}=c,O=i("div"),w=t.suspense=Rle(t,P,f,e,O,o,d,l,n,c);b(null,w.pendingBranch=t.ssContent,O,null,f,w,d,l),w.deps>0?(_I(t,"onPending"),_I(t,"onFallback"),b(null,t.ssFallback,e,o,f,null,d,l),WA(w,t.ssFallback)):w.resolve(!1,!0)}function dSe(t,e,o,f,P,d,l,n,{p:c,um:b,o:{createElement:i}}){const O=e.suspense=t.suspense;O.vnode=e,e.el=t.el;const w=e.ssContent,y=e.ssFallback,{activeBranch:p,pendingBranch:a,isInFallback:u,isHydrating:h}=O;if(a)O.pendingBranch=w,t_(w,a)?(c(a,w,O.hiddenContainer,null,P,O,d,l,n),O.deps<=0?O.resolve():u&&(c(p,y,o,f,P,null,d,l,n),WA(O,y))):(O.pendingId++,h?(O.isHydrating=!1,O.activeBranch=a):b(a,P,O),O.deps=0,O.effects.length=0,O.hiddenContainer=i("div"),u?(c(null,w,O.hiddenContainer,null,P,O,d,l,n),O.deps<=0?O.resolve():(c(p,y,o,f,P,null,d,l,n),WA(O,y))):p&&t_(w,p)?(c(p,w,o,f,P,O,d,l,n),O.resolve(!0)):(c(null,w,O.hiddenContainer,null,P,O,d,l,n),O.deps<=0&&O.resolve()));else if(p&&t_(w,p))c(p,w,o,f,P,O,d,l,n),WA(O,w);else if(_I(e,"onPending"),O.pendingBranch=w,O.pendingId++,c(null,w,O.hiddenContainer,null,P,O,d,l,n),O.deps<=0)O.resolve();else{const{timeout:m,pendingId:v}=O;m>0?setTimeout(()=>{O.pendingId===v&&O.fallback(y)},m):m===0&&O.fallback(y)}}function Rle(t,e,o,f,P,d,l,n,c,b,i=!1){const{p:O,m:w,um:y,n:p,o:{parentNode:a,remove:u}}=b;let h;const m=gSe(t);m&&e!=null&&e.pendingBranch&&(h=e.pendingId,e.deps++);const v=t.props?a1e(t.props.timeout):void 0,_={vnode:t,parent:e,parentComponent:o,isSVG:l,container:f,hiddenContainer:P,anchor:d,deps:0,pendingId:0,timeout:typeof v=="number"?v:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:i,isUnmounted:!1,effects:[],resolve(S=!1,A=!1){const{vnode:x,activeBranch:R,pendingBranch:M,pendingId:T,effects:E,parentComponent:C,container:L}=_;if(_.isHydrating)_.isHydrating=!1;else if(!S){const I=R&&M.transition&&M.transition.mode==="out-in";I&&(R.transition.afterLeave=()=>{T===_.pendingId&&w(M,L,z,0)});let{anchor:z}=_;R&&(z=p(R),y(R,C,_,!0)),I||w(M,L,z,0)}WA(_,M),_.pendingBranch=null,_.isInFallback=!1;let D=_.parent,k=!1;for(;D;){if(D.pendingBranch){D.effects.push(...E),k=!0;break}D=D.parent}k||E1e(E),_.effects=[],m&&e&&e.pendingBranch&&h===e.pendingId&&(e.deps--,e.deps===0&&!A&&e.resolve()),_I(x,"onResolve")},fallback(S){if(!_.pendingBranch)return;const{vnode:A,activeBranch:x,parentComponent:R,container:M,isSVG:T}=_;_I(A,"onFallback");const E=p(x),C=()=>{_.isInFallback&&(O(null,S,M,E,R,null,T,n,c),WA(_,S))},L=S.transition&&S.transition.mode==="out-in";L&&(x.transition.afterLeave=C),_.isInFallback=!0,y(x,R,null,!0),L||C()},move(S,A,x){_.activeBranch&&w(_.activeBranch,S,A,x),_.container=S},next(){return _.activeBranch&&p(_.activeBranch)},registerDep(S,A){const x=!!_.pendingBranch;x&&_.deps++;const R=S.vnode.el;S.asyncDep.catch(M=>{fD(M,S,0)}).then(M=>{if(S.isUnmounted||_.isUnmounted||_.pendingId!==S.suspenseId)return;S.asyncResolved=!0;const{vnode:T}=S;Cae(S,M,!1),R&&(T.el=R);const E=!R&&S.subTree.el;A(S,T,a(R||S.subTree.el),R?null:p(S.subTree),_,l,c),E&&u(E),Ple(S,T.el),x&&--_.deps===0&&_.resolve()})},unmount(S,A){_.isUnmounted=!0,_.activeBranch&&y(_.activeBranch,o,S,A),_.pendingBranch&&y(_.pendingBranch,o,S,A)}};return _}function hSe(t,e,o,f,P,d,l,n,c){const b=e.suspense=Rle(e,f,o,t.parentNode,document.createElement("div"),null,P,d,l,n,!0),i=c(t,b.pendingBranch=e.ssContent,o,b,d,l);return b.deps===0&&b.resolve(!1,!0),i}function pSe(t){const{shapeFlag:e,children:o}=t,f=e&32;t.ssContent=kde(f?o.default:o),t.ssFallback=f?kde(o.fallback):Zt(k0)}function kde(t){let e;if(ll(t)){const o=oM&&t._c;o&&(t._d=!1,Bo()),t=t(),o&&(t._d=!0,e=Yy,G1e())}return bs(t)&&(t=oSe(t)),t=hx(t),e&&!t.dynamicChildren&&(t.dynamicChildren=e.filter(o=>o!==t)),t}function mSe(t,e){e&&e.pendingBranch?bs(t)?e.effects.push(...t):e.effects.push(t):E1e(t)}function WA(t,e){t.activeBranch=e;const{vnode:o,parentComponent:f}=t,P=o.el=e.el;f&&f.subTree===o&&(f.vnode.el=P,Ple(f,P))}function gSe(t){var e;return((e=t.props)==null?void 0:e.suspensible)!=null&&t.props.suspensible!==!1}function kp(t,e){return Lle(t,null,e)}const wQ={};function Ni(t,e,o){return Lle(t,e,o)}function Lle(t,e,{immediate:o,deep:f,flush:P,onTrack:d,onTrigger:l}=od){var n;const c=u1e()===((n=Op)==null?void 0:n.scope)?Op:null;let b,i=!1,O=!1;if(Dc(t)?(b=()=>t.value,i=RH(t)):OO(t)?(b=()=>t,f=!0):bs(t)?(O=!0,i=t.some(_=>OO(_)||RH(_)),b=()=>t.map(_=>{if(Dc(_))return _.value;if(OO(_))return oT(_);if(ll(_))return K4(_,c,2)})):ll(t)?e?b=()=>K4(t,c,2):b=()=>{if(!(c&&c.isUnmounted))return w&&w(),eb(t,c,3,[y])}:b=vx,e&&f){const _=b;b=()=>oT(_())}let w,y=_=>{w=m.onStop=()=>{K4(_,c,4)}},p;if(TI)if(y=vx,e?o&&eb(e,c,3,[b(),O?[]:void 0,y]):b(),P==="sync"){const _=a5e();p=_.__watcherHandles||(_.__watcherHandles=[])}else return vx;let a=O?new Array(t.length).fill(wQ):wQ;const u=()=>{if(m.active)if(e){const _=m.run();(f||i||(O?_.some((S,A)=>vI(S,a[A])):vI(_,a)))&&(w&&w(),eb(e,c,3,[_,a===wQ?void 0:O&&a[0]===wQ?[]:a,y]),a=_)}else m.run()};u.allowRecurse=!!e;let h;P==="sync"?h=u:P==="post"?h=()=>g1(u,c&&c.suspense):(u.pre=!0,c&&(u.id=c.uid),h=()=>Ale(u));const m=new _le(b,h);e?o?u():a=m.run():P==="post"?g1(m.run.bind(m),c&&c.suspense):m.run();const v=()=>{m.stop(),c&&c.scope&&vle(c.scope.effects,m)};return p&&p.push(v),v}function vSe(t,e,o){const f=this.proxy,P=hh(t)?t.includes(".")?I1e(f,t):()=>f[t]:t.bind(f,f);let d;ll(e)?d=e:(d=e.handler,o=e);const l=Op;aM(this);const n=Lle(P,d.bind(f),o);return l?aM(l):uT(),n}function I1e(t,e){const o=e.split(".");return()=>{let f=t;for(let P=0;P{oT(o,e)});else if(i1e(t))for(const o in t)oT(t[o],e);return t}function Tp(t,e){const o=cm;if(o===null)return t;const f=ZZ(o)||o.proxy,P=t.dirs||(t.dirs=[]);for(let d=0;d{t.isMounted=!0}),dm(()=>{t.isUnmounting=!0}),t}const Zy=[Function,Array],B1e={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Zy,onEnter:Zy,onAfterEnter:Zy,onEnterCancelled:Zy,onBeforeLeave:Zy,onLeave:Zy,onAfterLeave:Zy,onLeaveCancelled:Zy,onBeforeAppear:Zy,onAppear:Zy,onAfterAppear:Zy,onAppearCancelled:Zy},ySe={name:"BaseTransition",props:B1e,setup(t,{slots:e}){const o=Zle(),f=D1e();let P;return()=>{const d=e.default&&Ile(e.default(),!0);if(!d||!d.length)return;let l=d[0];if(d.length>1){for(const a of d)if(a.type!==k0){l=a;break}}const n=As(t),{mode:c}=n;if(f.isLeaving)return eie(l);const b=Tde(l);if(!b)return eie(l);const i=wI(b,n,f,o);OI(b,i);const O=o.subTree,w=O&&Tde(O);let y=!1;const{getTransitionKey:p}=b.type;if(p){const a=p();P===void 0?P=a:a!==P&&(P=a,y=!0)}if(w&&w.type!==k0&&(!t_(b,w)||y)){const a=wI(w,n,f,o);if(OI(w,a),c==="out-in")return f.isLeaving=!0,a.afterLeave=()=>{f.isLeaving=!1,o.update.active!==!1&&o.update()},eie(l);c==="in-out"&&b.type!==k0&&(a.delayLeave=(u,h,m)=>{const v=z1e(f,w);v[String(w.key)]=w,u._leaveCb=()=>{h(),u._leaveCb=void 0,delete i.delayedLeave},i.delayedLeave=m})}return l}}},bSe=ySe;function z1e(t,e){const{leavingVNodes:o}=t;let f=o.get(e.type);return f||(f=Object.create(null),o.set(e.type,f)),f}function wI(t,e,o,f){const{appear:P,mode:d,persisted:l=!1,onBeforeEnter:n,onEnter:c,onAfterEnter:b,onEnterCancelled:i,onBeforeLeave:O,onLeave:w,onAfterLeave:y,onLeaveCancelled:p,onBeforeAppear:a,onAppear:u,onAfterAppear:h,onAppearCancelled:m}=e,v=String(t.key),_=z1e(o,t),S=(R,M)=>{R&&eb(R,f,9,M)},A=(R,M)=>{const T=M[1];S(R,M),bs(R)?R.every(E=>E.length<=1)&&T():R.length<=1&&T()},x={mode:d,persisted:l,beforeEnter(R){let M=n;if(!o.isMounted)if(P)M=a||n;else return;R._leaveCb&&R._leaveCb(!0);const T=_[v];T&&t_(t,T)&&T.el._leaveCb&&T.el._leaveCb(),S(M,[R])},enter(R){let M=c,T=b,E=i;if(!o.isMounted)if(P)M=u||c,T=h||b,E=m||i;else return;let C=!1;const L=R._enterCb=D=>{C||(C=!0,D?S(E,[R]):S(T,[R]),x.delayedLeave&&x.delayedLeave(),R._enterCb=void 0)};M?A(M,[R,L]):L()},leave(R,M){const T=String(t.key);if(R._enterCb&&R._enterCb(!0),o.isUnmounting)return M();S(O,[R]);let E=!1;const C=R._leaveCb=L=>{E||(E=!0,M(),L?S(p,[R]):S(y,[R]),R._leaveCb=void 0,_[T]===t&&delete _[T])};_[T]=t,w?A(w,[R,C]):C()},clone(R){return wI(R,e,o,f)}};return x}function eie(t){if(jZ(t))return t=TO(t),t.children=null,t}function Tde(t){return jZ(t)?t.children?t.children[0]:void 0:t}function OI(t,e){t.shapeFlag&6&&t.component?OI(t.component.subTree,e):t.shapeFlag&128?(t.ssContent.transition=e.clone(t.ssContent),t.ssFallback.transition=e.clone(t.ssFallback)):t.transition=e}function Ile(t,e=!1,o){let f=[],P=0;for(let d=0;d1)for(let d=0;dNh({name:t.name},e,{setup:t}))():t}const tI=t=>!!t.type.__asyncLoader,jZ=t=>t.type.__isKeepAlive;function Dle(t,e){F1e(t,"a",e)}function Ble(t,e){F1e(t,"da",e)}function F1e(t,e,o=Op){const f=t.__wdc||(t.__wdc=()=>{let P=o;for(;P;){if(P.isDeactivated)return;P=P.parent}return t()});if(QZ(e,f,o),o){let P=o.parent;for(;P&&P.parent;)jZ(P.parent.vnode)&&xSe(f,e,o,P),P=P.parent}}function xSe(t,e,o,f){const P=QZ(e,t,f,!0);Nle(()=>{vle(f[e],P)},o)}function QZ(t,e,o=Op,f=!1){if(o){const P=o[t]||(o[t]=[]),d=e.__weh||(e.__weh=(...l)=>{if(o.isUnmounted)return;SM(),aM(o);const n=eb(e,o,t,l);return uT(),kM(),n});return f?P.unshift(d):P.push(d),d}}const RO=t=>(e,o=Op)=>(!TI||t==="sp")&&QZ(t,(...f)=>e(...f),o),zle=RO("bm"),ag=RO("m"),N1e=RO("bu"),Fle=RO("u"),dm=RO("bum"),Nle=RO("um"),_Se=RO("sp"),wSe=RO("rtg"),OSe=RO("rtc");function SSe(t,e=Op){QZ("ec",t,e)}const $le="components",kSe="directives";function Zd(t,e){return Vle($le,t,!0,e)||t}const $1e=Symbol.for("v-ndc");function SI(t){return hh(t)?Vle($le,t,!1)||t:t||$1e}function y_(t){return Vle(kSe,t)}function Vle(t,e,o=!0,f=!1){const P=cm||Op;if(P){const d=P.type;if(t===$le){const n=r5e(d,!1);if(n&&(n===e||n===rb(e)||n===v_(rb(e))))return d}const l=Cde(P[t]||d[t],e)||Cde(P.appContext[t],e);return!l&&f?d:l}}function Cde(t,e){return t&&(t[e]||t[rb(e)]||t[v_(rb(e))])}function ob(t,e,o,f){let P;const d=o&&o[f];if(bs(t)||hh(t)){P=new Array(t.length);for(let l=0,n=t.length;le(l,n,void 0,d&&d[n]));else{const l=Object.keys(t);P=new Array(l.length);for(let n=0,c=l.length;n{const d=f.fn(...P);return d&&(d.key=f.key),d}:f.fn)}return t}function Ade(t,e,o={},f,P){if(cm.isCE||cm.parent&&tI(cm.parent)&&cm.parent.isCE)return e!=="default"&&(o.name=e),Zt("slot",o,f&&f());let d=t[e];d&&d._c&&(d._d=!1),Bo();const l=d&&U1e(d(o)),n=la(ya,{key:o.key||l&&l.key||`_${e}`},l||(f?f():[]),l&&t._===1?64:-2);return!P&&n.scopeId&&(n.slotScopeIds=[n.scopeId+"-s"]),d&&d._c&&(d._d=!0),n}function U1e(t){return t.some(e=>iM(e)?!(e.type===k0||e.type===ya&&!U1e(e.children)):!0)?t:null}function TSe(t,e){const o={};for(const f in t)o[e&&/[A-Z]/.test(f)?`on:${f}`:eI(f)]=t[f];return o}const _ae=t=>t?eve(t)?ZZ(t)||t.proxy:_ae(t.parent):null,nI=Nh(Object.create(null),{$:t=>t,$el:t=>t.vnode.el,$data:t=>t.data,$props:t=>t.props,$attrs:t=>t.attrs,$slots:t=>t.slots,$refs:t=>t.refs,$parent:t=>_ae(t.parent),$root:t=>_ae(t.root),$emit:t=>t.emit,$options:t=>Ule(t),$forceUpdate:t=>t.f||(t.f=()=>Ale(t.update)),$nextTick:t=>t.n||(t.n=lc.bind(t.proxy)),$watch:t=>vSe.bind(t)}),tie=(t,e)=>t!==od&&!t.__isScriptSetup&&Zc(t,e),CSe={get({_:t},e){const{ctx:o,setupState:f,data:P,props:d,accessCache:l,type:n,appContext:c}=t;let b;if(e[0]!=="$"){const y=l[e];if(y!==void 0)switch(y){case 1:return f[e];case 2:return P[e];case 4:return o[e];case 3:return d[e]}else{if(tie(f,e))return l[e]=1,f[e];if(P!==od&&Zc(P,e))return l[e]=2,P[e];if((b=t.propsOptions[0])&&Zc(b,e))return l[e]=3,d[e];if(o!==od&&Zc(o,e))return l[e]=4,o[e];wae&&(l[e]=0)}}const i=nI[e];let O,w;if(i)return e==="$attrs"&&_1(t,"get",e),i(t);if((O=n.__cssModules)&&(O=O[e]))return O;if(o!==od&&Zc(o,e))return l[e]=4,o[e];if(w=c.config.globalProperties,Zc(w,e))return w[e]},set({_:t},e,o){const{data:f,setupState:P,ctx:d}=t;return tie(P,e)?(P[e]=o,!0):f!==od&&Zc(f,e)?(f[e]=o,!0):Zc(t.props,e)||e[0]==="$"&&e.slice(1)in t?!1:(d[e]=o,!0)},has({_:{data:t,setupState:e,accessCache:o,ctx:f,appContext:P,propsOptions:d}},l){let n;return!!o[l]||t!==od&&Zc(t,l)||tie(e,l)||(n=d[0])&&Zc(n,l)||Zc(f,l)||Zc(nI,l)||Zc(P.config.globalProperties,l)},defineProperty(t,e,o){return o.get!=null?t._.accessCache[e]=0:Zc(o,"value")&&this.set(t,e,o.value,null),Reflect.defineProperty(t,e,o)}};function Mde(t){return bs(t)?t.reduce((e,o)=>(e[o]=null,e),{}):t}let wae=!0;function ASe(t){const e=Ule(t),o=t.proxy,f=t.ctx;wae=!1,e.beforeCreate&&Ede(e.beforeCreate,t,"bc");const{data:P,computed:d,methods:l,watch:n,provide:c,inject:b,created:i,beforeMount:O,mounted:w,beforeUpdate:y,updated:p,activated:a,deactivated:u,beforeDestroy:h,beforeUnmount:m,destroyed:v,unmounted:_,render:S,renderTracked:A,renderTriggered:x,errorCaptured:R,serverPrefetch:M,expose:T,inheritAttrs:E,components:C,directives:L,filters:D}=e;if(b&&MSe(b,f,null),l)for(const z in l){const $=l[z];ll($)&&(f[z]=$.bind(o))}if(P){const z=P.call(o,o);zf(z)&&(t.data=lm(z))}if(wae=!0,d)for(const z in d){const $=d[z],Q=ll($)?$.bind(o,o):ll($.get)?$.get.bind(o,o):vx,j=!ll($)&&ll($.set)?$.set.bind(o):vx,U=jn({get:Q,set:j});Object.defineProperty(f,z,{enumerable:!0,configurable:!0,get:()=>U.value,set:X=>U.value=X})}if(n)for(const z in n)j1e(n[z],f,o,z);if(c){const z=ll(c)?c.call(o):c;Reflect.ownKeys(z).forEach($=>{gf($,z[$])})}i&&Ede(i,t,"c");function I(z,$){bs($)?$.forEach(Q=>z(Q.bind(o))):$&&z($.bind(o))}if(I(zle,O),I(ag,w),I(N1e,y),I(Fle,p),I(Dle,a),I(Ble,u),I(SSe,R),I(OSe,A),I(wSe,x),I(dm,m),I(Nle,_),I(_Se,M),bs(T))if(T.length){const z=t.exposed||(t.exposed={});T.forEach($=>{Object.defineProperty(z,$,{get:()=>o[$],set:Q=>o[$]=Q})})}else t.exposed||(t.exposed={});S&&t.render===vx&&(t.render=S),E!=null&&(t.inheritAttrs=E),C&&(t.components=C),L&&(t.directives=L)}function MSe(t,e,o=vx){bs(t)&&(t=Oae(t));for(const f in t){const P=t[f];let d;zf(P)?"default"in P?d=vl(P.from||f,P.default,!0):d=vl(P.from||f):d=vl(P),Dc(d)?Object.defineProperty(e,f,{enumerable:!0,configurable:!0,get:()=>d.value,set:l=>d.value=l}):e[f]=d}}function Ede(t,e,o){eb(bs(t)?t.map(f=>f.bind(e.proxy)):t.bind(e.proxy),e,o)}function j1e(t,e,o,f){const P=f.includes(".")?I1e(o,f):()=>o[f];if(hh(t)){const d=e[t];ll(d)&&Ni(P,d)}else if(ll(t))Ni(P,t.bind(o));else if(zf(t))if(bs(t))t.forEach(d=>j1e(d,e,o,f));else{const d=ll(t.handler)?t.handler.bind(o):e[t.handler];ll(d)&&Ni(P,d,t)}}function Ule(t){const e=t.type,{mixins:o,extends:f}=e,{mixins:P,optionsCache:d,config:{optionMergeStrategies:l}}=t.appContext,n=d.get(e);let c;return n?c=n:!P.length&&!o&&!f?c=e:(c={},P.length&&P.forEach(b=>IH(c,b,l,!0)),IH(c,e,l)),zf(e)&&d.set(e,c),c}function IH(t,e,o,f=!1){const{mixins:P,extends:d}=e;d&&IH(t,d,o,!0),P&&P.forEach(l=>IH(t,l,o,!0));for(const l in e)if(!(f&&l==="expose")){const n=ESe[l]||o&&o[l];t[l]=n?n(t[l],e[l]):e[l]}return t}const ESe={data:Pde,props:Rde,emits:Rde,methods:qL,computed:qL,beforeCreate:O0,created:O0,beforeMount:O0,mounted:O0,beforeUpdate:O0,updated:O0,beforeDestroy:O0,beforeUnmount:O0,destroyed:O0,unmounted:O0,activated:O0,deactivated:O0,errorCaptured:O0,serverPrefetch:O0,components:qL,directives:qL,watch:RSe,provide:Pde,inject:PSe};function Pde(t,e){return e?t?function(){return Nh(ll(t)?t.call(this,this):t,ll(e)?e.call(this,this):e)}:e:t}function PSe(t,e){return qL(Oae(t),Oae(e))}function Oae(t){if(bs(t)){const e={};for(let o=0;o1)return o&&ll(e)?e.call(f&&f.proxy):e}}function DSe(){return!!(Op||cm||kI)}function BSe(t,e,o,f=!1){const P={},d={};EH(d,HZ,1),t.propsDefaults=Object.create(null),H1e(t,e,P,d);for(const l in t.propsOptions[0])l in P||(P[l]=void 0);o?t.props=f?P:_1e(P):t.type.props?t.props=P:t.props=d,t.attrs=d}function zSe(t,e,o,f){const{props:P,attrs:d,vnode:{patchFlag:l}}=t,n=As(P),[c]=t.propsOptions;let b=!1;if((f||l>0)&&!(l&16)){if(l&8){const i=t.vnode.dynamicProps;for(let O=0;O{c=!0;const[w,y]=Z1e(O,e,!0);Nh(l,w),y&&n.push(...y)};!o&&e.mixins.length&&e.mixins.forEach(i),t.extends&&i(t.extends),t.mixins&&t.mixins.forEach(i)}if(!d&&!c)return zf(t)&&f.set(t,HA),HA;if(bs(d))for(let i=0;i-1,y[1]=a<0||p-1||Zc(y,"default"))&&n.push(O)}}}const b=[l,n];return zf(t)&&f.set(t,b),b}function Lde(t){return t[0]!=="$"}function Ide(t){const e=t&&t.toString().match(/^\s*(function|class) (\w+)/);return e?e[2]:t===null?"null":""}function Dde(t,e){return Ide(t)===Ide(e)}function Bde(t,e){return bs(e)?e.findIndex(o=>Dde(o,t)):ll(e)&&Dde(e,t)?0:-1}const q1e=t=>t[0]==="_"||t==="$stable",jle=t=>bs(t)?t.map(hx):[hx(t)],FSe=(t,e,o)=>{if(e._n)return e;const f=Oo((...P)=>jle(e(...P)),o);return f._c=!1,f},W1e=(t,e,o)=>{const f=t._ctx;for(const P in t){if(q1e(P))continue;const d=t[P];if(ll(d))e[P]=FSe(P,d,f);else if(d!=null){const l=jle(d);e[P]=()=>l}}},Y1e=(t,e)=>{const o=jle(e);t.slots.default=()=>o},NSe=(t,e)=>{if(t.vnode.shapeFlag&32){const o=e._;o?(t.slots=As(e),EH(e,"_",o)):W1e(e,t.slots={})}else t.slots={},e&&Y1e(t,e);EH(t.slots,HZ,1)},$Se=(t,e,o)=>{const{vnode:f,slots:P}=t;let d=!0,l=od;if(f.shapeFlag&32){const n=e._;n?o&&n===1?d=!1:(Nh(P,e),!o&&n===1&&delete P._):(d=!e.$stable,W1e(e,P)),l=e}else e&&(Y1e(t,e),l={default:1});if(d)for(const n in P)!q1e(n)&&!(n in l)&&delete P[n]};function kae(t,e,o,f,P=!1){if(bs(t)){t.forEach((w,y)=>kae(w,e&&(bs(e)?e[y]:e),o,f,P));return}if(tI(f)&&!P)return;const d=f.shapeFlag&4?ZZ(f.component)||f.component.proxy:f.el,l=P?null:d,{i:n,r:c}=t,b=e&&e.r,i=n.refs===od?n.refs={}:n.refs,O=n.setupState;if(b!=null&&b!==c&&(hh(b)?(i[b]=null,Zc(O,b)&&(O[b]=null)):Dc(b)&&(b.value=null)),ll(c))K4(c,n,12,[l,i]);else{const w=hh(c),y=Dc(c);if(w||y){const p=()=>{if(t.f){const a=w?Zc(O,c)?O[c]:i[c]:c.value;P?bs(a)&&vle(a,d):bs(a)?a.includes(d)||a.push(d):w?(i[c]=[d],Zc(O,c)&&(O[c]=i[c])):(c.value=[d],t.k&&(i[t.k]=c.value))}else w?(i[c]=l,Zc(O,c)&&(O[c]=l)):y&&(c.value=l,t.k&&(i[t.k]=l))};l?(p.id=-1,g1(p,o)):p()}}}const g1=mSe;function VSe(t){return USe(t)}function USe(t,e){const o=gae();o.__VUE__=!0;const{insert:f,remove:P,patchProp:d,createElement:l,createText:n,createComment:c,setText:b,setElementText:i,parentNode:O,nextSibling:w,setScopeId:y=vx,insertStaticContent:p}=t,a=(se,ae,ce,de=null,ve=null,ye=null,_e=!1,Se=null,Te=!!ae.dynamicChildren)=>{if(se===ae)return;se&&!t_(se,ae)&&(de=q(se),X(se,ve,ye,!0),se=null),ae.patchFlag===-2&&(Te=!1,ae.dynamicChildren=null);const{type:Pe,ref:Ie,shapeFlag:ze}=ae;switch(Pe){case dD:u(se,ae,ce,de);break;case k0:h(se,ae,ce,de);break;case nie:se==null&&m(ae,ce,de,_e);break;case ya:C(se,ae,ce,de,ve,ye,_e,Se,Te);break;default:ze&1?S(se,ae,ce,de,ve,ye,_e,Se,Te):ze&6?L(se,ae,ce,de,ve,ye,_e,Se,Te):(ze&64||ze&128)&&Pe.process(se,ae,ce,de,ve,ye,_e,Se,Te,ee)}Ie!=null&&ve&&kae(Ie,se&&se.ref,ye,ae||se,!ae)},u=(se,ae,ce,de)=>{if(se==null)f(ae.el=n(ae.children),ce,de);else{const ve=ae.el=se.el;ae.children!==se.children&&b(ve,ae.children)}},h=(se,ae,ce,de)=>{se==null?f(ae.el=c(ae.children||""),ce,de):ae.el=se.el},m=(se,ae,ce,de)=>{[se.el,se.anchor]=p(se.children,ae,ce,de,se.el,se.anchor)},v=({el:se,anchor:ae},ce,de)=>{let ve;for(;se&&se!==ae;)ve=w(se),f(se,ce,de),se=ve;f(ae,ce,de)},_=({el:se,anchor:ae})=>{let ce;for(;se&&se!==ae;)ce=w(se),P(se),se=ce;P(ae)},S=(se,ae,ce,de,ve,ye,_e,Se,Te)=>{_e=_e||ae.type==="svg",se==null?A(ae,ce,de,ve,ye,_e,Se,Te):M(se,ae,ve,ye,_e,Se,Te)},A=(se,ae,ce,de,ve,ye,_e,Se)=>{let Te,Pe;const{type:Ie,props:ze,shapeFlag:De,transition:He,dirs:Ve}=se;if(Te=se.el=l(se.type,ye,ze&&ze.is,ze),De&8?i(Te,se.children):De&16&&R(se.children,Te,null,de,ve,ye&&Ie!=="foreignObject",_e,Se),Ve&&jk(se,null,de,"created"),x(Te,se,se.scopeId,_e,de),ze){for(const Oe in ze)Oe!=="value"&&!lH(Oe)&&d(Te,Oe,null,ze[Oe],ye,se.children,de,ve,oe);"value"in ze&&d(Te,"value",null,ze.value),(Pe=ze.onVnodeBeforeMount)&&W2(Pe,de,se)}Ve&&jk(se,null,de,"beforeMount");const $e=(!ve||ve&&!ve.pendingBranch)&&He&&!He.persisted;$e&&He.beforeEnter(Te),f(Te,ae,ce),((Pe=ze&&ze.onVnodeMounted)||$e||Ve)&&g1(()=>{Pe&&W2(Pe,de,se),$e&&He.enter(Te),Ve&&jk(se,null,de,"mounted")},ve)},x=(se,ae,ce,de,ve)=>{if(ce&&y(se,ce),de)for(let ye=0;ye{for(let Pe=Te;Pe{const Se=ae.el=se.el;let{patchFlag:Te,dynamicChildren:Pe,dirs:Ie}=ae;Te|=se.patchFlag&16;const ze=se.props||od,De=ae.props||od;let He;ce&&Qk(ce,!1),(He=De.onVnodeBeforeUpdate)&&W2(He,ce,ae,se),Ie&&jk(ae,se,ce,"beforeUpdate"),ce&&Qk(ce,!0);const Ve=ve&&ae.type!=="foreignObject";if(Pe?T(se.dynamicChildren,Pe,Se,ce,de,Ve,ye):_e||$(se,ae,Se,null,ce,de,Ve,ye,!1),Te>0){if(Te&16)E(Se,ae,ze,De,ce,de,ve);else if(Te&2&&ze.class!==De.class&&d(Se,"class",null,De.class,ve),Te&4&&d(Se,"style",ze.style,De.style,ve),Te&8){const $e=ae.dynamicProps;for(let Oe=0;Oe<$e.length;Oe++){const ke=$e[Oe],Le=ze[ke],We=De[ke];(We!==Le||ke==="value")&&d(Se,ke,Le,We,ve,se.children,ce,de,oe)}}Te&1&&se.children!==ae.children&&i(Se,ae.children)}else!_e&&Pe==null&&E(Se,ae,ze,De,ce,de,ve);((He=De.onVnodeUpdated)||Ie)&&g1(()=>{He&&W2(He,ce,ae,se),Ie&&jk(ae,se,ce,"updated")},de)},T=(se,ae,ce,de,ve,ye,_e)=>{for(let Se=0;Se{if(ce!==de){if(ce!==od)for(const Se in ce)!lH(Se)&&!(Se in de)&&d(se,Se,ce[Se],null,_e,ae.children,ve,ye,oe);for(const Se in de){if(lH(Se))continue;const Te=de[Se],Pe=ce[Se];Te!==Pe&&Se!=="value"&&d(se,Se,Pe,Te,_e,ae.children,ve,ye,oe)}"value"in de&&d(se,"value",ce.value,de.value)}},C=(se,ae,ce,de,ve,ye,_e,Se,Te)=>{const Pe=ae.el=se?se.el:n(""),Ie=ae.anchor=se?se.anchor:n("");let{patchFlag:ze,dynamicChildren:De,slotScopeIds:He}=ae;He&&(Se=Se?Se.concat(He):He),se==null?(f(Pe,ce,de),f(Ie,ce,de),R(ae.children,ce,Ie,ve,ye,_e,Se,Te)):ze>0&&ze&64&&De&&se.dynamicChildren?(T(se.dynamicChildren,De,ce,ve,ye,_e,Se),(ae.key!=null||ve&&ae===ve.subTree)&&Qle(se,ae,!0)):$(se,ae,ce,Ie,ve,ye,_e,Se,Te)},L=(se,ae,ce,de,ve,ye,_e,Se,Te)=>{ae.slotScopeIds=Se,se==null?ae.shapeFlag&512?ve.ctx.activate(ae,ce,de,_e,Te):D(ae,ce,de,ve,ye,_e,Te):k(se,ae,Te)},D=(se,ae,ce,de,ve,ye,_e)=>{const Se=se.component=KSe(se,de,ve);if(jZ(se)&&(Se.ctx.renderer=ee),JSe(Se),Se.asyncDep){if(ve&&ve.registerDep(Se,I),!se.el){const Te=Se.subTree=Zt(k0);h(null,Te,ae,ce)}return}I(Se,se,ae,ce,ve,ye,_e)},k=(se,ae,ce)=>{const de=ae.component=se.component;if(sSe(se,ae,ce))if(de.asyncDep&&!de.asyncResolved){z(de,ae,ce);return}else de.next=ae,tSe(de.update),de.update();else ae.el=se.el,de.vnode=ae},I=(se,ae,ce,de,ve,ye,_e)=>{const Se=()=>{if(se.isMounted){let{next:Ie,bu:ze,u:De,parent:He,vnode:Ve}=se,$e=Ie,Oe;Qk(se,!1),Ie?(Ie.el=Ve.el,z(se,Ie,_e)):Ie=Ve,ze&&cH(ze),(Oe=Ie.props&&Ie.props.onVnodeBeforeUpdate)&&W2(Oe,He,Ie,Ve),Qk(se,!0);const ke=Joe(se),Le=se.subTree;se.subTree=ke,a(Le,ke,O(Le.el),q(Le),se,ve,ye),Ie.el=ke.el,$e===null&&Ple(se,ke.el),De&&g1(De,ve),(Oe=Ie.props&&Ie.props.onVnodeUpdated)&&g1(()=>W2(Oe,He,Ie,Ve),ve)}else{let Ie;const{el:ze,props:De}=ae,{bm:He,m:Ve,parent:$e}=se,Oe=tI(ae);if(Qk(se,!1),He&&cH(He),!Oe&&(Ie=De&&De.onVnodeBeforeMount)&&W2(Ie,$e,ae),Qk(se,!0),ze&&he){const ke=()=>{se.subTree=Joe(se),he(ze,se.subTree,se,ve,null)};Oe?ae.type.__asyncLoader().then(()=>!se.isUnmounted&&ke()):ke()}else{const ke=se.subTree=Joe(se);a(null,ke,ce,de,se,ve,ye),ae.el=ke.el}if(Ve&&g1(Ve,ve),!Oe&&(Ie=De&&De.onVnodeMounted)){const ke=ae;g1(()=>W2(Ie,$e,ke),ve)}(ae.shapeFlag&256||$e&&tI($e.vnode)&&$e.vnode.shapeFlag&256)&&se.a&&g1(se.a,ve),se.isMounted=!0,ae=ce=de=null}},Te=se.effect=new _le(Se,()=>Ale(Pe),se.scope),Pe=se.update=()=>Te.run();Pe.id=se.uid,Qk(se,!0),Pe()},z=(se,ae,ce)=>{ae.component=se;const de=se.vnode.props;se.vnode=ae,se.next=null,zSe(se,ae.props,de,ce),$Se(se,ae.children,ce),SM(),Ode(),kM()},$=(se,ae,ce,de,ve,ye,_e,Se,Te=!1)=>{const Pe=se&&se.children,Ie=se?se.shapeFlag:0,ze=ae.children,{patchFlag:De,shapeFlag:He}=ae;if(De>0){if(De&128){j(Pe,ze,ce,de,ve,ye,_e,Se,Te);return}else if(De&256){Q(Pe,ze,ce,de,ve,ye,_e,Se,Te);return}}He&8?(Ie&16&&oe(Pe,ve,ye),ze!==Pe&&i(ce,ze)):Ie&16?He&16?j(Pe,ze,ce,de,ve,ye,_e,Se,Te):oe(Pe,ve,ye,!0):(Ie&8&&i(ce,""),He&16&&R(ze,ce,de,ve,ye,_e,Se,Te))},Q=(se,ae,ce,de,ve,ye,_e,Se,Te)=>{se=se||HA,ae=ae||HA;const Pe=se.length,Ie=ae.length,ze=Math.min(Pe,Ie);let De;for(De=0;DeIe?oe(se,ve,ye,!0,!1,ze):R(ae,ce,de,ve,ye,_e,Se,Te,ze)},j=(se,ae,ce,de,ve,ye,_e,Se,Te)=>{let Pe=0;const Ie=ae.length;let ze=se.length-1,De=Ie-1;for(;Pe<=ze&&Pe<=De;){const He=se[Pe],Ve=ae[Pe]=Te?V4(ae[Pe]):hx(ae[Pe]);if(t_(He,Ve))a(He,Ve,ce,null,ve,ye,_e,Se,Te);else break;Pe++}for(;Pe<=ze&&Pe<=De;){const He=se[ze],Ve=ae[De]=Te?V4(ae[De]):hx(ae[De]);if(t_(He,Ve))a(He,Ve,ce,null,ve,ye,_e,Se,Te);else break;ze--,De--}if(Pe>ze){if(Pe<=De){const He=De+1,Ve=HeDe)for(;Pe<=ze;)X(se[Pe],ve,ye,!0),Pe++;else{const He=Pe,Ve=Pe,$e=new Map;for(Pe=Ve;Pe<=De;Pe++){const tt=ae[Pe]=Te?V4(ae[Pe]):hx(ae[Pe]);tt.key!=null&&$e.set(tt.key,Pe)}let Oe,ke=0;const Le=De-Ve+1;let We=!1,Ue=0;const Ze=new Array(Le);for(Pe=0;Pe=Le){X(tt,ve,ye,!0);continue}let Ee;if(tt.key!=null)Ee=$e.get(tt.key);else for(Oe=Ve;Oe<=De;Oe++)if(Ze[Oe-Ve]===0&&t_(tt,ae[Oe])){Ee=Oe;break}Ee===void 0?X(tt,ve,ye,!0):(Ze[Ee-Ve]=Pe+1,Ee>=Ue?Ue=Ee:We=!0,a(tt,ae[Ee],ce,null,ve,ye,_e,Se,Te),ke++)}const Xe=We?jSe(Ze):HA;for(Oe=Xe.length-1,Pe=Le-1;Pe>=0;Pe--){const tt=Ve+Pe,Ee=ae[tt],Ne=tt+1{const{el:ye,type:_e,transition:Se,children:Te,shapeFlag:Pe}=se;if(Pe&6){U(se.component.subTree,ae,ce,de);return}if(Pe&128){se.suspense.move(ae,ce,de);return}if(Pe&64){_e.move(se,ae,ce,ee);return}if(_e===ya){f(ye,ae,ce);for(let ze=0;zeSe.enter(ye),ve);else{const{leave:ze,delayLeave:De,afterLeave:He}=Se,Ve=()=>f(ye,ae,ce),$e=()=>{ze(ye,()=>{Ve(),He&&He()})};De?De(ye,Ve,$e):$e()}else f(ye,ae,ce)},X=(se,ae,ce,de=!1,ve=!1)=>{const{type:ye,props:_e,ref:Se,children:Te,dynamicChildren:Pe,shapeFlag:Ie,patchFlag:ze,dirs:De}=se;if(Se!=null&&kae(Se,null,ce,se,!0),Ie&256){ae.ctx.deactivate(se);return}const He=Ie&1&&De,Ve=!tI(se);let $e;if(Ve&&($e=_e&&_e.onVnodeBeforeUnmount)&&W2($e,ae,se),Ie&6)K(se.component,ce,de);else{if(Ie&128){se.suspense.unmount(ce,de);return}He&&jk(se,null,ae,"beforeUnmount"),Ie&64?se.type.remove(se,ae,ce,ve,ee,de):Pe&&(ye!==ya||ze>0&&ze&64)?oe(Pe,ae,ce,!1,!0):(ye===ya&&ze&384||!ve&&Ie&16)&&oe(Te,ae,ce),de&&te(se)}(Ve&&($e=_e&&_e.onVnodeUnmounted)||He)&&g1(()=>{$e&&W2($e,ae,se),He&&jk(se,null,ae,"unmounted")},ce)},te=se=>{const{type:ae,el:ce,anchor:de,transition:ve}=se;if(ae===ya){W(ce,de);return}if(ae===nie){_(se);return}const ye=()=>{P(ce),ve&&!ve.persisted&&ve.afterLeave&&ve.afterLeave()};if(se.shapeFlag&1&&ve&&!ve.persisted){const{leave:_e,delayLeave:Se}=ve,Te=()=>_e(ce,ye);Se?Se(se.el,ye,Te):Te()}else ye()},W=(se,ae)=>{let ce;for(;se!==ae;)ce=w(se),P(se),se=ce;P(ae)},K=(se,ae,ce)=>{const{bum:de,scope:ve,update:ye,subTree:_e,um:Se}=se;de&&cH(de),ve.stop(),ye&&(ye.active=!1,X(_e,se,ae,ce)),Se&&g1(Se,ae),g1(()=>{se.isUnmounted=!0},ae),ae&&ae.pendingBranch&&!ae.isUnmounted&&se.asyncDep&&!se.asyncResolved&&se.suspenseId===ae.pendingId&&(ae.deps--,ae.deps===0&&ae.resolve())},oe=(se,ae,ce,de=!1,ve=!1,ye=0)=>{for(let _e=ye;_ese.shapeFlag&6?q(se.component.subTree):se.shapeFlag&128?se.suspense.next():w(se.anchor||se.el),Y=(se,ae,ce)=>{se==null?ae._vnode&&X(ae._vnode,null,null,!0):a(ae._vnode||null,se,ae,null,null,null,ce),Ode(),P1e(),ae._vnode=se},ee={p:a,um:X,m:U,r:te,mt:D,mc:R,pc:$,pbc:T,n:q,o:t};let me,he;return e&&([me,he]=e(ee)),{render:Y,hydrate:me,createApp:ISe(Y,me)}}function Qk({effect:t,update:e},o){t.allowRecurse=e.allowRecurse=o}function Qle(t,e,o=!1){const f=t.children,P=e.children;if(bs(f)&&bs(P))for(let d=0;d>1,t[o[n]]0&&(e[f]=o[d-1]),o[d]=f)}}for(d=o.length,l=o[d-1];d-- >0;)o[d]=l,l=e[l];return o}const QSe=t=>t.__isTeleport,rI=t=>t&&(t.disabled||t.disabled===""),zde=t=>typeof SVGElement<"u"&&t instanceof SVGElement,Tae=(t,e)=>{const o=t&&t.to;return hh(o)?e?e(o):null:o},HSe={__isTeleport:!0,process(t,e,o,f,P,d,l,n,c,b){const{mc:i,pc:O,pbc:w,o:{insert:y,querySelector:p,createText:a,createComment:u}}=b,h=rI(e.props);let{shapeFlag:m,children:v,dynamicChildren:_}=e;if(t==null){const S=e.el=a(""),A=e.anchor=a("");y(S,o,f),y(A,o,f);const x=e.target=Tae(e.props,p),R=e.targetAnchor=a("");x&&(y(R,x),l=l||zde(x));const M=(T,E)=>{m&16&&i(v,T,E,P,d,l,n,c)};h?M(o,A):x&&M(x,R)}else{e.el=t.el;const S=e.anchor=t.anchor,A=e.target=t.target,x=e.targetAnchor=t.targetAnchor,R=rI(t.props),M=R?o:A,T=R?S:x;if(l=l||zde(A),_?(w(t.dynamicChildren,_,M,P,d,l,n),Qle(t,e,!0)):c||O(t,e,M,T,P,d,l,n,!1),h)R||OQ(e,o,S,b,1);else if((e.props&&e.props.to)!==(t.props&&t.props.to)){const E=e.target=Tae(e.props,p);E&&OQ(e,E,null,b,0)}else R&&OQ(e,A,x,b,1)}X1e(e)},remove(t,e,o,f,{um:P,o:{remove:d}},l){const{shapeFlag:n,children:c,anchor:b,targetAnchor:i,target:O,props:w}=t;if(O&&d(i),(l||!rI(w))&&(d(b),n&16))for(let y=0;y0?Yy||HA:null,G1e(),oM>0&&Yy&&Yy.push(t),t}function Da(t,e,o,f,P,d){return K1e(pa(t,e,o,f,P,d,!0))}function la(t,e,o,f,P){return K1e(Zt(t,e,o,f,P,!0))}function iM(t){return t?t.__v_isVNode===!0:!1}function t_(t,e){return t.type===e.type&&t.key===e.key}const HZ="__vInternal",J1e=({key:t})=>t??null,uH=({ref:t,ref_key:e,ref_for:o})=>(typeof t=="number"&&(t=""+t),t!=null?hh(t)||Dc(t)||ll(t)?{i:cm,r:t,k:e,f:!!o}:t:null);function pa(t,e=null,o=null,f=0,P=null,d=t===ya?0:1,l=!1,n=!1){const c={__v_isVNode:!0,__v_skip:!0,type:t,props:e,key:e&&J1e(e),ref:e&&uH(e),scopeId:UZ,slotScopeIds:null,children:o,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:d,patchFlag:f,dynamicProps:P,dynamicChildren:null,appContext:null,ctx:cm};return n?(Hle(c,o),d&128&&t.normalize(c)):o&&(c.shapeFlag|=hh(o)?8:16),oM>0&&!l&&Yy&&(c.patchFlag>0||d&6)&&c.patchFlag!==32&&Yy.push(c),c}const Zt=WSe;function WSe(t,e=null,o=null,f=0,P=null,d=!1){if((!t||t===$1e)&&(t=k0),iM(t)){const n=TO(t,e,!0);return o&&Hle(n,o),oM>0&&!d&&Yy&&(n.shapeFlag&6?Yy[Yy.indexOf(t)]=n:Yy.push(n)),n.patchFlag|=-2,n}if(o5e(t)&&(t=t.__vccOpts),e){e=YSe(e);let{class:n,style:c}=e;n&&!hh(n)&&(e.class=zv(n)),zf(c)&&(w1e(c)&&!bs(c)&&(c=Nh({},c)),e.style=lD(c))}const l=hh(t)?1:lSe(t)?128:QSe(t)?64:zf(t)?4:ll(t)?2:0;return pa(t,e,o,f,P,l,d,!0)}function YSe(t){return t?w1e(t)||HZ in t?Nh({},t):t:null}function TO(t,e,o=!1){const{props:f,ref:P,patchFlag:d,children:l}=t,n=e?Di(f||{},e):f;return{__v_isVNode:!0,__v_skip:!0,type:t.type,props:n,key:n&&J1e(n),ref:e&&e.ref?o&&P?bs(P)?P.concat(uH(e)):[P,uH(e)]:uH(e):P,scopeId:t.scopeId,slotScopeIds:t.slotScopeIds,children:l,target:t.target,targetAnchor:t.targetAnchor,staticCount:t.staticCount,shapeFlag:t.shapeFlag,patchFlag:e&&t.type!==ya?d===-1?16:d|16:d,dynamicProps:t.dynamicProps,dynamicChildren:t.dynamicChildren,appContext:t.appContext,dirs:t.dirs,transition:t.transition,component:t.component,suspense:t.suspense,ssContent:t.ssContent&&TO(t.ssContent),ssFallback:t.ssFallback&&TO(t.ssFallback),el:t.el,anchor:t.anchor,ctx:t.ctx,ce:t.ce}}function Cs(t=" ",e=0){return Zt(dD,null,t,e)}function Wa(t="",e=!1){return e?(Bo(),la(k0,null,t)):Zt(k0,null,t)}function hx(t){return t==null||typeof t=="boolean"?Zt(k0):bs(t)?Zt(ya,null,t.slice()):typeof t=="object"?V4(t):Zt(dD,null,String(t))}function V4(t){return t.el===null&&t.patchFlag!==-1||t.memo?t:TO(t)}function Hle(t,e){let o=0;const{shapeFlag:f}=t;if(e==null)e=null;else if(bs(e))o=16;else if(typeof e=="object")if(f&65){const P=e.default;P&&(P._c&&(P._d=!1),Hle(t,P()),P._c&&(P._d=!0));return}else{o=32;const P=e._;!P&&!(HZ in e)?e._ctx=cm:P===3&&cm&&(cm.slots._===1?e._=1:(e._=2,t.patchFlag|=1024))}else ll(e)?(e={default:e,_ctx:cm},o=32):(e=String(e),f&64?(o=16,e=[Cs(e)]):o=8);t.children=e,t.shapeFlag|=o}function Di(...t){const e={};for(let o=0;oOp||cm;let qle,AA,Nde="__VUE_INSTANCE_SETTERS__";(AA=gae()[Nde])||(AA=gae()[Nde]=[]),AA.push(t=>Op=t),qle=t=>{AA.length>1?AA.forEach(e=>e(t)):AA[0](t)};const aM=t=>{qle(t),t.scope.on()},uT=()=>{Op&&Op.scope.off(),qle(null)};function eve(t){return t.vnode.shapeFlag&4}let TI=!1;function JSe(t,e=!1){TI=e;const{props:o,children:f}=t.vnode,P=eve(t);BSe(t,o,P,e),NSe(t,f);const d=P?e5e(t,e):void 0;return TI=!1,d}function e5e(t,e){const o=t.type;t.accessCache=Object.create(null),t.proxy=uD(new Proxy(t.ctx,CSe));const{setup:f}=o;if(f){const P=t.setupContext=f.length>1?n5e(t):null;aM(t),SM();const d=K4(f,t,0,[t.props,P]);if(kM(),uT(),r1e(d)){if(d.then(uT,uT),e)return d.then(l=>{Cae(t,l,e)}).catch(l=>{fD(l,t,0)});t.asyncDep=d}else Cae(t,d,e)}else tve(t,e)}function Cae(t,e,o){ll(e)?t.type.__ssrInlineRender?t.ssrRender=e:t.render=e:zf(e)&&(t.setupState=T1e(e)),tve(t,o)}let $de;function tve(t,e,o){const f=t.type;if(!t.render){if(!e&&$de&&!f.render){const P=f.template||Ule(t).template;if(P){const{isCustomElement:d,compilerOptions:l}=t.appContext.config,{delimiters:n,compilerOptions:c}=f,b=Nh(Nh({isCustomElement:d,delimiters:n},l),c);f.render=$de(P,b)}}t.render=f.render||vx}aM(t),SM(),ASe(t),kM(),uT()}function t5e(t){return t.attrsProxy||(t.attrsProxy=new Proxy(t.attrs,{get(e,o){return _1(t,"get","$attrs"),e[o]}}))}function n5e(t){const e=o=>{t.exposed=o||{}};return{get attrs(){return t5e(t)},slots:t.slots,emit:t.emit,expose:e}}function ZZ(t){if(t.exposed)return t.exposeProxy||(t.exposeProxy=new Proxy(T1e(uD(t.exposed)),{get(e,o){if(o in e)return e[o];if(o in nI)return nI[o](t)},has(e,o){return o in e||o in nI}}))}function r5e(t,e=!0){return ll(t)?t.displayName||t.name:t.name||e&&t.__name}function o5e(t){return ll(t)&&"__vccOpts"in t}const jn=(t,e)=>K4e(t,e,TI);function w1(t,e,o){const f=arguments.length;return f===2?zf(e)&&!bs(e)?iM(e)?Zt(t,null,[e]):Zt(t,e):Zt(t,null,e):(f>3?o=Array.prototype.slice.call(arguments,2):f===3&&iM(o)&&(o=[o]),Zt(t,e,o))}const i5e=Symbol.for("v-scx"),a5e=()=>vl(i5e),s5e="3.3.4",l5e="http://www.w3.org/2000/svg",eT=typeof document<"u"?document:null,Vde=eT&&eT.createElement("template"),c5e={insert:(t,e,o)=>{e.insertBefore(t,o||null)},remove:t=>{const e=t.parentNode;e&&e.removeChild(t)},createElement:(t,e,o,f)=>{const P=e?eT.createElementNS(l5e,t):eT.createElement(t,o?{is:o}:void 0);return t==="select"&&f&&f.multiple!=null&&P.setAttribute("multiple",f.multiple),P},createText:t=>eT.createTextNode(t),createComment:t=>eT.createComment(t),setText:(t,e)=>{t.nodeValue=e},setElementText:(t,e)=>{t.textContent=e},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>eT.querySelector(t),setScopeId(t,e){t.setAttribute(e,"")},insertStaticContent(t,e,o,f,P,d){const l=o?o.previousSibling:e.lastChild;if(P&&(P===d||P.nextSibling))for(;e.insertBefore(P.cloneNode(!0),o),!(P===d||!(P=P.nextSibling)););else{Vde.innerHTML=f?``:t;const n=Vde.content;if(f){const c=n.firstChild;for(;c.firstChild;)n.appendChild(c.firstChild);n.removeChild(c)}e.insertBefore(n,o)}return[l?l.nextSibling:e.firstChild,o?o.previousSibling:e.lastChild]}};function u5e(t,e,o){const f=t._vtc;f&&(e=(e?[e,...f]:[...f]).join(" ")),e==null?t.removeAttribute("class"):o?t.setAttribute("class",e):t.className=e}function f5e(t,e,o){const f=t.style,P=hh(o);if(o&&!P){if(e&&!hh(e))for(const d in e)o[d]==null&&Aae(f,d,"");for(const d in o)Aae(f,d,o[d])}else{const d=f.display;P?e!==o&&(f.cssText=o):e&&t.removeAttribute("style"),"_vod"in t&&(f.display=d)}}const Ude=/\s*!important$/;function Aae(t,e,o){if(bs(o))o.forEach(f=>Aae(t,e,f));else if(o==null&&(o=""),e.startsWith("--"))t.setProperty(e,o);else{const f=d5e(t,e);Ude.test(o)?t.setProperty(xT(f),o.replace(Ude,""),"important"):t[f]=o}}const jde=["Webkit","Moz","ms"],rie={};function d5e(t,e){const o=rie[e];if(o)return o;let f=rb(e);if(f!=="filter"&&f in t)return rie[e]=f;f=v_(f);for(let P=0;Poie||(y5e.then(()=>oie=0),oie=Date.now());function x5e(t,e){const o=f=>{if(!f._vts)f._vts=Date.now();else if(f._vts<=o.attached)return;eb(_5e(f,o.value),e,5,[f])};return o.value=t,o.attached=b5e(),o}function _5e(t,e){if(bs(e)){const o=t.stopImmediatePropagation;return t.stopImmediatePropagation=()=>{o.call(t),t._stopped=!0},e.map(f=>P=>!P._stopped&&f&&f(P))}else return e}const Zde=/^on[a-z]/,w5e=(t,e,o,f,P=!1,d,l,n,c)=>{e==="class"?u5e(t,f,P):e==="style"?f5e(t,o,f):zZ(e)?gle(e)||g5e(t,e,o,f,l):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):O5e(t,e,f,P))?p5e(t,e,f,d,l,n,c):(e==="true-value"?t._trueValue=f:e==="false-value"&&(t._falseValue=f),h5e(t,e,f,P))};function O5e(t,e,o,f){return f?!!(e==="innerHTML"||e==="textContent"||e in t&&Zde.test(e)&&ll(o)):e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&t.tagName==="INPUT"||e==="type"&&t.tagName==="TEXTAREA"||Zde.test(e)&&hh(o)?!1:e in t}const B4="transition",EL="animation",h_=(t,{slots:e})=>w1(bSe,rve(t),e);h_.displayName="Transition";const nve={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},S5e=h_.props=Nh({},B1e,nve),Hk=(t,e=[])=>{bs(t)?t.forEach(o=>o(...e)):t&&t(...e)},qde=t=>t?bs(t)?t.some(e=>e.length>1):t.length>1:!1;function rve(t){const e={};for(const C in t)C in nve||(e[C]=t[C]);if(t.css===!1)return e;const{name:o="v",type:f,duration:P,enterFromClass:d=`${o}-enter-from`,enterActiveClass:l=`${o}-enter-active`,enterToClass:n=`${o}-enter-to`,appearFromClass:c=d,appearActiveClass:b=l,appearToClass:i=n,leaveFromClass:O=`${o}-leave-from`,leaveActiveClass:w=`${o}-leave-active`,leaveToClass:y=`${o}-leave-to`}=t,p=k5e(P),a=p&&p[0],u=p&&p[1],{onBeforeEnter:h,onEnter:m,onEnterCancelled:v,onLeave:_,onLeaveCancelled:S,onBeforeAppear:A=h,onAppear:x=m,onAppearCancelled:R=v}=e,M=(C,L,D)=>{N4(C,L?i:n),N4(C,L?b:l),D&&D()},T=(C,L)=>{C._isLeaving=!1,N4(C,O),N4(C,y),N4(C,w),L&&L()},E=C=>(L,D)=>{const k=C?x:m,I=()=>M(L,C,D);Hk(k,[L,I]),Wde(()=>{N4(L,C?c:d),bO(L,C?i:n),qde(k)||Yde(L,f,a,I)})};return Nh(e,{onBeforeEnter(C){Hk(h,[C]),bO(C,d),bO(C,l)},onBeforeAppear(C){Hk(A,[C]),bO(C,c),bO(C,b)},onEnter:E(!1),onAppear:E(!0),onLeave(C,L){C._isLeaving=!0;const D=()=>T(C,L);bO(C,O),ive(),bO(C,w),Wde(()=>{C._isLeaving&&(N4(C,O),bO(C,y),qde(_)||Yde(C,f,u,D))}),Hk(_,[C,D])},onEnterCancelled(C){M(C,!1),Hk(v,[C])},onAppearCancelled(C){M(C,!0),Hk(R,[C])},onLeaveCancelled(C){T(C),Hk(S,[C])}})}function k5e(t){if(t==null)return null;if(zf(t))return[iie(t.enter),iie(t.leave)];{const e=iie(t);return[e,e]}}function iie(t){return a1e(t)}function bO(t,e){e.split(/\s+/).forEach(o=>o&&t.classList.add(o)),(t._vtc||(t._vtc=new Set)).add(e)}function N4(t,e){e.split(/\s+/).forEach(f=>f&&t.classList.remove(f));const{_vtc:o}=t;o&&(o.delete(e),o.size||(t._vtc=void 0))}function Wde(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let T5e=0;function Yde(t,e,o,f){const P=t._endId=++T5e,d=()=>{P===t._endId&&f()};if(o)return setTimeout(d,o);const{type:l,timeout:n,propCount:c}=ove(t,e);if(!l)return f();const b=l+"end";let i=0;const O=()=>{t.removeEventListener(b,w),d()},w=y=>{y.target===t&&++i>=c&&O()};setTimeout(()=>{i(o[p]||"").split(", "),P=f(`${B4}Delay`),d=f(`${B4}Duration`),l=Xde(P,d),n=f(`${EL}Delay`),c=f(`${EL}Duration`),b=Xde(n,c);let i=null,O=0,w=0;e===B4?l>0&&(i=B4,O=l,w=d.length):e===EL?b>0&&(i=EL,O=b,w=c.length):(O=Math.max(l,b),i=O>0?l>b?B4:EL:null,w=i?i===B4?d.length:c.length:0);const y=i===B4&&/\b(transform|all)(,|$)/.test(f(`${B4}Property`).toString());return{type:i,timeout:O,propCount:w,hasTransform:y}}function Xde(t,e){for(;t.lengthGde(o)+Gde(t[f])))}function Gde(t){return Number(t.slice(0,-1).replace(",","."))*1e3}function ive(){return document.body.offsetHeight}const ave=new WeakMap,sve=new WeakMap,lve={name:"TransitionGroup",props:Nh({},S5e,{tag:String,moveClass:String}),setup(t,{slots:e}){const o=Zle(),f=D1e();let P,d;return Fle(()=>{if(!P.length)return;const l=t.moveClass||`${t.name||"v"}-move`;if(!P5e(P[0].el,o.vnode.el,l))return;P.forEach(A5e),P.forEach(M5e);const n=P.filter(E5e);ive(),n.forEach(c=>{const b=c.el,i=b.style;bO(b,l),i.transform=i.webkitTransform=i.transitionDuration="";const O=b._moveCb=w=>{w&&w.target!==b||(!w||/transform$/.test(w.propertyName))&&(b.removeEventListener("transitionend",O),b._moveCb=null,N4(b,l))};b.addEventListener("transitionend",O)})}),()=>{const l=As(t),n=rve(l);let c=l.tag||ya;P=d,d=e.default?Ile(e.default()):[];for(let b=0;bdelete t.mode;lve.props;const Wle=lve;function A5e(t){const e=t.el;e._moveCb&&e._moveCb(),e._enterCb&&e._enterCb()}function M5e(t){sve.set(t,t.el.getBoundingClientRect())}function E5e(t){const e=ave.get(t),o=sve.get(t),f=e.left-o.left,P=e.top-o.top;if(f||P){const d=t.el.style;return d.transform=d.webkitTransform=`translate(${f}px,${P}px)`,d.transitionDuration="0s",t}}function P5e(t,e,o){const f=t.cloneNode();t._vtc&&t._vtc.forEach(l=>{l.split(/\s+/).forEach(n=>n&&f.classList.remove(n))}),o.split(/\s+/).forEach(l=>l&&f.classList.add(l)),f.style.display="none";const P=e.nodeType===1?e:e.parentNode;P.appendChild(f);const{hasTransform:d}=ove(f);return P.removeChild(f),d}const Kde=t=>{const e=t.props["onUpdate:modelValue"]||!1;return bs(e)?o=>cH(e,o):e};function R5e(t){t.target.composing=!0}function Jde(t){const e=t.target;e.composing&&(e.composing=!1,e.dispatchEvent(new Event("input")))}const L5e={created(t,{modifiers:{lazy:e,trim:o,number:f}},P){t._assign=Kde(P);const d=f||P.props&&P.props.type==="number";DA(t,e?"change":"input",l=>{if(l.target.composing)return;let n=t.value;o&&(n=n.trim()),d&&(n=mae(n)),t._assign(n)}),o&&DA(t,"change",()=>{t.value=t.value.trim()}),e||(DA(t,"compositionstart",R5e),DA(t,"compositionend",Jde),DA(t,"change",Jde))},mounted(t,{value:e}){t.value=e??""},beforeUpdate(t,{value:e,modifiers:{lazy:o,trim:f,number:P}},d){if(t._assign=Kde(d),t.composing||document.activeElement===t&&t.type!=="range"&&(o||f&&t.value.trim()===e||(P||t.type==="number")&&mae(t.value)===e))return;const l=e??"";t.value!==l&&(t.value=l)}},I5e=["ctrl","shift","alt","meta"],D5e={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,e)=>I5e.some(o=>t[`${o}Key`]&&!e.includes(o))},DH=(t,e)=>(o,...f)=>{for(let P=0;Po=>{if(!("key"in o))return;const f=xT(o.key);if(e.some(P=>P===f||B5e[P]===f))return t(o)},pS={beforeMount(t,{value:e},{transition:o}){t._vod=t.style.display==="none"?"":t.style.display,o&&e?o.beforeEnter(t):PL(t,e)},mounted(t,{value:e},{transition:o}){o&&e&&o.enter(t)},updated(t,{value:e,oldValue:o},{transition:f}){!e!=!o&&(f?e?(f.beforeEnter(t),PL(t,!0),f.enter(t)):f.leave(t,()=>{PL(t,!1)}):PL(t,e))},beforeUnmount(t,{value:e}){PL(t,e)}};function PL(t,e){t.style.display=e?t._vod:"none"}const z5e=Nh({patchProp:w5e},c5e);let ehe;function F5e(){return ehe||(ehe=VSe(z5e))}const N5e=(...t)=>{const e=F5e().createApp(...t),{mount:o}=e;return e.mount=f=>{const P=$5e(f);if(!P)return;const d=e._component;!ll(d)&&!d.render&&!d.template&&(d.template=P.innerHTML),P.innerHTML="";const l=o(P,!1,P instanceof SVGElement);return P instanceof Element&&(P.removeAttribute("v-cloak"),P.setAttribute("data-v-app","")),l},e};function $5e(t){return hh(t)?document.querySelector(t):t}/*!
+var UOe=Object.defineProperty;var jOe=(t,e,o)=>e in t?UOe(t,e,{enumerable:!0,configurable:!0,writable:!0,value:o}):t[e]=o;var _c=(t,e,o)=>(jOe(t,typeof e!="symbol"?e+"":e,o),o),QOe=(t,e,o)=>{if(!e.has(t))throw TypeError("Cannot "+o)};var Woe=(t,e,o)=>{if(e.has(t))throw TypeError("Cannot add the same private member more than once");e instanceof WeakSet?e.add(t):e.set(t,o)};var gQ=(t,e,o)=>(QOe(t,e,"access private method"),o);(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const P of document.querySelectorAll('link[rel="modulepreload"]'))f(P);new MutationObserver(P=>{for(const d of P)if(d.type==="childList")for(const l of d.addedNodes)l.tagName==="LINK"&&l.rel==="modulepreload"&&f(l)}).observe(document,{childList:!0,subtree:!0});function o(P){const d={};return P.integrity&&(d.integrity=P.integrity),P.referrerPolicy&&(d.referrerPolicy=P.referrerPolicy),P.crossOrigin==="use-credentials"?d.credentials="include":P.crossOrigin==="anonymous"?d.credentials="omit":d.credentials="same-origin",d}function f(P){if(P.ep)return;P.ep=!0;const d=o(P);fetch(P.href,d)}})();function B0e(t,e){return function(){return t.apply(e,arguments)}}const{toString:HOe}=Object.prototype,{getPrototypeOf:cle}=Object,RZ=(t=>e=>{const o=HOe.call(e);return t[o]||(t[o]=o.slice(8,-1).toLowerCase())})(Object.create(null)),g_=t=>(t=t.toLowerCase(),e=>RZ(e)===t),LZ=t=>e=>typeof e===t,{isArray:SM}=Array,vI=LZ("undefined");function ZOe(t){return t!==null&&!vI(t)&&t.constructor!==null&&!vI(t.constructor)&&Jy(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const z0e=g_("ArrayBuffer");function qOe(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&z0e(t.buffer),e}const WOe=LZ("string"),Jy=LZ("function"),F0e=LZ("number"),IZ=t=>t!==null&&typeof t=="object",YOe=t=>t===!0||t===!1,iH=t=>{if(RZ(t)!=="object")return!1;const e=cle(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},XOe=g_("Date"),GOe=g_("File"),KOe=g_("Blob"),JOe=g_("FileList"),e3e=t=>IZ(t)&&Jy(t.pipe),t3e=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||Jy(t.append)&&((e=RZ(t))==="formdata"||e==="object"&&Jy(t.toString)&&t.toString()==="[object FormData]"))},n3e=g_("URLSearchParams"),r3e=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function sD(t,e,{allOwnKeys:o=!1}={}){if(t===null||typeof t>"u")return;let f,P;if(typeof t!="object"&&(t=[t]),SM(t))for(f=0,P=t.length;f0;)if(P=o[f],e===P.toLowerCase())return P;return null}const $0e=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),V0e=t=>!vI(t)&&t!==$0e;function uae(){const{caseless:t}=V0e(this)&&this||{},e={},o=(f,P)=>{const d=t&&N0e(e,P)||P;iH(e[d])&&iH(f)?e[d]=uae(e[d],f):iH(f)?e[d]=uae({},f):SM(f)?e[d]=f.slice():e[d]=f};for(let f=0,P=arguments.length;f
(sD(e,(P,d)=>{o&&Jy(P)?t[d]=B0e(P,o):t[d]=P},{allOwnKeys:f}),t),i3e=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),a3e=(t,e,o,f)=>{t.prototype=Object.create(e.prototype,f),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),o&&Object.assign(t.prototype,o)},s3e=(t,e,o,f)=>{let P,d,l;const n={};if(e=e||{},t==null)return e;do{for(P=Object.getOwnPropertyNames(t),d=P.length;d-- >0;)l=P[d],(!f||f(l,t,e))&&!n[l]&&(e[l]=t[l],n[l]=!0);t=o!==!1&&cle(t)}while(t&&(!o||o(t,e))&&t!==Object.prototype);return e},l3e=(t,e,o)=>{t=String(t),(o===void 0||o>t.length)&&(o=t.length),o-=e.length;const f=t.indexOf(e,o);return f!==-1&&f===o},c3e=t=>{if(!t)return null;if(SM(t))return t;let e=t.length;if(!F0e(e))return null;const o=new Array(e);for(;e-- >0;)o[e]=t[e];return o},u3e=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&cle(Uint8Array)),f3e=(t,e)=>{const f=(t&&t[Symbol.iterator]).call(t);let P;for(;(P=f.next())&&!P.done;){const d=P.value;e.call(t,d[0],d[1])}},d3e=(t,e)=>{let o;const f=[];for(;(o=t.exec(e))!==null;)f.push(o);return f},h3e=g_("HTMLFormElement"),p3e=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(o,f,P){return f.toUpperCase()+P}),ide=(({hasOwnProperty:t})=>(e,o)=>t.call(e,o))(Object.prototype),m3e=g_("RegExp"),U0e=(t,e)=>{const o=Object.getOwnPropertyDescriptors(t),f={};sD(o,(P,d)=>{let l;(l=e(P,d,t))!==!1&&(f[d]=l||P)}),Object.defineProperties(t,f)},g3e=t=>{U0e(t,(e,o)=>{if(Jy(t)&&["arguments","caller","callee"].indexOf(o)!==-1)return!1;const f=t[o];if(Jy(f)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+o+"'")})}})},v3e=(t,e)=>{const o={},f=P=>{P.forEach(d=>{o[d]=!0})};return SM(t)?f(t):f(String(t).split(e)),o},y3e=()=>{},b3e=(t,e)=>(t=+t,Number.isFinite(t)?t:e),Yoe="abcdefghijklmnopqrstuvwxyz",ade="0123456789",j0e={DIGIT:ade,ALPHA:Yoe,ALPHA_DIGIT:Yoe+Yoe.toUpperCase()+ade},x3e=(t=16,e=j0e.ALPHA_DIGIT)=>{let o="";const{length:f}=e;for(;t--;)o+=e[Math.random()*f|0];return o};function _3e(t){return!!(t&&Jy(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}const w3e=t=>{const e=new Array(10),o=(f,P)=>{if(IZ(f)){if(e.indexOf(f)>=0)return;if(!("toJSON"in f)){e[P]=f;const d=SM(f)?[]:{};return sD(f,(l,n)=>{const c=o(l,P+1);!vI(c)&&(d[n]=c)}),e[P]=void 0,d}}return f};return o(t,0)},O3e=g_("AsyncFunction"),S3e=t=>t&&(IZ(t)||Jy(t))&&Jy(t.then)&&Jy(t.catch),ui={isArray:SM,isArrayBuffer:z0e,isBuffer:ZOe,isFormData:t3e,isArrayBufferView:qOe,isString:WOe,isNumber:F0e,isBoolean:YOe,isObject:IZ,isPlainObject:iH,isUndefined:vI,isDate:XOe,isFile:GOe,isBlob:KOe,isRegExp:m3e,isFunction:Jy,isStream:e3e,isURLSearchParams:n3e,isTypedArray:u3e,isFileList:JOe,forEach:sD,merge:uae,extend:o3e,trim:r3e,stripBOM:i3e,inherits:a3e,toFlatObject:s3e,kindOf:RZ,kindOfTest:g_,endsWith:l3e,toArray:c3e,forEachEntry:f3e,matchAll:d3e,isHTMLForm:h3e,hasOwnProperty:ide,hasOwnProp:ide,reduceDescriptors:U0e,freezeMethods:g3e,toObjectSet:v3e,toCamelCase:p3e,noop:y3e,toFiniteNumber:b3e,findKey:N0e,global:$0e,isContextDefined:V0e,ALPHABET:j0e,generateString:x3e,isSpecCompliantForm:_3e,toJSONObject:w3e,isAsyncFn:O3e,isThenable:S3e};function Ic(t,e,o,f,P){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),o&&(this.config=o),f&&(this.request=f),P&&(this.response=P)}ui.inherits(Ic,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:ui.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Q0e=Ic.prototype,H0e={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{H0e[t]={value:t}});Object.defineProperties(Ic,H0e);Object.defineProperty(Q0e,"isAxiosError",{value:!0});Ic.from=(t,e,o,f,P,d)=>{const l=Object.create(Q0e);return ui.toFlatObject(t,l,function(c){return c!==Error.prototype},n=>n!=="isAxiosError"),Ic.call(l,t.message,e,o,f,P),l.cause=t,l.name=t.name,d&&Object.assign(l,d),l};const k3e=null;function fae(t){return ui.isPlainObject(t)||ui.isArray(t)}function Z0e(t){return ui.endsWith(t,"[]")?t.slice(0,-2):t}function sde(t,e,o){return t?t.concat(e).map(function(P,d){return P=Z0e(P),!o&&d?"["+P+"]":P}).join(o?".":""):e}function T3e(t){return ui.isArray(t)&&!t.some(fae)}const C3e=ui.toFlatObject(ui,{},null,function(e){return/^is[A-Z]/.test(e)});function DZ(t,e,o){if(!ui.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,o=ui.toFlatObject(o,{metaTokens:!0,dots:!1,indexes:!1},!1,function(a,u){return!ui.isUndefined(u[a])});const f=o.metaTokens,P=o.visitor||i,d=o.dots,l=o.indexes,c=(o.Blob||typeof Blob<"u"&&Blob)&&ui.isSpecCompliantForm(e);if(!ui.isFunction(P))throw new TypeError("visitor must be a function");function b(p){if(p===null)return"";if(ui.isDate(p))return p.toISOString();if(!c&&ui.isBlob(p))throw new Ic("Blob is not supported. Use a Buffer instead.");return ui.isArrayBuffer(p)||ui.isTypedArray(p)?c&&typeof Blob=="function"?new Blob([p]):Buffer.from(p):p}function i(p,a,u){let h=p;if(p&&!u&&typeof p=="object"){if(ui.endsWith(a,"{}"))a=f?a:a.slice(0,-2),p=JSON.stringify(p);else if(ui.isArray(p)&&T3e(p)||(ui.isFileList(p)||ui.endsWith(a,"[]"))&&(h=ui.toArray(p)))return a=Z0e(a),h.forEach(function(v,_){!(ui.isUndefined(v)||v===null)&&e.append(l===!0?sde([a],_,d):l===null?a:a+"[]",b(v))}),!1}return fae(p)?!0:(e.append(sde(u,a,d),b(p)),!1)}const O=[],w=Object.assign(C3e,{defaultVisitor:i,convertValue:b,isVisitable:fae});function y(p,a){if(!ui.isUndefined(p)){if(O.indexOf(p)!==-1)throw Error("Circular reference detected in "+a.join("."));O.push(p),ui.forEach(p,function(h,m){(!(ui.isUndefined(h)||h===null)&&P.call(e,h,ui.isString(m)?m.trim():m,a,w))===!0&&y(h,a?a.concat(m):[m])}),O.pop()}}if(!ui.isObject(t))throw new TypeError("data must be an object");return y(t),e}function lde(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(f){return e[f]})}function ule(t,e){this._pairs=[],t&&DZ(t,this,e)}const q0e=ule.prototype;q0e.append=function(e,o){this._pairs.push([e,o])};q0e.toString=function(e){const o=e?function(f){return e.call(this,f,lde)}:lde;return this._pairs.map(function(P){return o(P[0])+"="+o(P[1])},"").join("&")};function A3e(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function W0e(t,e,o){if(!e)return t;const f=o&&o.encode||A3e,P=o&&o.serialize;let d;if(P?d=P(e,o):d=ui.isURLSearchParams(e)?e.toString():new ule(e,o).toString(f),d){const l=t.indexOf("#");l!==-1&&(t=t.slice(0,l)),t+=(t.indexOf("?")===-1?"?":"&")+d}return t}class M3e{constructor(){this.handlers=[]}use(e,o,f){return this.handlers.push({fulfilled:e,rejected:o,synchronous:f?f.synchronous:!1,runWhen:f?f.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){ui.forEach(this.handlers,function(f){f!==null&&e(f)})}}const cde=M3e,Y0e={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},E3e=typeof URLSearchParams<"u"?URLSearchParams:ule,P3e=typeof FormData<"u"?FormData:null,R3e=typeof Blob<"u"?Blob:null,L3e={isBrowser:!0,classes:{URLSearchParams:E3e,FormData:P3e,Blob:R3e},protocols:["http","https","file","blob","url","data"]},X0e=typeof window<"u"&&typeof document<"u",I3e=(t=>X0e&&["ReactNative","NativeScript","NS"].indexOf(t)<0)(typeof navigator<"u"&&navigator.product),D3e=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),B3e=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:X0e,hasStandardBrowserEnv:I3e,hasStandardBrowserWebWorkerEnv:D3e},Symbol.toStringTag,{value:"Module"})),o_={...B3e,...L3e};function z3e(t,e){return DZ(t,new o_.classes.URLSearchParams,Object.assign({visitor:function(o,f,P,d){return o_.isNode&&ui.isBuffer(o)?(this.append(f,o.toString("base64")),!1):d.defaultVisitor.apply(this,arguments)}},e))}function F3e(t){return ui.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function N3e(t){const e={},o=Object.keys(t);let f;const P=o.length;let d;for(f=0;f
=o.length;return l=!l&&ui.isArray(P)?P.length:l,c?(ui.hasOwnProp(P,l)?P[l]=[P[l],f]:P[l]=f,!n):((!P[l]||!ui.isObject(P[l]))&&(P[l]=[]),e(o,f,P[l],d)&&ui.isArray(P[l])&&(P[l]=N3e(P[l])),!n)}if(ui.isFormData(t)&&ui.isFunction(t.entries)){const o={};return ui.forEachEntry(t,(f,P)=>{e(F3e(f),P,o,0)}),o}return null}function $3e(t,e,o){if(ui.isString(t))try{return(e||JSON.parse)(t),ui.trim(t)}catch(f){if(f.name!=="SyntaxError")throw f}return(o||JSON.stringify)(t)}const fle={transitional:Y0e,adapter:["xhr","http"],transformRequest:[function(e,o){const f=o.getContentType()||"",P=f.indexOf("application/json")>-1,d=ui.isObject(e);if(d&&ui.isHTMLForm(e)&&(e=new FormData(e)),ui.isFormData(e))return P&&P?JSON.stringify(G0e(e)):e;if(ui.isArrayBuffer(e)||ui.isBuffer(e)||ui.isStream(e)||ui.isFile(e)||ui.isBlob(e))return e;if(ui.isArrayBufferView(e))return e.buffer;if(ui.isURLSearchParams(e))return o.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let n;if(d){if(f.indexOf("application/x-www-form-urlencoded")>-1)return z3e(e,this.formSerializer).toString();if((n=ui.isFileList(e))||f.indexOf("multipart/form-data")>-1){const c=this.env&&this.env.FormData;return DZ(n?{"files[]":e}:e,c&&new c,this.formSerializer)}}return d||P?(o.setContentType("application/json",!1),$3e(e)):e}],transformResponse:[function(e){const o=this.transitional||fle.transitional,f=o&&o.forcedJSONParsing,P=this.responseType==="json";if(e&&ui.isString(e)&&(f&&!this.responseType||P)){const l=!(o&&o.silentJSONParsing)&&P;try{return JSON.parse(e)}catch(n){if(l)throw n.name==="SyntaxError"?Ic.from(n,Ic.ERR_BAD_RESPONSE,this,null,this.response):n}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:o_.classes.FormData,Blob:o_.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};ui.forEach(["delete","get","head","post","put","patch"],t=>{fle.headers[t]={}});const dle=fle,V3e=ui.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),U3e=t=>{const e={};let o,f,P;return t&&t.split(`
+`).forEach(function(l){P=l.indexOf(":"),o=l.substring(0,P).trim().toLowerCase(),f=l.substring(P+1).trim(),!(!o||e[o]&&V3e[o])&&(o==="set-cookie"?e[o]?e[o].push(f):e[o]=[f]:e[o]=e[o]?e[o]+", "+f:f)}),e},ude=Symbol("internals");function EL(t){return t&&String(t).trim().toLowerCase()}function aH(t){return t===!1||t==null?t:ui.isArray(t)?t.map(aH):String(t)}function j3e(t){const e=Object.create(null),o=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let f;for(;f=o.exec(t);)e[f[1]]=f[2];return e}const Q3e=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function Xoe(t,e,o,f,P){if(ui.isFunction(f))return f.call(this,e,o);if(P&&(e=o),!!ui.isString(e)){if(ui.isString(f))return e.indexOf(f)!==-1;if(ui.isRegExp(f))return f.test(e)}}function H3e(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,o,f)=>o.toUpperCase()+f)}function Z3e(t,e){const o=ui.toCamelCase(" "+e);["get","set","has"].forEach(f=>{Object.defineProperty(t,f+o,{value:function(P,d,l){return this[f].call(this,e,P,d,l)},configurable:!0})})}class BZ{constructor(e){e&&this.set(e)}set(e,o,f){const P=this;function d(n,c,b){const i=EL(c);if(!i)throw new Error("header name must be a non-empty string");const O=ui.findKey(P,i);(!O||P[O]===void 0||b===!0||b===void 0&&P[O]!==!1)&&(P[O||c]=aH(n))}const l=(n,c)=>ui.forEach(n,(b,i)=>d(b,i,c));return ui.isPlainObject(e)||e instanceof this.constructor?l(e,o):ui.isString(e)&&(e=e.trim())&&!Q3e(e)?l(U3e(e),o):e!=null&&d(o,e,f),this}get(e,o){if(e=EL(e),e){const f=ui.findKey(this,e);if(f){const P=this[f];if(!o)return P;if(o===!0)return j3e(P);if(ui.isFunction(o))return o.call(this,P,f);if(ui.isRegExp(o))return o.exec(P);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,o){if(e=EL(e),e){const f=ui.findKey(this,e);return!!(f&&this[f]!==void 0&&(!o||Xoe(this,this[f],f,o)))}return!1}delete(e,o){const f=this;let P=!1;function d(l){if(l=EL(l),l){const n=ui.findKey(f,l);n&&(!o||Xoe(f,f[n],n,o))&&(delete f[n],P=!0)}}return ui.isArray(e)?e.forEach(d):d(e),P}clear(e){const o=Object.keys(this);let f=o.length,P=!1;for(;f--;){const d=o[f];(!e||Xoe(this,this[d],d,e,!0))&&(delete this[d],P=!0)}return P}normalize(e){const o=this,f={};return ui.forEach(this,(P,d)=>{const l=ui.findKey(f,d);if(l){o[l]=aH(P),delete o[d];return}const n=e?H3e(d):String(d).trim();n!==d&&delete o[d],o[n]=aH(P),f[n]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const o=Object.create(null);return ui.forEach(this,(f,P)=>{f!=null&&f!==!1&&(o[P]=e&&ui.isArray(f)?f.join(", "):f)}),o}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,o])=>e+": "+o).join(`
+`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...o){const f=new this(e);return o.forEach(P=>f.set(P)),f}static accessor(e){const f=(this[ude]=this[ude]={accessors:{}}).accessors,P=this.prototype;function d(l){const n=EL(l);f[n]||(Z3e(P,l),f[n]=!0)}return ui.isArray(e)?e.forEach(d):d(e),this}}BZ.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);ui.reduceDescriptors(BZ.prototype,({value:t},e)=>{let o=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(f){this[o]=f}}});ui.freezeMethods(BZ);const wO=BZ;function Goe(t,e){const o=this||dle,f=e||o,P=wO.from(f.headers);let d=f.data;return ui.forEach(t,function(n){d=n.call(o,d,P.normalize(),e?e.status:void 0)}),P.normalize(),d}function K0e(t){return!!(t&&t.__CANCEL__)}function lD(t,e,o){Ic.call(this,t??"canceled",Ic.ERR_CANCELED,e,o),this.name="CanceledError"}ui.inherits(lD,Ic,{__CANCEL__:!0});function q3e(t,e,o){const f=o.config.validateStatus;!o.status||!f||f(o.status)?t(o):e(new Ic("Request failed with status code "+o.status,[Ic.ERR_BAD_REQUEST,Ic.ERR_BAD_RESPONSE][Math.floor(o.status/100)-4],o.config,o.request,o))}const W3e=o_.hasStandardBrowserEnv?{write(t,e,o,f,P,d){const l=[t+"="+encodeURIComponent(e)];ui.isNumber(o)&&l.push("expires="+new Date(o).toGMTString()),ui.isString(f)&&l.push("path="+f),ui.isString(P)&&l.push("domain="+P),d===!0&&l.push("secure"),document.cookie=l.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function Y3e(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function X3e(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}function J0e(t,e){return t&&!Y3e(e)?X3e(t,e):e}const G3e=o_.hasStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),o=document.createElement("a");let f;function P(d){let l=d;return e&&(o.setAttribute("href",l),l=o.href),o.setAttribute("href",l),{href:o.href,protocol:o.protocol?o.protocol.replace(/:$/,""):"",host:o.host,search:o.search?o.search.replace(/^\?/,""):"",hash:o.hash?o.hash.replace(/^#/,""):"",hostname:o.hostname,port:o.port,pathname:o.pathname.charAt(0)==="/"?o.pathname:"/"+o.pathname}}return f=P(window.location.href),function(l){const n=ui.isString(l)?P(l):l;return n.protocol===f.protocol&&n.host===f.host}}():function(){return function(){return!0}}();function K3e(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function J3e(t,e){t=t||10;const o=new Array(t),f=new Array(t);let P=0,d=0,l;return e=e!==void 0?e:1e3,function(c){const b=Date.now(),i=f[d];l||(l=b),o[P]=c,f[P]=b;let O=d,w=0;for(;O!==P;)w+=o[O++],O=O%t;if(P=(P+1)%t,P===d&&(d=(d+1)%t),b-l{const d=P.loaded,l=P.lengthComputable?P.total:void 0,n=d-o,c=f(n),b=d<=l;o=d;const i={loaded:d,total:l,progress:l?d/l:void 0,bytes:n,rate:c||void 0,estimated:c&&l&&b?(l-d)/c:void 0,event:P};i[e?"download":"upload"]=!0,t(i)}}const e4e=typeof XMLHttpRequest<"u",t4e=e4e&&function(t){return new Promise(function(o,f){let P=t.data;const d=wO.from(t.headers).normalize();let{responseType:l,withXSRFToken:n}=t,c;function b(){t.cancelToken&&t.cancelToken.unsubscribe(c),t.signal&&t.signal.removeEventListener("abort",c)}let i;if(ui.isFormData(P)){if(o_.hasStandardBrowserEnv||o_.hasStandardBrowserWebWorkerEnv)d.setContentType(!1);else if((i=d.getContentType())!==!1){const[a,...u]=i?i.split(";").map(h=>h.trim()).filter(Boolean):[];d.setContentType([a||"multipart/form-data",...u].join("; "))}}let O=new XMLHttpRequest;if(t.auth){const a=t.auth.username||"",u=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";d.set("Authorization","Basic "+btoa(a+":"+u))}const w=J0e(t.baseURL,t.url);O.open(t.method.toUpperCase(),W0e(w,t.params,t.paramsSerializer),!0),O.timeout=t.timeout;function y(){if(!O)return;const a=wO.from("getAllResponseHeaders"in O&&O.getAllResponseHeaders()),h={data:!l||l==="text"||l==="json"?O.responseText:O.response,status:O.status,statusText:O.statusText,headers:a,config:t,request:O};q3e(function(v){o(v),b()},function(v){f(v),b()},h),O=null}if("onloadend"in O?O.onloadend=y:O.onreadystatechange=function(){!O||O.readyState!==4||O.status===0&&!(O.responseURL&&O.responseURL.indexOf("file:")===0)||setTimeout(y)},O.onabort=function(){O&&(f(new Ic("Request aborted",Ic.ECONNABORTED,t,O)),O=null)},O.onerror=function(){f(new Ic("Network Error",Ic.ERR_NETWORK,t,O)),O=null},O.ontimeout=function(){let u=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const h=t.transitional||Y0e;t.timeoutErrorMessage&&(u=t.timeoutErrorMessage),f(new Ic(u,h.clarifyTimeoutError?Ic.ETIMEDOUT:Ic.ECONNABORTED,t,O)),O=null},o_.hasStandardBrowserEnv&&(n&&ui.isFunction(n)&&(n=n(t)),n||n!==!1&&G3e(w))){const a=t.xsrfHeaderName&&t.xsrfCookieName&&W3e.read(t.xsrfCookieName);a&&d.set(t.xsrfHeaderName,a)}P===void 0&&d.setContentType(null),"setRequestHeader"in O&&ui.forEach(d.toJSON(),function(u,h){O.setRequestHeader(h,u)}),ui.isUndefined(t.withCredentials)||(O.withCredentials=!!t.withCredentials),l&&l!=="json"&&(O.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&O.addEventListener("progress",fde(t.onDownloadProgress,!0)),typeof t.onUploadProgress=="function"&&O.upload&&O.upload.addEventListener("progress",fde(t.onUploadProgress)),(t.cancelToken||t.signal)&&(c=a=>{O&&(f(!a||a.type?new lD(null,t,O):a),O.abort(),O=null)},t.cancelToken&&t.cancelToken.subscribe(c),t.signal&&(t.signal.aborted?c():t.signal.addEventListener("abort",c)));const p=K3e(w);if(p&&o_.protocols.indexOf(p)===-1){f(new Ic("Unsupported protocol "+p+":",Ic.ERR_BAD_REQUEST,t));return}O.send(P||null)})},dae={http:k3e,xhr:t4e};ui.forEach(dae,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const dde=t=>`- ${t}`,n4e=t=>ui.isFunction(t)||t===null||t===!1,e1e={getAdapter:t=>{t=ui.isArray(t)?t:[t];const{length:e}=t;let o,f;const P={};for(let d=0;d`adapter ${n} `+(c===!1?"is not supported by the environment":"is not available in the build"));let l=e?d.length>1?`since :
+`+d.map(dde).join(`
+`):" "+dde(d[0]):"as no adapter specified";throw new Ic("There is no suitable adapter to dispatch the request "+l,"ERR_NOT_SUPPORT")}return f},adapters:dae};function Koe(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new lD(null,t)}function hde(t){return Koe(t),t.headers=wO.from(t.headers),t.data=Goe.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),e1e.getAdapter(t.adapter||dle.adapter)(t).then(function(f){return Koe(t),f.data=Goe.call(t,t.transformResponse,f),f.headers=wO.from(f.headers),f},function(f){return K0e(f)||(Koe(t),f&&f.response&&(f.response.data=Goe.call(t,t.transformResponse,f.response),f.response.headers=wO.from(f.response.headers))),Promise.reject(f)})}const pde=t=>t instanceof wO?t.toJSON():t;function rM(t,e){e=e||{};const o={};function f(b,i,O){return ui.isPlainObject(b)&&ui.isPlainObject(i)?ui.merge.call({caseless:O},b,i):ui.isPlainObject(i)?ui.merge({},i):ui.isArray(i)?i.slice():i}function P(b,i,O){if(ui.isUndefined(i)){if(!ui.isUndefined(b))return f(void 0,b,O)}else return f(b,i,O)}function d(b,i){if(!ui.isUndefined(i))return f(void 0,i)}function l(b,i){if(ui.isUndefined(i)){if(!ui.isUndefined(b))return f(void 0,b)}else return f(void 0,i)}function n(b,i,O){if(O in e)return f(b,i);if(O in t)return f(void 0,b)}const c={url:d,method:d,data:d,baseURL:l,transformRequest:l,transformResponse:l,paramsSerializer:l,timeout:l,timeoutMessage:l,withCredentials:l,withXSRFToken:l,adapter:l,responseType:l,xsrfCookieName:l,xsrfHeaderName:l,onUploadProgress:l,onDownloadProgress:l,decompress:l,maxContentLength:l,maxBodyLength:l,beforeRedirect:l,transport:l,httpAgent:l,httpsAgent:l,cancelToken:l,socketPath:l,responseEncoding:l,validateStatus:n,headers:(b,i)=>P(pde(b),pde(i),!0)};return ui.forEach(Object.keys(Object.assign({},t,e)),function(i){const O=c[i]||P,w=O(t[i],e[i],i);ui.isUndefined(w)&&O!==n||(o[i]=w)}),o}const t1e="1.6.2",hle={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{hle[t]=function(f){return typeof f===t||"a"+(e<1?"n ":" ")+t}});const mde={};hle.transitional=function(e,o,f){function P(d,l){return"[Axios v"+t1e+"] Transitional option '"+d+"'"+l+(f?". "+f:"")}return(d,l,n)=>{if(e===!1)throw new Ic(P(l," has been removed"+(o?" in "+o:"")),Ic.ERR_DEPRECATED);return o&&!mde[l]&&(mde[l]=!0,console.warn(P(l," has been deprecated since v"+o+" and will be removed in the near future"))),e?e(d,l,n):!0}};function r4e(t,e,o){if(typeof t!="object")throw new Ic("options must be an object",Ic.ERR_BAD_OPTION_VALUE);const f=Object.keys(t);let P=f.length;for(;P-- >0;){const d=f[P],l=e[d];if(l){const n=t[d],c=n===void 0||l(n,d,t);if(c!==!0)throw new Ic("option "+d+" must be "+c,Ic.ERR_BAD_OPTION_VALUE);continue}if(o!==!0)throw new Ic("Unknown option "+d,Ic.ERR_BAD_OPTION)}}const hae={assertOptions:r4e,validators:hle},I4=hae.validators;class MH{constructor(e){this.defaults=e,this.interceptors={request:new cde,response:new cde}}request(e,o){typeof e=="string"?(o=o||{},o.url=e):o=e||{},o=rM(this.defaults,o);const{transitional:f,paramsSerializer:P,headers:d}=o;f!==void 0&&hae.assertOptions(f,{silentJSONParsing:I4.transitional(I4.boolean),forcedJSONParsing:I4.transitional(I4.boolean),clarifyTimeoutError:I4.transitional(I4.boolean)},!1),P!=null&&(ui.isFunction(P)?o.paramsSerializer={serialize:P}:hae.assertOptions(P,{encode:I4.function,serialize:I4.function},!0)),o.method=(o.method||this.defaults.method||"get").toLowerCase();let l=d&&ui.merge(d.common,d[o.method]);d&&ui.forEach(["delete","get","head","post","put","patch","common"],p=>{delete d[p]}),o.headers=wO.concat(l,d);const n=[];let c=!0;this.interceptors.request.forEach(function(a){typeof a.runWhen=="function"&&a.runWhen(o)===!1||(c=c&&a.synchronous,n.unshift(a.fulfilled,a.rejected))});const b=[];this.interceptors.response.forEach(function(a){b.push(a.fulfilled,a.rejected)});let i,O=0,w;if(!c){const p=[hde.bind(this),void 0];for(p.unshift.apply(p,n),p.push.apply(p,b),w=p.length,i=Promise.resolve(o);O{if(!f._listeners)return;let d=f._listeners.length;for(;d-- >0;)f._listeners[d](P);f._listeners=null}),this.promise.then=P=>{let d;const l=new Promise(n=>{f.subscribe(n),d=n}).then(P);return l.cancel=function(){f.unsubscribe(d)},l},e(function(d,l,n){f.reason||(f.reason=new lD(d,l,n),o(f.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const o=this._listeners.indexOf(e);o!==-1&&this._listeners.splice(o,1)}static source(){let e;return{token:new ple(function(P){e=P}),cancel:e}}}const o4e=ple;function i4e(t){return function(o){return t.apply(null,o)}}function a4e(t){return ui.isObject(t)&&t.isAxiosError===!0}const pae={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(pae).forEach(([t,e])=>{pae[e]=t});const s4e=pae;function n1e(t){const e=new sH(t),o=B0e(sH.prototype.request,e);return ui.extend(o,sH.prototype,e,{allOwnKeys:!0}),ui.extend(o,e,null,{allOwnKeys:!0}),o.create=function(P){return n1e(rM(t,P))},o}const Jh=n1e(dle);Jh.Axios=sH;Jh.CanceledError=lD;Jh.CancelToken=o4e;Jh.isCancel=K0e;Jh.VERSION=t1e;Jh.toFormData=DZ;Jh.AxiosError=Ic;Jh.Cancel=Jh.CanceledError;Jh.all=function(e){return Promise.all(e)};Jh.spread=i4e;Jh.isAxiosError=a4e;Jh.mergeConfig=rM;Jh.AxiosHeaders=wO;Jh.formToJSON=t=>G0e(ui.isHTMLForm(t)?new FormData(t):t);Jh.getAdapter=e1e.getAdapter;Jh.HttpStatusCode=s4e;Jh.default=Jh;const fu=Jh;function mle(t,e){const o=Object.create(null),f=t.split(",");for(let P=0;P!!o[P.toLowerCase()]:P=>!!o[P]}const od={},ZA=[],yx=()=>{},l4e=()=>!1,c4e=/^on[^a-z]/,zZ=t=>c4e.test(t),gle=t=>t.startsWith("onUpdate:"),Nh=Object.assign,vle=(t,e)=>{const o=t.indexOf(e);o>-1&&t.splice(o,1)},u4e=Object.prototype.hasOwnProperty,Zc=(t,e)=>u4e.call(t,e),xs=Array.isArray,qA=t=>FZ(t)==="[object Map]",r1e=t=>FZ(t)==="[object Set]",ll=t=>typeof t=="function",hh=t=>typeof t=="string",yle=t=>typeof t=="symbol",Ff=t=>t!==null&&typeof t=="object",o1e=t=>Ff(t)&&ll(t.then)&&ll(t.catch),i1e=Object.prototype.toString,FZ=t=>i1e.call(t),f4e=t=>FZ(t).slice(8,-1),a1e=t=>FZ(t)==="[object Object]",ble=t=>hh(t)&&t!=="NaN"&&t[0]!=="-"&&""+parseInt(t,10)===t,lH=mle(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),NZ=t=>{const e=Object.create(null);return o=>e[o]||(e[o]=t(o))},d4e=/-(\w)/g,rb=NZ(t=>t.replace(d4e,(e,o)=>o?o.toUpperCase():"")),h4e=/\B([A-Z])/g,xT=NZ(t=>t.replace(h4e,"-$1").toLowerCase()),v_=NZ(t=>t.charAt(0).toUpperCase()+t.slice(1)),tI=NZ(t=>t?`on${v_(t)}`:""),yI=(t,e)=>!Object.is(t,e),cH=(t,e)=>{for(let o=0;o{Object.defineProperty(t,e,{configurable:!0,enumerable:!1,value:o})},mae=t=>{const e=parseFloat(t);return isNaN(e)?t:e},s1e=t=>{const e=hh(t)?Number(t):NaN;return isNaN(e)?t:e};let gde;const gae=()=>gde||(gde=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function cD(t){if(xs(t)){const e={};for(let o=0;o{if(o){const f=o.split(m4e);f.length>1&&(e[f[0].trim()]=f[1].trim())}}),e}function Nv(t){let e="";if(hh(t))e=t;else if(xs(t))for(let o=0;ohh(t)?t:t==null?"":xs(t)||Ff(t)&&(t.toString===i1e||!ll(t.toString))?JSON.stringify(t,c1e,2):String(t),c1e=(t,e)=>e&&e.__v_isRef?c1e(t,e.value):qA(e)?{[`Map(${e.size})`]:[...e.entries()].reduce((o,[f,P])=>(o[`${f} =>`]=P,o),{})}:r1e(e)?{[`Set(${e.size})`]:[...e.values()]}:Ff(e)&&!xs(e)&&!a1e(e)?String(e):e;let Rv;class u1e{constructor(e=!1){this.detached=e,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Rv,!e&&Rv&&(this.index=(Rv.scopes||(Rv.scopes=[])).push(this)-1)}get active(){return this._active}run(e){if(this._active){const o=Rv;try{return Rv=this,e()}finally{Rv=o}}}on(){Rv=this}off(){Rv=this.parent}stop(e){if(this._active){let o,f;for(o=0,f=this.effects.length;o{const e=new Set(t);return e.w=0,e.n=0,e},d1e=t=>(t.w&rS)>0,h1e=t=>(t.n&rS)>0,_4e=({deps:t})=>{if(t.length)for(let e=0;e{const{deps:e}=t;if(e.length){let o=0;for(let f=0;f{(i==="length"||i>=c)&&n.push(b)})}else switch(o!==void 0&&n.push(l.get(o)),e){case"add":xs(t)?ble(o)&&n.push(l.get("length")):(n.push(l.get(cT)),qA(t)&&n.push(l.get(yae)));break;case"delete":xs(t)||(n.push(l.get(cT)),qA(t)&&n.push(l.get(yae)));break;case"set":qA(t)&&n.push(l.get(cT));break}if(n.length===1)n[0]&&bae(n[0]);else{const c=[];for(const b of n)b&&c.push(...b);bae(xle(c))}}function bae(t,e){const o=xs(t)?t:[...t];for(const f of o)f.computed&&yde(f);for(const f of o)f.computed||yde(f)}function yde(t,e){(t!==vx||t.allowRecurse)&&(t.scheduler?t.scheduler():t.run())}function O4e(t,e){var o;return(o=PH.get(t))==null?void 0:o.get(e)}const S4e=mle("__proto__,__v_isRef,__isVue"),g1e=new Set(Object.getOwnPropertyNames(Symbol).filter(t=>t!=="arguments"&&t!=="caller").map(t=>Symbol[t]).filter(yle)),k4e=wle(),T4e=wle(!1,!0),C4e=wle(!0),bde=A4e();function A4e(){const t={};return["includes","indexOf","lastIndexOf"].forEach(e=>{t[e]=function(...o){const f=As(this);for(let d=0,l=this.length;d{t[e]=function(...o){kM();const f=As(this)[e].apply(this,o);return TM(),f}}),t}function M4e(t){const e=As(this);return _1(e,"has",t),e.hasOwnProperty(t)}function wle(t=!1,e=!1){return function(f,P,d){if(P==="__v_isReactive")return!t;if(P==="__v_isReadonly")return t;if(P==="__v_isShallow")return e;if(P==="__v_raw"&&d===(t?e?H4e:_1e:e?x1e:b1e).get(f))return f;const l=xs(f);if(!t){if(l&&Zc(bde,P))return Reflect.get(bde,P,d);if(P==="hasOwnProperty")return M4e}const n=Reflect.get(f,P,d);return(yle(P)?g1e.has(P):S4e(P))||(t||_1(f,"get",P),e)?n:Dc(n)?l&&ble(P)?n:n.value:Ff(n)?t?CM(n):lm(n):n}}const E4e=v1e(),P4e=v1e(!0);function v1e(t=!1){return function(o,f,P,d){let l=o[f];if(oM(l)&&Dc(l)&&!Dc(P))return!1;if(!t&&(!RH(P)&&!oM(P)&&(l=As(l),P=As(P)),!xs(o)&&Dc(l)&&!Dc(P)))return l.value=P,!0;const n=xs(o)&&ble(f)?Number(f)t,$Z=t=>Reflect.getPrototypeOf(t);function vQ(t,e,o=!1,f=!1){t=t.__v_raw;const P=As(t),d=As(e);o||(e!==d&&_1(P,"get",e),_1(P,"get",d));const{has:l}=$Z(P),n=f?Ole:o?Tle:bI;if(l.call(P,e))return n(t.get(e));if(l.call(P,d))return n(t.get(d));t!==P&&t.get(e)}function yQ(t,e=!1){const o=this.__v_raw,f=As(o),P=As(t);return e||(t!==P&&_1(f,"has",t),_1(f,"has",P)),t===P?o.has(t):o.has(t)||o.has(P)}function bQ(t,e=!1){return t=t.__v_raw,!e&&_1(As(t),"iterate",cT),Reflect.get(t,"size",t)}function xde(t){t=As(t);const e=As(this);return $Z(e).has.call(e,t)||(e.add(t),kO(e,"add",t,t)),this}function _de(t,e){e=As(e);const o=As(this),{has:f,get:P}=$Z(o);let d=f.call(o,t);d||(t=As(t),d=f.call(o,t));const l=P.call(o,t);return o.set(t,e),d?yI(e,l)&&kO(o,"set",t,e):kO(o,"add",t,e),this}function wde(t){const e=As(this),{has:o,get:f}=$Z(e);let P=o.call(e,t);P||(t=As(t),P=o.call(e,t)),f&&f.call(e,t);const d=e.delete(t);return P&&kO(e,"delete",t,void 0),d}function Ode(){const t=As(this),e=t.size!==0,o=t.clear();return e&&kO(t,"clear",void 0,void 0),o}function xQ(t,e){return function(f,P){const d=this,l=d.__v_raw,n=As(l),c=e?Ole:t?Tle:bI;return!t&&_1(n,"iterate",cT),l.forEach((b,i)=>f.call(P,c(b),c(i),d))}}function _Q(t,e,o){return function(...f){const P=this.__v_raw,d=As(P),l=qA(d),n=t==="entries"||t===Symbol.iterator&&l,c=t==="keys"&&l,b=P[t](...f),i=o?Ole:e?Tle:bI;return!e&&_1(d,"iterate",c?yae:cT),{next(){const{value:O,done:w}=b.next();return w?{value:O,done:w}:{value:n?[i(O[0]),i(O[1])]:i(O),done:w}},[Symbol.iterator](){return this}}}}function D4(t){return function(...e){return t==="delete"?!1:this}}function z4e(){const t={get(d){return vQ(this,d)},get size(){return bQ(this)},has:yQ,add:xde,set:_de,delete:wde,clear:Ode,forEach:xQ(!1,!1)},e={get(d){return vQ(this,d,!1,!0)},get size(){return bQ(this)},has:yQ,add:xde,set:_de,delete:wde,clear:Ode,forEach:xQ(!1,!0)},o={get(d){return vQ(this,d,!0)},get size(){return bQ(this,!0)},has(d){return yQ.call(this,d,!0)},add:D4("add"),set:D4("set"),delete:D4("delete"),clear:D4("clear"),forEach:xQ(!0,!1)},f={get(d){return vQ(this,d,!0,!0)},get size(){return bQ(this,!0)},has(d){return yQ.call(this,d,!0)},add:D4("add"),set:D4("set"),delete:D4("delete"),clear:D4("clear"),forEach:xQ(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(d=>{t[d]=_Q(d,!1,!1),o[d]=_Q(d,!0,!1),e[d]=_Q(d,!1,!0),f[d]=_Q(d,!0,!0)}),[t,o,e,f]}const[F4e,N4e,$4e,V4e]=z4e();function Sle(t,e){const o=e?t?V4e:$4e:t?N4e:F4e;return(f,P,d)=>P==="__v_isReactive"?!t:P==="__v_isReadonly"?t:P==="__v_raw"?f:Reflect.get(Zc(o,P)&&P in f?o:f,P,d)}const U4e={get:Sle(!1,!1)},j4e={get:Sle(!1,!0)},Q4e={get:Sle(!0,!1)},b1e=new WeakMap,x1e=new WeakMap,_1e=new WeakMap,H4e=new WeakMap;function Z4e(t){switch(t){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function q4e(t){return t.__v_skip||!Object.isExtensible(t)?0:Z4e(f4e(t))}function lm(t){return oM(t)?t:kle(t,!1,y1e,U4e,b1e)}function w1e(t){return kle(t,!1,B4e,j4e,x1e)}function CM(t){return kle(t,!0,D4e,Q4e,_1e)}function kle(t,e,o,f,P){if(!Ff(t)||t.__v_raw&&!(e&&t.__v_isReactive))return t;const d=P.get(t);if(d)return d;const l=q4e(t);if(l===0)return t;const n=new Proxy(t,l===2?f:o);return P.set(t,n),n}function OO(t){return oM(t)?OO(t.__v_raw):!!(t&&t.__v_isReactive)}function oM(t){return!!(t&&t.__v_isReadonly)}function RH(t){return!!(t&&t.__v_isShallow)}function O1e(t){return OO(t)||oM(t)}function As(t){const e=t&&t.__v_raw;return e?As(e):t}function fD(t){return EH(t,"__v_skip",!0),t}const bI=t=>Ff(t)?lm(t):t,Tle=t=>Ff(t)?CM(t):t;function S1e(t){K4&&vx&&(t=As(t),m1e(t.dep||(t.dep=xle())))}function k1e(t,e){t=As(t);const o=t.dep;o&&bae(o)}function Dc(t){return!!(t&&t.__v_isRef===!0)}function ti(t){return T1e(t,!1)}function Ai(t){return T1e(t,!0)}function T1e(t,e){return Dc(t)?t:new W4e(t,e)}class W4e{constructor(e,o){this.__v_isShallow=o,this.dep=void 0,this.__v_isRef=!0,this._rawValue=o?e:As(e),this._value=o?e:bI(e)}get value(){return S1e(this),this._value}set value(e){const o=this.__v_isShallow||RH(e)||oM(e);e=o?e:As(e),yI(e,this._rawValue)&&(this._rawValue=e,this._value=o?e:bI(e),k1e(this))}}function wa(t){return Dc(t)?t.value:t}const Y4e={get:(t,e,o)=>wa(Reflect.get(t,e,o)),set:(t,e,o,f)=>{const P=t[e];return Dc(P)&&!Dc(o)?(P.value=o,!0):Reflect.set(t,e,o,f)}};function C1e(t){return OO(t)?t:new Proxy(t,Y4e)}function AM(t){const e=xs(t)?new Array(t.length):{};for(const o in t)e[o]=A1e(t,o);return e}class X4e{constructor(e,o,f){this._object=e,this._key=o,this._defaultValue=f,this.__v_isRef=!0}get value(){const e=this._object[this._key];return e===void 0?this._defaultValue:e}set value(e){this._object[this._key]=e}get dep(){return O4e(As(this._object),this._key)}}class G4e{constructor(e){this._getter=e,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Oi(t,e,o){return Dc(t)?t:ll(t)?new G4e(t):Ff(t)&&arguments.length>1?A1e(t,e,o):ti(t)}function A1e(t,e,o){const f=t[e];return Dc(f)?f:new X4e(t,e,o)}class K4e{constructor(e,o,f,P){this._setter=o,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new _le(e,()=>{this._dirty||(this._dirty=!0,k1e(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!P,this.__v_isReadonly=f}get value(){const e=As(this);return S1e(e),(e._dirty||!e._cacheable)&&(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function J4e(t,e,o=!1){let f,P;const d=ll(t);return d?(f=t,P=yx):(f=t.get,P=t.set),new K4e(f,P,d||!P,o)}function J4(t,e,o,f){let P;try{P=f?t(...f):t()}catch(d){dD(d,e,o)}return P}function eb(t,e,o,f){if(ll(t)){const d=J4(t,e,o,f);return d&&o1e(d)&&d.catch(l=>{dD(l,e,o)}),d}const P=[];for(let d=0;d>>1;_I($g[f])e_&&$g.splice(e,1)}function P1e(t){xs(t)?WA.push(...t):(!xO||!xO.includes(t,t.allowRecurse?eT+1:eT))&&WA.push(t),E1e()}function Sde(t,e=xI?e_+1:0){for(;e<$g.length;e++){const o=$g[e];o&&o.pre&&($g.splice(e,1),e--,o())}}function R1e(t){if(WA.length){const e=[...new Set(WA)];if(WA.length=0,xO){xO.push(...e);return}for(xO=e,xO.sort((o,f)=>_I(o)-_I(f)),eT=0;eTt.id==null?1/0:t.id,rSe=(t,e)=>{const o=_I(t)-_I(e);if(o===0){if(t.pre&&!e.pre)return-1;if(e.pre&&!t.pre)return 1}return o};function L1e(t){xae=!1,xI=!0,$g.sort(rSe);const e=yx;try{for(e_=0;e_<$g.length;e_++){const o=$g[e_];o&&o.active!==!1&&J4(o,null,14)}}finally{e_=0,$g.length=0,R1e(),xI=!1,Cle=null,($g.length||WA.length)&&L1e()}}function oSe(t,e,...o){if(t.isUnmounted)return;const f=t.vnode.props||od;let P=o;const d=e.startsWith("update:"),l=d&&e.slice(7);if(l&&l in f){const i=`${l==="modelValue"?"model":l}Modifiers`,{number:O,trim:w}=f[i]||od;w&&(P=o.map(y=>hh(y)?y.trim():y)),O&&(P=o.map(mae))}let n,c=f[n=tI(e)]||f[n=tI(rb(e))];!c&&d&&(c=f[n=tI(xT(e))]),c&&eb(c,t,6,P);const b=f[n+"Once"];if(b){if(!t.emitted)t.emitted={};else if(t.emitted[n])return;t.emitted[n]=!0,eb(b,t,6,P)}}function I1e(t,e,o=!1){const f=e.emitsCache,P=f.get(t);if(P!==void 0)return P;const d=t.emits;let l={},n=!1;if(!ll(t)){const c=b=>{const i=I1e(b,e,!0);i&&(n=!0,Nh(l,i))};!o&&e.mixins.length&&e.mixins.forEach(c),t.extends&&c(t.extends),t.mixins&&t.mixins.forEach(c)}return!d&&!n?(Ff(t)&&f.set(t,null),null):(xs(d)?d.forEach(c=>l[c]=null):Nh(l,d),Ff(t)&&f.set(t,l),l)}function VZ(t,e){return!t||!zZ(e)?!1:(e=e.slice(2).replace(/Once$/,""),Zc(t,e[0].toLowerCase()+e.slice(1))||Zc(t,xT(e))||Zc(t,e))}let cm=null,UZ=null;function LH(t){const e=cm;return cm=t,UZ=t&&t.type.__scopeId||null,e}function Mle(t){UZ=t}function Ele(){UZ=null}function Oo(t,e=cm,o){if(!e||t._n)return t;const f=(...P)=>{f._d&&Nde(-1);const d=LH(e);let l;try{l=t(...P)}finally{LH(d),f._d&&Nde(1)}return l};return f._n=!0,f._c=!0,f._d=!0,f}function Joe(t){const{type:e,vnode:o,proxy:f,withProxy:P,props:d,propsOptions:[l],slots:n,attrs:c,emit:b,render:i,renderCache:O,data:w,setupState:y,ctx:p,inheritAttrs:a}=t;let u,h;const m=LH(t);try{if(o.shapeFlag&4){const _=P||f;u=px(i.call(_,_,O,d,y,w,p)),h=c}else{const _=e;u=px(_.length>1?_(d,{attrs:c,slots:n,emit:b}):_(d,null)),h=e.props?c:aSe(c)}}catch(_){iI.length=0,dD(_,t,1),u=Ht(k0)}let v=u;if(h&&a!==!1){const _=Object.keys(h),{shapeFlag:S}=v;_.length&&S&7&&(l&&_.some(gle)&&(h=sSe(h,l)),v=TO(v,h))}return o.dirs&&(v=TO(v),v.dirs=v.dirs?v.dirs.concat(o.dirs):o.dirs),o.transition&&(v.transition=o.transition),u=v,LH(m),u}function iSe(t){let e;for(let o=0;o{let e;for(const o in t)(o==="class"||o==="style"||zZ(o))&&((e||(e={}))[o]=t[o]);return e},sSe=(t,e)=>{const o={};for(const f in t)(!gle(f)||!(f.slice(9)in e))&&(o[f]=t[f]);return o};function lSe(t,e,o){const{props:f,children:P,component:d}=t,{props:l,children:n,patchFlag:c}=e,b=d.emitsOptions;if(e.dirs||e.transition)return!0;if(o&&c>=0){if(c&1024)return!0;if(c&16)return f?kde(f,l,b):!!l;if(c&8){const i=e.dynamicProps;for(let O=0;Ot.__isSuspense,uSe={name:"Suspense",__isSuspense:!0,process(t,e,o,f,P,d,l,n,c,b){t==null?dSe(e,o,f,P,d,l,n,c,b):hSe(t,e,o,f,P,l,n,c,b)},hydrate:pSe,create:Rle,normalize:mSe},fSe=uSe;function wI(t,e){const o=t.props&&t.props[e];ll(o)&&o()}function dSe(t,e,o,f,P,d,l,n,c){const{p:b,o:{createElement:i}}=c,O=i("div"),w=t.suspense=Rle(t,P,f,e,O,o,d,l,n,c);b(null,w.pendingBranch=t.ssContent,O,null,f,w,d,l),w.deps>0?(wI(t,"onPending"),wI(t,"onFallback"),b(null,t.ssFallback,e,o,f,null,d,l),YA(w,t.ssFallback)):w.resolve(!1,!0)}function hSe(t,e,o,f,P,d,l,n,{p:c,um:b,o:{createElement:i}}){const O=e.suspense=t.suspense;O.vnode=e,e.el=t.el;const w=e.ssContent,y=e.ssFallback,{activeBranch:p,pendingBranch:a,isInFallback:u,isHydrating:h}=O;if(a)O.pendingBranch=w,t_(w,a)?(c(a,w,O.hiddenContainer,null,P,O,d,l,n),O.deps<=0?O.resolve():u&&(c(p,y,o,f,P,null,d,l,n),YA(O,y))):(O.pendingId++,h?(O.isHydrating=!1,O.activeBranch=a):b(a,P,O),O.deps=0,O.effects.length=0,O.hiddenContainer=i("div"),u?(c(null,w,O.hiddenContainer,null,P,O,d,l,n),O.deps<=0?O.resolve():(c(p,y,o,f,P,null,d,l,n),YA(O,y))):p&&t_(w,p)?(c(p,w,o,f,P,O,d,l,n),O.resolve(!0)):(c(null,w,O.hiddenContainer,null,P,O,d,l,n),O.deps<=0&&O.resolve()));else if(p&&t_(w,p))c(p,w,o,f,P,O,d,l,n),YA(O,w);else if(wI(e,"onPending"),O.pendingBranch=w,O.pendingId++,c(null,w,O.hiddenContainer,null,P,O,d,l,n),O.deps<=0)O.resolve();else{const{timeout:m,pendingId:v}=O;m>0?setTimeout(()=>{O.pendingId===v&&O.fallback(y)},m):m===0&&O.fallback(y)}}function Rle(t,e,o,f,P,d,l,n,c,b,i=!1){const{p:O,m:w,um:y,n:p,o:{parentNode:a,remove:u}}=b;let h;const m=vSe(t);m&&e!=null&&e.pendingBranch&&(h=e.pendingId,e.deps++);const v=t.props?s1e(t.props.timeout):void 0,_={vnode:t,parent:e,parentComponent:o,isSVG:l,container:f,hiddenContainer:P,anchor:d,deps:0,pendingId:0,timeout:typeof v=="number"?v:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:i,isUnmounted:!1,effects:[],resolve(S=!1,A=!1){const{vnode:x,activeBranch:R,pendingBranch:M,pendingId:T,effects:E,parentComponent:C,container:L}=_;if(_.isHydrating)_.isHydrating=!1;else if(!S){const I=R&&M.transition&&M.transition.mode==="out-in";I&&(R.transition.afterLeave=()=>{T===_.pendingId&&w(M,L,z,0)});let{anchor:z}=_;R&&(z=p(R),y(R,C,_,!0)),I||w(M,L,z,0)}YA(_,M),_.pendingBranch=null,_.isInFallback=!1;let D=_.parent,k=!1;for(;D;){if(D.pendingBranch){D.effects.push(...E),k=!0;break}D=D.parent}k||P1e(E),_.effects=[],m&&e&&e.pendingBranch&&h===e.pendingId&&(e.deps--,e.deps===0&&!A&&e.resolve()),wI(x,"onResolve")},fallback(S){if(!_.pendingBranch)return;const{vnode:A,activeBranch:x,parentComponent:R,container:M,isSVG:T}=_;wI(A,"onFallback");const E=p(x),C=()=>{_.isInFallback&&(O(null,S,M,E,R,null,T,n,c),YA(_,S))},L=S.transition&&S.transition.mode==="out-in";L&&(x.transition.afterLeave=C),_.isInFallback=!0,y(x,R,null,!0),L||C()},move(S,A,x){_.activeBranch&&w(_.activeBranch,S,A,x),_.container=S},next(){return _.activeBranch&&p(_.activeBranch)},registerDep(S,A){const x=!!_.pendingBranch;x&&_.deps++;const R=S.vnode.el;S.asyncDep.catch(M=>{dD(M,S,0)}).then(M=>{if(S.isUnmounted||_.isUnmounted||_.pendingId!==S.suspenseId)return;S.asyncResolved=!0;const{vnode:T}=S;Cae(S,M,!1),R&&(T.el=R);const E=!R&&S.subTree.el;A(S,T,a(R||S.subTree.el),R?null:p(S.subTree),_,l,c),E&&u(E),Ple(S,T.el),x&&--_.deps===0&&_.resolve()})},unmount(S,A){_.isUnmounted=!0,_.activeBranch&&y(_.activeBranch,o,S,A),_.pendingBranch&&y(_.pendingBranch,o,S,A)}};return _}function pSe(t,e,o,f,P,d,l,n,c){const b=e.suspense=Rle(e,f,o,t.parentNode,document.createElement("div"),null,P,d,l,n,!0),i=c(t,b.pendingBranch=e.ssContent,o,b,d,l);return b.deps===0&&b.resolve(!1,!0),i}function mSe(t){const{shapeFlag:e,children:o}=t,f=e&32;t.ssContent=Tde(f?o.default:o),t.ssFallback=f?Tde(o.fallback):Ht(k0)}function Tde(t){let e;if(ll(t)){const o=iM&&t._c;o&&(t._d=!1,Do()),t=t(),o&&(t._d=!0,e=Yy,K1e())}return xs(t)&&(t=iSe(t)),t=px(t),e&&!t.dynamicChildren&&(t.dynamicChildren=e.filter(o=>o!==t)),t}function gSe(t,e){e&&e.pendingBranch?xs(t)?e.effects.push(...t):e.effects.push(t):P1e(t)}function YA(t,e){t.activeBranch=e;const{vnode:o,parentComponent:f}=t,P=o.el=e.el;f&&f.subTree===o&&(f.vnode.el=P,Ple(f,P))}function vSe(t){var e;return((e=t.props)==null?void 0:e.suspensible)!=null&&t.props.suspensible!==!1}function kp(t,e){return Lle(t,null,e)}const wQ={};function Ni(t,e,o){return Lle(t,e,o)}function Lle(t,e,{immediate:o,deep:f,flush:P,onTrack:d,onTrigger:l}=od){var n;const c=f1e()===((n=Op)==null?void 0:n.scope)?Op:null;let b,i=!1,O=!1;if(Dc(t)?(b=()=>t.value,i=RH(t)):OO(t)?(b=()=>t,f=!0):xs(t)?(O=!0,i=t.some(_=>OO(_)||RH(_)),b=()=>t.map(_=>{if(Dc(_))return _.value;if(OO(_))return iT(_);if(ll(_))return J4(_,c,2)})):ll(t)?e?b=()=>J4(t,c,2):b=()=>{if(!(c&&c.isUnmounted))return w&&w(),eb(t,c,3,[y])}:b=yx,e&&f){const _=b;b=()=>iT(_())}let w,y=_=>{w=m.onStop=()=>{J4(_,c,4)}},p;if(CI)if(y=yx,e?o&&eb(e,c,3,[b(),O?[]:void 0,y]):b(),P==="sync"){const _=s5e();p=_.__watcherHandles||(_.__watcherHandles=[])}else return yx;let a=O?new Array(t.length).fill(wQ):wQ;const u=()=>{if(m.active)if(e){const _=m.run();(f||i||(O?_.some((S,A)=>yI(S,a[A])):yI(_,a)))&&(w&&w(),eb(e,c,3,[_,a===wQ?void 0:O&&a[0]===wQ?[]:a,y]),a=_)}else m.run()};u.allowRecurse=!!e;let h;P==="sync"?h=u:P==="post"?h=()=>g1(u,c&&c.suspense):(u.pre=!0,c&&(u.id=c.uid),h=()=>Ale(u));const m=new _le(b,h);e?o?u():a=m.run():P==="post"?g1(m.run.bind(m),c&&c.suspense):m.run();const v=()=>{m.stop(),c&&c.scope&&vle(c.scope.effects,m)};return p&&p.push(v),v}function ySe(t,e,o){const f=this.proxy,P=hh(t)?t.includes(".")?D1e(f,t):()=>f[t]:t.bind(f,f);let d;ll(e)?d=e:(d=e.handler,o=e);const l=Op;sM(this);const n=Lle(P,d.bind(f),o);return l?sM(l):uT(),n}function D1e(t,e){const o=e.split(".");return()=>{let f=t;for(let P=0;P{iT(o,e)});else if(a1e(t))for(const o in t)iT(t[o],e);return t}function Tp(t,e){const o=cm;if(o===null)return t;const f=ZZ(o)||o.proxy,P=t.dirs||(t.dirs=[]);for(let d=0;d{t.isMounted=!0}),dm(()=>{t.isUnmounting=!0}),t}const Zy=[Function,Array],z1e={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Zy,onEnter:Zy,onAfterEnter:Zy,onEnterCancelled:Zy,onBeforeLeave:Zy,onLeave:Zy,onAfterLeave:Zy,onLeaveCancelled:Zy,onBeforeAppear:Zy,onAppear:Zy,onAfterAppear:Zy,onAppearCancelled:Zy},bSe={name:"BaseTransition",props:z1e,setup(t,{slots:e}){const o=Zle(),f=B1e();let P;return()=>{const d=e.default&&Ile(e.default(),!0);if(!d||!d.length)return;let l=d[0];if(d.length>1){for(const a of d)if(a.type!==k0){l=a;break}}const n=As(t),{mode:c}=n;if(f.isLeaving)return eie(l);const b=Cde(l);if(!b)return eie(l);const i=OI(b,n,f,o);SI(b,i);const O=o.subTree,w=O&&Cde(O);let y=!1;const{getTransitionKey:p}=b.type;if(p){const a=p();P===void 0?P=a:a!==P&&(P=a,y=!0)}if(w&&w.type!==k0&&(!t_(b,w)||y)){const a=OI(w,n,f,o);if(SI(w,a),c==="out-in")return f.isLeaving=!0,a.afterLeave=()=>{f.isLeaving=!1,o.update.active!==!1&&o.update()},eie(l);c==="in-out"&&b.type!==k0&&(a.delayLeave=(u,h,m)=>{const v=F1e(f,w);v[String(w.key)]=w,u._leaveCb=()=>{h(),u._leaveCb=void 0,delete i.delayedLeave},i.delayedLeave=m})}return l}}},xSe=bSe;function F1e(t,e){const{leavingVNodes:o}=t;let f=o.get(e.type);return f||(f=Object.create(null),o.set(e.type,f)),f}function OI(t,e,o,f){const{appear:P,mode:d,persisted:l=!1,onBeforeEnter:n,onEnter:c,onAfterEnter:b,onEnterCancelled:i,onBeforeLeave:O,onLeave:w,onAfterLeave:y,onLeaveCancelled:p,onBeforeAppear:a,onAppear:u,onAfterAppear:h,onAppearCancelled:m}=e,v=String(t.key),_=F1e(o,t),S=(R,M)=>{R&&eb(R,f,9,M)},A=(R,M)=>{const T=M[1];S(R,M),xs(R)?R.every(E=>E.length<=1)&&T():R.length<=1&&T()},x={mode:d,persisted:l,beforeEnter(R){let M=n;if(!o.isMounted)if(P)M=a||n;else return;R._leaveCb&&R._leaveCb(!0);const T=_[v];T&&t_(t,T)&&T.el._leaveCb&&T.el._leaveCb(),S(M,[R])},enter(R){let M=c,T=b,E=i;if(!o.isMounted)if(P)M=u||c,T=h||b,E=m||i;else return;let C=!1;const L=R._enterCb=D=>{C||(C=!0,D?S(E,[R]):S(T,[R]),x.delayedLeave&&x.delayedLeave(),R._enterCb=void 0)};M?A(M,[R,L]):L()},leave(R,M){const T=String(t.key);if(R._enterCb&&R._enterCb(!0),o.isUnmounting)return M();S(O,[R]);let E=!1;const C=R._leaveCb=L=>{E||(E=!0,M(),L?S(p,[R]):S(y,[R]),R._leaveCb=void 0,_[T]===t&&delete _[T])};_[T]=t,w?A(w,[R,C]):C()},clone(R){return OI(R,e,o,f)}};return x}function eie(t){if(jZ(t))return t=TO(t),t.children=null,t}function Cde(t){return jZ(t)?t.children?t.children[0]:void 0:t}function SI(t,e){t.shapeFlag&6&&t.component?SI(t.component.subTree,e):t.shapeFlag&128?(t.ssContent.transition=e.clone(t.ssContent),t.ssFallback.transition=e.clone(t.ssFallback)):t.transition=e}function Ile(t,e=!1,o){let f=[],P=0;for(let d=0;d1)for(let d=0;dNh({name:t.name},e,{setup:t}))():t}const nI=t=>!!t.type.__asyncLoader,jZ=t=>t.type.__isKeepAlive;function Dle(t,e){N1e(t,"a",e)}function Ble(t,e){N1e(t,"da",e)}function N1e(t,e,o=Op){const f=t.__wdc||(t.__wdc=()=>{let P=o;for(;P;){if(P.isDeactivated)return;P=P.parent}return t()});if(QZ(e,f,o),o){let P=o.parent;for(;P&&P.parent;)jZ(P.parent.vnode)&&_Se(f,e,o,P),P=P.parent}}function _Se(t,e,o,f){const P=QZ(e,t,f,!0);Nle(()=>{vle(f[e],P)},o)}function QZ(t,e,o=Op,f=!1){if(o){const P=o[t]||(o[t]=[]),d=e.__weh||(e.__weh=(...l)=>{if(o.isUnmounted)return;kM(),sM(o);const n=eb(e,o,t,l);return uT(),TM(),n});return f?P.unshift(d):P.push(d),d}}const RO=t=>(e,o=Op)=>(!CI||t==="sp")&&QZ(t,(...f)=>e(...f),o),zle=RO("bm"),sg=RO("m"),$1e=RO("bu"),Fle=RO("u"),dm=RO("bum"),Nle=RO("um"),wSe=RO("sp"),OSe=RO("rtg"),SSe=RO("rtc");function kSe(t,e=Op){QZ("ec",t,e)}const $le="components",TSe="directives";function Zd(t,e){return Vle($le,t,!0,e)||t}const V1e=Symbol.for("v-ndc");function kI(t){return hh(t)?Vle($le,t,!1)||t:t||V1e}function y_(t){return Vle(TSe,t)}function Vle(t,e,o=!0,f=!1){const P=cm||Op;if(P){const d=P.type;if(t===$le){const n=o5e(d,!1);if(n&&(n===e||n===rb(e)||n===v_(rb(e))))return d}const l=Ade(P[t]||d[t],e)||Ade(P.appContext[t],e);return!l&&f?d:l}}function Ade(t,e){return t&&(t[e]||t[rb(e)]||t[v_(rb(e))])}function ob(t,e,o,f){let P;const d=o&&o[f];if(xs(t)||hh(t)){P=new Array(t.length);for(let l=0,n=t.length;le(l,n,void 0,d&&d[n]));else{const l=Object.keys(t);P=new Array(l.length);for(let n=0,c=l.length;n{const d=f.fn(...P);return d&&(d.key=f.key),d}:f.fn)}return t}function Mde(t,e,o={},f,P){if(cm.isCE||cm.parent&&nI(cm.parent)&&cm.parent.isCE)return e!=="default"&&(o.name=e),Ht("slot",o,f&&f());let d=t[e];d&&d._c&&(d._d=!1),Do();const l=d&&j1e(d(o)),n=sa(ma,{key:o.key||l&&l.key||`_${e}`},l||(f?f():[]),l&&t._===1?64:-2);return!P&&n.scopeId&&(n.slotScopeIds=[n.scopeId+"-s"]),d&&d._c&&(d._d=!0),n}function j1e(t){return t.some(e=>aM(e)?!(e.type===k0||e.type===ma&&!j1e(e.children)):!0)?t:null}function CSe(t,e){const o={};for(const f in t)o[e&&/[A-Z]/.test(f)?`on:${f}`:tI(f)]=t[f];return o}const _ae=t=>t?tve(t)?ZZ(t)||t.proxy:_ae(t.parent):null,rI=Nh(Object.create(null),{$:t=>t,$el:t=>t.vnode.el,$data:t=>t.data,$props:t=>t.props,$attrs:t=>t.attrs,$slots:t=>t.slots,$refs:t=>t.refs,$parent:t=>_ae(t.parent),$root:t=>_ae(t.root),$emit:t=>t.emit,$options:t=>Ule(t),$forceUpdate:t=>t.f||(t.f=()=>Ale(t.update)),$nextTick:t=>t.n||(t.n=lc.bind(t.proxy)),$watch:t=>ySe.bind(t)}),tie=(t,e)=>t!==od&&!t.__isScriptSetup&&Zc(t,e),ASe={get({_:t},e){const{ctx:o,setupState:f,data:P,props:d,accessCache:l,type:n,appContext:c}=t;let b;if(e[0]!=="$"){const y=l[e];if(y!==void 0)switch(y){case 1:return f[e];case 2:return P[e];case 4:return o[e];case 3:return d[e]}else{if(tie(f,e))return l[e]=1,f[e];if(P!==od&&Zc(P,e))return l[e]=2,P[e];if((b=t.propsOptions[0])&&Zc(b,e))return l[e]=3,d[e];if(o!==od&&Zc(o,e))return l[e]=4,o[e];wae&&(l[e]=0)}}const i=rI[e];let O,w;if(i)return e==="$attrs"&&_1(t,"get",e),i(t);if((O=n.__cssModules)&&(O=O[e]))return O;if(o!==od&&Zc(o,e))return l[e]=4,o[e];if(w=c.config.globalProperties,Zc(w,e))return w[e]},set({_:t},e,o){const{data:f,setupState:P,ctx:d}=t;return tie(P,e)?(P[e]=o,!0):f!==od&&Zc(f,e)?(f[e]=o,!0):Zc(t.props,e)||e[0]==="$"&&e.slice(1)in t?!1:(d[e]=o,!0)},has({_:{data:t,setupState:e,accessCache:o,ctx:f,appContext:P,propsOptions:d}},l){let n;return!!o[l]||t!==od&&Zc(t,l)||tie(e,l)||(n=d[0])&&Zc(n,l)||Zc(f,l)||Zc(rI,l)||Zc(P.config.globalProperties,l)},defineProperty(t,e,o){return o.get!=null?t._.accessCache[e]=0:Zc(o,"value")&&this.set(t,e,o.value,null),Reflect.defineProperty(t,e,o)}};function Ede(t){return xs(t)?t.reduce((e,o)=>(e[o]=null,e),{}):t}let wae=!0;function MSe(t){const e=Ule(t),o=t.proxy,f=t.ctx;wae=!1,e.beforeCreate&&Pde(e.beforeCreate,t,"bc");const{data:P,computed:d,methods:l,watch:n,provide:c,inject:b,created:i,beforeMount:O,mounted:w,beforeUpdate:y,updated:p,activated:a,deactivated:u,beforeDestroy:h,beforeUnmount:m,destroyed:v,unmounted:_,render:S,renderTracked:A,renderTriggered:x,errorCaptured:R,serverPrefetch:M,expose:T,inheritAttrs:E,components:C,directives:L,filters:D}=e;if(b&&ESe(b,f,null),l)for(const z in l){const $=l[z];ll($)&&(f[z]=$.bind(o))}if(P){const z=P.call(o,o);Ff(z)&&(t.data=lm(z))}if(wae=!0,d)for(const z in d){const $=d[z],Q=ll($)?$.bind(o,o):ll($.get)?$.get.bind(o,o):yx,j=!ll($)&&ll($.set)?$.set.bind(o):yx,U=Un({get:Q,set:j});Object.defineProperty(f,z,{enumerable:!0,configurable:!0,get:()=>U.value,set:X=>U.value=X})}if(n)for(const z in n)Q1e(n[z],f,o,z);if(c){const z=ll(c)?c.call(o):c;Reflect.ownKeys(z).forEach($=>{gf($,z[$])})}i&&Pde(i,t,"c");function I(z,$){xs($)?$.forEach(Q=>z(Q.bind(o))):$&&z($.bind(o))}if(I(zle,O),I(sg,w),I($1e,y),I(Fle,p),I(Dle,a),I(Ble,u),I(kSe,R),I(SSe,A),I(OSe,x),I(dm,m),I(Nle,_),I(wSe,M),xs(T))if(T.length){const z=t.exposed||(t.exposed={});T.forEach($=>{Object.defineProperty(z,$,{get:()=>o[$],set:Q=>o[$]=Q})})}else t.exposed||(t.exposed={});S&&t.render===yx&&(t.render=S),E!=null&&(t.inheritAttrs=E),C&&(t.components=C),L&&(t.directives=L)}function ESe(t,e,o=yx){xs(t)&&(t=Oae(t));for(const f in t){const P=t[f];let d;Ff(P)?"default"in P?d=yl(P.from||f,P.default,!0):d=yl(P.from||f):d=yl(P),Dc(d)?Object.defineProperty(e,f,{enumerable:!0,configurable:!0,get:()=>d.value,set:l=>d.value=l}):e[f]=d}}function Pde(t,e,o){eb(xs(t)?t.map(f=>f.bind(e.proxy)):t.bind(e.proxy),e,o)}function Q1e(t,e,o,f){const P=f.includes(".")?D1e(o,f):()=>o[f];if(hh(t)){const d=e[t];ll(d)&&Ni(P,d)}else if(ll(t))Ni(P,t.bind(o));else if(Ff(t))if(xs(t))t.forEach(d=>Q1e(d,e,o,f));else{const d=ll(t.handler)?t.handler.bind(o):e[t.handler];ll(d)&&Ni(P,d,t)}}function Ule(t){const e=t.type,{mixins:o,extends:f}=e,{mixins:P,optionsCache:d,config:{optionMergeStrategies:l}}=t.appContext,n=d.get(e);let c;return n?c=n:!P.length&&!o&&!f?c=e:(c={},P.length&&P.forEach(b=>IH(c,b,l,!0)),IH(c,e,l)),Ff(e)&&d.set(e,c),c}function IH(t,e,o,f=!1){const{mixins:P,extends:d}=e;d&&IH(t,d,o,!0),P&&P.forEach(l=>IH(t,l,o,!0));for(const l in e)if(!(f&&l==="expose")){const n=PSe[l]||o&&o[l];t[l]=n?n(t[l],e[l]):e[l]}return t}const PSe={data:Rde,props:Lde,emits:Lde,methods:WL,computed:WL,beforeCreate:O0,created:O0,beforeMount:O0,mounted:O0,beforeUpdate:O0,updated:O0,beforeDestroy:O0,beforeUnmount:O0,destroyed:O0,unmounted:O0,activated:O0,deactivated:O0,errorCaptured:O0,serverPrefetch:O0,components:WL,directives:WL,watch:LSe,provide:Rde,inject:RSe};function Rde(t,e){return e?t?function(){return Nh(ll(t)?t.call(this,this):t,ll(e)?e.call(this,this):e)}:e:t}function RSe(t,e){return WL(Oae(t),Oae(e))}function Oae(t){if(xs(t)){const e={};for(let o=0;o1)return o&&ll(e)?e.call(f&&f.proxy):e}}function BSe(){return!!(Op||cm||TI)}function zSe(t,e,o,f=!1){const P={},d={};EH(d,HZ,1),t.propsDefaults=Object.create(null),Z1e(t,e,P,d);for(const l in t.propsOptions[0])l in P||(P[l]=void 0);o?t.props=f?P:w1e(P):t.type.props?t.props=P:t.props=d,t.attrs=d}function FSe(t,e,o,f){const{props:P,attrs:d,vnode:{patchFlag:l}}=t,n=As(P),[c]=t.propsOptions;let b=!1;if((f||l>0)&&!(l&16)){if(l&8){const i=t.vnode.dynamicProps;for(let O=0;O{c=!0;const[w,y]=q1e(O,e,!0);Nh(l,w),y&&n.push(...y)};!o&&e.mixins.length&&e.mixins.forEach(i),t.extends&&i(t.extends),t.mixins&&t.mixins.forEach(i)}if(!d&&!c)return Ff(t)&&f.set(t,ZA),ZA;if(xs(d))for(let i=0;i-1,y[1]=a<0||p-1||Zc(y,"default"))&&n.push(O)}}}const b=[l,n];return Ff(t)&&f.set(t,b),b}function Ide(t){return t[0]!=="$"}function Dde(t){const e=t&&t.toString().match(/^\s*(function|class) (\w+)/);return e?e[2]:t===null?"null":""}function Bde(t,e){return Dde(t)===Dde(e)}function zde(t,e){return xs(e)?e.findIndex(o=>Bde(o,t)):ll(e)&&Bde(e,t)?0:-1}const W1e=t=>t[0]==="_"||t==="$stable",jle=t=>xs(t)?t.map(px):[px(t)],NSe=(t,e,o)=>{if(e._n)return e;const f=Oo((...P)=>jle(e(...P)),o);return f._c=!1,f},Y1e=(t,e,o)=>{const f=t._ctx;for(const P in t){if(W1e(P))continue;const d=t[P];if(ll(d))e[P]=NSe(P,d,f);else if(d!=null){const l=jle(d);e[P]=()=>l}}},X1e=(t,e)=>{const o=jle(e);t.slots.default=()=>o},$Se=(t,e)=>{if(t.vnode.shapeFlag&32){const o=e._;o?(t.slots=As(e),EH(e,"_",o)):Y1e(e,t.slots={})}else t.slots={},e&&X1e(t,e);EH(t.slots,HZ,1)},VSe=(t,e,o)=>{const{vnode:f,slots:P}=t;let d=!0,l=od;if(f.shapeFlag&32){const n=e._;n?o&&n===1?d=!1:(Nh(P,e),!o&&n===1&&delete P._):(d=!e.$stable,Y1e(e,P)),l=e}else e&&(X1e(t,e),l={default:1});if(d)for(const n in P)!W1e(n)&&!(n in l)&&delete P[n]};function kae(t,e,o,f,P=!1){if(xs(t)){t.forEach((w,y)=>kae(w,e&&(xs(e)?e[y]:e),o,f,P));return}if(nI(f)&&!P)return;const d=f.shapeFlag&4?ZZ(f.component)||f.component.proxy:f.el,l=P?null:d,{i:n,r:c}=t,b=e&&e.r,i=n.refs===od?n.refs={}:n.refs,O=n.setupState;if(b!=null&&b!==c&&(hh(b)?(i[b]=null,Zc(O,b)&&(O[b]=null)):Dc(b)&&(b.value=null)),ll(c))J4(c,n,12,[l,i]);else{const w=hh(c),y=Dc(c);if(w||y){const p=()=>{if(t.f){const a=w?Zc(O,c)?O[c]:i[c]:c.value;P?xs(a)&&vle(a,d):xs(a)?a.includes(d)||a.push(d):w?(i[c]=[d],Zc(O,c)&&(O[c]=i[c])):(c.value=[d],t.k&&(i[t.k]=c.value))}else w?(i[c]=l,Zc(O,c)&&(O[c]=l)):y&&(c.value=l,t.k&&(i[t.k]=l))};l?(p.id=-1,g1(p,o)):p()}}}const g1=gSe;function USe(t){return jSe(t)}function jSe(t,e){const o=gae();o.__VUE__=!0;const{insert:f,remove:P,patchProp:d,createElement:l,createText:n,createComment:c,setText:b,setElementText:i,parentNode:O,nextSibling:w,setScopeId:y=yx,insertStaticContent:p}=t,a=(se,ae,ce,de=null,ve=null,ye=null,_e=!1,Se=null,Te=!!ae.dynamicChildren)=>{if(se===ae)return;se&&!t_(se,ae)&&(de=q(se),X(se,ve,ye,!0),se=null),ae.patchFlag===-2&&(Te=!1,ae.dynamicChildren=null);const{type:Pe,ref:Ie,shapeFlag:ze}=ae;switch(Pe){case hD:u(se,ae,ce,de);break;case k0:h(se,ae,ce,de);break;case nie:se==null&&m(ae,ce,de,_e);break;case ma:C(se,ae,ce,de,ve,ye,_e,Se,Te);break;default:ze&1?S(se,ae,ce,de,ve,ye,_e,Se,Te):ze&6?L(se,ae,ce,de,ve,ye,_e,Se,Te):(ze&64||ze&128)&&Pe.process(se,ae,ce,de,ve,ye,_e,Se,Te,ee)}Ie!=null&&ve&&kae(Ie,se&&se.ref,ye,ae||se,!ae)},u=(se,ae,ce,de)=>{if(se==null)f(ae.el=n(ae.children),ce,de);else{const ve=ae.el=se.el;ae.children!==se.children&&b(ve,ae.children)}},h=(se,ae,ce,de)=>{se==null?f(ae.el=c(ae.children||""),ce,de):ae.el=se.el},m=(se,ae,ce,de)=>{[se.el,se.anchor]=p(se.children,ae,ce,de,se.el,se.anchor)},v=({el:se,anchor:ae},ce,de)=>{let ve;for(;se&&se!==ae;)ve=w(se),f(se,ce,de),se=ve;f(ae,ce,de)},_=({el:se,anchor:ae})=>{let ce;for(;se&&se!==ae;)ce=w(se),P(se),se=ce;P(ae)},S=(se,ae,ce,de,ve,ye,_e,Se,Te)=>{_e=_e||ae.type==="svg",se==null?A(ae,ce,de,ve,ye,_e,Se,Te):M(se,ae,ve,ye,_e,Se,Te)},A=(se,ae,ce,de,ve,ye,_e,Se)=>{let Te,Pe;const{type:Ie,props:ze,shapeFlag:De,transition:He,dirs:Ve}=se;if(Te=se.el=l(se.type,ye,ze&&ze.is,ze),De&8?i(Te,se.children):De&16&&R(se.children,Te,null,de,ve,ye&&Ie!=="foreignObject",_e,Se),Ve&&Qk(se,null,de,"created"),x(Te,se,se.scopeId,_e,de),ze){for(const Oe in ze)Oe!=="value"&&!lH(Oe)&&d(Te,Oe,null,ze[Oe],ye,se.children,de,ve,oe);"value"in ze&&d(Te,"value",null,ze.value),(Pe=ze.onVnodeBeforeMount)&&W2(Pe,de,se)}Ve&&Qk(se,null,de,"beforeMount");const $e=(!ve||ve&&!ve.pendingBranch)&&He&&!He.persisted;$e&&He.beforeEnter(Te),f(Te,ae,ce),((Pe=ze&&ze.onVnodeMounted)||$e||Ve)&&g1(()=>{Pe&&W2(Pe,de,se),$e&&He.enter(Te),Ve&&Qk(se,null,de,"mounted")},ve)},x=(se,ae,ce,de,ve)=>{if(ce&&y(se,ce),de)for(let ye=0;ye{for(let Pe=Te;Pe{const Se=ae.el=se.el;let{patchFlag:Te,dynamicChildren:Pe,dirs:Ie}=ae;Te|=se.patchFlag&16;const ze=se.props||od,De=ae.props||od;let He;ce&&Hk(ce,!1),(He=De.onVnodeBeforeUpdate)&&W2(He,ce,ae,se),Ie&&Qk(ae,se,ce,"beforeUpdate"),ce&&Hk(ce,!0);const Ve=ve&&ae.type!=="foreignObject";if(Pe?T(se.dynamicChildren,Pe,Se,ce,de,Ve,ye):_e||$(se,ae,Se,null,ce,de,Ve,ye,!1),Te>0){if(Te&16)E(Se,ae,ze,De,ce,de,ve);else if(Te&2&&ze.class!==De.class&&d(Se,"class",null,De.class,ve),Te&4&&d(Se,"style",ze.style,De.style,ve),Te&8){const $e=ae.dynamicProps;for(let Oe=0;Oe<$e.length;Oe++){const ke=$e[Oe],Le=ze[ke],We=De[ke];(We!==Le||ke==="value")&&d(Se,ke,Le,We,ve,se.children,ce,de,oe)}}Te&1&&se.children!==ae.children&&i(Se,ae.children)}else!_e&&Pe==null&&E(Se,ae,ze,De,ce,de,ve);((He=De.onVnodeUpdated)||Ie)&&g1(()=>{He&&W2(He,ce,ae,se),Ie&&Qk(ae,se,ce,"updated")},de)},T=(se,ae,ce,de,ve,ye,_e)=>{for(let Se=0;Se{if(ce!==de){if(ce!==od)for(const Se in ce)!lH(Se)&&!(Se in de)&&d(se,Se,ce[Se],null,_e,ae.children,ve,ye,oe);for(const Se in de){if(lH(Se))continue;const Te=de[Se],Pe=ce[Se];Te!==Pe&&Se!=="value"&&d(se,Se,Pe,Te,_e,ae.children,ve,ye,oe)}"value"in de&&d(se,"value",ce.value,de.value)}},C=(se,ae,ce,de,ve,ye,_e,Se,Te)=>{const Pe=ae.el=se?se.el:n(""),Ie=ae.anchor=se?se.anchor:n("");let{patchFlag:ze,dynamicChildren:De,slotScopeIds:He}=ae;He&&(Se=Se?Se.concat(He):He),se==null?(f(Pe,ce,de),f(Ie,ce,de),R(ae.children,ce,Ie,ve,ye,_e,Se,Te)):ze>0&&ze&64&&De&&se.dynamicChildren?(T(se.dynamicChildren,De,ce,ve,ye,_e,Se),(ae.key!=null||ve&&ae===ve.subTree)&&Qle(se,ae,!0)):$(se,ae,ce,Ie,ve,ye,_e,Se,Te)},L=(se,ae,ce,de,ve,ye,_e,Se,Te)=>{ae.slotScopeIds=Se,se==null?ae.shapeFlag&512?ve.ctx.activate(ae,ce,de,_e,Te):D(ae,ce,de,ve,ye,_e,Te):k(se,ae,Te)},D=(se,ae,ce,de,ve,ye,_e)=>{const Se=se.component=JSe(se,de,ve);if(jZ(se)&&(Se.ctx.renderer=ee),e5e(Se),Se.asyncDep){if(ve&&ve.registerDep(Se,I),!se.el){const Te=Se.subTree=Ht(k0);h(null,Te,ae,ce)}return}I(Se,se,ae,ce,ve,ye,_e)},k=(se,ae,ce)=>{const de=ae.component=se.component;if(lSe(se,ae,ce))if(de.asyncDep&&!de.asyncResolved){z(de,ae,ce);return}else de.next=ae,nSe(de.update),de.update();else ae.el=se.el,de.vnode=ae},I=(se,ae,ce,de,ve,ye,_e)=>{const Se=()=>{if(se.isMounted){let{next:Ie,bu:ze,u:De,parent:He,vnode:Ve}=se,$e=Ie,Oe;Hk(se,!1),Ie?(Ie.el=Ve.el,z(se,Ie,_e)):Ie=Ve,ze&&cH(ze),(Oe=Ie.props&&Ie.props.onVnodeBeforeUpdate)&&W2(Oe,He,Ie,Ve),Hk(se,!0);const ke=Joe(se),Le=se.subTree;se.subTree=ke,a(Le,ke,O(Le.el),q(Le),se,ve,ye),Ie.el=ke.el,$e===null&&Ple(se,ke.el),De&&g1(De,ve),(Oe=Ie.props&&Ie.props.onVnodeUpdated)&&g1(()=>W2(Oe,He,Ie,Ve),ve)}else{let Ie;const{el:ze,props:De}=ae,{bm:He,m:Ve,parent:$e}=se,Oe=nI(ae);if(Hk(se,!1),He&&cH(He),!Oe&&(Ie=De&&De.onVnodeBeforeMount)&&W2(Ie,$e,ae),Hk(se,!0),ze&&he){const ke=()=>{se.subTree=Joe(se),he(ze,se.subTree,se,ve,null)};Oe?ae.type.__asyncLoader().then(()=>!se.isUnmounted&&ke()):ke()}else{const ke=se.subTree=Joe(se);a(null,ke,ce,de,se,ve,ye),ae.el=ke.el}if(Ve&&g1(Ve,ve),!Oe&&(Ie=De&&De.onVnodeMounted)){const ke=ae;g1(()=>W2(Ie,$e,ke),ve)}(ae.shapeFlag&256||$e&&nI($e.vnode)&&$e.vnode.shapeFlag&256)&&se.a&&g1(se.a,ve),se.isMounted=!0,ae=ce=de=null}},Te=se.effect=new _le(Se,()=>Ale(Pe),se.scope),Pe=se.update=()=>Te.run();Pe.id=se.uid,Hk(se,!0),Pe()},z=(se,ae,ce)=>{ae.component=se;const de=se.vnode.props;se.vnode=ae,se.next=null,FSe(se,ae.props,de,ce),VSe(se,ae.children,ce),kM(),Sde(),TM()},$=(se,ae,ce,de,ve,ye,_e,Se,Te=!1)=>{const Pe=se&&se.children,Ie=se?se.shapeFlag:0,ze=ae.children,{patchFlag:De,shapeFlag:He}=ae;if(De>0){if(De&128){j(Pe,ze,ce,de,ve,ye,_e,Se,Te);return}else if(De&256){Q(Pe,ze,ce,de,ve,ye,_e,Se,Te);return}}He&8?(Ie&16&&oe(Pe,ve,ye),ze!==Pe&&i(ce,ze)):Ie&16?He&16?j(Pe,ze,ce,de,ve,ye,_e,Se,Te):oe(Pe,ve,ye,!0):(Ie&8&&i(ce,""),He&16&&R(ze,ce,de,ve,ye,_e,Se,Te))},Q=(se,ae,ce,de,ve,ye,_e,Se,Te)=>{se=se||ZA,ae=ae||ZA;const Pe=se.length,Ie=ae.length,ze=Math.min(Pe,Ie);let De;for(De=0;DeIe?oe(se,ve,ye,!0,!1,ze):R(ae,ce,de,ve,ye,_e,Se,Te,ze)},j=(se,ae,ce,de,ve,ye,_e,Se,Te)=>{let Pe=0;const Ie=ae.length;let ze=se.length-1,De=Ie-1;for(;Pe<=ze&&Pe<=De;){const He=se[Pe],Ve=ae[Pe]=Te?V4(ae[Pe]):px(ae[Pe]);if(t_(He,Ve))a(He,Ve,ce,null,ve,ye,_e,Se,Te);else break;Pe++}for(;Pe<=ze&&Pe<=De;){const He=se[ze],Ve=ae[De]=Te?V4(ae[De]):px(ae[De]);if(t_(He,Ve))a(He,Ve,ce,null,ve,ye,_e,Se,Te);else break;ze--,De--}if(Pe>ze){if(Pe<=De){const He=De+1,Ve=HeDe)for(;Pe<=ze;)X(se[Pe],ve,ye,!0),Pe++;else{const He=Pe,Ve=Pe,$e=new Map;for(Pe=Ve;Pe<=De;Pe++){const tt=ae[Pe]=Te?V4(ae[Pe]):px(ae[Pe]);tt.key!=null&&$e.set(tt.key,Pe)}let Oe,ke=0;const Le=De-Ve+1;let We=!1,Ue=0;const Ze=new Array(Le);for(Pe=0;Pe=Le){X(tt,ve,ye,!0);continue}let Ee;if(tt.key!=null)Ee=$e.get(tt.key);else for(Oe=Ve;Oe<=De;Oe++)if(Ze[Oe-Ve]===0&&t_(tt,ae[Oe])){Ee=Oe;break}Ee===void 0?X(tt,ve,ye,!0):(Ze[Ee-Ve]=Pe+1,Ee>=Ue?Ue=Ee:We=!0,a(tt,ae[Ee],ce,null,ve,ye,_e,Se,Te),ke++)}const Xe=We?QSe(Ze):ZA;for(Oe=Xe.length-1,Pe=Le-1;Pe>=0;Pe--){const tt=Ve+Pe,Ee=ae[tt],Ne=tt+1{const{el:ye,type:_e,transition:Se,children:Te,shapeFlag:Pe}=se;if(Pe&6){U(se.component.subTree,ae,ce,de);return}if(Pe&128){se.suspense.move(ae,ce,de);return}if(Pe&64){_e.move(se,ae,ce,ee);return}if(_e===ma){f(ye,ae,ce);for(let ze=0;zeSe.enter(ye),ve);else{const{leave:ze,delayLeave:De,afterLeave:He}=Se,Ve=()=>f(ye,ae,ce),$e=()=>{ze(ye,()=>{Ve(),He&&He()})};De?De(ye,Ve,$e):$e()}else f(ye,ae,ce)},X=(se,ae,ce,de=!1,ve=!1)=>{const{type:ye,props:_e,ref:Se,children:Te,dynamicChildren:Pe,shapeFlag:Ie,patchFlag:ze,dirs:De}=se;if(Se!=null&&kae(Se,null,ce,se,!0),Ie&256){ae.ctx.deactivate(se);return}const He=Ie&1&&De,Ve=!nI(se);let $e;if(Ve&&($e=_e&&_e.onVnodeBeforeUnmount)&&W2($e,ae,se),Ie&6)K(se.component,ce,de);else{if(Ie&128){se.suspense.unmount(ce,de);return}He&&Qk(se,null,ae,"beforeUnmount"),Ie&64?se.type.remove(se,ae,ce,ve,ee,de):Pe&&(ye!==ma||ze>0&&ze&64)?oe(Pe,ae,ce,!1,!0):(ye===ma&&ze&384||!ve&&Ie&16)&&oe(Te,ae,ce),de&&te(se)}(Ve&&($e=_e&&_e.onVnodeUnmounted)||He)&&g1(()=>{$e&&W2($e,ae,se),He&&Qk(se,null,ae,"unmounted")},ce)},te=se=>{const{type:ae,el:ce,anchor:de,transition:ve}=se;if(ae===ma){W(ce,de);return}if(ae===nie){_(se);return}const ye=()=>{P(ce),ve&&!ve.persisted&&ve.afterLeave&&ve.afterLeave()};if(se.shapeFlag&1&&ve&&!ve.persisted){const{leave:_e,delayLeave:Se}=ve,Te=()=>_e(ce,ye);Se?Se(se.el,ye,Te):Te()}else ye()},W=(se,ae)=>{let ce;for(;se!==ae;)ce=w(se),P(se),se=ce;P(ae)},K=(se,ae,ce)=>{const{bum:de,scope:ve,update:ye,subTree:_e,um:Se}=se;de&&cH(de),ve.stop(),ye&&(ye.active=!1,X(_e,se,ae,ce)),Se&&g1(Se,ae),g1(()=>{se.isUnmounted=!0},ae),ae&&ae.pendingBranch&&!ae.isUnmounted&&se.asyncDep&&!se.asyncResolved&&se.suspenseId===ae.pendingId&&(ae.deps--,ae.deps===0&&ae.resolve())},oe=(se,ae,ce,de=!1,ve=!1,ye=0)=>{for(let _e=ye;_ese.shapeFlag&6?q(se.component.subTree):se.shapeFlag&128?se.suspense.next():w(se.anchor||se.el),Y=(se,ae,ce)=>{se==null?ae._vnode&&X(ae._vnode,null,null,!0):a(ae._vnode||null,se,ae,null,null,null,ce),Sde(),R1e(),ae._vnode=se},ee={p:a,um:X,m:U,r:te,mt:D,mc:R,pc:$,pbc:T,n:q,o:t};let me,he;return e&&([me,he]=e(ee)),{render:Y,hydrate:me,createApp:DSe(Y,me)}}function Hk({effect:t,update:e},o){t.allowRecurse=e.allowRecurse=o}function Qle(t,e,o=!1){const f=t.children,P=e.children;if(xs(f)&&xs(P))for(let d=0;d>1,t[o[n]]0&&(e[f]=o[d-1]),o[d]=f)}}for(d=o.length,l=o[d-1];d-- >0;)o[d]=l,l=e[l];return o}const HSe=t=>t.__isTeleport,oI=t=>t&&(t.disabled||t.disabled===""),Fde=t=>typeof SVGElement<"u"&&t instanceof SVGElement,Tae=(t,e)=>{const o=t&&t.to;return hh(o)?e?e(o):null:o},ZSe={__isTeleport:!0,process(t,e,o,f,P,d,l,n,c,b){const{mc:i,pc:O,pbc:w,o:{insert:y,querySelector:p,createText:a,createComment:u}}=b,h=oI(e.props);let{shapeFlag:m,children:v,dynamicChildren:_}=e;if(t==null){const S=e.el=a(""),A=e.anchor=a("");y(S,o,f),y(A,o,f);const x=e.target=Tae(e.props,p),R=e.targetAnchor=a("");x&&(y(R,x),l=l||Fde(x));const M=(T,E)=>{m&16&&i(v,T,E,P,d,l,n,c)};h?M(o,A):x&&M(x,R)}else{e.el=t.el;const S=e.anchor=t.anchor,A=e.target=t.target,x=e.targetAnchor=t.targetAnchor,R=oI(t.props),M=R?o:A,T=R?S:x;if(l=l||Fde(A),_?(w(t.dynamicChildren,_,M,P,d,l,n),Qle(t,e,!0)):c||O(t,e,M,T,P,d,l,n,!1),h)R||OQ(e,o,S,b,1);else if((e.props&&e.props.to)!==(t.props&&t.props.to)){const E=e.target=Tae(e.props,p);E&&OQ(e,E,null,b,0)}else R&&OQ(e,A,x,b,1)}G1e(e)},remove(t,e,o,f,{um:P,o:{remove:d}},l){const{shapeFlag:n,children:c,anchor:b,targetAnchor:i,target:O,props:w}=t;if(O&&d(i),(l||!oI(w))&&(d(b),n&16))for(let y=0;y0?Yy||ZA:null,K1e(),iM>0&&Yy&&Yy.push(t),t}function Da(t,e,o,f,P,d){return J1e(ha(t,e,o,f,P,d,!0))}function sa(t,e,o,f,P){return J1e(Ht(t,e,o,f,P,!0))}function aM(t){return t?t.__v_isVNode===!0:!1}function t_(t,e){return t.type===e.type&&t.key===e.key}const HZ="__vInternal",eve=({key:t})=>t??null,uH=({ref:t,ref_key:e,ref_for:o})=>(typeof t=="number"&&(t=""+t),t!=null?hh(t)||Dc(t)||ll(t)?{i:cm,r:t,k:e,f:!!o}:t:null);function ha(t,e=null,o=null,f=0,P=null,d=t===ma?0:1,l=!1,n=!1){const c={__v_isVNode:!0,__v_skip:!0,type:t,props:e,key:e&&eve(e),ref:e&&uH(e),scopeId:UZ,slotScopeIds:null,children:o,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:d,patchFlag:f,dynamicProps:P,dynamicChildren:null,appContext:null,ctx:cm};return n?(Hle(c,o),d&128&&t.normalize(c)):o&&(c.shapeFlag|=hh(o)?8:16),iM>0&&!l&&Yy&&(c.patchFlag>0||d&6)&&c.patchFlag!==32&&Yy.push(c),c}const Ht=YSe;function YSe(t,e=null,o=null,f=0,P=null,d=!1){if((!t||t===V1e)&&(t=k0),aM(t)){const n=TO(t,e,!0);return o&&Hle(n,o),iM>0&&!d&&Yy&&(n.shapeFlag&6?Yy[Yy.indexOf(t)]=n:Yy.push(n)),n.patchFlag|=-2,n}if(i5e(t)&&(t=t.__vccOpts),e){e=XSe(e);let{class:n,style:c}=e;n&&!hh(n)&&(e.class=Nv(n)),Ff(c)&&(O1e(c)&&!xs(c)&&(c=Nh({},c)),e.style=cD(c))}const l=hh(t)?1:cSe(t)?128:HSe(t)?64:Ff(t)?4:ll(t)?2:0;return ha(t,e,o,f,P,l,d,!0)}function XSe(t){return t?O1e(t)||HZ in t?Nh({},t):t:null}function TO(t,e,o=!1){const{props:f,ref:P,patchFlag:d,children:l}=t,n=e?Ii(f||{},e):f;return{__v_isVNode:!0,__v_skip:!0,type:t.type,props:n,key:n&&eve(n),ref:e&&e.ref?o&&P?xs(P)?P.concat(uH(e)):[P,uH(e)]:uH(e):P,scopeId:t.scopeId,slotScopeIds:t.slotScopeIds,children:l,target:t.target,targetAnchor:t.targetAnchor,staticCount:t.staticCount,shapeFlag:t.shapeFlag,patchFlag:e&&t.type!==ma?d===-1?16:d|16:d,dynamicProps:t.dynamicProps,dynamicChildren:t.dynamicChildren,appContext:t.appContext,dirs:t.dirs,transition:t.transition,component:t.component,suspense:t.suspense,ssContent:t.ssContent&&TO(t.ssContent),ssFallback:t.ssFallback&&TO(t.ssFallback),el:t.el,anchor:t.anchor,ctx:t.ctx,ce:t.ce}}function Ss(t=" ",e=0){return Ht(hD,null,t,e)}function Za(t="",e=!1){return e?(Do(),sa(k0,null,t)):Ht(k0,null,t)}function px(t){return t==null||typeof t=="boolean"?Ht(k0):xs(t)?Ht(ma,null,t.slice()):typeof t=="object"?V4(t):Ht(hD,null,String(t))}function V4(t){return t.el===null&&t.patchFlag!==-1||t.memo?t:TO(t)}function Hle(t,e){let o=0;const{shapeFlag:f}=t;if(e==null)e=null;else if(xs(e))o=16;else if(typeof e=="object")if(f&65){const P=e.default;P&&(P._c&&(P._d=!1),Hle(t,P()),P._c&&(P._d=!0));return}else{o=32;const P=e._;!P&&!(HZ in e)?e._ctx=cm:P===3&&cm&&(cm.slots._===1?e._=1:(e._=2,t.patchFlag|=1024))}else ll(e)?(e={default:e,_ctx:cm},o=32):(e=String(e),f&64?(o=16,e=[Ss(e)]):o=8);t.children=e,t.shapeFlag|=o}function Ii(...t){const e={};for(let o=0;oOp||cm;let qle,MA,$de="__VUE_INSTANCE_SETTERS__";(MA=gae()[$de])||(MA=gae()[$de]=[]),MA.push(t=>Op=t),qle=t=>{MA.length>1?MA.forEach(e=>e(t)):MA[0](t)};const sM=t=>{qle(t),t.scope.on()},uT=()=>{Op&&Op.scope.off(),qle(null)};function tve(t){return t.vnode.shapeFlag&4}let CI=!1;function e5e(t,e=!1){CI=e;const{props:o,children:f}=t.vnode,P=tve(t);zSe(t,o,P,e),$Se(t,f);const d=P?t5e(t,e):void 0;return CI=!1,d}function t5e(t,e){const o=t.type;t.accessCache=Object.create(null),t.proxy=fD(new Proxy(t.ctx,ASe));const{setup:f}=o;if(f){const P=t.setupContext=f.length>1?r5e(t):null;sM(t),kM();const d=J4(f,t,0,[t.props,P]);if(TM(),uT(),o1e(d)){if(d.then(uT,uT),e)return d.then(l=>{Cae(t,l,e)}).catch(l=>{dD(l,t,0)});t.asyncDep=d}else Cae(t,d,e)}else nve(t,e)}function Cae(t,e,o){ll(e)?t.type.__ssrInlineRender?t.ssrRender=e:t.render=e:Ff(e)&&(t.setupState=C1e(e)),nve(t,o)}let Vde;function nve(t,e,o){const f=t.type;if(!t.render){if(!e&&Vde&&!f.render){const P=f.template||Ule(t).template;if(P){const{isCustomElement:d,compilerOptions:l}=t.appContext.config,{delimiters:n,compilerOptions:c}=f,b=Nh(Nh({isCustomElement:d,delimiters:n},l),c);f.render=Vde(P,b)}}t.render=f.render||yx}sM(t),kM(),MSe(t),TM(),uT()}function n5e(t){return t.attrsProxy||(t.attrsProxy=new Proxy(t.attrs,{get(e,o){return _1(t,"get","$attrs"),e[o]}}))}function r5e(t){const e=o=>{t.exposed=o||{}};return{get attrs(){return n5e(t)},slots:t.slots,emit:t.emit,expose:e}}function ZZ(t){if(t.exposed)return t.exposeProxy||(t.exposeProxy=new Proxy(C1e(fD(t.exposed)),{get(e,o){if(o in e)return e[o];if(o in rI)return rI[o](t)},has(e,o){return o in e||o in rI}}))}function o5e(t,e=!0){return ll(t)?t.displayName||t.name:t.name||e&&t.__name}function i5e(t){return ll(t)&&"__vccOpts"in t}const Un=(t,e)=>J4e(t,e,CI);function w1(t,e,o){const f=arguments.length;return f===2?Ff(e)&&!xs(e)?aM(e)?Ht(t,null,[e]):Ht(t,e):Ht(t,null,e):(f>3?o=Array.prototype.slice.call(arguments,2):f===3&&aM(o)&&(o=[o]),Ht(t,e,o))}const a5e=Symbol.for("v-scx"),s5e=()=>yl(a5e),l5e="3.3.4",c5e="http://www.w3.org/2000/svg",tT=typeof document<"u"?document:null,Ude=tT&&tT.createElement("template"),u5e={insert:(t,e,o)=>{e.insertBefore(t,o||null)},remove:t=>{const e=t.parentNode;e&&e.removeChild(t)},createElement:(t,e,o,f)=>{const P=e?tT.createElementNS(c5e,t):tT.createElement(t,o?{is:o}:void 0);return t==="select"&&f&&f.multiple!=null&&P.setAttribute("multiple",f.multiple),P},createText:t=>tT.createTextNode(t),createComment:t=>tT.createComment(t),setText:(t,e)=>{t.nodeValue=e},setElementText:(t,e)=>{t.textContent=e},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>tT.querySelector(t),setScopeId(t,e){t.setAttribute(e,"")},insertStaticContent(t,e,o,f,P,d){const l=o?o.previousSibling:e.lastChild;if(P&&(P===d||P.nextSibling))for(;e.insertBefore(P.cloneNode(!0),o),!(P===d||!(P=P.nextSibling)););else{Ude.innerHTML=f?``:t;const n=Ude.content;if(f){const c=n.firstChild;for(;c.firstChild;)n.appendChild(c.firstChild);n.removeChild(c)}e.insertBefore(n,o)}return[l?l.nextSibling:e.firstChild,o?o.previousSibling:e.lastChild]}};function f5e(t,e,o){const f=t._vtc;f&&(e=(e?[e,...f]:[...f]).join(" ")),e==null?t.removeAttribute("class"):o?t.setAttribute("class",e):t.className=e}function d5e(t,e,o){const f=t.style,P=hh(o);if(o&&!P){if(e&&!hh(e))for(const d in e)o[d]==null&&Aae(f,d,"");for(const d in o)Aae(f,d,o[d])}else{const d=f.display;P?e!==o&&(f.cssText=o):e&&t.removeAttribute("style"),"_vod"in t&&(f.display=d)}}const jde=/\s*!important$/;function Aae(t,e,o){if(xs(o))o.forEach(f=>Aae(t,e,f));else if(o==null&&(o=""),e.startsWith("--"))t.setProperty(e,o);else{const f=h5e(t,e);jde.test(o)?t.setProperty(xT(f),o.replace(jde,""),"important"):t[f]=o}}const Qde=["Webkit","Moz","ms"],rie={};function h5e(t,e){const o=rie[e];if(o)return o;let f=rb(e);if(f!=="filter"&&f in t)return rie[e]=f;f=v_(f);for(let P=0;Poie||(b5e.then(()=>oie=0),oie=Date.now());function _5e(t,e){const o=f=>{if(!f._vts)f._vts=Date.now();else if(f._vts<=o.attached)return;eb(w5e(f,o.value),e,5,[f])};return o.value=t,o.attached=x5e(),o}function w5e(t,e){if(xs(e)){const o=t.stopImmediatePropagation;return t.stopImmediatePropagation=()=>{o.call(t),t._stopped=!0},e.map(f=>P=>!P._stopped&&f&&f(P))}else return e}const qde=/^on[a-z]/,O5e=(t,e,o,f,P=!1,d,l,n,c)=>{e==="class"?f5e(t,f,P):e==="style"?d5e(t,o,f):zZ(e)?gle(e)||v5e(t,e,o,f,l):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):S5e(t,e,f,P))?m5e(t,e,f,d,l,n,c):(e==="true-value"?t._trueValue=f:e==="false-value"&&(t._falseValue=f),p5e(t,e,f,P))};function S5e(t,e,o,f){return f?!!(e==="innerHTML"||e==="textContent"||e in t&&qde.test(e)&&ll(o)):e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&t.tagName==="INPUT"||e==="type"&&t.tagName==="TEXTAREA"||qde.test(e)&&hh(o)?!1:e in t}const B4="transition",PL="animation",h_=(t,{slots:e})=>w1(xSe,ove(t),e);h_.displayName="Transition";const rve={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},k5e=h_.props=Nh({},z1e,rve),Zk=(t,e=[])=>{xs(t)?t.forEach(o=>o(...e)):t&&t(...e)},Wde=t=>t?xs(t)?t.some(e=>e.length>1):t.length>1:!1;function ove(t){const e={};for(const C in t)C in rve||(e[C]=t[C]);if(t.css===!1)return e;const{name:o="v",type:f,duration:P,enterFromClass:d=`${o}-enter-from`,enterActiveClass:l=`${o}-enter-active`,enterToClass:n=`${o}-enter-to`,appearFromClass:c=d,appearActiveClass:b=l,appearToClass:i=n,leaveFromClass:O=`${o}-leave-from`,leaveActiveClass:w=`${o}-leave-active`,leaveToClass:y=`${o}-leave-to`}=t,p=T5e(P),a=p&&p[0],u=p&&p[1],{onBeforeEnter:h,onEnter:m,onEnterCancelled:v,onLeave:_,onLeaveCancelled:S,onBeforeAppear:A=h,onAppear:x=m,onAppearCancelled:R=v}=e,M=(C,L,D)=>{N4(C,L?i:n),N4(C,L?b:l),D&&D()},T=(C,L)=>{C._isLeaving=!1,N4(C,O),N4(C,y),N4(C,w),L&&L()},E=C=>(L,D)=>{const k=C?x:m,I=()=>M(L,C,D);Zk(k,[L,I]),Yde(()=>{N4(L,C?c:d),bO(L,C?i:n),Wde(k)||Xde(L,f,a,I)})};return Nh(e,{onBeforeEnter(C){Zk(h,[C]),bO(C,d),bO(C,l)},onBeforeAppear(C){Zk(A,[C]),bO(C,c),bO(C,b)},onEnter:E(!1),onAppear:E(!0),onLeave(C,L){C._isLeaving=!0;const D=()=>T(C,L);bO(C,O),ave(),bO(C,w),Yde(()=>{C._isLeaving&&(N4(C,O),bO(C,y),Wde(_)||Xde(C,f,u,D))}),Zk(_,[C,D])},onEnterCancelled(C){M(C,!1),Zk(v,[C])},onAppearCancelled(C){M(C,!0),Zk(R,[C])},onLeaveCancelled(C){T(C),Zk(S,[C])}})}function T5e(t){if(t==null)return null;if(Ff(t))return[iie(t.enter),iie(t.leave)];{const e=iie(t);return[e,e]}}function iie(t){return s1e(t)}function bO(t,e){e.split(/\s+/).forEach(o=>o&&t.classList.add(o)),(t._vtc||(t._vtc=new Set)).add(e)}function N4(t,e){e.split(/\s+/).forEach(f=>f&&t.classList.remove(f));const{_vtc:o}=t;o&&(o.delete(e),o.size||(t._vtc=void 0))}function Yde(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let C5e=0;function Xde(t,e,o,f){const P=t._endId=++C5e,d=()=>{P===t._endId&&f()};if(o)return setTimeout(d,o);const{type:l,timeout:n,propCount:c}=ive(t,e);if(!l)return f();const b=l+"end";let i=0;const O=()=>{t.removeEventListener(b,w),d()},w=y=>{y.target===t&&++i>=c&&O()};setTimeout(()=>{i(o[p]||"").split(", "),P=f(`${B4}Delay`),d=f(`${B4}Duration`),l=Gde(P,d),n=f(`${PL}Delay`),c=f(`${PL}Duration`),b=Gde(n,c);let i=null,O=0,w=0;e===B4?l>0&&(i=B4,O=l,w=d.length):e===PL?b>0&&(i=PL,O=b,w=c.length):(O=Math.max(l,b),i=O>0?l>b?B4:PL:null,w=i?i===B4?d.length:c.length:0);const y=i===B4&&/\b(transform|all)(,|$)/.test(f(`${B4}Property`).toString());return{type:i,timeout:O,propCount:w,hasTransform:y}}function Gde(t,e){for(;t.lengthKde(o)+Kde(t[f])))}function Kde(t){return Number(t.slice(0,-1).replace(",","."))*1e3}function ave(){return document.body.offsetHeight}const sve=new WeakMap,lve=new WeakMap,cve={name:"TransitionGroup",props:Nh({},k5e,{tag:String,moveClass:String}),setup(t,{slots:e}){const o=Zle(),f=B1e();let P,d;return Fle(()=>{if(!P.length)return;const l=t.moveClass||`${t.name||"v"}-move`;if(!R5e(P[0].el,o.vnode.el,l))return;P.forEach(M5e),P.forEach(E5e);const n=P.filter(P5e);ave(),n.forEach(c=>{const b=c.el,i=b.style;bO(b,l),i.transform=i.webkitTransform=i.transitionDuration="";const O=b._moveCb=w=>{w&&w.target!==b||(!w||/transform$/.test(w.propertyName))&&(b.removeEventListener("transitionend",O),b._moveCb=null,N4(b,l))};b.addEventListener("transitionend",O)})}),()=>{const l=As(t),n=ove(l);let c=l.tag||ma;P=d,d=e.default?Ile(e.default()):[];for(let b=0;bdelete t.mode;cve.props;const Wle=cve;function M5e(t){const e=t.el;e._moveCb&&e._moveCb(),e._enterCb&&e._enterCb()}function E5e(t){lve.set(t,t.el.getBoundingClientRect())}function P5e(t){const e=sve.get(t),o=lve.get(t),f=e.left-o.left,P=e.top-o.top;if(f||P){const d=t.el.style;return d.transform=d.webkitTransform=`translate(${f}px,${P}px)`,d.transitionDuration="0s",t}}function R5e(t,e,o){const f=t.cloneNode();t._vtc&&t._vtc.forEach(l=>{l.split(/\s+/).forEach(n=>n&&f.classList.remove(n))}),o.split(/\s+/).forEach(l=>l&&f.classList.add(l)),f.style.display="none";const P=e.nodeType===1?e:e.parentNode;P.appendChild(f);const{hasTransform:d}=ive(f);return P.removeChild(f),d}const Jde=t=>{const e=t.props["onUpdate:modelValue"]||!1;return xs(e)?o=>cH(e,o):e};function L5e(t){t.target.composing=!0}function ehe(t){const e=t.target;e.composing&&(e.composing=!1,e.dispatchEvent(new Event("input")))}const I5e={created(t,{modifiers:{lazy:e,trim:o,number:f}},P){t._assign=Jde(P);const d=f||P.props&&P.props.type==="number";BA(t,e?"change":"input",l=>{if(l.target.composing)return;let n=t.value;o&&(n=n.trim()),d&&(n=mae(n)),t._assign(n)}),o&&BA(t,"change",()=>{t.value=t.value.trim()}),e||(BA(t,"compositionstart",L5e),BA(t,"compositionend",ehe),BA(t,"change",ehe))},mounted(t,{value:e}){t.value=e??""},beforeUpdate(t,{value:e,modifiers:{lazy:o,trim:f,number:P}},d){if(t._assign=Jde(d),t.composing||document.activeElement===t&&t.type!=="range"&&(o||f&&t.value.trim()===e||(P||t.type==="number")&&mae(t.value)===e))return;const l=e??"";t.value!==l&&(t.value=l)}},D5e=["ctrl","shift","alt","meta"],B5e={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,e)=>D5e.some(o=>t[`${o}Key`]&&!e.includes(o))},DH=(t,e)=>(o,...f)=>{for(let P=0;Po=>{if(!("key"in o))return;const f=xT(o.key);if(e.some(P=>P===f||z5e[P]===f))return t(o)},mS={beforeMount(t,{value:e},{transition:o}){t._vod=t.style.display==="none"?"":t.style.display,o&&e?o.beforeEnter(t):RL(t,e)},mounted(t,{value:e},{transition:o}){o&&e&&o.enter(t)},updated(t,{value:e,oldValue:o},{transition:f}){!e!=!o&&(f?e?(f.beforeEnter(t),RL(t,!0),f.enter(t)):f.leave(t,()=>{RL(t,!1)}):RL(t,e))},beforeUnmount(t,{value:e}){RL(t,e)}};function RL(t,e){t.style.display=e?t._vod:"none"}const F5e=Nh({patchProp:O5e},u5e);let the;function N5e(){return the||(the=USe(F5e))}const $5e=(...t)=>{const e=N5e().createApp(...t),{mount:o}=e;return e.mount=f=>{const P=V5e(f);if(!P)return;const d=e._component;!ll(d)&&!d.render&&!d.template&&(d.template=P.innerHTML),P.innerHTML="";const l=o(P,!1,P instanceof SVGElement);return P instanceof Element&&(P.removeAttribute("v-cloak"),P.setAttribute("data-v-app","")),l},e};function V5e(t){return hh(t)?document.querySelector(t):t}/*!
* vue-router v4.2.5
* (c) 2023 Eduardo San Martin Morote
* @license MIT
- */const BA=typeof window<"u";function V5e(t){return t.__esModule||t[Symbol.toStringTag]==="Module"}const $u=Object.assign;function aie(t,e){const o={};for(const f in e){const P=e[f];o[f]=yx(P)?P.map(t):t(P)}return o}const iI=()=>{},yx=Array.isArray,U5e=/\/$/,j5e=t=>t.replace(U5e,"");function sie(t,e,o="/"){let f,P={},d="",l="";const n=e.indexOf("#");let c=e.indexOf("?");return n=0&&(c=-1),c>-1&&(f=e.slice(0,c),d=e.slice(c+1,n>-1?n:e.length),P=t(d)),n>-1&&(f=f||e.slice(0,n),l=e.slice(n,e.length)),f=q5e(f??e,o),{fullPath:f+(d&&"?")+d+l,path:f,query:P,hash:l}}function Q5e(t,e){const o=e.query?t(e.query):"";return e.path+(o&&"?")+o+(e.hash||"")}function the(t,e){return!e||!t.toLowerCase().startsWith(e.toLowerCase())?t:t.slice(e.length)||"/"}function H5e(t,e,o){const f=e.matched.length-1,P=o.matched.length-1;return f>-1&&f===P&&sM(e.matched[f],o.matched[P])&&uve(e.params,o.params)&&t(e.query)===t(o.query)&&e.hash===o.hash}function sM(t,e){return(t.aliasOf||t)===(e.aliasOf||e)}function uve(t,e){if(Object.keys(t).length!==Object.keys(e).length)return!1;for(const o in t)if(!Z5e(t[o],e[o]))return!1;return!0}function Z5e(t,e){return yx(t)?nhe(t,e):yx(e)?nhe(e,t):t===e}function nhe(t,e){return yx(e)?t.length===e.length&&t.every((o,f)=>o===e[f]):t.length===1&&t[0]===e}function q5e(t,e){if(t.startsWith("/"))return t;if(!t)return e;const o=e.split("/"),f=t.split("/"),P=f[f.length-1];(P===".."||P===".")&&f.push("");let d=o.length-1,l,n;for(l=0;l1&&d--;else break;return o.slice(0,d).join("/")+"/"+f.slice(l-(l===f.length?1:0)).join("/")}var CI;(function(t){t.pop="pop",t.push="push"})(CI||(CI={}));var aI;(function(t){t.back="back",t.forward="forward",t.unknown=""})(aI||(aI={}));function W5e(t){if(!t)if(BA){const e=document.querySelector("base");t=e&&e.getAttribute("href")||"/",t=t.replace(/^\w+:\/\/[^\/]+/,"")}else t="/";return t[0]!=="/"&&t[0]!=="#"&&(t="/"+t),j5e(t)}const Y5e=/^[^#]+#/;function X5e(t,e){return t.replace(Y5e,"#")+e}function G5e(t,e){const o=document.documentElement.getBoundingClientRect(),f=t.getBoundingClientRect();return{behavior:e.behavior,left:f.left-o.left-(e.left||0),top:f.top-o.top-(e.top||0)}}const qZ=()=>({left:window.pageXOffset,top:window.pageYOffset});function K5e(t){let e;if("el"in t){const o=t.el,f=typeof o=="string"&&o.startsWith("#"),P=typeof o=="string"?f?document.getElementById(o.slice(1)):document.querySelector(o):o;if(!P)return;e=G5e(P,t)}else e=t;"scrollBehavior"in document.documentElement.style?window.scrollTo(e):window.scrollTo(e.left!=null?e.left:window.pageXOffset,e.top!=null?e.top:window.pageYOffset)}function rhe(t,e){return(history.state?history.state.position-e:-1)+t}const Mae=new Map;function J5e(t,e){Mae.set(t,e)}function eke(t){const e=Mae.get(t);return Mae.delete(t),e}let tke=()=>location.protocol+"//"+location.host;function fve(t,e){const{pathname:o,search:f,hash:P}=e,d=t.indexOf("#");if(d>-1){let n=P.includes(t.slice(d))?t.slice(d).length:1,c=P.slice(n);return c[0]!=="/"&&(c="/"+c),the(c,"")}return the(o,t)+f+P}function nke(t,e,o,f){let P=[],d=[],l=null;const n=({state:w})=>{const y=fve(t,location),p=o.value,a=e.value;let u=0;if(w){if(o.value=y,e.value=w,l&&l===p){l=null;return}u=a?w.position-a.position:0}else f(y);P.forEach(h=>{h(o.value,p,{delta:u,type:CI.pop,direction:u?u>0?aI.forward:aI.back:aI.unknown})})};function c(){l=o.value}function b(w){P.push(w);const y=()=>{const p=P.indexOf(w);p>-1&&P.splice(p,1)};return d.push(y),y}function i(){const{history:w}=window;w.state&&w.replaceState($u({},w.state,{scroll:qZ()}),"")}function O(){for(const w of d)w();d=[],window.removeEventListener("popstate",n),window.removeEventListener("beforeunload",i)}return window.addEventListener("popstate",n),window.addEventListener("beforeunload",i,{passive:!0}),{pauseListeners:c,listen:b,destroy:O}}function ohe(t,e,o,f=!1,P=!1){return{back:t,current:e,forward:o,replaced:f,position:window.history.length,scroll:P?qZ():null}}function rke(t){const{history:e,location:o}=window,f={value:fve(t,o)},P={value:e.state};P.value||d(f.value,{back:null,current:f.value,forward:null,position:e.length-1,replaced:!0,scroll:null},!0);function d(c,b,i){const O=t.indexOf("#"),w=O>-1?(o.host&&document.querySelector("base")?t:t.slice(O))+c:tke()+t+c;try{e[i?"replaceState":"pushState"](b,"",w),P.value=b}catch(y){console.error(y),o[i?"replace":"assign"](w)}}function l(c,b){const i=$u({},e.state,ohe(P.value.back,c,P.value.forward,!0),b,{position:P.value.position});d(c,i,!0),f.value=c}function n(c,b){const i=$u({},P.value,e.state,{forward:c,scroll:qZ()});d(i.current,i,!0);const O=$u({},ohe(f.value,c,null),{position:i.position+1},b);d(c,O,!1),f.value=c}return{location:f,state:P,push:n,replace:l}}function oke(t){t=W5e(t);const e=rke(t),o=nke(t,e.state,e.location,e.replace);function f(d,l=!0){l||o.pauseListeners(),history.go(d)}const P=$u({location:"",base:t,go:f,createHref:X5e.bind(null,t)},e,o);return Object.defineProperty(P,"location",{enumerable:!0,get:()=>e.location.value}),Object.defineProperty(P,"state",{enumerable:!0,get:()=>e.state.value}),P}function ike(t){return typeof t=="string"||t&&typeof t=="object"}function dve(t){return typeof t=="string"||typeof t=="symbol"}const z4={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},hve=Symbol("");var ihe;(function(t){t[t.aborted=4]="aborted",t[t.cancelled=8]="cancelled",t[t.duplicated=16]="duplicated"})(ihe||(ihe={}));function lM(t,e){return $u(new Error,{type:t,[hve]:!0},e)}function yO(t,e){return t instanceof Error&&hve in t&&(e==null||!!(t.type&e))}const ahe="[^/]+?",ake={sensitive:!1,strict:!1,start:!0,end:!0},ske=/[.+*?^${}()[\]/\\]/g;function lke(t,e){const o=$u({},ake,e),f=[];let P=o.start?"^":"";const d=[];for(const b of t){const i=b.length?[]:[90];o.strict&&!b.length&&(P+="/");for(let O=0;Oe.length?e.length===1&&e[0]===40+40?1:-1:0}function uke(t,e){let o=0;const f=t.score,P=e.score;for(;o0&&e[e.length-1]<0}const fke={type:0,value:""},dke=/[a-zA-Z0-9_]/;function hke(t){if(!t)return[[]];if(t==="/")return[[fke]];if(!t.startsWith("/"))throw new Error(`Invalid path "${t}"`);function e(y){throw new Error(`ERR (${o})/"${b}": ${y}`)}let o=0,f=o;const P=[];let d;function l(){d&&P.push(d),d=[]}let n=0,c,b="",i="";function O(){b&&(o===0?d.push({type:0,value:b}):o===1||o===2||o===3?(d.length>1&&(c==="*"||c==="+")&&e(`A repeatable param (${b}) must be alone in its segment. eg: '/:ids+.`),d.push({type:1,value:b,regexp:i,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):e("Invalid state to consume buffer"),b="")}function w(){b+=c}for(;n{l(m)}:iI}function l(i){if(dve(i)){const O=f.get(i);O&&(f.delete(i),o.splice(o.indexOf(O),1),O.children.forEach(l),O.alias.forEach(l))}else{const O=o.indexOf(i);O>-1&&(o.splice(O,1),i.record.name&&f.delete(i.record.name),i.children.forEach(l),i.alias.forEach(l))}}function n(){return o}function c(i){let O=0;for(;O=0&&(i.record.path!==o[O].record.path||!pve(i,o[O]));)O++;o.splice(O,0,i),i.record.name&&!che(i)&&f.set(i.record.name,i)}function b(i,O){let w,y={},p,a;if("name"in i&&i.name){if(w=f.get(i.name),!w)throw lM(1,{location:i});a=w.record.name,y=$u(lhe(O.params,w.keys.filter(m=>!m.optional).map(m=>m.name)),i.params&&lhe(i.params,w.keys.map(m=>m.name))),p=w.stringify(y)}else if("path"in i)p=i.path,w=o.find(m=>m.re.test(p)),w&&(y=w.parse(p),a=w.record.name);else{if(w=O.name?f.get(O.name):o.find(m=>m.re.test(O.path)),!w)throw lM(1,{location:i,currentLocation:O});a=w.record.name,y=$u({},O.params,i.params),p=w.stringify(y)}const u=[];let h=w;for(;h;)u.unshift(h.record),h=h.parent;return{name:a,path:p,params:y,matched:u,meta:yke(u)}}return t.forEach(i=>d(i)),{addRoute:d,resolve:b,removeRoute:l,getRoutes:n,getRecordMatcher:P}}function lhe(t,e){const o={};for(const f of e)f in t&&(o[f]=t[f]);return o}function gke(t){return{path:t.path,redirect:t.redirect,name:t.name,meta:t.meta||{},aliasOf:void 0,beforeEnter:t.beforeEnter,props:vke(t),children:t.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in t?t.components||null:t.component&&{default:t.component}}}function vke(t){const e={},o=t.props||!1;if("component"in t)e.default=o;else for(const f in t.components)e[f]=typeof o=="object"?o[f]:o;return e}function che(t){for(;t;){if(t.record.aliasOf)return!0;t=t.parent}return!1}function yke(t){return t.reduce((e,o)=>$u(e,o.meta),{})}function uhe(t,e){const o={};for(const f in t)o[f]=f in e?e[f]:t[f];return o}function pve(t,e){return e.children.some(o=>o===t||pve(t,o))}const mve=/#/g,bke=/&/g,xke=/\//g,_ke=/=/g,wke=/\?/g,gve=/\+/g,Oke=/%5B/g,Ske=/%5D/g,vve=/%5E/g,kke=/%60/g,yve=/%7B/g,Tke=/%7C/g,bve=/%7D/g,Cke=/%20/g;function Yle(t){return encodeURI(""+t).replace(Tke,"|").replace(Oke,"[").replace(Ske,"]")}function Ake(t){return Yle(t).replace(yve,"{").replace(bve,"}").replace(vve,"^")}function Eae(t){return Yle(t).replace(gve,"%2B").replace(Cke,"+").replace(mve,"%23").replace(bke,"%26").replace(kke,"`").replace(yve,"{").replace(bve,"}").replace(vve,"^")}function Mke(t){return Eae(t).replace(_ke,"%3D")}function Eke(t){return Yle(t).replace(mve,"%23").replace(wke,"%3F")}function Pke(t){return t==null?"":Eke(t).replace(xke,"%2F")}function BH(t){try{return decodeURIComponent(""+t)}catch{}return""+t}function Rke(t){const e={};if(t===""||t==="?")return e;const f=(t[0]==="?"?t.slice(1):t).split("&");for(let P=0;Pd&&Eae(d)):[f&&Eae(f)]).forEach(d=>{d!==void 0&&(e+=(e.length?"&":"")+o,d!=null&&(e+="="+d))})}return e}function Lke(t){const e={};for(const o in t){const f=t[o];f!==void 0&&(e[o]=yx(f)?f.map(P=>P==null?null:""+P):f==null?f:""+f)}return e}const Ike=Symbol(""),dhe=Symbol(""),Xle=Symbol(""),Gle=Symbol(""),Pae=Symbol("");function RL(){let t=[];function e(f){return t.push(f),()=>{const P=t.indexOf(f);P>-1&&t.splice(P,1)}}function o(){t=[]}return{add:e,list:()=>t.slice(),reset:o}}function U4(t,e,o,f,P){const d=f&&(f.enterCallbacks[P]=f.enterCallbacks[P]||[]);return()=>new Promise((l,n)=>{const c=O=>{O===!1?n(lM(4,{from:o,to:e})):O instanceof Error?n(O):ike(O)?n(lM(2,{from:e,to:O})):(d&&f.enterCallbacks[P]===d&&typeof O=="function"&&d.push(O),l())},b=t.call(f&&f.instances[P],e,o,c);let i=Promise.resolve(b);t.length<3&&(i=i.then(c)),i.catch(O=>n(O))})}function lie(t,e,o,f){const P=[];for(const d of t)for(const l in d.components){let n=d.components[l];if(!(e!=="beforeRouteEnter"&&!d.instances[l]))if(Dke(n)){const b=(n.__vccOpts||n)[e];b&&P.push(U4(b,o,f,d,l))}else{let c=n();P.push(()=>c.then(b=>{if(!b)return Promise.reject(new Error(`Couldn't resolve component "${l}" at "${d.path}"`));const i=V5e(b)?b.default:b;d.components[l]=i;const w=(i.__vccOpts||i)[e];return w&&U4(w,o,f,d,l)()}))}}return P}function Dke(t){return typeof t=="object"||"displayName"in t||"props"in t||"__vccOpts"in t}function hhe(t){const e=vl(Xle),o=vl(Gle),f=jn(()=>e.resolve(wa(t.to))),P=jn(()=>{const{matched:c}=f.value,{length:b}=c,i=c[b-1],O=o.matched;if(!i||!O.length)return-1;const w=O.findIndex(sM.bind(null,i));if(w>-1)return w;const y=phe(c[b-2]);return b>1&&phe(i)===y&&O[O.length-1].path!==y?O.findIndex(sM.bind(null,c[b-2])):w}),d=jn(()=>P.value>-1&&Nke(o.params,f.value.params)),l=jn(()=>P.value>-1&&P.value===o.matched.length-1&&uve(o.params,f.value.params));function n(c={}){return Fke(c)?e[wa(t.replace)?"replace":"push"](wa(t.to)).catch(iI):Promise.resolve()}return{route:f,href:jn(()=>f.value.href),isActive:d,isExactActive:l,navigate:n}}const Bke=Hg({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:hhe,setup(t,{slots:e}){const o=lm(hhe(t)),{options:f}=vl(Xle),P=jn(()=>({[mhe(t.activeClass,f.linkActiveClass,"router-link-active")]:o.isActive,[mhe(t.exactActiveClass,f.linkExactActiveClass,"router-link-exact-active")]:o.isExactActive}));return()=>{const d=e.default&&e.default(o);return t.custom?d:w1("a",{"aria-current":o.isExactActive?t.ariaCurrentValue:null,href:o.href,onClick:o.navigate,class:P.value},d)}}}),zke=Bke;function Fke(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&!(t.button!==void 0&&t.button!==0)){if(t.currentTarget&&t.currentTarget.getAttribute){const e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function Nke(t,e){for(const o in e){const f=e[o],P=t[o];if(typeof f=="string"){if(f!==P)return!1}else if(!yx(P)||P.length!==f.length||f.some((d,l)=>d!==P[l]))return!1}return!0}function phe(t){return t?t.aliasOf?t.aliasOf.path:t.path:""}const mhe=(t,e,o)=>t??e??o,$ke=Hg({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(t,{attrs:e,slots:o}){const f=vl(Pae),P=jn(()=>t.route||f.value),d=vl(dhe,0),l=jn(()=>{let b=wa(d);const{matched:i}=P.value;let O;for(;(O=i[b])&&!O.components;)b++;return b}),n=jn(()=>P.value.matched[l.value]);gf(dhe,jn(()=>l.value+1)),gf(Ike,n),gf(Pae,P);const c=ei();return Ni(()=>[c.value,n.value,t.name],([b,i,O],[w,y,p])=>{i&&(i.instances[O]=b,y&&y!==i&&b&&b===w&&(i.leaveGuards.size||(i.leaveGuards=y.leaveGuards),i.updateGuards.size||(i.updateGuards=y.updateGuards))),b&&i&&(!y||!sM(i,y)||!w)&&(i.enterCallbacks[O]||[]).forEach(a=>a(b))},{flush:"post"}),()=>{const b=P.value,i=t.name,O=n.value,w=O&&O.components[i];if(!w)return ghe(o.default,{Component:w,route:b});const y=O.props[i],p=y?y===!0?b.params:typeof y=="function"?y(b):y:null,u=w1(w,$u({},p,e,{onVnodeUnmounted:h=>{h.component.isUnmounted&&(O.instances[i]=null)},ref:c}));return ghe(o.default,{Component:u,route:b})||u}}});function ghe(t,e){if(!t)return null;const o=t(e);return o.length===1?o[0]:o}const Vke=$ke;function Uke(t){const e=mke(t.routes,t),o=t.parseQuery||Rke,f=t.stringifyQuery||fhe,P=t.history,d=RL(),l=RL(),n=RL(),c=Ai(z4);let b=z4;BA&&t.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const i=aie.bind(null,q=>""+q),O=aie.bind(null,Pke),w=aie.bind(null,BH);function y(q,Y){let ee,me;return dve(q)?(ee=e.getRecordMatcher(q),me=Y):me=q,e.addRoute(me,ee)}function p(q){const Y=e.getRecordMatcher(q);Y&&e.removeRoute(Y)}function a(){return e.getRoutes().map(q=>q.record)}function u(q){return!!e.getRecordMatcher(q)}function h(q,Y){if(Y=$u({},Y||c.value),typeof q=="string"){const ce=sie(o,q,Y.path),de=e.resolve({path:ce.path},Y),ve=P.createHref(ce.fullPath);return $u(ce,de,{params:w(de.params),hash:BH(ce.hash),redirectedFrom:void 0,href:ve})}let ee;if("path"in q)ee=$u({},q,{path:sie(o,q.path,Y.path).path});else{const ce=$u({},q.params);for(const de in ce)ce[de]==null&&delete ce[de];ee=$u({},q,{params:O(ce)}),Y.params=O(Y.params)}const me=e.resolve(ee,Y),he=q.hash||"";me.params=i(w(me.params));const se=Q5e(f,$u({},q,{hash:Ake(he),path:me.path})),ae=P.createHref(se);return $u({fullPath:se,hash:he,query:f===fhe?Lke(q.query):q.query||{}},me,{redirectedFrom:void 0,href:ae})}function m(q){return typeof q=="string"?sie(o,q,c.value.path):$u({},q)}function v(q,Y){if(b!==q)return lM(8,{from:Y,to:q})}function _(q){return x(q)}function S(q){return _($u(m(q),{replace:!0}))}function A(q){const Y=q.matched[q.matched.length-1];if(Y&&Y.redirect){const{redirect:ee}=Y;let me=typeof ee=="function"?ee(q):ee;return typeof me=="string"&&(me=me.includes("?")||me.includes("#")?me=m(me):{path:me},me.params={}),$u({query:q.query,hash:q.hash,params:"path"in me?{}:q.params},me)}}function x(q,Y){const ee=b=h(q),me=c.value,he=q.state,se=q.force,ae=q.replace===!0,ce=A(ee);if(ce)return x($u(m(ce),{state:typeof ce=="object"?$u({},he,ce.state):he,force:se,replace:ae}),Y||ee);const de=ee;de.redirectedFrom=Y;let ve;return!se&&H5e(f,me,ee)&&(ve=lM(16,{to:de,from:me}),U(me,me,!0,!1)),(ve?Promise.resolve(ve):T(de,me)).catch(ye=>yO(ye)?yO(ye,2)?ye:j(ye):$(ye,de,me)).then(ye=>{if(ye){if(yO(ye,2))return x($u({replace:ae},m(ye.to),{state:typeof ye.to=="object"?$u({},he,ye.to.state):he,force:se}),Y||de)}else ye=C(de,me,!0,ae,he);return E(de,me,ye),ye})}function R(q,Y){const ee=v(q,Y);return ee?Promise.reject(ee):Promise.resolve()}function M(q){const Y=W.values().next().value;return Y&&typeof Y.runWithContext=="function"?Y.runWithContext(q):q()}function T(q,Y){let ee;const[me,he,se]=jke(q,Y);ee=lie(me.reverse(),"beforeRouteLeave",q,Y);for(const ce of me)ce.leaveGuards.forEach(de=>{ee.push(U4(de,q,Y))});const ae=R.bind(null,q,Y);return ee.push(ae),oe(ee).then(()=>{ee=[];for(const ce of d.list())ee.push(U4(ce,q,Y));return ee.push(ae),oe(ee)}).then(()=>{ee=lie(he,"beforeRouteUpdate",q,Y);for(const ce of he)ce.updateGuards.forEach(de=>{ee.push(U4(de,q,Y))});return ee.push(ae),oe(ee)}).then(()=>{ee=[];for(const ce of se)if(ce.beforeEnter)if(yx(ce.beforeEnter))for(const de of ce.beforeEnter)ee.push(U4(de,q,Y));else ee.push(U4(ce.beforeEnter,q,Y));return ee.push(ae),oe(ee)}).then(()=>(q.matched.forEach(ce=>ce.enterCallbacks={}),ee=lie(se,"beforeRouteEnter",q,Y),ee.push(ae),oe(ee))).then(()=>{ee=[];for(const ce of l.list())ee.push(U4(ce,q,Y));return ee.push(ae),oe(ee)}).catch(ce=>yO(ce,8)?ce:Promise.reject(ce))}function E(q,Y,ee){n.list().forEach(me=>M(()=>me(q,Y,ee)))}function C(q,Y,ee,me,he){const se=v(q,Y);if(se)return se;const ae=Y===z4,ce=BA?history.state:{};ee&&(me||ae?P.replace(q.fullPath,$u({scroll:ae&&ce&&ce.scroll},he)):P.push(q.fullPath,he)),c.value=q,U(q,Y,ee,ae),j()}let L;function D(){L||(L=P.listen((q,Y,ee)=>{if(!K.listening)return;const me=h(q),he=A(me);if(he){x($u(he,{replace:!0}),me).catch(iI);return}b=me;const se=c.value;BA&&J5e(rhe(se.fullPath,ee.delta),qZ()),T(me,se).catch(ae=>yO(ae,12)?ae:yO(ae,2)?(x(ae.to,me).then(ce=>{yO(ce,20)&&!ee.delta&&ee.type===CI.pop&&P.go(-1,!1)}).catch(iI),Promise.reject()):(ee.delta&&P.go(-ee.delta,!1),$(ae,me,se))).then(ae=>{ae=ae||C(me,se,!1),ae&&(ee.delta&&!yO(ae,8)?P.go(-ee.delta,!1):ee.type===CI.pop&&yO(ae,20)&&P.go(-1,!1)),E(me,se,ae)}).catch(iI)}))}let k=RL(),I=RL(),z;function $(q,Y,ee){j(q);const me=I.list();return me.length?me.forEach(he=>he(q,Y,ee)):console.error(q),Promise.reject(q)}function Q(){return z&&c.value!==z4?Promise.resolve():new Promise((q,Y)=>{k.add([q,Y])})}function j(q){return z||(z=!q,D(),k.list().forEach(([Y,ee])=>q?ee(q):Y()),k.reset()),q}function U(q,Y,ee,me){const{scrollBehavior:he}=t;if(!BA||!he)return Promise.resolve();const se=!ee&&eke(rhe(q.fullPath,0))||(me||!ee)&&history.state&&history.state.scroll||null;return lc().then(()=>he(q,Y,se)).then(ae=>ae&&K5e(ae)).catch(ae=>$(ae,q,Y))}const X=q=>P.go(q);let te;const W=new Set,K={currentRoute:c,listening:!0,addRoute:y,removeRoute:p,hasRoute:u,getRoutes:a,resolve:h,options:t,push:_,replace:S,go:X,back:()=>X(-1),forward:()=>X(1),beforeEach:d.add,beforeResolve:l.add,afterEach:n.add,onError:I.add,isReady:Q,install(q){const Y=this;q.component("RouterLink",zke),q.component("RouterView",Vke),q.config.globalProperties.$router=Y,Object.defineProperty(q.config.globalProperties,"$route",{enumerable:!0,get:()=>wa(c)}),BA&&!te&&c.value===z4&&(te=!0,_(P.location).catch(he=>{}));const ee={};for(const he in z4)Object.defineProperty(ee,he,{get:()=>c.value[he],enumerable:!0});q.provide(Xle,Y),q.provide(Gle,_1e(ee)),q.provide(Pae,c);const me=q.unmount;W.add(q),q.unmount=function(){W.delete(q),W.size<1&&(b=z4,L&&L(),L=null,c.value=z4,te=!1,z=!1),me()}}};function oe(q){return q.reduce((Y,ee)=>Y.then(()=>M(ee)),Promise.resolve())}return K}function jke(t,e){const o=[],f=[],P=[],d=Math.max(e.matched.length,t.matched.length);for(let l=0;lsM(b,n))?f.push(n):o.push(n));const c=t.matched[l];c&&(e.matched.find(b=>sM(b,c))||P.push(c))}return[o,f,P]}function _T(){return vl(Gle)}function Qke(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var xve={exports:{}};(function(t,e){/*! For license information please see plotly.min.js.LICENSE.txt */(function(o,f){t.exports=f()})(self,function(){return function(){var o={79288:function(d,l,n){var c=n(3400),b={"X,X div":'direction:ltr;font-family:"Open Sans",verdana,arial,sans-serif;margin:0;padding:0;',"X input,X button":'font-family:"Open Sans",verdana,arial,sans-serif;',"X input:focus,X button:focus":"outline:none;","X a":"text-decoration:none;","X a:hover":"text-decoration:none;","X .crisp":"shape-rendering:crispEdges;","X .user-select-none":"-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;","X svg":"overflow:hidden;","X svg a":"fill:#447adb;","X svg a:hover":"fill:#3c6dc5;","X .main-svg":"position:absolute;top:0;left:0;pointer-events:none;","X .main-svg .draglayer":"pointer-events:all;","X .cursor-default":"cursor:default;","X .cursor-pointer":"cursor:pointer;","X .cursor-crosshair":"cursor:crosshair;","X .cursor-move":"cursor:move;","X .cursor-col-resize":"cursor:col-resize;","X .cursor-row-resize":"cursor:row-resize;","X .cursor-ns-resize":"cursor:ns-resize;","X .cursor-ew-resize":"cursor:ew-resize;","X .cursor-sw-resize":"cursor:sw-resize;","X .cursor-s-resize":"cursor:s-resize;","X .cursor-se-resize":"cursor:se-resize;","X .cursor-w-resize":"cursor:w-resize;","X .cursor-e-resize":"cursor:e-resize;","X .cursor-nw-resize":"cursor:nw-resize;","X .cursor-n-resize":"cursor:n-resize;","X .cursor-ne-resize":"cursor:ne-resize;","X .cursor-grab":"cursor:-webkit-grab;cursor:grab;","X .modebar":"position:absolute;top:2px;right:2px;","X .ease-bg":"-webkit-transition:background-color .3s ease 0s;-moz-transition:background-color .3s ease 0s;-ms-transition:background-color .3s ease 0s;-o-transition:background-color .3s ease 0s;transition:background-color .3s ease 0s;","X .modebar--hover>:not(.watermark)":"opacity:0;-webkit-transition:opacity .3s ease 0s;-moz-transition:opacity .3s ease 0s;-ms-transition:opacity .3s ease 0s;-o-transition:opacity .3s ease 0s;transition:opacity .3s ease 0s;","X:hover .modebar--hover .modebar-group":"opacity:1;","X .modebar-group":"float:left;display:inline-block;box-sizing:border-box;padding-left:8px;position:relative;vertical-align:middle;white-space:nowrap;","X .modebar-btn":"position:relative;font-size:16px;padding:3px 4px;height:22px;cursor:pointer;line-height:normal;box-sizing:border-box;","X .modebar-btn svg":"position:relative;top:2px;","X .modebar.vertical":"display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-end;max-height:100%;","X .modebar.vertical svg":"top:-1px;","X .modebar.vertical .modebar-group":"display:block;float:none;padding-left:0px;padding-bottom:8px;","X .modebar.vertical .modebar-group .modebar-btn":"display:block;text-align:center;","X [data-title]:before,X [data-title]:after":"position:absolute;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);display:none;opacity:0;z-index:1001;pointer-events:none;top:110%;right:50%;","X [data-title]:hover:before,X [data-title]:hover:after":"display:block;opacity:1;","X [data-title]:before":'content:"";position:absolute;background:rgba(0,0,0,0);border:6px solid rgba(0,0,0,0);z-index:1002;margin-top:-12px;border-bottom-color:#69738a;margin-right:-6px;',"X [data-title]:after":"content:attr(data-title);background:#69738a;color:#fff;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;margin-right:-18px;border-radius:2px;","X .vertical [data-title]:before,X .vertical [data-title]:after":"top:0%;right:200%;","X .vertical [data-title]:before":"border:6px solid rgba(0,0,0,0);border-left-color:#69738a;margin-top:8px;margin-right:-30px;",Y:'font-family:"Open Sans",verdana,arial,sans-serif;position:fixed;top:50px;right:20px;z-index:10000;font-size:10pt;max-width:180px;',"Y p":"margin:0;","Y .notifier-note":"min-width:180px;max-width:250px;border:1px solid #fff;z-index:3000;margin:0;background-color:#8c97af;background-color:rgba(140,151,175,.9);color:#fff;padding:10px;overflow-wrap:break-word;word-wrap:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;","Y .notifier-close":"color:#fff;opacity:.8;float:right;padding:0 5px;background:none;border:none;font-size:20px;font-weight:bold;line-height:20px;","Y .notifier-close:hover":"color:#444;text-decoration:none;cursor:pointer;"};for(var i in b){var O=i.replace(/^,/," ,").replace(/X/g,".js-plotly-plot .plotly").replace(/Y/g,".plotly-notifier");c.addStyleRule(O,b[i])}},86712:function(d,l,n){d.exports=n(84224)},37240:function(d,l,n){d.exports=n(51132)},29744:function(d,l,n){d.exports=n(94456)},29352:function(d,l,n){d.exports=n(67244)},96144:function(d,l,n){d.exports=n(97776)},53219:function(d,l,n){d.exports=n(61712)},4624:function(d,l,n){d.exports=n(95856)},54543:function(d,l,n){d.exports=n(54272)},45e3:function(d,l,n){d.exports=n(85404)},62300:function(d,l,n){d.exports=n(26048)},6920:function(d,l,n){d.exports=n(66240)},10264:function(d,l,n){d.exports=n(40448)},32016:function(d,l,n){d.exports=n(64884)},27528:function(d,l,n){d.exports=n(15088)},75556:function(d,l,n){d.exports=n(76744)},39204:function(d,l,n){d.exports=n(94704)},73996:function(d,l,n){d.exports=n(62396)},16489:function(d,l,n){d.exports=n(32028)},5e3:function(d,l,n){d.exports=n(81932)},77280:function(d,l,n){d.exports=n(45536)},33992:function(d,l,n){d.exports=n(42600)},17600:function(d,l,n){d.exports=n(21536)},49116:function(d,l,n){d.exports=n(65664)},46808:function(d,l,n){d.exports=n(29044)},36168:function(d,l,n){d.exports=n(48928)},13792:function(d,l,n){var c=n(32016);c.register([n(37240),n(29352),n(5e3),n(33992),n(17600),n(49116),n(6920),n(67484),n(79440),n(39204),n(83096),n(36168),n(20260),n(63560),n(65832),n(46808),n(73996),n(48824),n(89904),n(25120),n(13752),n(4340),n(62300),n(29800),n(8363),n(54543),n(86636),n(42192),n(32140),n(77280),n(89296),n(56816),n(70192),n(45e3),n(27528),n(84764),n(3920),n(50248),n(4624),n(69967),n(10264),n(86152),n(53219),n(81604),n(63796),n(29744),n(89336),n(86712),n(75556),n(16489),n(97312),n(96144)]),d.exports=c},3920:function(d,l,n){d.exports=n(43480)},25120:function(d,l,n){d.exports=n(6296)},4340:function(d,l,n){d.exports=n(7404)},86152:function(d,l,n){d.exports=n(65456)},56816:function(d,l,n){d.exports=n(22020)},89296:function(d,l,n){d.exports=n(29928)},20260:function(d,l,n){d.exports=n(75792)},32140:function(d,l,n){d.exports=n(156)},84764:function(d,l,n){d.exports=n(45499)},48824:function(d,l,n){d.exports=n(3296)},69967:function(d,l,n){d.exports=n(4184)},8363:function(d,l,n){d.exports=n(36952)},86636:function(d,l,n){d.exports=n(38983)},70192:function(d,l,n){d.exports=n(11572)},81604:function(d,l,n){d.exports=n(76924)},63796:function(d,l,n){d.exports=n(62944)},89336:function(d,l,n){d.exports=n(95443)},67484:function(d,l,n){d.exports=n(34864)},97312:function(d,l,n){d.exports=n(76272)},42192:function(d,l,n){d.exports=n(97924)},29800:function(d,l,n){d.exports=n(15436)},63560:function(d,l,n){d.exports=n(5621)},89904:function(d,l,n){d.exports=n(91304)},50248:function(d,l,n){d.exports=n(41724)},65832:function(d,l,n){d.exports=n(31991)},79440:function(d,l,n){d.exports=n(22869)},13752:function(d,l,n){d.exports=n(67776)},83096:function(d,l,n){d.exports=n(95952)},72196:function(d){d.exports=[{path:"",backoff:0},{path:"M-2.4,-3V3L0.6,0Z",backoff:.6},{path:"M-3.7,-2.5V2.5L1.3,0Z",backoff:1.3},{path:"M-4.45,-3L-1.65,-0.2V0.2L-4.45,3L1.55,0Z",backoff:1.55},{path:"M-2.2,-2.2L-0.2,-0.2V0.2L-2.2,2.2L-1.4,3L1.6,0L-1.4,-3Z",backoff:1.6},{path:"M-4.4,-2.1L-0.6,-0.2V0.2L-4.4,2.1L-4,3L2,0L-4,-3Z",backoff:2},{path:"M2,0A2,2 0 1,1 0,-2A2,2 0 0,1 2,0Z",backoff:0,noRotate:!0},{path:"M2,2V-2H-2V2Z",backoff:0,noRotate:!0}]},13916:function(d,l,n){var c=n(72196),b=n(25376),i=n(33816),O=n(31780).templatedArray;n(36208),d.exports=O("annotation",{visible:{valType:"boolean",dflt:!0,editType:"calc+arraydraw"},text:{valType:"string",editType:"calc+arraydraw"},textangle:{valType:"angle",dflt:0,editType:"calc+arraydraw"},font:b({editType:"calc+arraydraw",colorEditType:"arraydraw"}),width:{valType:"number",min:1,dflt:null,editType:"calc+arraydraw"},height:{valType:"number",min:1,dflt:null,editType:"calc+arraydraw"},opacity:{valType:"number",min:0,max:1,dflt:1,editType:"arraydraw"},align:{valType:"enumerated",values:["left","center","right"],dflt:"center",editType:"arraydraw"},valign:{valType:"enumerated",values:["top","middle","bottom"],dflt:"middle",editType:"arraydraw"},bgcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},bordercolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},borderpad:{valType:"number",min:0,dflt:1,editType:"calc+arraydraw"},borderwidth:{valType:"number",min:0,dflt:1,editType:"calc+arraydraw"},showarrow:{valType:"boolean",dflt:!0,editType:"calc+arraydraw"},arrowcolor:{valType:"color",editType:"arraydraw"},arrowhead:{valType:"integer",min:0,max:c.length,dflt:1,editType:"arraydraw"},startarrowhead:{valType:"integer",min:0,max:c.length,dflt:1,editType:"arraydraw"},arrowside:{valType:"flaglist",flags:["end","start"],extras:["none"],dflt:"end",editType:"arraydraw"},arrowsize:{valType:"number",min:.3,dflt:1,editType:"calc+arraydraw"},startarrowsize:{valType:"number",min:.3,dflt:1,editType:"calc+arraydraw"},arrowwidth:{valType:"number",min:.1,editType:"calc+arraydraw"},standoff:{valType:"number",min:0,dflt:0,editType:"calc+arraydraw"},startstandoff:{valType:"number",min:0,dflt:0,editType:"calc+arraydraw"},ax:{valType:"any",editType:"calc+arraydraw"},ay:{valType:"any",editType:"calc+arraydraw"},axref:{valType:"enumerated",dflt:"pixel",values:["pixel",i.idRegex.x.toString()],editType:"calc"},ayref:{valType:"enumerated",dflt:"pixel",values:["pixel",i.idRegex.y.toString()],editType:"calc"},xref:{valType:"enumerated",values:["paper",i.idRegex.x.toString()],editType:"calc"},x:{valType:"any",editType:"calc+arraydraw"},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"auto",editType:"calc+arraydraw"},xshift:{valType:"number",dflt:0,editType:"calc+arraydraw"},yref:{valType:"enumerated",values:["paper",i.idRegex.y.toString()],editType:"calc"},y:{valType:"any",editType:"calc+arraydraw"},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"auto",editType:"calc+arraydraw"},yshift:{valType:"number",dflt:0,editType:"calc+arraydraw"},clicktoshow:{valType:"enumerated",values:[!1,"onoff","onout"],dflt:!1,editType:"arraydraw"},xclick:{valType:"any",editType:"arraydraw"},yclick:{valType:"any",editType:"arraydraw"},hovertext:{valType:"string",editType:"arraydraw"},hoverlabel:{bgcolor:{valType:"color",editType:"arraydraw"},bordercolor:{valType:"color",editType:"arraydraw"},font:b({editType:"arraydraw"}),editType:"arraydraw"},captureevents:{valType:"boolean",editType:"arraydraw"},editType:"calc",_deprecated:{ref:{valType:"string",editType:"calc"}}})},90272:function(d,l,n){var c=n(3400),b=n(54460),i=n(23816).draw;function O(y){var p=y._fullLayout;c.filterVisible(p.annotations).forEach(function(a){var u=b.getFromId(y,a.xref),h=b.getFromId(y,a.yref),m=b.getRefType(a.xref),v=b.getRefType(a.yref);a._extremes={},m==="range"&&w(a,u),v==="range"&&w(a,h)})}function w(y,p){var a,u=p._id,h=u.charAt(0),m=y[h],v=y["a"+h],_=y[h+"ref"],S=y["a"+h+"ref"],A=y["_"+h+"padplus"],x=y["_"+h+"padminus"],R={x:1,y:-1}[h]*y[h+"shift"],M=3*y.arrowsize*y.arrowwidth||0,T=M+R,E=M-R,C=3*y.startarrowsize*y.arrowwidth||0,L=C+R,D=C-R;if(S===_){var k=b.findExtremes(p,[p.r2c(m)],{ppadplus:T,ppadminus:E}),I=b.findExtremes(p,[p.r2c(v)],{ppadplus:Math.max(A,L),ppadminus:Math.max(x,D)});a={min:[k.min[0],I.min[0]],max:[k.max[0],I.max[0]]}}else L=v?L+v:L,D=v?D-v:D,a=b.findExtremes(p,[p.r2c(m)],{ppadplus:Math.max(A,T,L),ppadminus:Math.max(x,E,D)});y._extremes[u]=a}d.exports=function(y){var p=y._fullLayout;if(c.filterVisible(p.annotations).length&&y._fullData.length)return c.syncOrAsync([i,O],y)}},42300:function(d,l,n){var c=n(3400),b=n(24040),i=n(31780).arrayEditor;function O(y,p){var a,u,h,m,v,_,S,A=y._fullLayout.annotations,x=[],R=[],M=[],T=(p||[]).length;for(a=0;a0||a.explicitOff.length>0},onClick:function(y,p){var a,u,h=O(y,p),m=h.on,v=h.off.concat(h.explicitOff),_={},S=y._fullLayout.annotations;if(m.length||v.length){for(a=0;a.6666666666666666?"right":"center"),{center:0,middle:0,left:.5,bottom:-.5,right:-.5,top:.5}[Qt]}for(var tt=!1,Ee=["x","y"],Ne=0;Ne1)&&(Dt===wt?((mn=It.r2fraction(T["a"+pt]))<0||mn>1)&&(tt=!0):tt=!0),je=It._offset+It.r2p(T[pt]),Ge=.5}else{var vt=bn==="domain";pt==="x"?(ot=T[pt],je=vt?It._offset+It._length*ot:je=$.l+$.w*ot):(ot=1-T[pt],je=vt?It._offset+It._length*ot:je=$.t+$.h*ot),Ge=T.showarrow?.5:ot}if(T.showarrow){gn.head=je;var bt=T["a"+pt];if(ht=en*Xe(.5,T.xanchor)-Gt*Xe(.5,T.yanchor),Dt===wt){var lt=y.getRefType(Dt);lt==="domain"?(pt==="y"&&(bt=1-bt),gn.tail=It._offset+It._length*bt):lt==="paper"?pt==="y"?(bt=1-bt,gn.tail=$.t+$.h*bt):gn.tail=$.l+$.w*bt:gn.tail=It._offset+It.r2p(bt),nt=ht}else gn.tail=je+bt,nt=ht+bt;gn.text=gn.tail+ht;var yt=z[pt==="x"?"width":"height"];if(wt==="paper"&&(gn.head=O.constrain(gn.head,1,yt-1)),Dt==="pixel"){var zt=-Math.max(gn.tail-3,gn.text),Rt=Math.min(gn.tail+3,gn.text)-yt;zt>0?(gn.tail+=zt,gn.text+=zt):Rt>0&&(gn.tail-=Rt,gn.text-=Rt)}gn.tail+=nn,gn.head+=nn}else nt=ht=Ct*Xe(Ge,_t),gn.text=je+ht;gn.text+=nn,ht+=nn,nt+=nn,T["_"+pt+"padplus"]=Ct/2+nt,T["_"+pt+"padminus"]=Ct/2-nt,T["_"+pt+"size"]=Ct,T["_"+pt+"shift"]=ht}if(tt)he.remove();else{var it=0,at=0;if(T.align!=="left"&&(it=(Le-Oe)*(T.align==="center"?.5:1)),T.valign!=="top"&&(at=(We-ke)*(T.valign==="middle"?.5:1)),Ve)He.select("svg").attr({x:ce+it-1,y:ce+at}).call(a.setClipUrl,ve?W:null,M);else{var Lt=ce+at-$e.top,xt=ce+it-$e.left;Te.call(h.positionText,xt,Lt).call(a.setClipUrl,ve?W:null,M)}ye.select("rect").call(a.setRect,ce,ce,Le,We),de.call(a.setRect,se/2,se/2,Ue-se,Ze-se),he.call(a.setTranslate,Math.round(K.x.text-Ue/2),Math.round(K.y.text-Ze/2)),Y.attr({transform:"rotate("+oe+","+K.x.text+","+K.y.text+")"});var Ht,Xt=function(Yt,Qt){q.selectAll(".annotation-arrow-g").remove();var Pt=K.x.head,tn=K.y.head,Kt=K.x.tail+Yt,fn=K.y.tail+Qt,dn=K.x.text+Yt,vn=K.y.text+Qt,Nn=O.rotationXYMatrix(oe,dn,vn),er=O.apply2DTransform(Nn),En=O.apply2DTransform2(Nn),In=+de.attr("width"),Un=+de.attr("height"),xr=dn-.5*In,Sr=xr+In,ar=vn-.5*Un,Fn=ar+Un,ir=[[xr,ar,xr,Fn],[xr,Fn,Sr,Fn],[Sr,Fn,Sr,ar],[Sr,ar,xr,ar]].map(En);if(!ir.reduce(function(So,go){return So^!!O.segmentsIntersect(Pt,tn,Pt+1e6,tn+1e6,go[0],go[1],go[2],go[3])},!1)){ir.forEach(function(So){var go=O.segmentsIntersect(Kt,fn,Pt,tn,So[0],So[1],So[2],So[3]);go&&(Kt=go.x,fn=go.y)});var Wn=T.arrowwidth,Kn=T.arrowcolor,_r=T.arrowside,Ir=q.append("g").style({opacity:p.opacity(Kn)}).classed("annotation-arrow-g",!0),zr=Ir.append("path").attr("d","M"+Kt+","+fn+"L"+Pt+","+tn).style("stroke-width",Wn+"px").call(p.stroke,p.rgb(Kn));if(S(zr,_r,T),Q.annotationPosition&&zr.node().parentNode&&!C){var Fr=Pt,Rr=tn;if(T.standoff){var $r=Math.sqrt(Math.pow(Pt-Kt,2)+Math.pow(tn-fn,2));Fr+=T.standoff*(Kt-Pt)/$r,Rr+=T.standoff*(fn-tn)/$r}var Kr,Co,so=Ir.append("path").classed("annotation-arrow",!0).classed("anndrag",!0).classed("cursor-move",!0).attr({d:"M3,3H-3V-3H3ZM0,0L"+(Kt-Fr)+","+(fn-Rr),transform:w(Fr,Rr)}).style("stroke-width",Wn+6+"px").call(p.stroke,"rgba(0,0,0,0)").call(p.fill,"rgba(0,0,0,0)");v.init({element:so.node(),gd:M,prepFn:function(){var So=a.getTranslate(he);Kr=So.x,Co=So.y,L&&L.autorange&&U(L._name+".autorange",!0),D&&D.autorange&&U(D._name+".autorange",!0)},moveFn:function(So,go){var li=er(Kr,Co),Pn=li[0]+So,Yn=li[1]+go;he.call(a.setTranslate,Pn,Yn),X("x",x(L,So,"x",$,T)),X("y",x(D,go,"y",$,T)),T.axref===T.xref&&X("ax",x(L,So,"ax",$,T)),T.ayref===T.yref&&X("ay",x(D,go,"ay",$,T)),Ir.attr("transform",w(So,go)),Y.attr({transform:"rotate("+oe+","+Pn+","+Yn+")"})},doneFn:function(){b.call("_guiRelayout",M,te());var So=document.querySelector(".js-notes-box-panel");So&&So.redraw(So.selectedObj)}})}}};T.showarrow&&Xt(0,0),ee&&v.init({element:he.node(),gd:M,prepFn:function(){Ht=Y.attr("transform")},moveFn:function(Yt,Qt){var Pt="pointer";if(T.showarrow)T.axref===T.xref?X("ax",x(L,Yt,"ax",$,T)):X("ax",T.ax+Yt),T.ayref===T.yref?X("ay",x(D,Qt,"ay",$.w,T)):X("ay",T.ay+Qt),Xt(Yt,Qt);else{if(C)return;var tn,Kt;if(L)tn=x(L,Yt,"x",$,T);else{var fn=T._xsize/$.w,dn=T.x+(T._xshift-T.xshift)/$.w-fn/2;tn=v.align(dn+Yt/$.w,fn,0,1,T.xanchor)}if(D)Kt=x(D,Qt,"y",$,T);else{var vn=T._ysize/$.h,Nn=T.y-(T._yshift+T.yshift)/$.h-vn/2;Kt=v.align(Nn-Qt/$.h,vn,0,1,T.yanchor)}X("x",tn),X("y",Kt),L&&D||(Pt=v.getCursor(L?.5:tn,D?.5:Kt,T.xanchor,T.yanchor))}Y.attr({transform:w(Yt,Qt)+Ht}),m(he,Pt)},clickFn:function(Yt,Qt){T.captureevents&&M.emit("plotly_clickannotation",Pe(Qt))},doneFn:function(){m(he),b.call("_guiRelayout",M,te());var Yt=document.querySelector(".js-notes-box-panel");Yt&&Yt.redraw(Yt.selectedObj)}})}}}d.exports={draw:function(M){var T=M._fullLayout;T._infolayer.selectAll(".annotation").remove();for(var E=0;E=0,C=u.indexOf("end")>=0,L=x.backoff*M+h.standoff,D=R.backoff*T+h.startstandoff;if(A.nodeName==="line"){m={x:+a.attr("x1"),y:+a.attr("y1")},v={x:+a.attr("x2"),y:+a.attr("y2")};var k=m.x-v.x,I=m.y-v.y;if(S=(_=Math.atan2(I,k))+Math.PI,L&&D&&L+D>Math.sqrt(k*k+I*I))return void q();if(L){if(L*L>k*k+I*I)return void q();var z=L*Math.cos(_),$=L*Math.sin(_);v.x+=z,v.y+=$,a.attr({x2:v.x,y2:v.y})}if(D){if(D*D>k*k+I*I)return void q();var Q=D*Math.cos(_),j=D*Math.sin(_);m.x-=Q,m.y-=j,a.attr({x1:m.x,y1:m.y})}}else if(A.nodeName==="path"){var U=A.getTotalLength(),X="";if(U1){h=!0;break}}h?O.fullLayout._infolayer.select(".annotation-"+O.id+'[data-index="'+a+'"]').remove():(u._pdata=b(O.glplot.cameraParams,[w.xaxis.r2l(u.x)*y[0],w.yaxis.r2l(u.y)*y[1],w.zaxis.r2l(u.z)*y[2]]),c(O.graphDiv,u,a,O.id,u._xa,u._ya))}}},56864:function(d,l,n){var c=n(24040),b=n(3400);d.exports={moduleType:"component",name:"annotations3d",schema:{subplots:{scene:{annotations:n(45899)}}},layoutAttributes:n(45899),handleDefaults:n(52808),includeBasePlot:function(i,O){var w=c.subplotsRegistry.gl3d;if(w)for(var y=w.attrRegex,p=Object.keys(i),a=0;a=0)))return u;if(S===3)v[S]>1&&(v[S]=1);else if(v[S]>=1)return u}var A=Math.round(255*v[0])+", "+Math.round(255*v[1])+", "+Math.round(255*v[2]);return _?"rgba("+A+", "+v[3]+")":"rgb("+A+")"}O.tinyRGB=function(u){var h=u.toRgb();return"rgb("+Math.round(h.r)+", "+Math.round(h.g)+", "+Math.round(h.b)+")"},O.rgb=function(u){return O.tinyRGB(c(u))},O.opacity=function(u){return u?c(u).getAlpha():0},O.addOpacity=function(u,h){var m=c(u).toRgb();return"rgba("+Math.round(m.r)+", "+Math.round(m.g)+", "+Math.round(m.b)+", "+h+")"},O.combine=function(u,h){var m=c(u).toRgb();if(m.a===1)return c(u).toRgbString();var v=c(h||p).toRgb(),_=v.a===1?v:{r:255*(1-v.a)+v.r*v.a,g:255*(1-v.a)+v.g*v.a,b:255*(1-v.a)+v.b*v.a},S={r:_.r*(1-m.a)+m.r*m.a,g:_.g*(1-m.a)+m.g*m.a,b:_.b*(1-m.a)+m.b*m.a};return c(S).toRgbString()},O.contrast=function(u,h,m){var v=c(u);return v.getAlpha()!==1&&(v=c(O.combine(u,p))),(v.isDark()?h?v.lighten(h):p:m?v.darken(m):y).toString()},O.stroke=function(u,h){var m=c(h);u.style({stroke:O.tinyRGB(m),"stroke-opacity":m.getAlpha()})},O.fill=function(u,h){var m=c(h);u.style({fill:O.tinyRGB(m),"fill-opacity":m.getAlpha()})},O.clean=function(u){if(u&&typeof u=="object"){var h,m,v,_,S=Object.keys(u);for(h=0;h0?Rt>=Ht:Rt<=Ht));it++)Rt>Yt&&Rt0?Rt>=Ht:Rt<=Ht));it++)Rt>zt[0]&&Rt1){var Gt=Math.pow(10,Math.floor(Math.log(en)/Math.LN10));It*=Gt*p.roundUp(en/Gt,[2,5,10]),(Math.abs(Oe.start)/Oe.size+1e-6)%1<2e-6&&(wt.tick0=0)}wt.dtick=It}wt.domain=te?[ht+ce/Te.h,ht+tt-ce/Te.h]:[ht+ae/Te.w,ht+tt-ae/Te.w],wt.setScale(),j.attr("transform",a(Math.round(Te.l),Math.round(Te.t)));var Ct,_t=j.select("."+D.cbtitleunshift).attr("transform",a(-Math.round(Te.l),-Math.round(Te.t))),nn=wt.ticklabelposition,gn=wt.title.font.size,bn=j.select("."+D.cbaxis),mn=0,vt=0;function bt(lt,yt){var zt={propContainer:wt,propName:U._propPrefix+"title",traceIndex:U._traceIndex,_meta:U._meta,placeholder:Se._dfltTitle.colorbar,containerGroup:j.select("."+D.cbtitle)},Rt=lt.charAt(0)==="h"?lt.substr(1):"h"+lt;j.selectAll("."+Rt+",."+Rt+"-math-group").remove(),_.draw(X,lt,u(zt,yt||{}))}return p.syncOrAsync([i.previousPromises,function(){var lt,yt;(te&&Dt||!te&&!Dt)&&(De==="top"&&(lt=ae+Te.l+Ee*de,yt=ce+Te.t+Ne*(1-ht-tt)+3+.75*gn),De==="bottom"&&(lt=ae+Te.l+Ee*de,yt=ce+Te.t+Ne*(1-ht)-3-.25*gn),De==="right"&&(yt=ce+Te.t+Ne*ve+3+.75*gn,lt=ae+Te.l+Ee*ht),bt(wt._id+"title",{attributes:{x:lt,y:yt,"text-anchor":te?"start":"middle"}}))},function(){if(!te&&!Dt||te&&Dt){var lt,yt=j.select("."+D.cbtitle),zt=yt.select("text"),Rt=[-Y/2,Y/2],it=yt.select(".h"+wt._id+"title-math-group").node(),at=15.6;if(zt.node()&&(at=parseInt(zt.node().style.fontSize,10)*E),it?(lt=m.bBox(it),vt=lt.width,(mn=lt.height)>at&&(Rt[1]-=(mn-at)/2)):zt.node()&&!zt.classed(D.jsPlaceholder)&&(lt=m.bBox(zt.node()),vt=lt.width,mn=lt.height),te){if(mn){if(mn+=5,De==="top")wt.domain[1]-=mn/Te.h,Rt[1]*=-1;else{wt.domain[0]+=mn/Te.h;var Lt=S.lineCount(zt);Rt[1]+=(1-Lt)*at}yt.attr("transform",a(Rt[0],Rt[1])),wt.setScale()}}else vt&&(De==="right"&&(wt.domain[0]+=(vt+gn/2)/Te.w),yt.attr("transform",a(Rt[0],Rt[1])),wt.setScale())}j.selectAll("."+D.cbfills+",."+D.cblines).attr("transform",te?a(0,Math.round(Te.h*(1-wt.domain[1]))):a(Math.round(Te.w*wt.domain[0]),0)),bn.attr("transform",te?a(0,Math.round(-Te.t)):a(Math.round(-Te.l),0));var xt=j.select("."+D.cbfills).selectAll("rect."+D.cbfill).attr("style","").data(Le);xt.enter().append("rect").classed(D.cbfill,!0).attr("style",""),xt.exit().remove();var Ht=He.map(wt.c2p).map(Math.round).sort(function(tn,Kt){return tn-Kt});xt.each(function(tn,Kt){var fn=[Kt===0?He[0]:(Le[Kt]+Le[Kt-1])/2,Kt===Le.length-1?He[1]:(Le[Kt]+Le[Kt+1])/2].map(wt.c2p).map(Math.round);te&&(fn[1]=p.constrain(fn[1]+(fn[1]>fn[0])?1:-1,Ht[0],Ht[1]));var dn=c.select(this).attr(te?"x":"y",je).attr(te?"y":"x",c.min(fn)).attr(te?"width":"height",Math.max(Ue,2)).attr(te?"height":"width",Math.max(c.max(fn)-c.min(fn),2));if(U._fillgradient)m.gradient(dn,X,U._id,te?"vertical":"horizontalreversed",U._fillgradient,"fill");else{var vn=$e(tn).replace("e-","");dn.attr("fill",b(vn).toHexString())}});var Xt=j.select("."+D.cblines).selectAll("path."+D.cbline).data(Ie.color&&Ie.width?We:[]);Xt.enter().append("path").classed(D.cbline,!0),Xt.exit().remove(),Xt.each(function(tn){var Kt=je,fn=Math.round(wt.c2p(tn))+Ie.width/2%1;c.select(this).attr("d","M"+(te?Kt+","+fn:fn+","+Kt)+(te?"h":"v")+Ue).call(m.lineGroupStyle,Ie.width,Ve(tn),Ie.dash)}),bn.selectAll("g."+wt._id+"tick,path").remove();var Yt=je+Ue+(Y||0)/2-(U.ticks==="outside"?1:0),Qt=w.calcTicks(wt),Pt=w.getTickSigns(wt)[2];return w.drawTicks(X,wt,{vals:wt.ticks==="inside"?w.clipEnds(wt,Qt):Qt,layer:bn,path:w.makeTickPath(wt,Yt,Pt),transFn:w.makeTransTickFn(wt)}),w.drawLabels(X,wt,{vals:Qt,layer:bn,transFn:w.makeTransTickLabelFn(wt),labelFns:w.makeLabelFns(wt,Yt)})},function(){if(te&&!Dt||!te&&Dt){var lt,yt,zt=wt.position||0,Rt=wt._offset+wt._length/2;if(De==="right")yt=Rt,lt=Te.l+Ee*zt+10+gn*(wt.showticklabels?1:.5);else if(lt=Rt,De==="bottom"&&(yt=Te.t+Ne*zt+10+(nn.indexOf("inside")===-1?wt.tickfont.size:0)+(wt.ticks!=="intside"&&U.ticklen||0)),De==="top"){var it=ze.text.split("
").length;yt=Te.t+Ne*zt+10-Ue-E*gn*it}bt((te?"h":"v")+wt._id+"title",{avoid:{selection:c.select(X).selectAll("g."+wt._id+"tick"),side:De,offsetTop:te?0:Te.t,offsetLeft:te?Te.l:0,maxShift:te?Se.width:Se.height},attributes:{x:lt,y:yt,"text-anchor":"middle"},transform:{rotate:te?-90:0,offset:0}})}},i.previousPromises,function(){var lt,yt=Ue+Y/2;nn.indexOf("inside")===-1&&(lt=m.bBox(bn.node()),yt+=te?lt.width:lt.height),Ct=_t.select("text");var zt=0,Rt=te&&De==="top",it=!te&&De==="right",at=0;if(Ct.node()&&!Ct.classed(D.jsPlaceholder)){var Lt,xt=_t.select(".h"+wt._id+"title-math-group").node();xt&&(te&&Dt||!te&&!Dt)?(zt=(lt=m.bBox(xt)).width,Lt=lt.height):(zt=(lt=m.bBox(_t.node())).right-Te.l-(te?je:pt),Lt=lt.bottom-Te.t-(te?pt:je),te||De!=="top"||(yt+=lt.height,at=lt.height)),it&&(Ct.attr("transform",a(zt/2+gn/2,0)),zt*=2),yt=Math.max(yt,te?zt:Lt)}var Ht=2*(te?ae:ce)+yt+ee+Y/2,Xt=0;!te&&ze.text&&se==="bottom"&&ve<=0&&(Ht+=Xt=Ht/2,at+=Xt),Se._hColorbarMoveTitle=Xt,Se._hColorbarMoveCBTitle=at;var Yt=ee+Y,Qt=(te?je:pt)-Yt/2-(te?ae:0),Pt=(te?pt:je)-(te?Xe:ce+at-Xt);j.select("."+D.cbbg).attr("x",Qt).attr("y",Pt).attr(te?"width":"height",Math.max(Ht-Xt,2)).attr(te?"height":"width",Math.max(Xe+Yt,2)).call(v.fill,me).call(v.stroke,U.bordercolor).style("stroke-width",ee);var tn=it?Math.max(zt-10,0):0;j.selectAll("."+D.cboutline).attr("x",(te?je:pt+ae)+tn).attr("y",(te?pt+ce-Xe:je)+(Rt?mn:0)).attr(te?"width":"height",Math.max(Ue,2)).attr(te?"height":"width",Math.max(Xe-(te?2*ce+mn:2*ae+tn),2)).call(v.stroke,U.outlinecolor).style({fill:"none","stroke-width":Y});var Kt=te?nt*Ht:0,fn=te?0:(1-ot)*Ht-at;if(Kt=_e?Te.l-Kt:-Kt,fn=ye?Te.t-fn:-fn,j.attr("transform",a(Kt,fn)),!te&&(ee||b(me).getAlpha()&&!b.equals(Se.paper_bgcolor,me))){var dn=bn.selectAll("text"),vn=dn[0].length,Nn=j.select("."+D.cbbg).node(),er=m.bBox(Nn),En=m.getTranslate(j);dn.each(function(_r,Ir){var zr=vn-1;if(Ir===0||Ir===zr){var Fr,Rr=m.bBox(this),$r=m.getTranslate(this);if(Ir===zr){var Kr=Rr.right+$r.x;(Fr=er.right+En.x+pt-ee-2+de-Kr)>0&&(Fr=0)}else if(Ir===0){var Co=Rr.left+$r.x;(Fr=er.left+En.x+pt+ee+2-Co)<0&&(Fr=0)}Fr&&(vn<3?this.setAttribute("transform","translate("+Fr+",0) "+this.getAttribute("transform")):this.setAttribute("visibility","hidden"))}})}var In={},Un=C[he],xr=L[he],Sr=C[se],ar=L[se],Fn=Ht-Ue;te?(K==="pixels"?(In.y=ve,In.t=Xe*Sr,In.b=Xe*ar):(In.t=In.b=0,In.yt=ve+W*Sr,In.yb=ve-W*ar),q==="pixels"?(In.x=de,In.l=Ht*Un,In.r=Ht*xr):(In.l=Fn*Un,In.r=Fn*xr,In.xl=de-oe*Un,In.xr=de+oe*xr)):(K==="pixels"?(In.x=de,In.l=Xe*Un,In.r=Xe*xr):(In.l=In.r=0,In.xl=de+W*Un,In.xr=de-W*xr),q==="pixels"?(In.y=1-ve,In.t=Ht*Sr,In.b=Ht*ar):(In.t=Fn*Sr,In.b=Fn*ar,In.yt=ve-oe*Sr,In.yb=ve+oe*ar));var ir=U.y<.5?"b":"t",Wn=U.x<.5?"l":"r";X._fullLayout._reservedMargin[U._id]={};var Kn={r:Se.width-Qt-Kt,l:Qt+In.r,b:Se.height-Pt-fn,t:Pt+In.b};_e&&ye?i.autoMargin(X,U._id,In):_e?X._fullLayout._reservedMargin[U._id][ir]=Kn[ir]:ye||te?X._fullLayout._reservedMargin[U._id][Wn]=Kn[Wn]:X._fullLayout._reservedMargin[U._id][ir]=Kn[ir]}],X)}($,z,k);Q&&Q.then&&(k._promises||[]).push(Q),k._context.edits.colorbarPosition&&function(j,U,X){var te,W,K,oe=U.orientation==="v",q=X._fullLayout._size;y.init({element:j.node(),gd:X,prepFn:function(){te=j.attr("transform"),h(j)},moveFn:function(Y,ee){j.attr("transform",te+a(Y,ee)),W=y.align((oe?U._uFrac:U._vFrac)+Y/q.w,oe?U._thickFrac:U._lenFrac,0,1,U.xanchor),K=y.align((oe?U._vFrac:1-U._uFrac)-ee/q.h,oe?U._lenFrac:U._thickFrac,0,1,U.yanchor);var me=y.getCursor(W,K,U.xanchor,U.yanchor);h(j,me)},doneFn:function(){if(h(j),W!==void 0&&K!==void 0){var Y={};Y[U._propPrefix+"x"]=W,Y[U._propPrefix+"y"]=K,U._traceIndex!==void 0?O.call("_guiRestyle",X,Y,U._traceIndex):O.call("_guiRelayout",X,Y)}}})}($,z,k)}),I.exit().each(function(z){i.autoMargin(k,z._id)}).remove(),I.order()}}},90553:function(d,l,n){var c=n(3400);d.exports=function(b){return c.isPlainObject(b.colorbar)}},55080:function(d,l,n){d.exports={moduleType:"component",name:"colorbar",attributes:n(42996),supplyDefaults:n(64013),draw:n(37848).draw,hasColorbar:n(90553)}},49084:function(d,l,n){var c=n(42996),b=n(53756).counter,i=n(95376),O=n(88304).scales;function w(y){return"`"+y+"`"}i(O),d.exports=function(y,p){y=y||"";var a,u=(p=p||{}).cLetter||"c",h=("onlyIfNumerical"in p&&p.onlyIfNumerical,"noScale"in p?p.noScale:y==="marker.line"),m="showScaleDflt"in p?p.showScaleDflt:u==="z",v=typeof p.colorscaleDflt=="string"?O[p.colorscaleDflt]:null,_=p.editTypeOverride||"",S=y?y+".":"";"colorAttr"in p?(a=p.colorAttr,p.colorAttr):w(S+(a={z:"z",c:"color"}[u]));var A=u+"auto",x=u+"min",R=u+"max",M=u+"mid",T={};T[x]=T[R]=void 0;var E={};E[A]=!1;var C={};return a==="color"&&(C.color={valType:"color",arrayOk:!0,editType:_||"style"},p.anim&&(C.color.anim=!0)),C[A]={valType:"boolean",dflt:!0,editType:"calc",impliedEdits:T},C[x]={valType:"number",dflt:null,editType:_||"plot",impliedEdits:E},C[R]={valType:"number",dflt:null,editType:_||"plot",impliedEdits:E},C[M]={valType:"number",dflt:null,editType:"calc",impliedEdits:T},C.colorscale={valType:"colorscale",editType:"calc",dflt:v,impliedEdits:{autocolorscale:!1}},C.autocolorscale={valType:"boolean",dflt:p.autoColorDflt!==!1,editType:"calc",impliedEdits:{colorscale:void 0}},C.reversescale={valType:"boolean",dflt:!1,editType:"plot"},h||(C.showscale={valType:"boolean",dflt:m,editType:"calc"},C.colorbar=c),p.noColorAxis||(C.coloraxis={valType:"subplotid",regex:b("coloraxis"),dflt:null,editType:"calc"}),C}},47128:function(d,l,n){var c=n(38248),b=n(3400),i=n(94288).extractOpts;d.exports=function(O,w,y){var p,a=O._fullLayout,u=y.vals,h=y.containerStr,m=h?b.nestedProperty(w,h).get():w,v=i(m),_=v.auto!==!1,S=v.min,A=v.max,x=v.mid,R=function(){return b.aggNums(Math.min,null,u)},M=function(){return b.aggNums(Math.max,null,u)};S===void 0?S=R():_&&(S=m._colorAx&&c(S)?Math.min(S,R()):R()),A===void 0?A=M():_&&(A=m._colorAx&&c(A)?Math.max(A,M()):M()),_&&x!==void 0&&(A-x>x-S?S=x-(A-x):A-x=0?a.colorscale.sequential:a.colorscale.sequentialminus,v._sync("colorscale",p))}},95504:function(d,l,n){var c=n(3400),b=n(94288).hasColorscale,i=n(94288).extractOpts;d.exports=function(O,w){function y(_,S){var A=_["_"+S];A!==void 0&&(_[S]=A)}function p(_,S){var A=S.container?c.nestedProperty(_,S.container).get():_;if(A)if(A.coloraxis)A._colorAx=w[A.coloraxis];else{var x=i(A),R=x.auto;(R||x.min===void 0)&&y(A,S.min),(R||x.max===void 0)&&y(A,S.max),x.autocolorscale&&y(A,"colorscale")}}for(var a=0;a=0;R--,M++){var T=S[R];x[M]=[1-T[0],T[1]]}return x}function v(S,A){A=A||{};for(var x=S.domain,R=S.range,M=R.length,T=new Array(M),E=0;E1.3333333333333333-y?w:y}},67416:function(d,l,n){var c=n(3400),b=[["sw-resize","s-resize","se-resize"],["w-resize","move","e-resize"],["nw-resize","n-resize","ne-resize"]];d.exports=function(i,O,w,y){return i=w==="left"?0:w==="center"?1:w==="right"?2:c.constrain(Math.floor(3*i),0,2),O=y==="bottom"?0:y==="middle"?1:y==="top"?2:c.constrain(Math.floor(3*O),0,2),b[O][i]}},72760:function(d,l){l.selectMode=function(n){return n==="lasso"||n==="select"},l.drawMode=function(n){return n==="drawclosedpath"||n==="drawopenpath"||n==="drawline"||n==="drawrect"||n==="drawcircle"},l.openMode=function(n){return n==="drawline"||n==="drawopenpath"},l.rectMode=function(n){return n==="select"||n==="drawline"||n==="drawrect"||n==="drawcircle"},l.freeMode=function(n){return n==="lasso"||n==="drawclosedpath"||n==="drawopenpath"},l.selectingOrDrawing=function(n){return l.freeMode(n)||l.rectMode(n)}},86476:function(d,l,n){var c=n(29128),b=n(52264),i=n(89184),O=n(3400).removeElement,w=n(33816),y=d.exports={};y.align=n(78316),y.getCursor=n(67416);var p=n(2616);function a(){var h=document.createElement("div");h.className="dragcover";var m=h.style;return m.position="fixed",m.left=0,m.right=0,m.top=0,m.bottom=0,m.zIndex=999999999,m.background="none",document.body.appendChild(h),h}function u(h){return c(h.changedTouches?h.changedTouches[0]:h,document.body)}y.unhover=p.wrapped,y.unhoverRaw=p.raw,y.init=function(h){var m,v,_,S,A,x,R,M,T=h.gd,E=1,C=T._context.doubleClickDelay,L=h.element;T._mouseDownTime||(T._mouseDownTime=0),L.style.pointerEvents="all",L.onmousedown=k,i?(L._ontouchstart&&L.removeEventListener("touchstart",L._ontouchstart),L._ontouchstart=k,L.addEventListener("touchstart",k,{passive:!1})):L.ontouchstart=k;var D=h.clampFn||function($,Q,j){return Math.abs($)C&&(E=Math.max(E-1,1)),T._dragged)h.doneFn&&h.doneFn();else if(h.clickFn&&h.clickFn(E,x),!M){var Q;try{Q=new MouseEvent("click",$)}catch{var j=u($);(Q=document.createEvent("MouseEvents")).initMouseEvent("click",$.bubbles,$.cancelable,$.view,$.detail,$.screenX,$.screenY,j[0],j[1],$.ctrlKey,$.altKey,$.shiftKey,$.metaKey,$.button,$.relatedTarget)}R.dispatchEvent(Q)}T._dragging=!1,T._dragged=!1}else T._dragged=!1}},y.coverSlip=a},2616:function(d,l,n){var c=n(95924),b=n(91200),i=n(52200).getGraphDiv,O=n(92456),w=d.exports={};w.wrapped=function(y,p,a){(y=i(y))._fullLayout&&b.clear(y._fullLayout._uid+O.HOVERID),w.raw(y,p,a)},w.raw=function(y,p){var a=y._fullLayout,u=y._hoverdata;p||(p={}),p.target&&!y._dragged&&c.triggerHandler(y,"plotly_beforehover",p)===!1||(a._hoverlayer.selectAll("g").remove(),a._hoverlayer.selectAll("line").remove(),a._hoverlayer.selectAll("circle").remove(),y._hoverdata=void 0,p.target&&u&&y.emit("plotly_unhover",{event:p,points:u}))}},98192:function(d,l){l.u={valType:"string",values:["solid","dot","dash","longdash","dashdot","longdashdot"],dflt:"solid",editType:"style"},l.c={shape:{valType:"enumerated",values:["","/","\\","x","-","|","+","."],dflt:"",arrayOk:!0,editType:"style"},fillmode:{valType:"enumerated",values:["replace","overlay"],dflt:"replace",editType:"style"},bgcolor:{valType:"color",arrayOk:!0,editType:"style"},fgcolor:{valType:"color",arrayOk:!0,editType:"style"},fgopacity:{valType:"number",editType:"style",min:0,max:1},size:{valType:"number",min:0,dflt:8,arrayOk:!0,editType:"style"},solidity:{valType:"number",min:0,max:1,dflt:.3,arrayOk:!0,editType:"style"},editType:"style"}},43616:function(d,l,n){var c=n(33428),b=n(3400),i=b.numberFormat,O=n(38248),w=n(49760),y=n(24040),p=n(76308),a=n(8932),u=b.strTranslate,h=n(72736),m=n(9616),v=n(84284).LINE_SPACING,_=n(13448).DESELECTDIM,S=n(43028),A=n(7152),x=n(10624).appendArrayPointValue,R=d.exports={};function M(Ve,$e,Oe){var ke=$e.fillpattern,Le=ke&&R.getPatternAttr(ke.shape,0,"");if(Le){var We=R.getPatternAttr(ke.bgcolor,0,null),Ue=R.getPatternAttr(ke.fgcolor,0,null),Ze=ke.fgopacity,Xe=R.getPatternAttr(ke.size,0,8),tt=R.getPatternAttr(ke.solidity,0,.3),Ee=$e.uid;R.pattern(Ve,"point",Oe,Ee,Le,Xe,tt,void 0,ke.fillmode,We,Ue,Ze)}else $e.fillcolor&&Ve.call(p.fill,$e.fillcolor)}R.font=function(Ve,$e,Oe,ke){b.isPlainObject($e)&&(ke=$e.color,Oe=$e.size,$e=$e.family),$e&&Ve.style("font-family",$e),Oe+1&&Ve.style("font-size",Oe+"px"),ke&&Ve.call(p.fill,ke)},R.setPosition=function(Ve,$e,Oe){Ve.attr("x",$e).attr("y",Oe)},R.setSize=function(Ve,$e,Oe){Ve.attr("width",$e).attr("height",Oe)},R.setRect=function(Ve,$e,Oe,ke,Le){Ve.call(R.setPosition,$e,Oe).call(R.setSize,ke,Le)},R.translatePoint=function(Ve,$e,Oe,ke){var Le=Oe.c2p(Ve.x),We=ke.c2p(Ve.y);return!!(O(Le)&&O(We)&&$e.node())&&($e.node().nodeName==="text"?$e.attr("x",Le).attr("y",We):$e.attr("transform",u(Le,We)),!0)},R.translatePoints=function(Ve,$e,Oe){Ve.each(function(ke){var Le=c.select(this);R.translatePoint(ke,Le,$e,Oe)})},R.hideOutsideRangePoint=function(Ve,$e,Oe,ke,Le,We){$e.attr("display",Oe.isPtWithinRange(Ve,Le)&&ke.isPtWithinRange(Ve,We)?null:"none")},R.hideOutsideRangePoints=function(Ve,$e){if($e._hasClipOnAxisFalse){var Oe=$e.xaxis,ke=$e.yaxis;Ve.each(function(Le){var We=Le[0].trace,Ue=We.xcalendar,Ze=We.ycalendar,Xe=y.traceIs(We,"bar-like")?".bartext":".point,.textpoint";Ve.selectAll(Xe).each(function(tt){R.hideOutsideRangePoint(tt,c.select(this),Oe,ke,Ue,Ze)})})}},R.crispRound=function(Ve,$e,Oe){return $e&&O($e)?Ve._context.staticPlot?$e:$e<1?1:Math.round($e):Oe||0},R.singleLineStyle=function(Ve,$e,Oe,ke,Le){$e.style("fill","none");var We=(((Ve||[])[0]||{}).trace||{}).line||{},Ue=Oe||We.width||0,Ze=Le||We.dash||"";p.stroke($e,ke||We.color),R.dashLine($e,Ze,Ue)},R.lineGroupStyle=function(Ve,$e,Oe,ke){Ve.style("fill","none").each(function(Le){var We=(((Le||[])[0]||{}).trace||{}).line||{},Ue=$e||We.width||0,Ze=ke||We.dash||"";c.select(this).call(p.stroke,Oe||We.color).call(R.dashLine,Ze,Ue)})},R.dashLine=function(Ve,$e,Oe){Oe=+Oe||0,$e=R.dashStyle($e,Oe),Ve.style({"stroke-dasharray":$e,"stroke-width":Oe+"px"})},R.dashStyle=function(Ve,$e){$e=+$e||1;var Oe=Math.max($e,3);return Ve==="solid"?Ve="":Ve==="dot"?Ve=Oe+"px,"+Oe+"px":Ve==="dash"?Ve=3*Oe+"px,"+3*Oe+"px":Ve==="longdash"?Ve=5*Oe+"px,"+5*Oe+"px":Ve==="dashdot"?Ve=3*Oe+"px,"+Oe+"px,"+Oe+"px,"+Oe+"px":Ve==="longdashdot"&&(Ve=5*Oe+"px,"+2*Oe+"px,"+Oe+"px,"+2*Oe+"px"),Ve},R.singleFillStyle=function(Ve,$e){var Oe=c.select(Ve.node());M(Ve,((Oe.data()[0]||[])[0]||{}).trace||{},$e)},R.fillGroupStyle=function(Ve,$e){Ve.style("stroke-width",0).each(function(Oe){var ke=c.select(this);Oe[0].trace&&M(ke,Oe[0].trace,$e)})};var T=n(71984);R.symbolNames=[],R.symbolFuncs=[],R.symbolBackOffs=[],R.symbolNeedLines={},R.symbolNoDot={},R.symbolNoFill={},R.symbolList=[],Object.keys(T).forEach(function(Ve){var $e=T[Ve],Oe=$e.n;R.symbolList.push(Oe,String(Oe),Ve,Oe+100,String(Oe+100),Ve+"-open"),R.symbolNames[Oe]=Ve,R.symbolFuncs[Oe]=$e.f,R.symbolBackOffs[Oe]=$e.backoff||0,$e.needLine&&(R.symbolNeedLines[Oe]=!0),$e.noDot?R.symbolNoDot[Oe]=!0:R.symbolList.push(Oe+200,String(Oe+200),Ve+"-dot",Oe+300,String(Oe+300),Ve+"-open-dot"),$e.noFill&&(R.symbolNoFill[Oe]=!0)});var E=R.symbolNames.length;function C(Ve,$e,Oe,ke){var Le=Ve%100;return R.symbolFuncs[Le]($e,Oe,ke)+(Ve>=200?"M0,0.5L0.5,0L0,-0.5L-0.5,0Z":"")}R.symbolNumber=function(Ve){if(O(Ve))Ve=+Ve;else if(typeof Ve=="string"){var $e=0;Ve.indexOf("-open")>0&&($e=100,Ve=Ve.replace("-open","")),Ve.indexOf("-dot")>0&&($e+=200,Ve=Ve.replace("-dot","")),(Ve=R.symbolNames.indexOf(Ve))>=0&&(Ve+=$e)}return Ve%100>=E||Ve>=400?0:Math.floor(Math.max(Ve,0))};var L={x1:1,x2:0,y1:0,y2:0},D={x1:0,x2:0,y1:1,y2:0},k=i("~f"),I={radial:{node:"radialGradient"},radialreversed:{node:"radialGradient",reversed:!0},horizontal:{node:"linearGradient",attrs:L},horizontalreversed:{node:"linearGradient",attrs:L,reversed:!0},vertical:{node:"linearGradient",attrs:D},verticalreversed:{node:"linearGradient",attrs:D,reversed:!0}};R.gradient=function(Ve,$e,Oe,ke,Le,We){for(var Ue=Le.length,Ze=I[ke],Xe=new Array(Ue),tt=0;tt=0&&Ve.i===void 0&&(Ve.i=We.i),$e.style("opacity",ke.selectedOpacityFn?ke.selectedOpacityFn(Ve):Ve.mo===void 0?Ue.opacity:Ve.mo),ke.ms2mrc){var Xe;Xe=Ve.ms==="various"||Ue.size==="various"?3:ke.ms2mrc(Ve.ms),Ve.mrc=Xe,ke.selectedSizeFn&&(Xe=Ve.mrc=ke.selectedSizeFn(Ve));var tt=R.symbolNumber(Ve.mx||Ue.symbol)||0;Ve.om=tt%200>=100;var Ee=He(Ve,Oe),Ne=ce(Ve,Oe);$e.attr("d",C(tt,Xe,Ee,Ne))}var je,nt,ot,Ge=!1;if(Ve.so)ot=Ze.outlierwidth,nt=Ze.outliercolor,je=Ue.outliercolor;else{var ht=(Ze||{}).width;ot=(Ve.mlw+1||ht+1||(Ve.trace?(Ve.trace.marker.line||{}).width:0)+1)-1||0,nt="mlc"in Ve?Ve.mlcc=ke.lineScale(Ve.mlc):b.isArrayOrTypedArray(Ze.color)?p.defaultLine:Ze.color,b.isArrayOrTypedArray(Ue.color)&&(je=p.defaultLine,Ge=!0),je="mc"in Ve?Ve.mcc=ke.markerScale(Ve.mc):Ue.color||Ue.colors||"rgba(0,0,0,0)",ke.selectedColorFn&&(je=ke.selectedColorFn(Ve))}if(Ve.om)$e.call(p.stroke,je).style({"stroke-width":(ot||1)+"px",fill:"none"});else{$e.style("stroke-width",(Ve.isBlank?0:ot)+"px");var pt=Ue.gradient,wt=Ve.mgt;wt?Ge=!0:wt=pt&&pt.type,b.isArrayOrTypedArray(wt)&&(wt=wt[0],I[wt]||(wt=0));var Dt=Ue.pattern,It=Dt&&R.getPatternAttr(Dt.shape,Ve.i,"");if(wt&&wt!=="none"){var qt=Ve.mgc;qt?Ge=!0:qt=pt.color;var en=Oe.uid;Ge&&(en+="-"+Ve.i),R.gradient($e,Le,en,wt,[[0,qt],[1,je]],"fill")}else if(It){var Gt=!1,Ct=Dt.fgcolor;!Ct&&We&&We.color&&(Ct=We.color,Gt=!0);var _t=R.getPatternAttr(Ct,Ve.i,We&&We.color||null),nn=R.getPatternAttr(Dt.bgcolor,Ve.i,null),gn=Dt.fgopacity,bn=R.getPatternAttr(Dt.size,Ve.i,8),mn=R.getPatternAttr(Dt.solidity,Ve.i,.3);Gt=Gt||Ve.mcc||b.isArrayOrTypedArray(Dt.shape)||b.isArrayOrTypedArray(Dt.bgcolor)||b.isArrayOrTypedArray(Dt.fgcolor)||b.isArrayOrTypedArray(Dt.size)||b.isArrayOrTypedArray(Dt.solidity);var vt=Oe.uid;Gt&&(vt+="-"+Ve.i),R.pattern($e,"point",Le,vt,It,bn,mn,Ve.mcc,Dt.fillmode,nn,_t,gn)}else b.isArrayOrTypedArray(je)?p.fill($e,je[Ve.i]):p.fill($e,je);ot&&p.stroke($e,nt)}},R.makePointStyleFns=function(Ve){var $e={},Oe=Ve.marker;return $e.markerScale=R.tryColorscale(Oe,""),$e.lineScale=R.tryColorscale(Oe,"line"),y.traceIs(Ve,"symbols")&&($e.ms2mrc=S.isBubble(Ve)?A(Ve):function(){return(Oe.size||6)/2}),Ve.selectedpoints&&b.extendFlat($e,R.makeSelectedPointStyleFns(Ve)),$e},R.makeSelectedPointStyleFns=function(Ve){var $e={},Oe=Ve.selected||{},ke=Ve.unselected||{},Le=Ve.marker||{},We=Oe.marker||{},Ue=ke.marker||{},Ze=Le.opacity,Xe=We.opacity,tt=Ue.opacity,Ee=Xe!==void 0,Ne=tt!==void 0;(b.isArrayOrTypedArray(Ze)||Ee||Ne)&&($e.selectedOpacityFn=function(It){var qt=It.mo===void 0?Le.opacity:It.mo;return It.selected?Ee?Xe:qt:Ne?tt:_*qt});var je=Le.color,nt=We.color,ot=Ue.color;(nt||ot)&&($e.selectedColorFn=function(It){var qt=It.mcc||je;return It.selected?nt||qt:ot||qt});var Ge=Le.size,ht=We.size,pt=Ue.size,wt=ht!==void 0,Dt=pt!==void 0;return y.traceIs(Ve,"symbols")&&(wt||Dt)&&($e.selectedSizeFn=function(It){var qt=It.mrc||Ge/2;return It.selected?wt?ht/2:qt:Dt?pt/2:qt}),$e},R.makeSelectedTextStyleFns=function(Ve){var $e={},Oe=Ve.selected||{},ke=Ve.unselected||{},Le=Ve.textfont||{},We=Oe.textfont||{},Ue=ke.textfont||{},Ze=Le.color,Xe=We.color,tt=Ue.color;return $e.selectedTextColorFn=function(Ee){var Ne=Ee.tc||Ze;return Ee.selected?Xe||Ne:tt||(Xe?Ne:p.addOpacity(Ne,_))},$e},R.selectedPointStyle=function(Ve,$e){if(Ve.size()&&$e.selectedpoints){var Oe=R.makeSelectedPointStyleFns($e),ke=$e.marker||{},Le=[];Oe.selectedOpacityFn&&Le.push(function(We,Ue){We.style("opacity",Oe.selectedOpacityFn(Ue))}),Oe.selectedColorFn&&Le.push(function(We,Ue){p.fill(We,Oe.selectedColorFn(Ue))}),Oe.selectedSizeFn&&Le.push(function(We,Ue){var Ze=Ue.mx||ke.symbol||0,Xe=Oe.selectedSizeFn(Ue);We.attr("d",C(R.symbolNumber(Ze),Xe,He(Ue,$e),ce(Ue,$e))),Ue.mrc2=Xe}),Le.length&&Ve.each(function(We){for(var Ue=c.select(this),Ze=0;Ze0?Oe:0}function X(Ve,$e,Oe){return Oe&&(Ve=Y(Ve)),$e?W(Ve[1]):te(Ve[0])}function te(Ve){var $e=c.round(Ve,2);return z=$e,$e}function W(Ve){var $e=c.round(Ve,2);return $=$e,$e}function K(Ve,$e,Oe,ke){var Le=Ve[0]-$e[0],We=Ve[1]-$e[1],Ue=Oe[0]-$e[0],Ze=Oe[1]-$e[1],Xe=Math.pow(Le*Le+We*We,.25),tt=Math.pow(Ue*Ue+Ze*Ze,.25),Ee=(tt*tt*Le-Xe*Xe*Ue)*ke,Ne=(tt*tt*We-Xe*Xe*Ze)*ke,je=3*tt*(Xe+tt),nt=3*Xe*(Xe+tt);return[[te($e[0]+(je&&Ee/je)),W($e[1]+(je&&Ne/je))],[te($e[0]-(nt&&Ee/nt)),W($e[1]-(nt&&Ne/nt))]]}R.textPointStyle=function(Ve,$e,Oe){if(Ve.size()){var ke;if($e.selectedpoints){var Le=R.makeSelectedTextStyleFns($e);ke=Le.selectedTextColorFn}var We=$e.texttemplate,Ue=Oe._fullLayout;Ve.each(function(Ze){var Xe=c.select(this),tt=We?b.extractOption(Ze,$e,"txt","texttemplate"):b.extractOption(Ze,$e,"tx","text");if(tt||tt===0){if(We){var Ee=$e._module.formatLabels,Ne=Ee?Ee(Ze,$e,Ue):{},je={};x(je,$e,Ze.i);var nt=$e._meta||{};tt=b.texttemplateString(tt,Ne,Ue._d3locale,je,Ze,nt)}var ot=Ze.tp||$e.textposition,Ge=U(Ze,$e),ht=ke?ke(Ze):Ze.tc||$e.textfont.color;Xe.call(R.font,Ze.tf||$e.textfont.family,Ge,ht).text(tt).call(h.convertToTspans,Oe).call(j,ot,Ge,Ze.mrc)}else Xe.remove()})}},R.selectedTextStyle=function(Ve,$e){if(Ve.size()&&$e.selectedpoints){var Oe=R.makeSelectedTextStyleFns($e);Ve.each(function(ke){var Le=c.select(this),We=Oe.selectedTextColorFn(ke),Ue=ke.tp||$e.textposition,Ze=U(ke,$e);p.fill(Le,We);var Xe=y.traceIs($e,"bar-like");j(Le,Ue,Ze,ke.mrc2||ke.mrc,Xe)})}},R.smoothopen=function(Ve,$e){if(Ve.length<3)return"M"+Ve.join("L");var Oe,ke="M"+Ve[0],Le=[];for(Oe=1;Oe=Xe||It>=Ee&&It<=Xe)&&(qt<=Ne&&qt>=tt||qt>=Ne&&qt<=tt)&&(Ve=[It,qt])}return Ve}R.steps=function(Ve){var $e=oe[Ve]||q;return function(Oe){for(var ke="M"+te(Oe[0][0])+","+W(Oe[0][1]),Le=Oe.length,We=1;We=1e4&&(R.savedBBoxes={},ee=0),Oe&&(R.savedBBoxes[Oe]=nt),ee++,b.extendFlat({},nt)},R.setClipUrl=function(Ve,$e,Oe){Ve.attr("clip-path",he($e,Oe))},R.getTranslate=function(Ve){var $e=(Ve[Ve.attr?"attr":"getAttribute"]("transform")||"").replace(/.*\btranslate\((-?\d*\.?\d*)[^-\d]*(-?\d*\.?\d*)[^\d].*/,function(Oe,ke,Le){return[ke,Le].join(" ")}).split(" ");return{x:+$e[0]||0,y:+$e[1]||0}},R.setTranslate=function(Ve,$e,Oe){var ke=Ve.attr?"attr":"getAttribute",Le=Ve.attr?"attr":"setAttribute",We=Ve[ke]("transform")||"";return $e=$e||0,Oe=Oe||0,We=We.replace(/(\btranslate\(.*?\);?)/,"").trim(),We=(We+=u($e,Oe)).trim(),Ve[Le]("transform",We),We},R.getScale=function(Ve){var $e=(Ve[Ve.attr?"attr":"getAttribute"]("transform")||"").replace(/.*\bscale\((\d*\.?\d*)[^\d]*(\d*\.?\d*)[^\d].*/,function(Oe,ke,Le){return[ke,Le].join(" ")}).split(" ");return{x:+$e[0]||1,y:+$e[1]||1}},R.setScale=function(Ve,$e,Oe){var ke=Ve.attr?"attr":"getAttribute",Le=Ve.attr?"attr":"setAttribute",We=Ve[ke]("transform")||"";return $e=$e||1,Oe=Oe||1,We=We.replace(/(\bscale\(.*?\);?)/,"").trim(),We=(We+="scale("+$e+","+Oe+")").trim(),Ve[Le]("transform",We),We};var se=/\s*sc.*/;R.setPointGroupScale=function(Ve,$e,Oe){if($e=$e||1,Oe=Oe||1,Ve){var ke=$e===1&&Oe===1?"":"scale("+$e+","+Oe+")";Ve.each(function(){var Le=(this.getAttribute("transform")||"").replace(se,"");Le=(Le+=ke).trim(),this.setAttribute("transform",Le)})}};var ae=/translate\([^)]*\)\s*$/;function ce(Ve,$e){var Oe;return Ve&&(Oe=Ve.mf),Oe===void 0&&(Oe=$e.marker&&$e.marker.standoff||0),$e._geo||$e._xA?Oe:-Oe}R.setTextPointsScale=function(Ve,$e,Oe){Ve&&Ve.each(function(){var ke,Le=c.select(this),We=Le.select("text");if(We.node()){var Ue=parseFloat(We.attr("x")||0),Ze=parseFloat(We.attr("y")||0),Xe=(Le.attr("transform")||"").match(ae);ke=$e===1&&Oe===1?[]:[u(Ue,Ze),"scale("+$e+","+Oe+")",u(-Ue,-Ze)],Xe&&ke.push(Xe),Le.attr("transform",ke.join(""))}})},R.getMarkerStandoff=ce;var de,ve,ye,_e,Se,Te,Pe=Math.atan2,Ie=Math.cos,ze=Math.sin;function De(Ve,$e){var Oe=$e[0],ke=$e[1];return[Oe*Ie(Ve)-ke*ze(Ve),Oe*ze(Ve)+ke*Ie(Ve)]}function He(Ve,$e){var Oe,ke,Le=Ve.ma;Le===void 0&&((Le=$e.marker.angle)&&!b.isArrayOrTypedArray(Le)||(Le=0));var We=$e.marker.angleref;if(We==="previous"||We==="north"){if($e._geo){var Ue=$e._geo.project(Ve.lonlat);Oe=Ue[0],ke=Ue[1]}else{var Ze=$e._xA,Xe=$e._yA;if(!Ze||!Xe)return 90;Oe=Ze.c2p(Ve.x),ke=Xe.c2p(Ve.y)}if($e._geo){var tt,Ee=Ve.lonlat[0],Ne=Ve.lonlat[1],je=$e._geo.project([Ee,Ne+1e-5]),nt=$e._geo.project([Ee+1e-5,Ne]),ot=Pe(nt[1]-ke,nt[0]-Oe),Ge=Pe(je[1]-ke,je[0]-Oe);if(We==="north")tt=Le/180*Math.PI;else if(We==="previous"){var ht=Ee/180*Math.PI,pt=Ne/180*Math.PI,wt=de/180*Math.PI,Dt=ve/180*Math.PI,It=wt-ht,qt=Ie(Dt)*ze(It),en=ze(Dt)*Ie(pt)-Ie(Dt)*ze(pt)*Ie(It);tt=-Pe(qt,en)-Math.PI,de=Ee,ve=Ne}var Gt=De(ot,[Ie(tt),0]),Ct=De(Ge,[ze(tt),0]);Le=Pe(Gt[1]+Ct[1],Gt[0]+Ct[0])/Math.PI*180,We!=="previous"||Te===$e.uid&&Ve.i===Se+1||(Le=null)}if(We==="previous"&&!$e._geo)if(Te===$e.uid&&Ve.i===Se+1&&O(Oe)&&O(ke)){var _t=Oe-ye,nn=ke-_e,gn=$e.line&&$e.line.shape||"",bn=gn.slice(gn.length-1);bn==="h"&&(nn=0),bn==="v"&&(_t=0),Le+=Pe(nn,_t)/Math.PI*180+90}else Le=null}return ye=Oe,_e=ke,Se=Ve.i,Te=$e.uid,Le}R.getMarkerAngle=He},71984:function(d,l,n){var c,b,i,O,w=n(21984),y=n(33428).round,p="M0,0Z",a=Math.sqrt(2),u=Math.sqrt(3),h=Math.PI,m=Math.cos,v=Math.sin;function _(A){return A===null}function S(A,x,R){if(!(A&&A%360!=0||x))return R;if(i===A&&O===x&&c===R)return b;function M(X,te){var W=m(X),K=v(X),oe=te[0],q=te[1]+(x||0);return[oe*W-q*K,oe*K+q*W]}i=A,O=x,c=R;for(var T=A/180*h,E=0,C=0,L=w(R),D="",k=0;k0,v=w._context.staticPlot;y.each(function(_){var S,A=_[0].trace,x=A.error_x||{},R=A.error_y||{};A.ids&&(S=function(C){return C.id});var M=O.hasMarkers(A)&&A.marker.maxdisplayed>0;R.visible||x.visible||(_=[]);var T=c.select(this).selectAll("g.errorbar").data(_,S);if(T.exit().remove(),_.length){x.visible||T.selectAll("path.xerror").remove(),R.visible||T.selectAll("path.yerror").remove(),T.style("opacity",1);var E=T.enter().append("g").classed("errorbar",!0);m&&E.style("opacity",0).transition().duration(a.duration).style("opacity",1),i.setClipUrl(T,p.layerClipId,w),T.each(function(C){var L=c.select(this),D=function(j,U,X){var te={x:U.c2p(j.x),y:X.c2p(j.y)};return j.yh!==void 0&&(te.yh=X.c2p(j.yh),te.ys=X.c2p(j.ys),b(te.ys)||(te.noYS=!0,te.ys=X.c2p(j.ys,!0))),j.xh!==void 0&&(te.xh=U.c2p(j.xh),te.xs=U.c2p(j.xs),b(te.xs)||(te.noXS=!0,te.xs=U.c2p(j.xs,!0))),te}(C,u,h);if(!M||C.vis){var k,I=L.select("path.yerror");if(R.visible&&b(D.x)&&b(D.yh)&&b(D.ys)){var z=R.width;k="M"+(D.x-z)+","+D.yh+"h"+2*z+"m-"+z+",0V"+D.ys,D.noYS||(k+="m-"+z+",0h"+2*z),I.size()?m&&(I=I.transition().duration(a.duration).ease(a.easing)):I=L.append("path").style("vector-effect",v?"none":"non-scaling-stroke").classed("yerror",!0),I.attr("d",k)}else I.remove();var $=L.select("path.xerror");if(x.visible&&b(D.y)&&b(D.xh)&&b(D.xs)){var Q=(x.copy_ystyle?R:x).width;k="M"+D.xh+","+(D.y-Q)+"v"+2*Q+"m0,-"+Q+"H"+D.xs,D.noXS||(k+="m0,-"+Q+"v"+2*Q),$.size()?m&&($=$.transition().duration(a.duration).ease(a.easing)):$=L.append("path").style("vector-effect",v?"none":"non-scaling-stroke").classed("xerror",!0),$.attr("d",k)}else $.remove()}})}})}},92036:function(d,l,n){var c=n(33428),b=n(76308);d.exports=function(i){i.each(function(O){var w=O[0].trace,y=w.error_y||{},p=w.error_x||{},a=c.select(this);a.selectAll("path.yerror").style("stroke-width",y.thickness+"px").call(b.stroke,y.color),p.copy_ystyle&&(p=y),a.selectAll("path.xerror").style("stroke-width",p.thickness+"px").call(b.stroke,p.color)})}},55756:function(d,l,n){var c=n(25376),b=n(65460).hoverlabel,i=n(92880).extendFlat;d.exports={hoverlabel:{bgcolor:i({},b.bgcolor,{arrayOk:!0}),bordercolor:i({},b.bordercolor,{arrayOk:!0}),font:c({arrayOk:!0,editType:"none"}),align:i({},b.align,{arrayOk:!0}),namelength:i({},b.namelength,{arrayOk:!0}),editType:"none"}}},55056:function(d,l,n){var c=n(3400),b=n(24040);function i(O,w,y,p){p=p||c.identity,Array.isArray(O)&&(w[0][y]=p(O))}d.exports=function(O){var w=O.calcdata,y=O._fullLayout;function p(v){return function(_){return c.coerceHoverinfo({hoverinfo:_},{_module:v._module},y)}}for(var a=0;a=0&&u.indexLe[0]._length||bt<0||bt>We[0]._length)return v.unhoverRaw(_e,Se)}else vt="xpx"in Se?Se.xpx:Le[0]._length/2,bt="ypx"in Se?Se.ypx:We[0]._length/2;if(Se.pointerX=vt+Le[0]._offset,Se.pointerY=bt+We[0]._offset,nt="xval"in Se?A.flat(ze,Se.xval):A.p2c(Le,vt),ot="yval"in Se?A.flat(ze,Se.yval):A.p2c(We,bt),!b(nt[0])||!b(ot[0]))return O.warn("Fx.hover failed",Se,_e),v.unhoverRaw(_e,Se)}var zt=1/0;function Rt(Pn,Yn){for(ht=0;ht_t&&(nn.splice(0,_t),zt=nn[0].distance),$e&&je!==0&&nn.length===0){Ct.distance=je,Ct.index=!1;var Qr=wt._module.hoverPoints(Ct,en,Gt,"closest",{hoverLayer:De._hoverlayer});if(Qr&&(Qr=Qr.filter(function(zn){return zn.spikeDistance<=je})),Qr&&Qr.length){var Wr,bo=Qr.filter(function(zn){return zn.xa.showspikes&&zn.xa.spikesnap!=="hovered data"});if(bo.length){var Bn=bo[0];b(Bn.x0)&&b(Bn.y0)&&(Wr=at(Bn),(!bn.vLinePoint||bn.vLinePoint.spikeDistance>Wr.spikeDistance)&&(bn.vLinePoint=Wr))}var hr=Qr.filter(function(zn){return zn.ya.showspikes&&zn.ya.spikesnap!=="hovered data"});if(hr.length){var hn=hr[0];b(hn.x0)&&b(hn.y0)&&(Wr=at(hn),(!bn.hLinePoint||bn.hLinePoint.spikeDistance>Wr.spikeDistance)&&(bn.hLinePoint=Wr))}}}}}function it(Pn,Yn,br){for(var dr,Cr=null,io=1/0,Qr=0;Qr0&&Math.abs(Pn.distance)dn-1;vn--)In(nn[vn]);nn=Nn,Xt()}var Un=_e._hoverdata,xr=[],Sr=me(_e),ar=he(_e);for(Ge=0;Ge1||nn.length>1)||Ee==="closest"&&mn&&nn.length>1,so=m.combine(De.plot_bgcolor||m.background,De.paper_bgcolor),So=U(nn,{gd:_e,hovermode:Ee,rotateLabels:Co,bgColor:so,container:De._hoverlayer,outerContainer:De._paper.node(),commonLabelOpts:De.hoverlabel,hoverdistance:De.hoverdistance}),go=So.hoverLabels;if(A.isUnifiedHover(Ee)||(function(Pn,Yn,br,dr){var Cr,io,Qr,Wr,bo,Bn,hr,hn=Yn?"xa":"ya",zn=Yn?"ya":"xa",Zn=0,yr=1,gr=Pn.size(),vr=new Array(gr),nr=0,Qn=dr.minX,Hn=dr.maxX,tr=dr.minY,cr=dr.maxY,Lr=function(po){return po*br._invScaleX},Er=function(po){return po*br._invScaleY};function Vr(po){var qo=po[0],Ao=po[po.length-1];if(io=qo.pmin-qo.pos-qo.dp+qo.size,Qr=Ao.pos+Ao.dp+Ao.size-qo.pmax,io>.01){for(bo=po.length-1;bo>=0;bo--)po[bo].dp+=io;Cr=!1}if(!(Qr<.01)){if(io<-.01){for(bo=po.length-1;bo>=0;bo--)po[bo].dp-=Qr;Cr=!1}if(Cr){var oi=0;for(Wr=0;Wrqo.pmax&&oi++;for(Wr=po.length-1;Wr>=0&&!(oi<=0);Wr--)(Bn=po[Wr]).pos>qo.pmax-1&&(Bn.del=!0,oi--);for(Wr=0;Wr=0;bo--)po[bo].dp-=Qr;for(Wr=po.length-1;Wr>=0&&!(oi<=0);Wr--)(Bn=po[Wr]).pos+Bn.dp+Bn.size>qo.pmax&&(Bn.del=!0,oi--)}}}for(Pn.each(function(po){var qo=po[hn],Ao=po[zn],oi=qo._id.charAt(0)==="x",ko=qo.range;nr===0&&ko&&ko[0]>ko[1]!==oi&&(yr=-1);var ra=0,mo=oi?br.width:br.height;if(br.hovermode==="x"||br.hovermode==="y"){var Aa,Xl,Na=te(po,Yn),cs=po.anchor,wc=cs==="end"?-1:1;if(cs==="middle")Xl=(Aa=po.crossPos+(oi?Er(Na.y-po.by/2):Lr(po.bx/2+po.tx2width/2)))+(oi?Er(po.by):Lr(po.bx));else if(oi)Xl=(Aa=po.crossPos+Er(k+Na.y)-Er(po.by/2-k))+Er(po.by);else{var ma=Lr(wc*k+Na.x),Ku=ma+Lr(wc*po.bx);Aa=po.crossPos+Math.min(ma,Ku),Xl=po.crossPos+Math.max(ma,Ku)}oi?tr!==void 0&&cr!==void 0&&Math.min(Xl,cr)-Math.max(Aa,tr)>1&&(Ao.side==="left"?(ra=Ao._mainLinePosition,mo=br.width):mo=Ao._mainLinePosition):Qn!==void 0&&Hn!==void 0&&Math.min(Xl,Hn)-Math.max(Aa,Qn)>1&&(Ao.side==="top"?(ra=Ao._mainLinePosition,mo=br.height):mo=Ao._mainLinePosition)}vr[nr++]=[{datum:po,traceIndex:po.trace.index,dp:0,pos:po.pos,posref:po.posref,size:po.by*(oi?C:1)/2,pmin:ra,pmax:mo}]}),vr.sort(function(po,qo){return po[0].posref-qo[0].posref||yr*(qo[0].traceIndex-po[0].traceIndex)});!Cr&&Zn<=gr;){for(Zn++,Cr=!0,Wr=0;Wr.01&&fr.pmin===Eo.pmin&&fr.pmax===Eo.pmax){for(bo=_o.length-1;bo>=0;bo--)_o[bo].dp+=io;for(to.push.apply(to,_o),vr.splice(Wr+1,1),hr=0,bo=to.length-1;bo>=0;bo--)hr+=to[bo].dp;for(Qr=hr/to.length,bo=to.length-1;bo>=0;bo--)to[bo].dp-=Qr;Cr=!1}else Wr++}vr.forEach(Vr)}for(Wr=vr.length-1;Wr>=0;Wr--){var ao=vr[Wr];for(bo=ao.length-1;bo>=0;bo--){var co=ao[bo],Go=co.datum;Go.offset=co.dp,Go.del=co.del}}}(go,Co,De,So.commonLabelBoundingBox),W(go,Co,De._invScaleX,De._invScaleY)),Ie&&Ie.tagName){var li=S.getComponentMethod("annotations","hasClickToShow")(_e,xr);u(c.select(Ie),li?"pointer":"")}Ie&&!Pe&&function(Pn,Yn,br){if(!br||br.length!==Pn._hoverdata.length)return!0;for(var dr=br.length-1;dr>=0;dr--){var Cr=br[dr],io=Pn._hoverdata[dr];if(Cr.curveNumber!==io.curveNumber||String(Cr.pointNumber)!==String(io.pointNumber)||String(Cr.pointNumbers)!==String(io.pointNumbers))return!0}return!1}(_e,0,Un)&&(Un&&_e.emit("plotly_unhover",{event:Se,points:Un}),_e.emit("plotly_hover",{event:Se,points:_e._hoverdata,xaxes:Le,yaxes:We,xvals:nt,yvals:ot}))})(ae,ce,de,ve,ye)})},l.loneHover=function(ae,ce){var de=!0;Array.isArray(ae)||(de=!1,ae=[ae]);var ve=ce.gd,ye=me(ve),_e=he(ve),Se=U(ae.map(function(Ie){var ze=Ie._x0||Ie.x0||Ie.x||0,De=Ie._x1||Ie.x1||Ie.x||0,He=Ie._y0||Ie.y0||Ie.y||0,Ve=Ie._y1||Ie.y1||Ie.y||0,$e=Ie.eventData;if($e){var Oe=Math.min(ze,De),ke=Math.max(ze,De),Le=Math.min(He,Ve),We=Math.max(He,Ve),Ue=Ie.trace;if(S.traceIs(Ue,"gl3d")){var Ze=ve._fullLayout[Ue.scene]._scene.container,Xe=Ze.offsetLeft,tt=Ze.offsetTop;Oe+=Xe,ke+=Xe,Le+=tt,We+=tt}$e.bbox={x0:Oe+_e,x1:ke+_e,y0:Le+ye,y1:We+ye},ce.inOut_bbox&&ce.inOut_bbox.push($e.bbox)}else $e=!1;return{color:Ie.color||m.defaultLine,x0:Ie.x0||Ie.x||0,x1:Ie.x1||Ie.x||0,y0:Ie.y0||Ie.y||0,y1:Ie.y1||Ie.y||0,xLabel:Ie.xLabel,yLabel:Ie.yLabel,zLabel:Ie.zLabel,text:Ie.text,name:Ie.name,idealAlign:Ie.idealAlign,borderColor:Ie.borderColor,fontFamily:Ie.fontFamily,fontSize:Ie.fontSize,fontColor:Ie.fontColor,nameLength:Ie.nameLength,textAlign:Ie.textAlign,trace:Ie.trace||{index:0,hoverinfo:""},xa:{_offset:0},ya:{_offset:0},index:0,hovertemplate:Ie.hovertemplate||!1,hovertemplateLabels:Ie.hovertemplateLabels||!1,eventData:$e}}),{gd:ve,hovermode:"closest",rotateLabels:!1,bgColor:ce.bgColor||m.background,container:c.select(ce.container),outerContainer:ce.outerContainer||ce.container}).hoverLabels,Te=0,Pe=0;return Se.sort(function(Ie,ze){return Ie.y0-ze.y0}).each(function(Ie,ze){var De=Ie.y0-Ie.by/2;Ie.offset=De-5([\s\S]*)<\/extra>/;function U(ae,ce){var de=ce.gd,ve=de._fullLayout,ye=ce.hovermode,_e=ce.rotateLabels,Se=ce.bgColor,Te=ce.container,Pe=ce.outerContainer,Ie=ce.commonLabelOpts||{};if(ae.length===0)return[[]];var ze=ce.fontFamily||x.HOVERFONT,De=ce.fontSize||x.HOVERFONTSIZE,He=ae[0],Ve=He.xa,$e=He.ya,Oe=ye.charAt(0),ke=Oe+"Label",Le=He[ke];if(Le===void 0&&Ve.type==="multicategory")for(var We=0;Weve.width-ar?(In=ve.width-ar,fn.attr("d","M"+(ar-k)+",0L"+ar+","+Sr+k+"v"+Sr+(2*I+xr.height)+"H-"+ar+"V"+Sr+k+"H"+(ar-2*k)+"Z")):fn.attr("d","M0,0L"+k+","+Sr+k+"H"+ar+"v"+Sr+(2*I+xr.height)+"H-"+ar+"V"+Sr+k+"H-"+k+"Z"),ht.minX=In-ar,ht.maxX=In+ar,Ve.side==="top"?(ht.minY=Un-(2*I+xr.height),ht.maxY=Un-I):(ht.minY=Un+I,ht.maxY=Un+(2*I+xr.height))}else{var Fn,ir,Wn;$e.side==="right"?(Fn="start",ir=1,Wn="",In=Ve._offset+Ve._length):(Fn="end",ir=-1,Wn="-",In=Ve._offset),Un=$e._offset+(He.y0+He.y1)/2,dn.attr("text-anchor",Fn),fn.attr("d","M0,0L"+Wn+k+","+k+"V"+(I+xr.height/2)+"h"+Wn+(2*I+xr.width)+"V-"+(I+xr.height/2)+"H"+Wn+k+"V-"+k+"Z"),ht.minY=Un-(I+xr.height/2),ht.maxY=Un+(I+xr.height/2),$e.side==="right"?(ht.minX=In+k,ht.maxX=In+k+(2*I+xr.width)):(ht.minX=In-k-(2*I+xr.width),ht.maxX=In-k);var Kn,_r=xr.height/2,Ir=Ze-xr.top-_r,zr="clip"+ve._uid+"commonlabel"+$e._id;if(In=0?bt:lt+Rt=0?lt:Qt+Rt=0?mn:vt+it=0?vt:Pt+it=0,Kt.idealAlign!=="top"&&Kr||!Co?Kr?(_r+=zr/2,Kt.anchor="start"):Kt.anchor="middle":(_r-=zr/2,Kt.anchor="end"),Kt.crossPos=_r;else{if(Kt.pos=_r,Kr=Kn+Ir/2+so<=Xe,Co=Kn-Ir/2-so>=0,Kt.idealAlign!=="left"&&Kr||!Co)if(Kr)Kn+=Ir/2,Kt.anchor="start";else{Kt.anchor="middle";var So=so/2,go=Kn+So-Xe,li=Kn-So;go>0&&(Kn-=go),li<0&&(Kn+=-li)}else Kn-=Ir/2,Kt.anchor="end";Kt.crossPos=Kn}Sr.attr("text-anchor",Kt.anchor),Fn&&ar.attr("text-anchor",Kt.anchor),fn.attr("transform",w(Kn,_r)+(_e?y(T):""))}),{hoverLabels:tn,commonLabelBoundingBox:ht}}function X(ae,ce,de,ve,ye,_e){var Se="",Te="";ae.nameOverride!==void 0&&(ae.name=ae.nameOverride),ae.name&&(ae.trace._meta&&(ae.name=O.templateString(ae.name,ae.trace._meta)),Se=Y(ae.name,ae.nameLength));var Pe=de.charAt(0),Ie=Pe==="x"?"y":"x";ae.zLabel!==void 0?(ae.xLabel!==void 0&&(Te+="x: "+ae.xLabel+"
"),ae.yLabel!==void 0&&(Te+="y: "+ae.yLabel+"
"),ae.trace.type!=="choropleth"&&ae.trace.type!=="choroplethmapbox"&&(Te+=(Te?"z: ":"")+ae.zLabel)):ce&&ae[Pe+"Label"]===ye?Te=ae[Ie+"Label"]||"":ae.xLabel===void 0?ae.yLabel!==void 0&&ae.trace.type!=="scattercarpet"&&(Te=ae.yLabel):Te=ae.yLabel===void 0?ae.xLabel:"("+ae.xLabel+", "+ae.yLabel+")",!ae.text&&ae.text!==0||Array.isArray(ae.text)||(Te+=(Te?"
":"")+ae.text),ae.extraText!==void 0&&(Te+=(Te?"
":"")+ae.extraText),_e&&Te===""&&!ae.hovertemplate&&(Se===""&&_e.remove(),Te=Se);var ze=ae.hovertemplate||!1;if(ze){var De=ae.hovertemplateLabels||ae;ae[Pe+"Label"]!==ye&&(De[Pe+"other"]=De[Pe+"Val"],De[Pe+"otherLabel"]=De[Pe+"Label"]),Te=(Te=O.hovertemplateString(ze,De,ve._d3locale,ae.eventData[0]||{},ae.trace._meta)).replace(j,function(He,Ve){return Se=Y(Ve,ae.nameLength),""})}return[Te,Se]}function te(ae,ce){var de=0,ve=ae.offset;return ce&&(ve*=-D,de=ae.offset*L),{x:de,y:ve}}function W(ae,ce,de,ve){var ye=function(Se){return Se*de},_e=function(Se){return Se*ve};ae.each(function(Se){var Te=c.select(this);if(Se.del)return Te.remove();var Pe,Ie,ze,De,He=Te.select("text.nums"),Ve=Se.anchor,$e=Ve==="end"?-1:1,Oe=(De=(ze=(Ie={start:1,end:-1,middle:0}[(Pe=Se).anchor])*(k+I))+Ie*(Pe.txwidth+I),Pe.anchor==="middle"&&(ze-=Pe.tx2width/2,De+=Pe.txwidth/2+I),{alignShift:Ie,textShiftX:ze,text2ShiftX:De}),ke=te(Se,ce),Le=ke.x,We=ke.y,Ue=Ve==="middle";Te.select("path").attr("d",Ue?"M-"+ye(Se.bx/2+Se.tx2width/2)+","+_e(We-Se.by/2)+"h"+ye(Se.bx)+"v"+_e(Se.by)+"h-"+ye(Se.bx)+"Z":"M0,0L"+ye($e*k+Le)+","+_e(k+We)+"v"+_e(Se.by/2-k)+"h"+ye($e*Se.bx)+"v-"+_e(Se.by)+"H"+ye($e*k+Le)+"V"+_e(We-k)+"Z");var Ze=Le+Oe.textShiftX,Xe=We+Se.ty0-Se.by/2+I,tt=Se.textAlign||"auto";tt!=="auto"&&(tt==="left"&&Ve!=="start"?(He.attr("text-anchor","start"),Ze=Ue?-Se.bx/2-Se.tx2width/2+I:-Se.bx-I):tt==="right"&&Ve!=="end"&&(He.attr("text-anchor","end"),Ze=Ue?Se.bx/2-Se.tx2width/2-I:Se.bx+I)),He.call(a.positionText,ye(Ze),_e(Xe)),Se.tx2width&&(Te.select("text.name").call(a.positionText,ye(Oe.text2ShiftX+Oe.alignShift*I+Le),_e(We+Se.ty0-Se.by/2+I)),Te.select("rect").call(h.setRect,ye(Oe.text2ShiftX+(Oe.alignShift-1)*Se.tx2width/2+Le),_e(We-Se.by/2-1),ye(Se.tx2width),_e(Se.by+2)))})}function K(ae,ce){var de=ae.index,ve=ae.trace||{},ye=ae.cd[0],_e=ae.cd[de]||{};function Se(He){return He||b(He)&&He===0}var Te=Array.isArray(de)?function(He,Ve){var $e=O.castOption(ye,de,He);return Se($e)?$e:O.extractOption({},ve,"",Ve)}:function(He,Ve){return O.extractOption(_e,ve,He,Ve)};function Pe(He,Ve,$e){var Oe=Te(Ve,$e);Se(Oe)&&(ae[He]=Oe)}if(Pe("hoverinfo","hi","hoverinfo"),Pe("bgcolor","hbg","hoverlabel.bgcolor"),Pe("borderColor","hbc","hoverlabel.bordercolor"),Pe("fontFamily","htf","hoverlabel.font.family"),Pe("fontSize","hts","hoverlabel.font.size"),Pe("fontColor","htc","hoverlabel.font.color"),Pe("nameLength","hnl","hoverlabel.namelength"),Pe("textAlign","hta","hoverlabel.align"),ae.posref=ce==="y"||ce==="closest"&&ve.orientation==="h"?ae.xa._offset+(ae.x0+ae.x1)/2:ae.ya._offset+(ae.y0+ae.y1)/2,ae.x0=O.constrain(ae.x0,0,ae.xa._length),ae.x1=O.constrain(ae.x1,0,ae.xa._length),ae.y0=O.constrain(ae.y0,0,ae.ya._length),ae.y1=O.constrain(ae.y1,0,ae.ya._length),ae.xLabelVal!==void 0&&(ae.xLabel="xLabel"in ae?ae.xLabel:_.hoverLabelText(ae.xa,ae.xLabelVal,ve.xhoverformat),ae.xVal=ae.xa.c2d(ae.xLabelVal)),ae.yLabelVal!==void 0&&(ae.yLabel="yLabel"in ae?ae.yLabel:_.hoverLabelText(ae.ya,ae.yLabelVal,ve.yhoverformat),ae.yVal=ae.ya.c2d(ae.yLabelVal)),ae.zLabelVal!==void 0&&ae.zLabel===void 0&&(ae.zLabel=String(ae.zLabelVal)),!(isNaN(ae.xerr)||ae.xa.type==="log"&&ae.xerr<=0)){var Ie=_.tickText(ae.xa,ae.xa.c2l(ae.xerr),"hover").text;ae.xerrneg!==void 0?ae.xLabel+=" +"+Ie+" / -"+_.tickText(ae.xa,ae.xa.c2l(ae.xerrneg),"hover").text:ae.xLabel+=" ± "+Ie,ce==="x"&&(ae.distance+=1)}if(!(isNaN(ae.yerr)||ae.ya.type==="log"&&ae.yerr<=0)){var ze=_.tickText(ae.ya,ae.ya.c2l(ae.yerr),"hover").text;ae.yerrneg!==void 0?ae.yLabel+=" +"+ze+" / -"+_.tickText(ae.ya,ae.ya.c2l(ae.yerrneg),"hover").text:ae.yLabel+=" ± "+ze,ce==="y"&&(ae.distance+=1)}var De=ae.hoverinfo||ae.trace.hoverinfo;return De&&De!=="all"&&((De=Array.isArray(De)?De:De.split("+")).indexOf("x")===-1&&(ae.xLabel=void 0),De.indexOf("y")===-1&&(ae.yLabel=void 0),De.indexOf("z")===-1&&(ae.zLabel=void 0),De.indexOf("text")===-1&&(ae.text=void 0),De.indexOf("name")===-1&&(ae.name=void 0)),ae}function oe(ae,ce,de){var ve,ye,_e=de.container,Se=de.fullLayout,Te=Se._size,Pe=de.event,Ie=!!ce.hLinePoint,ze=!!ce.vLinePoint;if(_e.selectAll(".spikeline").remove(),ze||Ie){var De=m.combine(Se.plot_bgcolor,Se.paper_bgcolor);if(Ie){var He,Ve,$e=ce.hLinePoint;ve=$e&&$e.xa,(ye=$e&&$e.ya).spikesnap==="cursor"?(He=Pe.pointerX,Ve=Pe.pointerY):(He=ve._offset+$e.x,Ve=ye._offset+$e.y);var Oe,ke,Le=i.readability($e.color,De)<1.5?m.contrast(De):$e.color,We=ye.spikemode,Ue=ye.spikethickness,Ze=ye.spikecolor||Le,Xe=_.getPxPosition(ae,ye);if(We.indexOf("toaxis")!==-1||We.indexOf("across")!==-1){if(We.indexOf("toaxis")!==-1&&(Oe=Xe,ke=He),We.indexOf("across")!==-1){var tt=ye._counterDomainMin,Ee=ye._counterDomainMax;ye.anchor==="free"&&(tt=Math.min(tt,ye.position),Ee=Math.max(Ee,ye.position)),Oe=Te.l+tt*Te.w,ke=Te.l+Ee*Te.w}_e.insert("line",":first-child").attr({x1:Oe,x2:ke,y1:Ve,y2:Ve,"stroke-width":Ue,stroke:Ze,"stroke-dasharray":h.dashStyle(ye.spikedash,Ue)}).classed("spikeline",!0).classed("crisp",!0),_e.insert("line",":first-child").attr({x1:Oe,x2:ke,y1:Ve,y2:Ve,"stroke-width":Ue+2,stroke:De}).classed("spikeline",!0).classed("crisp",!0)}We.indexOf("marker")!==-1&&_e.insert("circle",":first-child").attr({cx:Xe+(ye.side!=="right"?Ue:-Ue),cy:Ve,r:Ue,fill:Ze}).classed("spikeline",!0)}if(ze){var Ne,je,nt=ce.vLinePoint;ve=nt&&nt.xa,ye=nt&&nt.ya,ve.spikesnap==="cursor"?(Ne=Pe.pointerX,je=Pe.pointerY):(Ne=ve._offset+nt.x,je=ye._offset+nt.y);var ot,Ge,ht=i.readability(nt.color,De)<1.5?m.contrast(De):nt.color,pt=ve.spikemode,wt=ve.spikethickness,Dt=ve.spikecolor||ht,It=_.getPxPosition(ae,ve);if(pt.indexOf("toaxis")!==-1||pt.indexOf("across")!==-1){if(pt.indexOf("toaxis")!==-1&&(ot=It,Ge=je),pt.indexOf("across")!==-1){var qt=ve._counterDomainMin,en=ve._counterDomainMax;ve.anchor==="free"&&(qt=Math.min(qt,ve.position),en=Math.max(en,ve.position)),ot=Te.t+(1-en)*Te.h,Ge=Te.t+(1-qt)*Te.h}_e.insert("line",":first-child").attr({x1:Ne,x2:Ne,y1:ot,y2:Ge,"stroke-width":wt,stroke:Dt,"stroke-dasharray":h.dashStyle(ve.spikedash,wt)}).classed("spikeline",!0).classed("crisp",!0),_e.insert("line",":first-child").attr({x1:Ne,x2:Ne,y1:ot,y2:Ge,"stroke-width":wt+2,stroke:De}).classed("spikeline",!0).classed("crisp",!0)}pt.indexOf("marker")!==-1&&_e.insert("circle",":first-child").attr({cx:Ne,cy:It-(ve.side!=="top"?wt:-wt),r:wt,fill:Dt}).classed("spikeline",!0)}}}function q(ae,ce){return!ce||ce.vLinePoint!==ae._spikepoints.vLinePoint||ce.hLinePoint!==ae._spikepoints.hLinePoint}function Y(ae,ce){return a.plainText(ae||"",{len:ce,allowedTags:["br","sub","sup","b","i","em"]})}function ee(ae,ce,de){var ve=ce[ae+"a"],ye=ce[ae+"Val"],_e=ce.cd[0];if(ve.type==="category"||ve.type==="multicategory")ye=ve._categoriesMap[ye];else if(ve.type==="date"){var Se=ce.trace[ae+"periodalignment"];if(Se){var Te=ce.cd[ce.index],Pe=Te[ae+"Start"];Pe===void 0&&(Pe=Te[ae]);var Ie=Te[ae+"End"];Ie===void 0&&(Ie=Te[ae]);var ze=Ie-Pe;Se==="end"?ye+=ze:Se==="middle"&&(ye+=ze/2)}ye=ve.d2c(ye)}return _e&&_e.t&&_e.t.posLetter===ve._id&&(de.boxmode!=="group"&&de.violinmode!=="group"||(ye+=_e.t.dPos)),ye}function me(ae){return ae.offsetTop+ae.clientTop}function he(ae){return ae.offsetLeft+ae.clientLeft}function se(ae,ce){var de=ae._fullLayout,ve=ce.getBoundingClientRect(),ye=ve.left,_e=ve.top,Se=ye+ve.width,Te=_e+ve.height,Pe=O.apply3DTransform(de._invTransform)(ye,_e),Ie=O.apply3DTransform(de._invTransform)(Se,Te),ze=Pe[0],De=Pe[1],He=Ie[0],Ve=Ie[1];return{x:ze,y:De,width:He-ze,height:Ve-De,top:Math.min(De,Ve),left:Math.min(ze,He),right:Math.max(ze,He),bottom:Math.max(De,Ve)}}},16132:function(d,l,n){var c=n(3400),b=n(76308),i=n(10624).isUnifiedHover;d.exports=function(O,w,y,p){p=p||{};var a=w.legend;function u(h){p.font[h]||(p.font[h]=a?w.legend.font[h]:w.font[h])}w&&i(w.hovermode)&&(p.font||(p.font={}),u("size"),u("family"),u("color"),a?(p.bgcolor||(p.bgcolor=b.combine(w.legend.bgcolor,w.paper_bgcolor)),p.bordercolor||(p.bordercolor=w.legend.bordercolor)):p.bgcolor||(p.bgcolor=w.paper_bgcolor)),y("hoverlabel.bgcolor",p.bgcolor),y("hoverlabel.bordercolor",p.bordercolor),y("hoverlabel.namelength",p.namelength),c.coerceFont(y,"hoverlabel.font",p.font),y("hoverlabel.align",p.align)}},41008:function(d,l,n){var c=n(3400),b=n(65460);d.exports=function(i,O){function w(y,p){return O[y]!==void 0?O[y]:c.coerce(i,O,b,y,p)}return w("clickmode"),w("hovermode")}},93024:function(d,l,n){var c=n(33428),b=n(3400),i=n(86476),O=n(10624),w=n(65460),y=n(83292);d.exports={moduleType:"component",name:"fx",constants:n(92456),schema:{layout:w},attributes:n(55756),layoutAttributes:w,supplyLayoutGlobalDefaults:n(81976),supplyDefaults:n(95448),supplyLayoutDefaults:n(88336),calc:n(55056),getDistanceFunction:O.getDistanceFunction,getClosest:O.getClosest,inbox:O.inbox,quadrature:O.quadrature,appendArrayPointValue:O.appendArrayPointValue,castHoverOption:function(p,a,u){return b.castOption(p,a,"hoverlabel."+u)},castHoverinfo:function(p,a,u){return b.castOption(p,u,"hoverinfo",function(h){return b.coerceHoverinfo({hoverinfo:h},{_module:p._module},a)})},hover:y.hover,unhover:i.unhover,loneHover:y.loneHover,loneUnhover:function(p){var a=b.isD3Selection(p)?p:c.select(p);a.selectAll("g.hovertext").remove(),a.selectAll(".spikeline").remove()},click:n(62376)}},65460:function(d,l,n){var c=n(92456),b=n(25376),i=b({editType:"none"});i.family.dflt=c.HOVERFONT,i.size.dflt=c.HOVERFONTSIZE,d.exports={clickmode:{valType:"flaglist",flags:["event","select"],dflt:"event",editType:"plot",extras:["none"]},dragmode:{valType:"enumerated",values:["zoom","pan","select","lasso","drawclosedpath","drawopenpath","drawline","drawrect","drawcircle","orbit","turntable",!1],dflt:"zoom",editType:"modebar"},hovermode:{valType:"enumerated",values:["x","y","closest",!1,"x unified","y unified"],dflt:"closest",editType:"modebar"},hoverdistance:{valType:"integer",min:-1,dflt:20,editType:"none"},spikedistance:{valType:"integer",min:-1,dflt:-1,editType:"none"},hoverlabel:{bgcolor:{valType:"color",editType:"none"},bordercolor:{valType:"color",editType:"none"},font:i,grouptitlefont:b({editType:"none"}),align:{valType:"enumerated",values:["left","right","auto"],dflt:"auto",editType:"none"},namelength:{valType:"integer",min:-1,dflt:15,editType:"none"},editType:"none"},selectdirection:{valType:"enumerated",values:["h","v","d","any"],dflt:"any",editType:"none"}}},88336:function(d,l,n){var c=n(3400),b=n(65460),i=n(41008),O=n(16132);d.exports=function(w,y){function p(m,v){return c.coerce(w,y,b,m,v)}i(w,y)&&(p("hoverdistance"),p("spikedistance")),p("dragmode")==="select"&&p("selectdirection");var a=y._has("mapbox"),u=y._has("geo"),h=y._basePlotModules.length;y.dragmode==="zoom"&&((a||u)&&h===1||a&&u&&h===2)&&(y.dragmode="pan"),O(w,y,p),c.coerceFont(p,"hoverlabel.grouptitlefont",y.hoverlabel.font)}},81976:function(d,l,n){var c=n(3400),b=n(16132),i=n(65460);d.exports=function(O,w){b(O,w,function(y,p){return c.coerce(O,w,i,y,p)})}},12704:function(d,l,n){var c=n(3400),b=n(53756).counter,i=n(86968).u,O=n(33816).idRegex,w=n(31780),y={rows:{valType:"integer",min:1,editType:"plot"},roworder:{valType:"enumerated",values:["top to bottom","bottom to top"],dflt:"top to bottom",editType:"plot"},columns:{valType:"integer",min:1,editType:"plot"},subplots:{valType:"info_array",freeLength:!0,dimensions:2,items:{valType:"enumerated",values:[b("xy").toString(),""],editType:"plot"},editType:"plot"},xaxes:{valType:"info_array",freeLength:!0,items:{valType:"enumerated",values:[O.x.toString(),""],editType:"plot"},editType:"plot"},yaxes:{valType:"info_array",freeLength:!0,items:{valType:"enumerated",values:[O.y.toString(),""],editType:"plot"},editType:"plot"},pattern:{valType:"enumerated",values:["independent","coupled"],dflt:"coupled",editType:"plot"},xgap:{valType:"number",min:0,max:1,editType:"plot"},ygap:{valType:"number",min:0,max:1,editType:"plot"},domain:i({name:"grid",editType:"plot",noGridCell:!0},{}),xside:{valType:"enumerated",values:["bottom","bottom plot","top plot","top"],dflt:"bottom plot",editType:"plot"},yside:{valType:"enumerated",values:["left","left plot","right plot","right"],dflt:"left plot",editType:"plot"},editType:"plot"};function p(h,m,v){var _=m[v+"axes"],S=Object.keys((h._splomAxes||{})[v]||{});return Array.isArray(_)?_:S.length?S:void 0}function a(h,m,v,_,S,A){var x=m(h+"gap",v),R=m("domain."+h);m(h+"side",_);for(var M=new Array(S),T=R[0],E=(R[1]-T)/(S-x),C=E*(1-x),L=0;L1){R||M||T||j("pattern")==="independent"&&(R=!0),C._hasSubplotGrid=R;var k,I,z=j("roworder")==="top to bottom",$=R?.2:.1,Q=R?.3:.1;E&&m._splomGridDflt&&(k=m._splomGridDflt.xside,I=m._splomGridDflt.yside),C._domains={x:a("x",j,$,k,D),y:a("y",j,Q,I,L,z)}}else delete m.grid}function j(U,X){return c.coerce(v,C,y,U,X)}},contentDefaults:function(h,m){var v=m.grid;if(v&&v._domains){var _,S,A,x,R,M,T,E=h.grid||{},C=m._subplots,L=v._hasSubplotGrid,D=v.rows,k=v.columns,I=v.pattern==="independent",z=v._axisMap={};if(L){var $=E.subplots||[];M=v.subplots=new Array(D);var Q=1;for(_=0;_(u==="legend"?1:0));if(Q===!1&&(m[u]=void 0),(Q!==!1||_.uirevision)&&(A("uirevision",m.uirevision),Q!==!1)){A("borderwidth");var j,U,X,te=A("orientation")==="h",W=A("yref")==="paper",K=A("xref")==="paper",oe="left";if(te?(j=0,c.getComponentMethod("rangeslider","isVisible")(h.xaxis)?W?(U=1.1,X="bottom"):(U=1,X="top"):W?(U=-.1,X="top"):(U=0,X="bottom")):(U=1,X="auto",K?j=1.02:(j=1,oe="right")),b.coerce(_,S,{x:{valType:"number",editType:"legend",min:K?-2:0,max:K?3:1,dflt:j}},"x"),b.coerce(_,S,{y:{valType:"number",editType:"legend",min:W?-2:0,max:W?3:1,dflt:U}},"y"),A("traceorder",D),p.isGrouped(m[u])&&A("tracegroupgap"),A("entrywidth"),A("entrywidthmode"),A("itemsizing"),A("itemwidth"),A("itemclick"),A("itemdoubleclick"),A("groupclick"),A("xanchor",oe),A("yanchor",X),A("valign"),b.noneOrAll(_,S,["x","y"]),A("title.text")){A("title.side",te?"left":"top");var q=b.extendFlat({},x,{size:b.bigFont(x.size)});b.coerceFont(A,"title.font",q)}}}}d.exports=function(u,h,m){var v,_=m.slice(),S=h.shapes;if(S)for(v=0;v1)}var ve=q.hiddenlabels||[];if(!(ee||q.showlegend&&me.length))return K.selectAll("."+Y).remove(),q._topdefs.select("#"+W).remove(),i.autoMargin(X,Y);var ye=b.ensureSingle(K,"g",Y,function(Ve){ee||Ve.attr("pointer-events","all")}),_e=b.ensureSingleById(q._topdefs,"clipPath",W,function(Ve){Ve.append("rect")}),Se=b.ensureSingle(ye,"rect","bg",function(Ve){Ve.attr("shape-rendering","crispEdges")});Se.call(a.stroke,oe.bordercolor).call(a.fill,oe.bgcolor).style("stroke-width",oe.borderwidth+"px");var Te,Pe=b.ensureSingle(ye,"g","scrollbox"),Ie=oe.title;oe._titleWidth=0,oe._titleHeight=0,Ie.text?((Te=b.ensureSingle(Pe,"text",Y+"titletext")).attr("text-anchor","start").call(p.font,Ie.font).text(Ie.text),$(Te,Pe,X,oe,T)):Pe.selectAll("."+Y+"titletext").remove();var ze=b.ensureSingle(ye,"rect","scrollbar",function(Ve){Ve.attr(m.scrollBarEnterAttrs).call(a.fill,m.scrollBarColor)}),De=Pe.selectAll("g.groups").data(me);De.enter().append("g").attr("class","groups"),De.exit().remove();var He=De.selectAll("g.traces").data(b.identity);He.enter().append("g").attr("class","traces"),He.exit().remove(),He.style("opacity",function(Ve){var $e=Ve[0].trace;return O.traceIs($e,"pie-like")?ve.indexOf(Ve[0].label)!==-1?.5:1:$e.visible==="legendonly"?.5:1}).each(function(){c.select(this).call(k,X,oe)}).call(R,X,oe).each(function(){ee||c.select(this).call(z,X,Y)}),b.syncOrAsync([i.previousPromises,function(){return function(Ve,$e,Oe,ke){var Le=Ve._fullLayout,We=U(ke);ke||(ke=Le[We]);var Ue=Le._size,Ze=M.isVertical(ke),Xe=M.isGrouped(ke),tt=ke.entrywidthmode==="fraction",Ee=ke.borderwidth,Ne=2*Ee,je=m.itemGap,nt=ke.itemwidth+2*je,ot=2*(Ee+je),Ge=j(ke),ht=ke.y<0||ke.y===0&&Ge==="top",pt=ke.y>1||ke.y===1&&Ge==="bottom",wt=ke.tracegroupgap,Dt={};ke._maxHeight=Math.max(ht||pt?Le.height/2:Ue.h,30);var It=0;ke._width=0,ke._height=0;var qt=function(Xt){var Yt=0,Qt=0,Pt=Xt.title.side;return Pt&&(Pt.indexOf("left")!==-1&&(Yt=Xt._titleWidth),Pt.indexOf("top")!==-1&&(Qt=Xt._titleHeight)),[Yt,Qt]}(ke);if(Ze)Oe.each(function(Xt){var Yt=Xt[0].height;p.setTranslate(this,Ee+qt[0],Ee+qt[1]+ke._height+Yt/2+je),ke._height+=Yt,ke._width=Math.max(ke._width,Xt[0].width)}),It=nt+ke._width,ke._width+=je+nt+Ne,ke._height+=ot,Xe&&($e.each(function(Xt,Yt){p.setTranslate(this,0,Yt*ke.tracegroupgap)}),ke._height+=(ke._lgroupsLength-1)*ke.tracegroupgap);else{var en=Q(ke),Gt=ke.x<0||ke.x===0&&en==="right",Ct=ke.x>1||ke.x===1&&en==="left",_t=pt||ht,nn=Le.width/2;ke._maxWidth=Math.max(Gt?_t&&en==="left"?Ue.l+Ue.w:nn:Ct?_t&&en==="right"?Ue.r+Ue.w:nn:Ue.w,2*nt);var gn=0,bn=0;Oe.each(function(Xt){var Yt=L(Xt,ke,nt);gn=Math.max(gn,Yt),bn+=Yt}),It=null;var mn=0;if(Xe){var vt=0,bt=0,lt=0;$e.each(function(){var Xt=0,Yt=0;c.select(this).selectAll("g.traces").each(function(Pt){var tn=L(Pt,ke,nt),Kt=Pt[0].height;p.setTranslate(this,qt[0],qt[1]+Ee+je+Kt/2+Yt),Yt+=Kt,Xt=Math.max(Xt,tn),Dt[Pt[0].trace.legendgroup]=Xt});var Qt=Xt+je;bt>0&&Qt+Ee+bt>ke._maxWidth?(mn=Math.max(mn,bt),bt=0,lt+=vt+wt,vt=Yt):vt=Math.max(vt,Yt),p.setTranslate(this,bt,lt),bt+=Qt}),ke._width=Math.max(mn,bt)+Ee,ke._height=lt+vt+ot}else{var yt=Oe.size(),zt=bn+Ne+(yt-1)*je=ke._maxWidth&&(mn=Math.max(mn,Lt),it=0,at+=Rt,ke._height+=Rt,Rt=0),p.setTranslate(this,qt[0]+Ee+it,qt[1]+Ee+at+Yt/2+je),Lt=it+Qt+je,it+=Pt,Rt=Math.max(Rt,Yt)}),zt?(ke._width=it+Ne,ke._height=Rt+ot):(ke._width=Math.max(mn,Lt)+Ne,ke._height+=Rt+ot)}}ke._width=Math.ceil(Math.max(ke._width+qt[0],ke._titleWidth+2*(Ee+m.titlePad))),ke._height=Math.ceil(Math.max(ke._height+qt[1],ke._titleHeight+2*(Ee+m.itemGap))),ke._effHeight=Math.min(ke._height,ke._maxHeight);var xt=Ve._context.edits,Ht=xt.legendText||xt.legendPosition;Oe.each(function(Xt){var Yt=c.select(this).select("."+We+"toggle"),Qt=Xt[0].height,Pt=Xt[0].trace.legendgroup,tn=L(Xt,ke,nt);Xe&&Pt!==""&&(tn=Dt[Pt]);var Kt=Ht?nt:It||tn;Ze||tt||(Kt+=je/2),p.setRect(Yt,0,-Qt/2,Kt,Qt)})}(X,De,He,oe)},function(){var Ve,$e,Oe,ke,Le=q._size,We=oe.borderwidth,Ue=oe.xref==="paper",Ze=oe.yref==="paper";if(Ie.text&&function(_t,nn,gn){if(nn.title.side==="top center"||nn.title.side==="top right"){var bn=nn.title.font.size*_,mn=0,vt=_t.node(),bt=p.bBox(vt).width;nn.title.side==="top center"?mn=.5*(nn._width-2*gn-2*m.titlePad-bt):nn.title.side==="top right"&&(mn=nn._width-2*gn-2*m.titlePad-bt),u.positionText(_t,gn+m.titlePad+mn,gn+bn)}}(Te,oe,We),!ee){var Xe,tt;Xe=Ue?Le.l+Le.w*oe.x-S[Q(oe)]*oe._width:q.width*oe.x-S[Q(oe)]*oe._width,tt=Ze?Le.t+Le.h*(1-oe.y)-S[j(oe)]*oe._effHeight:q.height*(1-oe.y)-S[j(oe)]*oe._effHeight;var Ee=function(_t,nn,gn,bn){var mn=_t._fullLayout,vt=mn[nn],bt=Q(vt),lt=j(vt),yt=vt.xref==="paper",zt=vt.yref==="paper";_t._fullLayout._reservedMargin[nn]={};var Rt=vt.y<.5?"b":"t",it=vt.x<.5?"l":"r",at={r:mn.width-gn,l:gn+vt._width,b:mn.height-bn,t:bn+vt._effHeight};if(yt&&zt)return i.autoMargin(_t,nn,{x:vt.x,y:vt.y,l:vt._width*S[bt],r:vt._width*A[bt],b:vt._effHeight*A[lt],t:vt._effHeight*S[lt]});yt?_t._fullLayout._reservedMargin[nn][Rt]=at[Rt]:zt||vt.orientation==="v"?_t._fullLayout._reservedMargin[nn][it]=at[it]:_t._fullLayout._reservedMargin[nn][Rt]=at[Rt]}(X,Y,Xe,tt);if(Ee)return;if(q.margin.autoexpand){var Ne=Xe,je=tt;Xe=Ue?b.constrain(Xe,0,q.width-oe._width):Ne,tt=Ze?b.constrain(tt,0,q.height-oe._effHeight):je,Xe!==Ne&&b.log("Constrain "+Y+".x to make legend fit inside graph"),tt!==je&&b.log("Constrain "+Y+".y to make legend fit inside graph")}p.setTranslate(ye,Xe,tt)}if(ze.on(".drag",null),ye.on("wheel",null),ee||oe._height<=oe._maxHeight||X._context.staticPlot){var nt=oe._effHeight;ee&&(nt=oe._height),Se.attr({width:oe._width-We,height:nt-We,x:We/2,y:We/2}),p.setTranslate(Pe,0,0),_e.select("rect").attr({width:oe._width-2*We,height:nt-2*We,x:We,y:We}),p.setClipUrl(Pe,W,X),p.setRect(ze,0,0,0,0),delete oe._scrollY}else{var ot,Ge,ht,pt=Math.max(m.scrollBarMinHeight,oe._effHeight*oe._effHeight/oe._height),wt=oe._effHeight-pt-2*m.scrollBarMargin,Dt=oe._height-oe._effHeight,It=wt/Dt,qt=Math.min(oe._scrollY||0,Dt);Se.attr({width:oe._width-2*We+m.scrollBarWidth+m.scrollBarMargin,height:oe._effHeight-We,x:We/2,y:We/2}),_e.select("rect").attr({width:oe._width-2*We+m.scrollBarWidth+m.scrollBarMargin,height:oe._effHeight-2*We,x:We,y:We+qt}),p.setClipUrl(Pe,W,X),Ct(qt,pt,It),ye.on("wheel",function(){Ct(qt=b.constrain(oe._scrollY+c.event.deltaY/wt*Dt,0,Dt),pt,It),qt!==0&&qt!==Dt&&c.event.preventDefault()});var en=c.behavior.drag().on("dragstart",function(){var _t=c.event.sourceEvent;ot=_t.type==="touchstart"?_t.changedTouches[0].clientY:_t.clientY,ht=qt}).on("drag",function(){var _t=c.event.sourceEvent;_t.buttons===2||_t.ctrlKey||(Ge=_t.type==="touchmove"?_t.changedTouches[0].clientY:_t.clientY,qt=function(nn,gn,bn){var mn=(bn-gn)/It+nn;return b.constrain(mn,0,Dt)}(ht,ot,Ge),Ct(qt,pt,It))});ze.call(en);var Gt=c.behavior.drag().on("dragstart",function(){var _t=c.event.sourceEvent;_t.type==="touchstart"&&(ot=_t.changedTouches[0].clientY,ht=qt)}).on("drag",function(){var _t=c.event.sourceEvent;_t.type==="touchmove"&&(Ge=_t.changedTouches[0].clientY,qt=function(nn,gn,bn){var mn=(gn-bn)/It+nn;return b.constrain(mn,0,Dt)}(ht,ot,Ge),Ct(qt,pt,It))});Pe.call(Gt)}function Ct(_t,nn,gn){oe._scrollY=X._fullLayout[Y]._scrollY=_t,p.setTranslate(Pe,0,-_t),p.setRect(ze,oe._width,m.scrollBarMargin+_t*gn,m.scrollBarWidth,nn),_e.select("rect").attr("y",We+_t)}X._context.edits.legendPosition&&(ye.classed("cursor-move",!0),y.init({element:ye.node(),gd:X,prepFn:function(){var _t=p.getTranslate(ye);Oe=_t.x,ke=_t.y},moveFn:function(_t,nn){var gn=Oe+_t,bn=ke+nn;p.setTranslate(ye,gn,bn),Ve=y.align(gn,oe._width,Le.l,Le.l+Le.w,oe.xanchor),$e=y.align(bn+oe._height,-oe._height,Le.t+Le.h,Le.t,oe.yanchor)},doneFn:function(){if(Ve!==void 0&&$e!==void 0){var _t={};_t[Y+".x"]=Ve,_t[Y+".y"]=$e,O.call("_guiRelayout",X,_t)}},clickFn:function(_t,nn){var gn=K.selectAll("g.traces").filter(function(){var bn=this.getBoundingClientRect();return nn.clientX>=bn.left&&nn.clientX<=bn.right&&nn.clientY>=bn.top&&nn.clientY<=bn.bottom});gn.size()>0&&D(X,ye,gn,_t,nn)}}))}],X)}}function L(X,te,W){var K=X[0],oe=K.width,q=te.entrywidthmode,Y=K.trace.legendwidth||te.entrywidth;return q==="fraction"?te._maxWidth*Y:W+(Y||oe)}function D(X,te,W,K,oe){var q=W.data()[0][0].trace,Y={event:oe,node:W.node(),curveNumber:q.index,expandedIndex:q._expandedIndex,data:X.data,layout:X.layout,frames:X._transitionData._frames,config:X._context,fullData:X._fullData,fullLayout:X._fullLayout};q._group&&(Y.group=q._group),O.traceIs(q,"pie-like")&&(Y.label=W.datum()[0].label);var ee=w.triggerHandler(X,"plotly_legendclick",Y);if(K===1){if(ee===!1)return;te._clickTimeout=setTimeout(function(){X._fullLayout&&h(W,X,K)},X._context.doubleClickDelay)}else K===2&&(te._clickTimeout&&clearTimeout(te._clickTimeout),X._legendMouseDownTime=0,w.triggerHandler(X,"plotly_legenddoubleclick",Y)!==!1&&ee!==!1&&h(W,X,K))}function k(X,te,W){var K,oe,q=U(W),Y=X.data()[0][0],ee=Y.trace,me=O.traceIs(ee,"pie-like"),he=!W._inHover&&te._context.edits.legendText&&!me,se=W._maxNameLength;Y.groupTitle?(K=Y.groupTitle.text,oe=Y.groupTitle.font):(oe=W.font,W.entries?K=Y.text:(K=me?Y.label:ee.name,ee._meta&&(K=b.templateString(K,ee._meta))));var ae=b.ensureSingle(X,"text",q+"text");ae.attr("text-anchor","start").call(p.font,oe).text(he?I(K,se):K);var ce=W.itemwidth+2*m.itemGap;u.positionText(ae,ce,0),he?ae.call(u.makeEditable,{gd:te,text:K}).call($,X,te,W).on("edit",function(de){this.text(I(de,se)).call($,X,te,W);var ve=Y.trace._fullInput||{},ye={};if(O.hasTransform(ve,"groupby")){var _e=O.getTransformIndices(ve,"groupby"),Se=_e[_e.length-1],Te=b.keyedContainer(ve,"transforms["+Se+"].styles","target","value.name");Te.set(Y.trace._group,de),ye=Te.constructUpdate()}else ye.name=de;return ve._isShape?O.call("_guiRelayout",te,"shapes["+ee.index+"].name",ye.name):O.call("_guiRestyle",te,ye,ee.index)}):$(ae,X,te,W)}function I(X,te){var W=Math.max(4,te);if(X&&X.trim().length>=W/2)return X;for(var K=W-(X=X||"").length;K>0;K--)X+=" ";return X}function z(X,te,W){var K,oe=te._context.doubleClickDelay,q=1,Y=b.ensureSingle(X,"rect",W+"toggle",function(ee){te._context.staticPlot||ee.style("cursor","pointer").attr("pointer-events","all"),ee.call(a.fill,"rgba(0,0,0,0)")});te._context.staticPlot||(Y.on("mousedown",function(){(K=new Date().getTime())-te._legendMouseDownTimeoe&&(q=Math.max(q-1,1)),D(te,ee,X,q,c.event)}}))}function $(X,te,W,K,oe){K._inHover&&X.attr("data-notex",!0),u.convertToTspans(X,W,function(){(function(q,Y,ee,me){var he=q.data()[0][0];if(ee._inHover||!he||he.trace.showlegend){var se=q.select("g[class*=math-group]"),ae=se.node(),ce=U(ee);ee||(ee=Y._fullLayout[ce]);var de,ve,ye=ee.borderwidth,_e=(me===T?ee.title.font:he.groupTitle?he.groupTitle.font:ee.font).size*_;if(ae){var Se=p.bBox(ae);de=Se.height,ve=Se.width,me===T?p.setTranslate(se,ye,ye+.75*de):p.setTranslate(se,0,.25*de)}else{var Te="."+ce+(me===T?"title":"")+"text",Pe=q.select(Te),Ie=u.lineCount(Pe),ze=Pe.node();if(de=_e*Ie,ve=ze?p.bBox(ze).width:0,me===T)ee.title.side==="left"&&(ve+=2*m.itemGap),u.positionText(Pe,ye+m.titlePad,ye+_e);else{var De=2*m.itemGap+ee.itemwidth;he.groupTitle&&(De=m.itemGap,ve-=ee.itemwidth),u.positionText(Pe,De,-_e*((Ie-1)/2-.3))}}me===T?(ee._titleWidth=ve,ee._titleHeight=de):(he.lineHeight=_e,he.height=Math.max(de,16)+3,he.width=ve)}else q.remove()})(te,W,K,oe)})}function Q(X){return b.isRightAnchor(X)?"right":b.isCenterAnchor(X)?"center":"left"}function j(X){return b.isBottomAnchor(X)?"bottom":b.isMiddleAnchor(X)?"middle":"top"}function U(X){return X._id||"legend"}d.exports=function(X,te){if(te)C(X,te);else{var W=X._fullLayout,K=W._legends;W._infolayer.selectAll('[class^="legend"]').each(function(){var Y=c.select(this),ee=Y.attr("class").split(" ")[0];ee.match(E)&&K.indexOf(ee)===-1&&Y.remove()});for(var oe=0;oeQ&&($=Q)}I[y][0]._groupMinRank=$,I[y][0]._preGroupSort=y}var j=function(K,oe){return K.trace.legendrank-oe.trace.legendrank||K._preSort-oe._preSort};for(I.forEach(function(K,oe){K[0]._preGroupSort=oe}),I.sort(function(K,oe){return K[0]._groupMinRank-oe[0]._groupMinRank||K[0]._preGroupSort-oe[0]._preGroupSort}),y=0;yR?R:A}d.exports=function(A,x,R){var M=x._fullLayout;R||(R=M.legend);var T=R.itemsizing==="constant",E=R.itemwidth,C=(E+2*m.itemGap)/2,L=O(C,0),D=function(z,$,Q,j){var U;if(z+1)U=z;else{if(!($&&$.width>0))return 0;U=$.width}return T?j:Math.min(U,Q)};function k(z,$,Q){var j=z[0].trace,U=j.marker||{},X=U.line||{},te=U.cornerradius?"M6,3a3,3,0,0,1-3,3H-3a3,3,0,0,1-3-3V-3a3,3,0,0,1,3-3H3a3,3,0,0,1,3,3Z":"M6,6H-6V-6H6Z",W=Q?j.visible&&j.type===Q:b.traceIs(j,"bar"),K=c.select($).select("g.legendpoints").selectAll("path.legend"+Q).data(W?[z]:[]);K.enter().append("path").classed("legend"+Q,!0).attr("d",te).attr("transform",L),K.exit().remove(),K.each(function(oe){var q=c.select(this),Y=oe[0],ee=D(Y.mlw,U.line,5,2);q.style("stroke-width",ee+"px");var me=Y.mcc;if(!R._inHover&&"mc"in Y){var he=p(U),se=he.mid;se===void 0&&(se=(he.max+he.min)/2),me=w.tryColorscale(U,"")(se)}var ae=me||Y.mc||U.color,ce=U.pattern,de=ce&&w.getPatternAttr(ce.shape,0,"");if(de){var ve=w.getPatternAttr(ce.bgcolor,0,null),ye=w.getPatternAttr(ce.fgcolor,0,null),_e=ce.fgopacity,Se=S(ce.size,8,10),Te=S(ce.solidity,.5,1),Pe="legend-"+j.uid;q.call(w.pattern,"legend",x,Pe,de,Se,Te,me,ce.fillmode,ve,ye,_e)}else q.call(y.fill,ae);ee&&y.stroke(q,Y.mlc||X.color)})}function I(z,$,Q){var j=z[0],U=j.trace,X=Q?U.visible&&U.type===Q:b.traceIs(U,Q),te=c.select($).select("g.legendpoints").selectAll("path.legend"+Q).data(X?[z]:[]);if(te.enter().append("path").classed("legend"+Q,!0).attr("d","M6,6H-6V-6H6Z").attr("transform",L),te.exit().remove(),te.size()){var W=U.marker||{},K=D(h(W.line.width,j.pts),W.line,5,2),oe="pieLike",q=i.minExtend(U,{marker:{line:{width:K}}},oe),Y=i.minExtend(j,{trace:q},oe);u(te,Y,q,x)}}A.each(function(z){var $=c.select(this),Q=i.ensureSingle($,"g","layers");Q.style("opacity",z[0].trace.opacity);var j=R.valign,U=z[0].lineHeight,X=z[0].height;if(j!=="middle"&&U&&X){var te={top:1,bottom:-1}[j]*(.5*(U-X+3));Q.attr("transform",O(0,te))}else Q.attr("transform",null);Q.selectAll("g.legendfill").data([z]).enter().append("g").classed("legendfill",!0),Q.selectAll("g.legendlines").data([z]).enter().append("g").classed("legendlines",!0);var W=Q.selectAll("g.legendsymbols").data([z]);W.enter().append("g").classed("legendsymbols",!0),W.selectAll("g.legendpoints").data([z]).enter().append("g").classed("legendpoints",!0)}).each(function(z){var $,Q=z[0].trace,j=[];if(Q.visible)switch(Q.type){case"histogram2d":case"heatmap":j=[["M-15,-2V4H15V-2Z"]],$=!0;break;case"choropleth":case"choroplethmapbox":j=[["M-6,-6V6H6V-6Z"]],$=!0;break;case"densitymapbox":j=[["M-6,0 a6,6 0 1,0 12,0 a 6,6 0 1,0 -12,0"]],$="radial";break;case"cone":j=[["M-6,2 A2,2 0 0,0 -6,6 V6L6,4Z"],["M-6,-6 A2,2 0 0,0 -6,-2 L6,-4Z"],["M-6,-2 A2,2 0 0,0 -6,2 L6,0Z"]],$=!1;break;case"streamtube":j=[["M-6,2 A2,2 0 0,0 -6,6 H6 A2,2 0 0,1 6,2 Z"],["M-6,-6 A2,2 0 0,0 -6,-2 H6 A2,2 0 0,1 6,-6 Z"],["M-6,-2 A2,2 0 0,0 -6,2 H6 A2,2 0 0,1 6,-2 Z"]],$=!1;break;case"surface":j=[["M-6,-6 A2,3 0 0,0 -6,0 H6 A2,3 0 0,1 6,-6 Z"],["M-6,1 A2,3 0 0,1 -6,6 H6 A2,3 0 0,0 6,0 Z"]],$=!0;break;case"mesh3d":j=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6H6L0,6Z"]],$=!1;break;case"volume":j=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6H6L0,6Z"]],$=!0;break;case"isosurface":j=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6 A12,24 0 0,0 6,-6 L0,6Z"]],$=!1}var U=c.select(this).select("g.legendpoints").selectAll("path.legend3dandfriends").data(j);U.enter().append("path").classed("legend3dandfriends",!0).attr("transform",L).style("stroke-miterlimit",1),U.exit().remove(),U.each(function(X,te){var W,K=c.select(this),oe=p(Q),q=oe.colorscale,Y=oe.reversescale;if(q){if(!$){var ee=q.length;W=te===0?q[Y?ee-1:0][1]:te===1?q[Y?0:ee-1][1]:q[Math.floor((ee-1)/2)][1]}}else{var me=Q.vertexcolor||Q.facecolor||Q.color;W=i.isArrayOrTypedArray(me)?me[te]||me[0]:me}K.attr("d",X[0]),W?K.call(y.fill,W):K.call(function(he){if(he.size()){var se="legendfill-"+Q.uid;w.gradient(he,x,se,v(Y,$==="radial"),q,"fill")}})})}).each(function(z){var $=z[0].trace,Q=$.type==="waterfall";if(z[0]._distinct&&Q){var j=z[0].trace[z[0].dir].marker;return z[0].mc=j.color,z[0].mlw=j.line.width,z[0].mlc=j.line.color,k(z,this,"waterfall")}var U=[];$.visible&&Q&&(U=z[0].hasTotals?[["increasing","M-6,-6V6H0Z"],["totals","M6,6H0L-6,-6H-0Z"],["decreasing","M6,6V-6H0Z"]]:[["increasing","M-6,-6V6H6Z"],["decreasing","M6,6V-6H-6Z"]]);var X=c.select(this).select("g.legendpoints").selectAll("path.legendwaterfall").data(U);X.enter().append("path").classed("legendwaterfall",!0).attr("transform",L).style("stroke-miterlimit",1),X.exit().remove(),X.each(function(te){var W=c.select(this),K=$[te[0]].marker,oe=D(void 0,K.line,5,2);W.attr("d",te[1]).style("stroke-width",oe+"px").call(y.fill,K.color),oe&&W.call(y.stroke,K.line.color)})}).each(function(z){k(z,this,"funnel")}).each(function(z){k(z,this)}).each(function(z){var $=z[0].trace,Q=c.select(this).select("g.legendpoints").selectAll("path.legendbox").data($.visible&&b.traceIs($,"box-violin")?[z]:[]);Q.enter().append("path").classed("legendbox",!0).attr("d","M6,6H-6V-6H6Z").attr("transform",L),Q.exit().remove(),Q.each(function(){var j=c.select(this);if($.boxpoints!=="all"&&$.points!=="all"||y.opacity($.fillcolor)!==0||y.opacity(($.line||{}).color)!==0){var U=D(void 0,$.line,5,2);j.style("stroke-width",U+"px").call(y.fill,$.fillcolor),U&&y.stroke(j,$.line.color)}else{var X=i.minExtend($,{marker:{size:T?12:i.constrain($.marker.size,2,16),sizeref:1,sizemin:1,sizemode:"diameter"}});Q.call(w.pointStyle,X,x)}})}).each(function(z){I(z,this,"funnelarea")}).each(function(z){I(z,this,"pie")}).each(function(z){var $,Q,j=_(z),U=j.showFill,X=j.showLine,te=j.showGradientLine,W=j.showGradientFill,K=j.anyFill,oe=j.anyLine,q=z[0],Y=q.trace,ee=p(Y),me=ee.colorscale,he=ee.reversescale,se=a.hasMarkers(Y)||!K?"M5,0":oe?"M5,-2":"M5,-3",ae=c.select(this),ce=ae.select(".legendfill").selectAll("path").data(U||W?[z]:[]);if(ce.enter().append("path").classed("js-fill",!0),ce.exit().remove(),ce.attr("d",se+"h"+E+"v6h-"+E+"z").call(function(ye){if(ye.size())if(U)w.fillGroupStyle(ye,x);else{var _e="legendfill-"+Y.uid;w.gradient(ye,x,_e,v(he),me,"fill")}}),X||te){var de=D(void 0,Y.line,10,5);Q=i.minExtend(Y,{line:{width:de}}),$=[i.minExtend(q,{trace:Q})]}var ve=ae.select(".legendlines").selectAll("path").data(X||te?[$]:[]);ve.enter().append("path").classed("js-line",!0),ve.exit().remove(),ve.attr("d",se+(te?"l"+E+",0.0001":"h"+E)).call(X?w.lineGroupStyle:function(ye){if(ye.size()){var _e="legendline-"+Y.uid;w.lineGroupStyle(ye),w.gradient(ye,x,_e,v(he),me,"stroke")}})}).each(function(z){var $,Q,j=_(z),U=j.anyFill,X=j.anyLine,te=j.showLine,W=j.showMarker,K=z[0],oe=K.trace,q=!W&&!X&&!U&&a.hasText(oe);function Y(ve,ye,_e,Se){var Te=i.nestedProperty(oe,ve).get(),Pe=i.isArrayOrTypedArray(Te)&&ye?ye(Te):Te;if(T&&Pe&&Se!==void 0&&(Pe=Se),_e){if(Pe<_e[0])return _e[0];if(Pe>_e[1])return _e[1]}return Pe}function ee(ve){return K._distinct&&K.index&&ve[K.index]?ve[K.index]:ve[0]}if(W||q||te){var me={},he={};if(W){me.mc=Y("marker.color",ee),me.mx=Y("marker.symbol",ee),me.mo=Y("marker.opacity",i.mean,[.2,1]),me.mlc=Y("marker.line.color",ee),me.mlw=Y("marker.line.width",i.mean,[0,5],2),he.marker={sizeref:1,sizemin:1,sizemode:"diameter"};var se=Y("marker.size",i.mean,[2,16],12);me.ms=se,he.marker.size=se}te&&(he.line={width:Y("line.width",ee,[0,10],5)}),q&&(me.tx="Aa",me.tp=Y("textposition",ee),me.ts=10,me.tc=Y("textfont.color",ee),me.tf=Y("textfont.family",ee)),$=[i.minExtend(K,me)],(Q=i.minExtend(oe,he)).selectedpoints=null,Q.texttemplate=null}var ae=c.select(this).select("g.legendpoints"),ce=ae.selectAll("path.scatterpts").data(W?$:[]);ce.enter().insert("path",":first-child").classed("scatterpts",!0).attr("transform",L),ce.exit().remove(),ce.call(w.pointStyle,Q,x),W&&($[0].mrc=3);var de=ae.selectAll("g.pointtext").data(q?$:[]);de.enter().append("g").classed("pointtext",!0).append("text").attr("transform",L),de.exit().remove(),de.selectAll("text").call(w.textPointStyle,Q,x)}).each(function(z){var $=z[0].trace,Q=c.select(this).select("g.legendpoints").selectAll("path.legendcandle").data($.visible&&$.type==="candlestick"?[z,z]:[]);Q.enter().append("path").classed("legendcandle",!0).attr("d",function(j,U){return U?"M-15,0H-8M-8,6V-6H8Z":"M15,0H8M8,-6V6H-8Z"}).attr("transform",L).style("stroke-miterlimit",1),Q.exit().remove(),Q.each(function(j,U){var X=c.select(this),te=$[U?"increasing":"decreasing"],W=D(void 0,te.line,5,2);X.style("stroke-width",W+"px").call(y.fill,te.fillcolor),W&&y.stroke(X,te.line.color)})}).each(function(z){var $=z[0].trace,Q=c.select(this).select("g.legendpoints").selectAll("path.legendohlc").data($.visible&&$.type==="ohlc"?[z,z]:[]);Q.enter().append("path").classed("legendohlc",!0).attr("d",function(j,U){return U?"M-15,0H0M-8,-6V0":"M15,0H0M8,6V0"}).attr("transform",L).style("stroke-miterlimit",1),Q.exit().remove(),Q.each(function(j,U){var X=c.select(this),te=$[U?"increasing":"decreasing"],W=D(void 0,te.line,5,2);X.style("fill","none").call(w.dashLine,te.line.dash,W),W&&y.stroke(X,te.line.color)})})}},66540:function(d,l,n){n(76052),d.exports={editType:"modebar",orientation:{valType:"enumerated",values:["v","h"],dflt:"h",editType:"modebar"},bgcolor:{valType:"color",editType:"modebar"},color:{valType:"color",editType:"modebar"},activecolor:{valType:"color",editType:"modebar"},uirevision:{valType:"any",editType:"none"},add:{valType:"string",arrayOk:!0,dflt:"",editType:"modebar"},remove:{valType:"string",arrayOk:!0,dflt:"",editType:"modebar"}}},44248:function(d,l,n){var c=n(24040),b=n(7316),i=n(79811),O=n(9224),w=n(4016).eraseActiveShape,y=n(3400),p=y._,a=d.exports={};function u(M,T){var E,C,L=T.currentTarget,D=L.getAttribute("data-attr"),k=L.getAttribute("data-val")||!0,I=M._fullLayout,z={},$=i.list(M,null,!0),Q=I._cartesianSpikesEnabled;if(D==="zoom"){var j,U=k==="in"?.5:2,X=(1+U)/2,te=(1-U)/2;for(C=0;C<$.length;C++)if(!(E=$[C]).fixedrange)if(j=E._name,k==="auto")z[j+".autorange"]=!0;else if(k==="reset")E._rangeInitial0===void 0&&E._rangeInitial1===void 0?z[j+".autorange"]=!0:E._rangeInitial0===void 0?(z[j+".autorange"]=E._autorangeInitial,z[j+".range"]=[null,E._rangeInitial1]):E._rangeInitial1===void 0?(z[j+".range"]=[E._rangeInitial0,null],z[j+".autorange"]=E._autorangeInitial):z[j+".range"]=[E._rangeInitial0,E._rangeInitial1],E._showSpikeInitial!==void 0&&(z[j+".showspikes"]=E._showSpikeInitial,Q!=="on"||E._showSpikeInitial||(Q="off"));else{var W=[E.r2l(E.range[0]),E.r2l(E.range[1])],K=[X*W[0]+te*W[1],X*W[1]+te*W[0]];z[j+".range[0]"]=E.l2r(K[0]),z[j+".range[1]"]=E.l2r(K[1])}}else D!=="hovermode"||k!=="x"&&k!=="y"||(k=I._isHoriz?"y":"x",L.setAttribute("data-val",k)),z[D]=k;I._cartesianSpikesEnabled=Q,c.call("_guiRelayout",M,z)}function h(M,T){for(var E=T.currentTarget,C=E.getAttribute("data-attr"),L=E.getAttribute("data-val")||!0,D=M._fullLayout._subplots.gl3d||[],k={},I=C.split("."),z=0;z1?(se=["toggleHover"],ae=["resetViews"]):z?(he=["zoomInGeo","zoomOutGeo"],se=["hoverClosestGeo"],ae=["resetGeo"]):I?(se=["hoverClosest3d"],ae=["resetCameraDefault3d","resetCameraLastSave3d"]):X?(he=["zoomInMapbox","zoomOutMapbox"],se=["toggleHover"],ae=["resetViewMapbox"]):j?se=["hoverClosestGl2d"]:$?se=["hoverClosestPie"]:K?(se=["hoverClosestCartesian","hoverCompareCartesian"],ae=["resetViewSankey"]):se=["toggleHover"],k&&(se=["toggleSpikelines","hoverClosestCartesian","hoverCompareCartesian"]),(function(Te){for(var Pe=0;Pe0)){var x=function(M,T,E){for(var C=E.filter(function(I){return T[I].anchor===M._id}),L=0,D=0;D0?C.touches[0].clientX:0}function A(C,L,D,k){var I=O.ensureSingle(C,"rect",_.bgClassName,function(j){j.attr({x:0,y:0,"shape-rendering":"crispEdges"})}),z=k.borderwidth%2==0?k.borderwidth:k.borderwidth-1,$=-k._offsetShift,Q=y.crispRound(L,k.borderwidth);I.attr({width:k._width+z,height:k._height+z,transform:w($,$),"stroke-width":Q}).call(p.stroke,k.bordercolor).call(p.fill,k.bgcolor)}function x(C,L,D,k){var I=L._fullLayout;O.ensureSingleById(I._topdefs,"clipPath",k._clipId,function(z){z.append("rect").attr({x:0,y:0})}).select("rect").attr({width:k._width,height:k._height})}function R(C,L,D,k){var I,z=L.calcdata,$=C.selectAll("g."+_.rangePlotClassName).data(D._subplotsWith,O.identity);$.enter().append("g").attr("class",function(Q){return _.rangePlotClassName+" "+Q}).call(y.setClipUrl,k._clipId,L),$.order(),$.exit().remove(),$.each(function(Q,j){var U=c.select(this),X=j===0,te=h.getFromId(L,Q,"y"),W=te._name,K=k[W],oe={data:[],layout:{xaxis:{type:D.type,domain:[0,1],range:k.range.slice(),calendar:D.calendar},width:k._width,height:k._height,margin:{t:0,b:0,l:0,r:0}},_context:L._context};D.rangebreaks&&(oe.layout.xaxis.rangebreaks=D.rangebreaks),oe.layout[W]={type:te.type,domain:[0,1],range:K.rangemode!=="match"?K.range.slice():te.range.slice(),calendar:te.calendar},te.rangebreaks&&(oe.layout[W].rangebreaks=te.rangebreaks),i.supplyDefaults(oe);var q=oe._fullLayout.xaxis,Y=oe._fullLayout[W];q.clearCalc(),q.setScale(),Y.clearCalc(),Y.setScale();var ee={id:Q,plotgroup:U,xaxis:q,yaxis:Y,isRangePlot:!0};X?I=ee:(ee.mainplot="xy",ee.mainplotinfo=I),u.rangePlot(L,ee,function(me,he){for(var se=[],ae=0;ae=De.max)Ie=_e[ze+1];else if(Pe=De.pmax)Ie=_e[ze+1];else if(Peze._length||Xe+ht<0)return;nt=Ze+ht,ot=Xe+ht;break;case Ve:if(Ge="col-resize",Ze+ht>ze._length)return;nt=Ze+ht,ot=Xe;break;case $e:if(Ge="col-resize",Xe+ht<0)return;nt=Ze,ot=Xe+ht;break;default:Ge="ew-resize",nt=Ue,ot=Ue+ht}if(ot=0;j--){var U=T.append("path").attr(C).style("opacity",j?.1:L).call(O.stroke,k).call(O.fill,D).call(w.dashLine,j?"solid":z,j?4+I:I);if(v(U,S,R),$){var X=y(S.layout,"selections",R);U.style({cursor:"move"});var te={element:U.node(),plotinfo:M,gd:S,editHelpers:X,isActiveSelection:!0},W=c(E,S);b(W,U,te)}else U.style("pointer-events",j?"all":"none");Q[j]=U}var K=Q[0];Q[1].node().addEventListener("click",function(){return function(oe,q){if(h(oe)){var Y=+q.node().getAttribute("data-index");if(Y>=0){if(Y===oe._fullLayout._activeSelectionIndex)return void _(oe);oe._fullLayout._activeSelectionIndex=Y,oe._fullLayout._deactivateSelection=_,u(oe)}}}(S,K)})}(S._fullLayout._selectionLayer)}function v(S,A,x){var R=x.xref+x.yref;w.setClipUrl(S,"clip"+A._fullLayout._uid+R,A)}function _(S){h(S)&&S._fullLayout._activeSelectionIndex>=0&&(i(S),delete S._fullLayout._activeSelectionIndex,u(S))}d.exports={draw:u,drawOne:m,activateLastSelection:function(S){if(h(S)){var A=S._fullLayout.selections.length-1;S._fullLayout._activeSelectionIndex=A,S._fullLayout._deactivateSelection=_,u(S)}}}},34200:function(d,l,n){var c=n(98192).u,b=n(92880).extendFlat;d.exports={newselection:{mode:{valType:"enumerated",values:["immediate","gradual"],dflt:"immediate",editType:"none"},line:{color:{valType:"color",editType:"none"},width:{valType:"number",min:1,dflt:1,editType:"none"},dash:b({},c,{dflt:"dot",editType:"none"}),editType:"none"},editType:"none"},activeselection:{fillcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"none"},opacity:{valType:"number",min:0,max:1,dflt:.5,editType:"none"},editType:"none"}}},81004:function(d){d.exports=function(l,n,c){c("newselection.mode"),c("newselection.line.width")&&(c("newselection.line.color"),c("newselection.line.dash")),c("activeselection.fillcolor"),c("activeselection.opacity")}},5968:function(d,l,n){var c=n(72760).selectMode,b=n(1936).clearOutline,i=n(9856),O=i.readPaths,w=i.writePaths,y=i.fixDatesForPaths;d.exports=function(p,a){if(p.length){var u=p[0][0];if(u){var h=u.getAttribute("d"),m=a.gd,v=m._fullLayout.newselection,_=a.plotinfo,S=_.xaxis,A=_.yaxis,x=a.isActiveSelection,R=a.dragmode,M=(m.layout||{}).selections||[];if(!c(R)&&x!==void 0){var T=m._fullLayout._activeSelectionIndex;if(T-1,bn=[];if(function(yt){return yt&&Array.isArray(yt)&&yt[0].hoverOnBox!==!0}(nn)){de(Ee,Ne,Ge);var mn=function(yt,zt){var Rt,it,at=yt[0],Lt=-1,xt=[];for(it=0;it0?function(yt,zt){var Rt,it,at,Lt=[];for(at=0;at0&&Lt.push(Rt);if(Lt.length===1&&Lt[0]===zt.searchInfo&&(it=zt.searchInfo.cd[0].trace).selectedpoints.length===zt.pointNumbers.length){for(at=0;at1||(it+=zt.selectedpoints.length)>1))return!1;return it===1}(pt)&&(en=Te(mn))){for(ht&&ht.remove(),_t=0;_t=0})(ot)&&ot._fullLayout._deactivateShape(ot),function(qt){return qt._fullLayout._activeSelectionIndex>=0}(ot)&&ot._fullLayout._deactivateSelection(ot);var Ge=ot._fullLayout._zoomlayer,ht=m(je),pt=_(je);if(ht||pt){var wt,Dt,It=Ge.selectAll(".select-outline-"+nt.id);It&&ot._fullLayout._outlining&&(ht&&(wt=C(It,Ee)),wt&&i.call("_guiRelayout",ot,{shapes:wt}),pt&&!me(Ee)&&(Dt=L(It,Ee)),Dt&&(ot._fullLayout._noEmitSelectedAtStart=!0,i.call("_guiRelayout",ot,{selections:Dt}).then(function(){Ne&&D(ot)})),ot._fullLayout._outlining=!1)}nt.selection={},nt.selection.selectionDefs=Ee.selectionDefs=[],nt.selection.mergedPolygons=Ee.mergedPolygons=[]}function ye(Ee){return Ee._id}function _e(Ee,Ne,je,nt){if(!Ee.calcdata)return[];var ot,Ge,ht,pt=[],wt=Ne.map(ye),Dt=je.map(ye);for(ht=0;ht0?nt[0]:je;return!!Ne.selectedpoints&&Ne.selectedpoints.indexOf(ot)>-1}function Pe(Ee,Ne,je){var nt,ot;for(nt=0;nt-1&&Ne;if(!Ge&&Ne){var ir=ke(Ee,!0);if(ir.length){var Wn=ir[0].xref,Kn=ir[0].yref;if(Wn&&Kn){var _r=Ue(ir);Ze([Q(Ee,Wn,"x"),Q(Ee,Kn,"y")])(ar,_r)}}Ee._fullLayout._noEmitSelectedAtStart?Ee._fullLayout._noEmitSelectedAtStart=!1:Fn&&Xe(Ee,ar),en._reselect=!1}if(!Ge&&en._deselect){var Ir=en._deselect;(function(zr,Fr,Rr){for(var $r=0;$r=0)Gt._fullLayout._deactivateShape(Gt);else if(!Dt){var _r=Ct.clickmode;$.done(Sr).then(function(){if($.clear(Sr),Wn===2){for(Nn.remove(),at=0;at-1&&he(Kn,Gt,nt.xaxes,nt.yaxes,nt.subplot,nt,Nn),_r==="event"&&Xe(Gt,void 0);y.click(Gt,Kn,bn.id)}).catch(k.error)}},nt.doneFn=function(){Un.remove(),$.done(Sr).then(function(){$.clear(Sr),!_t&&it&&nt.selectionDefs&&(it.subtract=vn,nt.selectionDefs.push(it),nt.mergedPolygons.length=0,[].push.apply(nt.mergedPolygons,Rt)),(_t||Dt)&&ve(nt,_t),nt.doneFnCompleted&&nt.doneFnCompleted(ar),It&&Xe(Gt,xt)}).catch(k.error)}},clearOutline:R,clearSelectionsCache:ve,selectOnClick:he}},46056:function(d,l,n){var c=n(13916),b=n(25376),i=n(52904).line,O=n(98192).u,w=n(92880).extendFlat,y=n(31780).templatedArray,p=(n(36208),n(45464)),a=n(21776).ye,u=n(97728);d.exports=y("shape",{visible:w({},p.visible,{editType:"calc+arraydraw"}),showlegend:{valType:"boolean",dflt:!1,editType:"calc+arraydraw"},legend:w({},p.legend,{editType:"calc+arraydraw"}),legendgroup:w({},p.legendgroup,{editType:"calc+arraydraw"}),legendgrouptitle:{text:w({},p.legendgrouptitle.text,{editType:"calc+arraydraw"}),font:b({editType:"calc+arraydraw"}),editType:"calc+arraydraw"},legendrank:w({},p.legendrank,{editType:"calc+arraydraw"}),legendwidth:w({},p.legendwidth,{editType:"calc+arraydraw"}),type:{valType:"enumerated",values:["circle","rect","path","line"],editType:"calc+arraydraw"},layer:{valType:"enumerated",values:["below","above"],dflt:"above",editType:"arraydraw"},xref:w({},c.xref,{}),xsizemode:{valType:"enumerated",values:["scaled","pixel"],dflt:"scaled",editType:"calc+arraydraw"},xanchor:{valType:"any",editType:"calc+arraydraw"},x0:{valType:"any",editType:"calc+arraydraw"},x1:{valType:"any",editType:"calc+arraydraw"},yref:w({},c.yref,{}),ysizemode:{valType:"enumerated",values:["scaled","pixel"],dflt:"scaled",editType:"calc+arraydraw"},yanchor:{valType:"any",editType:"calc+arraydraw"},y0:{valType:"any",editType:"calc+arraydraw"},y1:{valType:"any",editType:"calc+arraydraw"},path:{valType:"string",editType:"calc+arraydraw"},opacity:{valType:"number",min:0,max:1,dflt:1,editType:"arraydraw"},line:{color:w({},i.color,{editType:"arraydraw"}),width:w({},i.width,{editType:"calc+arraydraw"}),dash:w({},O,{editType:"arraydraw"}),editType:"calc+arraydraw"},fillcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},fillrule:{valType:"enumerated",values:["evenodd","nonzero"],dflt:"evenodd",editType:"arraydraw"},editable:{valType:"boolean",dflt:!1,editType:"calc+arraydraw"},label:{text:{valType:"string",dflt:"",editType:"arraydraw"},texttemplate:a({},{keys:Object.keys(u)}),font:b({editType:"calc+arraydraw",colorEditType:"arraydraw"}),textposition:{valType:"enumerated",values:["top left","top center","top right","middle left","middle center","middle right","bottom left","bottom center","bottom right","start","middle","end"],editType:"arraydraw"},textangle:{valType:"angle",dflt:"auto",editType:"calc+arraydraw"},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"auto",editType:"calc+arraydraw"},yanchor:{valType:"enumerated",values:["top","middle","bottom"],editType:"calc+arraydraw"},padding:{valType:"number",dflt:3,min:0,editType:"arraydraw"},editType:"arraydraw"},editType:"arraydraw"})},96084:function(d,l,n){var c=n(3400),b=n(54460),i=n(85448),O=n(65152);function w(u){return p(u.line.width,u.xsizemode,u.x0,u.x1,u.path,!1)}function y(u){return p(u.line.width,u.ysizemode,u.y0,u.y1,u.path,!0)}function p(u,h,m,v,_,S){var A=u/2,x=S;if(h==="pixel"){var R=_?O.extractPathCoords(_,S?i.paramIsY:i.paramIsX):[m,v],M=c.aggNums(Math.max,null,R),T=c.aggNums(Math.min,null,R),E=T<0?Math.abs(T)+A:A,C=M>0?M+A:A;return{ppad:A,ppadplus:x?E:C,ppadminus:x?C:E}}return{ppad:A}}function a(u,h,m,v,_){var S=u.type==="category"||u.type==="multicategory"?u.r2c:u.d2c;if(h!==void 0)return[S(h),S(m)];if(v){var A,x,R,M,T=1/0,E=-1/0,C=v.match(i.segmentRE);for(u.type==="date"&&(S=O.decodeDate(S)),A=0;AE&&(E=M)));return E>=T?[T,E]:void 0}}d.exports=function(u){var h=u._fullLayout,m=c.filterVisible(h.shapes);if(m.length&&u._fullData.length)for(var v=0;v=ye?_e-Te:Te-_e,-180/Math.PI*Math.atan2(Pe,Ie)}(E,L,C,D):0),z.call(function(ye){return ye.call(O.font,I).attr({}),i.convertToTspans(ye,h),ye});var ae=function(ye,_e,Se,Te,Pe,Ie,ze){var De,He,Ve,$e,Oe=Pe.label.textposition,ke=Pe.label.textangle,Le=Pe.label.padding,We=Pe.type,Ue=Math.PI/180*Ie,Ze=Math.sin(Ue),Xe=Math.cos(Ue),tt=Pe.label.xanchor,Ee=Pe.label.yanchor;if(We==="line"){Oe==="start"?(De=ye,He=_e):Oe==="end"?(De=Se,He=Te):(De=(ye+Se)/2,He=(_e+Te)/2),tt==="auto"&&(tt=Oe==="start"?ke==="auto"?Se>ye?"left":Seye?"right":Seye?"right":Seye?"left":Se1&&(De.length!==2||De[1][0]!=="Z")&&(K===0&&(De[0][0]="M"),k[W]=De,j(),U())}}()}}function ye(Pe,Ie){(function(ze,De){if(k.length)for(var He=0;HeHe?(Oe=ze,Ue="y0",ke=He,Ze="y1"):(Oe=He,Ue="y1",ke=ze,Ze="y0"),vt(Rt),yt(Te,_e),function(it,at,Lt){var xt=at.xref,Ht=at.yref,Xt=O.getFromId(Lt,xt),Yt=O.getFromId(Lt,Ht),Qt="";xt==="paper"||Xt.autorange||(Qt+=xt),Ht==="paper"||Yt.autorange||(Qt+=Ht),h.setClipUrl(it,Qt?"clip"+Lt._fullLayout._uid+Qt:null,Lt)}(ye,_e,ve),mn.moveFn=Ne==="move"?bt:lt,mn.altKey=Rt.altKey)},doneFn:function(){M(ve)||(_(ye),zt(Te),C(ye,ve,_e),b.call("_guiRelayout",ve,Pe.getUpdateObj()))},clickFn:function(){M(ve)||zt(Te)}};function vt(Rt){if(M(ve))Ne=null;else if(ht)Ne=Rt.target.tagName==="path"?"move":Rt.target.attributes["data-line-point"].value==="start-point"?"resize-over-start-point":"resize-over-end-point";else{var it=mn.element.getBoundingClientRect(),at=it.right-it.left,Lt=it.bottom-it.top,xt=Rt.clientX-it.left,Ht=Rt.clientY-it.top,Xt=!pt&&at>je&&Lt>nt&&!Rt.shiftKey?v.getCursor(xt/at,1-Ht/Lt):"move";_(ye,Xt),Ne=Xt.split("-")[0]}}function bt(Rt,it){if(_e.type==="path"){var at=function(Ht){return Ht},Lt=at,xt=at;ot?wt("xanchor",_e.xanchor=nn(Ve+Rt)):(Lt=function(Ht){return nn(Ct(Ht)+Rt)},It&&It.type==="date"&&(Lt=A.encodeDate(Lt))),Ge?wt("yanchor",_e.yanchor=gn($e+it)):(xt=function(Ht){return gn(_t(Ht)+it)},en&&en.type==="date"&&(xt=A.encodeDate(xt))),wt("path",_e.path=L(Ee,Lt,xt))}else ot?wt("xanchor",_e.xanchor=nn(Ve+Rt)):(wt("x0",_e.x0=nn(Ie+Rt)),wt("x1",_e.x1=nn(De+Rt))),Ge?wt("yanchor",_e.yanchor=gn($e+it)):(wt("y0",_e.y0=gn(ze+it)),wt("y1",_e.y1=gn(He+it)));ye.attr("d",x(ve,_e)),yt(Te,_e),p(ve,Se,_e,Dt)}function lt(Rt,it){if(pt){var at=function(In){return In},Lt=at,xt=at;ot?wt("xanchor",_e.xanchor=nn(Ve+Rt)):(Lt=function(In){return nn(Ct(In)+Rt)},It&&It.type==="date"&&(Lt=A.encodeDate(Lt))),Ge?wt("yanchor",_e.yanchor=gn($e+it)):(xt=function(In){return gn(_t(In)+it)},en&&en.type==="date"&&(xt=A.encodeDate(xt))),wt("path",_e.path=L(Ee,Lt,xt))}else if(ht){if(Ne==="resize-over-start-point"){var Ht=Ie+Rt,Xt=Ge?ze-it:ze+it;wt("x0",_e.x0=ot?Ht:nn(Ht)),wt("y0",_e.y0=Ge?Xt:gn(Xt))}else if(Ne==="resize-over-end-point"){var Yt=De+Rt,Qt=Ge?He-it:He+it;wt("x1",_e.x1=ot?Yt:nn(Yt)),wt("y1",_e.y1=Ge?Qt:gn(Qt))}}else{var Pt=function(In){return Ne.indexOf(In)!==-1},tn=Pt("n"),Kt=Pt("s"),fn=Pt("w"),dn=Pt("e"),vn=tn?Oe+it:Oe,Nn=Kt?ke+it:ke,er=fn?Le+Rt:Le,En=dn?We+Rt:We;Ge&&(tn&&(vn=Oe-it),Kt&&(Nn=ke-it)),(!Ge&&Nn-vn>nt||Ge&&vn-Nn>nt)&&(wt(Ue,_e[Ue]=Ge?vn:gn(vn)),wt(Ze,_e[Ze]=Ge?Nn:gn(Nn))),En-er>je&&(wt(Xe,_e[Xe]=ot?er:nn(er)),wt(tt,_e[tt]=ot?En:nn(En)))}ye.attr("d",x(ve,_e)),yt(Te,_e),p(ve,Se,_e,Dt)}function yt(Rt,it){(ot||Ge)&&function(){var at=it.type!=="path",Lt=Rt.selectAll(".visual-cue").data([0]);Lt.enter().append("path").attr({fill:"#fff","fill-rule":"evenodd",stroke:"#000","stroke-width":1}).classed("visual-cue",!0);var xt=Ct(ot?it.xanchor:i.midRange(at?[it.x0,it.x1]:A.extractPathCoords(it.path,S.paramIsX))),Ht=_t(Ge?it.yanchor:i.midRange(at?[it.y0,it.y1]:A.extractPathCoords(it.path,S.paramIsY)));if(xt=A.roundPositionForSharpStrokeRendering(xt,1),Ht=A.roundPositionForSharpStrokeRendering(Ht,1),ot&&Ge){var Xt="M"+(xt-1-1)+","+(Ht-1-1)+"h-8v2h8 v8h2v-8 h8v-2h-8 v-8h-2 Z";Lt.attr("d",Xt)}else if(ot){var Yt="M"+(xt-1-1)+","+(Ht-9-1)+"v18 h2 v-18 Z";Lt.attr("d",Yt)}else{var Qt="M"+(xt-9-1)+","+(Ht-1-1)+"h18 v2 h-18 Z";Lt.attr("d",Qt)}}()}function zt(Rt){Rt.selectAll(".visual-cue").remove()}v.init(mn),bn.node().onmousemove=vt}(k,ae,$,I,U,he):$.editable===!0&&ae.style("pointer-events",ee||u.opacity(K)*W<=.5?"stroke":"all");ae.node().addEventListener("click",function(){return function(ve,ye){if(T(ve)){var _e=+ye.node().getAttribute("data-index");if(_e>=0){if(_e===ve._fullLayout._activeShapeIndex)return void D(ve);ve._fullLayout._activeShapeIndex=_e,ve._fullLayout._deactivateShape=D,R(ve)}}}(k,ae)})}$._input&&$.visible===!0&&($.layer!=="below"?j(k._fullLayout._shapeUpperLayer):$.xref==="paper"||$.yref==="paper"?j(k._fullLayout._shapeLowerLayer):Q._hadPlotinfo?j((Q.mainplotinfo||Q).shapelayer):j(k._fullLayout._shapeLowerLayer))}function C(k,I,z){var $=(z.xref+z.yref).replace(/paper/g,"").replace(/[xyz][1-9]* *domain/g,"");h.setClipUrl(k,$?"clip"+I._fullLayout._uid+$:null,I)}function L(k,I,z){return k.replace(S.segmentRE,function($){var Q=0,j=$.charAt(0),U=S.paramIsX[j],X=S.paramIsY[j],te=S.numParams[j];return j+$.substr(1).replace(S.paramRE,function(W){return Q>=te||(U[Q]?W=I(W):X[Q]&&(W=z(W)),Q++),W})})}function D(k){T(k)&&k._fullLayout._activeShapeIndex>=0&&(a(k),delete k._fullLayout._activeShapeIndex,R(k))}d.exports={draw:R,drawOne:E,eraseActiveShape:function(k){if(T(k)){a(k);var I=k._fullLayout._activeShapeIndex,z=(k.layout||{}).shapes||[];if(I0&&Ese&&(ce="X"),ce});return Y>se&&(ae=ae.replace(/[\s,]*X.*/,""),b.log("Ignoring extra params in segment "+q)),ee+ae})}(w,p,u);if(w.xsizemode==="pixel"){var E=p(w.xanchor);h=E+w.x0,m=E+w.x1}else h=p(w.x0),m=p(w.x1);if(w.ysizemode==="pixel"){var C=u(w.yanchor);v=C-w.y0,_=C-w.y1}else v=u(w.y0),_=u(w.y1);if(S==="line")return"M"+h+","+v+"L"+m+","+_;if(S==="rect")return"M"+h+","+v+"H"+m+"V"+_+"H"+h+"Z";var L=(h+m)/2,D=(v+_)/2,k=Math.abs(L-h),I=Math.abs(D-v),z="A"+k+","+I,$=L+k+","+D;return"M"+$+z+" 0 1,1 "+L+","+(D-I)+z+" 0 0,1 "+$+"Z"}},41592:function(d,l,n){var c=n(4016);d.exports={moduleType:"component",name:"shapes",layoutAttributes:n(46056),supplyLayoutDefaults:n(43712),supplyDrawNewShapeDefaults:n(65144),includeBasePlot:n(36632)("shapes"),calcAutorange:n(96084),draw:c.draw,drawOne:c.drawOne}},97728:function(d){function l(i,O){return O?O.d2l(i):i}function n(i,O){return O?O.l2d(i):i}function c(i,O){return l(i.x1,O)-l(i.x0,O)}function b(i,O,w){return l(i.y1,w)-l(i.y0,w)}d.exports={x0:function(i){return i.x0},x1:function(i){return i.x1},y0:function(i){return i.y0},y1:function(i){return i.y1},slope:function(i,O,w){return i.type!=="line"?void 0:b(i,0,w)/c(i,O)},dx:c,dy:b,width:function(i,O){return Math.abs(c(i,O))},height:function(i,O,w){return Math.abs(b(i,0,w))},length:function(i,O,w){return i.type!=="line"?void 0:Math.sqrt(Math.pow(c(i,O),2)+Math.pow(b(i,0,w),2))},xcenter:function(i,O){return n((l(i.x1,O)+l(i.x0,O))/2,O)},ycenter:function(i,O,w){return n((l(i.y1,w)+l(i.y0,w))/2,w)}}},89861:function(d,l,n){var c=n(25376),b=n(66741),i=n(92880).extendDeepAll,O=n(67824).overrideAll,w=n(85656),y=n(31780).templatedArray,p=n(60876),a=y("step",{visible:{valType:"boolean",dflt:!0},method:{valType:"enumerated",values:["restyle","relayout","animate","update","skip"],dflt:"restyle"},args:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}]},label:{valType:"string"},value:{valType:"string"},execute:{valType:"boolean",dflt:!0}});d.exports=O(y("slider",{visible:{valType:"boolean",dflt:!0},active:{valType:"number",min:0,dflt:0},steps:a,lenmode:{valType:"enumerated",values:["fraction","pixels"],dflt:"fraction"},len:{valType:"number",min:0,dflt:1},x:{valType:"number",min:-2,max:3,dflt:0},pad:i(b({editType:"arraydraw"}),{},{t:{dflt:20}}),xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"left"},y:{valType:"number",min:-2,max:3,dflt:0},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"top"},transition:{duration:{valType:"number",min:0,dflt:150},easing:{valType:"enumerated",values:w.transition.easing.values,dflt:"cubic-in-out"}},currentvalue:{visible:{valType:"boolean",dflt:!0},xanchor:{valType:"enumerated",values:["left","center","right"],dflt:"left"},offset:{valType:"number",dflt:10},prefix:{valType:"string"},suffix:{valType:"string"},font:c({})},font:c({}),activebgcolor:{valType:"color",dflt:p.gripBgActiveColor},bgcolor:{valType:"color",dflt:p.railBgColor},bordercolor:{valType:"color",dflt:p.railBorderColor},borderwidth:{valType:"number",min:0,dflt:p.railBorderWidth},ticklen:{valType:"number",min:0,dflt:p.tickLength},tickcolor:{valType:"color",dflt:p.tickColor},tickwidth:{valType:"number",min:0,dflt:1},minorticklen:{valType:"number",min:0,dflt:p.minorTickLength}}),"arraydraw","from-root")},60876:function(d){d.exports={name:"sliders",containerClassName:"slider-container",groupClassName:"slider-group",inputAreaClass:"slider-input-area",railRectClass:"slider-rail-rect",railTouchRectClass:"slider-rail-touch-rect",gripRectClass:"slider-grip-rect",tickRectClass:"slider-tick-rect",inputProxyClass:"slider-input-proxy",labelsClass:"slider-labels",labelGroupClass:"slider-label-group",labelClass:"slider-label",currentValueClass:"slider-current-value",railHeight:5,menuIndexAttrName:"slider-active-index",autoMarginIdRoot:"slider-",minWidth:30,minHeight:30,textPadX:40,arrowOffsetX:4,railRadius:2,railWidth:5,railBorder:4,railBorderWidth:1,railBorderColor:"#bec8d9",railBgColor:"#f8fafc",railInset:8,stepInset:10,gripRadius:10,gripWidth:20,gripHeight:20,gripBorder:20,gripBorderWidth:1,gripBorderColor:"#bec8d9",gripBgColor:"#f6f8fa",gripBgActiveColor:"#dbdde0",labelPadding:8,labelOffset:0,tickWidth:1,tickColor:"#333",tickOffset:25,tickLength:7,minorTickOffset:25,minorTickColor:"#333",minorTickLength:4,currentValuePadding:8,currentValueInset:0}},8132:function(d,l,n){var c=n(3400),b=n(51272),i=n(89861),O=n(60876).name,w=i.steps;function y(a,u,h){function m(x,R){return c.coerce(a,u,i,x,R)}for(var v=b(a,u,{name:"steps",handleItemDefaults:p}),_=0,S=0;S0&&(Y=Y.transition().duration(X.transition.duration).ease(X.transition.easing)),Y.attr("transform",y(q-.5*u.gripWidth,X._dims.currentValueTotalHeight))}}function z(U,X){var te=U._dims;return te.inputAreaStart+u.stepInset+(te.inputAreaLength-2*u.stepInset)*Math.min(1,Math.max(0,X))}function $(U,X){var te=U._dims;return Math.min(1,Math.max(0,(X-u.stepInset-te.inputAreaStart)/(te.inputAreaLength-2*u.stepInset-2*te.inputAreaStart)))}function Q(U,X,te){var W=te._dims,K=w.ensureSingle(U,"rect",u.railTouchRectClass,function(oe){oe.call(D,X,U,te).style("pointer-events","all")});K.attr({width:W.inputAreaLength,height:Math.max(W.inputAreaWidth,u.tickOffset+te.ticklen+W.labelHeight)}).call(i.fill,te.bgcolor).attr("opacity",0),O.setTranslate(K,0,W.currentValueTotalHeight)}function j(U,X){var te=X._dims,W=te.inputAreaLength-2*u.railInset,K=w.ensureSingle(U,"rect",u.railRectClass);K.attr({width:W,height:u.railWidth,rx:u.railRadius,ry:u.railRadius,"shape-rendering":"crispEdges"}).call(i.stroke,X.bordercolor).call(i.fill,X.bgcolor).style("stroke-width",X.borderwidth+"px"),O.setTranslate(K,u.railInset,.5*(te.inputAreaWidth-u.railWidth)+te.currentValueTotalHeight)}d.exports=function(U){var X=U._context.staticPlot,te=U._fullLayout,W=function(me,he){for(var se=me[u.name],ae=[],ce=0;ce0?[0]:[]);function oe(me){me._commandObserver&&(me._commandObserver.remove(),delete me._commandObserver),b.autoMargin(U,S(me))}if(K.enter().append("g").classed(u.containerClassName,!0).style("cursor",X?null:"ew-resize"),K.exit().each(function(){c.select(this).selectAll("g."+u.groupClassName).each(oe)}).remove(),W.length!==0){var q=K.selectAll("g."+u.groupClassName).data(W,A);q.enter().append("g").classed(u.groupClassName,!0),q.exit().each(oe).remove();for(var Y=0;Y0||De<0){var Oe={left:[-He,0],right:[He,0],top:[0,-He],bottom:[0,He]}[C.side];ae.attr("transform",y(Oe[0],Oe[1]))}}}return Y.call(ee),K&&(j?Y.on(".opacity",null):(z=0,$=!0,Y.text(T).on("mouseover.opacity",function(){c.select(this).transition().duration(h.SHOW_PLACEHOLDER).style("opacity",1)}).on("mouseout.opacity",function(){c.select(this).transition().duration(h.HIDE_PLACEHOLDER).style("opacity",0)})),Y.call(u.makeEditable,{gd:_}).on("edit",function(se){E!==void 0?O.call("_guiRestyle",_,M,se,E):O.call("_guiRelayout",_,M,se)}).on("cancel",function(){this.text(this.attr("data-unformatted")).call(ee)}).on("input",function(se){this.text(se||" ").call(u.positionText,L.x,L.y)})),Y.classed("js-placeholder",$),k}}},88444:function(d,l,n){var c=n(25376),b=n(22548),i=n(92880).extendFlat,O=n(67824).overrideAll,w=n(66741),y=n(31780).templatedArray,p=y("button",{visible:{valType:"boolean"},method:{valType:"enumerated",values:["restyle","relayout","animate","update","skip"],dflt:"restyle"},args:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}]},args2:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}]},label:{valType:"string",dflt:""},execute:{valType:"boolean",dflt:!0}});d.exports=O(y("updatemenu",{_arrayAttrRegexps:[/^updatemenus\[(0|[1-9][0-9]+)\]\.buttons/],visible:{valType:"boolean"},type:{valType:"enumerated",values:["dropdown","buttons"],dflt:"dropdown"},direction:{valType:"enumerated",values:["left","right","up","down"],dflt:"down"},active:{valType:"integer",min:-1,dflt:0},showactive:{valType:"boolean",dflt:!0},buttons:p,x:{valType:"number",min:-2,max:3,dflt:-.05},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"right"},y:{valType:"number",min:-2,max:3,dflt:1},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"top"},pad:i(w({editType:"arraydraw"}),{}),font:c({}),bgcolor:{valType:"color"},bordercolor:{valType:"color",dflt:b.borderLine},borderwidth:{valType:"number",min:0,dflt:1,editType:"arraydraw"}}),"arraydraw","from-root")},73712:function(d){d.exports={name:"updatemenus",containerClassName:"updatemenu-container",headerGroupClassName:"updatemenu-header-group",headerClassName:"updatemenu-header",headerArrowClassName:"updatemenu-header-arrow",dropdownButtonGroupClassName:"updatemenu-dropdown-button-group",dropdownButtonClassName:"updatemenu-dropdown-button",buttonClassName:"updatemenu-button",itemRectClassName:"updatemenu-item-rect",itemTextClassName:"updatemenu-item-text",menuIndexAttrName:"updatemenu-active-index",autoMarginIdRoot:"updatemenu-",blankHeaderOpts:{label:" "},minWidth:30,minHeight:30,textPadX:24,arrowPadX:16,rx:2,ry:2,textOffsetX:12,textOffsetY:3,arrowOffsetX:4,gapButtonHeader:5,gapButton:2,activeColor:"#F4FAFF",hoverColor:"#F4FAFF",arrowSymbol:{left:"◄",right:"►",up:"▲",down:"▼"}}},91384:function(d,l,n){var c=n(3400),b=n(51272),i=n(88444),O=n(73712).name,w=i.buttons;function y(a,u,h){function m(v,_){return c.coerce(a,u,i,v,_)}m("visible",b(a,u,{name:"buttons",handleItemDefaults:p}).length>0)&&(m("active"),m("direction"),m("type"),m("showactive"),m("x"),m("y"),c.noneOrAll(a,u,["x","y"]),m("xanchor"),m("yanchor"),m("pad.t"),m("pad.r"),m("pad.b"),m("pad.l"),c.coerceFont(m,"font",h.font),m("bgcolor",h.paper_bgcolor),m("bordercolor"),m("borderwidth"))}function p(a,u){function h(m,v){return c.coerce(a,u,w,m,v)}h("visible",a.method==="skip"||Array.isArray(a.args))&&(h("method"),h("args"),h("args2"),h("label"),h("execute"))}d.exports=function(a,u){b(a,u,{name:O,handleItemDefaults:y})}},14420:function(d,l,n){var c=n(33428),b=n(7316),i=n(76308),O=n(43616),w=n(3400),y=n(72736),p=n(31780).arrayEditor,a=n(84284).LINE_SPACING,u=n(73712),h=n(37400);function m(z){return z._index}function v(z,$){return+z.attr(u.menuIndexAttrName)===$._index}function _(z,$,Q,j,U,X,te,W){$.active=te,p(z.layout,u.name,$).applyUpdate("active",te),$.type==="buttons"?A(z,j,null,null,$):$.type==="dropdown"&&(U.attr(u.menuIndexAttrName,"-1"),S(z,j,U,X,$),W||A(z,j,U,X,$))}function S(z,$,Q,j,U){var X=w.ensureSingle($,"g",u.headerClassName,function(Y){Y.style("pointer-events","all")}),te=U._dims,W=U.active,K=U.buttons[W]||u.blankHeaderOpts,oe={y:U.pad.t,yPad:0,x:U.pad.l,xPad:0,index:0},q={width:te.headerWidth,height:te.headerHeight};X.call(x,U,K,z).call(k,U,oe,q),w.ensureSingle($,"text",u.headerArrowClassName,function(Y){Y.attr("text-anchor","end").call(O.font,U.font).text(u.arrowSymbol[U.direction])}).attr({x:te.headerWidth-u.arrowOffsetX+U.pad.l,y:te.headerHeight/2+u.textOffsetY+U.pad.t}),X.on("click",function(){Q.call(I,String(v(Q,U)?-1:U._index)),A(z,$,Q,j,U)}),X.on("mouseover",function(){X.call(E)}),X.on("mouseout",function(){X.call(C,U)}),O.setTranslate($,te.lx,te.ly)}function A(z,$,Q,j,U){Q||(Q=$).attr("pointer-events","all");var X=function(ae){return+ae.attr(u.menuIndexAttrName)==-1}(Q)&&U.type!=="buttons"?[]:U.buttons,te=U.type==="dropdown"?u.dropdownButtonClassName:u.buttonClassName,W=Q.selectAll("g."+te).data(w.filterVisible(X)),K=W.enter().append("g").classed(te,!0),oe=W.exit();U.type==="dropdown"?(K.attr("opacity","0").transition().attr("opacity","1"),oe.transition().attr("opacity","0").remove()):oe.remove();var q=0,Y=0,ee=U._dims,me=["up","down"].indexOf(U.direction)!==-1;U.type==="dropdown"&&(me?Y=ee.headerHeight+u.gapButtonHeader:q=ee.headerWidth+u.gapButtonHeader),U.type==="dropdown"&&U.direction==="up"&&(Y=-u.gapButtonHeader+u.gapButton-ee.openHeight),U.type==="dropdown"&&U.direction==="left"&&(q=-u.gapButtonHeader+u.gapButton-ee.openWidth);var he={x:ee.lx+q+U.pad.l,y:ee.ly+Y+U.pad.t,yPad:u.gapButton,xPad:u.gapButton,index:0},se={l:he.x+U.borderwidth,t:he.y+U.borderwidth};W.each(function(ae,ce){var de=c.select(this);de.call(x,U,ae,z).call(k,U,he),de.on("click",function(){c.event.defaultPrevented||(ae.execute&&(ae.args2&&U.active===ce?(_(z,U,0,$,Q,j,-1),b.executeAPICommand(z,ae.method,ae.args2)):(_(z,U,0,$,Q,j,ce),b.executeAPICommand(z,ae.method,ae.args))),z.emit("plotly_buttonclicked",{menu:U,button:ae,active:U.active}))}),de.on("mouseover",function(){de.call(E)}),de.on("mouseout",function(){de.call(C,U),W.call(T,U)})}),W.call(T,U),me?(se.w=Math.max(ee.openWidth,ee.headerWidth),se.h=he.y-se.t):(se.w=he.x-se.l,se.h=Math.max(ee.openHeight,ee.headerHeight)),se.direction=U.direction,j&&(W.size()?function(ae,ce,de,ve,ye,_e){var Se,Te,Pe,Ie=ye.direction,ze=Ie==="up"||Ie==="down",De=ye._dims,He=ye.active;if(ze)for(Te=0,Pe=0;Pe0?[0]:[]);if(U.enter().append("g").classed(u.containerClassName,!0).style("cursor","pointer"),U.exit().each(function(){c.select(this).selectAll("g."+u.headerGroupClassName).each(j)}).remove(),Q.length!==0){var X=U.selectAll("g."+u.headerGroupClassName).data(Q,m);X.enter().append("g").classed(u.headerGroupClassName,!0);for(var te=w.ensureSingle(U,"g",u.dropdownButtonGroupClassName,function(Y){Y.style("pointer-events","all")}),W=0;Wk,$=w.barLength+2*w.barPad,Q=w.barWidth+2*w.barPad,j=x,U=M+T;U+Q>m&&(U=m-Q);var X=this.container.selectAll("rect.scrollbar-horizontal").data(z?[0]:[]);X.exit().on(".drag",null).remove(),X.enter().append("rect").classed("scrollbar-horizontal",!0).call(b.fill,w.barColor),z?(this.hbar=X.attr({rx:w.barRadius,ry:w.barRadius,x:j,y:U,width:$,height:Q}),this._hbarXMin=j+$/2,this._hbarTranslateMax=k-$):(delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax);var te=T>I,W=w.barWidth+2*w.barPad,K=w.barLength+2*w.barPad,oe=x+R,q=M;oe+W>h&&(oe=h-W);var Y=this.container.selectAll("rect.scrollbar-vertical").data(te?[0]:[]);Y.exit().on(".drag",null).remove(),Y.enter().append("rect").classed("scrollbar-vertical",!0).call(b.fill,w.barColor),te?(this.vbar=Y.attr({rx:w.barRadius,ry:w.barRadius,x:oe,y:q,width:W,height:K}),this._vbarYMin=q+K/2,this._vbarTranslateMax=I-K):(delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax);var ee=this.id,me=v-.5,he=te?_+W+.5:_+.5,se=S-.5,ae=z?A+Q+.5:A+.5,ce=u._topdefs.selectAll("#"+ee).data(z||te?[0]:[]);if(ce.exit().remove(),ce.enter().append("clipPath").attr("id",ee).append("rect"),z||te?(this._clipRect=ce.select("rect").attr({x:Math.floor(me),y:Math.floor(se),width:Math.ceil(he)-Math.floor(me),height:Math.ceil(ae)-Math.floor(se)}),this.container.call(i.setClipUrl,ee,this.gd),this.bg.attr({x,y:M,width:R,height:T})):(this.bg.attr({width:0,height:0}),this.container.on("wheel",null).on(".drag",null).call(i.setClipUrl,null),delete this._clipRect),z||te){var de=c.behavior.drag().on("dragstart",function(){c.event.sourceEvent.preventDefault()}).on("drag",this._onBoxDrag.bind(this));this.container.on("wheel",null).on("wheel",this._onBoxWheel.bind(this)).on(".drag",null).call(de);var ve=c.behavior.drag().on("dragstart",function(){c.event.sourceEvent.preventDefault(),c.event.sourceEvent.stopPropagation()}).on("drag",this._onBarDrag.bind(this));z&&this.hbar.on(".drag",null).call(ve),te&&this.vbar.on(".drag",null).call(ve)}this.setTranslate(p,a)},w.prototype.disable=function(){(this.hbar||this.vbar)&&(this.bg.attr({width:0,height:0}),this.container.on("wheel",null).on(".drag",null).call(i.setClipUrl,null),delete this._clipRect),this.hbar&&(this.hbar.on(".drag",null),this.hbar.remove(),delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax),this.vbar&&(this.vbar.on(".drag",null),this.vbar.remove(),delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax)},w.prototype._onBoxDrag=function(){var y=this.translateX,p=this.translateY;this.hbar&&(y-=c.event.dx),this.vbar&&(p-=c.event.dy),this.setTranslate(y,p)},w.prototype._onBoxWheel=function(){var y=this.translateX,p=this.translateY;this.hbar&&(y+=c.event.deltaY),this.vbar&&(p+=c.event.deltaY),this.setTranslate(y,p)},w.prototype._onBarDrag=function(){var y=this.translateX,p=this.translateY;if(this.hbar){var a=y+this._hbarXMin,u=a+this._hbarTranslateMax;y=(O.constrain(c.event.x,a,u)-a)/(u-a)*(this.position.w-this._box.w)}if(this.vbar){var h=p+this._vbarYMin,m=h+this._vbarTranslateMax;p=(O.constrain(c.event.y,h,m)-h)/(m-h)*(this.position.h-this._box.h)}this.setTranslate(y,p)},w.prototype.setTranslate=function(y,p){var a=this.position.w-this._box.w,u=this.position.h-this._box.h;if(y=O.constrain(y||0,0,a),p=O.constrain(p||0,0,u),this.translateX=y,this.translateY=p,this.container.call(i.setTranslate,this._box.l-this.position.l-y,this._box.t-this.position.t-p),this._clipRect&&this._clipRect.attr({x:Math.floor(this.position.l+y-.5),y:Math.floor(this.position.t+p-.5)}),this.hbar){var h=y/a;this.hbar.call(i.setTranslate,y+h*this._hbarTranslateMax,p)}if(this.vbar){var m=p/u;this.vbar.call(i.setTranslate,y,p+m*this._vbarTranslateMax)}}},84284:function(d){d.exports={FROM_BL:{left:0,center:.5,right:1,bottom:0,middle:.5,top:1},FROM_TL:{left:0,center:.5,right:1,bottom:1,middle:.5,top:0},FROM_BR:{left:1,center:.5,right:0,bottom:0,middle:.5,top:1},LINE_SPACING:1.3,CAP_SHIFT:.7,MID_SHIFT:.35,OPPOSITE_SIDE:{left:"right",right:"left",top:"bottom",bottom:"top"}}},36208:function(d){d.exports={axisRefDescription:function(l,n,c){return["If set to a",l,"axis id (e.g. *"+l+"* or","*"+l+"2*), the `"+l+"` position refers to a",l,"coordinate. If set to *paper*, the `"+l+"`","position refers to the distance from the",n,"of the plotting","area in normalized coordinates where *0* (*1*) corresponds to the",n,"("+c+"). If set to a",l,"axis ID followed by","*domain* (separated by a space), the position behaves like for","*paper*, but refers to the distance in fractions of the domain","length from the",n,"of the domain of that axis: e.g.,","*"+l+"2 domain* refers to the domain of the second",l," axis and a",l,"position of 0.5 refers to the","point between the",n,"and the",c,"of the domain of the","second",l,"axis."].join(" ")}}},48164:function(d){d.exports={INCREASING:{COLOR:"#3D9970",SYMBOL:"▲"},DECREASING:{COLOR:"#FF4136",SYMBOL:"▼"}}},26880:function(d){d.exports={FORMAT_LINK:"https://github.com/d3/d3-format/tree/v1.4.5#d3-format",DATE_FORMAT_LINK:"https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format"}},69104:function(d){d.exports={COMPARISON_OPS:["=","!=","<",">=",">","<="],COMPARISON_OPS2:["=","<",">=",">","<="],INTERVAL_OPS:["[]","()","[)","(]","][",")(","](",")["],SET_OPS:["{}","}{"],CONSTRAINT_REDUCTION:{"=":"=","<":"<","<=":"<",">":">",">=":">","[]":"[]","()":"[]","[)":"[]","(]":"[]","][":"][",")(":"][","](":"][",")[":"]["}}},99168:function(d){d.exports={solid:[[],0],dot:[[.5,1],200],dash:[[.5,1],50],longdash:[[.5,1],10],dashdot:[[.5,.625,.875,1],50],longdashdot:[[.5,.7,.8,1],10]}},87792:function(d){d.exports={circle:"●","circle-open":"○",square:"■","square-open":"□",diamond:"◆","diamond-open":"◇",cross:"+",x:"❌"}},13448:function(d){d.exports={SHOW_PLACEHOLDER:100,HIDE_PLACEHOLDER:1e3,DESELECTDIM:.2}},39032:function(d){d.exports={BADNUM:void 0,FP_SAFE:1e-4*Number.MAX_VALUE,ONEMAXYEAR:316224e5,ONEAVGYEAR:315576e5,ONEMINYEAR:31536e6,ONEMAXQUARTER:79488e5,ONEAVGQUARTER:78894e5,ONEMINQUARTER:76896e5,ONEMAXMONTH:26784e5,ONEAVGMONTH:26298e5,ONEMINMONTH:24192e5,ONEWEEK:6048e5,ONEDAY:864e5,ONEHOUR:36e5,ONEMIN:6e4,ONESEC:1e3,EPOCHJD:24405875e-1,ALMOST_EQUAL:.999999,LOG_CLIP:10,MINUS_SIGN:"−"}},2264:function(d,l){l.CSS_DECLARATIONS=[["image-rendering","optimizeSpeed"],["image-rendering","-moz-crisp-edges"],["image-rendering","-o-crisp-edges"],["image-rendering","-webkit-optimize-contrast"],["image-rendering","optimize-contrast"],["image-rendering","crisp-edges"],["image-rendering","pixelated"]],l.STYLE=l.CSS_DECLARATIONS.map(function(n){return n.join(": ")+"; "}).join("")},9616:function(d,l){l.xmlns="http://www.w3.org/2000/xmlns/",l.svg="http://www.w3.org/2000/svg",l.xlink="http://www.w3.org/1999/xlink",l.svgAttrs={xmlns:l.svg,"xmlns:xlink":l.xlink}},64884:function(d,l,n){l.version=n(25788).version,n(88324),n(79288);for(var c=n(24040),b=l.register=c.register,i=n(22448),O=Object.keys(i),w=0;w",""," ",""," plotly-logomark"," "," "," "," "," "," "," "," "," "," "," "," "," ",""].join("")}}},98308:function(d,l){l.isLeftAnchor=function(n){return n.xanchor==="left"||n.xanchor==="auto"&&n.x<=.3333333333333333},l.isCenterAnchor=function(n){return n.xanchor==="center"||n.xanchor==="auto"&&n.x>.3333333333333333&&n.x<.6666666666666666},l.isRightAnchor=function(n){return n.xanchor==="right"||n.xanchor==="auto"&&n.x>=.6666666666666666},l.isTopAnchor=function(n){return n.yanchor==="top"||n.yanchor==="auto"&&n.y>=.6666666666666666},l.isMiddleAnchor=function(n){return n.yanchor==="middle"||n.yanchor==="auto"&&n.y>.3333333333333333&&n.y<.6666666666666666},l.isBottomAnchor=function(n){return n.yanchor==="bottom"||n.yanchor==="auto"&&n.y<=.3333333333333333}},11864:function(d,l,n){var c=n(20435),b=c.mod,i=c.modHalf,O=Math.PI,w=2*O;function y(h){return Math.abs(h[1]-h[0])>w-1e-14}function p(h,m){return i(m-h,w)}function a(h,m){if(y(m))return!0;var v,_;m[0](_=b(_,w))&&(_+=w);var S=b(h,w),A=S+w;return S>=v&&S<=_||A>=v&&A<=_}function u(h,m,v,_,S,A,x){S=S||0,A=A||0;var R,M,T,E,C,L=y([v,_]);function D($,Q){return[$*Math.cos(Q)+S,A-$*Math.sin(Q)]}L?(R=0,M=O,T=w):v<_?(R=v,T=_):(R=_,T=v),h=S&&h<=A);var S,A},pathArc:function(h,m,v,_,S){return u(null,h,m,v,_,S,0)},pathSector:function(h,m,v,_,S){return u(null,h,m,v,_,S,1)},pathAnnulus:function(h,m,v,_,S,A){return u(h,m,v,_,S,A,1)}}},38116:function(d,l,n){var c=n(83160).decode,b=n(63620),i=Array.isArray,O=ArrayBuffer,w=DataView;function y(m){return O.isView(m)&&!(m instanceof w)}function p(m){return i(m)||y(m)}l.isTypedArray=y,l.isArrayOrTypedArray=p,l.isArray1D=function(m){return!p(m[0])},l.ensureArray=function(m,v){return i(m)||(m=[]),m.length=v,m};var a={u1c:typeof Uint8ClampedArray>"u"?void 0:Uint8ClampedArray,i1:typeof Int8Array>"u"?void 0:Int8Array,u1:typeof Uint8Array>"u"?void 0:Uint8Array,i2:typeof Int16Array>"u"?void 0:Int16Array,u2:typeof Uint16Array>"u"?void 0:Uint16Array,i4:typeof Int32Array>"u"?void 0:Int32Array,u4:typeof Uint32Array>"u"?void 0:Uint32Array,f4:typeof Float32Array>"u"?void 0:Float32Array,f8:typeof Float64Array>"u"?void 0:Float64Array};function u(m){return m.constructor===ArrayBuffer}function h(m,v,_){if(p(m)){if(p(m[0])){for(var S=_,A=0;AR.max?A.set(x):A.set(+S)}},integer:{coerceFunction:function(S,A,x,R){S%1||!c(S)||R.min!==void 0&&SR.max?A.set(x):A.set(+S)}},string:{coerceFunction:function(S,A,x,R){if(typeof S!="string"){var M=typeof S=="number";R.strict!==!0&&M?A.set(String(S)):A.set(x)}else R.noBlank&&!S?A.set(x):A.set(S)}},color:{coerceFunction:function(S,A,x){b(S).isValid()?A.set(S):A.set(x)}},colorlist:{coerceFunction:function(S,A,x){Array.isArray(S)&&S.length&&S.every(function(R){return b(R).isValid()})?A.set(S):A.set(x)}},colorscale:{coerceFunction:function(S,A,x){A.set(O.get(S,x))}},angle:{coerceFunction:function(S,A,x){S==="auto"?A.set("auto"):c(S)?A.set(u(+S,360)):A.set(x)}},subplotid:{coerceFunction:function(S,A,x,R){var M=R.regex||a(x);typeof S=="string"&&M.test(S)?A.set(S):A.set(x)},validateFunction:function(S,A){var x=A.dflt;return S===x||typeof S=="string"&&!!a(x).test(S)}},flaglist:{coerceFunction:function(S,A,x,R){if((R.extras||[]).indexOf(S)===-1)if(typeof S=="string"){for(var M=S.split("+"),T=0;T=c&&X<=b?X:a}if(typeof X!="string"&&typeof X!="number")return a;X=String(X);var q=T(te),Y=X.charAt(0);!q||Y!=="G"&&Y!=="g"||(X=X.substr(1),te="");var ee=q&&te.substr(0,7)==="chinese",me=X.match(ee?R:x);if(!me)return a;var he=me[1],se=me[3]||"1",ae=Number(me[5]||1),ce=Number(me[7]||0),de=Number(me[9]||0),ve=Number(me[11]||0);if(q){if(he.length===2)return a;var ye;he=Number(he);try{var _e=S.getComponentMethod("calendars","getCal")(te);if(ee){var Se=se.charAt(se.length-1)==="i";se=parseInt(se,10),ye=_e.newDate(he,_e.toMonthIndex(he,se,Se),ae)}else ye=_e.newDate(he,Number(se),ae)}catch{return a}return ye?(ye.toJD()-_)*u+ce*h+de*m+ve*v:a}he=he.length===2?(Number(he)+2e3-M)%100+M:Number(he),se-=1;var Te=new Date(Date.UTC(2e3,se,ae,ce,de));return Te.setUTCFullYear(he),Te.getUTCMonth()!==se||Te.getUTCDate()!==ae?a:Te.getTime()+ve*v},c=l.MIN_MS=l.dateTime2ms("-9999"),b=l.MAX_MS=l.dateTime2ms("9999-12-31 23:59:59.9999"),l.isDateTime=function(X,te){return l.dateTime2ms(X,te)!==a};var C=90*u,L=3*h,D=5*m;function k(X,te,W,K,oe){if((te||W||K||oe)&&(X+=" "+E(te,2)+":"+E(W,2),(K||oe)&&(X+=":"+E(K,2),oe))){for(var q=4;oe%10==0;)q-=1,oe/=10;X+="."+E(oe,q)}return X}l.ms2DateTime=function(X,te,W){if(typeof X!="number"||!(X>=c&&X<=b))return a;te||(te=0);var K,oe,q,Y,ee,me,he=Math.floor(10*y(X+.05,1)),se=Math.round(X-he/10);if(T(W)){var ae=Math.floor(se/u)+_,ce=Math.floor(y(X,u));try{K=S.getComponentMethod("calendars","getCal")(W).fromJD(ae).formatDate("yyyy-mm-dd")}catch{K=A("G%Y-%m-%d")(new Date(se))}if(K.charAt(0)==="-")for(;K.length<11;)K="-0"+K.substr(1);else for(;K.length<10;)K="0"+K;oe=te=c+u&&X<=b-u))return a;var te=Math.floor(10*y(X+.05,1)),W=new Date(Math.round(X-te/10));return k(i("%Y-%m-%d")(W),W.getHours(),W.getMinutes(),W.getSeconds(),10*W.getUTCMilliseconds()+te)},l.cleanDate=function(X,te,W){if(X===a)return te;if(l.isJSDate(X)||typeof X=="number"&&isFinite(X)){if(T(W))return w.error("JS Dates and milliseconds are incompatible with world calendars",X),te;if(!(X=l.ms2DateTimeLocal(+X))&&te!==void 0)return te}else if(!l.isDateTime(X,W))return w.error("unrecognized date",X),te;return X};var I=/%\d?f/g,z=/%h/g,$={1:"1",2:"1",3:"2",4:"2"};function Q(X,te,W,K){X=X.replace(I,function(q){var Y=Math.min(+q.charAt(1)||6,6);return(te/1e3%1+2).toFixed(Y).substr(2).replace(/0+$/,"")||"0"});var oe=new Date(Math.floor(te+.05));if(X=X.replace(z,function(){return $[W("%q")(oe)]}),T(K))try{X=S.getComponentMethod("calendars","worldCalFmt")(X,te,K)}catch{return"Invalid"}return W(X)(oe)}var j=[59,59.9,59.99,59.999,59.9999];l.formatDate=function(X,te,W,K,oe,q){if(oe=T(oe)&&oe,!te)if(W==="y")te=q.year;else if(W==="m")te=q.month;else{if(W!=="d")return function(Y,ee){var me=y(Y+.05,u),he=E(Math.floor(me/h),2)+":"+E(y(Math.floor(me/m),60),2);if(ee!=="M"){O(ee)||(ee=0);var se=(100+Math.min(y(Y/v,60),j[ee])).toFixed(ee).substr(1);ee>0&&(se=se.replace(/0+$/,"").replace(/[\.]$/,"")),he+=":"+se}return he}(X,W)+`
+ */const zA=typeof window<"u";function U5e(t){return t.__esModule||t[Symbol.toStringTag]==="Module"}const $u=Object.assign;function aie(t,e){const o={};for(const f in e){const P=e[f];o[f]=bx(P)?P.map(t):t(P)}return o}const aI=()=>{},bx=Array.isArray,j5e=/\/$/,Q5e=t=>t.replace(j5e,"");function sie(t,e,o="/"){let f,P={},d="",l="";const n=e.indexOf("#");let c=e.indexOf("?");return n=0&&(c=-1),c>-1&&(f=e.slice(0,c),d=e.slice(c+1,n>-1?n:e.length),P=t(d)),n>-1&&(f=f||e.slice(0,n),l=e.slice(n,e.length)),f=W5e(f??e,o),{fullPath:f+(d&&"?")+d+l,path:f,query:P,hash:l}}function H5e(t,e){const o=e.query?t(e.query):"";return e.path+(o&&"?")+o+(e.hash||"")}function nhe(t,e){return!e||!t.toLowerCase().startsWith(e.toLowerCase())?t:t.slice(e.length)||"/"}function Z5e(t,e,o){const f=e.matched.length-1,P=o.matched.length-1;return f>-1&&f===P&&lM(e.matched[f],o.matched[P])&&fve(e.params,o.params)&&t(e.query)===t(o.query)&&e.hash===o.hash}function lM(t,e){return(t.aliasOf||t)===(e.aliasOf||e)}function fve(t,e){if(Object.keys(t).length!==Object.keys(e).length)return!1;for(const o in t)if(!q5e(t[o],e[o]))return!1;return!0}function q5e(t,e){return bx(t)?rhe(t,e):bx(e)?rhe(e,t):t===e}function rhe(t,e){return bx(e)?t.length===e.length&&t.every((o,f)=>o===e[f]):t.length===1&&t[0]===e}function W5e(t,e){if(t.startsWith("/"))return t;if(!t)return e;const o=e.split("/"),f=t.split("/"),P=f[f.length-1];(P===".."||P===".")&&f.push("");let d=o.length-1,l,n;for(l=0;l1&&d--;else break;return o.slice(0,d).join("/")+"/"+f.slice(l-(l===f.length?1:0)).join("/")}var AI;(function(t){t.pop="pop",t.push="push"})(AI||(AI={}));var sI;(function(t){t.back="back",t.forward="forward",t.unknown=""})(sI||(sI={}));function Y5e(t){if(!t)if(zA){const e=document.querySelector("base");t=e&&e.getAttribute("href")||"/",t=t.replace(/^\w+:\/\/[^\/]+/,"")}else t="/";return t[0]!=="/"&&t[0]!=="#"&&(t="/"+t),Q5e(t)}const X5e=/^[^#]+#/;function G5e(t,e){return t.replace(X5e,"#")+e}function K5e(t,e){const o=document.documentElement.getBoundingClientRect(),f=t.getBoundingClientRect();return{behavior:e.behavior,left:f.left-o.left-(e.left||0),top:f.top-o.top-(e.top||0)}}const qZ=()=>({left:window.pageXOffset,top:window.pageYOffset});function J5e(t){let e;if("el"in t){const o=t.el,f=typeof o=="string"&&o.startsWith("#"),P=typeof o=="string"?f?document.getElementById(o.slice(1)):document.querySelector(o):o;if(!P)return;e=K5e(P,t)}else e=t;"scrollBehavior"in document.documentElement.style?window.scrollTo(e):window.scrollTo(e.left!=null?e.left:window.pageXOffset,e.top!=null?e.top:window.pageYOffset)}function ohe(t,e){return(history.state?history.state.position-e:-1)+t}const Mae=new Map;function eke(t,e){Mae.set(t,e)}function tke(t){const e=Mae.get(t);return Mae.delete(t),e}let nke=()=>location.protocol+"//"+location.host;function dve(t,e){const{pathname:o,search:f,hash:P}=e,d=t.indexOf("#");if(d>-1){let n=P.includes(t.slice(d))?t.slice(d).length:1,c=P.slice(n);return c[0]!=="/"&&(c="/"+c),nhe(c,"")}return nhe(o,t)+f+P}function rke(t,e,o,f){let P=[],d=[],l=null;const n=({state:w})=>{const y=dve(t,location),p=o.value,a=e.value;let u=0;if(w){if(o.value=y,e.value=w,l&&l===p){l=null;return}u=a?w.position-a.position:0}else f(y);P.forEach(h=>{h(o.value,p,{delta:u,type:AI.pop,direction:u?u>0?sI.forward:sI.back:sI.unknown})})};function c(){l=o.value}function b(w){P.push(w);const y=()=>{const p=P.indexOf(w);p>-1&&P.splice(p,1)};return d.push(y),y}function i(){const{history:w}=window;w.state&&w.replaceState($u({},w.state,{scroll:qZ()}),"")}function O(){for(const w of d)w();d=[],window.removeEventListener("popstate",n),window.removeEventListener("beforeunload",i)}return window.addEventListener("popstate",n),window.addEventListener("beforeunload",i,{passive:!0}),{pauseListeners:c,listen:b,destroy:O}}function ihe(t,e,o,f=!1,P=!1){return{back:t,current:e,forward:o,replaced:f,position:window.history.length,scroll:P?qZ():null}}function oke(t){const{history:e,location:o}=window,f={value:dve(t,o)},P={value:e.state};P.value||d(f.value,{back:null,current:f.value,forward:null,position:e.length-1,replaced:!0,scroll:null},!0);function d(c,b,i){const O=t.indexOf("#"),w=O>-1?(o.host&&document.querySelector("base")?t:t.slice(O))+c:nke()+t+c;try{e[i?"replaceState":"pushState"](b,"",w),P.value=b}catch(y){console.error(y),o[i?"replace":"assign"](w)}}function l(c,b){const i=$u({},e.state,ihe(P.value.back,c,P.value.forward,!0),b,{position:P.value.position});d(c,i,!0),f.value=c}function n(c,b){const i=$u({},P.value,e.state,{forward:c,scroll:qZ()});d(i.current,i,!0);const O=$u({},ihe(f.value,c,null),{position:i.position+1},b);d(c,O,!1),f.value=c}return{location:f,state:P,push:n,replace:l}}function ike(t){t=Y5e(t);const e=oke(t),o=rke(t,e.state,e.location,e.replace);function f(d,l=!0){l||o.pauseListeners(),history.go(d)}const P=$u({location:"",base:t,go:f,createHref:G5e.bind(null,t)},e,o);return Object.defineProperty(P,"location",{enumerable:!0,get:()=>e.location.value}),Object.defineProperty(P,"state",{enumerable:!0,get:()=>e.state.value}),P}function ake(t){return typeof t=="string"||t&&typeof t=="object"}function hve(t){return typeof t=="string"||typeof t=="symbol"}const z4={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},pve=Symbol("");var ahe;(function(t){t[t.aborted=4]="aborted",t[t.cancelled=8]="cancelled",t[t.duplicated=16]="duplicated"})(ahe||(ahe={}));function cM(t,e){return $u(new Error,{type:t,[pve]:!0},e)}function yO(t,e){return t instanceof Error&&pve in t&&(e==null||!!(t.type&e))}const she="[^/]+?",ske={sensitive:!1,strict:!1,start:!0,end:!0},lke=/[.+*?^${}()[\]/\\]/g;function cke(t,e){const o=$u({},ske,e),f=[];let P=o.start?"^":"";const d=[];for(const b of t){const i=b.length?[]:[90];o.strict&&!b.length&&(P+="/");for(let O=0;Oe.length?e.length===1&&e[0]===40+40?1:-1:0}function fke(t,e){let o=0;const f=t.score,P=e.score;for(;o0&&e[e.length-1]<0}const dke={type:0,value:""},hke=/[a-zA-Z0-9_]/;function pke(t){if(!t)return[[]];if(t==="/")return[[dke]];if(!t.startsWith("/"))throw new Error(`Invalid path "${t}"`);function e(y){throw new Error(`ERR (${o})/"${b}": ${y}`)}let o=0,f=o;const P=[];let d;function l(){d&&P.push(d),d=[]}let n=0,c,b="",i="";function O(){b&&(o===0?d.push({type:0,value:b}):o===1||o===2||o===3?(d.length>1&&(c==="*"||c==="+")&&e(`A repeatable param (${b}) must be alone in its segment. eg: '/:ids+.`),d.push({type:1,value:b,regexp:i,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):e("Invalid state to consume buffer"),b="")}function w(){b+=c}for(;n{l(m)}:aI}function l(i){if(hve(i)){const O=f.get(i);O&&(f.delete(i),o.splice(o.indexOf(O),1),O.children.forEach(l),O.alias.forEach(l))}else{const O=o.indexOf(i);O>-1&&(o.splice(O,1),i.record.name&&f.delete(i.record.name),i.children.forEach(l),i.alias.forEach(l))}}function n(){return o}function c(i){let O=0;for(;O=0&&(i.record.path!==o[O].record.path||!mve(i,o[O]));)O++;o.splice(O,0,i),i.record.name&&!uhe(i)&&f.set(i.record.name,i)}function b(i,O){let w,y={},p,a;if("name"in i&&i.name){if(w=f.get(i.name),!w)throw cM(1,{location:i});a=w.record.name,y=$u(che(O.params,w.keys.filter(m=>!m.optional).map(m=>m.name)),i.params&&che(i.params,w.keys.map(m=>m.name))),p=w.stringify(y)}else if("path"in i)p=i.path,w=o.find(m=>m.re.test(p)),w&&(y=w.parse(p),a=w.record.name);else{if(w=O.name?f.get(O.name):o.find(m=>m.re.test(O.path)),!w)throw cM(1,{location:i,currentLocation:O});a=w.record.name,y=$u({},O.params,i.params),p=w.stringify(y)}const u=[];let h=w;for(;h;)u.unshift(h.record),h=h.parent;return{name:a,path:p,params:y,matched:u,meta:bke(u)}}return t.forEach(i=>d(i)),{addRoute:d,resolve:b,removeRoute:l,getRoutes:n,getRecordMatcher:P}}function che(t,e){const o={};for(const f of e)f in t&&(o[f]=t[f]);return o}function vke(t){return{path:t.path,redirect:t.redirect,name:t.name,meta:t.meta||{},aliasOf:void 0,beforeEnter:t.beforeEnter,props:yke(t),children:t.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in t?t.components||null:t.component&&{default:t.component}}}function yke(t){const e={},o=t.props||!1;if("component"in t)e.default=o;else for(const f in t.components)e[f]=typeof o=="object"?o[f]:o;return e}function uhe(t){for(;t;){if(t.record.aliasOf)return!0;t=t.parent}return!1}function bke(t){return t.reduce((e,o)=>$u(e,o.meta),{})}function fhe(t,e){const o={};for(const f in t)o[f]=f in e?e[f]:t[f];return o}function mve(t,e){return e.children.some(o=>o===t||mve(t,o))}const gve=/#/g,xke=/&/g,_ke=/\//g,wke=/=/g,Oke=/\?/g,vve=/\+/g,Ske=/%5B/g,kke=/%5D/g,yve=/%5E/g,Tke=/%60/g,bve=/%7B/g,Cke=/%7C/g,xve=/%7D/g,Ake=/%20/g;function Yle(t){return encodeURI(""+t).replace(Cke,"|").replace(Ske,"[").replace(kke,"]")}function Mke(t){return Yle(t).replace(bve,"{").replace(xve,"}").replace(yve,"^")}function Eae(t){return Yle(t).replace(vve,"%2B").replace(Ake,"+").replace(gve,"%23").replace(xke,"%26").replace(Tke,"`").replace(bve,"{").replace(xve,"}").replace(yve,"^")}function Eke(t){return Eae(t).replace(wke,"%3D")}function Pke(t){return Yle(t).replace(gve,"%23").replace(Oke,"%3F")}function Rke(t){return t==null?"":Pke(t).replace(_ke,"%2F")}function BH(t){try{return decodeURIComponent(""+t)}catch{}return""+t}function Lke(t){const e={};if(t===""||t==="?")return e;const f=(t[0]==="?"?t.slice(1):t).split("&");for(let P=0;Pd&&Eae(d)):[f&&Eae(f)]).forEach(d=>{d!==void 0&&(e+=(e.length?"&":"")+o,d!=null&&(e+="="+d))})}return e}function Ike(t){const e={};for(const o in t){const f=t[o];f!==void 0&&(e[o]=bx(f)?f.map(P=>P==null?null:""+P):f==null?f:""+f)}return e}const Dke=Symbol(""),hhe=Symbol(""),Xle=Symbol(""),Gle=Symbol(""),Pae=Symbol("");function LL(){let t=[];function e(f){return t.push(f),()=>{const P=t.indexOf(f);P>-1&&t.splice(P,1)}}function o(){t=[]}return{add:e,list:()=>t.slice(),reset:o}}function U4(t,e,o,f,P){const d=f&&(f.enterCallbacks[P]=f.enterCallbacks[P]||[]);return()=>new Promise((l,n)=>{const c=O=>{O===!1?n(cM(4,{from:o,to:e})):O instanceof Error?n(O):ake(O)?n(cM(2,{from:e,to:O})):(d&&f.enterCallbacks[P]===d&&typeof O=="function"&&d.push(O),l())},b=t.call(f&&f.instances[P],e,o,c);let i=Promise.resolve(b);t.length<3&&(i=i.then(c)),i.catch(O=>n(O))})}function lie(t,e,o,f){const P=[];for(const d of t)for(const l in d.components){let n=d.components[l];if(!(e!=="beforeRouteEnter"&&!d.instances[l]))if(Bke(n)){const b=(n.__vccOpts||n)[e];b&&P.push(U4(b,o,f,d,l))}else{let c=n();P.push(()=>c.then(b=>{if(!b)return Promise.reject(new Error(`Couldn't resolve component "${l}" at "${d.path}"`));const i=U5e(b)?b.default:b;d.components[l]=i;const w=(i.__vccOpts||i)[e];return w&&U4(w,o,f,d,l)()}))}}return P}function Bke(t){return typeof t=="object"||"displayName"in t||"props"in t||"__vccOpts"in t}function phe(t){const e=yl(Xle),o=yl(Gle),f=Un(()=>e.resolve(wa(t.to))),P=Un(()=>{const{matched:c}=f.value,{length:b}=c,i=c[b-1],O=o.matched;if(!i||!O.length)return-1;const w=O.findIndex(lM.bind(null,i));if(w>-1)return w;const y=mhe(c[b-2]);return b>1&&mhe(i)===y&&O[O.length-1].path!==y?O.findIndex(lM.bind(null,c[b-2])):w}),d=Un(()=>P.value>-1&&$ke(o.params,f.value.params)),l=Un(()=>P.value>-1&&P.value===o.matched.length-1&&fve(o.params,f.value.params));function n(c={}){return Nke(c)?e[wa(t.replace)?"replace":"push"](wa(t.to)).catch(aI):Promise.resolve()}return{route:f,href:Un(()=>f.value.href),isActive:d,isExactActive:l,navigate:n}}const zke=Hg({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:phe,setup(t,{slots:e}){const o=lm(phe(t)),{options:f}=yl(Xle),P=Un(()=>({[ghe(t.activeClass,f.linkActiveClass,"router-link-active")]:o.isActive,[ghe(t.exactActiveClass,f.linkExactActiveClass,"router-link-exact-active")]:o.isExactActive}));return()=>{const d=e.default&&e.default(o);return t.custom?d:w1("a",{"aria-current":o.isExactActive?t.ariaCurrentValue:null,href:o.href,onClick:o.navigate,class:P.value},d)}}}),Fke=zke;function Nke(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&!(t.button!==void 0&&t.button!==0)){if(t.currentTarget&&t.currentTarget.getAttribute){const e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function $ke(t,e){for(const o in e){const f=e[o],P=t[o];if(typeof f=="string"){if(f!==P)return!1}else if(!bx(P)||P.length!==f.length||f.some((d,l)=>d!==P[l]))return!1}return!0}function mhe(t){return t?t.aliasOf?t.aliasOf.path:t.path:""}const ghe=(t,e,o)=>t??e??o,Vke=Hg({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(t,{attrs:e,slots:o}){const f=yl(Pae),P=Un(()=>t.route||f.value),d=yl(hhe,0),l=Un(()=>{let b=wa(d);const{matched:i}=P.value;let O;for(;(O=i[b])&&!O.components;)b++;return b}),n=Un(()=>P.value.matched[l.value]);gf(hhe,Un(()=>l.value+1)),gf(Dke,n),gf(Pae,P);const c=ti();return Ni(()=>[c.value,n.value,t.name],([b,i,O],[w,y,p])=>{i&&(i.instances[O]=b,y&&y!==i&&b&&b===w&&(i.leaveGuards.size||(i.leaveGuards=y.leaveGuards),i.updateGuards.size||(i.updateGuards=y.updateGuards))),b&&i&&(!y||!lM(i,y)||!w)&&(i.enterCallbacks[O]||[]).forEach(a=>a(b))},{flush:"post"}),()=>{const b=P.value,i=t.name,O=n.value,w=O&&O.components[i];if(!w)return vhe(o.default,{Component:w,route:b});const y=O.props[i],p=y?y===!0?b.params:typeof y=="function"?y(b):y:null,u=w1(w,$u({},p,e,{onVnodeUnmounted:h=>{h.component.isUnmounted&&(O.instances[i]=null)},ref:c}));return vhe(o.default,{Component:u,route:b})||u}}});function vhe(t,e){if(!t)return null;const o=t(e);return o.length===1?o[0]:o}const Uke=Vke;function jke(t){const e=gke(t.routes,t),o=t.parseQuery||Lke,f=t.stringifyQuery||dhe,P=t.history,d=LL(),l=LL(),n=LL(),c=Ai(z4);let b=z4;zA&&t.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const i=aie.bind(null,q=>""+q),O=aie.bind(null,Rke),w=aie.bind(null,BH);function y(q,Y){let ee,me;return hve(q)?(ee=e.getRecordMatcher(q),me=Y):me=q,e.addRoute(me,ee)}function p(q){const Y=e.getRecordMatcher(q);Y&&e.removeRoute(Y)}function a(){return e.getRoutes().map(q=>q.record)}function u(q){return!!e.getRecordMatcher(q)}function h(q,Y){if(Y=$u({},Y||c.value),typeof q=="string"){const ce=sie(o,q,Y.path),de=e.resolve({path:ce.path},Y),ve=P.createHref(ce.fullPath);return $u(ce,de,{params:w(de.params),hash:BH(ce.hash),redirectedFrom:void 0,href:ve})}let ee;if("path"in q)ee=$u({},q,{path:sie(o,q.path,Y.path).path});else{const ce=$u({},q.params);for(const de in ce)ce[de]==null&&delete ce[de];ee=$u({},q,{params:O(ce)}),Y.params=O(Y.params)}const me=e.resolve(ee,Y),he=q.hash||"";me.params=i(w(me.params));const se=H5e(f,$u({},q,{hash:Mke(he),path:me.path})),ae=P.createHref(se);return $u({fullPath:se,hash:he,query:f===dhe?Ike(q.query):q.query||{}},me,{redirectedFrom:void 0,href:ae})}function m(q){return typeof q=="string"?sie(o,q,c.value.path):$u({},q)}function v(q,Y){if(b!==q)return cM(8,{from:Y,to:q})}function _(q){return x(q)}function S(q){return _($u(m(q),{replace:!0}))}function A(q){const Y=q.matched[q.matched.length-1];if(Y&&Y.redirect){const{redirect:ee}=Y;let me=typeof ee=="function"?ee(q):ee;return typeof me=="string"&&(me=me.includes("?")||me.includes("#")?me=m(me):{path:me},me.params={}),$u({query:q.query,hash:q.hash,params:"path"in me?{}:q.params},me)}}function x(q,Y){const ee=b=h(q),me=c.value,he=q.state,se=q.force,ae=q.replace===!0,ce=A(ee);if(ce)return x($u(m(ce),{state:typeof ce=="object"?$u({},he,ce.state):he,force:se,replace:ae}),Y||ee);const de=ee;de.redirectedFrom=Y;let ve;return!se&&Z5e(f,me,ee)&&(ve=cM(16,{to:de,from:me}),U(me,me,!0,!1)),(ve?Promise.resolve(ve):T(de,me)).catch(ye=>yO(ye)?yO(ye,2)?ye:j(ye):$(ye,de,me)).then(ye=>{if(ye){if(yO(ye,2))return x($u({replace:ae},m(ye.to),{state:typeof ye.to=="object"?$u({},he,ye.to.state):he,force:se}),Y||de)}else ye=C(de,me,!0,ae,he);return E(de,me,ye),ye})}function R(q,Y){const ee=v(q,Y);return ee?Promise.reject(ee):Promise.resolve()}function M(q){const Y=W.values().next().value;return Y&&typeof Y.runWithContext=="function"?Y.runWithContext(q):q()}function T(q,Y){let ee;const[me,he,se]=Qke(q,Y);ee=lie(me.reverse(),"beforeRouteLeave",q,Y);for(const ce of me)ce.leaveGuards.forEach(de=>{ee.push(U4(de,q,Y))});const ae=R.bind(null,q,Y);return ee.push(ae),oe(ee).then(()=>{ee=[];for(const ce of d.list())ee.push(U4(ce,q,Y));return ee.push(ae),oe(ee)}).then(()=>{ee=lie(he,"beforeRouteUpdate",q,Y);for(const ce of he)ce.updateGuards.forEach(de=>{ee.push(U4(de,q,Y))});return ee.push(ae),oe(ee)}).then(()=>{ee=[];for(const ce of se)if(ce.beforeEnter)if(bx(ce.beforeEnter))for(const de of ce.beforeEnter)ee.push(U4(de,q,Y));else ee.push(U4(ce.beforeEnter,q,Y));return ee.push(ae),oe(ee)}).then(()=>(q.matched.forEach(ce=>ce.enterCallbacks={}),ee=lie(se,"beforeRouteEnter",q,Y),ee.push(ae),oe(ee))).then(()=>{ee=[];for(const ce of l.list())ee.push(U4(ce,q,Y));return ee.push(ae),oe(ee)}).catch(ce=>yO(ce,8)?ce:Promise.reject(ce))}function E(q,Y,ee){n.list().forEach(me=>M(()=>me(q,Y,ee)))}function C(q,Y,ee,me,he){const se=v(q,Y);if(se)return se;const ae=Y===z4,ce=zA?history.state:{};ee&&(me||ae?P.replace(q.fullPath,$u({scroll:ae&&ce&&ce.scroll},he)):P.push(q.fullPath,he)),c.value=q,U(q,Y,ee,ae),j()}let L;function D(){L||(L=P.listen((q,Y,ee)=>{if(!K.listening)return;const me=h(q),he=A(me);if(he){x($u(he,{replace:!0}),me).catch(aI);return}b=me;const se=c.value;zA&&eke(ohe(se.fullPath,ee.delta),qZ()),T(me,se).catch(ae=>yO(ae,12)?ae:yO(ae,2)?(x(ae.to,me).then(ce=>{yO(ce,20)&&!ee.delta&&ee.type===AI.pop&&P.go(-1,!1)}).catch(aI),Promise.reject()):(ee.delta&&P.go(-ee.delta,!1),$(ae,me,se))).then(ae=>{ae=ae||C(me,se,!1),ae&&(ee.delta&&!yO(ae,8)?P.go(-ee.delta,!1):ee.type===AI.pop&&yO(ae,20)&&P.go(-1,!1)),E(me,se,ae)}).catch(aI)}))}let k=LL(),I=LL(),z;function $(q,Y,ee){j(q);const me=I.list();return me.length?me.forEach(he=>he(q,Y,ee)):console.error(q),Promise.reject(q)}function Q(){return z&&c.value!==z4?Promise.resolve():new Promise((q,Y)=>{k.add([q,Y])})}function j(q){return z||(z=!q,D(),k.list().forEach(([Y,ee])=>q?ee(q):Y()),k.reset()),q}function U(q,Y,ee,me){const{scrollBehavior:he}=t;if(!zA||!he)return Promise.resolve();const se=!ee&&tke(ohe(q.fullPath,0))||(me||!ee)&&history.state&&history.state.scroll||null;return lc().then(()=>he(q,Y,se)).then(ae=>ae&&J5e(ae)).catch(ae=>$(ae,q,Y))}const X=q=>P.go(q);let te;const W=new Set,K={currentRoute:c,listening:!0,addRoute:y,removeRoute:p,hasRoute:u,getRoutes:a,resolve:h,options:t,push:_,replace:S,go:X,back:()=>X(-1),forward:()=>X(1),beforeEach:d.add,beforeResolve:l.add,afterEach:n.add,onError:I.add,isReady:Q,install(q){const Y=this;q.component("RouterLink",Fke),q.component("RouterView",Uke),q.config.globalProperties.$router=Y,Object.defineProperty(q.config.globalProperties,"$route",{enumerable:!0,get:()=>wa(c)}),zA&&!te&&c.value===z4&&(te=!0,_(P.location).catch(he=>{}));const ee={};for(const he in z4)Object.defineProperty(ee,he,{get:()=>c.value[he],enumerable:!0});q.provide(Xle,Y),q.provide(Gle,w1e(ee)),q.provide(Pae,c);const me=q.unmount;W.add(q),q.unmount=function(){W.delete(q),W.size<1&&(b=z4,L&&L(),L=null,c.value=z4,te=!1,z=!1),me()}}};function oe(q){return q.reduce((Y,ee)=>Y.then(()=>M(ee)),Promise.resolve())}return K}function Qke(t,e){const o=[],f=[],P=[],d=Math.max(e.matched.length,t.matched.length);for(let l=0;llM(b,n))?f.push(n):o.push(n));const c=t.matched[l];c&&(e.matched.find(b=>lM(b,c))||P.push(c))}return[o,f,P]}function _T(){return yl(Gle)}function Hke(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var _ve={exports:{}};(function(t,e){/*! For license information please see plotly.min.js.LICENSE.txt */(function(o,f){t.exports=f()})(self,function(){return function(){var o={79288:function(d,l,n){var c=n(3400),b={"X,X div":'direction:ltr;font-family:"Open Sans",verdana,arial,sans-serif;margin:0;padding:0;',"X input,X button":'font-family:"Open Sans",verdana,arial,sans-serif;',"X input:focus,X button:focus":"outline:none;","X a":"text-decoration:none;","X a:hover":"text-decoration:none;","X .crisp":"shape-rendering:crispEdges;","X .user-select-none":"-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;","X svg":"overflow:hidden;","X svg a":"fill:#447adb;","X svg a:hover":"fill:#3c6dc5;","X .main-svg":"position:absolute;top:0;left:0;pointer-events:none;","X .main-svg .draglayer":"pointer-events:all;","X .cursor-default":"cursor:default;","X .cursor-pointer":"cursor:pointer;","X .cursor-crosshair":"cursor:crosshair;","X .cursor-move":"cursor:move;","X .cursor-col-resize":"cursor:col-resize;","X .cursor-row-resize":"cursor:row-resize;","X .cursor-ns-resize":"cursor:ns-resize;","X .cursor-ew-resize":"cursor:ew-resize;","X .cursor-sw-resize":"cursor:sw-resize;","X .cursor-s-resize":"cursor:s-resize;","X .cursor-se-resize":"cursor:se-resize;","X .cursor-w-resize":"cursor:w-resize;","X .cursor-e-resize":"cursor:e-resize;","X .cursor-nw-resize":"cursor:nw-resize;","X .cursor-n-resize":"cursor:n-resize;","X .cursor-ne-resize":"cursor:ne-resize;","X .cursor-grab":"cursor:-webkit-grab;cursor:grab;","X .modebar":"position:absolute;top:2px;right:2px;","X .ease-bg":"-webkit-transition:background-color .3s ease 0s;-moz-transition:background-color .3s ease 0s;-ms-transition:background-color .3s ease 0s;-o-transition:background-color .3s ease 0s;transition:background-color .3s ease 0s;","X .modebar--hover>:not(.watermark)":"opacity:0;-webkit-transition:opacity .3s ease 0s;-moz-transition:opacity .3s ease 0s;-ms-transition:opacity .3s ease 0s;-o-transition:opacity .3s ease 0s;transition:opacity .3s ease 0s;","X:hover .modebar--hover .modebar-group":"opacity:1;","X .modebar-group":"float:left;display:inline-block;box-sizing:border-box;padding-left:8px;position:relative;vertical-align:middle;white-space:nowrap;","X .modebar-btn":"position:relative;font-size:16px;padding:3px 4px;height:22px;cursor:pointer;line-height:normal;box-sizing:border-box;","X .modebar-btn svg":"position:relative;top:2px;","X .modebar.vertical":"display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-end;max-height:100%;","X .modebar.vertical svg":"top:-1px;","X .modebar.vertical .modebar-group":"display:block;float:none;padding-left:0px;padding-bottom:8px;","X .modebar.vertical .modebar-group .modebar-btn":"display:block;text-align:center;","X [data-title]:before,X [data-title]:after":"position:absolute;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);display:none;opacity:0;z-index:1001;pointer-events:none;top:110%;right:50%;","X [data-title]:hover:before,X [data-title]:hover:after":"display:block;opacity:1;","X [data-title]:before":'content:"";position:absolute;background:rgba(0,0,0,0);border:6px solid rgba(0,0,0,0);z-index:1002;margin-top:-12px;border-bottom-color:#69738a;margin-right:-6px;',"X [data-title]:after":"content:attr(data-title);background:#69738a;color:#fff;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;margin-right:-18px;border-radius:2px;","X .vertical [data-title]:before,X .vertical [data-title]:after":"top:0%;right:200%;","X .vertical [data-title]:before":"border:6px solid rgba(0,0,0,0);border-left-color:#69738a;margin-top:8px;margin-right:-30px;",Y:'font-family:"Open Sans",verdana,arial,sans-serif;position:fixed;top:50px;right:20px;z-index:10000;font-size:10pt;max-width:180px;',"Y p":"margin:0;","Y .notifier-note":"min-width:180px;max-width:250px;border:1px solid #fff;z-index:3000;margin:0;background-color:#8c97af;background-color:rgba(140,151,175,.9);color:#fff;padding:10px;overflow-wrap:break-word;word-wrap:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;","Y .notifier-close":"color:#fff;opacity:.8;float:right;padding:0 5px;background:none;border:none;font-size:20px;font-weight:bold;line-height:20px;","Y .notifier-close:hover":"color:#444;text-decoration:none;cursor:pointer;"};for(var i in b){var O=i.replace(/^,/," ,").replace(/X/g,".js-plotly-plot .plotly").replace(/Y/g,".plotly-notifier");c.addStyleRule(O,b[i])}},86712:function(d,l,n){d.exports=n(84224)},37240:function(d,l,n){d.exports=n(51132)},29744:function(d,l,n){d.exports=n(94456)},29352:function(d,l,n){d.exports=n(67244)},96144:function(d,l,n){d.exports=n(97776)},53219:function(d,l,n){d.exports=n(61712)},4624:function(d,l,n){d.exports=n(95856)},54543:function(d,l,n){d.exports=n(54272)},45e3:function(d,l,n){d.exports=n(85404)},62300:function(d,l,n){d.exports=n(26048)},6920:function(d,l,n){d.exports=n(66240)},10264:function(d,l,n){d.exports=n(40448)},32016:function(d,l,n){d.exports=n(64884)},27528:function(d,l,n){d.exports=n(15088)},75556:function(d,l,n){d.exports=n(76744)},39204:function(d,l,n){d.exports=n(94704)},73996:function(d,l,n){d.exports=n(62396)},16489:function(d,l,n){d.exports=n(32028)},5e3:function(d,l,n){d.exports=n(81932)},77280:function(d,l,n){d.exports=n(45536)},33992:function(d,l,n){d.exports=n(42600)},17600:function(d,l,n){d.exports=n(21536)},49116:function(d,l,n){d.exports=n(65664)},46808:function(d,l,n){d.exports=n(29044)},36168:function(d,l,n){d.exports=n(48928)},13792:function(d,l,n){var c=n(32016);c.register([n(37240),n(29352),n(5e3),n(33992),n(17600),n(49116),n(6920),n(67484),n(79440),n(39204),n(83096),n(36168),n(20260),n(63560),n(65832),n(46808),n(73996),n(48824),n(89904),n(25120),n(13752),n(4340),n(62300),n(29800),n(8363),n(54543),n(86636),n(42192),n(32140),n(77280),n(89296),n(56816),n(70192),n(45e3),n(27528),n(84764),n(3920),n(50248),n(4624),n(69967),n(10264),n(86152),n(53219),n(81604),n(63796),n(29744),n(89336),n(86712),n(75556),n(16489),n(97312),n(96144)]),d.exports=c},3920:function(d,l,n){d.exports=n(43480)},25120:function(d,l,n){d.exports=n(6296)},4340:function(d,l,n){d.exports=n(7404)},86152:function(d,l,n){d.exports=n(65456)},56816:function(d,l,n){d.exports=n(22020)},89296:function(d,l,n){d.exports=n(29928)},20260:function(d,l,n){d.exports=n(75792)},32140:function(d,l,n){d.exports=n(156)},84764:function(d,l,n){d.exports=n(45499)},48824:function(d,l,n){d.exports=n(3296)},69967:function(d,l,n){d.exports=n(4184)},8363:function(d,l,n){d.exports=n(36952)},86636:function(d,l,n){d.exports=n(38983)},70192:function(d,l,n){d.exports=n(11572)},81604:function(d,l,n){d.exports=n(76924)},63796:function(d,l,n){d.exports=n(62944)},89336:function(d,l,n){d.exports=n(95443)},67484:function(d,l,n){d.exports=n(34864)},97312:function(d,l,n){d.exports=n(76272)},42192:function(d,l,n){d.exports=n(97924)},29800:function(d,l,n){d.exports=n(15436)},63560:function(d,l,n){d.exports=n(5621)},89904:function(d,l,n){d.exports=n(91304)},50248:function(d,l,n){d.exports=n(41724)},65832:function(d,l,n){d.exports=n(31991)},79440:function(d,l,n){d.exports=n(22869)},13752:function(d,l,n){d.exports=n(67776)},83096:function(d,l,n){d.exports=n(95952)},72196:function(d){d.exports=[{path:"",backoff:0},{path:"M-2.4,-3V3L0.6,0Z",backoff:.6},{path:"M-3.7,-2.5V2.5L1.3,0Z",backoff:1.3},{path:"M-4.45,-3L-1.65,-0.2V0.2L-4.45,3L1.55,0Z",backoff:1.55},{path:"M-2.2,-2.2L-0.2,-0.2V0.2L-2.2,2.2L-1.4,3L1.6,0L-1.4,-3Z",backoff:1.6},{path:"M-4.4,-2.1L-0.6,-0.2V0.2L-4.4,2.1L-4,3L2,0L-4,-3Z",backoff:2},{path:"M2,0A2,2 0 1,1 0,-2A2,2 0 0,1 2,0Z",backoff:0,noRotate:!0},{path:"M2,2V-2H-2V2Z",backoff:0,noRotate:!0}]},13916:function(d,l,n){var c=n(72196),b=n(25376),i=n(33816),O=n(31780).templatedArray;n(36208),d.exports=O("annotation",{visible:{valType:"boolean",dflt:!0,editType:"calc+arraydraw"},text:{valType:"string",editType:"calc+arraydraw"},textangle:{valType:"angle",dflt:0,editType:"calc+arraydraw"},font:b({editType:"calc+arraydraw",colorEditType:"arraydraw"}),width:{valType:"number",min:1,dflt:null,editType:"calc+arraydraw"},height:{valType:"number",min:1,dflt:null,editType:"calc+arraydraw"},opacity:{valType:"number",min:0,max:1,dflt:1,editType:"arraydraw"},align:{valType:"enumerated",values:["left","center","right"],dflt:"center",editType:"arraydraw"},valign:{valType:"enumerated",values:["top","middle","bottom"],dflt:"middle",editType:"arraydraw"},bgcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},bordercolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},borderpad:{valType:"number",min:0,dflt:1,editType:"calc+arraydraw"},borderwidth:{valType:"number",min:0,dflt:1,editType:"calc+arraydraw"},showarrow:{valType:"boolean",dflt:!0,editType:"calc+arraydraw"},arrowcolor:{valType:"color",editType:"arraydraw"},arrowhead:{valType:"integer",min:0,max:c.length,dflt:1,editType:"arraydraw"},startarrowhead:{valType:"integer",min:0,max:c.length,dflt:1,editType:"arraydraw"},arrowside:{valType:"flaglist",flags:["end","start"],extras:["none"],dflt:"end",editType:"arraydraw"},arrowsize:{valType:"number",min:.3,dflt:1,editType:"calc+arraydraw"},startarrowsize:{valType:"number",min:.3,dflt:1,editType:"calc+arraydraw"},arrowwidth:{valType:"number",min:.1,editType:"calc+arraydraw"},standoff:{valType:"number",min:0,dflt:0,editType:"calc+arraydraw"},startstandoff:{valType:"number",min:0,dflt:0,editType:"calc+arraydraw"},ax:{valType:"any",editType:"calc+arraydraw"},ay:{valType:"any",editType:"calc+arraydraw"},axref:{valType:"enumerated",dflt:"pixel",values:["pixel",i.idRegex.x.toString()],editType:"calc"},ayref:{valType:"enumerated",dflt:"pixel",values:["pixel",i.idRegex.y.toString()],editType:"calc"},xref:{valType:"enumerated",values:["paper",i.idRegex.x.toString()],editType:"calc"},x:{valType:"any",editType:"calc+arraydraw"},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"auto",editType:"calc+arraydraw"},xshift:{valType:"number",dflt:0,editType:"calc+arraydraw"},yref:{valType:"enumerated",values:["paper",i.idRegex.y.toString()],editType:"calc"},y:{valType:"any",editType:"calc+arraydraw"},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"auto",editType:"calc+arraydraw"},yshift:{valType:"number",dflt:0,editType:"calc+arraydraw"},clicktoshow:{valType:"enumerated",values:[!1,"onoff","onout"],dflt:!1,editType:"arraydraw"},xclick:{valType:"any",editType:"arraydraw"},yclick:{valType:"any",editType:"arraydraw"},hovertext:{valType:"string",editType:"arraydraw"},hoverlabel:{bgcolor:{valType:"color",editType:"arraydraw"},bordercolor:{valType:"color",editType:"arraydraw"},font:b({editType:"arraydraw"}),editType:"arraydraw"},captureevents:{valType:"boolean",editType:"arraydraw"},editType:"calc",_deprecated:{ref:{valType:"string",editType:"calc"}}})},90272:function(d,l,n){var c=n(3400),b=n(54460),i=n(23816).draw;function O(y){var p=y._fullLayout;c.filterVisible(p.annotations).forEach(function(a){var u=b.getFromId(y,a.xref),h=b.getFromId(y,a.yref),m=b.getRefType(a.xref),v=b.getRefType(a.yref);a._extremes={},m==="range"&&w(a,u),v==="range"&&w(a,h)})}function w(y,p){var a,u=p._id,h=u.charAt(0),m=y[h],v=y["a"+h],_=y[h+"ref"],S=y["a"+h+"ref"],A=y["_"+h+"padplus"],x=y["_"+h+"padminus"],R={x:1,y:-1}[h]*y[h+"shift"],M=3*y.arrowsize*y.arrowwidth||0,T=M+R,E=M-R,C=3*y.startarrowsize*y.arrowwidth||0,L=C+R,D=C-R;if(S===_){var k=b.findExtremes(p,[p.r2c(m)],{ppadplus:T,ppadminus:E}),I=b.findExtremes(p,[p.r2c(v)],{ppadplus:Math.max(A,L),ppadminus:Math.max(x,D)});a={min:[k.min[0],I.min[0]],max:[k.max[0],I.max[0]]}}else L=v?L+v:L,D=v?D-v:D,a=b.findExtremes(p,[p.r2c(m)],{ppadplus:Math.max(A,T,L),ppadminus:Math.max(x,E,D)});y._extremes[u]=a}d.exports=function(y){var p=y._fullLayout;if(c.filterVisible(p.annotations).length&&y._fullData.length)return c.syncOrAsync([i,O],y)}},42300:function(d,l,n){var c=n(3400),b=n(24040),i=n(31780).arrayEditor;function O(y,p){var a,u,h,m,v,_,S,A=y._fullLayout.annotations,x=[],R=[],M=[],T=(p||[]).length;for(a=0;a0||a.explicitOff.length>0},onClick:function(y,p){var a,u,h=O(y,p),m=h.on,v=h.off.concat(h.explicitOff),_={},S=y._fullLayout.annotations;if(m.length||v.length){for(a=0;a.6666666666666666?"right":"center"),{center:0,middle:0,left:.5,bottom:-.5,right:-.5,top:.5}[Qt]}for(var tt=!1,Ee=["x","y"],Ne=0;Ne1)&&(Dt===wt?((mn=It.r2fraction(T["a"+pt]))<0||mn>1)&&(tt=!0):tt=!0),je=It._offset+It.r2p(T[pt]),Ge=.5}else{var vt=bn==="domain";pt==="x"?(ot=T[pt],je=vt?It._offset+It._length*ot:je=$.l+$.w*ot):(ot=1-T[pt],je=vt?It._offset+It._length*ot:je=$.t+$.h*ot),Ge=T.showarrow?.5:ot}if(T.showarrow){gn.head=je;var bt=T["a"+pt];if(ht=en*Xe(.5,T.xanchor)-Gt*Xe(.5,T.yanchor),Dt===wt){var lt=y.getRefType(Dt);lt==="domain"?(pt==="y"&&(bt=1-bt),gn.tail=It._offset+It._length*bt):lt==="paper"?pt==="y"?(bt=1-bt,gn.tail=$.t+$.h*bt):gn.tail=$.l+$.w*bt:gn.tail=It._offset+It.r2p(bt),nt=ht}else gn.tail=je+bt,nt=ht+bt;gn.text=gn.tail+ht;var yt=z[pt==="x"?"width":"height"];if(wt==="paper"&&(gn.head=O.constrain(gn.head,1,yt-1)),Dt==="pixel"){var zt=-Math.max(gn.tail-3,gn.text),Rt=Math.min(gn.tail+3,gn.text)-yt;zt>0?(gn.tail+=zt,gn.text+=zt):Rt>0&&(gn.tail-=Rt,gn.text-=Rt)}gn.tail+=nn,gn.head+=nn}else nt=ht=Ct*Xe(Ge,_t),gn.text=je+ht;gn.text+=nn,ht+=nn,nt+=nn,T["_"+pt+"padplus"]=Ct/2+nt,T["_"+pt+"padminus"]=Ct/2-nt,T["_"+pt+"size"]=Ct,T["_"+pt+"shift"]=ht}if(tt)he.remove();else{var it=0,at=0;if(T.align!=="left"&&(it=(Le-Oe)*(T.align==="center"?.5:1)),T.valign!=="top"&&(at=(We-ke)*(T.valign==="middle"?.5:1)),Ve)He.select("svg").attr({x:ce+it-1,y:ce+at}).call(a.setClipUrl,ve?W:null,M);else{var Lt=ce+at-$e.top,xt=ce+it-$e.left;Te.call(h.positionText,xt,Lt).call(a.setClipUrl,ve?W:null,M)}ye.select("rect").call(a.setRect,ce,ce,Le,We),de.call(a.setRect,se/2,se/2,Ue-se,Ze-se),he.call(a.setTranslate,Math.round(K.x.text-Ue/2),Math.round(K.y.text-Ze/2)),Y.attr({transform:"rotate("+oe+","+K.x.text+","+K.y.text+")"});var Zt,Xt=function(Yt,Qt){q.selectAll(".annotation-arrow-g").remove();var Pt=K.x.head,tn=K.y.head,Kt=K.x.tail+Yt,fn=K.y.tail+Qt,dn=K.x.text+Yt,vn=K.y.text+Qt,Nn=O.rotationXYMatrix(oe,dn,vn),er=O.apply2DTransform(Nn),En=O.apply2DTransform2(Nn),In=+de.attr("width"),jn=+de.attr("height"),xr=dn-.5*In,Sr=xr+In,ar=vn-.5*jn,Fn=ar+jn,ir=[[xr,ar,xr,Fn],[xr,Fn,Sr,Fn],[Sr,Fn,Sr,ar],[Sr,ar,xr,ar]].map(En);if(!ir.reduce(function(So,go){return So^!!O.segmentsIntersect(Pt,tn,Pt+1e6,tn+1e6,go[0],go[1],go[2],go[3])},!1)){ir.forEach(function(So){var go=O.segmentsIntersect(Kt,fn,Pt,tn,So[0],So[1],So[2],So[3]);go&&(Kt=go.x,fn=go.y)});var Wn=T.arrowwidth,Kn=T.arrowcolor,_r=T.arrowside,Ir=q.append("g").style({opacity:p.opacity(Kn)}).classed("annotation-arrow-g",!0),zr=Ir.append("path").attr("d","M"+Kt+","+fn+"L"+Pt+","+tn).style("stroke-width",Wn+"px").call(p.stroke,p.rgb(Kn));if(S(zr,_r,T),Q.annotationPosition&&zr.node().parentNode&&!C){var Fr=Pt,Rr=tn;if(T.standoff){var $r=Math.sqrt(Math.pow(Pt-Kt,2)+Math.pow(tn-fn,2));Fr+=T.standoff*(Kt-Pt)/$r,Rr+=T.standoff*(fn-tn)/$r}var Kr,Co,so=Ir.append("path").classed("annotation-arrow",!0).classed("anndrag",!0).classed("cursor-move",!0).attr({d:"M3,3H-3V-3H3ZM0,0L"+(Kt-Fr)+","+(fn-Rr),transform:w(Fr,Rr)}).style("stroke-width",Wn+6+"px").call(p.stroke,"rgba(0,0,0,0)").call(p.fill,"rgba(0,0,0,0)");v.init({element:so.node(),gd:M,prepFn:function(){var So=a.getTranslate(he);Kr=So.x,Co=So.y,L&&L.autorange&&U(L._name+".autorange",!0),D&&D.autorange&&U(D._name+".autorange",!0)},moveFn:function(So,go){var li=er(Kr,Co),Pn=li[0]+So,Yn=li[1]+go;he.call(a.setTranslate,Pn,Yn),X("x",x(L,So,"x",$,T)),X("y",x(D,go,"y",$,T)),T.axref===T.xref&&X("ax",x(L,So,"ax",$,T)),T.ayref===T.yref&&X("ay",x(D,go,"ay",$,T)),Ir.attr("transform",w(So,go)),Y.attr({transform:"rotate("+oe+","+Pn+","+Yn+")"})},doneFn:function(){b.call("_guiRelayout",M,te());var So=document.querySelector(".js-notes-box-panel");So&&So.redraw(So.selectedObj)}})}}};T.showarrow&&Xt(0,0),ee&&v.init({element:he.node(),gd:M,prepFn:function(){Zt=Y.attr("transform")},moveFn:function(Yt,Qt){var Pt="pointer";if(T.showarrow)T.axref===T.xref?X("ax",x(L,Yt,"ax",$,T)):X("ax",T.ax+Yt),T.ayref===T.yref?X("ay",x(D,Qt,"ay",$.w,T)):X("ay",T.ay+Qt),Xt(Yt,Qt);else{if(C)return;var tn,Kt;if(L)tn=x(L,Yt,"x",$,T);else{var fn=T._xsize/$.w,dn=T.x+(T._xshift-T.xshift)/$.w-fn/2;tn=v.align(dn+Yt/$.w,fn,0,1,T.xanchor)}if(D)Kt=x(D,Qt,"y",$,T);else{var vn=T._ysize/$.h,Nn=T.y-(T._yshift+T.yshift)/$.h-vn/2;Kt=v.align(Nn-Qt/$.h,vn,0,1,T.yanchor)}X("x",tn),X("y",Kt),L&&D||(Pt=v.getCursor(L?.5:tn,D?.5:Kt,T.xanchor,T.yanchor))}Y.attr({transform:w(Yt,Qt)+Zt}),m(he,Pt)},clickFn:function(Yt,Qt){T.captureevents&&M.emit("plotly_clickannotation",Pe(Qt))},doneFn:function(){m(he),b.call("_guiRelayout",M,te());var Yt=document.querySelector(".js-notes-box-panel");Yt&&Yt.redraw(Yt.selectedObj)}})}}}d.exports={draw:function(M){var T=M._fullLayout;T._infolayer.selectAll(".annotation").remove();for(var E=0;E=0,C=u.indexOf("end")>=0,L=x.backoff*M+h.standoff,D=R.backoff*T+h.startstandoff;if(A.nodeName==="line"){m={x:+a.attr("x1"),y:+a.attr("y1")},v={x:+a.attr("x2"),y:+a.attr("y2")};var k=m.x-v.x,I=m.y-v.y;if(S=(_=Math.atan2(I,k))+Math.PI,L&&D&&L+D>Math.sqrt(k*k+I*I))return void q();if(L){if(L*L>k*k+I*I)return void q();var z=L*Math.cos(_),$=L*Math.sin(_);v.x+=z,v.y+=$,a.attr({x2:v.x,y2:v.y})}if(D){if(D*D>k*k+I*I)return void q();var Q=D*Math.cos(_),j=D*Math.sin(_);m.x-=Q,m.y-=j,a.attr({x1:m.x,y1:m.y})}}else if(A.nodeName==="path"){var U=A.getTotalLength(),X="";if(U1){h=!0;break}}h?O.fullLayout._infolayer.select(".annotation-"+O.id+'[data-index="'+a+'"]').remove():(u._pdata=b(O.glplot.cameraParams,[w.xaxis.r2l(u.x)*y[0],w.yaxis.r2l(u.y)*y[1],w.zaxis.r2l(u.z)*y[2]]),c(O.graphDiv,u,a,O.id,u._xa,u._ya))}}},56864:function(d,l,n){var c=n(24040),b=n(3400);d.exports={moduleType:"component",name:"annotations3d",schema:{subplots:{scene:{annotations:n(45899)}}},layoutAttributes:n(45899),handleDefaults:n(52808),includeBasePlot:function(i,O){var w=c.subplotsRegistry.gl3d;if(w)for(var y=w.attrRegex,p=Object.keys(i),a=0;a=0)))return u;if(S===3)v[S]>1&&(v[S]=1);else if(v[S]>=1)return u}var A=Math.round(255*v[0])+", "+Math.round(255*v[1])+", "+Math.round(255*v[2]);return _?"rgba("+A+", "+v[3]+")":"rgb("+A+")"}O.tinyRGB=function(u){var h=u.toRgb();return"rgb("+Math.round(h.r)+", "+Math.round(h.g)+", "+Math.round(h.b)+")"},O.rgb=function(u){return O.tinyRGB(c(u))},O.opacity=function(u){return u?c(u).getAlpha():0},O.addOpacity=function(u,h){var m=c(u).toRgb();return"rgba("+Math.round(m.r)+", "+Math.round(m.g)+", "+Math.round(m.b)+", "+h+")"},O.combine=function(u,h){var m=c(u).toRgb();if(m.a===1)return c(u).toRgbString();var v=c(h||p).toRgb(),_=v.a===1?v:{r:255*(1-v.a)+v.r*v.a,g:255*(1-v.a)+v.g*v.a,b:255*(1-v.a)+v.b*v.a},S={r:_.r*(1-m.a)+m.r*m.a,g:_.g*(1-m.a)+m.g*m.a,b:_.b*(1-m.a)+m.b*m.a};return c(S).toRgbString()},O.contrast=function(u,h,m){var v=c(u);return v.getAlpha()!==1&&(v=c(O.combine(u,p))),(v.isDark()?h?v.lighten(h):p:m?v.darken(m):y).toString()},O.stroke=function(u,h){var m=c(h);u.style({stroke:O.tinyRGB(m),"stroke-opacity":m.getAlpha()})},O.fill=function(u,h){var m=c(h);u.style({fill:O.tinyRGB(m),"fill-opacity":m.getAlpha()})},O.clean=function(u){if(u&&typeof u=="object"){var h,m,v,_,S=Object.keys(u);for(h=0;h0?Rt>=Zt:Rt<=Zt));it++)Rt>Yt&&Rt0?Rt>=Zt:Rt<=Zt));it++)Rt>zt[0]&&Rt1){var Gt=Math.pow(10,Math.floor(Math.log(en)/Math.LN10));It*=Gt*p.roundUp(en/Gt,[2,5,10]),(Math.abs(Oe.start)/Oe.size+1e-6)%1<2e-6&&(wt.tick0=0)}wt.dtick=It}wt.domain=te?[ht+ce/Te.h,ht+tt-ce/Te.h]:[ht+ae/Te.w,ht+tt-ae/Te.w],wt.setScale(),j.attr("transform",a(Math.round(Te.l),Math.round(Te.t)));var Ct,_t=j.select("."+D.cbtitleunshift).attr("transform",a(-Math.round(Te.l),-Math.round(Te.t))),nn=wt.ticklabelposition,gn=wt.title.font.size,bn=j.select("."+D.cbaxis),mn=0,vt=0;function bt(lt,yt){var zt={propContainer:wt,propName:U._propPrefix+"title",traceIndex:U._traceIndex,_meta:U._meta,placeholder:Se._dfltTitle.colorbar,containerGroup:j.select("."+D.cbtitle)},Rt=lt.charAt(0)==="h"?lt.substr(1):"h"+lt;j.selectAll("."+Rt+",."+Rt+"-math-group").remove(),_.draw(X,lt,u(zt,yt||{}))}return p.syncOrAsync([i.previousPromises,function(){var lt,yt;(te&&Dt||!te&&!Dt)&&(De==="top"&&(lt=ae+Te.l+Ee*de,yt=ce+Te.t+Ne*(1-ht-tt)+3+.75*gn),De==="bottom"&&(lt=ae+Te.l+Ee*de,yt=ce+Te.t+Ne*(1-ht)-3-.25*gn),De==="right"&&(yt=ce+Te.t+Ne*ve+3+.75*gn,lt=ae+Te.l+Ee*ht),bt(wt._id+"title",{attributes:{x:lt,y:yt,"text-anchor":te?"start":"middle"}}))},function(){if(!te&&!Dt||te&&Dt){var lt,yt=j.select("."+D.cbtitle),zt=yt.select("text"),Rt=[-Y/2,Y/2],it=yt.select(".h"+wt._id+"title-math-group").node(),at=15.6;if(zt.node()&&(at=parseInt(zt.node().style.fontSize,10)*E),it?(lt=m.bBox(it),vt=lt.width,(mn=lt.height)>at&&(Rt[1]-=(mn-at)/2)):zt.node()&&!zt.classed(D.jsPlaceholder)&&(lt=m.bBox(zt.node()),vt=lt.width,mn=lt.height),te){if(mn){if(mn+=5,De==="top")wt.domain[1]-=mn/Te.h,Rt[1]*=-1;else{wt.domain[0]+=mn/Te.h;var Lt=S.lineCount(zt);Rt[1]+=(1-Lt)*at}yt.attr("transform",a(Rt[0],Rt[1])),wt.setScale()}}else vt&&(De==="right"&&(wt.domain[0]+=(vt+gn/2)/Te.w),yt.attr("transform",a(Rt[0],Rt[1])),wt.setScale())}j.selectAll("."+D.cbfills+",."+D.cblines).attr("transform",te?a(0,Math.round(Te.h*(1-wt.domain[1]))):a(Math.round(Te.w*wt.domain[0]),0)),bn.attr("transform",te?a(0,Math.round(-Te.t)):a(Math.round(-Te.l),0));var xt=j.select("."+D.cbfills).selectAll("rect."+D.cbfill).attr("style","").data(Le);xt.enter().append("rect").classed(D.cbfill,!0).attr("style",""),xt.exit().remove();var Zt=He.map(wt.c2p).map(Math.round).sort(function(tn,Kt){return tn-Kt});xt.each(function(tn,Kt){var fn=[Kt===0?He[0]:(Le[Kt]+Le[Kt-1])/2,Kt===Le.length-1?He[1]:(Le[Kt]+Le[Kt+1])/2].map(wt.c2p).map(Math.round);te&&(fn[1]=p.constrain(fn[1]+(fn[1]>fn[0])?1:-1,Zt[0],Zt[1]));var dn=c.select(this).attr(te?"x":"y",je).attr(te?"y":"x",c.min(fn)).attr(te?"width":"height",Math.max(Ue,2)).attr(te?"height":"width",Math.max(c.max(fn)-c.min(fn),2));if(U._fillgradient)m.gradient(dn,X,U._id,te?"vertical":"horizontalreversed",U._fillgradient,"fill");else{var vn=$e(tn).replace("e-","");dn.attr("fill",b(vn).toHexString())}});var Xt=j.select("."+D.cblines).selectAll("path."+D.cbline).data(Ie.color&&Ie.width?We:[]);Xt.enter().append("path").classed(D.cbline,!0),Xt.exit().remove(),Xt.each(function(tn){var Kt=je,fn=Math.round(wt.c2p(tn))+Ie.width/2%1;c.select(this).attr("d","M"+(te?Kt+","+fn:fn+","+Kt)+(te?"h":"v")+Ue).call(m.lineGroupStyle,Ie.width,Ve(tn),Ie.dash)}),bn.selectAll("g."+wt._id+"tick,path").remove();var Yt=je+Ue+(Y||0)/2-(U.ticks==="outside"?1:0),Qt=w.calcTicks(wt),Pt=w.getTickSigns(wt)[2];return w.drawTicks(X,wt,{vals:wt.ticks==="inside"?w.clipEnds(wt,Qt):Qt,layer:bn,path:w.makeTickPath(wt,Yt,Pt),transFn:w.makeTransTickFn(wt)}),w.drawLabels(X,wt,{vals:Qt,layer:bn,transFn:w.makeTransTickLabelFn(wt),labelFns:w.makeLabelFns(wt,Yt)})},function(){if(te&&!Dt||!te&&Dt){var lt,yt,zt=wt.position||0,Rt=wt._offset+wt._length/2;if(De==="right")yt=Rt,lt=Te.l+Ee*zt+10+gn*(wt.showticklabels?1:.5);else if(lt=Rt,De==="bottom"&&(yt=Te.t+Ne*zt+10+(nn.indexOf("inside")===-1?wt.tickfont.size:0)+(wt.ticks!=="intside"&&U.ticklen||0)),De==="top"){var it=ze.text.split("
").length;yt=Te.t+Ne*zt+10-Ue-E*gn*it}bt((te?"h":"v")+wt._id+"title",{avoid:{selection:c.select(X).selectAll("g."+wt._id+"tick"),side:De,offsetTop:te?0:Te.t,offsetLeft:te?Te.l:0,maxShift:te?Se.width:Se.height},attributes:{x:lt,y:yt,"text-anchor":"middle"},transform:{rotate:te?-90:0,offset:0}})}},i.previousPromises,function(){var lt,yt=Ue+Y/2;nn.indexOf("inside")===-1&&(lt=m.bBox(bn.node()),yt+=te?lt.width:lt.height),Ct=_t.select("text");var zt=0,Rt=te&&De==="top",it=!te&&De==="right",at=0;if(Ct.node()&&!Ct.classed(D.jsPlaceholder)){var Lt,xt=_t.select(".h"+wt._id+"title-math-group").node();xt&&(te&&Dt||!te&&!Dt)?(zt=(lt=m.bBox(xt)).width,Lt=lt.height):(zt=(lt=m.bBox(_t.node())).right-Te.l-(te?je:pt),Lt=lt.bottom-Te.t-(te?pt:je),te||De!=="top"||(yt+=lt.height,at=lt.height)),it&&(Ct.attr("transform",a(zt/2+gn/2,0)),zt*=2),yt=Math.max(yt,te?zt:Lt)}var Zt=2*(te?ae:ce)+yt+ee+Y/2,Xt=0;!te&&ze.text&&se==="bottom"&&ve<=0&&(Zt+=Xt=Zt/2,at+=Xt),Se._hColorbarMoveTitle=Xt,Se._hColorbarMoveCBTitle=at;var Yt=ee+Y,Qt=(te?je:pt)-Yt/2-(te?ae:0),Pt=(te?pt:je)-(te?Xe:ce+at-Xt);j.select("."+D.cbbg).attr("x",Qt).attr("y",Pt).attr(te?"width":"height",Math.max(Zt-Xt,2)).attr(te?"height":"width",Math.max(Xe+Yt,2)).call(v.fill,me).call(v.stroke,U.bordercolor).style("stroke-width",ee);var tn=it?Math.max(zt-10,0):0;j.selectAll("."+D.cboutline).attr("x",(te?je:pt+ae)+tn).attr("y",(te?pt+ce-Xe:je)+(Rt?mn:0)).attr(te?"width":"height",Math.max(Ue,2)).attr(te?"height":"width",Math.max(Xe-(te?2*ce+mn:2*ae+tn),2)).call(v.stroke,U.outlinecolor).style({fill:"none","stroke-width":Y});var Kt=te?nt*Zt:0,fn=te?0:(1-ot)*Zt-at;if(Kt=_e?Te.l-Kt:-Kt,fn=ye?Te.t-fn:-fn,j.attr("transform",a(Kt,fn)),!te&&(ee||b(me).getAlpha()&&!b.equals(Se.paper_bgcolor,me))){var dn=bn.selectAll("text"),vn=dn[0].length,Nn=j.select("."+D.cbbg).node(),er=m.bBox(Nn),En=m.getTranslate(j);dn.each(function(_r,Ir){var zr=vn-1;if(Ir===0||Ir===zr){var Fr,Rr=m.bBox(this),$r=m.getTranslate(this);if(Ir===zr){var Kr=Rr.right+$r.x;(Fr=er.right+En.x+pt-ee-2+de-Kr)>0&&(Fr=0)}else if(Ir===0){var Co=Rr.left+$r.x;(Fr=er.left+En.x+pt+ee+2-Co)<0&&(Fr=0)}Fr&&(vn<3?this.setAttribute("transform","translate("+Fr+",0) "+this.getAttribute("transform")):this.setAttribute("visibility","hidden"))}})}var In={},jn=C[he],xr=L[he],Sr=C[se],ar=L[se],Fn=Zt-Ue;te?(K==="pixels"?(In.y=ve,In.t=Xe*Sr,In.b=Xe*ar):(In.t=In.b=0,In.yt=ve+W*Sr,In.yb=ve-W*ar),q==="pixels"?(In.x=de,In.l=Zt*jn,In.r=Zt*xr):(In.l=Fn*jn,In.r=Fn*xr,In.xl=de-oe*jn,In.xr=de+oe*xr)):(K==="pixels"?(In.x=de,In.l=Xe*jn,In.r=Xe*xr):(In.l=In.r=0,In.xl=de+W*jn,In.xr=de-W*xr),q==="pixels"?(In.y=1-ve,In.t=Zt*Sr,In.b=Zt*ar):(In.t=Fn*Sr,In.b=Fn*ar,In.yt=ve-oe*Sr,In.yb=ve+oe*ar));var ir=U.y<.5?"b":"t",Wn=U.x<.5?"l":"r";X._fullLayout._reservedMargin[U._id]={};var Kn={r:Se.width-Qt-Kt,l:Qt+In.r,b:Se.height-Pt-fn,t:Pt+In.b};_e&&ye?i.autoMargin(X,U._id,In):_e?X._fullLayout._reservedMargin[U._id][ir]=Kn[ir]:ye||te?X._fullLayout._reservedMargin[U._id][Wn]=Kn[Wn]:X._fullLayout._reservedMargin[U._id][ir]=Kn[ir]}],X)}($,z,k);Q&&Q.then&&(k._promises||[]).push(Q),k._context.edits.colorbarPosition&&function(j,U,X){var te,W,K,oe=U.orientation==="v",q=X._fullLayout._size;y.init({element:j.node(),gd:X,prepFn:function(){te=j.attr("transform"),h(j)},moveFn:function(Y,ee){j.attr("transform",te+a(Y,ee)),W=y.align((oe?U._uFrac:U._vFrac)+Y/q.w,oe?U._thickFrac:U._lenFrac,0,1,U.xanchor),K=y.align((oe?U._vFrac:1-U._uFrac)-ee/q.h,oe?U._lenFrac:U._thickFrac,0,1,U.yanchor);var me=y.getCursor(W,K,U.xanchor,U.yanchor);h(j,me)},doneFn:function(){if(h(j),W!==void 0&&K!==void 0){var Y={};Y[U._propPrefix+"x"]=W,Y[U._propPrefix+"y"]=K,U._traceIndex!==void 0?O.call("_guiRestyle",X,Y,U._traceIndex):O.call("_guiRelayout",X,Y)}}})}($,z,k)}),I.exit().each(function(z){i.autoMargin(k,z._id)}).remove(),I.order()}}},90553:function(d,l,n){var c=n(3400);d.exports=function(b){return c.isPlainObject(b.colorbar)}},55080:function(d,l,n){d.exports={moduleType:"component",name:"colorbar",attributes:n(42996),supplyDefaults:n(64013),draw:n(37848).draw,hasColorbar:n(90553)}},49084:function(d,l,n){var c=n(42996),b=n(53756).counter,i=n(95376),O=n(88304).scales;function w(y){return"`"+y+"`"}i(O),d.exports=function(y,p){y=y||"";var a,u=(p=p||{}).cLetter||"c",h=("onlyIfNumerical"in p&&p.onlyIfNumerical,"noScale"in p?p.noScale:y==="marker.line"),m="showScaleDflt"in p?p.showScaleDflt:u==="z",v=typeof p.colorscaleDflt=="string"?O[p.colorscaleDflt]:null,_=p.editTypeOverride||"",S=y?y+".":"";"colorAttr"in p?(a=p.colorAttr,p.colorAttr):w(S+(a={z:"z",c:"color"}[u]));var A=u+"auto",x=u+"min",R=u+"max",M=u+"mid",T={};T[x]=T[R]=void 0;var E={};E[A]=!1;var C={};return a==="color"&&(C.color={valType:"color",arrayOk:!0,editType:_||"style"},p.anim&&(C.color.anim=!0)),C[A]={valType:"boolean",dflt:!0,editType:"calc",impliedEdits:T},C[x]={valType:"number",dflt:null,editType:_||"plot",impliedEdits:E},C[R]={valType:"number",dflt:null,editType:_||"plot",impliedEdits:E},C[M]={valType:"number",dflt:null,editType:"calc",impliedEdits:T},C.colorscale={valType:"colorscale",editType:"calc",dflt:v,impliedEdits:{autocolorscale:!1}},C.autocolorscale={valType:"boolean",dflt:p.autoColorDflt!==!1,editType:"calc",impliedEdits:{colorscale:void 0}},C.reversescale={valType:"boolean",dflt:!1,editType:"plot"},h||(C.showscale={valType:"boolean",dflt:m,editType:"calc"},C.colorbar=c),p.noColorAxis||(C.coloraxis={valType:"subplotid",regex:b("coloraxis"),dflt:null,editType:"calc"}),C}},47128:function(d,l,n){var c=n(38248),b=n(3400),i=n(94288).extractOpts;d.exports=function(O,w,y){var p,a=O._fullLayout,u=y.vals,h=y.containerStr,m=h?b.nestedProperty(w,h).get():w,v=i(m),_=v.auto!==!1,S=v.min,A=v.max,x=v.mid,R=function(){return b.aggNums(Math.min,null,u)},M=function(){return b.aggNums(Math.max,null,u)};S===void 0?S=R():_&&(S=m._colorAx&&c(S)?Math.min(S,R()):R()),A===void 0?A=M():_&&(A=m._colorAx&&c(A)?Math.max(A,M()):M()),_&&x!==void 0&&(A-x>x-S?S=x-(A-x):A-x=0?a.colorscale.sequential:a.colorscale.sequentialminus,v._sync("colorscale",p))}},95504:function(d,l,n){var c=n(3400),b=n(94288).hasColorscale,i=n(94288).extractOpts;d.exports=function(O,w){function y(_,S){var A=_["_"+S];A!==void 0&&(_[S]=A)}function p(_,S){var A=S.container?c.nestedProperty(_,S.container).get():_;if(A)if(A.coloraxis)A._colorAx=w[A.coloraxis];else{var x=i(A),R=x.auto;(R||x.min===void 0)&&y(A,S.min),(R||x.max===void 0)&&y(A,S.max),x.autocolorscale&&y(A,"colorscale")}}for(var a=0;a=0;R--,M++){var T=S[R];x[M]=[1-T[0],T[1]]}return x}function v(S,A){A=A||{};for(var x=S.domain,R=S.range,M=R.length,T=new Array(M),E=0;E1.3333333333333333-y?w:y}},67416:function(d,l,n){var c=n(3400),b=[["sw-resize","s-resize","se-resize"],["w-resize","move","e-resize"],["nw-resize","n-resize","ne-resize"]];d.exports=function(i,O,w,y){return i=w==="left"?0:w==="center"?1:w==="right"?2:c.constrain(Math.floor(3*i),0,2),O=y==="bottom"?0:y==="middle"?1:y==="top"?2:c.constrain(Math.floor(3*O),0,2),b[O][i]}},72760:function(d,l){l.selectMode=function(n){return n==="lasso"||n==="select"},l.drawMode=function(n){return n==="drawclosedpath"||n==="drawopenpath"||n==="drawline"||n==="drawrect"||n==="drawcircle"},l.openMode=function(n){return n==="drawline"||n==="drawopenpath"},l.rectMode=function(n){return n==="select"||n==="drawline"||n==="drawrect"||n==="drawcircle"},l.freeMode=function(n){return n==="lasso"||n==="drawclosedpath"||n==="drawopenpath"},l.selectingOrDrawing=function(n){return l.freeMode(n)||l.rectMode(n)}},86476:function(d,l,n){var c=n(29128),b=n(52264),i=n(89184),O=n(3400).removeElement,w=n(33816),y=d.exports={};y.align=n(78316),y.getCursor=n(67416);var p=n(2616);function a(){var h=document.createElement("div");h.className="dragcover";var m=h.style;return m.position="fixed",m.left=0,m.right=0,m.top=0,m.bottom=0,m.zIndex=999999999,m.background="none",document.body.appendChild(h),h}function u(h){return c(h.changedTouches?h.changedTouches[0]:h,document.body)}y.unhover=p.wrapped,y.unhoverRaw=p.raw,y.init=function(h){var m,v,_,S,A,x,R,M,T=h.gd,E=1,C=T._context.doubleClickDelay,L=h.element;T._mouseDownTime||(T._mouseDownTime=0),L.style.pointerEvents="all",L.onmousedown=k,i?(L._ontouchstart&&L.removeEventListener("touchstart",L._ontouchstart),L._ontouchstart=k,L.addEventListener("touchstart",k,{passive:!1})):L.ontouchstart=k;var D=h.clampFn||function($,Q,j){return Math.abs($)C&&(E=Math.max(E-1,1)),T._dragged)h.doneFn&&h.doneFn();else if(h.clickFn&&h.clickFn(E,x),!M){var Q;try{Q=new MouseEvent("click",$)}catch{var j=u($);(Q=document.createEvent("MouseEvents")).initMouseEvent("click",$.bubbles,$.cancelable,$.view,$.detail,$.screenX,$.screenY,j[0],j[1],$.ctrlKey,$.altKey,$.shiftKey,$.metaKey,$.button,$.relatedTarget)}R.dispatchEvent(Q)}T._dragging=!1,T._dragged=!1}else T._dragged=!1}},y.coverSlip=a},2616:function(d,l,n){var c=n(95924),b=n(91200),i=n(52200).getGraphDiv,O=n(92456),w=d.exports={};w.wrapped=function(y,p,a){(y=i(y))._fullLayout&&b.clear(y._fullLayout._uid+O.HOVERID),w.raw(y,p,a)},w.raw=function(y,p){var a=y._fullLayout,u=y._hoverdata;p||(p={}),p.target&&!y._dragged&&c.triggerHandler(y,"plotly_beforehover",p)===!1||(a._hoverlayer.selectAll("g").remove(),a._hoverlayer.selectAll("line").remove(),a._hoverlayer.selectAll("circle").remove(),y._hoverdata=void 0,p.target&&u&&y.emit("plotly_unhover",{event:p,points:u}))}},98192:function(d,l){l.u={valType:"string",values:["solid","dot","dash","longdash","dashdot","longdashdot"],dflt:"solid",editType:"style"},l.c={shape:{valType:"enumerated",values:["","/","\\","x","-","|","+","."],dflt:"",arrayOk:!0,editType:"style"},fillmode:{valType:"enumerated",values:["replace","overlay"],dflt:"replace",editType:"style"},bgcolor:{valType:"color",arrayOk:!0,editType:"style"},fgcolor:{valType:"color",arrayOk:!0,editType:"style"},fgopacity:{valType:"number",editType:"style",min:0,max:1},size:{valType:"number",min:0,dflt:8,arrayOk:!0,editType:"style"},solidity:{valType:"number",min:0,max:1,dflt:.3,arrayOk:!0,editType:"style"},editType:"style"}},43616:function(d,l,n){var c=n(33428),b=n(3400),i=b.numberFormat,O=n(38248),w=n(49760),y=n(24040),p=n(76308),a=n(8932),u=b.strTranslate,h=n(72736),m=n(9616),v=n(84284).LINE_SPACING,_=n(13448).DESELECTDIM,S=n(43028),A=n(7152),x=n(10624).appendArrayPointValue,R=d.exports={};function M(Ve,$e,Oe){var ke=$e.fillpattern,Le=ke&&R.getPatternAttr(ke.shape,0,"");if(Le){var We=R.getPatternAttr(ke.bgcolor,0,null),Ue=R.getPatternAttr(ke.fgcolor,0,null),Ze=ke.fgopacity,Xe=R.getPatternAttr(ke.size,0,8),tt=R.getPatternAttr(ke.solidity,0,.3),Ee=$e.uid;R.pattern(Ve,"point",Oe,Ee,Le,Xe,tt,void 0,ke.fillmode,We,Ue,Ze)}else $e.fillcolor&&Ve.call(p.fill,$e.fillcolor)}R.font=function(Ve,$e,Oe,ke){b.isPlainObject($e)&&(ke=$e.color,Oe=$e.size,$e=$e.family),$e&&Ve.style("font-family",$e),Oe+1&&Ve.style("font-size",Oe+"px"),ke&&Ve.call(p.fill,ke)},R.setPosition=function(Ve,$e,Oe){Ve.attr("x",$e).attr("y",Oe)},R.setSize=function(Ve,$e,Oe){Ve.attr("width",$e).attr("height",Oe)},R.setRect=function(Ve,$e,Oe,ke,Le){Ve.call(R.setPosition,$e,Oe).call(R.setSize,ke,Le)},R.translatePoint=function(Ve,$e,Oe,ke){var Le=Oe.c2p(Ve.x),We=ke.c2p(Ve.y);return!!(O(Le)&&O(We)&&$e.node())&&($e.node().nodeName==="text"?$e.attr("x",Le).attr("y",We):$e.attr("transform",u(Le,We)),!0)},R.translatePoints=function(Ve,$e,Oe){Ve.each(function(ke){var Le=c.select(this);R.translatePoint(ke,Le,$e,Oe)})},R.hideOutsideRangePoint=function(Ve,$e,Oe,ke,Le,We){$e.attr("display",Oe.isPtWithinRange(Ve,Le)&&ke.isPtWithinRange(Ve,We)?null:"none")},R.hideOutsideRangePoints=function(Ve,$e){if($e._hasClipOnAxisFalse){var Oe=$e.xaxis,ke=$e.yaxis;Ve.each(function(Le){var We=Le[0].trace,Ue=We.xcalendar,Ze=We.ycalendar,Xe=y.traceIs(We,"bar-like")?".bartext":".point,.textpoint";Ve.selectAll(Xe).each(function(tt){R.hideOutsideRangePoint(tt,c.select(this),Oe,ke,Ue,Ze)})})}},R.crispRound=function(Ve,$e,Oe){return $e&&O($e)?Ve._context.staticPlot?$e:$e<1?1:Math.round($e):Oe||0},R.singleLineStyle=function(Ve,$e,Oe,ke,Le){$e.style("fill","none");var We=(((Ve||[])[0]||{}).trace||{}).line||{},Ue=Oe||We.width||0,Ze=Le||We.dash||"";p.stroke($e,ke||We.color),R.dashLine($e,Ze,Ue)},R.lineGroupStyle=function(Ve,$e,Oe,ke){Ve.style("fill","none").each(function(Le){var We=(((Le||[])[0]||{}).trace||{}).line||{},Ue=$e||We.width||0,Ze=ke||We.dash||"";c.select(this).call(p.stroke,Oe||We.color).call(R.dashLine,Ze,Ue)})},R.dashLine=function(Ve,$e,Oe){Oe=+Oe||0,$e=R.dashStyle($e,Oe),Ve.style({"stroke-dasharray":$e,"stroke-width":Oe+"px"})},R.dashStyle=function(Ve,$e){$e=+$e||1;var Oe=Math.max($e,3);return Ve==="solid"?Ve="":Ve==="dot"?Ve=Oe+"px,"+Oe+"px":Ve==="dash"?Ve=3*Oe+"px,"+3*Oe+"px":Ve==="longdash"?Ve=5*Oe+"px,"+5*Oe+"px":Ve==="dashdot"?Ve=3*Oe+"px,"+Oe+"px,"+Oe+"px,"+Oe+"px":Ve==="longdashdot"&&(Ve=5*Oe+"px,"+2*Oe+"px,"+Oe+"px,"+2*Oe+"px"),Ve},R.singleFillStyle=function(Ve,$e){var Oe=c.select(Ve.node());M(Ve,((Oe.data()[0]||[])[0]||{}).trace||{},$e)},R.fillGroupStyle=function(Ve,$e){Ve.style("stroke-width",0).each(function(Oe){var ke=c.select(this);Oe[0].trace&&M(ke,Oe[0].trace,$e)})};var T=n(71984);R.symbolNames=[],R.symbolFuncs=[],R.symbolBackOffs=[],R.symbolNeedLines={},R.symbolNoDot={},R.symbolNoFill={},R.symbolList=[],Object.keys(T).forEach(function(Ve){var $e=T[Ve],Oe=$e.n;R.symbolList.push(Oe,String(Oe),Ve,Oe+100,String(Oe+100),Ve+"-open"),R.symbolNames[Oe]=Ve,R.symbolFuncs[Oe]=$e.f,R.symbolBackOffs[Oe]=$e.backoff||0,$e.needLine&&(R.symbolNeedLines[Oe]=!0),$e.noDot?R.symbolNoDot[Oe]=!0:R.symbolList.push(Oe+200,String(Oe+200),Ve+"-dot",Oe+300,String(Oe+300),Ve+"-open-dot"),$e.noFill&&(R.symbolNoFill[Oe]=!0)});var E=R.symbolNames.length;function C(Ve,$e,Oe,ke){var Le=Ve%100;return R.symbolFuncs[Le]($e,Oe,ke)+(Ve>=200?"M0,0.5L0.5,0L0,-0.5L-0.5,0Z":"")}R.symbolNumber=function(Ve){if(O(Ve))Ve=+Ve;else if(typeof Ve=="string"){var $e=0;Ve.indexOf("-open")>0&&($e=100,Ve=Ve.replace("-open","")),Ve.indexOf("-dot")>0&&($e+=200,Ve=Ve.replace("-dot","")),(Ve=R.symbolNames.indexOf(Ve))>=0&&(Ve+=$e)}return Ve%100>=E||Ve>=400?0:Math.floor(Math.max(Ve,0))};var L={x1:1,x2:0,y1:0,y2:0},D={x1:0,x2:0,y1:1,y2:0},k=i("~f"),I={radial:{node:"radialGradient"},radialreversed:{node:"radialGradient",reversed:!0},horizontal:{node:"linearGradient",attrs:L},horizontalreversed:{node:"linearGradient",attrs:L,reversed:!0},vertical:{node:"linearGradient",attrs:D},verticalreversed:{node:"linearGradient",attrs:D,reversed:!0}};R.gradient=function(Ve,$e,Oe,ke,Le,We){for(var Ue=Le.length,Ze=I[ke],Xe=new Array(Ue),tt=0;tt=0&&Ve.i===void 0&&(Ve.i=We.i),$e.style("opacity",ke.selectedOpacityFn?ke.selectedOpacityFn(Ve):Ve.mo===void 0?Ue.opacity:Ve.mo),ke.ms2mrc){var Xe;Xe=Ve.ms==="various"||Ue.size==="various"?3:ke.ms2mrc(Ve.ms),Ve.mrc=Xe,ke.selectedSizeFn&&(Xe=Ve.mrc=ke.selectedSizeFn(Ve));var tt=R.symbolNumber(Ve.mx||Ue.symbol)||0;Ve.om=tt%200>=100;var Ee=He(Ve,Oe),Ne=ce(Ve,Oe);$e.attr("d",C(tt,Xe,Ee,Ne))}var je,nt,ot,Ge=!1;if(Ve.so)ot=Ze.outlierwidth,nt=Ze.outliercolor,je=Ue.outliercolor;else{var ht=(Ze||{}).width;ot=(Ve.mlw+1||ht+1||(Ve.trace?(Ve.trace.marker.line||{}).width:0)+1)-1||0,nt="mlc"in Ve?Ve.mlcc=ke.lineScale(Ve.mlc):b.isArrayOrTypedArray(Ze.color)?p.defaultLine:Ze.color,b.isArrayOrTypedArray(Ue.color)&&(je=p.defaultLine,Ge=!0),je="mc"in Ve?Ve.mcc=ke.markerScale(Ve.mc):Ue.color||Ue.colors||"rgba(0,0,0,0)",ke.selectedColorFn&&(je=ke.selectedColorFn(Ve))}if(Ve.om)$e.call(p.stroke,je).style({"stroke-width":(ot||1)+"px",fill:"none"});else{$e.style("stroke-width",(Ve.isBlank?0:ot)+"px");var pt=Ue.gradient,wt=Ve.mgt;wt?Ge=!0:wt=pt&&pt.type,b.isArrayOrTypedArray(wt)&&(wt=wt[0],I[wt]||(wt=0));var Dt=Ue.pattern,It=Dt&&R.getPatternAttr(Dt.shape,Ve.i,"");if(wt&&wt!=="none"){var qt=Ve.mgc;qt?Ge=!0:qt=pt.color;var en=Oe.uid;Ge&&(en+="-"+Ve.i),R.gradient($e,Le,en,wt,[[0,qt],[1,je]],"fill")}else if(It){var Gt=!1,Ct=Dt.fgcolor;!Ct&&We&&We.color&&(Ct=We.color,Gt=!0);var _t=R.getPatternAttr(Ct,Ve.i,We&&We.color||null),nn=R.getPatternAttr(Dt.bgcolor,Ve.i,null),gn=Dt.fgopacity,bn=R.getPatternAttr(Dt.size,Ve.i,8),mn=R.getPatternAttr(Dt.solidity,Ve.i,.3);Gt=Gt||Ve.mcc||b.isArrayOrTypedArray(Dt.shape)||b.isArrayOrTypedArray(Dt.bgcolor)||b.isArrayOrTypedArray(Dt.fgcolor)||b.isArrayOrTypedArray(Dt.size)||b.isArrayOrTypedArray(Dt.solidity);var vt=Oe.uid;Gt&&(vt+="-"+Ve.i),R.pattern($e,"point",Le,vt,It,bn,mn,Ve.mcc,Dt.fillmode,nn,_t,gn)}else b.isArrayOrTypedArray(je)?p.fill($e,je[Ve.i]):p.fill($e,je);ot&&p.stroke($e,nt)}},R.makePointStyleFns=function(Ve){var $e={},Oe=Ve.marker;return $e.markerScale=R.tryColorscale(Oe,""),$e.lineScale=R.tryColorscale(Oe,"line"),y.traceIs(Ve,"symbols")&&($e.ms2mrc=S.isBubble(Ve)?A(Ve):function(){return(Oe.size||6)/2}),Ve.selectedpoints&&b.extendFlat($e,R.makeSelectedPointStyleFns(Ve)),$e},R.makeSelectedPointStyleFns=function(Ve){var $e={},Oe=Ve.selected||{},ke=Ve.unselected||{},Le=Ve.marker||{},We=Oe.marker||{},Ue=ke.marker||{},Ze=Le.opacity,Xe=We.opacity,tt=Ue.opacity,Ee=Xe!==void 0,Ne=tt!==void 0;(b.isArrayOrTypedArray(Ze)||Ee||Ne)&&($e.selectedOpacityFn=function(It){var qt=It.mo===void 0?Le.opacity:It.mo;return It.selected?Ee?Xe:qt:Ne?tt:_*qt});var je=Le.color,nt=We.color,ot=Ue.color;(nt||ot)&&($e.selectedColorFn=function(It){var qt=It.mcc||je;return It.selected?nt||qt:ot||qt});var Ge=Le.size,ht=We.size,pt=Ue.size,wt=ht!==void 0,Dt=pt!==void 0;return y.traceIs(Ve,"symbols")&&(wt||Dt)&&($e.selectedSizeFn=function(It){var qt=It.mrc||Ge/2;return It.selected?wt?ht/2:qt:Dt?pt/2:qt}),$e},R.makeSelectedTextStyleFns=function(Ve){var $e={},Oe=Ve.selected||{},ke=Ve.unselected||{},Le=Ve.textfont||{},We=Oe.textfont||{},Ue=ke.textfont||{},Ze=Le.color,Xe=We.color,tt=Ue.color;return $e.selectedTextColorFn=function(Ee){var Ne=Ee.tc||Ze;return Ee.selected?Xe||Ne:tt||(Xe?Ne:p.addOpacity(Ne,_))},$e},R.selectedPointStyle=function(Ve,$e){if(Ve.size()&&$e.selectedpoints){var Oe=R.makeSelectedPointStyleFns($e),ke=$e.marker||{},Le=[];Oe.selectedOpacityFn&&Le.push(function(We,Ue){We.style("opacity",Oe.selectedOpacityFn(Ue))}),Oe.selectedColorFn&&Le.push(function(We,Ue){p.fill(We,Oe.selectedColorFn(Ue))}),Oe.selectedSizeFn&&Le.push(function(We,Ue){var Ze=Ue.mx||ke.symbol||0,Xe=Oe.selectedSizeFn(Ue);We.attr("d",C(R.symbolNumber(Ze),Xe,He(Ue,$e),ce(Ue,$e))),Ue.mrc2=Xe}),Le.length&&Ve.each(function(We){for(var Ue=c.select(this),Ze=0;Ze0?Oe:0}function X(Ve,$e,Oe){return Oe&&(Ve=Y(Ve)),$e?W(Ve[1]):te(Ve[0])}function te(Ve){var $e=c.round(Ve,2);return z=$e,$e}function W(Ve){var $e=c.round(Ve,2);return $=$e,$e}function K(Ve,$e,Oe,ke){var Le=Ve[0]-$e[0],We=Ve[1]-$e[1],Ue=Oe[0]-$e[0],Ze=Oe[1]-$e[1],Xe=Math.pow(Le*Le+We*We,.25),tt=Math.pow(Ue*Ue+Ze*Ze,.25),Ee=(tt*tt*Le-Xe*Xe*Ue)*ke,Ne=(tt*tt*We-Xe*Xe*Ze)*ke,je=3*tt*(Xe+tt),nt=3*Xe*(Xe+tt);return[[te($e[0]+(je&&Ee/je)),W($e[1]+(je&&Ne/je))],[te($e[0]-(nt&&Ee/nt)),W($e[1]-(nt&&Ne/nt))]]}R.textPointStyle=function(Ve,$e,Oe){if(Ve.size()){var ke;if($e.selectedpoints){var Le=R.makeSelectedTextStyleFns($e);ke=Le.selectedTextColorFn}var We=$e.texttemplate,Ue=Oe._fullLayout;Ve.each(function(Ze){var Xe=c.select(this),tt=We?b.extractOption(Ze,$e,"txt","texttemplate"):b.extractOption(Ze,$e,"tx","text");if(tt||tt===0){if(We){var Ee=$e._module.formatLabels,Ne=Ee?Ee(Ze,$e,Ue):{},je={};x(je,$e,Ze.i);var nt=$e._meta||{};tt=b.texttemplateString(tt,Ne,Ue._d3locale,je,Ze,nt)}var ot=Ze.tp||$e.textposition,Ge=U(Ze,$e),ht=ke?ke(Ze):Ze.tc||$e.textfont.color;Xe.call(R.font,Ze.tf||$e.textfont.family,Ge,ht).text(tt).call(h.convertToTspans,Oe).call(j,ot,Ge,Ze.mrc)}else Xe.remove()})}},R.selectedTextStyle=function(Ve,$e){if(Ve.size()&&$e.selectedpoints){var Oe=R.makeSelectedTextStyleFns($e);Ve.each(function(ke){var Le=c.select(this),We=Oe.selectedTextColorFn(ke),Ue=ke.tp||$e.textposition,Ze=U(ke,$e);p.fill(Le,We);var Xe=y.traceIs($e,"bar-like");j(Le,Ue,Ze,ke.mrc2||ke.mrc,Xe)})}},R.smoothopen=function(Ve,$e){if(Ve.length<3)return"M"+Ve.join("L");var Oe,ke="M"+Ve[0],Le=[];for(Oe=1;Oe=Xe||It>=Ee&&It<=Xe)&&(qt<=Ne&&qt>=tt||qt>=Ne&&qt<=tt)&&(Ve=[It,qt])}return Ve}R.steps=function(Ve){var $e=oe[Ve]||q;return function(Oe){for(var ke="M"+te(Oe[0][0])+","+W(Oe[0][1]),Le=Oe.length,We=1;We=1e4&&(R.savedBBoxes={},ee=0),Oe&&(R.savedBBoxes[Oe]=nt),ee++,b.extendFlat({},nt)},R.setClipUrl=function(Ve,$e,Oe){Ve.attr("clip-path",he($e,Oe))},R.getTranslate=function(Ve){var $e=(Ve[Ve.attr?"attr":"getAttribute"]("transform")||"").replace(/.*\btranslate\((-?\d*\.?\d*)[^-\d]*(-?\d*\.?\d*)[^\d].*/,function(Oe,ke,Le){return[ke,Le].join(" ")}).split(" ");return{x:+$e[0]||0,y:+$e[1]||0}},R.setTranslate=function(Ve,$e,Oe){var ke=Ve.attr?"attr":"getAttribute",Le=Ve.attr?"attr":"setAttribute",We=Ve[ke]("transform")||"";return $e=$e||0,Oe=Oe||0,We=We.replace(/(\btranslate\(.*?\);?)/,"").trim(),We=(We+=u($e,Oe)).trim(),Ve[Le]("transform",We),We},R.getScale=function(Ve){var $e=(Ve[Ve.attr?"attr":"getAttribute"]("transform")||"").replace(/.*\bscale\((\d*\.?\d*)[^\d]*(\d*\.?\d*)[^\d].*/,function(Oe,ke,Le){return[ke,Le].join(" ")}).split(" ");return{x:+$e[0]||1,y:+$e[1]||1}},R.setScale=function(Ve,$e,Oe){var ke=Ve.attr?"attr":"getAttribute",Le=Ve.attr?"attr":"setAttribute",We=Ve[ke]("transform")||"";return $e=$e||1,Oe=Oe||1,We=We.replace(/(\bscale\(.*?\);?)/,"").trim(),We=(We+="scale("+$e+","+Oe+")").trim(),Ve[Le]("transform",We),We};var se=/\s*sc.*/;R.setPointGroupScale=function(Ve,$e,Oe){if($e=$e||1,Oe=Oe||1,Ve){var ke=$e===1&&Oe===1?"":"scale("+$e+","+Oe+")";Ve.each(function(){var Le=(this.getAttribute("transform")||"").replace(se,"");Le=(Le+=ke).trim(),this.setAttribute("transform",Le)})}};var ae=/translate\([^)]*\)\s*$/;function ce(Ve,$e){var Oe;return Ve&&(Oe=Ve.mf),Oe===void 0&&(Oe=$e.marker&&$e.marker.standoff||0),$e._geo||$e._xA?Oe:-Oe}R.setTextPointsScale=function(Ve,$e,Oe){Ve&&Ve.each(function(){var ke,Le=c.select(this),We=Le.select("text");if(We.node()){var Ue=parseFloat(We.attr("x")||0),Ze=parseFloat(We.attr("y")||0),Xe=(Le.attr("transform")||"").match(ae);ke=$e===1&&Oe===1?[]:[u(Ue,Ze),"scale("+$e+","+Oe+")",u(-Ue,-Ze)],Xe&&ke.push(Xe),Le.attr("transform",ke.join(""))}})},R.getMarkerStandoff=ce;var de,ve,ye,_e,Se,Te,Pe=Math.atan2,Ie=Math.cos,ze=Math.sin;function De(Ve,$e){var Oe=$e[0],ke=$e[1];return[Oe*Ie(Ve)-ke*ze(Ve),Oe*ze(Ve)+ke*Ie(Ve)]}function He(Ve,$e){var Oe,ke,Le=Ve.ma;Le===void 0&&((Le=$e.marker.angle)&&!b.isArrayOrTypedArray(Le)||(Le=0));var We=$e.marker.angleref;if(We==="previous"||We==="north"){if($e._geo){var Ue=$e._geo.project(Ve.lonlat);Oe=Ue[0],ke=Ue[1]}else{var Ze=$e._xA,Xe=$e._yA;if(!Ze||!Xe)return 90;Oe=Ze.c2p(Ve.x),ke=Xe.c2p(Ve.y)}if($e._geo){var tt,Ee=Ve.lonlat[0],Ne=Ve.lonlat[1],je=$e._geo.project([Ee,Ne+1e-5]),nt=$e._geo.project([Ee+1e-5,Ne]),ot=Pe(nt[1]-ke,nt[0]-Oe),Ge=Pe(je[1]-ke,je[0]-Oe);if(We==="north")tt=Le/180*Math.PI;else if(We==="previous"){var ht=Ee/180*Math.PI,pt=Ne/180*Math.PI,wt=de/180*Math.PI,Dt=ve/180*Math.PI,It=wt-ht,qt=Ie(Dt)*ze(It),en=ze(Dt)*Ie(pt)-Ie(Dt)*ze(pt)*Ie(It);tt=-Pe(qt,en)-Math.PI,de=Ee,ve=Ne}var Gt=De(ot,[Ie(tt),0]),Ct=De(Ge,[ze(tt),0]);Le=Pe(Gt[1]+Ct[1],Gt[0]+Ct[0])/Math.PI*180,We!=="previous"||Te===$e.uid&&Ve.i===Se+1||(Le=null)}if(We==="previous"&&!$e._geo)if(Te===$e.uid&&Ve.i===Se+1&&O(Oe)&&O(ke)){var _t=Oe-ye,nn=ke-_e,gn=$e.line&&$e.line.shape||"",bn=gn.slice(gn.length-1);bn==="h"&&(nn=0),bn==="v"&&(_t=0),Le+=Pe(nn,_t)/Math.PI*180+90}else Le=null}return ye=Oe,_e=ke,Se=Ve.i,Te=$e.uid,Le}R.getMarkerAngle=He},71984:function(d,l,n){var c,b,i,O,w=n(21984),y=n(33428).round,p="M0,0Z",a=Math.sqrt(2),u=Math.sqrt(3),h=Math.PI,m=Math.cos,v=Math.sin;function _(A){return A===null}function S(A,x,R){if(!(A&&A%360!=0||x))return R;if(i===A&&O===x&&c===R)return b;function M(X,te){var W=m(X),K=v(X),oe=te[0],q=te[1]+(x||0);return[oe*W-q*K,oe*K+q*W]}i=A,O=x,c=R;for(var T=A/180*h,E=0,C=0,L=w(R),D="",k=0;k0,v=w._context.staticPlot;y.each(function(_){var S,A=_[0].trace,x=A.error_x||{},R=A.error_y||{};A.ids&&(S=function(C){return C.id});var M=O.hasMarkers(A)&&A.marker.maxdisplayed>0;R.visible||x.visible||(_=[]);var T=c.select(this).selectAll("g.errorbar").data(_,S);if(T.exit().remove(),_.length){x.visible||T.selectAll("path.xerror").remove(),R.visible||T.selectAll("path.yerror").remove(),T.style("opacity",1);var E=T.enter().append("g").classed("errorbar",!0);m&&E.style("opacity",0).transition().duration(a.duration).style("opacity",1),i.setClipUrl(T,p.layerClipId,w),T.each(function(C){var L=c.select(this),D=function(j,U,X){var te={x:U.c2p(j.x),y:X.c2p(j.y)};return j.yh!==void 0&&(te.yh=X.c2p(j.yh),te.ys=X.c2p(j.ys),b(te.ys)||(te.noYS=!0,te.ys=X.c2p(j.ys,!0))),j.xh!==void 0&&(te.xh=U.c2p(j.xh),te.xs=U.c2p(j.xs),b(te.xs)||(te.noXS=!0,te.xs=U.c2p(j.xs,!0))),te}(C,u,h);if(!M||C.vis){var k,I=L.select("path.yerror");if(R.visible&&b(D.x)&&b(D.yh)&&b(D.ys)){var z=R.width;k="M"+(D.x-z)+","+D.yh+"h"+2*z+"m-"+z+",0V"+D.ys,D.noYS||(k+="m-"+z+",0h"+2*z),I.size()?m&&(I=I.transition().duration(a.duration).ease(a.easing)):I=L.append("path").style("vector-effect",v?"none":"non-scaling-stroke").classed("yerror",!0),I.attr("d",k)}else I.remove();var $=L.select("path.xerror");if(x.visible&&b(D.y)&&b(D.xh)&&b(D.xs)){var Q=(x.copy_ystyle?R:x).width;k="M"+D.xh+","+(D.y-Q)+"v"+2*Q+"m0,-"+Q+"H"+D.xs,D.noXS||(k+="m0,-"+Q+"v"+2*Q),$.size()?m&&($=$.transition().duration(a.duration).ease(a.easing)):$=L.append("path").style("vector-effect",v?"none":"non-scaling-stroke").classed("xerror",!0),$.attr("d",k)}else $.remove()}})}})}},92036:function(d,l,n){var c=n(33428),b=n(76308);d.exports=function(i){i.each(function(O){var w=O[0].trace,y=w.error_y||{},p=w.error_x||{},a=c.select(this);a.selectAll("path.yerror").style("stroke-width",y.thickness+"px").call(b.stroke,y.color),p.copy_ystyle&&(p=y),a.selectAll("path.xerror").style("stroke-width",p.thickness+"px").call(b.stroke,p.color)})}},55756:function(d,l,n){var c=n(25376),b=n(65460).hoverlabel,i=n(92880).extendFlat;d.exports={hoverlabel:{bgcolor:i({},b.bgcolor,{arrayOk:!0}),bordercolor:i({},b.bordercolor,{arrayOk:!0}),font:c({arrayOk:!0,editType:"none"}),align:i({},b.align,{arrayOk:!0}),namelength:i({},b.namelength,{arrayOk:!0}),editType:"none"}}},55056:function(d,l,n){var c=n(3400),b=n(24040);function i(O,w,y,p){p=p||c.identity,Array.isArray(O)&&(w[0][y]=p(O))}d.exports=function(O){var w=O.calcdata,y=O._fullLayout;function p(v){return function(_){return c.coerceHoverinfo({hoverinfo:_},{_module:v._module},y)}}for(var a=0;a=0&&u.indexLe[0]._length||bt<0||bt>We[0]._length)return v.unhoverRaw(_e,Se)}else vt="xpx"in Se?Se.xpx:Le[0]._length/2,bt="ypx"in Se?Se.ypx:We[0]._length/2;if(Se.pointerX=vt+Le[0]._offset,Se.pointerY=bt+We[0]._offset,nt="xval"in Se?A.flat(ze,Se.xval):A.p2c(Le,vt),ot="yval"in Se?A.flat(ze,Se.yval):A.p2c(We,bt),!b(nt[0])||!b(ot[0]))return O.warn("Fx.hover failed",Se,_e),v.unhoverRaw(_e,Se)}var zt=1/0;function Rt(Pn,Yn){for(ht=0;ht_t&&(nn.splice(0,_t),zt=nn[0].distance),$e&&je!==0&&nn.length===0){Ct.distance=je,Ct.index=!1;var Qr=wt._module.hoverPoints(Ct,en,Gt,"closest",{hoverLayer:De._hoverlayer});if(Qr&&(Qr=Qr.filter(function(zn){return zn.spikeDistance<=je})),Qr&&Qr.length){var Wr,bo=Qr.filter(function(zn){return zn.xa.showspikes&&zn.xa.spikesnap!=="hovered data"});if(bo.length){var Bn=bo[0];b(Bn.x0)&&b(Bn.y0)&&(Wr=at(Bn),(!bn.vLinePoint||bn.vLinePoint.spikeDistance>Wr.spikeDistance)&&(bn.vLinePoint=Wr))}var hr=Qr.filter(function(zn){return zn.ya.showspikes&&zn.ya.spikesnap!=="hovered data"});if(hr.length){var hn=hr[0];b(hn.x0)&&b(hn.y0)&&(Wr=at(hn),(!bn.hLinePoint||bn.hLinePoint.spikeDistance>Wr.spikeDistance)&&(bn.hLinePoint=Wr))}}}}}function it(Pn,Yn,br){for(var dr,Cr=null,io=1/0,Qr=0;Qr0&&Math.abs(Pn.distance)dn-1;vn--)In(nn[vn]);nn=Nn,Xt()}var jn=_e._hoverdata,xr=[],Sr=me(_e),ar=he(_e);for(Ge=0;Ge1||nn.length>1)||Ee==="closest"&&mn&&nn.length>1,so=m.combine(De.plot_bgcolor||m.background,De.paper_bgcolor),So=U(nn,{gd:_e,hovermode:Ee,rotateLabels:Co,bgColor:so,container:De._hoverlayer,outerContainer:De._paper.node(),commonLabelOpts:De.hoverlabel,hoverdistance:De.hoverdistance}),go=So.hoverLabels;if(A.isUnifiedHover(Ee)||(function(Pn,Yn,br,dr){var Cr,io,Qr,Wr,bo,Bn,hr,hn=Yn?"xa":"ya",zn=Yn?"ya":"xa",Zn=0,yr=1,gr=Pn.size(),vr=new Array(gr),nr=0,Qn=dr.minX,Hn=dr.maxX,tr=dr.minY,cr=dr.maxY,Lr=function(po){return po*br._invScaleX},Er=function(po){return po*br._invScaleY};function Vr(po){var qo=po[0],Ao=po[po.length-1];if(io=qo.pmin-qo.pos-qo.dp+qo.size,Qr=Ao.pos+Ao.dp+Ao.size-qo.pmax,io>.01){for(bo=po.length-1;bo>=0;bo--)po[bo].dp+=io;Cr=!1}if(!(Qr<.01)){if(io<-.01){for(bo=po.length-1;bo>=0;bo--)po[bo].dp-=Qr;Cr=!1}if(Cr){var oi=0;for(Wr=0;Wrqo.pmax&&oi++;for(Wr=po.length-1;Wr>=0&&!(oi<=0);Wr--)(Bn=po[Wr]).pos>qo.pmax-1&&(Bn.del=!0,oi--);for(Wr=0;Wr=0;bo--)po[bo].dp-=Qr;for(Wr=po.length-1;Wr>=0&&!(oi<=0);Wr--)(Bn=po[Wr]).pos+Bn.dp+Bn.size>qo.pmax&&(Bn.del=!0,oi--)}}}for(Pn.each(function(po){var qo=po[hn],Ao=po[zn],oi=qo._id.charAt(0)==="x",ko=qo.range;nr===0&&ko&&ko[0]>ko[1]!==oi&&(yr=-1);var ra=0,mo=oi?br.width:br.height;if(br.hovermode==="x"||br.hovermode==="y"){var Aa,Xl,Na=te(po,Yn),us=po.anchor,wc=us==="end"?-1:1;if(us==="middle")Xl=(Aa=po.crossPos+(oi?Er(Na.y-po.by/2):Lr(po.bx/2+po.tx2width/2)))+(oi?Er(po.by):Lr(po.bx));else if(oi)Xl=(Aa=po.crossPos+Er(k+Na.y)-Er(po.by/2-k))+Er(po.by);else{var ga=Lr(wc*k+Na.x),Ku=ga+Lr(wc*po.bx);Aa=po.crossPos+Math.min(ga,Ku),Xl=po.crossPos+Math.max(ga,Ku)}oi?tr!==void 0&&cr!==void 0&&Math.min(Xl,cr)-Math.max(Aa,tr)>1&&(Ao.side==="left"?(ra=Ao._mainLinePosition,mo=br.width):mo=Ao._mainLinePosition):Qn!==void 0&&Hn!==void 0&&Math.min(Xl,Hn)-Math.max(Aa,Qn)>1&&(Ao.side==="top"?(ra=Ao._mainLinePosition,mo=br.height):mo=Ao._mainLinePosition)}vr[nr++]=[{datum:po,traceIndex:po.trace.index,dp:0,pos:po.pos,posref:po.posref,size:po.by*(oi?C:1)/2,pmin:ra,pmax:mo}]}),vr.sort(function(po,qo){return po[0].posref-qo[0].posref||yr*(qo[0].traceIndex-po[0].traceIndex)});!Cr&&Zn<=gr;){for(Zn++,Cr=!0,Wr=0;Wr.01&&fr.pmin===Eo.pmin&&fr.pmax===Eo.pmax){for(bo=_o.length-1;bo>=0;bo--)_o[bo].dp+=io;for(to.push.apply(to,_o),vr.splice(Wr+1,1),hr=0,bo=to.length-1;bo>=0;bo--)hr+=to[bo].dp;for(Qr=hr/to.length,bo=to.length-1;bo>=0;bo--)to[bo].dp-=Qr;Cr=!1}else Wr++}vr.forEach(Vr)}for(Wr=vr.length-1;Wr>=0;Wr--){var ao=vr[Wr];for(bo=ao.length-1;bo>=0;bo--){var co=ao[bo],Go=co.datum;Go.offset=co.dp,Go.del=co.del}}}(go,Co,De,So.commonLabelBoundingBox),W(go,Co,De._invScaleX,De._invScaleY)),Ie&&Ie.tagName){var li=S.getComponentMethod("annotations","hasClickToShow")(_e,xr);u(c.select(Ie),li?"pointer":"")}Ie&&!Pe&&function(Pn,Yn,br){if(!br||br.length!==Pn._hoverdata.length)return!0;for(var dr=br.length-1;dr>=0;dr--){var Cr=br[dr],io=Pn._hoverdata[dr];if(Cr.curveNumber!==io.curveNumber||String(Cr.pointNumber)!==String(io.pointNumber)||String(Cr.pointNumbers)!==String(io.pointNumbers))return!0}return!1}(_e,0,jn)&&(jn&&_e.emit("plotly_unhover",{event:Se,points:jn}),_e.emit("plotly_hover",{event:Se,points:_e._hoverdata,xaxes:Le,yaxes:We,xvals:nt,yvals:ot}))})(ae,ce,de,ve,ye)})},l.loneHover=function(ae,ce){var de=!0;Array.isArray(ae)||(de=!1,ae=[ae]);var ve=ce.gd,ye=me(ve),_e=he(ve),Se=U(ae.map(function(Ie){var ze=Ie._x0||Ie.x0||Ie.x||0,De=Ie._x1||Ie.x1||Ie.x||0,He=Ie._y0||Ie.y0||Ie.y||0,Ve=Ie._y1||Ie.y1||Ie.y||0,$e=Ie.eventData;if($e){var Oe=Math.min(ze,De),ke=Math.max(ze,De),Le=Math.min(He,Ve),We=Math.max(He,Ve),Ue=Ie.trace;if(S.traceIs(Ue,"gl3d")){var Ze=ve._fullLayout[Ue.scene]._scene.container,Xe=Ze.offsetLeft,tt=Ze.offsetTop;Oe+=Xe,ke+=Xe,Le+=tt,We+=tt}$e.bbox={x0:Oe+_e,x1:ke+_e,y0:Le+ye,y1:We+ye},ce.inOut_bbox&&ce.inOut_bbox.push($e.bbox)}else $e=!1;return{color:Ie.color||m.defaultLine,x0:Ie.x0||Ie.x||0,x1:Ie.x1||Ie.x||0,y0:Ie.y0||Ie.y||0,y1:Ie.y1||Ie.y||0,xLabel:Ie.xLabel,yLabel:Ie.yLabel,zLabel:Ie.zLabel,text:Ie.text,name:Ie.name,idealAlign:Ie.idealAlign,borderColor:Ie.borderColor,fontFamily:Ie.fontFamily,fontSize:Ie.fontSize,fontColor:Ie.fontColor,nameLength:Ie.nameLength,textAlign:Ie.textAlign,trace:Ie.trace||{index:0,hoverinfo:""},xa:{_offset:0},ya:{_offset:0},index:0,hovertemplate:Ie.hovertemplate||!1,hovertemplateLabels:Ie.hovertemplateLabels||!1,eventData:$e}}),{gd:ve,hovermode:"closest",rotateLabels:!1,bgColor:ce.bgColor||m.background,container:c.select(ce.container),outerContainer:ce.outerContainer||ce.container}).hoverLabels,Te=0,Pe=0;return Se.sort(function(Ie,ze){return Ie.y0-ze.y0}).each(function(Ie,ze){var De=Ie.y0-Ie.by/2;Ie.offset=De-5([\s\S]*)<\/extra>/;function U(ae,ce){var de=ce.gd,ve=de._fullLayout,ye=ce.hovermode,_e=ce.rotateLabels,Se=ce.bgColor,Te=ce.container,Pe=ce.outerContainer,Ie=ce.commonLabelOpts||{};if(ae.length===0)return[[]];var ze=ce.fontFamily||x.HOVERFONT,De=ce.fontSize||x.HOVERFONTSIZE,He=ae[0],Ve=He.xa,$e=He.ya,Oe=ye.charAt(0),ke=Oe+"Label",Le=He[ke];if(Le===void 0&&Ve.type==="multicategory")for(var We=0;Weve.width-ar?(In=ve.width-ar,fn.attr("d","M"+(ar-k)+",0L"+ar+","+Sr+k+"v"+Sr+(2*I+xr.height)+"H-"+ar+"V"+Sr+k+"H"+(ar-2*k)+"Z")):fn.attr("d","M0,0L"+k+","+Sr+k+"H"+ar+"v"+Sr+(2*I+xr.height)+"H-"+ar+"V"+Sr+k+"H-"+k+"Z"),ht.minX=In-ar,ht.maxX=In+ar,Ve.side==="top"?(ht.minY=jn-(2*I+xr.height),ht.maxY=jn-I):(ht.minY=jn+I,ht.maxY=jn+(2*I+xr.height))}else{var Fn,ir,Wn;$e.side==="right"?(Fn="start",ir=1,Wn="",In=Ve._offset+Ve._length):(Fn="end",ir=-1,Wn="-",In=Ve._offset),jn=$e._offset+(He.y0+He.y1)/2,dn.attr("text-anchor",Fn),fn.attr("d","M0,0L"+Wn+k+","+k+"V"+(I+xr.height/2)+"h"+Wn+(2*I+xr.width)+"V-"+(I+xr.height/2)+"H"+Wn+k+"V-"+k+"Z"),ht.minY=jn-(I+xr.height/2),ht.maxY=jn+(I+xr.height/2),$e.side==="right"?(ht.minX=In+k,ht.maxX=In+k+(2*I+xr.width)):(ht.minX=In-k-(2*I+xr.width),ht.maxX=In-k);var Kn,_r=xr.height/2,Ir=Ze-xr.top-_r,zr="clip"+ve._uid+"commonlabel"+$e._id;if(In=0?bt:lt+Rt=0?lt:Qt+Rt=0?mn:vt+it=0?vt:Pt+it=0,Kt.idealAlign!=="top"&&Kr||!Co?Kr?(_r+=zr/2,Kt.anchor="start"):Kt.anchor="middle":(_r-=zr/2,Kt.anchor="end"),Kt.crossPos=_r;else{if(Kt.pos=_r,Kr=Kn+Ir/2+so<=Xe,Co=Kn-Ir/2-so>=0,Kt.idealAlign!=="left"&&Kr||!Co)if(Kr)Kn+=Ir/2,Kt.anchor="start";else{Kt.anchor="middle";var So=so/2,go=Kn+So-Xe,li=Kn-So;go>0&&(Kn-=go),li<0&&(Kn+=-li)}else Kn-=Ir/2,Kt.anchor="end";Kt.crossPos=Kn}Sr.attr("text-anchor",Kt.anchor),Fn&&ar.attr("text-anchor",Kt.anchor),fn.attr("transform",w(Kn,_r)+(_e?y(T):""))}),{hoverLabels:tn,commonLabelBoundingBox:ht}}function X(ae,ce,de,ve,ye,_e){var Se="",Te="";ae.nameOverride!==void 0&&(ae.name=ae.nameOverride),ae.name&&(ae.trace._meta&&(ae.name=O.templateString(ae.name,ae.trace._meta)),Se=Y(ae.name,ae.nameLength));var Pe=de.charAt(0),Ie=Pe==="x"?"y":"x";ae.zLabel!==void 0?(ae.xLabel!==void 0&&(Te+="x: "+ae.xLabel+"
"),ae.yLabel!==void 0&&(Te+="y: "+ae.yLabel+"
"),ae.trace.type!=="choropleth"&&ae.trace.type!=="choroplethmapbox"&&(Te+=(Te?"z: ":"")+ae.zLabel)):ce&&ae[Pe+"Label"]===ye?Te=ae[Ie+"Label"]||"":ae.xLabel===void 0?ae.yLabel!==void 0&&ae.trace.type!=="scattercarpet"&&(Te=ae.yLabel):Te=ae.yLabel===void 0?ae.xLabel:"("+ae.xLabel+", "+ae.yLabel+")",!ae.text&&ae.text!==0||Array.isArray(ae.text)||(Te+=(Te?"
":"")+ae.text),ae.extraText!==void 0&&(Te+=(Te?"
":"")+ae.extraText),_e&&Te===""&&!ae.hovertemplate&&(Se===""&&_e.remove(),Te=Se);var ze=ae.hovertemplate||!1;if(ze){var De=ae.hovertemplateLabels||ae;ae[Pe+"Label"]!==ye&&(De[Pe+"other"]=De[Pe+"Val"],De[Pe+"otherLabel"]=De[Pe+"Label"]),Te=(Te=O.hovertemplateString(ze,De,ve._d3locale,ae.eventData[0]||{},ae.trace._meta)).replace(j,function(He,Ve){return Se=Y(Ve,ae.nameLength),""})}return[Te,Se]}function te(ae,ce){var de=0,ve=ae.offset;return ce&&(ve*=-D,de=ae.offset*L),{x:de,y:ve}}function W(ae,ce,de,ve){var ye=function(Se){return Se*de},_e=function(Se){return Se*ve};ae.each(function(Se){var Te=c.select(this);if(Se.del)return Te.remove();var Pe,Ie,ze,De,He=Te.select("text.nums"),Ve=Se.anchor,$e=Ve==="end"?-1:1,Oe=(De=(ze=(Ie={start:1,end:-1,middle:0}[(Pe=Se).anchor])*(k+I))+Ie*(Pe.txwidth+I),Pe.anchor==="middle"&&(ze-=Pe.tx2width/2,De+=Pe.txwidth/2+I),{alignShift:Ie,textShiftX:ze,text2ShiftX:De}),ke=te(Se,ce),Le=ke.x,We=ke.y,Ue=Ve==="middle";Te.select("path").attr("d",Ue?"M-"+ye(Se.bx/2+Se.tx2width/2)+","+_e(We-Se.by/2)+"h"+ye(Se.bx)+"v"+_e(Se.by)+"h-"+ye(Se.bx)+"Z":"M0,0L"+ye($e*k+Le)+","+_e(k+We)+"v"+_e(Se.by/2-k)+"h"+ye($e*Se.bx)+"v-"+_e(Se.by)+"H"+ye($e*k+Le)+"V"+_e(We-k)+"Z");var Ze=Le+Oe.textShiftX,Xe=We+Se.ty0-Se.by/2+I,tt=Se.textAlign||"auto";tt!=="auto"&&(tt==="left"&&Ve!=="start"?(He.attr("text-anchor","start"),Ze=Ue?-Se.bx/2-Se.tx2width/2+I:-Se.bx-I):tt==="right"&&Ve!=="end"&&(He.attr("text-anchor","end"),Ze=Ue?Se.bx/2-Se.tx2width/2-I:Se.bx+I)),He.call(a.positionText,ye(Ze),_e(Xe)),Se.tx2width&&(Te.select("text.name").call(a.positionText,ye(Oe.text2ShiftX+Oe.alignShift*I+Le),_e(We+Se.ty0-Se.by/2+I)),Te.select("rect").call(h.setRect,ye(Oe.text2ShiftX+(Oe.alignShift-1)*Se.tx2width/2+Le),_e(We-Se.by/2-1),ye(Se.tx2width),_e(Se.by+2)))})}function K(ae,ce){var de=ae.index,ve=ae.trace||{},ye=ae.cd[0],_e=ae.cd[de]||{};function Se(He){return He||b(He)&&He===0}var Te=Array.isArray(de)?function(He,Ve){var $e=O.castOption(ye,de,He);return Se($e)?$e:O.extractOption({},ve,"",Ve)}:function(He,Ve){return O.extractOption(_e,ve,He,Ve)};function Pe(He,Ve,$e){var Oe=Te(Ve,$e);Se(Oe)&&(ae[He]=Oe)}if(Pe("hoverinfo","hi","hoverinfo"),Pe("bgcolor","hbg","hoverlabel.bgcolor"),Pe("borderColor","hbc","hoverlabel.bordercolor"),Pe("fontFamily","htf","hoverlabel.font.family"),Pe("fontSize","hts","hoverlabel.font.size"),Pe("fontColor","htc","hoverlabel.font.color"),Pe("nameLength","hnl","hoverlabel.namelength"),Pe("textAlign","hta","hoverlabel.align"),ae.posref=ce==="y"||ce==="closest"&&ve.orientation==="h"?ae.xa._offset+(ae.x0+ae.x1)/2:ae.ya._offset+(ae.y0+ae.y1)/2,ae.x0=O.constrain(ae.x0,0,ae.xa._length),ae.x1=O.constrain(ae.x1,0,ae.xa._length),ae.y0=O.constrain(ae.y0,0,ae.ya._length),ae.y1=O.constrain(ae.y1,0,ae.ya._length),ae.xLabelVal!==void 0&&(ae.xLabel="xLabel"in ae?ae.xLabel:_.hoverLabelText(ae.xa,ae.xLabelVal,ve.xhoverformat),ae.xVal=ae.xa.c2d(ae.xLabelVal)),ae.yLabelVal!==void 0&&(ae.yLabel="yLabel"in ae?ae.yLabel:_.hoverLabelText(ae.ya,ae.yLabelVal,ve.yhoverformat),ae.yVal=ae.ya.c2d(ae.yLabelVal)),ae.zLabelVal!==void 0&&ae.zLabel===void 0&&(ae.zLabel=String(ae.zLabelVal)),!(isNaN(ae.xerr)||ae.xa.type==="log"&&ae.xerr<=0)){var Ie=_.tickText(ae.xa,ae.xa.c2l(ae.xerr),"hover").text;ae.xerrneg!==void 0?ae.xLabel+=" +"+Ie+" / -"+_.tickText(ae.xa,ae.xa.c2l(ae.xerrneg),"hover").text:ae.xLabel+=" ± "+Ie,ce==="x"&&(ae.distance+=1)}if(!(isNaN(ae.yerr)||ae.ya.type==="log"&&ae.yerr<=0)){var ze=_.tickText(ae.ya,ae.ya.c2l(ae.yerr),"hover").text;ae.yerrneg!==void 0?ae.yLabel+=" +"+ze+" / -"+_.tickText(ae.ya,ae.ya.c2l(ae.yerrneg),"hover").text:ae.yLabel+=" ± "+ze,ce==="y"&&(ae.distance+=1)}var De=ae.hoverinfo||ae.trace.hoverinfo;return De&&De!=="all"&&((De=Array.isArray(De)?De:De.split("+")).indexOf("x")===-1&&(ae.xLabel=void 0),De.indexOf("y")===-1&&(ae.yLabel=void 0),De.indexOf("z")===-1&&(ae.zLabel=void 0),De.indexOf("text")===-1&&(ae.text=void 0),De.indexOf("name")===-1&&(ae.name=void 0)),ae}function oe(ae,ce,de){var ve,ye,_e=de.container,Se=de.fullLayout,Te=Se._size,Pe=de.event,Ie=!!ce.hLinePoint,ze=!!ce.vLinePoint;if(_e.selectAll(".spikeline").remove(),ze||Ie){var De=m.combine(Se.plot_bgcolor,Se.paper_bgcolor);if(Ie){var He,Ve,$e=ce.hLinePoint;ve=$e&&$e.xa,(ye=$e&&$e.ya).spikesnap==="cursor"?(He=Pe.pointerX,Ve=Pe.pointerY):(He=ve._offset+$e.x,Ve=ye._offset+$e.y);var Oe,ke,Le=i.readability($e.color,De)<1.5?m.contrast(De):$e.color,We=ye.spikemode,Ue=ye.spikethickness,Ze=ye.spikecolor||Le,Xe=_.getPxPosition(ae,ye);if(We.indexOf("toaxis")!==-1||We.indexOf("across")!==-1){if(We.indexOf("toaxis")!==-1&&(Oe=Xe,ke=He),We.indexOf("across")!==-1){var tt=ye._counterDomainMin,Ee=ye._counterDomainMax;ye.anchor==="free"&&(tt=Math.min(tt,ye.position),Ee=Math.max(Ee,ye.position)),Oe=Te.l+tt*Te.w,ke=Te.l+Ee*Te.w}_e.insert("line",":first-child").attr({x1:Oe,x2:ke,y1:Ve,y2:Ve,"stroke-width":Ue,stroke:Ze,"stroke-dasharray":h.dashStyle(ye.spikedash,Ue)}).classed("spikeline",!0).classed("crisp",!0),_e.insert("line",":first-child").attr({x1:Oe,x2:ke,y1:Ve,y2:Ve,"stroke-width":Ue+2,stroke:De}).classed("spikeline",!0).classed("crisp",!0)}We.indexOf("marker")!==-1&&_e.insert("circle",":first-child").attr({cx:Xe+(ye.side!=="right"?Ue:-Ue),cy:Ve,r:Ue,fill:Ze}).classed("spikeline",!0)}if(ze){var Ne,je,nt=ce.vLinePoint;ve=nt&&nt.xa,ye=nt&&nt.ya,ve.spikesnap==="cursor"?(Ne=Pe.pointerX,je=Pe.pointerY):(Ne=ve._offset+nt.x,je=ye._offset+nt.y);var ot,Ge,ht=i.readability(nt.color,De)<1.5?m.contrast(De):nt.color,pt=ve.spikemode,wt=ve.spikethickness,Dt=ve.spikecolor||ht,It=_.getPxPosition(ae,ve);if(pt.indexOf("toaxis")!==-1||pt.indexOf("across")!==-1){if(pt.indexOf("toaxis")!==-1&&(ot=It,Ge=je),pt.indexOf("across")!==-1){var qt=ve._counterDomainMin,en=ve._counterDomainMax;ve.anchor==="free"&&(qt=Math.min(qt,ve.position),en=Math.max(en,ve.position)),ot=Te.t+(1-en)*Te.h,Ge=Te.t+(1-qt)*Te.h}_e.insert("line",":first-child").attr({x1:Ne,x2:Ne,y1:ot,y2:Ge,"stroke-width":wt,stroke:Dt,"stroke-dasharray":h.dashStyle(ve.spikedash,wt)}).classed("spikeline",!0).classed("crisp",!0),_e.insert("line",":first-child").attr({x1:Ne,x2:Ne,y1:ot,y2:Ge,"stroke-width":wt+2,stroke:De}).classed("spikeline",!0).classed("crisp",!0)}pt.indexOf("marker")!==-1&&_e.insert("circle",":first-child").attr({cx:Ne,cy:It-(ve.side!=="top"?wt:-wt),r:wt,fill:Dt}).classed("spikeline",!0)}}}function q(ae,ce){return!ce||ce.vLinePoint!==ae._spikepoints.vLinePoint||ce.hLinePoint!==ae._spikepoints.hLinePoint}function Y(ae,ce){return a.plainText(ae||"",{len:ce,allowedTags:["br","sub","sup","b","i","em"]})}function ee(ae,ce,de){var ve=ce[ae+"a"],ye=ce[ae+"Val"],_e=ce.cd[0];if(ve.type==="category"||ve.type==="multicategory")ye=ve._categoriesMap[ye];else if(ve.type==="date"){var Se=ce.trace[ae+"periodalignment"];if(Se){var Te=ce.cd[ce.index],Pe=Te[ae+"Start"];Pe===void 0&&(Pe=Te[ae]);var Ie=Te[ae+"End"];Ie===void 0&&(Ie=Te[ae]);var ze=Ie-Pe;Se==="end"?ye+=ze:Se==="middle"&&(ye+=ze/2)}ye=ve.d2c(ye)}return _e&&_e.t&&_e.t.posLetter===ve._id&&(de.boxmode!=="group"&&de.violinmode!=="group"||(ye+=_e.t.dPos)),ye}function me(ae){return ae.offsetTop+ae.clientTop}function he(ae){return ae.offsetLeft+ae.clientLeft}function se(ae,ce){var de=ae._fullLayout,ve=ce.getBoundingClientRect(),ye=ve.left,_e=ve.top,Se=ye+ve.width,Te=_e+ve.height,Pe=O.apply3DTransform(de._invTransform)(ye,_e),Ie=O.apply3DTransform(de._invTransform)(Se,Te),ze=Pe[0],De=Pe[1],He=Ie[0],Ve=Ie[1];return{x:ze,y:De,width:He-ze,height:Ve-De,top:Math.min(De,Ve),left:Math.min(ze,He),right:Math.max(ze,He),bottom:Math.max(De,Ve)}}},16132:function(d,l,n){var c=n(3400),b=n(76308),i=n(10624).isUnifiedHover;d.exports=function(O,w,y,p){p=p||{};var a=w.legend;function u(h){p.font[h]||(p.font[h]=a?w.legend.font[h]:w.font[h])}w&&i(w.hovermode)&&(p.font||(p.font={}),u("size"),u("family"),u("color"),a?(p.bgcolor||(p.bgcolor=b.combine(w.legend.bgcolor,w.paper_bgcolor)),p.bordercolor||(p.bordercolor=w.legend.bordercolor)):p.bgcolor||(p.bgcolor=w.paper_bgcolor)),y("hoverlabel.bgcolor",p.bgcolor),y("hoverlabel.bordercolor",p.bordercolor),y("hoverlabel.namelength",p.namelength),c.coerceFont(y,"hoverlabel.font",p.font),y("hoverlabel.align",p.align)}},41008:function(d,l,n){var c=n(3400),b=n(65460);d.exports=function(i,O){function w(y,p){return O[y]!==void 0?O[y]:c.coerce(i,O,b,y,p)}return w("clickmode"),w("hovermode")}},93024:function(d,l,n){var c=n(33428),b=n(3400),i=n(86476),O=n(10624),w=n(65460),y=n(83292);d.exports={moduleType:"component",name:"fx",constants:n(92456),schema:{layout:w},attributes:n(55756),layoutAttributes:w,supplyLayoutGlobalDefaults:n(81976),supplyDefaults:n(95448),supplyLayoutDefaults:n(88336),calc:n(55056),getDistanceFunction:O.getDistanceFunction,getClosest:O.getClosest,inbox:O.inbox,quadrature:O.quadrature,appendArrayPointValue:O.appendArrayPointValue,castHoverOption:function(p,a,u){return b.castOption(p,a,"hoverlabel."+u)},castHoverinfo:function(p,a,u){return b.castOption(p,u,"hoverinfo",function(h){return b.coerceHoverinfo({hoverinfo:h},{_module:p._module},a)})},hover:y.hover,unhover:i.unhover,loneHover:y.loneHover,loneUnhover:function(p){var a=b.isD3Selection(p)?p:c.select(p);a.selectAll("g.hovertext").remove(),a.selectAll(".spikeline").remove()},click:n(62376)}},65460:function(d,l,n){var c=n(92456),b=n(25376),i=b({editType:"none"});i.family.dflt=c.HOVERFONT,i.size.dflt=c.HOVERFONTSIZE,d.exports={clickmode:{valType:"flaglist",flags:["event","select"],dflt:"event",editType:"plot",extras:["none"]},dragmode:{valType:"enumerated",values:["zoom","pan","select","lasso","drawclosedpath","drawopenpath","drawline","drawrect","drawcircle","orbit","turntable",!1],dflt:"zoom",editType:"modebar"},hovermode:{valType:"enumerated",values:["x","y","closest",!1,"x unified","y unified"],dflt:"closest",editType:"modebar"},hoverdistance:{valType:"integer",min:-1,dflt:20,editType:"none"},spikedistance:{valType:"integer",min:-1,dflt:-1,editType:"none"},hoverlabel:{bgcolor:{valType:"color",editType:"none"},bordercolor:{valType:"color",editType:"none"},font:i,grouptitlefont:b({editType:"none"}),align:{valType:"enumerated",values:["left","right","auto"],dflt:"auto",editType:"none"},namelength:{valType:"integer",min:-1,dflt:15,editType:"none"},editType:"none"},selectdirection:{valType:"enumerated",values:["h","v","d","any"],dflt:"any",editType:"none"}}},88336:function(d,l,n){var c=n(3400),b=n(65460),i=n(41008),O=n(16132);d.exports=function(w,y){function p(m,v){return c.coerce(w,y,b,m,v)}i(w,y)&&(p("hoverdistance"),p("spikedistance")),p("dragmode")==="select"&&p("selectdirection");var a=y._has("mapbox"),u=y._has("geo"),h=y._basePlotModules.length;y.dragmode==="zoom"&&((a||u)&&h===1||a&&u&&h===2)&&(y.dragmode="pan"),O(w,y,p),c.coerceFont(p,"hoverlabel.grouptitlefont",y.hoverlabel.font)}},81976:function(d,l,n){var c=n(3400),b=n(16132),i=n(65460);d.exports=function(O,w){b(O,w,function(y,p){return c.coerce(O,w,i,y,p)})}},12704:function(d,l,n){var c=n(3400),b=n(53756).counter,i=n(86968).u,O=n(33816).idRegex,w=n(31780),y={rows:{valType:"integer",min:1,editType:"plot"},roworder:{valType:"enumerated",values:["top to bottom","bottom to top"],dflt:"top to bottom",editType:"plot"},columns:{valType:"integer",min:1,editType:"plot"},subplots:{valType:"info_array",freeLength:!0,dimensions:2,items:{valType:"enumerated",values:[b("xy").toString(),""],editType:"plot"},editType:"plot"},xaxes:{valType:"info_array",freeLength:!0,items:{valType:"enumerated",values:[O.x.toString(),""],editType:"plot"},editType:"plot"},yaxes:{valType:"info_array",freeLength:!0,items:{valType:"enumerated",values:[O.y.toString(),""],editType:"plot"},editType:"plot"},pattern:{valType:"enumerated",values:["independent","coupled"],dflt:"coupled",editType:"plot"},xgap:{valType:"number",min:0,max:1,editType:"plot"},ygap:{valType:"number",min:0,max:1,editType:"plot"},domain:i({name:"grid",editType:"plot",noGridCell:!0},{}),xside:{valType:"enumerated",values:["bottom","bottom plot","top plot","top"],dflt:"bottom plot",editType:"plot"},yside:{valType:"enumerated",values:["left","left plot","right plot","right"],dflt:"left plot",editType:"plot"},editType:"plot"};function p(h,m,v){var _=m[v+"axes"],S=Object.keys((h._splomAxes||{})[v]||{});return Array.isArray(_)?_:S.length?S:void 0}function a(h,m,v,_,S,A){var x=m(h+"gap",v),R=m("domain."+h);m(h+"side",_);for(var M=new Array(S),T=R[0],E=(R[1]-T)/(S-x),C=E*(1-x),L=0;L1){R||M||T||j("pattern")==="independent"&&(R=!0),C._hasSubplotGrid=R;var k,I,z=j("roworder")==="top to bottom",$=R?.2:.1,Q=R?.3:.1;E&&m._splomGridDflt&&(k=m._splomGridDflt.xside,I=m._splomGridDflt.yside),C._domains={x:a("x",j,$,k,D),y:a("y",j,Q,I,L,z)}}else delete m.grid}function j(U,X){return c.coerce(v,C,y,U,X)}},contentDefaults:function(h,m){var v=m.grid;if(v&&v._domains){var _,S,A,x,R,M,T,E=h.grid||{},C=m._subplots,L=v._hasSubplotGrid,D=v.rows,k=v.columns,I=v.pattern==="independent",z=v._axisMap={};if(L){var $=E.subplots||[];M=v.subplots=new Array(D);var Q=1;for(_=0;_(u==="legend"?1:0));if(Q===!1&&(m[u]=void 0),(Q!==!1||_.uirevision)&&(A("uirevision",m.uirevision),Q!==!1)){A("borderwidth");var j,U,X,te=A("orientation")==="h",W=A("yref")==="paper",K=A("xref")==="paper",oe="left";if(te?(j=0,c.getComponentMethod("rangeslider","isVisible")(h.xaxis)?W?(U=1.1,X="bottom"):(U=1,X="top"):W?(U=-.1,X="top"):(U=0,X="bottom")):(U=1,X="auto",K?j=1.02:(j=1,oe="right")),b.coerce(_,S,{x:{valType:"number",editType:"legend",min:K?-2:0,max:K?3:1,dflt:j}},"x"),b.coerce(_,S,{y:{valType:"number",editType:"legend",min:W?-2:0,max:W?3:1,dflt:U}},"y"),A("traceorder",D),p.isGrouped(m[u])&&A("tracegroupgap"),A("entrywidth"),A("entrywidthmode"),A("itemsizing"),A("itemwidth"),A("itemclick"),A("itemdoubleclick"),A("groupclick"),A("xanchor",oe),A("yanchor",X),A("valign"),b.noneOrAll(_,S,["x","y"]),A("title.text")){A("title.side",te?"left":"top");var q=b.extendFlat({},x,{size:b.bigFont(x.size)});b.coerceFont(A,"title.font",q)}}}}d.exports=function(u,h,m){var v,_=m.slice(),S=h.shapes;if(S)for(v=0;v1)}var ve=q.hiddenlabels||[];if(!(ee||q.showlegend&&me.length))return K.selectAll("."+Y).remove(),q._topdefs.select("#"+W).remove(),i.autoMargin(X,Y);var ye=b.ensureSingle(K,"g",Y,function(Ve){ee||Ve.attr("pointer-events","all")}),_e=b.ensureSingleById(q._topdefs,"clipPath",W,function(Ve){Ve.append("rect")}),Se=b.ensureSingle(ye,"rect","bg",function(Ve){Ve.attr("shape-rendering","crispEdges")});Se.call(a.stroke,oe.bordercolor).call(a.fill,oe.bgcolor).style("stroke-width",oe.borderwidth+"px");var Te,Pe=b.ensureSingle(ye,"g","scrollbox"),Ie=oe.title;oe._titleWidth=0,oe._titleHeight=0,Ie.text?((Te=b.ensureSingle(Pe,"text",Y+"titletext")).attr("text-anchor","start").call(p.font,Ie.font).text(Ie.text),$(Te,Pe,X,oe,T)):Pe.selectAll("."+Y+"titletext").remove();var ze=b.ensureSingle(ye,"rect","scrollbar",function(Ve){Ve.attr(m.scrollBarEnterAttrs).call(a.fill,m.scrollBarColor)}),De=Pe.selectAll("g.groups").data(me);De.enter().append("g").attr("class","groups"),De.exit().remove();var He=De.selectAll("g.traces").data(b.identity);He.enter().append("g").attr("class","traces"),He.exit().remove(),He.style("opacity",function(Ve){var $e=Ve[0].trace;return O.traceIs($e,"pie-like")?ve.indexOf(Ve[0].label)!==-1?.5:1:$e.visible==="legendonly"?.5:1}).each(function(){c.select(this).call(k,X,oe)}).call(R,X,oe).each(function(){ee||c.select(this).call(z,X,Y)}),b.syncOrAsync([i.previousPromises,function(){return function(Ve,$e,Oe,ke){var Le=Ve._fullLayout,We=U(ke);ke||(ke=Le[We]);var Ue=Le._size,Ze=M.isVertical(ke),Xe=M.isGrouped(ke),tt=ke.entrywidthmode==="fraction",Ee=ke.borderwidth,Ne=2*Ee,je=m.itemGap,nt=ke.itemwidth+2*je,ot=2*(Ee+je),Ge=j(ke),ht=ke.y<0||ke.y===0&&Ge==="top",pt=ke.y>1||ke.y===1&&Ge==="bottom",wt=ke.tracegroupgap,Dt={};ke._maxHeight=Math.max(ht||pt?Le.height/2:Ue.h,30);var It=0;ke._width=0,ke._height=0;var qt=function(Xt){var Yt=0,Qt=0,Pt=Xt.title.side;return Pt&&(Pt.indexOf("left")!==-1&&(Yt=Xt._titleWidth),Pt.indexOf("top")!==-1&&(Qt=Xt._titleHeight)),[Yt,Qt]}(ke);if(Ze)Oe.each(function(Xt){var Yt=Xt[0].height;p.setTranslate(this,Ee+qt[0],Ee+qt[1]+ke._height+Yt/2+je),ke._height+=Yt,ke._width=Math.max(ke._width,Xt[0].width)}),It=nt+ke._width,ke._width+=je+nt+Ne,ke._height+=ot,Xe&&($e.each(function(Xt,Yt){p.setTranslate(this,0,Yt*ke.tracegroupgap)}),ke._height+=(ke._lgroupsLength-1)*ke.tracegroupgap);else{var en=Q(ke),Gt=ke.x<0||ke.x===0&&en==="right",Ct=ke.x>1||ke.x===1&&en==="left",_t=pt||ht,nn=Le.width/2;ke._maxWidth=Math.max(Gt?_t&&en==="left"?Ue.l+Ue.w:nn:Ct?_t&&en==="right"?Ue.r+Ue.w:nn:Ue.w,2*nt);var gn=0,bn=0;Oe.each(function(Xt){var Yt=L(Xt,ke,nt);gn=Math.max(gn,Yt),bn+=Yt}),It=null;var mn=0;if(Xe){var vt=0,bt=0,lt=0;$e.each(function(){var Xt=0,Yt=0;c.select(this).selectAll("g.traces").each(function(Pt){var tn=L(Pt,ke,nt),Kt=Pt[0].height;p.setTranslate(this,qt[0],qt[1]+Ee+je+Kt/2+Yt),Yt+=Kt,Xt=Math.max(Xt,tn),Dt[Pt[0].trace.legendgroup]=Xt});var Qt=Xt+je;bt>0&&Qt+Ee+bt>ke._maxWidth?(mn=Math.max(mn,bt),bt=0,lt+=vt+wt,vt=Yt):vt=Math.max(vt,Yt),p.setTranslate(this,bt,lt),bt+=Qt}),ke._width=Math.max(mn,bt)+Ee,ke._height=lt+vt+ot}else{var yt=Oe.size(),zt=bn+Ne+(yt-1)*je=ke._maxWidth&&(mn=Math.max(mn,Lt),it=0,at+=Rt,ke._height+=Rt,Rt=0),p.setTranslate(this,qt[0]+Ee+it,qt[1]+Ee+at+Yt/2+je),Lt=it+Qt+je,it+=Pt,Rt=Math.max(Rt,Yt)}),zt?(ke._width=it+Ne,ke._height=Rt+ot):(ke._width=Math.max(mn,Lt)+Ne,ke._height+=Rt+ot)}}ke._width=Math.ceil(Math.max(ke._width+qt[0],ke._titleWidth+2*(Ee+m.titlePad))),ke._height=Math.ceil(Math.max(ke._height+qt[1],ke._titleHeight+2*(Ee+m.itemGap))),ke._effHeight=Math.min(ke._height,ke._maxHeight);var xt=Ve._context.edits,Zt=xt.legendText||xt.legendPosition;Oe.each(function(Xt){var Yt=c.select(this).select("."+We+"toggle"),Qt=Xt[0].height,Pt=Xt[0].trace.legendgroup,tn=L(Xt,ke,nt);Xe&&Pt!==""&&(tn=Dt[Pt]);var Kt=Zt?nt:It||tn;Ze||tt||(Kt+=je/2),p.setRect(Yt,0,-Qt/2,Kt,Qt)})}(X,De,He,oe)},function(){var Ve,$e,Oe,ke,Le=q._size,We=oe.borderwidth,Ue=oe.xref==="paper",Ze=oe.yref==="paper";if(Ie.text&&function(_t,nn,gn){if(nn.title.side==="top center"||nn.title.side==="top right"){var bn=nn.title.font.size*_,mn=0,vt=_t.node(),bt=p.bBox(vt).width;nn.title.side==="top center"?mn=.5*(nn._width-2*gn-2*m.titlePad-bt):nn.title.side==="top right"&&(mn=nn._width-2*gn-2*m.titlePad-bt),u.positionText(_t,gn+m.titlePad+mn,gn+bn)}}(Te,oe,We),!ee){var Xe,tt;Xe=Ue?Le.l+Le.w*oe.x-S[Q(oe)]*oe._width:q.width*oe.x-S[Q(oe)]*oe._width,tt=Ze?Le.t+Le.h*(1-oe.y)-S[j(oe)]*oe._effHeight:q.height*(1-oe.y)-S[j(oe)]*oe._effHeight;var Ee=function(_t,nn,gn,bn){var mn=_t._fullLayout,vt=mn[nn],bt=Q(vt),lt=j(vt),yt=vt.xref==="paper",zt=vt.yref==="paper";_t._fullLayout._reservedMargin[nn]={};var Rt=vt.y<.5?"b":"t",it=vt.x<.5?"l":"r",at={r:mn.width-gn,l:gn+vt._width,b:mn.height-bn,t:bn+vt._effHeight};if(yt&&zt)return i.autoMargin(_t,nn,{x:vt.x,y:vt.y,l:vt._width*S[bt],r:vt._width*A[bt],b:vt._effHeight*A[lt],t:vt._effHeight*S[lt]});yt?_t._fullLayout._reservedMargin[nn][Rt]=at[Rt]:zt||vt.orientation==="v"?_t._fullLayout._reservedMargin[nn][it]=at[it]:_t._fullLayout._reservedMargin[nn][Rt]=at[Rt]}(X,Y,Xe,tt);if(Ee)return;if(q.margin.autoexpand){var Ne=Xe,je=tt;Xe=Ue?b.constrain(Xe,0,q.width-oe._width):Ne,tt=Ze?b.constrain(tt,0,q.height-oe._effHeight):je,Xe!==Ne&&b.log("Constrain "+Y+".x to make legend fit inside graph"),tt!==je&&b.log("Constrain "+Y+".y to make legend fit inside graph")}p.setTranslate(ye,Xe,tt)}if(ze.on(".drag",null),ye.on("wheel",null),ee||oe._height<=oe._maxHeight||X._context.staticPlot){var nt=oe._effHeight;ee&&(nt=oe._height),Se.attr({width:oe._width-We,height:nt-We,x:We/2,y:We/2}),p.setTranslate(Pe,0,0),_e.select("rect").attr({width:oe._width-2*We,height:nt-2*We,x:We,y:We}),p.setClipUrl(Pe,W,X),p.setRect(ze,0,0,0,0),delete oe._scrollY}else{var ot,Ge,ht,pt=Math.max(m.scrollBarMinHeight,oe._effHeight*oe._effHeight/oe._height),wt=oe._effHeight-pt-2*m.scrollBarMargin,Dt=oe._height-oe._effHeight,It=wt/Dt,qt=Math.min(oe._scrollY||0,Dt);Se.attr({width:oe._width-2*We+m.scrollBarWidth+m.scrollBarMargin,height:oe._effHeight-We,x:We/2,y:We/2}),_e.select("rect").attr({width:oe._width-2*We+m.scrollBarWidth+m.scrollBarMargin,height:oe._effHeight-2*We,x:We,y:We+qt}),p.setClipUrl(Pe,W,X),Ct(qt,pt,It),ye.on("wheel",function(){Ct(qt=b.constrain(oe._scrollY+c.event.deltaY/wt*Dt,0,Dt),pt,It),qt!==0&&qt!==Dt&&c.event.preventDefault()});var en=c.behavior.drag().on("dragstart",function(){var _t=c.event.sourceEvent;ot=_t.type==="touchstart"?_t.changedTouches[0].clientY:_t.clientY,ht=qt}).on("drag",function(){var _t=c.event.sourceEvent;_t.buttons===2||_t.ctrlKey||(Ge=_t.type==="touchmove"?_t.changedTouches[0].clientY:_t.clientY,qt=function(nn,gn,bn){var mn=(bn-gn)/It+nn;return b.constrain(mn,0,Dt)}(ht,ot,Ge),Ct(qt,pt,It))});ze.call(en);var Gt=c.behavior.drag().on("dragstart",function(){var _t=c.event.sourceEvent;_t.type==="touchstart"&&(ot=_t.changedTouches[0].clientY,ht=qt)}).on("drag",function(){var _t=c.event.sourceEvent;_t.type==="touchmove"&&(Ge=_t.changedTouches[0].clientY,qt=function(nn,gn,bn){var mn=(gn-bn)/It+nn;return b.constrain(mn,0,Dt)}(ht,ot,Ge),Ct(qt,pt,It))});Pe.call(Gt)}function Ct(_t,nn,gn){oe._scrollY=X._fullLayout[Y]._scrollY=_t,p.setTranslate(Pe,0,-_t),p.setRect(ze,oe._width,m.scrollBarMargin+_t*gn,m.scrollBarWidth,nn),_e.select("rect").attr("y",We+_t)}X._context.edits.legendPosition&&(ye.classed("cursor-move",!0),y.init({element:ye.node(),gd:X,prepFn:function(){var _t=p.getTranslate(ye);Oe=_t.x,ke=_t.y},moveFn:function(_t,nn){var gn=Oe+_t,bn=ke+nn;p.setTranslate(ye,gn,bn),Ve=y.align(gn,oe._width,Le.l,Le.l+Le.w,oe.xanchor),$e=y.align(bn+oe._height,-oe._height,Le.t+Le.h,Le.t,oe.yanchor)},doneFn:function(){if(Ve!==void 0&&$e!==void 0){var _t={};_t[Y+".x"]=Ve,_t[Y+".y"]=$e,O.call("_guiRelayout",X,_t)}},clickFn:function(_t,nn){var gn=K.selectAll("g.traces").filter(function(){var bn=this.getBoundingClientRect();return nn.clientX>=bn.left&&nn.clientX<=bn.right&&nn.clientY>=bn.top&&nn.clientY<=bn.bottom});gn.size()>0&&D(X,ye,gn,_t,nn)}}))}],X)}}function L(X,te,W){var K=X[0],oe=K.width,q=te.entrywidthmode,Y=K.trace.legendwidth||te.entrywidth;return q==="fraction"?te._maxWidth*Y:W+(Y||oe)}function D(X,te,W,K,oe){var q=W.data()[0][0].trace,Y={event:oe,node:W.node(),curveNumber:q.index,expandedIndex:q._expandedIndex,data:X.data,layout:X.layout,frames:X._transitionData._frames,config:X._context,fullData:X._fullData,fullLayout:X._fullLayout};q._group&&(Y.group=q._group),O.traceIs(q,"pie-like")&&(Y.label=W.datum()[0].label);var ee=w.triggerHandler(X,"plotly_legendclick",Y);if(K===1){if(ee===!1)return;te._clickTimeout=setTimeout(function(){X._fullLayout&&h(W,X,K)},X._context.doubleClickDelay)}else K===2&&(te._clickTimeout&&clearTimeout(te._clickTimeout),X._legendMouseDownTime=0,w.triggerHandler(X,"plotly_legenddoubleclick",Y)!==!1&&ee!==!1&&h(W,X,K))}function k(X,te,W){var K,oe,q=U(W),Y=X.data()[0][0],ee=Y.trace,me=O.traceIs(ee,"pie-like"),he=!W._inHover&&te._context.edits.legendText&&!me,se=W._maxNameLength;Y.groupTitle?(K=Y.groupTitle.text,oe=Y.groupTitle.font):(oe=W.font,W.entries?K=Y.text:(K=me?Y.label:ee.name,ee._meta&&(K=b.templateString(K,ee._meta))));var ae=b.ensureSingle(X,"text",q+"text");ae.attr("text-anchor","start").call(p.font,oe).text(he?I(K,se):K);var ce=W.itemwidth+2*m.itemGap;u.positionText(ae,ce,0),he?ae.call(u.makeEditable,{gd:te,text:K}).call($,X,te,W).on("edit",function(de){this.text(I(de,se)).call($,X,te,W);var ve=Y.trace._fullInput||{},ye={};if(O.hasTransform(ve,"groupby")){var _e=O.getTransformIndices(ve,"groupby"),Se=_e[_e.length-1],Te=b.keyedContainer(ve,"transforms["+Se+"].styles","target","value.name");Te.set(Y.trace._group,de),ye=Te.constructUpdate()}else ye.name=de;return ve._isShape?O.call("_guiRelayout",te,"shapes["+ee.index+"].name",ye.name):O.call("_guiRestyle",te,ye,ee.index)}):$(ae,X,te,W)}function I(X,te){var W=Math.max(4,te);if(X&&X.trim().length>=W/2)return X;for(var K=W-(X=X||"").length;K>0;K--)X+=" ";return X}function z(X,te,W){var K,oe=te._context.doubleClickDelay,q=1,Y=b.ensureSingle(X,"rect",W+"toggle",function(ee){te._context.staticPlot||ee.style("cursor","pointer").attr("pointer-events","all"),ee.call(a.fill,"rgba(0,0,0,0)")});te._context.staticPlot||(Y.on("mousedown",function(){(K=new Date().getTime())-te._legendMouseDownTimeoe&&(q=Math.max(q-1,1)),D(te,ee,X,q,c.event)}}))}function $(X,te,W,K,oe){K._inHover&&X.attr("data-notex",!0),u.convertToTspans(X,W,function(){(function(q,Y,ee,me){var he=q.data()[0][0];if(ee._inHover||!he||he.trace.showlegend){var se=q.select("g[class*=math-group]"),ae=se.node(),ce=U(ee);ee||(ee=Y._fullLayout[ce]);var de,ve,ye=ee.borderwidth,_e=(me===T?ee.title.font:he.groupTitle?he.groupTitle.font:ee.font).size*_;if(ae){var Se=p.bBox(ae);de=Se.height,ve=Se.width,me===T?p.setTranslate(se,ye,ye+.75*de):p.setTranslate(se,0,.25*de)}else{var Te="."+ce+(me===T?"title":"")+"text",Pe=q.select(Te),Ie=u.lineCount(Pe),ze=Pe.node();if(de=_e*Ie,ve=ze?p.bBox(ze).width:0,me===T)ee.title.side==="left"&&(ve+=2*m.itemGap),u.positionText(Pe,ye+m.titlePad,ye+_e);else{var De=2*m.itemGap+ee.itemwidth;he.groupTitle&&(De=m.itemGap,ve-=ee.itemwidth),u.positionText(Pe,De,-_e*((Ie-1)/2-.3))}}me===T?(ee._titleWidth=ve,ee._titleHeight=de):(he.lineHeight=_e,he.height=Math.max(de,16)+3,he.width=ve)}else q.remove()})(te,W,K,oe)})}function Q(X){return b.isRightAnchor(X)?"right":b.isCenterAnchor(X)?"center":"left"}function j(X){return b.isBottomAnchor(X)?"bottom":b.isMiddleAnchor(X)?"middle":"top"}function U(X){return X._id||"legend"}d.exports=function(X,te){if(te)C(X,te);else{var W=X._fullLayout,K=W._legends;W._infolayer.selectAll('[class^="legend"]').each(function(){var Y=c.select(this),ee=Y.attr("class").split(" ")[0];ee.match(E)&&K.indexOf(ee)===-1&&Y.remove()});for(var oe=0;oeQ&&($=Q)}I[y][0]._groupMinRank=$,I[y][0]._preGroupSort=y}var j=function(K,oe){return K.trace.legendrank-oe.trace.legendrank||K._preSort-oe._preSort};for(I.forEach(function(K,oe){K[0]._preGroupSort=oe}),I.sort(function(K,oe){return K[0]._groupMinRank-oe[0]._groupMinRank||K[0]._preGroupSort-oe[0]._preGroupSort}),y=0;yR?R:A}d.exports=function(A,x,R){var M=x._fullLayout;R||(R=M.legend);var T=R.itemsizing==="constant",E=R.itemwidth,C=(E+2*m.itemGap)/2,L=O(C,0),D=function(z,$,Q,j){var U;if(z+1)U=z;else{if(!($&&$.width>0))return 0;U=$.width}return T?j:Math.min(U,Q)};function k(z,$,Q){var j=z[0].trace,U=j.marker||{},X=U.line||{},te=U.cornerradius?"M6,3a3,3,0,0,1-3,3H-3a3,3,0,0,1-3-3V-3a3,3,0,0,1,3-3H3a3,3,0,0,1,3,3Z":"M6,6H-6V-6H6Z",W=Q?j.visible&&j.type===Q:b.traceIs(j,"bar"),K=c.select($).select("g.legendpoints").selectAll("path.legend"+Q).data(W?[z]:[]);K.enter().append("path").classed("legend"+Q,!0).attr("d",te).attr("transform",L),K.exit().remove(),K.each(function(oe){var q=c.select(this),Y=oe[0],ee=D(Y.mlw,U.line,5,2);q.style("stroke-width",ee+"px");var me=Y.mcc;if(!R._inHover&&"mc"in Y){var he=p(U),se=he.mid;se===void 0&&(se=(he.max+he.min)/2),me=w.tryColorscale(U,"")(se)}var ae=me||Y.mc||U.color,ce=U.pattern,de=ce&&w.getPatternAttr(ce.shape,0,"");if(de){var ve=w.getPatternAttr(ce.bgcolor,0,null),ye=w.getPatternAttr(ce.fgcolor,0,null),_e=ce.fgopacity,Se=S(ce.size,8,10),Te=S(ce.solidity,.5,1),Pe="legend-"+j.uid;q.call(w.pattern,"legend",x,Pe,de,Se,Te,me,ce.fillmode,ve,ye,_e)}else q.call(y.fill,ae);ee&&y.stroke(q,Y.mlc||X.color)})}function I(z,$,Q){var j=z[0],U=j.trace,X=Q?U.visible&&U.type===Q:b.traceIs(U,Q),te=c.select($).select("g.legendpoints").selectAll("path.legend"+Q).data(X?[z]:[]);if(te.enter().append("path").classed("legend"+Q,!0).attr("d","M6,6H-6V-6H6Z").attr("transform",L),te.exit().remove(),te.size()){var W=U.marker||{},K=D(h(W.line.width,j.pts),W.line,5,2),oe="pieLike",q=i.minExtend(U,{marker:{line:{width:K}}},oe),Y=i.minExtend(j,{trace:q},oe);u(te,Y,q,x)}}A.each(function(z){var $=c.select(this),Q=i.ensureSingle($,"g","layers");Q.style("opacity",z[0].trace.opacity);var j=R.valign,U=z[0].lineHeight,X=z[0].height;if(j!=="middle"&&U&&X){var te={top:1,bottom:-1}[j]*(.5*(U-X+3));Q.attr("transform",O(0,te))}else Q.attr("transform",null);Q.selectAll("g.legendfill").data([z]).enter().append("g").classed("legendfill",!0),Q.selectAll("g.legendlines").data([z]).enter().append("g").classed("legendlines",!0);var W=Q.selectAll("g.legendsymbols").data([z]);W.enter().append("g").classed("legendsymbols",!0),W.selectAll("g.legendpoints").data([z]).enter().append("g").classed("legendpoints",!0)}).each(function(z){var $,Q=z[0].trace,j=[];if(Q.visible)switch(Q.type){case"histogram2d":case"heatmap":j=[["M-15,-2V4H15V-2Z"]],$=!0;break;case"choropleth":case"choroplethmapbox":j=[["M-6,-6V6H6V-6Z"]],$=!0;break;case"densitymapbox":j=[["M-6,0 a6,6 0 1,0 12,0 a 6,6 0 1,0 -12,0"]],$="radial";break;case"cone":j=[["M-6,2 A2,2 0 0,0 -6,6 V6L6,4Z"],["M-6,-6 A2,2 0 0,0 -6,-2 L6,-4Z"],["M-6,-2 A2,2 0 0,0 -6,2 L6,0Z"]],$=!1;break;case"streamtube":j=[["M-6,2 A2,2 0 0,0 -6,6 H6 A2,2 0 0,1 6,2 Z"],["M-6,-6 A2,2 0 0,0 -6,-2 H6 A2,2 0 0,1 6,-6 Z"],["M-6,-2 A2,2 0 0,0 -6,2 H6 A2,2 0 0,1 6,-2 Z"]],$=!1;break;case"surface":j=[["M-6,-6 A2,3 0 0,0 -6,0 H6 A2,3 0 0,1 6,-6 Z"],["M-6,1 A2,3 0 0,1 -6,6 H6 A2,3 0 0,0 6,0 Z"]],$=!0;break;case"mesh3d":j=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6H6L0,6Z"]],$=!1;break;case"volume":j=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6H6L0,6Z"]],$=!0;break;case"isosurface":j=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6 A12,24 0 0,0 6,-6 L0,6Z"]],$=!1}var U=c.select(this).select("g.legendpoints").selectAll("path.legend3dandfriends").data(j);U.enter().append("path").classed("legend3dandfriends",!0).attr("transform",L).style("stroke-miterlimit",1),U.exit().remove(),U.each(function(X,te){var W,K=c.select(this),oe=p(Q),q=oe.colorscale,Y=oe.reversescale;if(q){if(!$){var ee=q.length;W=te===0?q[Y?ee-1:0][1]:te===1?q[Y?0:ee-1][1]:q[Math.floor((ee-1)/2)][1]}}else{var me=Q.vertexcolor||Q.facecolor||Q.color;W=i.isArrayOrTypedArray(me)?me[te]||me[0]:me}K.attr("d",X[0]),W?K.call(y.fill,W):K.call(function(he){if(he.size()){var se="legendfill-"+Q.uid;w.gradient(he,x,se,v(Y,$==="radial"),q,"fill")}})})}).each(function(z){var $=z[0].trace,Q=$.type==="waterfall";if(z[0]._distinct&&Q){var j=z[0].trace[z[0].dir].marker;return z[0].mc=j.color,z[0].mlw=j.line.width,z[0].mlc=j.line.color,k(z,this,"waterfall")}var U=[];$.visible&&Q&&(U=z[0].hasTotals?[["increasing","M-6,-6V6H0Z"],["totals","M6,6H0L-6,-6H-0Z"],["decreasing","M6,6V-6H0Z"]]:[["increasing","M-6,-6V6H6Z"],["decreasing","M6,6V-6H-6Z"]]);var X=c.select(this).select("g.legendpoints").selectAll("path.legendwaterfall").data(U);X.enter().append("path").classed("legendwaterfall",!0).attr("transform",L).style("stroke-miterlimit",1),X.exit().remove(),X.each(function(te){var W=c.select(this),K=$[te[0]].marker,oe=D(void 0,K.line,5,2);W.attr("d",te[1]).style("stroke-width",oe+"px").call(y.fill,K.color),oe&&W.call(y.stroke,K.line.color)})}).each(function(z){k(z,this,"funnel")}).each(function(z){k(z,this)}).each(function(z){var $=z[0].trace,Q=c.select(this).select("g.legendpoints").selectAll("path.legendbox").data($.visible&&b.traceIs($,"box-violin")?[z]:[]);Q.enter().append("path").classed("legendbox",!0).attr("d","M6,6H-6V-6H6Z").attr("transform",L),Q.exit().remove(),Q.each(function(){var j=c.select(this);if($.boxpoints!=="all"&&$.points!=="all"||y.opacity($.fillcolor)!==0||y.opacity(($.line||{}).color)!==0){var U=D(void 0,$.line,5,2);j.style("stroke-width",U+"px").call(y.fill,$.fillcolor),U&&y.stroke(j,$.line.color)}else{var X=i.minExtend($,{marker:{size:T?12:i.constrain($.marker.size,2,16),sizeref:1,sizemin:1,sizemode:"diameter"}});Q.call(w.pointStyle,X,x)}})}).each(function(z){I(z,this,"funnelarea")}).each(function(z){I(z,this,"pie")}).each(function(z){var $,Q,j=_(z),U=j.showFill,X=j.showLine,te=j.showGradientLine,W=j.showGradientFill,K=j.anyFill,oe=j.anyLine,q=z[0],Y=q.trace,ee=p(Y),me=ee.colorscale,he=ee.reversescale,se=a.hasMarkers(Y)||!K?"M5,0":oe?"M5,-2":"M5,-3",ae=c.select(this),ce=ae.select(".legendfill").selectAll("path").data(U||W?[z]:[]);if(ce.enter().append("path").classed("js-fill",!0),ce.exit().remove(),ce.attr("d",se+"h"+E+"v6h-"+E+"z").call(function(ye){if(ye.size())if(U)w.fillGroupStyle(ye,x);else{var _e="legendfill-"+Y.uid;w.gradient(ye,x,_e,v(he),me,"fill")}}),X||te){var de=D(void 0,Y.line,10,5);Q=i.minExtend(Y,{line:{width:de}}),$=[i.minExtend(q,{trace:Q})]}var ve=ae.select(".legendlines").selectAll("path").data(X||te?[$]:[]);ve.enter().append("path").classed("js-line",!0),ve.exit().remove(),ve.attr("d",se+(te?"l"+E+",0.0001":"h"+E)).call(X?w.lineGroupStyle:function(ye){if(ye.size()){var _e="legendline-"+Y.uid;w.lineGroupStyle(ye),w.gradient(ye,x,_e,v(he),me,"stroke")}})}).each(function(z){var $,Q,j=_(z),U=j.anyFill,X=j.anyLine,te=j.showLine,W=j.showMarker,K=z[0],oe=K.trace,q=!W&&!X&&!U&&a.hasText(oe);function Y(ve,ye,_e,Se){var Te=i.nestedProperty(oe,ve).get(),Pe=i.isArrayOrTypedArray(Te)&&ye?ye(Te):Te;if(T&&Pe&&Se!==void 0&&(Pe=Se),_e){if(Pe<_e[0])return _e[0];if(Pe>_e[1])return _e[1]}return Pe}function ee(ve){return K._distinct&&K.index&&ve[K.index]?ve[K.index]:ve[0]}if(W||q||te){var me={},he={};if(W){me.mc=Y("marker.color",ee),me.mx=Y("marker.symbol",ee),me.mo=Y("marker.opacity",i.mean,[.2,1]),me.mlc=Y("marker.line.color",ee),me.mlw=Y("marker.line.width",i.mean,[0,5],2),he.marker={sizeref:1,sizemin:1,sizemode:"diameter"};var se=Y("marker.size",i.mean,[2,16],12);me.ms=se,he.marker.size=se}te&&(he.line={width:Y("line.width",ee,[0,10],5)}),q&&(me.tx="Aa",me.tp=Y("textposition",ee),me.ts=10,me.tc=Y("textfont.color",ee),me.tf=Y("textfont.family",ee)),$=[i.minExtend(K,me)],(Q=i.minExtend(oe,he)).selectedpoints=null,Q.texttemplate=null}var ae=c.select(this).select("g.legendpoints"),ce=ae.selectAll("path.scatterpts").data(W?$:[]);ce.enter().insert("path",":first-child").classed("scatterpts",!0).attr("transform",L),ce.exit().remove(),ce.call(w.pointStyle,Q,x),W&&($[0].mrc=3);var de=ae.selectAll("g.pointtext").data(q?$:[]);de.enter().append("g").classed("pointtext",!0).append("text").attr("transform",L),de.exit().remove(),de.selectAll("text").call(w.textPointStyle,Q,x)}).each(function(z){var $=z[0].trace,Q=c.select(this).select("g.legendpoints").selectAll("path.legendcandle").data($.visible&&$.type==="candlestick"?[z,z]:[]);Q.enter().append("path").classed("legendcandle",!0).attr("d",function(j,U){return U?"M-15,0H-8M-8,6V-6H8Z":"M15,0H8M8,-6V6H-8Z"}).attr("transform",L).style("stroke-miterlimit",1),Q.exit().remove(),Q.each(function(j,U){var X=c.select(this),te=$[U?"increasing":"decreasing"],W=D(void 0,te.line,5,2);X.style("stroke-width",W+"px").call(y.fill,te.fillcolor),W&&y.stroke(X,te.line.color)})}).each(function(z){var $=z[0].trace,Q=c.select(this).select("g.legendpoints").selectAll("path.legendohlc").data($.visible&&$.type==="ohlc"?[z,z]:[]);Q.enter().append("path").classed("legendohlc",!0).attr("d",function(j,U){return U?"M-15,0H0M-8,-6V0":"M15,0H0M8,6V0"}).attr("transform",L).style("stroke-miterlimit",1),Q.exit().remove(),Q.each(function(j,U){var X=c.select(this),te=$[U?"increasing":"decreasing"],W=D(void 0,te.line,5,2);X.style("fill","none").call(w.dashLine,te.line.dash,W),W&&y.stroke(X,te.line.color)})})}},66540:function(d,l,n){n(76052),d.exports={editType:"modebar",orientation:{valType:"enumerated",values:["v","h"],dflt:"h",editType:"modebar"},bgcolor:{valType:"color",editType:"modebar"},color:{valType:"color",editType:"modebar"},activecolor:{valType:"color",editType:"modebar"},uirevision:{valType:"any",editType:"none"},add:{valType:"string",arrayOk:!0,dflt:"",editType:"modebar"},remove:{valType:"string",arrayOk:!0,dflt:"",editType:"modebar"}}},44248:function(d,l,n){var c=n(24040),b=n(7316),i=n(79811),O=n(9224),w=n(4016).eraseActiveShape,y=n(3400),p=y._,a=d.exports={};function u(M,T){var E,C,L=T.currentTarget,D=L.getAttribute("data-attr"),k=L.getAttribute("data-val")||!0,I=M._fullLayout,z={},$=i.list(M,null,!0),Q=I._cartesianSpikesEnabled;if(D==="zoom"){var j,U=k==="in"?.5:2,X=(1+U)/2,te=(1-U)/2;for(C=0;C<$.length;C++)if(!(E=$[C]).fixedrange)if(j=E._name,k==="auto")z[j+".autorange"]=!0;else if(k==="reset")E._rangeInitial0===void 0&&E._rangeInitial1===void 0?z[j+".autorange"]=!0:E._rangeInitial0===void 0?(z[j+".autorange"]=E._autorangeInitial,z[j+".range"]=[null,E._rangeInitial1]):E._rangeInitial1===void 0?(z[j+".range"]=[E._rangeInitial0,null],z[j+".autorange"]=E._autorangeInitial):z[j+".range"]=[E._rangeInitial0,E._rangeInitial1],E._showSpikeInitial!==void 0&&(z[j+".showspikes"]=E._showSpikeInitial,Q!=="on"||E._showSpikeInitial||(Q="off"));else{var W=[E.r2l(E.range[0]),E.r2l(E.range[1])],K=[X*W[0]+te*W[1],X*W[1]+te*W[0]];z[j+".range[0]"]=E.l2r(K[0]),z[j+".range[1]"]=E.l2r(K[1])}}else D!=="hovermode"||k!=="x"&&k!=="y"||(k=I._isHoriz?"y":"x",L.setAttribute("data-val",k)),z[D]=k;I._cartesianSpikesEnabled=Q,c.call("_guiRelayout",M,z)}function h(M,T){for(var E=T.currentTarget,C=E.getAttribute("data-attr"),L=E.getAttribute("data-val")||!0,D=M._fullLayout._subplots.gl3d||[],k={},I=C.split("."),z=0;z1?(se=["toggleHover"],ae=["resetViews"]):z?(he=["zoomInGeo","zoomOutGeo"],se=["hoverClosestGeo"],ae=["resetGeo"]):I?(se=["hoverClosest3d"],ae=["resetCameraDefault3d","resetCameraLastSave3d"]):X?(he=["zoomInMapbox","zoomOutMapbox"],se=["toggleHover"],ae=["resetViewMapbox"]):j?se=["hoverClosestGl2d"]:$?se=["hoverClosestPie"]:K?(se=["hoverClosestCartesian","hoverCompareCartesian"],ae=["resetViewSankey"]):se=["toggleHover"],k&&(se=["toggleSpikelines","hoverClosestCartesian","hoverCompareCartesian"]),(function(Te){for(var Pe=0;Pe0)){var x=function(M,T,E){for(var C=E.filter(function(I){return T[I].anchor===M._id}),L=0,D=0;D0?C.touches[0].clientX:0}function A(C,L,D,k){var I=O.ensureSingle(C,"rect",_.bgClassName,function(j){j.attr({x:0,y:0,"shape-rendering":"crispEdges"})}),z=k.borderwidth%2==0?k.borderwidth:k.borderwidth-1,$=-k._offsetShift,Q=y.crispRound(L,k.borderwidth);I.attr({width:k._width+z,height:k._height+z,transform:w($,$),"stroke-width":Q}).call(p.stroke,k.bordercolor).call(p.fill,k.bgcolor)}function x(C,L,D,k){var I=L._fullLayout;O.ensureSingleById(I._topdefs,"clipPath",k._clipId,function(z){z.append("rect").attr({x:0,y:0})}).select("rect").attr({width:k._width,height:k._height})}function R(C,L,D,k){var I,z=L.calcdata,$=C.selectAll("g."+_.rangePlotClassName).data(D._subplotsWith,O.identity);$.enter().append("g").attr("class",function(Q){return _.rangePlotClassName+" "+Q}).call(y.setClipUrl,k._clipId,L),$.order(),$.exit().remove(),$.each(function(Q,j){var U=c.select(this),X=j===0,te=h.getFromId(L,Q,"y"),W=te._name,K=k[W],oe={data:[],layout:{xaxis:{type:D.type,domain:[0,1],range:k.range.slice(),calendar:D.calendar},width:k._width,height:k._height,margin:{t:0,b:0,l:0,r:0}},_context:L._context};D.rangebreaks&&(oe.layout.xaxis.rangebreaks=D.rangebreaks),oe.layout[W]={type:te.type,domain:[0,1],range:K.rangemode!=="match"?K.range.slice():te.range.slice(),calendar:te.calendar},te.rangebreaks&&(oe.layout[W].rangebreaks=te.rangebreaks),i.supplyDefaults(oe);var q=oe._fullLayout.xaxis,Y=oe._fullLayout[W];q.clearCalc(),q.setScale(),Y.clearCalc(),Y.setScale();var ee={id:Q,plotgroup:U,xaxis:q,yaxis:Y,isRangePlot:!0};X?I=ee:(ee.mainplot="xy",ee.mainplotinfo=I),u.rangePlot(L,ee,function(me,he){for(var se=[],ae=0;ae=De.max)Ie=_e[ze+1];else if(Pe=De.pmax)Ie=_e[ze+1];else if(Peze._length||Xe+ht<0)return;nt=Ze+ht,ot=Xe+ht;break;case Ve:if(Ge="col-resize",Ze+ht>ze._length)return;nt=Ze+ht,ot=Xe;break;case $e:if(Ge="col-resize",Xe+ht<0)return;nt=Ze,ot=Xe+ht;break;default:Ge="ew-resize",nt=Ue,ot=Ue+ht}if(ot=0;j--){var U=T.append("path").attr(C).style("opacity",j?.1:L).call(O.stroke,k).call(O.fill,D).call(w.dashLine,j?"solid":z,j?4+I:I);if(v(U,S,R),$){var X=y(S.layout,"selections",R);U.style({cursor:"move"});var te={element:U.node(),plotinfo:M,gd:S,editHelpers:X,isActiveSelection:!0},W=c(E,S);b(W,U,te)}else U.style("pointer-events",j?"all":"none");Q[j]=U}var K=Q[0];Q[1].node().addEventListener("click",function(){return function(oe,q){if(h(oe)){var Y=+q.node().getAttribute("data-index");if(Y>=0){if(Y===oe._fullLayout._activeSelectionIndex)return void _(oe);oe._fullLayout._activeSelectionIndex=Y,oe._fullLayout._deactivateSelection=_,u(oe)}}}(S,K)})}(S._fullLayout._selectionLayer)}function v(S,A,x){var R=x.xref+x.yref;w.setClipUrl(S,"clip"+A._fullLayout._uid+R,A)}function _(S){h(S)&&S._fullLayout._activeSelectionIndex>=0&&(i(S),delete S._fullLayout._activeSelectionIndex,u(S))}d.exports={draw:u,drawOne:m,activateLastSelection:function(S){if(h(S)){var A=S._fullLayout.selections.length-1;S._fullLayout._activeSelectionIndex=A,S._fullLayout._deactivateSelection=_,u(S)}}}},34200:function(d,l,n){var c=n(98192).u,b=n(92880).extendFlat;d.exports={newselection:{mode:{valType:"enumerated",values:["immediate","gradual"],dflt:"immediate",editType:"none"},line:{color:{valType:"color",editType:"none"},width:{valType:"number",min:1,dflt:1,editType:"none"},dash:b({},c,{dflt:"dot",editType:"none"}),editType:"none"},editType:"none"},activeselection:{fillcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"none"},opacity:{valType:"number",min:0,max:1,dflt:.5,editType:"none"},editType:"none"}}},81004:function(d){d.exports=function(l,n,c){c("newselection.mode"),c("newselection.line.width")&&(c("newselection.line.color"),c("newselection.line.dash")),c("activeselection.fillcolor"),c("activeselection.opacity")}},5968:function(d,l,n){var c=n(72760).selectMode,b=n(1936).clearOutline,i=n(9856),O=i.readPaths,w=i.writePaths,y=i.fixDatesForPaths;d.exports=function(p,a){if(p.length){var u=p[0][0];if(u){var h=u.getAttribute("d"),m=a.gd,v=m._fullLayout.newselection,_=a.plotinfo,S=_.xaxis,A=_.yaxis,x=a.isActiveSelection,R=a.dragmode,M=(m.layout||{}).selections||[];if(!c(R)&&x!==void 0){var T=m._fullLayout._activeSelectionIndex;if(T-1,bn=[];if(function(yt){return yt&&Array.isArray(yt)&&yt[0].hoverOnBox!==!0}(nn)){de(Ee,Ne,Ge);var mn=function(yt,zt){var Rt,it,at=yt[0],Lt=-1,xt=[];for(it=0;it0?function(yt,zt){var Rt,it,at,Lt=[];for(at=0;at0&&Lt.push(Rt);if(Lt.length===1&&Lt[0]===zt.searchInfo&&(it=zt.searchInfo.cd[0].trace).selectedpoints.length===zt.pointNumbers.length){for(at=0;at1||(it+=zt.selectedpoints.length)>1))return!1;return it===1}(pt)&&(en=Te(mn))){for(ht&&ht.remove(),_t=0;_t=0})(ot)&&ot._fullLayout._deactivateShape(ot),function(qt){return qt._fullLayout._activeSelectionIndex>=0}(ot)&&ot._fullLayout._deactivateSelection(ot);var Ge=ot._fullLayout._zoomlayer,ht=m(je),pt=_(je);if(ht||pt){var wt,Dt,It=Ge.selectAll(".select-outline-"+nt.id);It&&ot._fullLayout._outlining&&(ht&&(wt=C(It,Ee)),wt&&i.call("_guiRelayout",ot,{shapes:wt}),pt&&!me(Ee)&&(Dt=L(It,Ee)),Dt&&(ot._fullLayout._noEmitSelectedAtStart=!0,i.call("_guiRelayout",ot,{selections:Dt}).then(function(){Ne&&D(ot)})),ot._fullLayout._outlining=!1)}nt.selection={},nt.selection.selectionDefs=Ee.selectionDefs=[],nt.selection.mergedPolygons=Ee.mergedPolygons=[]}function ye(Ee){return Ee._id}function _e(Ee,Ne,je,nt){if(!Ee.calcdata)return[];var ot,Ge,ht,pt=[],wt=Ne.map(ye),Dt=je.map(ye);for(ht=0;ht0?nt[0]:je;return!!Ne.selectedpoints&&Ne.selectedpoints.indexOf(ot)>-1}function Pe(Ee,Ne,je){var nt,ot;for(nt=0;nt-1&&Ne;if(!Ge&&Ne){var ir=ke(Ee,!0);if(ir.length){var Wn=ir[0].xref,Kn=ir[0].yref;if(Wn&&Kn){var _r=Ue(ir);Ze([Q(Ee,Wn,"x"),Q(Ee,Kn,"y")])(ar,_r)}}Ee._fullLayout._noEmitSelectedAtStart?Ee._fullLayout._noEmitSelectedAtStart=!1:Fn&&Xe(Ee,ar),en._reselect=!1}if(!Ge&&en._deselect){var Ir=en._deselect;(function(zr,Fr,Rr){for(var $r=0;$r=0)Gt._fullLayout._deactivateShape(Gt);else if(!Dt){var _r=Ct.clickmode;$.done(Sr).then(function(){if($.clear(Sr),Wn===2){for(Nn.remove(),at=0;at-1&&he(Kn,Gt,nt.xaxes,nt.yaxes,nt.subplot,nt,Nn),_r==="event"&&Xe(Gt,void 0);y.click(Gt,Kn,bn.id)}).catch(k.error)}},nt.doneFn=function(){jn.remove(),$.done(Sr).then(function(){$.clear(Sr),!_t&&it&&nt.selectionDefs&&(it.subtract=vn,nt.selectionDefs.push(it),nt.mergedPolygons.length=0,[].push.apply(nt.mergedPolygons,Rt)),(_t||Dt)&&ve(nt,_t),nt.doneFnCompleted&&nt.doneFnCompleted(ar),It&&Xe(Gt,xt)}).catch(k.error)}},clearOutline:R,clearSelectionsCache:ve,selectOnClick:he}},46056:function(d,l,n){var c=n(13916),b=n(25376),i=n(52904).line,O=n(98192).u,w=n(92880).extendFlat,y=n(31780).templatedArray,p=(n(36208),n(45464)),a=n(21776).ye,u=n(97728);d.exports=y("shape",{visible:w({},p.visible,{editType:"calc+arraydraw"}),showlegend:{valType:"boolean",dflt:!1,editType:"calc+arraydraw"},legend:w({},p.legend,{editType:"calc+arraydraw"}),legendgroup:w({},p.legendgroup,{editType:"calc+arraydraw"}),legendgrouptitle:{text:w({},p.legendgrouptitle.text,{editType:"calc+arraydraw"}),font:b({editType:"calc+arraydraw"}),editType:"calc+arraydraw"},legendrank:w({},p.legendrank,{editType:"calc+arraydraw"}),legendwidth:w({},p.legendwidth,{editType:"calc+arraydraw"}),type:{valType:"enumerated",values:["circle","rect","path","line"],editType:"calc+arraydraw"},layer:{valType:"enumerated",values:["below","above"],dflt:"above",editType:"arraydraw"},xref:w({},c.xref,{}),xsizemode:{valType:"enumerated",values:["scaled","pixel"],dflt:"scaled",editType:"calc+arraydraw"},xanchor:{valType:"any",editType:"calc+arraydraw"},x0:{valType:"any",editType:"calc+arraydraw"},x1:{valType:"any",editType:"calc+arraydraw"},yref:w({},c.yref,{}),ysizemode:{valType:"enumerated",values:["scaled","pixel"],dflt:"scaled",editType:"calc+arraydraw"},yanchor:{valType:"any",editType:"calc+arraydraw"},y0:{valType:"any",editType:"calc+arraydraw"},y1:{valType:"any",editType:"calc+arraydraw"},path:{valType:"string",editType:"calc+arraydraw"},opacity:{valType:"number",min:0,max:1,dflt:1,editType:"arraydraw"},line:{color:w({},i.color,{editType:"arraydraw"}),width:w({},i.width,{editType:"calc+arraydraw"}),dash:w({},O,{editType:"arraydraw"}),editType:"calc+arraydraw"},fillcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},fillrule:{valType:"enumerated",values:["evenodd","nonzero"],dflt:"evenodd",editType:"arraydraw"},editable:{valType:"boolean",dflt:!1,editType:"calc+arraydraw"},label:{text:{valType:"string",dflt:"",editType:"arraydraw"},texttemplate:a({},{keys:Object.keys(u)}),font:b({editType:"calc+arraydraw",colorEditType:"arraydraw"}),textposition:{valType:"enumerated",values:["top left","top center","top right","middle left","middle center","middle right","bottom left","bottom center","bottom right","start","middle","end"],editType:"arraydraw"},textangle:{valType:"angle",dflt:"auto",editType:"calc+arraydraw"},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"auto",editType:"calc+arraydraw"},yanchor:{valType:"enumerated",values:["top","middle","bottom"],editType:"calc+arraydraw"},padding:{valType:"number",dflt:3,min:0,editType:"arraydraw"},editType:"arraydraw"},editType:"arraydraw"})},96084:function(d,l,n){var c=n(3400),b=n(54460),i=n(85448),O=n(65152);function w(u){return p(u.line.width,u.xsizemode,u.x0,u.x1,u.path,!1)}function y(u){return p(u.line.width,u.ysizemode,u.y0,u.y1,u.path,!0)}function p(u,h,m,v,_,S){var A=u/2,x=S;if(h==="pixel"){var R=_?O.extractPathCoords(_,S?i.paramIsY:i.paramIsX):[m,v],M=c.aggNums(Math.max,null,R),T=c.aggNums(Math.min,null,R),E=T<0?Math.abs(T)+A:A,C=M>0?M+A:A;return{ppad:A,ppadplus:x?E:C,ppadminus:x?C:E}}return{ppad:A}}function a(u,h,m,v,_){var S=u.type==="category"||u.type==="multicategory"?u.r2c:u.d2c;if(h!==void 0)return[S(h),S(m)];if(v){var A,x,R,M,T=1/0,E=-1/0,C=v.match(i.segmentRE);for(u.type==="date"&&(S=O.decodeDate(S)),A=0;AE&&(E=M)));return E>=T?[T,E]:void 0}}d.exports=function(u){var h=u._fullLayout,m=c.filterVisible(h.shapes);if(m.length&&u._fullData.length)for(var v=0;v=ye?_e-Te:Te-_e,-180/Math.PI*Math.atan2(Pe,Ie)}(E,L,C,D):0),z.call(function(ye){return ye.call(O.font,I).attr({}),i.convertToTspans(ye,h),ye});var ae=function(ye,_e,Se,Te,Pe,Ie,ze){var De,He,Ve,$e,Oe=Pe.label.textposition,ke=Pe.label.textangle,Le=Pe.label.padding,We=Pe.type,Ue=Math.PI/180*Ie,Ze=Math.sin(Ue),Xe=Math.cos(Ue),tt=Pe.label.xanchor,Ee=Pe.label.yanchor;if(We==="line"){Oe==="start"?(De=ye,He=_e):Oe==="end"?(De=Se,He=Te):(De=(ye+Se)/2,He=(_e+Te)/2),tt==="auto"&&(tt=Oe==="start"?ke==="auto"?Se>ye?"left":Seye?"right":Seye?"right":Seye?"left":Se1&&(De.length!==2||De[1][0]!=="Z")&&(K===0&&(De[0][0]="M"),k[W]=De,j(),U())}}()}}function ye(Pe,Ie){(function(ze,De){if(k.length)for(var He=0;HeHe?(Oe=ze,Ue="y0",ke=He,Ze="y1"):(Oe=He,Ue="y1",ke=ze,Ze="y0"),vt(Rt),yt(Te,_e),function(it,at,Lt){var xt=at.xref,Zt=at.yref,Xt=O.getFromId(Lt,xt),Yt=O.getFromId(Lt,Zt),Qt="";xt==="paper"||Xt.autorange||(Qt+=xt),Zt==="paper"||Yt.autorange||(Qt+=Zt),h.setClipUrl(it,Qt?"clip"+Lt._fullLayout._uid+Qt:null,Lt)}(ye,_e,ve),mn.moveFn=Ne==="move"?bt:lt,mn.altKey=Rt.altKey)},doneFn:function(){M(ve)||(_(ye),zt(Te),C(ye,ve,_e),b.call("_guiRelayout",ve,Pe.getUpdateObj()))},clickFn:function(){M(ve)||zt(Te)}};function vt(Rt){if(M(ve))Ne=null;else if(ht)Ne=Rt.target.tagName==="path"?"move":Rt.target.attributes["data-line-point"].value==="start-point"?"resize-over-start-point":"resize-over-end-point";else{var it=mn.element.getBoundingClientRect(),at=it.right-it.left,Lt=it.bottom-it.top,xt=Rt.clientX-it.left,Zt=Rt.clientY-it.top,Xt=!pt&&at>je&&Lt>nt&&!Rt.shiftKey?v.getCursor(xt/at,1-Zt/Lt):"move";_(ye,Xt),Ne=Xt.split("-")[0]}}function bt(Rt,it){if(_e.type==="path"){var at=function(Zt){return Zt},Lt=at,xt=at;ot?wt("xanchor",_e.xanchor=nn(Ve+Rt)):(Lt=function(Zt){return nn(Ct(Zt)+Rt)},It&&It.type==="date"&&(Lt=A.encodeDate(Lt))),Ge?wt("yanchor",_e.yanchor=gn($e+it)):(xt=function(Zt){return gn(_t(Zt)+it)},en&&en.type==="date"&&(xt=A.encodeDate(xt))),wt("path",_e.path=L(Ee,Lt,xt))}else ot?wt("xanchor",_e.xanchor=nn(Ve+Rt)):(wt("x0",_e.x0=nn(Ie+Rt)),wt("x1",_e.x1=nn(De+Rt))),Ge?wt("yanchor",_e.yanchor=gn($e+it)):(wt("y0",_e.y0=gn(ze+it)),wt("y1",_e.y1=gn(He+it)));ye.attr("d",x(ve,_e)),yt(Te,_e),p(ve,Se,_e,Dt)}function lt(Rt,it){if(pt){var at=function(In){return In},Lt=at,xt=at;ot?wt("xanchor",_e.xanchor=nn(Ve+Rt)):(Lt=function(In){return nn(Ct(In)+Rt)},It&&It.type==="date"&&(Lt=A.encodeDate(Lt))),Ge?wt("yanchor",_e.yanchor=gn($e+it)):(xt=function(In){return gn(_t(In)+it)},en&&en.type==="date"&&(xt=A.encodeDate(xt))),wt("path",_e.path=L(Ee,Lt,xt))}else if(ht){if(Ne==="resize-over-start-point"){var Zt=Ie+Rt,Xt=Ge?ze-it:ze+it;wt("x0",_e.x0=ot?Zt:nn(Zt)),wt("y0",_e.y0=Ge?Xt:gn(Xt))}else if(Ne==="resize-over-end-point"){var Yt=De+Rt,Qt=Ge?He-it:He+it;wt("x1",_e.x1=ot?Yt:nn(Yt)),wt("y1",_e.y1=Ge?Qt:gn(Qt))}}else{var Pt=function(In){return Ne.indexOf(In)!==-1},tn=Pt("n"),Kt=Pt("s"),fn=Pt("w"),dn=Pt("e"),vn=tn?Oe+it:Oe,Nn=Kt?ke+it:ke,er=fn?Le+Rt:Le,En=dn?We+Rt:We;Ge&&(tn&&(vn=Oe-it),Kt&&(Nn=ke-it)),(!Ge&&Nn-vn>nt||Ge&&vn-Nn>nt)&&(wt(Ue,_e[Ue]=Ge?vn:gn(vn)),wt(Ze,_e[Ze]=Ge?Nn:gn(Nn))),En-er>je&&(wt(Xe,_e[Xe]=ot?er:nn(er)),wt(tt,_e[tt]=ot?En:nn(En)))}ye.attr("d",x(ve,_e)),yt(Te,_e),p(ve,Se,_e,Dt)}function yt(Rt,it){(ot||Ge)&&function(){var at=it.type!=="path",Lt=Rt.selectAll(".visual-cue").data([0]);Lt.enter().append("path").attr({fill:"#fff","fill-rule":"evenodd",stroke:"#000","stroke-width":1}).classed("visual-cue",!0);var xt=Ct(ot?it.xanchor:i.midRange(at?[it.x0,it.x1]:A.extractPathCoords(it.path,S.paramIsX))),Zt=_t(Ge?it.yanchor:i.midRange(at?[it.y0,it.y1]:A.extractPathCoords(it.path,S.paramIsY)));if(xt=A.roundPositionForSharpStrokeRendering(xt,1),Zt=A.roundPositionForSharpStrokeRendering(Zt,1),ot&&Ge){var Xt="M"+(xt-1-1)+","+(Zt-1-1)+"h-8v2h8 v8h2v-8 h8v-2h-8 v-8h-2 Z";Lt.attr("d",Xt)}else if(ot){var Yt="M"+(xt-1-1)+","+(Zt-9-1)+"v18 h2 v-18 Z";Lt.attr("d",Yt)}else{var Qt="M"+(xt-9-1)+","+(Zt-1-1)+"h18 v2 h-18 Z";Lt.attr("d",Qt)}}()}function zt(Rt){Rt.selectAll(".visual-cue").remove()}v.init(mn),bn.node().onmousemove=vt}(k,ae,$,I,U,he):$.editable===!0&&ae.style("pointer-events",ee||u.opacity(K)*W<=.5?"stroke":"all");ae.node().addEventListener("click",function(){return function(ve,ye){if(T(ve)){var _e=+ye.node().getAttribute("data-index");if(_e>=0){if(_e===ve._fullLayout._activeShapeIndex)return void D(ve);ve._fullLayout._activeShapeIndex=_e,ve._fullLayout._deactivateShape=D,R(ve)}}}(k,ae)})}$._input&&$.visible===!0&&($.layer!=="below"?j(k._fullLayout._shapeUpperLayer):$.xref==="paper"||$.yref==="paper"?j(k._fullLayout._shapeLowerLayer):Q._hadPlotinfo?j((Q.mainplotinfo||Q).shapelayer):j(k._fullLayout._shapeLowerLayer))}function C(k,I,z){var $=(z.xref+z.yref).replace(/paper/g,"").replace(/[xyz][1-9]* *domain/g,"");h.setClipUrl(k,$?"clip"+I._fullLayout._uid+$:null,I)}function L(k,I,z){return k.replace(S.segmentRE,function($){var Q=0,j=$.charAt(0),U=S.paramIsX[j],X=S.paramIsY[j],te=S.numParams[j];return j+$.substr(1).replace(S.paramRE,function(W){return Q>=te||(U[Q]?W=I(W):X[Q]&&(W=z(W)),Q++),W})})}function D(k){T(k)&&k._fullLayout._activeShapeIndex>=0&&(a(k),delete k._fullLayout._activeShapeIndex,R(k))}d.exports={draw:R,drawOne:E,eraseActiveShape:function(k){if(T(k)){a(k);var I=k._fullLayout._activeShapeIndex,z=(k.layout||{}).shapes||[];if(I0&&E