@vueland/ui 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/CApp/CApp.js +46 -0
- package/dist/components/CApp/index.js +5 -0
- package/dist/components/CAutocomplete/CAutocomplete.js +163 -0
- package/dist/components/CAutocomplete/index.js +5 -0
- package/dist/components/CBtn/CBtn.js +51 -0
- package/dist/components/CBtn/index.js +5 -0
- package/dist/components/CCard/index.js +8 -0
- package/dist/components/CCheckbox/CCheckbox.js +86 -0
- package/dist/components/CCheckbox/index.js +5 -0
- package/dist/components/CDialog/CDialog.js +95 -0
- package/dist/components/CDialog/CDialogsStack.js +27 -0
- package/dist/components/CDialog/index.js +5 -0
- package/dist/components/CDialog/index2.js +5 -0
- package/dist/components/CField/CField.js +51 -0
- package/dist/components/CField/index.js +5 -0
- package/dist/components/CForm/CForm.js +45 -0
- package/dist/components/CForm/index.js +5 -0
- package/dist/components/CGrid/CCol.js +72 -0
- package/dist/components/CGrid/CRow.js +92 -0
- package/dist/components/CGrid/index.js +5 -0
- package/dist/components/CIcon/CIcon.js +78 -0
- package/dist/components/CIcon/index.js +5 -0
- package/dist/components/CInput/CInput.js +176 -0
- package/dist/components/CInput/index.js +5 -0
- package/dist/components/CItems/CItems.js +66 -0
- package/dist/components/CLabel/CLabel.js +15 -0
- package/dist/components/CList/CList.js +78 -0
- package/dist/components/CList/CListItem.js +52 -0
- package/dist/components/CList/index.js +6 -0
- package/dist/components/CList/index2.js +5 -0
- package/dist/components/CList/index3.js +5 -0
- package/dist/components/CMain/index.js +5 -0
- package/dist/components/CMenu/CMenu.js +226 -0
- package/dist/components/CMenu/index.js +5 -0
- package/dist/components/COverlay/COverlay.js +47 -0
- package/dist/components/COverlay/index.js +5 -0
- package/dist/components/CRadio/CRadio.js +59 -0
- package/dist/components/CRadio/index.js +5 -0
- package/dist/components/CScrim/index.js +16 -0
- package/dist/components/CSelect/CSelect.js +134 -0
- package/dist/components/CSelect/index.js +5 -0
- package/dist/components/CSelectControl/CSelectControl.js +61 -0
- package/dist/components/CSelectControl/index.js +5 -0
- package/dist/components/CTextField/CTextField.js +71 -0
- package/dist/components/CTextField/index.js +5 -0
- package/dist/components/CToolbar/CToolbar.js +29 -0
- package/dist/components/CToolbar/index.js +6 -0
- package/dist/components/CToolbar/index2.js +5 -0
- package/dist/components/CTooltip/CTooltip.js +36 -0
- package/dist/components/CTooltip/index.js +5 -0
- package/dist/components/index.d.ts +779 -0
- package/dist/components/index.js +30 -0
- package/dist/composables/index.d.ts +379 -0
- package/dist/composables/index.js +22 -0
- package/dist/composables/use-activator.js +47 -0
- package/dist/composables/use-app-scroll.js +55 -0
- package/dist/composables/use-application.js +8 -0
- package/dist/composables/use-auto-position.js +240 -0
- package/dist/composables/use-autocomplete.js +34 -0
- package/dist/composables/use-button-presets.js +19 -0
- package/dist/composables/use-core.js +8 -0
- package/dist/composables/use-delay-actions.js +16 -0
- package/dist/composables/use-dialogs-stack.js +43 -0
- package/dist/composables/use-display.js +73 -0
- package/dist/composables/use-effect.js +30 -0
- package/dist/composables/use-field-attrs.js +43 -0
- package/dist/composables/use-form.js +8 -0
- package/dist/composables/use-icon.js +54 -0
- package/dist/composables/use-input-presets.js +30 -0
- package/dist/composables/use-input-state.js +41 -0
- package/dist/composables/use-input-value.js +18 -0
- package/dist/composables/use-menu-presets.js +17 -0
- package/dist/composables/use-overlay-stack.js +23 -0
- package/dist/composables/use-position-classes.js +12 -0
- package/dist/composables/use-presets.js +12 -0
- package/dist/composables/use-toggle.js +11 -0
- package/dist/composables/use-validate.js +54 -0
- package/dist/constants/breakpoints.js +12 -0
- package/dist/constants/icons.js +23 -0
- package/dist/constants/index.d.ts +97 -0
- package/dist/constants/index.js +3 -0
- package/dist/constants/provide-keys.js +9 -0
- package/dist/css/themes/default-theme.css +1 -0
- package/dist/css/themes/default-theme.js +3 -0
- package/dist/css/utils/_colors.css +1 -0
- package/dist/css/utils/_colors.js +3 -0
- package/dist/css/utils/_cursor.css +1 -0
- package/dist/css/utils/_cursor.js +3 -0
- package/dist/css/utils/_display.css +1 -0
- package/dist/css/utils/_display.js +3 -0
- package/dist/css/utils/_elevations.css +1 -0
- package/dist/css/utils/_elevations.js +3 -0
- package/dist/css/utils/_flex.css +1 -0
- package/dist/css/utils/_flex.js +3 -0
- package/dist/css/utils/_helpers.css +1 -0
- package/dist/css/utils/_helpers.js +3 -0
- package/dist/css/utils/_opacity.css +1 -0
- package/dist/css/utils/_opacity.js +3 -0
- package/dist/css/utils/_overflow.css +1 -0
- package/dist/css/utils/_overflow.js +3 -0
- package/dist/css/utils/_positions.css +1 -0
- package/dist/css/utils/_positions.js +3 -0
- package/dist/css/utils/_radius.css +1 -0
- package/dist/css/utils/_radius.js +3 -0
- package/dist/css/utils/_sizing.css +1 -0
- package/dist/css/utils/_sizing.js +3 -0
- package/dist/css/utils/_spaces.css +1 -0
- package/dist/css/utils/_spaces.js +3 -0
- package/dist/css/utils/_text.css +1 -0
- package/dist/css/utils/_text.js +3 -0
- package/dist/css/utils/_transitions.css +1 -0
- package/dist/css/utils/_transitions.js +3 -0
- package/dist/css/utils/_typography.css +1 -0
- package/dist/css/utils/_typography.js +3 -0
- package/dist/directives/index.d.ts +8 -0
- package/dist/directives/index.js +1 -0
- package/dist/directives/v-click-outside.js +34 -0
- package/dist/enums/BreakpointLabels.js +11 -0
- package/dist/enums/IconName.js +15 -0
- package/dist/enums/index.d.ts +22 -0
- package/dist/enums/index.js +2 -0
- package/dist/helpers/index.js +17 -0
- package/dist/index.js +16 -0
- package/dist/library.js +58 -0
- package/dist/styles.css +1 -0
- package/dist/temp-types/src/components/CApp/CApp.vue.d.ts +13 -0
- package/dist/temp-types/src/components/CApp/CApp.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CApp/index.d.ts +3 -0
- package/dist/temp-types/src/components/CApp/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CApp/types.d.ts +7 -0
- package/dist/temp-types/src/components/CApp/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CAutocomplete/CAutocomplete.vue.d.ts +20 -0
- package/dist/temp-types/src/components/CAutocomplete/CAutocomplete.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CAutocomplete/index.d.ts +3 -0
- package/dist/temp-types/src/components/CAutocomplete/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CAutocomplete/types.d.ts +18 -0
- package/dist/temp-types/src/components/CAutocomplete/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CBtn/CBtn.vue.d.ts +14 -0
- package/dist/temp-types/src/components/CBtn/CBtn.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CBtn/index.d.ts +2 -0
- package/dist/temp-types/src/components/CBtn/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CBtn/types.d.ts +6 -0
- package/dist/temp-types/src/components/CBtn/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CCard/index.d.ts +5 -0
- package/dist/temp-types/src/components/CCard/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CCheckbox/CCheckbox.vue.d.ts +23 -0
- package/dist/temp-types/src/components/CCheckbox/CCheckbox.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CCheckbox/index.d.ts +3 -0
- package/dist/temp-types/src/components/CCheckbox/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CCheckbox/types.d.ts +17 -0
- package/dist/temp-types/src/components/CCheckbox/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CDialog/CDialog.vue.d.ts +19 -0
- package/dist/temp-types/src/components/CDialog/CDialog.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CDialog/CDialogsStack.vue.d.ts +3 -0
- package/dist/temp-types/src/components/CDialog/CDialogsStack.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CDialog/index.d.ts +4 -0
- package/dist/temp-types/src/components/CDialog/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CDialog/types.d.ts +9 -0
- package/dist/temp-types/src/components/CDialog/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CField/CField.vue.d.ts +17 -0
- package/dist/temp-types/src/components/CField/CField.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CField/index.d.ts +2 -0
- package/dist/temp-types/src/components/CField/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CForm/CForm.vue.d.ts +18 -0
- package/dist/temp-types/src/components/CForm/CForm.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CForm/index.d.ts +3 -0
- package/dist/temp-types/src/components/CForm/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CForm/types.d.ts +12 -0
- package/dist/temp-types/src/components/CForm/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CGrid/CCol.d.ts +33 -0
- package/dist/temp-types/src/components/CGrid/CCol.d.ts.map +1 -0
- package/dist/temp-types/src/components/CGrid/CRow.d.ts +49 -0
- package/dist/temp-types/src/components/CGrid/CRow.d.ts.map +1 -0
- package/dist/temp-types/src/components/CGrid/index.d.ts +4 -0
- package/dist/temp-types/src/components/CGrid/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CIcon/CIcon.vue.d.ts +4 -0
- package/dist/temp-types/src/components/CIcon/CIcon.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CIcon/index.d.ts +2 -0
- package/dist/temp-types/src/components/CIcon/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CIcon/types.d.ts +17 -0
- package/dist/temp-types/src/components/CIcon/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CInput/CInput.vue.d.ts +20 -0
- package/dist/temp-types/src/components/CInput/CInput.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CInput/index.d.ts +3 -0
- package/dist/temp-types/src/components/CInput/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CInput/types.d.ts +38 -0
- package/dist/temp-types/src/components/CInput/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CItems/CItems.d.ts +16 -0
- package/dist/temp-types/src/components/CItems/CItems.d.ts.map +1 -0
- package/dist/temp-types/src/components/CItems/index.d.ts +2 -0
- package/dist/temp-types/src/components/CItems/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CLabel/CLabel.d.ts +4 -0
- package/dist/temp-types/src/components/CLabel/CLabel.d.ts.map +1 -0
- package/dist/temp-types/src/components/CLabel/index.d.ts +3 -0
- package/dist/temp-types/src/components/CLabel/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CLabel/types.d.ts +4 -0
- package/dist/temp-types/src/components/CLabel/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CList/CList.vue.d.ts +19 -0
- package/dist/temp-types/src/components/CList/CList.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CList/CListItem.vue.d.ts +18 -0
- package/dist/temp-types/src/components/CList/CListItem.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CList/index.d.ts +6 -0
- package/dist/temp-types/src/components/CList/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CList/types.d.ts +15 -0
- package/dist/temp-types/src/components/CList/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CMain/index.d.ts +2 -0
- package/dist/temp-types/src/components/CMain/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CMenu/CMenu.vue.d.ts +46 -0
- package/dist/temp-types/src/components/CMenu/CMenu.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CMenu/index.d.ts +3 -0
- package/dist/temp-types/src/components/CMenu/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CMenu/types.d.ts +25 -0
- package/dist/temp-types/src/components/CMenu/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/COverlay/COverlay.vue.d.ts +19 -0
- package/dist/temp-types/src/components/COverlay/COverlay.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/COverlay/index.d.ts +3 -0
- package/dist/temp-types/src/components/COverlay/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/COverlay/tyoes.d.ts +11 -0
- package/dist/temp-types/src/components/COverlay/tyoes.d.ts.map +1 -0
- package/dist/temp-types/src/components/CRadio/CRadio.vue.d.ts +22 -0
- package/dist/temp-types/src/components/CRadio/CRadio.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CRadio/index.d.ts +2 -0
- package/dist/temp-types/src/components/CRadio/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CScrim/index.d.ts +7 -0
- package/dist/temp-types/src/components/CScrim/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelect/CSelect.vue.d.ts +19 -0
- package/dist/temp-types/src/components/CSelect/CSelect.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelect/index.d.ts +3 -0
- package/dist/temp-types/src/components/CSelect/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelect/types.d.ts +17 -0
- package/dist/temp-types/src/components/CSelect/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelectControl/CSelectControl.vue.d.ts +19 -0
- package/dist/temp-types/src/components/CSelectControl/CSelectControl.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelectControl/index.d.ts +3 -0
- package/dist/temp-types/src/components/CSelectControl/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CSelectControl/types.d.ts +19 -0
- package/dist/temp-types/src/components/CSelectControl/types.d.ts.map +1 -0
- package/dist/temp-types/src/components/CTextField/CTextField.vue.d.ts +20 -0
- package/dist/temp-types/src/components/CTextField/CTextField.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CTextField/index.d.ts +2 -0
- package/dist/temp-types/src/components/CTextField/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CToolbar/CToolbar.vue.d.ts +16 -0
- package/dist/temp-types/src/components/CToolbar/CToolbar.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CToolbar/index.d.ts +4 -0
- package/dist/temp-types/src/components/CToolbar/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/CTooltip/CTooltip.vue.d.ts +23 -0
- package/dist/temp-types/src/components/CTooltip/CTooltip.vue.d.ts.map +1 -0
- package/dist/temp-types/src/components/CTooltip/index.d.ts +2 -0
- package/dist/temp-types/src/components/CTooltip/index.d.ts.map +1 -0
- package/dist/temp-types/src/components/index.d.ts +25 -0
- package/dist/temp-types/src/components/index.d.ts.map +1 -0
- package/dist/temp-types/src/composables/index.d.ts +23 -0
- package/dist/temp-types/src/composables/index.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-activator.d.ts +35 -0
- package/dist/temp-types/src/composables/use-activator.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-app-scroll.d.ts +11 -0
- package/dist/temp-types/src/composables/use-app-scroll.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-application.d.ts +3 -0
- package/dist/temp-types/src/composables/use-application.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-auto-position.d.ts +45 -0
- package/dist/temp-types/src/composables/use-auto-position.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-autocomplete.d.ts +6 -0
- package/dist/temp-types/src/composables/use-autocomplete.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-breakpoints.d.ts +1 -0
- package/dist/temp-types/src/composables/use-breakpoints.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-button-presets.d.ts +8 -0
- package/dist/temp-types/src/composables/use-button-presets.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-core.d.ts +3 -0
- package/dist/temp-types/src/composables/use-core.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-delay-actions.d.ts +9 -0
- package/dist/temp-types/src/composables/use-delay-actions.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-dialogs-stack.d.ts +19 -0
- package/dist/temp-types/src/composables/use-dialogs-stack.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-display.d.ts +61 -0
- package/dist/temp-types/src/composables/use-display.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-effect.d.ts +11 -0
- package/dist/temp-types/src/composables/use-effect.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-field-attrs.d.ts +10 -0
- package/dist/temp-types/src/composables/use-field-attrs.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-form.d.ts +2 -0
- package/dist/temp-types/src/composables/use-form.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-icon.d.ts +22 -0
- package/dist/temp-types/src/composables/use-icon.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-input-presets.d.ts +13 -0
- package/dist/temp-types/src/composables/use-input-presets.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-input-state.d.ts +17 -0
- package/dist/temp-types/src/composables/use-input-state.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-input-value.d.ts +3 -0
- package/dist/temp-types/src/composables/use-input-value.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-menu-presets.d.ts +7 -0
- package/dist/temp-types/src/composables/use-menu-presets.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-overlay-stack.d.ts +5 -0
- package/dist/temp-types/src/composables/use-overlay-stack.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-position-classes.d.ts +10 -0
- package/dist/temp-types/src/composables/use-position-classes.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-presets.d.ts +7 -0
- package/dist/temp-types/src/composables/use-presets.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-toggle.d.ts +3 -0
- package/dist/temp-types/src/composables/use-toggle.d.ts.map +1 -0
- package/dist/temp-types/src/composables/use-validate.d.ts +31 -0
- package/dist/temp-types/src/composables/use-validate.d.ts.map +1 -0
- package/dist/temp-types/src/constants/breakpoints.d.ts +3 -0
- package/dist/temp-types/src/constants/breakpoints.d.ts.map +1 -0
- package/dist/temp-types/src/constants/icons.d.ts +29 -0
- package/dist/temp-types/src/constants/icons.d.ts.map +1 -0
- package/dist/temp-types/src/constants/index.d.ts +4 -0
- package/dist/temp-types/src/constants/index.d.ts.map +1 -0
- package/dist/temp-types/src/constants/provide-keys.d.ts +11 -0
- package/dist/temp-types/src/constants/provide-keys.d.ts.map +1 -0
- package/dist/temp-types/src/directives/index.d.ts +2 -0
- package/dist/temp-types/src/directives/index.d.ts.map +1 -0
- package/dist/temp-types/src/directives/v-click-outside.d.ts +7 -0
- package/dist/temp-types/src/directives/v-click-outside.d.ts.map +1 -0
- package/dist/temp-types/src/enums/BreakpointLabels.d.ts +9 -0
- package/dist/temp-types/src/enums/BreakpointLabels.d.ts.map +1 -0
- package/dist/temp-types/src/enums/IconName.d.ts +12 -0
- package/dist/temp-types/src/enums/IconName.d.ts.map +1 -0
- package/dist/temp-types/src/enums/index.d.ts +3 -0
- package/dist/temp-types/src/enums/index.d.ts.map +1 -0
- package/dist/temp-types/src/helpers/index.d.ts +5 -0
- package/dist/temp-types/src/helpers/index.d.ts.map +1 -0
- package/dist/temp-types/src/index.d.ts +6 -0
- package/dist/temp-types/src/index.d.ts.map +1 -0
- package/dist/temp-types/src/library.d.ts +22 -0
- package/dist/temp-types/src/library.d.ts.map +1 -0
- package/dist/temp-types/src/types/index.d.ts +4 -0
- package/dist/temp-types/src/types/index.d.ts.map +1 -0
- package/dist/temp-types/src/types/presets.d.ts +64 -0
- package/dist/temp-types/src/types/presets.d.ts.map +1 -0
- package/dist/temp-types/src/types/props.d.ts +9 -0
- package/dist/temp-types/src/types/props.d.ts.map +1 -0
- package/dist/temp-types/src/types/utils.d.ts +2 -0
- package/dist/temp-types/src/types/utils.d.ts.map +1 -0
- package/dist/temp-types/src/utils/compile-css-classes.d.ts +16 -0
- package/dist/temp-types/src/utils/compile-css-classes.d.ts.map +1 -0
- package/dist/temp-types/src/utils/convert-to-unit.d.ts +2 -0
- package/dist/temp-types/src/utils/convert-to-unit.d.ts.map +1 -0
- package/dist/temp-types/src/utils/create-simple-functional.d.ts +6 -0
- package/dist/temp-types/src/utils/create-simple-functional.d.ts.map +1 -0
- package/dist/temp-types/src/utils/define-preset.d.ts +2 -0
- package/dist/temp-types/src/utils/define-preset.d.ts.map +1 -0
- package/dist/temp-types/src/utils/globals.d.ts +2 -0
- package/dist/temp-types/src/utils/globals.d.ts.map +1 -0
- package/dist/temp-types/src/utils/index.d.ts +6 -0
- package/dist/temp-types/src/utils/index.d.ts.map +1 -0
- package/dist/temp-types/src/utils/throttle.d.ts +2 -0
- package/dist/temp-types/src/utils/throttle.d.ts.map +1 -0
- package/dist/temp-types/tsconfig.build.tsbuildinfo +1 -0
- package/dist/types.d.ts +101 -0
- package/dist/utils/compile-css-classes.js +271 -0
- package/dist/utils/convert-to-unit.js +9 -0
- package/dist/utils/create-simple-functional.js +34 -0
- package/dist/utils/globals.js +3 -0
- package/dist/utils/index.d.ts +30 -0
- package/dist/utils/index.js +5 -0
- package/dist/utils/throttle.js +19 -0
- package/package.json +100 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const BASE_Z_INDEX = 2e3;
|
|
2
|
+
const stack = [];
|
|
3
|
+
function useOverlayStack() {
|
|
4
|
+
let zIndex = -1;
|
|
5
|
+
const register = () => {
|
|
6
|
+
const last = stack[stack.length - 1];
|
|
7
|
+
zIndex = last !== void 0 ? last + 1 : BASE_Z_INDEX;
|
|
8
|
+
stack.push(zIndex);
|
|
9
|
+
return zIndex;
|
|
10
|
+
};
|
|
11
|
+
const unregister = () => {
|
|
12
|
+
const i = stack.indexOf(zIndex);
|
|
13
|
+
if (i > -1) {
|
|
14
|
+
stack.splice(i, 1);
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
return {
|
|
18
|
+
register,
|
|
19
|
+
unregister
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export { useOverlayStack };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { computed } from 'vue';
|
|
2
|
+
|
|
3
|
+
function usePositionClasses(props) {
|
|
4
|
+
return computed(() => ({
|
|
5
|
+
"to--left": !!props.left,
|
|
6
|
+
"to--right": !!props.right,
|
|
7
|
+
"to--top": !!props.top,
|
|
8
|
+
"to--bottom": !!props.bottom
|
|
9
|
+
}));
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { usePositionClasses };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { useCore } from './use-core.js';
|
|
2
|
+
import { computed } from 'vue';
|
|
3
|
+
|
|
4
|
+
function usePresets(props) {
|
|
5
|
+
return computed(() => {
|
|
6
|
+
if (!props.preset) return void 0;
|
|
7
|
+
const core = useCore();
|
|
8
|
+
return props.preset.split(".").reduce((acc, it) => acc[it], core.presets);
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { usePresets };
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { toRefs, reactive, computed, unref, onBeforeMount, watch } from 'vue';
|
|
2
|
+
import { isDef } from '../helpers/index.js';
|
|
3
|
+
|
|
4
|
+
var InputEvents = /* @__PURE__ */ ((InputEvents2) => {
|
|
5
|
+
InputEvents2["INPUT"] = "input";
|
|
6
|
+
InputEvents2["BLUR"] = "blur";
|
|
7
|
+
return InputEvents2;
|
|
8
|
+
})(InputEvents || {});
|
|
9
|
+
function useValidate(props, state) {
|
|
10
|
+
const { validateOn = "input" /* INPUT */, modelValue } = toRefs(props);
|
|
11
|
+
const errors = reactive({
|
|
12
|
+
errorMessage: void 0,
|
|
13
|
+
hasError: false
|
|
14
|
+
});
|
|
15
|
+
const hasRules = computed(() => {
|
|
16
|
+
var _a, _b;
|
|
17
|
+
return ((_b = (_a = props.rules) == null ? void 0 : _a.length) != null ? _b : 0) > 0;
|
|
18
|
+
});
|
|
19
|
+
const isOnBlur = computed(() => unref(validateOn) === "blur" /* BLUR */);
|
|
20
|
+
function update(result) {
|
|
21
|
+
errors.hasError = !result.valid;
|
|
22
|
+
errors.errorMessage = !result.valid ? result.message : void 0;
|
|
23
|
+
}
|
|
24
|
+
function validate() {
|
|
25
|
+
if (unref(hasRules)) {
|
|
26
|
+
for (const rule of props.rules) {
|
|
27
|
+
const result = rule(props.modelValue);
|
|
28
|
+
update(result);
|
|
29
|
+
if (!result.valid) {
|
|
30
|
+
return false;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return true;
|
|
35
|
+
}
|
|
36
|
+
onBeforeMount(() => {
|
|
37
|
+
if (!unref(hasRules)) {
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
watch(modelValue, (value) => {
|
|
41
|
+
if (isDef(value) && !unref(isOnBlur)) validate();
|
|
42
|
+
});
|
|
43
|
+
watch(() => state.focused, (val) => {
|
|
44
|
+
if (!val) validate();
|
|
45
|
+
});
|
|
46
|
+
});
|
|
47
|
+
return {
|
|
48
|
+
errors,
|
|
49
|
+
hasRules,
|
|
50
|
+
validate
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export { InputEvents, useValidate };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BreakpointLabels } from '../enums/BreakpointLabels.js';
|
|
2
|
+
|
|
3
|
+
const BREAKPOINTS = [
|
|
4
|
+
BreakpointLabels.XS,
|
|
5
|
+
BreakpointLabels.SM,
|
|
6
|
+
BreakpointLabels.MD,
|
|
7
|
+
BreakpointLabels.LG,
|
|
8
|
+
BreakpointLabels.XL,
|
|
9
|
+
BreakpointLabels.XXL
|
|
10
|
+
];
|
|
11
|
+
|
|
12
|
+
export { BREAKPOINTS };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { IconAliases, IconName } from '../enums/IconName.js';
|
|
2
|
+
|
|
3
|
+
const ICONS = {
|
|
4
|
+
[IconName.CHEVRON_DOWN]: {
|
|
5
|
+
body: '<path d="M7.61 11.34 3.16 6.94a.54.54 0 0 1 0-.77l.52-.51a.55.55 0 0 1 .78 0L8 9.15l3.54-3.5a.55.55 0 0 1 .78 0l.52.52c.21.21.21.56 0 .77l-4.45 4.4a.55.55 0 0 1-.78 0Z"/>',
|
|
6
|
+
viewBox: "0 0 16 16"
|
|
7
|
+
},
|
|
8
|
+
[IconName.CALENDAR]: {
|
|
9
|
+
body: '<path d="M483 84c-8-7-16-11-26-11h-37V46a44.5 44.5 0 00-45-46h-19a44.5 44.5 0 00-45 46v27H201V46a44.5 44.5 0 00-46-46h-18c-13 0-23 4-32 13S91 33 91 46v27H55c-10 0-19 4-26 11s-11 16-11 26v365c0 10 4 19 11 26s16 11 26 11h402c10 0 18-4 26-11 7-7 10-16 10-26V110c0-10-3-19-10-26zM137 475H55v-82h82v82zm0-100H55v-92h82v92zm0-110H55v-82h82v82zm-6-131c-2-1-3-4-3-6V46c0-3 1-5 3-7 1-2 4-2 6-2h18c3 0 5 0 7 2s2 4 2 7v82c0 2 0 5-2 6-2 2-4 3-7 3h-18c-2 0-5-1-6-3zm116 341h-92v-82h92v82zm0-100h-92v-92h92v92zm0-110h-92v-82h92v82zm109 210h-91v-82h91v82zm0-100h-91v-92h91v92zm0-110h-91v-82h91v82zm-6-131c-2-1-3-4-3-6V46c0-3 1-5 3-7s4-2 6-2h19c2 0 4 0 6 2s3 4 3 7v82c0 2-1 5-3 6l-6 3h-19l-6-3zm107 341h-82v-82h82v82zm0-100h-82v-92h82v92zm0-110h-82v-82h82v82z"/>',
|
|
10
|
+
viewBox: "-30 30 550 550"
|
|
11
|
+
},
|
|
12
|
+
[IconName.CHECK]: {
|
|
13
|
+
body: '<path d="M174 439L7 273a26 26 0 010-36l37-36c10-10 26-10 36 0l112 112L432 73c10-10 26-10 36 0l37 36c9 10 9 26 0 36L210 439a26 26 0 01-36 0z"/>',
|
|
14
|
+
viewBox: "0 0 550 550"
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const ALIASES = {
|
|
18
|
+
[IconAliases.DROPDOWN]: ICONS[IconName.CHEVRON_DOWN],
|
|
19
|
+
[IconAliases.CHECKBOX_ON]: ICONS[IconName.CHECK],
|
|
20
|
+
[IconAliases.CALENDAR]: ICONS[IconName.CALENDAR]
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export { ALIASES, ICONS };
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { MaybeRef, ShallowRef, ComputedRef, InjectionKey } from 'vue';
|
|
2
|
+
|
|
3
|
+
declare enum BreakpointLabels {
|
|
4
|
+
XS = "xs",
|
|
5
|
+
SM = "sm",
|
|
6
|
+
MD = "md",
|
|
7
|
+
LG = "lg",
|
|
8
|
+
XL = "xl",
|
|
9
|
+
XXL = "xxl"
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare const BREAKPOINTS: readonly [BreakpointLabels.XS, BreakpointLabels.SM, BreakpointLabels.MD, BreakpointLabels.LG, BreakpointLabels.XL, BreakpointLabels.XXL];
|
|
13
|
+
|
|
14
|
+
type ApplicationApi = {
|
|
15
|
+
blockScroll(): void;
|
|
16
|
+
unblockScroll(): void;
|
|
17
|
+
getScrollTop(): number;
|
|
18
|
+
getScrollLeft(): number;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
interface AppBreakpoints {
|
|
22
|
+
xxl: MaybeRef<boolean>;
|
|
23
|
+
xl: MaybeRef<boolean>;
|
|
24
|
+
lg: MaybeRef<boolean>;
|
|
25
|
+
md: MaybeRef<boolean>;
|
|
26
|
+
sm: MaybeRef<boolean>;
|
|
27
|
+
xs: MaybeRef<boolean>;
|
|
28
|
+
xlAndLess: MaybeRef<boolean>;
|
|
29
|
+
lgAndLess: MaybeRef<boolean>;
|
|
30
|
+
mdAndLess: MaybeRef<boolean>;
|
|
31
|
+
smAndLess: MaybeRef<boolean>;
|
|
32
|
+
xlAndUp: MaybeRef<boolean>;
|
|
33
|
+
lgAndUp: MaybeRef<boolean>;
|
|
34
|
+
mdAndUp: MaybeRef<boolean>;
|
|
35
|
+
smAndUp: MaybeRef<boolean>;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
type DialogStackItem = {
|
|
39
|
+
id: number;
|
|
40
|
+
component: any;
|
|
41
|
+
props?: Record<string, any>;
|
|
42
|
+
};
|
|
43
|
+
interface DialogsStackApi {
|
|
44
|
+
stack: ShallowRef<DialogStackItem[]>;
|
|
45
|
+
current: ComputedRef<DialogStackItem | undefined>;
|
|
46
|
+
openDialog: (options: {
|
|
47
|
+
component: () => Promise<any>;
|
|
48
|
+
props?: Record<string, any>;
|
|
49
|
+
}) => Promise<number>;
|
|
50
|
+
closeDialog: (id?: number) => void;
|
|
51
|
+
closeAll: () => void;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
type ValidatorFn = () => boolean;
|
|
55
|
+
interface FormApi {
|
|
56
|
+
add(fn: ValidatorFn): void;
|
|
57
|
+
remove(fn: ValidatorFn): void;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
declare const $FORM_API_KEY: InjectionKey<FormApi>;
|
|
61
|
+
declare const $LIST_API_KEY: InjectionKey<any>;
|
|
62
|
+
declare const $MENU_API_KEY: InjectionKey<any>;
|
|
63
|
+
declare const $APP_API_KEY: InjectionKey<ApplicationApi>;
|
|
64
|
+
declare const $BREAKPOINTS_KEY: InjectionKey<AppBreakpoints>;
|
|
65
|
+
declare const $VUELAND_UI_KEY: InjectionKey<any>;
|
|
66
|
+
declare const $DIALOGS_STACK_API_KEY: InjectionKey<DialogsStackApi>;
|
|
67
|
+
|
|
68
|
+
declare const ICONS: {
|
|
69
|
+
"chevron-down": {
|
|
70
|
+
body: string;
|
|
71
|
+
viewBox: string;
|
|
72
|
+
};
|
|
73
|
+
calendar: {
|
|
74
|
+
body: string;
|
|
75
|
+
viewBox: string;
|
|
76
|
+
};
|
|
77
|
+
check: {
|
|
78
|
+
body: string;
|
|
79
|
+
viewBox: string;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
declare const ALIASES: {
|
|
83
|
+
dropdown: {
|
|
84
|
+
body: string;
|
|
85
|
+
viewBox: string;
|
|
86
|
+
};
|
|
87
|
+
checkboxOn: {
|
|
88
|
+
body: string;
|
|
89
|
+
viewBox: string;
|
|
90
|
+
};
|
|
91
|
+
calendar: {
|
|
92
|
+
body: string;
|
|
93
|
+
viewBox: string;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
export { $APP_API_KEY, $BREAKPOINTS_KEY, $DIALOGS_STACK_API_KEY, $FORM_API_KEY, $LIST_API_KEY, $MENU_API_KEY, $VUELAND_UI_KEY, ALIASES, BREAKPOINTS, ICONS };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const $FORM_API_KEY = /* @__PURE__ */ Symbol();
|
|
2
|
+
const $LIST_API_KEY = /* @__PURE__ */ Symbol();
|
|
3
|
+
const $MENU_API_KEY = /* @__PURE__ */ Symbol();
|
|
4
|
+
const $APP_API_KEY = /* @__PURE__ */ Symbol();
|
|
5
|
+
const $BREAKPOINTS_KEY = /* @__PURE__ */ Symbol();
|
|
6
|
+
const $VUELAND_UI_KEY = /* @__PURE__ */ Symbol();
|
|
7
|
+
const $DIALOGS_STACK_API_KEY = /* @__PURE__ */ Symbol();
|
|
8
|
+
|
|
9
|
+
export { $APP_API_KEY, $BREAKPOINTS_KEY, $DIALOGS_STACK_API_KEY, $FORM_API_KEY, $LIST_API_KEY, $MENU_API_KEY, $VUELAND_UI_KEY };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.c-app{--app-background-color:var(--global-base-color);display:flex}.c-app__wrapper{backface-visibility:hidden;background-color:var(--app-background-color);display:flex;flex:1 1 auto;flex-direction:column;max-width:100%;min-height:100vh;min-height:100dvh;position:relative}.c-app--block-scroll{bottom:0;left:var(--scroll-left);pointer-events:none;position:fixed;top:var(--scroll-top);width:100%}.c-btn{--btn-text-color:#fff;--btn-border-radius:var(--global-border-radius);--btn-bg-color:var(--global-primary-color);--btn-paddings:8px 12px;--btn-min-width:80px;--btn-width:auto;--btn-min-height:24px;--btn-height:auto;--btn-font-size:16px;align-items:center;border-radius:var(--btn-border-radius);color:var(--btn-text-color);display:inline-flex;font-size:var(--btn-font-size);height:var(--btn-height);justify-content:center;min-height:var(--btn-min-height);min-width:var(--btn-min-width);padding:var(--btn-paddings);position:relative;text-decoration:none;user-select:none;vertical-align:middle;width:var(--btn-width)}.c-btn__label{white-space:nowrap}.c-btn:disabled{background-color:#bdbdbd!important;color:#eee!important;cursor:not-allowed;pointer-events:none}.c-btn--flat{background-color:var(--btn-bg-color);color:currentColor}.c-btn--outlined{background-color:transparent;border:1px solid;color:currentColor}.c-btn--outlined:before{bottom:0;content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.c-btn--block,.c-form{width:100%}:root{--global-border-radius:8px;--global-error-color:#ef231f;--global-success-color:#43d31b;--global-primary-color:#1f77c4;--global-secondary-color:#39638c;--global-base-color:#fff;--global-text-color:#3d3d3d}.c-input{--input-field-height:40px;--input-hints-height:24px;--input-field-border-radius:var(--global-border-radius);--input-field-border-color:#e5e5e5;--input-field-text-color:var(--global-text-color);--input-details-height:24px;--input-error-color:var(--global-error-color);--input-primary-color:var(--global-primary-color);--input-prepend-width:40px;--input-append-width:40px;--input-background-color:var(--global-base-color);--input-label-padding-x:4px;--input-label-left:5px;--input-label-font-size:16px;background-color:var(--input-background-color);border-radius:var(--global-border-radius);color:currentColor;display:flex;flex:1 1 auto;flex-direction:column;position:relative;transition:color .2s cubic-bezier(.25,.8,.5,1)}.c-input--focused .c-input__label>.c-label,.c-input--focused.c-input--has-prepend .c-input__label>.c-label,.c-input--has-value .c-input__label>.c-label,.c-input--has-value.c-input--has-prepend .c-input__label>.c-label{background-color:inherit;transform:translateY(-50%) scale(.9)}.c-input--focused .c-input__field{border:thin solid}.c-input--focused .c-autocomplete+.c-input__append,.c-input--focused .c-select+.c-input__append{transform:rotate(180deg)}.c-input--has-error{color:var(--input-error-color)}.c-input--default{color:var(--input-primary-color)}.c-input--has-prepend .c-input__label>.c-label{transform:translate(calc(var(--input-prepend-width) - var(--input-label-padding-x)*2),calc(var(--input-field-height)/2 - var(--input-label-font-size)/2))}.c-input--has-prepend .c-input__field>*>input{padding-left:var(--input-prepend-width)}.c-input--has-append .c-input__field>*>input{padding-right:var(--input-append-width)}.c-input__prepend{left:0;width:var(--input-prepend-width)}.c-input__append,.c-input__prepend{align-items:center;display:flex;height:var(--input-field-height);justify-content:center;position:absolute;top:0}.c-input__append{right:0;transition:transform .1s linear;width:var(--input-append-width)}.c-input__label{background-color:inherit;border-radius:var(--input-field-border-radius);height:0;position:absolute;top:0}.c-input__label .c-label{background-color:transparent;font-size:var(--input-label-font-size);left:var(--input-label-left);line-height:.9;padding:0 var(--input-label-padding-x);pointer-events:none;position:absolute;transform:translateY(calc(var(--input-field-height)/2 - var(--input-label-font-size)/2)) scale(1);transition:background-color,transform,.1s linear}.c-input__field{border:thin solid var(--input-field-border-color);border-radius:var(--input-field-border-radius);display:flex;height:var(--input-field-height);overflow:hidden;position:relative;transition:.4s cubic-bezier(.25,.8,.5,1);transition-property:color,border-color}.c-input__field>*>input,.c-input__field>*>textarea{color:var(--input-field-text-color)}.c-input__details{align-items:center;background-color:transparent;display:flex;height:var(--input-details-height);justify-content:start}.c-toolbar{--toolbar-height:60px;--toolbar-logo-width:auto;--toolbar-background-color:var(--global-base-color);--toolbar-logo-padding:0 10px;background-color:var(--toolbar-background-color);display:flex;height:var(--toolbar-height);width:100%}.c-toolbar-logo{align-items:center;display:flex;justify-content:center;padding:var(--toolbar-logo-padding);width:var(--toolbar-logo-width)}.c-toolbar--fixed{left:0;position:fixed;right:0;top:0;z-index:1}.c-list{--list-bg-color:var(--global-base-color)}.c-list--readonly{pointer-events:none}.c-list-item{--list-item-height:36px;align-items:center;color:currentColor;cursor:pointer;display:flex;height:var(--list-item-height);justify-content:start;position:relative}.c-list-item:before{background:rgba(0,0,0,.1);bottom:0;content:"";display:block;left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0}.c-list-item--active:before,.c-list-item:hover:before{opacity:1}.c-list-item-title{padding:0 8px}.c-menu{--menu-bg-color:var(--global-base-color);--menu-text-color:var(--global-text-color);--menu-border-radius:var(--global-border-radius);--menu-max-height:300px;background-color:var(--menu-bg-color);border-radius:var(--menu-border-radius);box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);color:var(--menu-text-color);max-height:var(--menu-max-height);overflow:hidden;position:absolute;width:auto}.c-menu__content{height:inherit;max-height:inherit;max-width:inherit;overflow-x:hidden;overflow-y:auto;width:inherit}.c-text-field{width:100%}.c-text-field__input{height:100%;outline:none;padding:10px;width:100%}.c-select{display:flex;width:100%}.c-select__field{outline:none}.c-autocomplete{width:100%}.c-autocomplete__field{outline:none}.c-field{--field-padding:4px 8px;color:currentColor;height:100%;padding:var(--field-padding);width:100%}.c-field::placeholder{opacity:0}.c-field--focused::placeholder{opacity:1}.c-field--filled::placeholder{opacity:0}.c-card{--card-width:100%;--card-header-padding:16px;--card-body-padding:16px;--card-footer-padding:16px;--card-border-radius:8px;--card-background-color:var(--global-base-color);--card-text-color:var(--global-text-color);background-color:var(--card-background-color);border-radius:var(--card-border-radius);color:var(--card-text-color);display:flex;flex-direction:column;overflow:hidden;width:var(--card-width)}.c-card-header{flex-grow:0;padding:var(--card-header-padding)}.c-card-body{padding:var(--card-body-padding)}.c-card-footer{flex-grow:0;padding:var(--card-footer-padding)}.c-main{flex:1 0 auto;max-width:100%}.c-row{display:flex;flex-wrap:wrap;margin-left:-3.3333333333px;margin-right:-3.3333333333px}.c-row.no-gutter{margin-left:0;margin-right:0}.c-row.no-gutter>.c-col{padding-left:0;padding-right:0}.c-col{padding-left:3.3333333333px;padding-right:3.3333333333px;position:relative;width:100%}.c-spacer{flex-grow:1!important}.c-col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.offset-1{margin-left:8.3333333333%}.c-col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.offset-2{margin-left:16.6666666667%}.c-col-3{flex:0 0 25%;max-width:25%}.offset-3{margin-left:25%}.c-col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.offset-4{margin-left:33.3333333333%}.c-col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.offset-5{margin-left:41.6666666667%}.c-col-6{flex:0 0 50%;max-width:50%}.offset-6{margin-left:50%}.c-col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.offset-7{margin-left:58.3333333333%}.c-col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.offset-8{margin-left:66.6666666667%}.c-col-9{flex:0 0 75%;max-width:75%}.offset-9{margin-left:75%}.c-col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.offset-10{margin-left:83.3333333333%}.c-col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.offset-11{margin-left:91.6666666667%}.c-col-12{flex:0 0 100%;max-width:100%}.offset-12{margin-left:100%}@media (min-width:0){.c-row{margin-left:-.2083333333px;margin-right:-.2083333333px}.c-col{padding-left:.2083333333px;padding-right:.2083333333px}.c-col.xs-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.xs\:offset-1{margin-left:8.3333333333%}.xs\:order-1{order:1}.c-col.xs-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.xs\:offset-2{margin-left:16.6666666667%}.xs\:order-2{order:2}.c-col.xs-3{flex:0 0 25%;max-width:25%}.xs\:offset-3{margin-left:25%}.xs\:order-3{order:3}.c-col.xs-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.xs\:offset-4{margin-left:33.3333333333%}.xs\:order-4{order:4}.c-col.xs-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.xs\:offset-5{margin-left:41.6666666667%}.xs\:order-5{order:5}.c-col.xs-6{flex:0 0 50%;max-width:50%}.xs\:offset-6{margin-left:50%}.xs\:order-6{order:6}.c-col.xs-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.xs\:offset-7{margin-left:58.3333333333%}.xs\:order-7{order:7}.c-col.xs-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.xs\:offset-8{margin-left:66.6666666667%}.xs\:order-8{order:8}.c-col.xs-9{flex:0 0 75%;max-width:75%}.xs\:offset-9{margin-left:75%}.xs\:order-9{order:9}.c-col.xs-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.xs\:offset-10{margin-left:83.3333333333%}.xs\:order-10{order:10}.c-col.xs-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.xs\:offset-11{margin-left:91.6666666667%}.xs\:order-11{order:11}.c-col.xs-12{flex:0 0 100%;max-width:100%}.xs\:offset-12{margin-left:100%}.xs\:order-12{order:12}}@media (min-width:576px){.c-row{margin-left:-.4166666667px;margin-right:-.4166666667px}.c-col{padding-left:.4166666667px;padding-right:.4166666667px}.c-col.sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.sm\:offset-1{margin-left:8.3333333333%}.sm\:order-1{order:1}.c-col.sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.sm\:offset-2{margin-left:16.6666666667%}.sm\:order-2{order:2}.c-col.sm-3{flex:0 0 25%;max-width:25%}.sm\:offset-3{margin-left:25%}.sm\:order-3{order:3}.c-col.sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.sm\:offset-4{margin-left:33.3333333333%}.sm\:order-4{order:4}.c-col.sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.sm\:offset-5{margin-left:41.6666666667%}.sm\:order-5{order:5}.c-col.sm-6{flex:0 0 50%;max-width:50%}.sm\:offset-6{margin-left:50%}.sm\:order-6{order:6}.c-col.sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.sm\:offset-7{margin-left:58.3333333333%}.sm\:order-7{order:7}.c-col.sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.sm\:offset-8{margin-left:66.6666666667%}.sm\:order-8{order:8}.c-col.sm-9{flex:0 0 75%;max-width:75%}.sm\:offset-9{margin-left:75%}.sm\:order-9{order:9}.c-col.sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.sm\:offset-10{margin-left:83.3333333333%}.sm\:order-10{order:10}.c-col.sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.sm\:offset-11{margin-left:91.6666666667%}.sm\:order-11{order:11}.c-col.sm-12{flex:0 0 100%;max-width:100%}.sm\:offset-12{margin-left:100%}.sm\:order-12{order:12}}@media (min-width:768px){.c-row{margin-left:-.8333333333px;margin-right:-.8333333333px}.c-col{padding-left:.8333333333px;padding-right:.8333333333px}.c-col.md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.md\:offset-1{margin-left:8.3333333333%}.md\:order-1{order:1}.c-col.md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.md\:offset-2{margin-left:16.6666666667%}.md\:order-2{order:2}.c-col.md-3{flex:0 0 25%;max-width:25%}.md\:offset-3{margin-left:25%}.md\:order-3{order:3}.c-col.md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.md\:offset-4{margin-left:33.3333333333%}.md\:order-4{order:4}.c-col.md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.md\:offset-5{margin-left:41.6666666667%}.md\:order-5{order:5}.c-col.md-6{flex:0 0 50%;max-width:50%}.md\:offset-6{margin-left:50%}.md\:order-6{order:6}.c-col.md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.md\:offset-7{margin-left:58.3333333333%}.md\:order-7{order:7}.c-col.md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.md\:offset-8{margin-left:66.6666666667%}.md\:order-8{order:8}.c-col.md-9{flex:0 0 75%;max-width:75%}.md\:offset-9{margin-left:75%}.md\:order-9{order:9}.c-col.md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.md\:offset-10{margin-left:83.3333333333%}.md\:order-10{order:10}.c-col.md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.md\:offset-11{margin-left:91.6666666667%}.md\:order-11{order:11}.c-col.md-12{flex:0 0 100%;max-width:100%}.md\:offset-12{margin-left:100%}.md\:order-12{order:12}}@media (min-width:992px){.c-row{margin-left:-1.6666666667px;margin-right:-1.6666666667px}.c-col{padding-left:1.6666666667px;padding-right:1.6666666667px}.c-col.lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.lg\:offset-1{margin-left:8.3333333333%}.lg\:order-1{order:1}.c-col.lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.lg\:offset-2{margin-left:16.6666666667%}.lg\:order-2{order:2}.c-col.lg-3{flex:0 0 25%;max-width:25%}.lg\:offset-3{margin-left:25%}.lg\:order-3{order:3}.c-col.lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.lg\:offset-4{margin-left:33.3333333333%}.lg\:order-4{order:4}.c-col.lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.lg\:offset-5{margin-left:41.6666666667%}.lg\:order-5{order:5}.c-col.lg-6{flex:0 0 50%;max-width:50%}.lg\:offset-6{margin-left:50%}.lg\:order-6{order:6}.c-col.lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.lg\:offset-7{margin-left:58.3333333333%}.lg\:order-7{order:7}.c-col.lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.lg\:offset-8{margin-left:66.6666666667%}.lg\:order-8{order:8}.c-col.lg-9{flex:0 0 75%;max-width:75%}.lg\:offset-9{margin-left:75%}.lg\:order-9{order:9}.c-col.lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.lg\:offset-10{margin-left:83.3333333333%}.lg\:order-10{order:10}.c-col.lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.lg\:offset-11{margin-left:91.6666666667%}.lg\:order-11{order:11}.c-col.lg-12{flex:0 0 100%;max-width:100%}.lg\:offset-12{margin-left:100%}.lg\:order-12{order:12}}@media (min-width:1200px){.c-row{margin-left:-3.3333333333px;margin-right:-3.3333333333px}.c-col{padding-left:3.3333333333px;padding-right:3.3333333333px}.c-col.xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.xl\:offset-1{margin-left:8.3333333333%}.xl\:order-1{order:1}.c-col.xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.xl\:offset-2{margin-left:16.6666666667%}.xl\:order-2{order:2}.c-col.xl-3{flex:0 0 25%;max-width:25%}.xl\:offset-3{margin-left:25%}.xl\:order-3{order:3}.c-col.xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.xl\:offset-4{margin-left:33.3333333333%}.xl\:order-4{order:4}.c-col.xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.xl\:offset-5{margin-left:41.6666666667%}.xl\:order-5{order:5}.c-col.xl-6{flex:0 0 50%;max-width:50%}.xl\:offset-6{margin-left:50%}.xl\:order-6{order:6}.c-col.xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.xl\:offset-7{margin-left:58.3333333333%}.xl\:order-7{order:7}.c-col.xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.xl\:offset-8{margin-left:66.6666666667%}.xl\:order-8{order:8}.c-col.xl-9{flex:0 0 75%;max-width:75%}.xl\:offset-9{margin-left:75%}.xl\:order-9{order:9}.c-col.xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.xl\:offset-10{margin-left:83.3333333333%}.xl\:order-10{order:10}.c-col.xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.xl\:offset-11{margin-left:91.6666666667%}.xl\:order-11{order:11}.c-col.xl-12{flex:0 0 100%;max-width:100%}.xl\:offset-12{margin-left:100%}.xl\:order-12{order:12}}@media (min-width:1920px){.c-row{margin-left:-5px;margin-right:-5px}.c-col{padding-left:5px;padding-right:5px}.c-col.xxl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.xxl\:offset-1{margin-left:8.3333333333%}.xxl\:order-1{order:1}.c-col.xxl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.xxl\:offset-2{margin-left:16.6666666667%}.xxl\:order-2{order:2}.c-col.xxl-3{flex:0 0 25%;max-width:25%}.xxl\:offset-3{margin-left:25%}.xxl\:order-3{order:3}.c-col.xxl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.xxl\:offset-4{margin-left:33.3333333333%}.xxl\:order-4{order:4}.c-col.xxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.xxl\:offset-5{margin-left:41.6666666667%}.xxl\:order-5{order:5}.c-col.xxl-6{flex:0 0 50%;max-width:50%}.xxl\:offset-6{margin-left:50%}.xxl\:order-6{order:6}.c-col.xxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.xxl\:offset-7{margin-left:58.3333333333%}.xxl\:order-7{order:7}.c-col.xxl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.xxl\:offset-8{margin-left:66.6666666667%}.xxl\:order-8{order:8}.c-col.xxl-9{flex:0 0 75%;max-width:75%}.xxl\:offset-9{margin-left:75%}.xxl\:order-9{order:9}.c-col.xxl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.xxl\:offset-10{margin-left:83.3333333333%}.xxl\:order-10{order:10}.c-col.xxl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.xxl\:offset-11{margin-left:91.6666666667%}.xxl\:order-11{order:11}.c-col.xxl-12{flex:0 0 100%;max-width:100%}.xxl\:offset-12{margin-left:100%}.xxl\:order-12{order:12}}.c-icon{align-items:center;flex:0 0 auto;justify-content:center;line-height:1;vertical-align:middle}.c-icon,.c-icon--empty{display:inline-flex}.c-icon__component,.c-icon__svg{display:block;flex:0 0 auto;height:100%;width:100%}.c-dialog{align-items:center;display:flex;justify-content:center}.c-dialog,.c-scrim{bottom:0;left:0;position:fixed;right:0;top:0}.c-scrim--blurred{backdrop-filter:blur(10px)}.c-checkbox{cursor:pointer;display:flex;user-select:none}.c-checkbox__icon{border:thin solid;border-radius:4px;margin-right:4px}.c-checkbox__icon,.c-checkbox__label{color:currentColor}.c-checkbox--error{color:var(--global-error-color)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.bg-red{background-color:#f44336!important;border-color:#f44336!important}.active\:bg-red:active,.hover\:bg-red:hover,[class*="hover:bg-"][class*="active:bg-red"]:active{background:#f44336!important;transition:background .1s}.text-red{caret-color:#f44336!important;color:#f44336!important}.text-red:hover:active:before{background:#f44336!important;opacity:.3;transition:background .1s}.bg-red-base{background-color:#f44336!important;border-color:#f44336!important}.active\:bg-red-base:active,.hover\:bg-red-base:hover,[class*="hover:bg-"][class*="active:bg-red-base"]:active{background:#f44336!important;transition:background .1s}.text-red-base{caret-color:#f44336!important;color:#f44336!important}.text-red-base:hover:active:before{background:#f44336!important;opacity:.3;transition:background .1s}.bg-red-lighten-5{background-color:#ffebee!important;border-color:#ffebee!important}.active\:bg-red-lighten-5:active,.hover\:bg-red-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-red-lighten-5"]:active{background:#ffebee!important;transition:background .1s}.text-red-lighten-5{caret-color:#ffebee!important;color:#ffebee!important}.text-red-lighten-5:hover:active:before{background:#ffebee!important;opacity:.3;transition:background .1s}.bg-red-lighten-4{background-color:#ffcdd2!important;border-color:#ffcdd2!important}.active\:bg-red-lighten-4:active,.hover\:bg-red-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-red-lighten-4"]:active{background:#ffcdd2!important;transition:background .1s}.text-red-lighten-4{caret-color:#ffcdd2!important;color:#ffcdd2!important}.text-red-lighten-4:hover:active:before{background:#ffcdd2!important;opacity:.3;transition:background .1s}.bg-red-lighten-3{background-color:#ef9a9a!important;border-color:#ef9a9a!important}.active\:bg-red-lighten-3:active,.hover\:bg-red-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-red-lighten-3"]:active{background:#ef9a9a!important;transition:background .1s}.text-red-lighten-3{caret-color:#ef9a9a!important;color:#ef9a9a!important}.text-red-lighten-3:hover:active:before{background:#ef9a9a!important;opacity:.3;transition:background .1s}.bg-red-lighten-2{background-color:#e57373!important;border-color:#e57373!important}.active\:bg-red-lighten-2:active,.hover\:bg-red-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-red-lighten-2"]:active{background:#e57373!important;transition:background .1s}.text-red-lighten-2{caret-color:#e57373!important;color:#e57373!important}.text-red-lighten-2:hover:active:before{background:#e57373!important;opacity:.3;transition:background .1s}.bg-red-lighten-1{background-color:#ef5350!important;border-color:#ef5350!important}.active\:bg-red-lighten-1:active,.hover\:bg-red-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-red-lighten-1"]:active{background:#ef5350!important;transition:background .1s}.text-red-lighten-1{caret-color:#ef5350!important;color:#ef5350!important}.text-red-lighten-1:hover:active:before{background:#ef5350!important;opacity:.3;transition:background .1s}.bg-red-darken-1{background-color:#e53935!important;border-color:#e53935!important}.active\:bg-red-darken-1:active,.hover\:bg-red-darken-1:hover,[class*="hover:bg-"][class*="active:bg-red-darken-1"]:active{background:#e53935!important;transition:background .1s}.text-red-darken-1{caret-color:#e53935!important;color:#e53935!important}.text-red-darken-1:hover:active:before{background:#e53935!important;opacity:.3;transition:background .1s}.bg-red-darken-2{background-color:#d32f2f!important;border-color:#d32f2f!important}.active\:bg-red-darken-2:active,.hover\:bg-red-darken-2:hover,[class*="hover:bg-"][class*="active:bg-red-darken-2"]:active{background:#d32f2f!important;transition:background .1s}.text-red-darken-2{caret-color:#d32f2f!important;color:#d32f2f!important}.text-red-darken-2:hover:active:before{background:#d32f2f!important;opacity:.3;transition:background .1s}.bg-red-darken-3{background-color:#c62828!important;border-color:#c62828!important}.active\:bg-red-darken-3:active,.hover\:bg-red-darken-3:hover,[class*="hover:bg-"][class*="active:bg-red-darken-3"]:active{background:#c62828!important;transition:background .1s}.text-red-darken-3{caret-color:#c62828!important;color:#c62828!important}.text-red-darken-3:hover:active:before{background:#c62828!important;opacity:.3;transition:background .1s}.bg-red-darken-4{background-color:#b71c1c!important;border-color:#b71c1c!important}.active\:bg-red-darken-4:active,.hover\:bg-red-darken-4:hover,[class*="hover:bg-"][class*="active:bg-red-darken-4"]:active{background:#b71c1c!important;transition:background .1s}.text-red-darken-4{caret-color:#b71c1c!important;color:#b71c1c!important}.text-red-darken-4:hover:active:before{background:#b71c1c!important;opacity:.3;transition:background .1s}.bg-red-accent-1{background-color:#ff8a80!important;border-color:#ff8a80!important}.active\:bg-red-accent-1:active,.hover\:bg-red-accent-1:hover,[class*="hover:bg-"][class*="active:bg-red-accent-1"]:active{background:#ff8a80!important;transition:background .1s}.text-red-accent-1{caret-color:#ff8a80!important;color:#ff8a80!important}.text-red-accent-1:hover:active:before{background:#ff8a80!important;opacity:.3;transition:background .1s}.bg-red-accent-2{background-color:#ff5252!important;border-color:#ff5252!important}.active\:bg-red-accent-2:active,.hover\:bg-red-accent-2:hover,[class*="hover:bg-"][class*="active:bg-red-accent-2"]:active{background:#ff5252!important;transition:background .1s}.text-red-accent-2{caret-color:#ff5252!important;color:#ff5252!important}.text-red-accent-2:hover:active:before{background:#ff5252!important;opacity:.3;transition:background .1s}.bg-red-accent-3{background-color:#ff1744!important;border-color:#ff1744!important}.active\:bg-red-accent-3:active,.hover\:bg-red-accent-3:hover,[class*="hover:bg-"][class*="active:bg-red-accent-3"]:active{background:#ff1744!important;transition:background .1s}.text-red-accent-3{caret-color:#ff1744!important;color:#ff1744!important}.text-red-accent-3:hover:active:before{background:#ff1744!important;opacity:.3;transition:background .1s}.bg-red-accent-4{background-color:#d50000!important;border-color:#d50000!important}.active\:bg-red-accent-4:active,.hover\:bg-red-accent-4:hover,[class*="hover:bg-"][class*="active:bg-red-accent-4"]:active{background:#d50000!important;transition:background .1s}.text-red-accent-4{caret-color:#d50000!important;color:#d50000!important}.text-red-accent-4:hover:active:before{background:#d50000!important;opacity:.3;transition:background .1s}.bg-pink{background-color:#e91e63!important;border-color:#e91e63!important}.active\:bg-pink:active,.hover\:bg-pink:hover,[class*="hover:bg-"][class*="active:bg-pink"]:active{background:#e91e63!important;transition:background .1s}.text-pink{caret-color:#e91e63!important;color:#e91e63!important}.text-pink:hover:active:before{background:#e91e63!important;opacity:.3;transition:background .1s}.bg-pink-base{background-color:#e91e63!important;border-color:#e91e63!important}.active\:bg-pink-base:active,.hover\:bg-pink-base:hover,[class*="hover:bg-"][class*="active:bg-pink-base"]:active{background:#e91e63!important;transition:background .1s}.text-pink-base{caret-color:#e91e63!important;color:#e91e63!important}.text-pink-base:hover:active:before{background:#e91e63!important;opacity:.3;transition:background .1s}.bg-pink-lighten-5{background-color:#fce4ec!important;border-color:#fce4ec!important}.active\:bg-pink-lighten-5:active,.hover\:bg-pink-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-pink-lighten-5"]:active{background:#fce4ec!important;transition:background .1s}.text-pink-lighten-5{caret-color:#fce4ec!important;color:#fce4ec!important}.text-pink-lighten-5:hover:active:before{background:#fce4ec!important;opacity:.3;transition:background .1s}.bg-pink-lighten-4{background-color:#f8bbd0!important;border-color:#f8bbd0!important}.active\:bg-pink-lighten-4:active,.hover\:bg-pink-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-pink-lighten-4"]:active{background:#f8bbd0!important;transition:background .1s}.text-pink-lighten-4{caret-color:#f8bbd0!important;color:#f8bbd0!important}.text-pink-lighten-4:hover:active:before{background:#f8bbd0!important;opacity:.3;transition:background .1s}.bg-pink-lighten-3{background-color:#f48fb1!important;border-color:#f48fb1!important}.active\:bg-pink-lighten-3:active,.hover\:bg-pink-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-pink-lighten-3"]:active{background:#f48fb1!important;transition:background .1s}.text-pink-lighten-3{caret-color:#f48fb1!important;color:#f48fb1!important}.text-pink-lighten-3:hover:active:before{background:#f48fb1!important;opacity:.3;transition:background .1s}.bg-pink-lighten-2{background-color:#f06292!important;border-color:#f06292!important}.active\:bg-pink-lighten-2:active,.hover\:bg-pink-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-pink-lighten-2"]:active{background:#f06292!important;transition:background .1s}.text-pink-lighten-2{caret-color:#f06292!important;color:#f06292!important}.text-pink-lighten-2:hover:active:before{background:#f06292!important;opacity:.3;transition:background .1s}.bg-pink-lighten-1{background-color:#ec407a!important;border-color:#ec407a!important}.active\:bg-pink-lighten-1:active,.hover\:bg-pink-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-pink-lighten-1"]:active{background:#ec407a!important;transition:background .1s}.text-pink-lighten-1{caret-color:#ec407a!important;color:#ec407a!important}.text-pink-lighten-1:hover:active:before{background:#ec407a!important;opacity:.3;transition:background .1s}.bg-pink-darken-1{background-color:#d81b60!important;border-color:#d81b60!important}.active\:bg-pink-darken-1:active,.hover\:bg-pink-darken-1:hover,[class*="hover:bg-"][class*="active:bg-pink-darken-1"]:active{background:#d81b60!important;transition:background .1s}.text-pink-darken-1{caret-color:#d81b60!important;color:#d81b60!important}.text-pink-darken-1:hover:active:before{background:#d81b60!important;opacity:.3;transition:background .1s}.bg-pink-darken-2{background-color:#c2185b!important;border-color:#c2185b!important}.active\:bg-pink-darken-2:active,.hover\:bg-pink-darken-2:hover,[class*="hover:bg-"][class*="active:bg-pink-darken-2"]:active{background:#c2185b!important;transition:background .1s}.text-pink-darken-2{caret-color:#c2185b!important;color:#c2185b!important}.text-pink-darken-2:hover:active:before{background:#c2185b!important;opacity:.3;transition:background .1s}.bg-pink-darken-3{background-color:#ad1457!important;border-color:#ad1457!important}.active\:bg-pink-darken-3:active,.hover\:bg-pink-darken-3:hover,[class*="hover:bg-"][class*="active:bg-pink-darken-3"]:active{background:#ad1457!important;transition:background .1s}.text-pink-darken-3{caret-color:#ad1457!important;color:#ad1457!important}.text-pink-darken-3:hover:active:before{background:#ad1457!important;opacity:.3;transition:background .1s}.bg-pink-darken-4{background-color:#880e4f!important;border-color:#880e4f!important}.active\:bg-pink-darken-4:active,.hover\:bg-pink-darken-4:hover,[class*="hover:bg-"][class*="active:bg-pink-darken-4"]:active{background:#880e4f!important;transition:background .1s}.text-pink-darken-4{caret-color:#880e4f!important;color:#880e4f!important}.text-pink-darken-4:hover:active:before{background:#880e4f!important;opacity:.3;transition:background .1s}.bg-pink-accent-1{background-color:#ff80ab!important;border-color:#ff80ab!important}.active\:bg-pink-accent-1:active,.hover\:bg-pink-accent-1:hover,[class*="hover:bg-"][class*="active:bg-pink-accent-1"]:active{background:#ff80ab!important;transition:background .1s}.text-pink-accent-1{caret-color:#ff80ab!important;color:#ff80ab!important}.text-pink-accent-1:hover:active:before{background:#ff80ab!important;opacity:.3;transition:background .1s}.bg-pink-accent-2{background-color:#ff4081!important;border-color:#ff4081!important}.active\:bg-pink-accent-2:active,.hover\:bg-pink-accent-2:hover,[class*="hover:bg-"][class*="active:bg-pink-accent-2"]:active{background:#ff4081!important;transition:background .1s}.text-pink-accent-2{caret-color:#ff4081!important;color:#ff4081!important}.text-pink-accent-2:hover:active:before{background:#ff4081!important;opacity:.3;transition:background .1s}.bg-pink-accent-3{background-color:#f50057!important;border-color:#f50057!important}.active\:bg-pink-accent-3:active,.hover\:bg-pink-accent-3:hover,[class*="hover:bg-"][class*="active:bg-pink-accent-3"]:active{background:#f50057!important;transition:background .1s}.text-pink-accent-3{caret-color:#f50057!important;color:#f50057!important}.text-pink-accent-3:hover:active:before{background:#f50057!important;opacity:.3;transition:background .1s}.bg-pink-accent-4{background-color:#c51162!important;border-color:#c51162!important}.active\:bg-pink-accent-4:active,.hover\:bg-pink-accent-4:hover,[class*="hover:bg-"][class*="active:bg-pink-accent-4"]:active{background:#c51162!important;transition:background .1s}.text-pink-accent-4{caret-color:#c51162!important;color:#c51162!important}.text-pink-accent-4:hover:active:before{background:#c51162!important;opacity:.3;transition:background .1s}.bg-purple{background-color:#9c27b0!important;border-color:#9c27b0!important}.active\:bg-purple:active,.hover\:bg-purple:hover,[class*="hover:bg-"][class*="active:bg-purple"]:active{background:#9c27b0!important;transition:background .1s}.text-purple{caret-color:#9c27b0!important;color:#9c27b0!important}.text-purple:hover:active:before{background:#9c27b0!important;opacity:.3;transition:background .1s}.bg-purple-base{background-color:#9c27b0!important;border-color:#9c27b0!important}.active\:bg-purple-base:active,.hover\:bg-purple-base:hover,[class*="hover:bg-"][class*="active:bg-purple-base"]:active{background:#9c27b0!important;transition:background .1s}.text-purple-base{caret-color:#9c27b0!important;color:#9c27b0!important}.text-purple-base:hover:active:before{background:#9c27b0!important;opacity:.3;transition:background .1s}.bg-purple-lighten-5{background-color:#f3e5f5!important;border-color:#f3e5f5!important}.active\:bg-purple-lighten-5:active,.hover\:bg-purple-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-purple-lighten-5"]:active{background:#f3e5f5!important;transition:background .1s}.text-purple-lighten-5{caret-color:#f3e5f5!important;color:#f3e5f5!important}.text-purple-lighten-5:hover:active:before{background:#f3e5f5!important;opacity:.3;transition:background .1s}.bg-purple-lighten-4{background-color:#e1bee7!important;border-color:#e1bee7!important}.active\:bg-purple-lighten-4:active,.hover\:bg-purple-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-purple-lighten-4"]:active{background:#e1bee7!important;transition:background .1s}.text-purple-lighten-4{caret-color:#e1bee7!important;color:#e1bee7!important}.text-purple-lighten-4:hover:active:before{background:#e1bee7!important;opacity:.3;transition:background .1s}.bg-purple-lighten-3{background-color:#ce93d8!important;border-color:#ce93d8!important}.active\:bg-purple-lighten-3:active,.hover\:bg-purple-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-purple-lighten-3"]:active{background:#ce93d8!important;transition:background .1s}.text-purple-lighten-3{caret-color:#ce93d8!important;color:#ce93d8!important}.text-purple-lighten-3:hover:active:before{background:#ce93d8!important;opacity:.3;transition:background .1s}.bg-purple-lighten-2{background-color:#ba68c8!important;border-color:#ba68c8!important}.active\:bg-purple-lighten-2:active,.hover\:bg-purple-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-purple-lighten-2"]:active{background:#ba68c8!important;transition:background .1s}.text-purple-lighten-2{caret-color:#ba68c8!important;color:#ba68c8!important}.text-purple-lighten-2:hover:active:before{background:#ba68c8!important;opacity:.3;transition:background .1s}.bg-purple-lighten-1{background-color:#ab47bc!important;border-color:#ab47bc!important}.active\:bg-purple-lighten-1:active,.hover\:bg-purple-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-purple-lighten-1"]:active{background:#ab47bc!important;transition:background .1s}.text-purple-lighten-1{caret-color:#ab47bc!important;color:#ab47bc!important}.text-purple-lighten-1:hover:active:before{background:#ab47bc!important;opacity:.3;transition:background .1s}.bg-purple-darken-1{background-color:#8e24aa!important;border-color:#8e24aa!important}.active\:bg-purple-darken-1:active,.hover\:bg-purple-darken-1:hover,[class*="hover:bg-"][class*="active:bg-purple-darken-1"]:active{background:#8e24aa!important;transition:background .1s}.text-purple-darken-1{caret-color:#8e24aa!important;color:#8e24aa!important}.text-purple-darken-1:hover:active:before{background:#8e24aa!important;opacity:.3;transition:background .1s}.bg-purple-darken-2{background-color:#7b1fa2!important;border-color:#7b1fa2!important}.active\:bg-purple-darken-2:active,.hover\:bg-purple-darken-2:hover,[class*="hover:bg-"][class*="active:bg-purple-darken-2"]:active{background:#7b1fa2!important;transition:background .1s}.text-purple-darken-2{caret-color:#7b1fa2!important;color:#7b1fa2!important}.text-purple-darken-2:hover:active:before{background:#7b1fa2!important;opacity:.3;transition:background .1s}.bg-purple-darken-3{background-color:#6a1b9a!important;border-color:#6a1b9a!important}.active\:bg-purple-darken-3:active,.hover\:bg-purple-darken-3:hover,[class*="hover:bg-"][class*="active:bg-purple-darken-3"]:active{background:#6a1b9a!important;transition:background .1s}.text-purple-darken-3{caret-color:#6a1b9a!important;color:#6a1b9a!important}.text-purple-darken-3:hover:active:before{background:#6a1b9a!important;opacity:.3;transition:background .1s}.bg-purple-darken-4{background-color:#4a148c!important;border-color:#4a148c!important}.active\:bg-purple-darken-4:active,.hover\:bg-purple-darken-4:hover,[class*="hover:bg-"][class*="active:bg-purple-darken-4"]:active{background:#4a148c!important;transition:background .1s}.text-purple-darken-4{caret-color:#4a148c!important;color:#4a148c!important}.text-purple-darken-4:hover:active:before{background:#4a148c!important;opacity:.3;transition:background .1s}.bg-purple-accent-1{background-color:#ea80fc!important;border-color:#ea80fc!important}.active\:bg-purple-accent-1:active,.hover\:bg-purple-accent-1:hover,[class*="hover:bg-"][class*="active:bg-purple-accent-1"]:active{background:#ea80fc!important;transition:background .1s}.text-purple-accent-1{caret-color:#ea80fc!important;color:#ea80fc!important}.text-purple-accent-1:hover:active:before{background:#ea80fc!important;opacity:.3;transition:background .1s}.bg-purple-accent-2{background-color:#e040fb!important;border-color:#e040fb!important}.active\:bg-purple-accent-2:active,.hover\:bg-purple-accent-2:hover,[class*="hover:bg-"][class*="active:bg-purple-accent-2"]:active{background:#e040fb!important;transition:background .1s}.text-purple-accent-2{caret-color:#e040fb!important;color:#e040fb!important}.text-purple-accent-2:hover:active:before{background:#e040fb!important;opacity:.3;transition:background .1s}.bg-purple-accent-3{background-color:#d500f9!important;border-color:#d500f9!important}.active\:bg-purple-accent-3:active,.hover\:bg-purple-accent-3:hover,[class*="hover:bg-"][class*="active:bg-purple-accent-3"]:active{background:#d500f9!important;transition:background .1s}.text-purple-accent-3{caret-color:#d500f9!important;color:#d500f9!important}.text-purple-accent-3:hover:active:before{background:#d500f9!important;opacity:.3;transition:background .1s}.bg-purple-accent-4{background-color:#a0f!important;border-color:#a0f!important}.active\:bg-purple-accent-4:active,.hover\:bg-purple-accent-4:hover,[class*="hover:bg-"][class*="active:bg-purple-accent-4"]:active{background:#a0f!important;transition:background .1s}.text-purple-accent-4{caret-color:#a0f!important;color:#a0f!important}.text-purple-accent-4:hover:active:before{background:#a0f!important;opacity:.3;transition:background .1s}.bg-deep-purple{background-color:#673ab7!important;border-color:#673ab7!important}.active\:bg-deep-purple:active,.hover\:bg-deep-purple:hover,[class*="hover:bg-"][class*="active:bg-deep-purple"]:active{background:#673ab7!important;transition:background .1s}.text-deep-purple{caret-color:#673ab7!important;color:#673ab7!important}.text-deep-purple:hover:active:before{background:#673ab7!important;opacity:.3;transition:background .1s}.bg-deep-purple-base{background-color:#673ab7!important;border-color:#673ab7!important}.active\:bg-deep-purple-base:active,.hover\:bg-deep-purple-base:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-base"]:active{background:#673ab7!important;transition:background .1s}.text-deep-purple-base{caret-color:#673ab7!important;color:#673ab7!important}.text-deep-purple-base:hover:active:before{background:#673ab7!important;opacity:.3;transition:background .1s}.bg-deep-purple-lighten-5{background-color:#ede7f6!important;border-color:#ede7f6!important}.active\:bg-deep-purple-lighten-5:active,.hover\:bg-deep-purple-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-lighten-5"]:active{background:#ede7f6!important;transition:background .1s}.text-deep-purple-lighten-5{caret-color:#ede7f6!important;color:#ede7f6!important}.text-deep-purple-lighten-5:hover:active:before{background:#ede7f6!important;opacity:.3;transition:background .1s}.bg-deep-purple-lighten-4{background-color:#d1c4e9!important;border-color:#d1c4e9!important}.active\:bg-deep-purple-lighten-4:active,.hover\:bg-deep-purple-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-lighten-4"]:active{background:#d1c4e9!important;transition:background .1s}.text-deep-purple-lighten-4{caret-color:#d1c4e9!important;color:#d1c4e9!important}.text-deep-purple-lighten-4:hover:active:before{background:#d1c4e9!important;opacity:.3;transition:background .1s}.bg-deep-purple-lighten-3{background-color:#b39ddb!important;border-color:#b39ddb!important}.active\:bg-deep-purple-lighten-3:active,.hover\:bg-deep-purple-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-lighten-3"]:active{background:#b39ddb!important;transition:background .1s}.text-deep-purple-lighten-3{caret-color:#b39ddb!important;color:#b39ddb!important}.text-deep-purple-lighten-3:hover:active:before{background:#b39ddb!important;opacity:.3;transition:background .1s}.bg-deep-purple-lighten-2{background-color:#9575cd!important;border-color:#9575cd!important}.active\:bg-deep-purple-lighten-2:active,.hover\:bg-deep-purple-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-lighten-2"]:active{background:#9575cd!important;transition:background .1s}.text-deep-purple-lighten-2{caret-color:#9575cd!important;color:#9575cd!important}.text-deep-purple-lighten-2:hover:active:before{background:#9575cd!important;opacity:.3;transition:background .1s}.bg-deep-purple-lighten-1{background-color:#7e57c2!important;border-color:#7e57c2!important}.active\:bg-deep-purple-lighten-1:active,.hover\:bg-deep-purple-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-lighten-1"]:active{background:#7e57c2!important;transition:background .1s}.text-deep-purple-lighten-1{caret-color:#7e57c2!important;color:#7e57c2!important}.text-deep-purple-lighten-1:hover:active:before{background:#7e57c2!important;opacity:.3;transition:background .1s}.bg-deep-purple-darken-1{background-color:#5e35b1!important;border-color:#5e35b1!important}.active\:bg-deep-purple-darken-1:active,.hover\:bg-deep-purple-darken-1:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-darken-1"]:active{background:#5e35b1!important;transition:background .1s}.text-deep-purple-darken-1{caret-color:#5e35b1!important;color:#5e35b1!important}.text-deep-purple-darken-1:hover:active:before{background:#5e35b1!important;opacity:.3;transition:background .1s}.bg-deep-purple-darken-2{background-color:#512da8!important;border-color:#512da8!important}.active\:bg-deep-purple-darken-2:active,.hover\:bg-deep-purple-darken-2:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-darken-2"]:active{background:#512da8!important;transition:background .1s}.text-deep-purple-darken-2{caret-color:#512da8!important;color:#512da8!important}.text-deep-purple-darken-2:hover:active:before{background:#512da8!important;opacity:.3;transition:background .1s}.bg-deep-purple-darken-3{background-color:#4527a0!important;border-color:#4527a0!important}.active\:bg-deep-purple-darken-3:active,.hover\:bg-deep-purple-darken-3:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-darken-3"]:active{background:#4527a0!important;transition:background .1s}.text-deep-purple-darken-3{caret-color:#4527a0!important;color:#4527a0!important}.text-deep-purple-darken-3:hover:active:before{background:#4527a0!important;opacity:.3;transition:background .1s}.bg-deep-purple-darken-4{background-color:#311b92!important;border-color:#311b92!important}.active\:bg-deep-purple-darken-4:active,.hover\:bg-deep-purple-darken-4:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-darken-4"]:active{background:#311b92!important;transition:background .1s}.text-deep-purple-darken-4{caret-color:#311b92!important;color:#311b92!important}.text-deep-purple-darken-4:hover:active:before{background:#311b92!important;opacity:.3;transition:background .1s}.bg-deep-purple-accent-1{background-color:#b388ff!important;border-color:#b388ff!important}.active\:bg-deep-purple-accent-1:active,.hover\:bg-deep-purple-accent-1:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-accent-1"]:active{background:#b388ff!important;transition:background .1s}.text-deep-purple-accent-1{caret-color:#b388ff!important;color:#b388ff!important}.text-deep-purple-accent-1:hover:active:before{background:#b388ff!important;opacity:.3;transition:background .1s}.bg-deep-purple-accent-2{background-color:#7c4dff!important;border-color:#7c4dff!important}.active\:bg-deep-purple-accent-2:active,.hover\:bg-deep-purple-accent-2:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-accent-2"]:active{background:#7c4dff!important;transition:background .1s}.text-deep-purple-accent-2{caret-color:#7c4dff!important;color:#7c4dff!important}.text-deep-purple-accent-2:hover:active:before{background:#7c4dff!important;opacity:.3;transition:background .1s}.bg-deep-purple-accent-3{background-color:#651fff!important;border-color:#651fff!important}.active\:bg-deep-purple-accent-3:active,.hover\:bg-deep-purple-accent-3:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-accent-3"]:active{background:#651fff!important;transition:background .1s}.text-deep-purple-accent-3{caret-color:#651fff!important;color:#651fff!important}.text-deep-purple-accent-3:hover:active:before{background:#651fff!important;opacity:.3;transition:background .1s}.bg-deep-purple-accent-4{background-color:#6200ea!important;border-color:#6200ea!important}.active\:bg-deep-purple-accent-4:active,.hover\:bg-deep-purple-accent-4:hover,[class*="hover:bg-"][class*="active:bg-deep-purple-accent-4"]:active{background:#6200ea!important;transition:background .1s}.text-deep-purple-accent-4{caret-color:#6200ea!important;color:#6200ea!important}.text-deep-purple-accent-4:hover:active:before{background:#6200ea!important;opacity:.3;transition:background .1s}.bg-indigo{background-color:#3f51b5!important;border-color:#3f51b5!important}.active\:bg-indigo:active,.hover\:bg-indigo:hover,[class*="hover:bg-"][class*="active:bg-indigo"]:active{background:#3f51b5!important;transition:background .1s}.text-indigo{caret-color:#3f51b5!important;color:#3f51b5!important}.text-indigo:hover:active:before{background:#3f51b5!important;opacity:.3;transition:background .1s}.bg-indigo-base{background-color:#3f51b5!important;border-color:#3f51b5!important}.active\:bg-indigo-base:active,.hover\:bg-indigo-base:hover,[class*="hover:bg-"][class*="active:bg-indigo-base"]:active{background:#3f51b5!important;transition:background .1s}.text-indigo-base{caret-color:#3f51b5!important;color:#3f51b5!important}.text-indigo-base:hover:active:before{background:#3f51b5!important;opacity:.3;transition:background .1s}.bg-indigo-lighten-5{background-color:#e8eaf6!important;border-color:#e8eaf6!important}.active\:bg-indigo-lighten-5:active,.hover\:bg-indigo-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-indigo-lighten-5"]:active{background:#e8eaf6!important;transition:background .1s}.text-indigo-lighten-5{caret-color:#e8eaf6!important;color:#e8eaf6!important}.text-indigo-lighten-5:hover:active:before{background:#e8eaf6!important;opacity:.3;transition:background .1s}.bg-indigo-lighten-4{background-color:#c5cae9!important;border-color:#c5cae9!important}.active\:bg-indigo-lighten-4:active,.hover\:bg-indigo-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-indigo-lighten-4"]:active{background:#c5cae9!important;transition:background .1s}.text-indigo-lighten-4{caret-color:#c5cae9!important;color:#c5cae9!important}.text-indigo-lighten-4:hover:active:before{background:#c5cae9!important;opacity:.3;transition:background .1s}.bg-indigo-lighten-3{background-color:#9fa8da!important;border-color:#9fa8da!important}.active\:bg-indigo-lighten-3:active,.hover\:bg-indigo-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-indigo-lighten-3"]:active{background:#9fa8da!important;transition:background .1s}.text-indigo-lighten-3{caret-color:#9fa8da!important;color:#9fa8da!important}.text-indigo-lighten-3:hover:active:before{background:#9fa8da!important;opacity:.3;transition:background .1s}.bg-indigo-lighten-2{background-color:#7986cb!important;border-color:#7986cb!important}.active\:bg-indigo-lighten-2:active,.hover\:bg-indigo-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-indigo-lighten-2"]:active{background:#7986cb!important;transition:background .1s}.text-indigo-lighten-2{caret-color:#7986cb!important;color:#7986cb!important}.text-indigo-lighten-2:hover:active:before{background:#7986cb!important;opacity:.3;transition:background .1s}.bg-indigo-lighten-1{background-color:#5c6bc0!important;border-color:#5c6bc0!important}.active\:bg-indigo-lighten-1:active,.hover\:bg-indigo-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-indigo-lighten-1"]:active{background:#5c6bc0!important;transition:background .1s}.text-indigo-lighten-1{caret-color:#5c6bc0!important;color:#5c6bc0!important}.text-indigo-lighten-1:hover:active:before{background:#5c6bc0!important;opacity:.3;transition:background .1s}.bg-indigo-darken-1{background-color:#3949ab!important;border-color:#3949ab!important}.active\:bg-indigo-darken-1:active,.hover\:bg-indigo-darken-1:hover,[class*="hover:bg-"][class*="active:bg-indigo-darken-1"]:active{background:#3949ab!important;transition:background .1s}.text-indigo-darken-1{caret-color:#3949ab!important;color:#3949ab!important}.text-indigo-darken-1:hover:active:before{background:#3949ab!important;opacity:.3;transition:background .1s}.bg-indigo-darken-2{background-color:#303f9f!important;border-color:#303f9f!important}.active\:bg-indigo-darken-2:active,.hover\:bg-indigo-darken-2:hover,[class*="hover:bg-"][class*="active:bg-indigo-darken-2"]:active{background:#303f9f!important;transition:background .1s}.text-indigo-darken-2{caret-color:#303f9f!important;color:#303f9f!important}.text-indigo-darken-2:hover:active:before{background:#303f9f!important;opacity:.3;transition:background .1s}.bg-indigo-darken-3{background-color:#283593!important;border-color:#283593!important}.active\:bg-indigo-darken-3:active,.hover\:bg-indigo-darken-3:hover,[class*="hover:bg-"][class*="active:bg-indigo-darken-3"]:active{background:#283593!important;transition:background .1s}.text-indigo-darken-3{caret-color:#283593!important;color:#283593!important}.text-indigo-darken-3:hover:active:before{background:#283593!important;opacity:.3;transition:background .1s}.bg-indigo-darken-4{background-color:#1a237e!important;border-color:#1a237e!important}.active\:bg-indigo-darken-4:active,.hover\:bg-indigo-darken-4:hover,[class*="hover:bg-"][class*="active:bg-indigo-darken-4"]:active{background:#1a237e!important;transition:background .1s}.text-indigo-darken-4{caret-color:#1a237e!important;color:#1a237e!important}.text-indigo-darken-4:hover:active:before{background:#1a237e!important;opacity:.3;transition:background .1s}.bg-indigo-accent-1{background-color:#8c9eff!important;border-color:#8c9eff!important}.active\:bg-indigo-accent-1:active,.hover\:bg-indigo-accent-1:hover,[class*="hover:bg-"][class*="active:bg-indigo-accent-1"]:active{background:#8c9eff!important;transition:background .1s}.text-indigo-accent-1{caret-color:#8c9eff!important;color:#8c9eff!important}.text-indigo-accent-1:hover:active:before{background:#8c9eff!important;opacity:.3;transition:background .1s}.bg-indigo-accent-2{background-color:#536dfe!important;border-color:#536dfe!important}.active\:bg-indigo-accent-2:active,.hover\:bg-indigo-accent-2:hover,[class*="hover:bg-"][class*="active:bg-indigo-accent-2"]:active{background:#536dfe!important;transition:background .1s}.text-indigo-accent-2{caret-color:#536dfe!important;color:#536dfe!important}.text-indigo-accent-2:hover:active:before{background:#536dfe!important;opacity:.3;transition:background .1s}.bg-indigo-accent-3{background-color:#3d5afe!important;border-color:#3d5afe!important}.active\:bg-indigo-accent-3:active,.hover\:bg-indigo-accent-3:hover,[class*="hover:bg-"][class*="active:bg-indigo-accent-3"]:active{background:#3d5afe!important;transition:background .1s}.text-indigo-accent-3{caret-color:#3d5afe!important;color:#3d5afe!important}.text-indigo-accent-3:hover:active:before{background:#3d5afe!important;opacity:.3;transition:background .1s}.bg-indigo-accent-4{background-color:#304ffe!important;border-color:#304ffe!important}.active\:bg-indigo-accent-4:active,.hover\:bg-indigo-accent-4:hover,[class*="hover:bg-"][class*="active:bg-indigo-accent-4"]:active{background:#304ffe!important;transition:background .1s}.text-indigo-accent-4{caret-color:#304ffe!important;color:#304ffe!important}.text-indigo-accent-4:hover:active:before{background:#304ffe!important;opacity:.3;transition:background .1s}.bg-blue{background-color:#2196f3!important;border-color:#2196f3!important}.active\:bg-blue:active,.hover\:bg-blue:hover,[class*="hover:bg-"][class*="active:bg-blue"]:active{background:#2196f3!important;transition:background .1s}.text-blue{caret-color:#2196f3!important;color:#2196f3!important}.text-blue:hover:active:before{background:#2196f3!important;opacity:.3;transition:background .1s}.bg-blue-base{background-color:#2196f3!important;border-color:#2196f3!important}.active\:bg-blue-base:active,.hover\:bg-blue-base:hover,[class*="hover:bg-"][class*="active:bg-blue-base"]:active{background:#2196f3!important;transition:background .1s}.text-blue-base{caret-color:#2196f3!important;color:#2196f3!important}.text-blue-base:hover:active:before{background:#2196f3!important;opacity:.3;transition:background .1s}.bg-blue-lighten-5{background-color:#e3f2fd!important;border-color:#e3f2fd!important}.active\:bg-blue-lighten-5:active,.hover\:bg-blue-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-blue-lighten-5"]:active{background:#e3f2fd!important;transition:background .1s}.text-blue-lighten-5{caret-color:#e3f2fd!important;color:#e3f2fd!important}.text-blue-lighten-5:hover:active:before{background:#e3f2fd!important;opacity:.3;transition:background .1s}.bg-blue-lighten-4{background-color:#bbdefb!important;border-color:#bbdefb!important}.active\:bg-blue-lighten-4:active,.hover\:bg-blue-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-blue-lighten-4"]:active{background:#bbdefb!important;transition:background .1s}.text-blue-lighten-4{caret-color:#bbdefb!important;color:#bbdefb!important}.text-blue-lighten-4:hover:active:before{background:#bbdefb!important;opacity:.3;transition:background .1s}.bg-blue-lighten-3{background-color:#90caf9!important;border-color:#90caf9!important}.active\:bg-blue-lighten-3:active,.hover\:bg-blue-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-blue-lighten-3"]:active{background:#90caf9!important;transition:background .1s}.text-blue-lighten-3{caret-color:#90caf9!important;color:#90caf9!important}.text-blue-lighten-3:hover:active:before{background:#90caf9!important;opacity:.3;transition:background .1s}.bg-blue-lighten-2{background-color:#64b5f6!important;border-color:#64b5f6!important}.active\:bg-blue-lighten-2:active,.hover\:bg-blue-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-blue-lighten-2"]:active{background:#64b5f6!important;transition:background .1s}.text-blue-lighten-2{caret-color:#64b5f6!important;color:#64b5f6!important}.text-blue-lighten-2:hover:active:before{background:#64b5f6!important;opacity:.3;transition:background .1s}.bg-blue-lighten-1{background-color:#42a5f5!important;border-color:#42a5f5!important}.active\:bg-blue-lighten-1:active,.hover\:bg-blue-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-blue-lighten-1"]:active{background:#42a5f5!important;transition:background .1s}.text-blue-lighten-1{caret-color:#42a5f5!important;color:#42a5f5!important}.text-blue-lighten-1:hover:active:before{background:#42a5f5!important;opacity:.3;transition:background .1s}.bg-blue-darken-1{background-color:#1e88e5!important;border-color:#1e88e5!important}.active\:bg-blue-darken-1:active,.hover\:bg-blue-darken-1:hover,[class*="hover:bg-"][class*="active:bg-blue-darken-1"]:active{background:#1e88e5!important;transition:background .1s}.text-blue-darken-1{caret-color:#1e88e5!important;color:#1e88e5!important}.text-blue-darken-1:hover:active:before{background:#1e88e5!important;opacity:.3;transition:background .1s}.bg-blue-darken-2{background-color:#1976d2!important;border-color:#1976d2!important}.active\:bg-blue-darken-2:active,.hover\:bg-blue-darken-2:hover,[class*="hover:bg-"][class*="active:bg-blue-darken-2"]:active{background:#1976d2!important;transition:background .1s}.text-blue-darken-2{caret-color:#1976d2!important;color:#1976d2!important}.text-blue-darken-2:hover:active:before{background:#1976d2!important;opacity:.3;transition:background .1s}.bg-blue-darken-3{background-color:#1565c0!important;border-color:#1565c0!important}.active\:bg-blue-darken-3:active,.hover\:bg-blue-darken-3:hover,[class*="hover:bg-"][class*="active:bg-blue-darken-3"]:active{background:#1565c0!important;transition:background .1s}.text-blue-darken-3{caret-color:#1565c0!important;color:#1565c0!important}.text-blue-darken-3:hover:active:before{background:#1565c0!important;opacity:.3;transition:background .1s}.bg-blue-darken-4{background-color:#0d47a1!important;border-color:#0d47a1!important}.active\:bg-blue-darken-4:active,.hover\:bg-blue-darken-4:hover,[class*="hover:bg-"][class*="active:bg-blue-darken-4"]:active{background:#0d47a1!important;transition:background .1s}.text-blue-darken-4{caret-color:#0d47a1!important;color:#0d47a1!important}.text-blue-darken-4:hover:active:before{background:#0d47a1!important;opacity:.3;transition:background .1s}.bg-blue-accent-1{background-color:#82b1ff!important;border-color:#82b1ff!important}.active\:bg-blue-accent-1:active,.hover\:bg-blue-accent-1:hover,[class*="hover:bg-"][class*="active:bg-blue-accent-1"]:active{background:#82b1ff!important;transition:background .1s}.text-blue-accent-1{caret-color:#82b1ff!important;color:#82b1ff!important}.text-blue-accent-1:hover:active:before{background:#82b1ff!important;opacity:.3;transition:background .1s}.bg-blue-accent-2{background-color:#448aff!important;border-color:#448aff!important}.active\:bg-blue-accent-2:active,.hover\:bg-blue-accent-2:hover,[class*="hover:bg-"][class*="active:bg-blue-accent-2"]:active{background:#448aff!important;transition:background .1s}.text-blue-accent-2{caret-color:#448aff!important;color:#448aff!important}.text-blue-accent-2:hover:active:before{background:#448aff!important;opacity:.3;transition:background .1s}.bg-blue-accent-3{background-color:#2979ff!important;border-color:#2979ff!important}.active\:bg-blue-accent-3:active,.hover\:bg-blue-accent-3:hover,[class*="hover:bg-"][class*="active:bg-blue-accent-3"]:active{background:#2979ff!important;transition:background .1s}.text-blue-accent-3{caret-color:#2979ff!important;color:#2979ff!important}.text-blue-accent-3:hover:active:before{background:#2979ff!important;opacity:.3;transition:background .1s}.bg-blue-accent-4{background-color:#2962ff!important;border-color:#2962ff!important}.active\:bg-blue-accent-4:active,.hover\:bg-blue-accent-4:hover,[class*="hover:bg-"][class*="active:bg-blue-accent-4"]:active{background:#2962ff!important;transition:background .1s}.text-blue-accent-4{caret-color:#2962ff!important;color:#2962ff!important}.text-blue-accent-4:hover:active:before{background:#2962ff!important;opacity:.3;transition:background .1s}.bg-light-blue{background-color:#03a9f4!important;border-color:#03a9f4!important}.active\:bg-light-blue:active,.hover\:bg-light-blue:hover,[class*="hover:bg-"][class*="active:bg-light-blue"]:active{background:#03a9f4!important;transition:background .1s}.text-light-blue{caret-color:#03a9f4!important;color:#03a9f4!important}.text-light-blue:hover:active:before{background:#03a9f4!important;opacity:.3;transition:background .1s}.bg-light-blue-base{background-color:#03a9f4!important;border-color:#03a9f4!important}.active\:bg-light-blue-base:active,.hover\:bg-light-blue-base:hover,[class*="hover:bg-"][class*="active:bg-light-blue-base"]:active{background:#03a9f4!important;transition:background .1s}.text-light-blue-base{caret-color:#03a9f4!important;color:#03a9f4!important}.text-light-blue-base:hover:active:before{background:#03a9f4!important;opacity:.3;transition:background .1s}.bg-light-blue-lighten-5{background-color:#e1f5fe!important;border-color:#e1f5fe!important}.active\:bg-light-blue-lighten-5:active,.hover\:bg-light-blue-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-light-blue-lighten-5"]:active{background:#e1f5fe!important;transition:background .1s}.text-light-blue-lighten-5{caret-color:#e1f5fe!important;color:#e1f5fe!important}.text-light-blue-lighten-5:hover:active:before{background:#e1f5fe!important;opacity:.3;transition:background .1s}.bg-light-blue-lighten-4{background-color:#b3e5fc!important;border-color:#b3e5fc!important}.active\:bg-light-blue-lighten-4:active,.hover\:bg-light-blue-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-light-blue-lighten-4"]:active{background:#b3e5fc!important;transition:background .1s}.text-light-blue-lighten-4{caret-color:#b3e5fc!important;color:#b3e5fc!important}.text-light-blue-lighten-4:hover:active:before{background:#b3e5fc!important;opacity:.3;transition:background .1s}.bg-light-blue-lighten-3{background-color:#81d4fa!important;border-color:#81d4fa!important}.active\:bg-light-blue-lighten-3:active,.hover\:bg-light-blue-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-light-blue-lighten-3"]:active{background:#81d4fa!important;transition:background .1s}.text-light-blue-lighten-3{caret-color:#81d4fa!important;color:#81d4fa!important}.text-light-blue-lighten-3:hover:active:before{background:#81d4fa!important;opacity:.3;transition:background .1s}.bg-light-blue-lighten-2{background-color:#4fc3f7!important;border-color:#4fc3f7!important}.active\:bg-light-blue-lighten-2:active,.hover\:bg-light-blue-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-light-blue-lighten-2"]:active{background:#4fc3f7!important;transition:background .1s}.text-light-blue-lighten-2{caret-color:#4fc3f7!important;color:#4fc3f7!important}.text-light-blue-lighten-2:hover:active:before{background:#4fc3f7!important;opacity:.3;transition:background .1s}.bg-light-blue-lighten-1{background-color:#29b6f6!important;border-color:#29b6f6!important}.active\:bg-light-blue-lighten-1:active,.hover\:bg-light-blue-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-light-blue-lighten-1"]:active{background:#29b6f6!important;transition:background .1s}.text-light-blue-lighten-1{caret-color:#29b6f6!important;color:#29b6f6!important}.text-light-blue-lighten-1:hover:active:before{background:#29b6f6!important;opacity:.3;transition:background .1s}.bg-light-blue-darken-1{background-color:#039be5!important;border-color:#039be5!important}.active\:bg-light-blue-darken-1:active,.hover\:bg-light-blue-darken-1:hover,[class*="hover:bg-"][class*="active:bg-light-blue-darken-1"]:active{background:#039be5!important;transition:background .1s}.text-light-blue-darken-1{caret-color:#039be5!important;color:#039be5!important}.text-light-blue-darken-1:hover:active:before{background:#039be5!important;opacity:.3;transition:background .1s}.bg-light-blue-darken-2{background-color:#0288d1!important;border-color:#0288d1!important}.active\:bg-light-blue-darken-2:active,.hover\:bg-light-blue-darken-2:hover,[class*="hover:bg-"][class*="active:bg-light-blue-darken-2"]:active{background:#0288d1!important;transition:background .1s}.text-light-blue-darken-2{caret-color:#0288d1!important;color:#0288d1!important}.text-light-blue-darken-2:hover:active:before{background:#0288d1!important;opacity:.3;transition:background .1s}.bg-light-blue-darken-3{background-color:#0277bd!important;border-color:#0277bd!important}.active\:bg-light-blue-darken-3:active,.hover\:bg-light-blue-darken-3:hover,[class*="hover:bg-"][class*="active:bg-light-blue-darken-3"]:active{background:#0277bd!important;transition:background .1s}.text-light-blue-darken-3{caret-color:#0277bd!important;color:#0277bd!important}.text-light-blue-darken-3:hover:active:before{background:#0277bd!important;opacity:.3;transition:background .1s}.bg-light-blue-darken-4{background-color:#01579b!important;border-color:#01579b!important}.active\:bg-light-blue-darken-4:active,.hover\:bg-light-blue-darken-4:hover,[class*="hover:bg-"][class*="active:bg-light-blue-darken-4"]:active{background:#01579b!important;transition:background .1s}.text-light-blue-darken-4{caret-color:#01579b!important;color:#01579b!important}.text-light-blue-darken-4:hover:active:before{background:#01579b!important;opacity:.3;transition:background .1s}.bg-light-blue-accent-1{background-color:#80d8ff!important;border-color:#80d8ff!important}.active\:bg-light-blue-accent-1:active,.hover\:bg-light-blue-accent-1:hover,[class*="hover:bg-"][class*="active:bg-light-blue-accent-1"]:active{background:#80d8ff!important;transition:background .1s}.text-light-blue-accent-1{caret-color:#80d8ff!important;color:#80d8ff!important}.text-light-blue-accent-1:hover:active:before{background:#80d8ff!important;opacity:.3;transition:background .1s}.bg-light-blue-accent-2{background-color:#40c4ff!important;border-color:#40c4ff!important}.active\:bg-light-blue-accent-2:active,.hover\:bg-light-blue-accent-2:hover,[class*="hover:bg-"][class*="active:bg-light-blue-accent-2"]:active{background:#40c4ff!important;transition:background .1s}.text-light-blue-accent-2{caret-color:#40c4ff!important;color:#40c4ff!important}.text-light-blue-accent-2:hover:active:before{background:#40c4ff!important;opacity:.3;transition:background .1s}.bg-light-blue-accent-3{background-color:#00b0ff!important;border-color:#00b0ff!important}.active\:bg-light-blue-accent-3:active,.hover\:bg-light-blue-accent-3:hover,[class*="hover:bg-"][class*="active:bg-light-blue-accent-3"]:active{background:#00b0ff!important;transition:background .1s}.text-light-blue-accent-3{caret-color:#00b0ff!important;color:#00b0ff!important}.text-light-blue-accent-3:hover:active:before{background:#00b0ff!important;opacity:.3;transition:background .1s}.bg-light-blue-accent-4{background-color:#0091ea!important;border-color:#0091ea!important}.active\:bg-light-blue-accent-4:active,.hover\:bg-light-blue-accent-4:hover,[class*="hover:bg-"][class*="active:bg-light-blue-accent-4"]:active{background:#0091ea!important;transition:background .1s}.text-light-blue-accent-4{caret-color:#0091ea!important;color:#0091ea!important}.text-light-blue-accent-4:hover:active:before{background:#0091ea!important;opacity:.3;transition:background .1s}.bg-cyan{background-color:#00bcd4!important;border-color:#00bcd4!important}.active\:bg-cyan:active,.hover\:bg-cyan:hover,[class*="hover:bg-"][class*="active:bg-cyan"]:active{background:#00bcd4!important;transition:background .1s}.text-cyan{caret-color:#00bcd4!important;color:#00bcd4!important}.text-cyan:hover:active:before{background:#00bcd4!important;opacity:.3;transition:background .1s}.bg-cyan-base{background-color:#00bcd4!important;border-color:#00bcd4!important}.active\:bg-cyan-base:active,.hover\:bg-cyan-base:hover,[class*="hover:bg-"][class*="active:bg-cyan-base"]:active{background:#00bcd4!important;transition:background .1s}.text-cyan-base{caret-color:#00bcd4!important;color:#00bcd4!important}.text-cyan-base:hover:active:before{background:#00bcd4!important;opacity:.3;transition:background .1s}.bg-cyan-lighten-5{background-color:#e0f7fa!important;border-color:#e0f7fa!important}.active\:bg-cyan-lighten-5:active,.hover\:bg-cyan-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-cyan-lighten-5"]:active{background:#e0f7fa!important;transition:background .1s}.text-cyan-lighten-5{caret-color:#e0f7fa!important;color:#e0f7fa!important}.text-cyan-lighten-5:hover:active:before{background:#e0f7fa!important;opacity:.3;transition:background .1s}.bg-cyan-lighten-4{background-color:#b2ebf2!important;border-color:#b2ebf2!important}.active\:bg-cyan-lighten-4:active,.hover\:bg-cyan-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-cyan-lighten-4"]:active{background:#b2ebf2!important;transition:background .1s}.text-cyan-lighten-4{caret-color:#b2ebf2!important;color:#b2ebf2!important}.text-cyan-lighten-4:hover:active:before{background:#b2ebf2!important;opacity:.3;transition:background .1s}.bg-cyan-lighten-3{background-color:#80deea!important;border-color:#80deea!important}.active\:bg-cyan-lighten-3:active,.hover\:bg-cyan-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-cyan-lighten-3"]:active{background:#80deea!important;transition:background .1s}.text-cyan-lighten-3{caret-color:#80deea!important;color:#80deea!important}.text-cyan-lighten-3:hover:active:before{background:#80deea!important;opacity:.3;transition:background .1s}.bg-cyan-lighten-2{background-color:#4dd0e1!important;border-color:#4dd0e1!important}.active\:bg-cyan-lighten-2:active,.hover\:bg-cyan-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-cyan-lighten-2"]:active{background:#4dd0e1!important;transition:background .1s}.text-cyan-lighten-2{caret-color:#4dd0e1!important;color:#4dd0e1!important}.text-cyan-lighten-2:hover:active:before{background:#4dd0e1!important;opacity:.3;transition:background .1s}.bg-cyan-lighten-1{background-color:#26c6da!important;border-color:#26c6da!important}.active\:bg-cyan-lighten-1:active,.hover\:bg-cyan-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-cyan-lighten-1"]:active{background:#26c6da!important;transition:background .1s}.text-cyan-lighten-1{caret-color:#26c6da!important;color:#26c6da!important}.text-cyan-lighten-1:hover:active:before{background:#26c6da!important;opacity:.3;transition:background .1s}.bg-cyan-darken-1{background-color:#00acc1!important;border-color:#00acc1!important}.active\:bg-cyan-darken-1:active,.hover\:bg-cyan-darken-1:hover,[class*="hover:bg-"][class*="active:bg-cyan-darken-1"]:active{background:#00acc1!important;transition:background .1s}.text-cyan-darken-1{caret-color:#00acc1!important;color:#00acc1!important}.text-cyan-darken-1:hover:active:before{background:#00acc1!important;opacity:.3;transition:background .1s}.bg-cyan-darken-2{background-color:#0097a7!important;border-color:#0097a7!important}.active\:bg-cyan-darken-2:active,.hover\:bg-cyan-darken-2:hover,[class*="hover:bg-"][class*="active:bg-cyan-darken-2"]:active{background:#0097a7!important;transition:background .1s}.text-cyan-darken-2{caret-color:#0097a7!important;color:#0097a7!important}.text-cyan-darken-2:hover:active:before{background:#0097a7!important;opacity:.3;transition:background .1s}.bg-cyan-darken-3{background-color:#00838f!important;border-color:#00838f!important}.active\:bg-cyan-darken-3:active,.hover\:bg-cyan-darken-3:hover,[class*="hover:bg-"][class*="active:bg-cyan-darken-3"]:active{background:#00838f!important;transition:background .1s}.text-cyan-darken-3{caret-color:#00838f!important;color:#00838f!important}.text-cyan-darken-3:hover:active:before{background:#00838f!important;opacity:.3;transition:background .1s}.bg-cyan-darken-4{background-color:#006064!important;border-color:#006064!important}.active\:bg-cyan-darken-4:active,.hover\:bg-cyan-darken-4:hover,[class*="hover:bg-"][class*="active:bg-cyan-darken-4"]:active{background:#006064!important;transition:background .1s}.text-cyan-darken-4{caret-color:#006064!important;color:#006064!important}.text-cyan-darken-4:hover:active:before{background:#006064!important;opacity:.3;transition:background .1s}.bg-cyan-accent-1{background-color:#84ffff!important;border-color:#84ffff!important}.active\:bg-cyan-accent-1:active,.hover\:bg-cyan-accent-1:hover,[class*="hover:bg-"][class*="active:bg-cyan-accent-1"]:active{background:#84ffff!important;transition:background .1s}.text-cyan-accent-1{caret-color:#84ffff!important;color:#84ffff!important}.text-cyan-accent-1:hover:active:before{background:#84ffff!important;opacity:.3;transition:background .1s}.bg-cyan-accent-2{background-color:#18ffff!important;border-color:#18ffff!important}.active\:bg-cyan-accent-2:active,.hover\:bg-cyan-accent-2:hover,[class*="hover:bg-"][class*="active:bg-cyan-accent-2"]:active{background:#18ffff!important;transition:background .1s}.text-cyan-accent-2{caret-color:#18ffff!important;color:#18ffff!important}.text-cyan-accent-2:hover:active:before{background:#18ffff!important;opacity:.3;transition:background .1s}.bg-cyan-accent-3{background-color:#00e5ff!important;border-color:#00e5ff!important}.active\:bg-cyan-accent-3:active,.hover\:bg-cyan-accent-3:hover,[class*="hover:bg-"][class*="active:bg-cyan-accent-3"]:active{background:#00e5ff!important;transition:background .1s}.text-cyan-accent-3{caret-color:#00e5ff!important;color:#00e5ff!important}.text-cyan-accent-3:hover:active:before{background:#00e5ff!important;opacity:.3;transition:background .1s}.bg-cyan-accent-4{background-color:#00b8d4!important;border-color:#00b8d4!important}.active\:bg-cyan-accent-4:active,.hover\:bg-cyan-accent-4:hover,[class*="hover:bg-"][class*="active:bg-cyan-accent-4"]:active{background:#00b8d4!important;transition:background .1s}.text-cyan-accent-4{caret-color:#00b8d4!important;color:#00b8d4!important}.text-cyan-accent-4:hover:active:before{background:#00b8d4!important;opacity:.3;transition:background .1s}.bg-teal{background-color:#009688!important;border-color:#009688!important}.active\:bg-teal:active,.hover\:bg-teal:hover,[class*="hover:bg-"][class*="active:bg-teal"]:active{background:#009688!important;transition:background .1s}.text-teal{caret-color:#009688!important;color:#009688!important}.text-teal:hover:active:before{background:#009688!important;opacity:.3;transition:background .1s}.bg-teal-base{background-color:#009688!important;border-color:#009688!important}.active\:bg-teal-base:active,.hover\:bg-teal-base:hover,[class*="hover:bg-"][class*="active:bg-teal-base"]:active{background:#009688!important;transition:background .1s}.text-teal-base{caret-color:#009688!important;color:#009688!important}.text-teal-base:hover:active:before{background:#009688!important;opacity:.3;transition:background .1s}.bg-teal-lighten-5{background-color:#e0f2f1!important;border-color:#e0f2f1!important}.active\:bg-teal-lighten-5:active,.hover\:bg-teal-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-teal-lighten-5"]:active{background:#e0f2f1!important;transition:background .1s}.text-teal-lighten-5{caret-color:#e0f2f1!important;color:#e0f2f1!important}.text-teal-lighten-5:hover:active:before{background:#e0f2f1!important;opacity:.3;transition:background .1s}.bg-teal-lighten-4{background-color:#b2dfdb!important;border-color:#b2dfdb!important}.active\:bg-teal-lighten-4:active,.hover\:bg-teal-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-teal-lighten-4"]:active{background:#b2dfdb!important;transition:background .1s}.text-teal-lighten-4{caret-color:#b2dfdb!important;color:#b2dfdb!important}.text-teal-lighten-4:hover:active:before{background:#b2dfdb!important;opacity:.3;transition:background .1s}.bg-teal-lighten-3{background-color:#80cbc4!important;border-color:#80cbc4!important}.active\:bg-teal-lighten-3:active,.hover\:bg-teal-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-teal-lighten-3"]:active{background:#80cbc4!important;transition:background .1s}.text-teal-lighten-3{caret-color:#80cbc4!important;color:#80cbc4!important}.text-teal-lighten-3:hover:active:before{background:#80cbc4!important;opacity:.3;transition:background .1s}.bg-teal-lighten-2{background-color:#4db6ac!important;border-color:#4db6ac!important}.active\:bg-teal-lighten-2:active,.hover\:bg-teal-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-teal-lighten-2"]:active{background:#4db6ac!important;transition:background .1s}.text-teal-lighten-2{caret-color:#4db6ac!important;color:#4db6ac!important}.text-teal-lighten-2:hover:active:before{background:#4db6ac!important;opacity:.3;transition:background .1s}.bg-teal-lighten-1{background-color:#26a69a!important;border-color:#26a69a!important}.active\:bg-teal-lighten-1:active,.hover\:bg-teal-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-teal-lighten-1"]:active{background:#26a69a!important;transition:background .1s}.text-teal-lighten-1{caret-color:#26a69a!important;color:#26a69a!important}.text-teal-lighten-1:hover:active:before{background:#26a69a!important;opacity:.3;transition:background .1s}.bg-teal-darken-1{background-color:#00897b!important;border-color:#00897b!important}.active\:bg-teal-darken-1:active,.hover\:bg-teal-darken-1:hover,[class*="hover:bg-"][class*="active:bg-teal-darken-1"]:active{background:#00897b!important;transition:background .1s}.text-teal-darken-1{caret-color:#00897b!important;color:#00897b!important}.text-teal-darken-1:hover:active:before{background:#00897b!important;opacity:.3;transition:background .1s}.bg-teal-darken-2{background-color:#00796b!important;border-color:#00796b!important}.active\:bg-teal-darken-2:active,.hover\:bg-teal-darken-2:hover,[class*="hover:bg-"][class*="active:bg-teal-darken-2"]:active{background:#00796b!important;transition:background .1s}.text-teal-darken-2{caret-color:#00796b!important;color:#00796b!important}.text-teal-darken-2:hover:active:before{background:#00796b!important;opacity:.3;transition:background .1s}.bg-teal-darken-3{background-color:#00695c!important;border-color:#00695c!important}.active\:bg-teal-darken-3:active,.hover\:bg-teal-darken-3:hover,[class*="hover:bg-"][class*="active:bg-teal-darken-3"]:active{background:#00695c!important;transition:background .1s}.text-teal-darken-3{caret-color:#00695c!important;color:#00695c!important}.text-teal-darken-3:hover:active:before{background:#00695c!important;opacity:.3;transition:background .1s}.bg-teal-darken-4{background-color:#004d40!important;border-color:#004d40!important}.active\:bg-teal-darken-4:active,.hover\:bg-teal-darken-4:hover,[class*="hover:bg-"][class*="active:bg-teal-darken-4"]:active{background:#004d40!important;transition:background .1s}.text-teal-darken-4{caret-color:#004d40!important;color:#004d40!important}.text-teal-darken-4:hover:active:before{background:#004d40!important;opacity:.3;transition:background .1s}.bg-teal-accent-1{background-color:#a7ffeb!important;border-color:#a7ffeb!important}.active\:bg-teal-accent-1:active,.hover\:bg-teal-accent-1:hover,[class*="hover:bg-"][class*="active:bg-teal-accent-1"]:active{background:#a7ffeb!important;transition:background .1s}.text-teal-accent-1{caret-color:#a7ffeb!important;color:#a7ffeb!important}.text-teal-accent-1:hover:active:before{background:#a7ffeb!important;opacity:.3;transition:background .1s}.bg-teal-accent-2{background-color:#64ffda!important;border-color:#64ffda!important}.active\:bg-teal-accent-2:active,.hover\:bg-teal-accent-2:hover,[class*="hover:bg-"][class*="active:bg-teal-accent-2"]:active{background:#64ffda!important;transition:background .1s}.text-teal-accent-2{caret-color:#64ffda!important;color:#64ffda!important}.text-teal-accent-2:hover:active:before{background:#64ffda!important;opacity:.3;transition:background .1s}.bg-teal-accent-3{background-color:#1de9b6!important;border-color:#1de9b6!important}.active\:bg-teal-accent-3:active,.hover\:bg-teal-accent-3:hover,[class*="hover:bg-"][class*="active:bg-teal-accent-3"]:active{background:#1de9b6!important;transition:background .1s}.text-teal-accent-3{caret-color:#1de9b6!important;color:#1de9b6!important}.text-teal-accent-3:hover:active:before{background:#1de9b6!important;opacity:.3;transition:background .1s}.bg-teal-accent-4{background-color:#00bfa5!important;border-color:#00bfa5!important}.active\:bg-teal-accent-4:active,.hover\:bg-teal-accent-4:hover,[class*="hover:bg-"][class*="active:bg-teal-accent-4"]:active{background:#00bfa5!important;transition:background .1s}.text-teal-accent-4{caret-color:#00bfa5!important;color:#00bfa5!important}.text-teal-accent-4:hover:active:before{background:#00bfa5!important;opacity:.3;transition:background .1s}.bg-green{background-color:#4caf50!important;border-color:#4caf50!important}.active\:bg-green:active,.hover\:bg-green:hover,[class*="hover:bg-"][class*="active:bg-green"]:active{background:#4caf50!important;transition:background .1s}.text-green{caret-color:#4caf50!important;color:#4caf50!important}.text-green:hover:active:before{background:#4caf50!important;opacity:.3;transition:background .1s}.bg-green-base{background-color:#4caf50!important;border-color:#4caf50!important}.active\:bg-green-base:active,.hover\:bg-green-base:hover,[class*="hover:bg-"][class*="active:bg-green-base"]:active{background:#4caf50!important;transition:background .1s}.text-green-base{caret-color:#4caf50!important;color:#4caf50!important}.text-green-base:hover:active:before{background:#4caf50!important;opacity:.3;transition:background .1s}.bg-green-lighten-5{background-color:#e8f5e9!important;border-color:#e8f5e9!important}.active\:bg-green-lighten-5:active,.hover\:bg-green-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-green-lighten-5"]:active{background:#e8f5e9!important;transition:background .1s}.text-green-lighten-5{caret-color:#e8f5e9!important;color:#e8f5e9!important}.text-green-lighten-5:hover:active:before{background:#e8f5e9!important;opacity:.3;transition:background .1s}.bg-green-lighten-4{background-color:#c8e6c9!important;border-color:#c8e6c9!important}.active\:bg-green-lighten-4:active,.hover\:bg-green-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-green-lighten-4"]:active{background:#c8e6c9!important;transition:background .1s}.text-green-lighten-4{caret-color:#c8e6c9!important;color:#c8e6c9!important}.text-green-lighten-4:hover:active:before{background:#c8e6c9!important;opacity:.3;transition:background .1s}.bg-green-lighten-3{background-color:#a5d6a7!important;border-color:#a5d6a7!important}.active\:bg-green-lighten-3:active,.hover\:bg-green-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-green-lighten-3"]:active{background:#a5d6a7!important;transition:background .1s}.text-green-lighten-3{caret-color:#a5d6a7!important;color:#a5d6a7!important}.text-green-lighten-3:hover:active:before{background:#a5d6a7!important;opacity:.3;transition:background .1s}.bg-green-lighten-2{background-color:#81c784!important;border-color:#81c784!important}.active\:bg-green-lighten-2:active,.hover\:bg-green-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-green-lighten-2"]:active{background:#81c784!important;transition:background .1s}.text-green-lighten-2{caret-color:#81c784!important;color:#81c784!important}.text-green-lighten-2:hover:active:before{background:#81c784!important;opacity:.3;transition:background .1s}.bg-green-lighten-1{background-color:#66bb6a!important;border-color:#66bb6a!important}.active\:bg-green-lighten-1:active,.hover\:bg-green-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-green-lighten-1"]:active{background:#66bb6a!important;transition:background .1s}.text-green-lighten-1{caret-color:#66bb6a!important;color:#66bb6a!important}.text-green-lighten-1:hover:active:before{background:#66bb6a!important;opacity:.3;transition:background .1s}.bg-green-darken-1{background-color:#43a047!important;border-color:#43a047!important}.active\:bg-green-darken-1:active,.hover\:bg-green-darken-1:hover,[class*="hover:bg-"][class*="active:bg-green-darken-1"]:active{background:#43a047!important;transition:background .1s}.text-green-darken-1{caret-color:#43a047!important;color:#43a047!important}.text-green-darken-1:hover:active:before{background:#43a047!important;opacity:.3;transition:background .1s}.bg-green-darken-2{background-color:#388e3c!important;border-color:#388e3c!important}.active\:bg-green-darken-2:active,.hover\:bg-green-darken-2:hover,[class*="hover:bg-"][class*="active:bg-green-darken-2"]:active{background:#388e3c!important;transition:background .1s}.text-green-darken-2{caret-color:#388e3c!important;color:#388e3c!important}.text-green-darken-2:hover:active:before{background:#388e3c!important;opacity:.3;transition:background .1s}.bg-green-darken-3{background-color:#2e7d32!important;border-color:#2e7d32!important}.active\:bg-green-darken-3:active,.hover\:bg-green-darken-3:hover,[class*="hover:bg-"][class*="active:bg-green-darken-3"]:active{background:#2e7d32!important;transition:background .1s}.text-green-darken-3{caret-color:#2e7d32!important;color:#2e7d32!important}.text-green-darken-3:hover:active:before{background:#2e7d32!important;opacity:.3;transition:background .1s}.bg-green-darken-4{background-color:#1b5e20!important;border-color:#1b5e20!important}.active\:bg-green-darken-4:active,.hover\:bg-green-darken-4:hover,[class*="hover:bg-"][class*="active:bg-green-darken-4"]:active{background:#1b5e20!important;transition:background .1s}.text-green-darken-4{caret-color:#1b5e20!important;color:#1b5e20!important}.text-green-darken-4:hover:active:before{background:#1b5e20!important;opacity:.3;transition:background .1s}.bg-green-accent-1{background-color:#b9f6ca!important;border-color:#b9f6ca!important}.active\:bg-green-accent-1:active,.hover\:bg-green-accent-1:hover,[class*="hover:bg-"][class*="active:bg-green-accent-1"]:active{background:#b9f6ca!important;transition:background .1s}.text-green-accent-1{caret-color:#b9f6ca!important;color:#b9f6ca!important}.text-green-accent-1:hover:active:before{background:#b9f6ca!important;opacity:.3;transition:background .1s}.bg-green-accent-2{background-color:#69f0ae!important;border-color:#69f0ae!important}.active\:bg-green-accent-2:active,.hover\:bg-green-accent-2:hover,[class*="hover:bg-"][class*="active:bg-green-accent-2"]:active{background:#69f0ae!important;transition:background .1s}.text-green-accent-2{caret-color:#69f0ae!important;color:#69f0ae!important}.text-green-accent-2:hover:active:before{background:#69f0ae!important;opacity:.3;transition:background .1s}.bg-green-accent-3{background-color:#00e676!important;border-color:#00e676!important}.active\:bg-green-accent-3:active,.hover\:bg-green-accent-3:hover,[class*="hover:bg-"][class*="active:bg-green-accent-3"]:active{background:#00e676!important;transition:background .1s}.text-green-accent-3{caret-color:#00e676!important;color:#00e676!important}.text-green-accent-3:hover:active:before{background:#00e676!important;opacity:.3;transition:background .1s}.bg-green-accent-4{background-color:#00c853!important;border-color:#00c853!important}.active\:bg-green-accent-4:active,.hover\:bg-green-accent-4:hover,[class*="hover:bg-"][class*="active:bg-green-accent-4"]:active{background:#00c853!important;transition:background .1s}.text-green-accent-4{caret-color:#00c853!important;color:#00c853!important}.text-green-accent-4:hover:active:before{background:#00c853!important;opacity:.3;transition:background .1s}.bg-light-green{background-color:#8bc34a!important;border-color:#8bc34a!important}.active\:bg-light-green:active,.hover\:bg-light-green:hover,[class*="hover:bg-"][class*="active:bg-light-green"]:active{background:#8bc34a!important;transition:background .1s}.text-light-green{caret-color:#8bc34a!important;color:#8bc34a!important}.text-light-green:hover:active:before{background:#8bc34a!important;opacity:.3;transition:background .1s}.bg-light-green-base{background-color:#8bc34a!important;border-color:#8bc34a!important}.active\:bg-light-green-base:active,.hover\:bg-light-green-base:hover,[class*="hover:bg-"][class*="active:bg-light-green-base"]:active{background:#8bc34a!important;transition:background .1s}.text-light-green-base{caret-color:#8bc34a!important;color:#8bc34a!important}.text-light-green-base:hover:active:before{background:#8bc34a!important;opacity:.3;transition:background .1s}.bg-light-green-lighten-5{background-color:#f1f8e9!important;border-color:#f1f8e9!important}.active\:bg-light-green-lighten-5:active,.hover\:bg-light-green-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-light-green-lighten-5"]:active{background:#f1f8e9!important;transition:background .1s}.text-light-green-lighten-5{caret-color:#f1f8e9!important;color:#f1f8e9!important}.text-light-green-lighten-5:hover:active:before{background:#f1f8e9!important;opacity:.3;transition:background .1s}.bg-light-green-lighten-4{background-color:#dcedc8!important;border-color:#dcedc8!important}.active\:bg-light-green-lighten-4:active,.hover\:bg-light-green-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-light-green-lighten-4"]:active{background:#dcedc8!important;transition:background .1s}.text-light-green-lighten-4{caret-color:#dcedc8!important;color:#dcedc8!important}.text-light-green-lighten-4:hover:active:before{background:#dcedc8!important;opacity:.3;transition:background .1s}.bg-light-green-lighten-3{background-color:#c5e1a5!important;border-color:#c5e1a5!important}.active\:bg-light-green-lighten-3:active,.hover\:bg-light-green-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-light-green-lighten-3"]:active{background:#c5e1a5!important;transition:background .1s}.text-light-green-lighten-3{caret-color:#c5e1a5!important;color:#c5e1a5!important}.text-light-green-lighten-3:hover:active:before{background:#c5e1a5!important;opacity:.3;transition:background .1s}.bg-light-green-lighten-2{background-color:#aed581!important;border-color:#aed581!important}.active\:bg-light-green-lighten-2:active,.hover\:bg-light-green-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-light-green-lighten-2"]:active{background:#aed581!important;transition:background .1s}.text-light-green-lighten-2{caret-color:#aed581!important;color:#aed581!important}.text-light-green-lighten-2:hover:active:before{background:#aed581!important;opacity:.3;transition:background .1s}.bg-light-green-lighten-1{background-color:#9ccc65!important;border-color:#9ccc65!important}.active\:bg-light-green-lighten-1:active,.hover\:bg-light-green-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-light-green-lighten-1"]:active{background:#9ccc65!important;transition:background .1s}.text-light-green-lighten-1{caret-color:#9ccc65!important;color:#9ccc65!important}.text-light-green-lighten-1:hover:active:before{background:#9ccc65!important;opacity:.3;transition:background .1s}.bg-light-green-darken-1{background-color:#7cb342!important;border-color:#7cb342!important}.active\:bg-light-green-darken-1:active,.hover\:bg-light-green-darken-1:hover,[class*="hover:bg-"][class*="active:bg-light-green-darken-1"]:active{background:#7cb342!important;transition:background .1s}.text-light-green-darken-1{caret-color:#7cb342!important;color:#7cb342!important}.text-light-green-darken-1:hover:active:before{background:#7cb342!important;opacity:.3;transition:background .1s}.bg-light-green-darken-2{background-color:#689f38!important;border-color:#689f38!important}.active\:bg-light-green-darken-2:active,.hover\:bg-light-green-darken-2:hover,[class*="hover:bg-"][class*="active:bg-light-green-darken-2"]:active{background:#689f38!important;transition:background .1s}.text-light-green-darken-2{caret-color:#689f38!important;color:#689f38!important}.text-light-green-darken-2:hover:active:before{background:#689f38!important;opacity:.3;transition:background .1s}.bg-light-green-darken-3{background-color:#558b2f!important;border-color:#558b2f!important}.active\:bg-light-green-darken-3:active,.hover\:bg-light-green-darken-3:hover,[class*="hover:bg-"][class*="active:bg-light-green-darken-3"]:active{background:#558b2f!important;transition:background .1s}.text-light-green-darken-3{caret-color:#558b2f!important;color:#558b2f!important}.text-light-green-darken-3:hover:active:before{background:#558b2f!important;opacity:.3;transition:background .1s}.bg-light-green-darken-4{background-color:#33691e!important;border-color:#33691e!important}.active\:bg-light-green-darken-4:active,.hover\:bg-light-green-darken-4:hover,[class*="hover:bg-"][class*="active:bg-light-green-darken-4"]:active{background:#33691e!important;transition:background .1s}.text-light-green-darken-4{caret-color:#33691e!important;color:#33691e!important}.text-light-green-darken-4:hover:active:before{background:#33691e!important;opacity:.3;transition:background .1s}.bg-light-green-accent-1{background-color:#ccff90!important;border-color:#ccff90!important}.active\:bg-light-green-accent-1:active,.hover\:bg-light-green-accent-1:hover,[class*="hover:bg-"][class*="active:bg-light-green-accent-1"]:active{background:#ccff90!important;transition:background .1s}.text-light-green-accent-1{caret-color:#ccff90!important;color:#ccff90!important}.text-light-green-accent-1:hover:active:before{background:#ccff90!important;opacity:.3;transition:background .1s}.bg-light-green-accent-2{background-color:#b2ff59!important;border-color:#b2ff59!important}.active\:bg-light-green-accent-2:active,.hover\:bg-light-green-accent-2:hover,[class*="hover:bg-"][class*="active:bg-light-green-accent-2"]:active{background:#b2ff59!important;transition:background .1s}.text-light-green-accent-2{caret-color:#b2ff59!important;color:#b2ff59!important}.text-light-green-accent-2:hover:active:before{background:#b2ff59!important;opacity:.3;transition:background .1s}.bg-light-green-accent-3{background-color:#76ff03!important;border-color:#76ff03!important}.active\:bg-light-green-accent-3:active,.hover\:bg-light-green-accent-3:hover,[class*="hover:bg-"][class*="active:bg-light-green-accent-3"]:active{background:#76ff03!important;transition:background .1s}.text-light-green-accent-3{caret-color:#76ff03!important;color:#76ff03!important}.text-light-green-accent-3:hover:active:before{background:#76ff03!important;opacity:.3;transition:background .1s}.bg-light-green-accent-4{background-color:#64dd17!important;border-color:#64dd17!important}.active\:bg-light-green-accent-4:active,.hover\:bg-light-green-accent-4:hover,[class*="hover:bg-"][class*="active:bg-light-green-accent-4"]:active{background:#64dd17!important;transition:background .1s}.text-light-green-accent-4{caret-color:#64dd17!important;color:#64dd17!important}.text-light-green-accent-4:hover:active:before{background:#64dd17!important;opacity:.3;transition:background .1s}.bg-lime{background-color:#cddc39!important;border-color:#cddc39!important}.active\:bg-lime:active,.hover\:bg-lime:hover,[class*="hover:bg-"][class*="active:bg-lime"]:active{background:#cddc39!important;transition:background .1s}.text-lime{caret-color:#cddc39!important;color:#cddc39!important}.text-lime:hover:active:before{background:#cddc39!important;opacity:.3;transition:background .1s}.bg-lime-base{background-color:#cddc39!important;border-color:#cddc39!important}.active\:bg-lime-base:active,.hover\:bg-lime-base:hover,[class*="hover:bg-"][class*="active:bg-lime-base"]:active{background:#cddc39!important;transition:background .1s}.text-lime-base{caret-color:#cddc39!important;color:#cddc39!important}.text-lime-base:hover:active:before{background:#cddc39!important;opacity:.3;transition:background .1s}.bg-lime-lighten-5{background-color:#f9fbe7!important;border-color:#f9fbe7!important}.active\:bg-lime-lighten-5:active,.hover\:bg-lime-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-lime-lighten-5"]:active{background:#f9fbe7!important;transition:background .1s}.text-lime-lighten-5{caret-color:#f9fbe7!important;color:#f9fbe7!important}.text-lime-lighten-5:hover:active:before{background:#f9fbe7!important;opacity:.3;transition:background .1s}.bg-lime-lighten-4{background-color:#f0f4c3!important;border-color:#f0f4c3!important}.active\:bg-lime-lighten-4:active,.hover\:bg-lime-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-lime-lighten-4"]:active{background:#f0f4c3!important;transition:background .1s}.text-lime-lighten-4{caret-color:#f0f4c3!important;color:#f0f4c3!important}.text-lime-lighten-4:hover:active:before{background:#f0f4c3!important;opacity:.3;transition:background .1s}.bg-lime-lighten-3{background-color:#e6ee9c!important;border-color:#e6ee9c!important}.active\:bg-lime-lighten-3:active,.hover\:bg-lime-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-lime-lighten-3"]:active{background:#e6ee9c!important;transition:background .1s}.text-lime-lighten-3{caret-color:#e6ee9c!important;color:#e6ee9c!important}.text-lime-lighten-3:hover:active:before{background:#e6ee9c!important;opacity:.3;transition:background .1s}.bg-lime-lighten-2{background-color:#dce775!important;border-color:#dce775!important}.active\:bg-lime-lighten-2:active,.hover\:bg-lime-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-lime-lighten-2"]:active{background:#dce775!important;transition:background .1s}.text-lime-lighten-2{caret-color:#dce775!important;color:#dce775!important}.text-lime-lighten-2:hover:active:before{background:#dce775!important;opacity:.3;transition:background .1s}.bg-lime-lighten-1{background-color:#d4e157!important;border-color:#d4e157!important}.active\:bg-lime-lighten-1:active,.hover\:bg-lime-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-lime-lighten-1"]:active{background:#d4e157!important;transition:background .1s}.text-lime-lighten-1{caret-color:#d4e157!important;color:#d4e157!important}.text-lime-lighten-1:hover:active:before{background:#d4e157!important;opacity:.3;transition:background .1s}.bg-lime-darken-1{background-color:#c0ca33!important;border-color:#c0ca33!important}.active\:bg-lime-darken-1:active,.hover\:bg-lime-darken-1:hover,[class*="hover:bg-"][class*="active:bg-lime-darken-1"]:active{background:#c0ca33!important;transition:background .1s}.text-lime-darken-1{caret-color:#c0ca33!important;color:#c0ca33!important}.text-lime-darken-1:hover:active:before{background:#c0ca33!important;opacity:.3;transition:background .1s}.bg-lime-darken-2{background-color:#afb42b!important;border-color:#afb42b!important}.active\:bg-lime-darken-2:active,.hover\:bg-lime-darken-2:hover,[class*="hover:bg-"][class*="active:bg-lime-darken-2"]:active{background:#afb42b!important;transition:background .1s}.text-lime-darken-2{caret-color:#afb42b!important;color:#afb42b!important}.text-lime-darken-2:hover:active:before{background:#afb42b!important;opacity:.3;transition:background .1s}.bg-lime-darken-3{background-color:#9e9d24!important;border-color:#9e9d24!important}.active\:bg-lime-darken-3:active,.hover\:bg-lime-darken-3:hover,[class*="hover:bg-"][class*="active:bg-lime-darken-3"]:active{background:#9e9d24!important;transition:background .1s}.text-lime-darken-3{caret-color:#9e9d24!important;color:#9e9d24!important}.text-lime-darken-3:hover:active:before{background:#9e9d24!important;opacity:.3;transition:background .1s}.bg-lime-darken-4{background-color:#827717!important;border-color:#827717!important}.active\:bg-lime-darken-4:active,.hover\:bg-lime-darken-4:hover,[class*="hover:bg-"][class*="active:bg-lime-darken-4"]:active{background:#827717!important;transition:background .1s}.text-lime-darken-4{caret-color:#827717!important;color:#827717!important}.text-lime-darken-4:hover:active:before{background:#827717!important;opacity:.3;transition:background .1s}.bg-lime-accent-1{background-color:#f4ff81!important;border-color:#f4ff81!important}.active\:bg-lime-accent-1:active,.hover\:bg-lime-accent-1:hover,[class*="hover:bg-"][class*="active:bg-lime-accent-1"]:active{background:#f4ff81!important;transition:background .1s}.text-lime-accent-1{caret-color:#f4ff81!important;color:#f4ff81!important}.text-lime-accent-1:hover:active:before{background:#f4ff81!important;opacity:.3;transition:background .1s}.bg-lime-accent-2{background-color:#eeff41!important;border-color:#eeff41!important}.active\:bg-lime-accent-2:active,.hover\:bg-lime-accent-2:hover,[class*="hover:bg-"][class*="active:bg-lime-accent-2"]:active{background:#eeff41!important;transition:background .1s}.text-lime-accent-2{caret-color:#eeff41!important;color:#eeff41!important}.text-lime-accent-2:hover:active:before{background:#eeff41!important;opacity:.3;transition:background .1s}.bg-lime-accent-3{background-color:#c6ff00!important;border-color:#c6ff00!important}.active\:bg-lime-accent-3:active,.hover\:bg-lime-accent-3:hover,[class*="hover:bg-"][class*="active:bg-lime-accent-3"]:active{background:#c6ff00!important;transition:background .1s}.text-lime-accent-3{caret-color:#c6ff00!important;color:#c6ff00!important}.text-lime-accent-3:hover:active:before{background:#c6ff00!important;opacity:.3;transition:background .1s}.bg-lime-accent-4{background-color:#aeea00!important;border-color:#aeea00!important}.active\:bg-lime-accent-4:active,.hover\:bg-lime-accent-4:hover,[class*="hover:bg-"][class*="active:bg-lime-accent-4"]:active{background:#aeea00!important;transition:background .1s}.text-lime-accent-4{caret-color:#aeea00!important;color:#aeea00!important}.text-lime-accent-4:hover:active:before{background:#aeea00!important;opacity:.3;transition:background .1s}.bg-yellow{background-color:#ffeb3b!important;border-color:#ffeb3b!important}.active\:bg-yellow:active,.hover\:bg-yellow:hover,[class*="hover:bg-"][class*="active:bg-yellow"]:active{background:#ffeb3b!important;transition:background .1s}.text-yellow{caret-color:#ffeb3b!important;color:#ffeb3b!important}.text-yellow:hover:active:before{background:#ffeb3b!important;opacity:.3;transition:background .1s}.bg-yellow-base{background-color:#ffeb3b!important;border-color:#ffeb3b!important}.active\:bg-yellow-base:active,.hover\:bg-yellow-base:hover,[class*="hover:bg-"][class*="active:bg-yellow-base"]:active{background:#ffeb3b!important;transition:background .1s}.text-yellow-base{caret-color:#ffeb3b!important;color:#ffeb3b!important}.text-yellow-base:hover:active:before{background:#ffeb3b!important;opacity:.3;transition:background .1s}.bg-yellow-lighten-5{background-color:#fffde7!important;border-color:#fffde7!important}.active\:bg-yellow-lighten-5:active,.hover\:bg-yellow-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-yellow-lighten-5"]:active{background:#fffde7!important;transition:background .1s}.text-yellow-lighten-5{caret-color:#fffde7!important;color:#fffde7!important}.text-yellow-lighten-5:hover:active:before{background:#fffde7!important;opacity:.3;transition:background .1s}.bg-yellow-lighten-4{background-color:#fff9c4!important;border-color:#fff9c4!important}.active\:bg-yellow-lighten-4:active,.hover\:bg-yellow-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-yellow-lighten-4"]:active{background:#fff9c4!important;transition:background .1s}.text-yellow-lighten-4{caret-color:#fff9c4!important;color:#fff9c4!important}.text-yellow-lighten-4:hover:active:before{background:#fff9c4!important;opacity:.3;transition:background .1s}.bg-yellow-lighten-3{background-color:#fff59d!important;border-color:#fff59d!important}.active\:bg-yellow-lighten-3:active,.hover\:bg-yellow-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-yellow-lighten-3"]:active{background:#fff59d!important;transition:background .1s}.text-yellow-lighten-3{caret-color:#fff59d!important;color:#fff59d!important}.text-yellow-lighten-3:hover:active:before{background:#fff59d!important;opacity:.3;transition:background .1s}.bg-yellow-lighten-2{background-color:#fff176!important;border-color:#fff176!important}.active\:bg-yellow-lighten-2:active,.hover\:bg-yellow-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-yellow-lighten-2"]:active{background:#fff176!important;transition:background .1s}.text-yellow-lighten-2{caret-color:#fff176!important;color:#fff176!important}.text-yellow-lighten-2:hover:active:before{background:#fff176!important;opacity:.3;transition:background .1s}.bg-yellow-lighten-1{background-color:#ffee58!important;border-color:#ffee58!important}.active\:bg-yellow-lighten-1:active,.hover\:bg-yellow-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-yellow-lighten-1"]:active{background:#ffee58!important;transition:background .1s}.text-yellow-lighten-1{caret-color:#ffee58!important;color:#ffee58!important}.text-yellow-lighten-1:hover:active:before{background:#ffee58!important;opacity:.3;transition:background .1s}.bg-yellow-darken-1{background-color:#fdd835!important;border-color:#fdd835!important}.active\:bg-yellow-darken-1:active,.hover\:bg-yellow-darken-1:hover,[class*="hover:bg-"][class*="active:bg-yellow-darken-1"]:active{background:#fdd835!important;transition:background .1s}.text-yellow-darken-1{caret-color:#fdd835!important;color:#fdd835!important}.text-yellow-darken-1:hover:active:before{background:#fdd835!important;opacity:.3;transition:background .1s}.bg-yellow-darken-2{background-color:#fbc02d!important;border-color:#fbc02d!important}.active\:bg-yellow-darken-2:active,.hover\:bg-yellow-darken-2:hover,[class*="hover:bg-"][class*="active:bg-yellow-darken-2"]:active{background:#fbc02d!important;transition:background .1s}.text-yellow-darken-2{caret-color:#fbc02d!important;color:#fbc02d!important}.text-yellow-darken-2:hover:active:before{background:#fbc02d!important;opacity:.3;transition:background .1s}.bg-yellow-darken-3{background-color:#f9a825!important;border-color:#f9a825!important}.active\:bg-yellow-darken-3:active,.hover\:bg-yellow-darken-3:hover,[class*="hover:bg-"][class*="active:bg-yellow-darken-3"]:active{background:#f9a825!important;transition:background .1s}.text-yellow-darken-3{caret-color:#f9a825!important;color:#f9a825!important}.text-yellow-darken-3:hover:active:before{background:#f9a825!important;opacity:.3;transition:background .1s}.bg-yellow-darken-4{background-color:#f57f17!important;border-color:#f57f17!important}.active\:bg-yellow-darken-4:active,.hover\:bg-yellow-darken-4:hover,[class*="hover:bg-"][class*="active:bg-yellow-darken-4"]:active{background:#f57f17!important;transition:background .1s}.text-yellow-darken-4{caret-color:#f57f17!important;color:#f57f17!important}.text-yellow-darken-4:hover:active:before{background:#f57f17!important;opacity:.3;transition:background .1s}.bg-yellow-accent-1{background-color:#ffff8d!important;border-color:#ffff8d!important}.active\:bg-yellow-accent-1:active,.hover\:bg-yellow-accent-1:hover,[class*="hover:bg-"][class*="active:bg-yellow-accent-1"]:active{background:#ffff8d!important;transition:background .1s}.text-yellow-accent-1{caret-color:#ffff8d!important;color:#ffff8d!important}.text-yellow-accent-1:hover:active:before{background:#ffff8d!important;opacity:.3;transition:background .1s}.bg-yellow-accent-2{background-color:#ff0!important;border-color:#ff0!important}.active\:bg-yellow-accent-2:active,.hover\:bg-yellow-accent-2:hover,[class*="hover:bg-"][class*="active:bg-yellow-accent-2"]:active{background:#ff0!important;transition:background .1s}.text-yellow-accent-2{caret-color:#ff0!important;color:#ff0!important}.text-yellow-accent-2:hover:active:before{background:#ff0!important;opacity:.3;transition:background .1s}.bg-yellow-accent-3{background-color:#ffea00!important;border-color:#ffea00!important}.active\:bg-yellow-accent-3:active,.hover\:bg-yellow-accent-3:hover,[class*="hover:bg-"][class*="active:bg-yellow-accent-3"]:active{background:#ffea00!important;transition:background .1s}.text-yellow-accent-3{caret-color:#ffea00!important;color:#ffea00!important}.text-yellow-accent-3:hover:active:before{background:#ffea00!important;opacity:.3;transition:background .1s}.bg-yellow-accent-4{background-color:#ffd600!important;border-color:#ffd600!important}.active\:bg-yellow-accent-4:active,.hover\:bg-yellow-accent-4:hover,[class*="hover:bg-"][class*="active:bg-yellow-accent-4"]:active{background:#ffd600!important;transition:background .1s}.text-yellow-accent-4{caret-color:#ffd600!important;color:#ffd600!important}.text-yellow-accent-4:hover:active:before{background:#ffd600!important;opacity:.3;transition:background .1s}.bg-amber{background-color:#ffc107!important;border-color:#ffc107!important}.active\:bg-amber:active,.hover\:bg-amber:hover,[class*="hover:bg-"][class*="active:bg-amber"]:active{background:#ffc107!important;transition:background .1s}.text-amber{caret-color:#ffc107!important;color:#ffc107!important}.text-amber:hover:active:before{background:#ffc107!important;opacity:.3;transition:background .1s}.bg-amber-base{background-color:#ffc107!important;border-color:#ffc107!important}.active\:bg-amber-base:active,.hover\:bg-amber-base:hover,[class*="hover:bg-"][class*="active:bg-amber-base"]:active{background:#ffc107!important;transition:background .1s}.text-amber-base{caret-color:#ffc107!important;color:#ffc107!important}.text-amber-base:hover:active:before{background:#ffc107!important;opacity:.3;transition:background .1s}.bg-amber-lighten-5{background-color:#fff8e1!important;border-color:#fff8e1!important}.active\:bg-amber-lighten-5:active,.hover\:bg-amber-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-amber-lighten-5"]:active{background:#fff8e1!important;transition:background .1s}.text-amber-lighten-5{caret-color:#fff8e1!important;color:#fff8e1!important}.text-amber-lighten-5:hover:active:before{background:#fff8e1!important;opacity:.3;transition:background .1s}.bg-amber-lighten-4{background-color:#ffecb3!important;border-color:#ffecb3!important}.active\:bg-amber-lighten-4:active,.hover\:bg-amber-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-amber-lighten-4"]:active{background:#ffecb3!important;transition:background .1s}.text-amber-lighten-4{caret-color:#ffecb3!important;color:#ffecb3!important}.text-amber-lighten-4:hover:active:before{background:#ffecb3!important;opacity:.3;transition:background .1s}.bg-amber-lighten-3{background-color:#ffe082!important;border-color:#ffe082!important}.active\:bg-amber-lighten-3:active,.hover\:bg-amber-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-amber-lighten-3"]:active{background:#ffe082!important;transition:background .1s}.text-amber-lighten-3{caret-color:#ffe082!important;color:#ffe082!important}.text-amber-lighten-3:hover:active:before{background:#ffe082!important;opacity:.3;transition:background .1s}.bg-amber-lighten-2{background-color:#ffd54f!important;border-color:#ffd54f!important}.active\:bg-amber-lighten-2:active,.hover\:bg-amber-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-amber-lighten-2"]:active{background:#ffd54f!important;transition:background .1s}.text-amber-lighten-2{caret-color:#ffd54f!important;color:#ffd54f!important}.text-amber-lighten-2:hover:active:before{background:#ffd54f!important;opacity:.3;transition:background .1s}.bg-amber-lighten-1{background-color:#ffca28!important;border-color:#ffca28!important}.active\:bg-amber-lighten-1:active,.hover\:bg-amber-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-amber-lighten-1"]:active{background:#ffca28!important;transition:background .1s}.text-amber-lighten-1{caret-color:#ffca28!important;color:#ffca28!important}.text-amber-lighten-1:hover:active:before{background:#ffca28!important;opacity:.3;transition:background .1s}.bg-amber-darken-1{background-color:#ffb300!important;border-color:#ffb300!important}.active\:bg-amber-darken-1:active,.hover\:bg-amber-darken-1:hover,[class*="hover:bg-"][class*="active:bg-amber-darken-1"]:active{background:#ffb300!important;transition:background .1s}.text-amber-darken-1{caret-color:#ffb300!important;color:#ffb300!important}.text-amber-darken-1:hover:active:before{background:#ffb300!important;opacity:.3;transition:background .1s}.bg-amber-darken-2{background-color:#ffa000!important;border-color:#ffa000!important}.active\:bg-amber-darken-2:active,.hover\:bg-amber-darken-2:hover,[class*="hover:bg-"][class*="active:bg-amber-darken-2"]:active{background:#ffa000!important;transition:background .1s}.text-amber-darken-2{caret-color:#ffa000!important;color:#ffa000!important}.text-amber-darken-2:hover:active:before{background:#ffa000!important;opacity:.3;transition:background .1s}.bg-amber-darken-3{background-color:#ff8f00!important;border-color:#ff8f00!important}.active\:bg-amber-darken-3:active,.hover\:bg-amber-darken-3:hover,[class*="hover:bg-"][class*="active:bg-amber-darken-3"]:active{background:#ff8f00!important;transition:background .1s}.text-amber-darken-3{caret-color:#ff8f00!important;color:#ff8f00!important}.text-amber-darken-3:hover:active:before{background:#ff8f00!important;opacity:.3;transition:background .1s}.bg-amber-darken-4{background-color:#ff6f00!important;border-color:#ff6f00!important}.active\:bg-amber-darken-4:active,.hover\:bg-amber-darken-4:hover,[class*="hover:bg-"][class*="active:bg-amber-darken-4"]:active{background:#ff6f00!important;transition:background .1s}.text-amber-darken-4{caret-color:#ff6f00!important;color:#ff6f00!important}.text-amber-darken-4:hover:active:before{background:#ff6f00!important;opacity:.3;transition:background .1s}.bg-amber-accent-1{background-color:#ffe57f!important;border-color:#ffe57f!important}.active\:bg-amber-accent-1:active,.hover\:bg-amber-accent-1:hover,[class*="hover:bg-"][class*="active:bg-amber-accent-1"]:active{background:#ffe57f!important;transition:background .1s}.text-amber-accent-1{caret-color:#ffe57f!important;color:#ffe57f!important}.text-amber-accent-1:hover:active:before{background:#ffe57f!important;opacity:.3;transition:background .1s}.bg-amber-accent-2{background-color:#ffd740!important;border-color:#ffd740!important}.active\:bg-amber-accent-2:active,.hover\:bg-amber-accent-2:hover,[class*="hover:bg-"][class*="active:bg-amber-accent-2"]:active{background:#ffd740!important;transition:background .1s}.text-amber-accent-2{caret-color:#ffd740!important;color:#ffd740!important}.text-amber-accent-2:hover:active:before{background:#ffd740!important;opacity:.3;transition:background .1s}.bg-amber-accent-3{background-color:#ffc400!important;border-color:#ffc400!important}.active\:bg-amber-accent-3:active,.hover\:bg-amber-accent-3:hover,[class*="hover:bg-"][class*="active:bg-amber-accent-3"]:active{background:#ffc400!important;transition:background .1s}.text-amber-accent-3{caret-color:#ffc400!important;color:#ffc400!important}.text-amber-accent-3:hover:active:before{background:#ffc400!important;opacity:.3;transition:background .1s}.bg-amber-accent-4{background-color:#ffab00!important;border-color:#ffab00!important}.active\:bg-amber-accent-4:active,.hover\:bg-amber-accent-4:hover,[class*="hover:bg-"][class*="active:bg-amber-accent-4"]:active{background:#ffab00!important;transition:background .1s}.text-amber-accent-4{caret-color:#ffab00!important;color:#ffab00!important}.text-amber-accent-4:hover:active:before{background:#ffab00!important;opacity:.3;transition:background .1s}.bg-orange{background-color:#ff9800!important;border-color:#ff9800!important}.active\:bg-orange:active,.hover\:bg-orange:hover,[class*="hover:bg-"][class*="active:bg-orange"]:active{background:#ff9800!important;transition:background .1s}.text-orange{caret-color:#ff9800!important;color:#ff9800!important}.text-orange:hover:active:before{background:#ff9800!important;opacity:.3;transition:background .1s}.bg-orange-base{background-color:#ff9800!important;border-color:#ff9800!important}.active\:bg-orange-base:active,.hover\:bg-orange-base:hover,[class*="hover:bg-"][class*="active:bg-orange-base"]:active{background:#ff9800!important;transition:background .1s}.text-orange-base{caret-color:#ff9800!important;color:#ff9800!important}.text-orange-base:hover:active:before{background:#ff9800!important;opacity:.3;transition:background .1s}.bg-orange-lighten-5{background-color:#fff3e0!important;border-color:#fff3e0!important}.active\:bg-orange-lighten-5:active,.hover\:bg-orange-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-orange-lighten-5"]:active{background:#fff3e0!important;transition:background .1s}.text-orange-lighten-5{caret-color:#fff3e0!important;color:#fff3e0!important}.text-orange-lighten-5:hover:active:before{background:#fff3e0!important;opacity:.3;transition:background .1s}.bg-orange-lighten-4{background-color:#ffe0b2!important;border-color:#ffe0b2!important}.active\:bg-orange-lighten-4:active,.hover\:bg-orange-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-orange-lighten-4"]:active{background:#ffe0b2!important;transition:background .1s}.text-orange-lighten-4{caret-color:#ffe0b2!important;color:#ffe0b2!important}.text-orange-lighten-4:hover:active:before{background:#ffe0b2!important;opacity:.3;transition:background .1s}.bg-orange-lighten-3{background-color:#ffcc80!important;border-color:#ffcc80!important}.active\:bg-orange-lighten-3:active,.hover\:bg-orange-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-orange-lighten-3"]:active{background:#ffcc80!important;transition:background .1s}.text-orange-lighten-3{caret-color:#ffcc80!important;color:#ffcc80!important}.text-orange-lighten-3:hover:active:before{background:#ffcc80!important;opacity:.3;transition:background .1s}.bg-orange-lighten-2{background-color:#ffb74d!important;border-color:#ffb74d!important}.active\:bg-orange-lighten-2:active,.hover\:bg-orange-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-orange-lighten-2"]:active{background:#ffb74d!important;transition:background .1s}.text-orange-lighten-2{caret-color:#ffb74d!important;color:#ffb74d!important}.text-orange-lighten-2:hover:active:before{background:#ffb74d!important;opacity:.3;transition:background .1s}.bg-orange-lighten-1{background-color:#ffa726!important;border-color:#ffa726!important}.active\:bg-orange-lighten-1:active,.hover\:bg-orange-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-orange-lighten-1"]:active{background:#ffa726!important;transition:background .1s}.text-orange-lighten-1{caret-color:#ffa726!important;color:#ffa726!important}.text-orange-lighten-1:hover:active:before{background:#ffa726!important;opacity:.3;transition:background .1s}.bg-orange-darken-1{background-color:#fb8c00!important;border-color:#fb8c00!important}.active\:bg-orange-darken-1:active,.hover\:bg-orange-darken-1:hover,[class*="hover:bg-"][class*="active:bg-orange-darken-1"]:active{background:#fb8c00!important;transition:background .1s}.text-orange-darken-1{caret-color:#fb8c00!important;color:#fb8c00!important}.text-orange-darken-1:hover:active:before{background:#fb8c00!important;opacity:.3;transition:background .1s}.bg-orange-darken-2{background-color:#f57c00!important;border-color:#f57c00!important}.active\:bg-orange-darken-2:active,.hover\:bg-orange-darken-2:hover,[class*="hover:bg-"][class*="active:bg-orange-darken-2"]:active{background:#f57c00!important;transition:background .1s}.text-orange-darken-2{caret-color:#f57c00!important;color:#f57c00!important}.text-orange-darken-2:hover:active:before{background:#f57c00!important;opacity:.3;transition:background .1s}.bg-orange-darken-3{background-color:#ef6c00!important;border-color:#ef6c00!important}.active\:bg-orange-darken-3:active,.hover\:bg-orange-darken-3:hover,[class*="hover:bg-"][class*="active:bg-orange-darken-3"]:active{background:#ef6c00!important;transition:background .1s}.text-orange-darken-3{caret-color:#ef6c00!important;color:#ef6c00!important}.text-orange-darken-3:hover:active:before{background:#ef6c00!important;opacity:.3;transition:background .1s}.bg-orange-darken-4{background-color:#e65100!important;border-color:#e65100!important}.active\:bg-orange-darken-4:active,.hover\:bg-orange-darken-4:hover,[class*="hover:bg-"][class*="active:bg-orange-darken-4"]:active{background:#e65100!important;transition:background .1s}.text-orange-darken-4{caret-color:#e65100!important;color:#e65100!important}.text-orange-darken-4:hover:active:before{background:#e65100!important;opacity:.3;transition:background .1s}.bg-orange-accent-1{background-color:#ffd180!important;border-color:#ffd180!important}.active\:bg-orange-accent-1:active,.hover\:bg-orange-accent-1:hover,[class*="hover:bg-"][class*="active:bg-orange-accent-1"]:active{background:#ffd180!important;transition:background .1s}.text-orange-accent-1{caret-color:#ffd180!important;color:#ffd180!important}.text-orange-accent-1:hover:active:before{background:#ffd180!important;opacity:.3;transition:background .1s}.bg-orange-accent-2{background-color:#ffab40!important;border-color:#ffab40!important}.active\:bg-orange-accent-2:active,.hover\:bg-orange-accent-2:hover,[class*="hover:bg-"][class*="active:bg-orange-accent-2"]:active{background:#ffab40!important;transition:background .1s}.text-orange-accent-2{caret-color:#ffab40!important;color:#ffab40!important}.text-orange-accent-2:hover:active:before{background:#ffab40!important;opacity:.3;transition:background .1s}.bg-orange-accent-3{background-color:#ff9100!important;border-color:#ff9100!important}.active\:bg-orange-accent-3:active,.hover\:bg-orange-accent-3:hover,[class*="hover:bg-"][class*="active:bg-orange-accent-3"]:active{background:#ff9100!important;transition:background .1s}.text-orange-accent-3{caret-color:#ff9100!important;color:#ff9100!important}.text-orange-accent-3:hover:active:before{background:#ff9100!important;opacity:.3;transition:background .1s}.bg-orange-accent-4{background-color:#ff6d00!important;border-color:#ff6d00!important}.active\:bg-orange-accent-4:active,.hover\:bg-orange-accent-4:hover,[class*="hover:bg-"][class*="active:bg-orange-accent-4"]:active{background:#ff6d00!important;transition:background .1s}.text-orange-accent-4{caret-color:#ff6d00!important;color:#ff6d00!important}.text-orange-accent-4:hover:active:before{background:#ff6d00!important;opacity:.3;transition:background .1s}.bg-deep-orange{background-color:#ff5722!important;border-color:#ff5722!important}.active\:bg-deep-orange:active,.hover\:bg-deep-orange:hover,[class*="hover:bg-"][class*="active:bg-deep-orange"]:active{background:#ff5722!important;transition:background .1s}.text-deep-orange{caret-color:#ff5722!important;color:#ff5722!important}.text-deep-orange:hover:active:before{background:#ff5722!important;opacity:.3;transition:background .1s}.bg-deep-orange-base{background-color:#ff5722!important;border-color:#ff5722!important}.active\:bg-deep-orange-base:active,.hover\:bg-deep-orange-base:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-base"]:active{background:#ff5722!important;transition:background .1s}.text-deep-orange-base{caret-color:#ff5722!important;color:#ff5722!important}.text-deep-orange-base:hover:active:before{background:#ff5722!important;opacity:.3;transition:background .1s}.bg-deep-orange-lighten-5{background-color:#fbe9e7!important;border-color:#fbe9e7!important}.active\:bg-deep-orange-lighten-5:active,.hover\:bg-deep-orange-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-lighten-5"]:active{background:#fbe9e7!important;transition:background .1s}.text-deep-orange-lighten-5{caret-color:#fbe9e7!important;color:#fbe9e7!important}.text-deep-orange-lighten-5:hover:active:before{background:#fbe9e7!important;opacity:.3;transition:background .1s}.bg-deep-orange-lighten-4{background-color:#ffccbc!important;border-color:#ffccbc!important}.active\:bg-deep-orange-lighten-4:active,.hover\:bg-deep-orange-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-lighten-4"]:active{background:#ffccbc!important;transition:background .1s}.text-deep-orange-lighten-4{caret-color:#ffccbc!important;color:#ffccbc!important}.text-deep-orange-lighten-4:hover:active:before{background:#ffccbc!important;opacity:.3;transition:background .1s}.bg-deep-orange-lighten-3{background-color:#ffab91!important;border-color:#ffab91!important}.active\:bg-deep-orange-lighten-3:active,.hover\:bg-deep-orange-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-lighten-3"]:active{background:#ffab91!important;transition:background .1s}.text-deep-orange-lighten-3{caret-color:#ffab91!important;color:#ffab91!important}.text-deep-orange-lighten-3:hover:active:before{background:#ffab91!important;opacity:.3;transition:background .1s}.bg-deep-orange-lighten-2{background-color:#ff8a65!important;border-color:#ff8a65!important}.active\:bg-deep-orange-lighten-2:active,.hover\:bg-deep-orange-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-lighten-2"]:active{background:#ff8a65!important;transition:background .1s}.text-deep-orange-lighten-2{caret-color:#ff8a65!important;color:#ff8a65!important}.text-deep-orange-lighten-2:hover:active:before{background:#ff8a65!important;opacity:.3;transition:background .1s}.bg-deep-orange-lighten-1{background-color:#ff7043!important;border-color:#ff7043!important}.active\:bg-deep-orange-lighten-1:active,.hover\:bg-deep-orange-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-lighten-1"]:active{background:#ff7043!important;transition:background .1s}.text-deep-orange-lighten-1{caret-color:#ff7043!important;color:#ff7043!important}.text-deep-orange-lighten-1:hover:active:before{background:#ff7043!important;opacity:.3;transition:background .1s}.bg-deep-orange-darken-1{background-color:#f4511e!important;border-color:#f4511e!important}.active\:bg-deep-orange-darken-1:active,.hover\:bg-deep-orange-darken-1:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-darken-1"]:active{background:#f4511e!important;transition:background .1s}.text-deep-orange-darken-1{caret-color:#f4511e!important;color:#f4511e!important}.text-deep-orange-darken-1:hover:active:before{background:#f4511e!important;opacity:.3;transition:background .1s}.bg-deep-orange-darken-2{background-color:#e64a19!important;border-color:#e64a19!important}.active\:bg-deep-orange-darken-2:active,.hover\:bg-deep-orange-darken-2:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-darken-2"]:active{background:#e64a19!important;transition:background .1s}.text-deep-orange-darken-2{caret-color:#e64a19!important;color:#e64a19!important}.text-deep-orange-darken-2:hover:active:before{background:#e64a19!important;opacity:.3;transition:background .1s}.bg-deep-orange-darken-3{background-color:#d84315!important;border-color:#d84315!important}.active\:bg-deep-orange-darken-3:active,.hover\:bg-deep-orange-darken-3:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-darken-3"]:active{background:#d84315!important;transition:background .1s}.text-deep-orange-darken-3{caret-color:#d84315!important;color:#d84315!important}.text-deep-orange-darken-3:hover:active:before{background:#d84315!important;opacity:.3;transition:background .1s}.bg-deep-orange-darken-4{background-color:#bf360c!important;border-color:#bf360c!important}.active\:bg-deep-orange-darken-4:active,.hover\:bg-deep-orange-darken-4:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-darken-4"]:active{background:#bf360c!important;transition:background .1s}.text-deep-orange-darken-4{caret-color:#bf360c!important;color:#bf360c!important}.text-deep-orange-darken-4:hover:active:before{background:#bf360c!important;opacity:.3;transition:background .1s}.bg-deep-orange-accent-1{background-color:#ff9e80!important;border-color:#ff9e80!important}.active\:bg-deep-orange-accent-1:active,.hover\:bg-deep-orange-accent-1:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-accent-1"]:active{background:#ff9e80!important;transition:background .1s}.text-deep-orange-accent-1{caret-color:#ff9e80!important;color:#ff9e80!important}.text-deep-orange-accent-1:hover:active:before{background:#ff9e80!important;opacity:.3;transition:background .1s}.bg-deep-orange-accent-2{background-color:#ff6e40!important;border-color:#ff6e40!important}.active\:bg-deep-orange-accent-2:active,.hover\:bg-deep-orange-accent-2:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-accent-2"]:active{background:#ff6e40!important;transition:background .1s}.text-deep-orange-accent-2{caret-color:#ff6e40!important;color:#ff6e40!important}.text-deep-orange-accent-2:hover:active:before{background:#ff6e40!important;opacity:.3;transition:background .1s}.bg-deep-orange-accent-3{background-color:#ff3d00!important;border-color:#ff3d00!important}.active\:bg-deep-orange-accent-3:active,.hover\:bg-deep-orange-accent-3:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-accent-3"]:active{background:#ff3d00!important;transition:background .1s}.text-deep-orange-accent-3{caret-color:#ff3d00!important;color:#ff3d00!important}.text-deep-orange-accent-3:hover:active:before{background:#ff3d00!important;opacity:.3;transition:background .1s}.bg-deep-orange-accent-4{background-color:#dd2c00!important;border-color:#dd2c00!important}.active\:bg-deep-orange-accent-4:active,.hover\:bg-deep-orange-accent-4:hover,[class*="hover:bg-"][class*="active:bg-deep-orange-accent-4"]:active{background:#dd2c00!important;transition:background .1s}.text-deep-orange-accent-4{caret-color:#dd2c00!important;color:#dd2c00!important}.text-deep-orange-accent-4:hover:active:before{background:#dd2c00!important;opacity:.3;transition:background .1s}.bg-brown{background-color:#795548!important;border-color:#795548!important}.active\:bg-brown:active,.hover\:bg-brown:hover,[class*="hover:bg-"][class*="active:bg-brown"]:active{background:#795548!important;transition:background .1s}.text-brown{caret-color:#795548!important;color:#795548!important}.text-brown:hover:active:before{background:#795548!important;opacity:.3;transition:background .1s}.bg-brown-base{background-color:#795548!important;border-color:#795548!important}.active\:bg-brown-base:active,.hover\:bg-brown-base:hover,[class*="hover:bg-"][class*="active:bg-brown-base"]:active{background:#795548!important;transition:background .1s}.text-brown-base{caret-color:#795548!important;color:#795548!important}.text-brown-base:hover:active:before{background:#795548!important;opacity:.3;transition:background .1s}.bg-brown-lighten-5{background-color:#efebe9!important;border-color:#efebe9!important}.active\:bg-brown-lighten-5:active,.hover\:bg-brown-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-brown-lighten-5"]:active{background:#efebe9!important;transition:background .1s}.text-brown-lighten-5{caret-color:#efebe9!important;color:#efebe9!important}.text-brown-lighten-5:hover:active:before{background:#efebe9!important;opacity:.3;transition:background .1s}.bg-brown-lighten-4{background-color:#d7ccc8!important;border-color:#d7ccc8!important}.active\:bg-brown-lighten-4:active,.hover\:bg-brown-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-brown-lighten-4"]:active{background:#d7ccc8!important;transition:background .1s}.text-brown-lighten-4{caret-color:#d7ccc8!important;color:#d7ccc8!important}.text-brown-lighten-4:hover:active:before{background:#d7ccc8!important;opacity:.3;transition:background .1s}.bg-brown-lighten-3{background-color:#bcaaa4!important;border-color:#bcaaa4!important}.active\:bg-brown-lighten-3:active,.hover\:bg-brown-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-brown-lighten-3"]:active{background:#bcaaa4!important;transition:background .1s}.text-brown-lighten-3{caret-color:#bcaaa4!important;color:#bcaaa4!important}.text-brown-lighten-3:hover:active:before{background:#bcaaa4!important;opacity:.3;transition:background .1s}.bg-brown-lighten-2{background-color:#a1887f!important;border-color:#a1887f!important}.active\:bg-brown-lighten-2:active,.hover\:bg-brown-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-brown-lighten-2"]:active{background:#a1887f!important;transition:background .1s}.text-brown-lighten-2{caret-color:#a1887f!important;color:#a1887f!important}.text-brown-lighten-2:hover:active:before{background:#a1887f!important;opacity:.3;transition:background .1s}.bg-brown-lighten-1{background-color:#8d6e63!important;border-color:#8d6e63!important}.active\:bg-brown-lighten-1:active,.hover\:bg-brown-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-brown-lighten-1"]:active{background:#8d6e63!important;transition:background .1s}.text-brown-lighten-1{caret-color:#8d6e63!important;color:#8d6e63!important}.text-brown-lighten-1:hover:active:before{background:#8d6e63!important;opacity:.3;transition:background .1s}.bg-brown-darken-1{background-color:#6d4c41!important;border-color:#6d4c41!important}.active\:bg-brown-darken-1:active,.hover\:bg-brown-darken-1:hover,[class*="hover:bg-"][class*="active:bg-brown-darken-1"]:active{background:#6d4c41!important;transition:background .1s}.text-brown-darken-1{caret-color:#6d4c41!important;color:#6d4c41!important}.text-brown-darken-1:hover:active:before{background:#6d4c41!important;opacity:.3;transition:background .1s}.bg-brown-darken-2{background-color:#5d4037!important;border-color:#5d4037!important}.active\:bg-brown-darken-2:active,.hover\:bg-brown-darken-2:hover,[class*="hover:bg-"][class*="active:bg-brown-darken-2"]:active{background:#5d4037!important;transition:background .1s}.text-brown-darken-2{caret-color:#5d4037!important;color:#5d4037!important}.text-brown-darken-2:hover:active:before{background:#5d4037!important;opacity:.3;transition:background .1s}.bg-brown-darken-3{background-color:#4e342e!important;border-color:#4e342e!important}.active\:bg-brown-darken-3:active,.hover\:bg-brown-darken-3:hover,[class*="hover:bg-"][class*="active:bg-brown-darken-3"]:active{background:#4e342e!important;transition:background .1s}.text-brown-darken-3{caret-color:#4e342e!important;color:#4e342e!important}.text-brown-darken-3:hover:active:before{background:#4e342e!important;opacity:.3;transition:background .1s}.bg-brown-darken-4{background-color:#3e2723!important;border-color:#3e2723!important}.active\:bg-brown-darken-4:active,.hover\:bg-brown-darken-4:hover,[class*="hover:bg-"][class*="active:bg-brown-darken-4"]:active{background:#3e2723!important;transition:background .1s}.text-brown-darken-4{caret-color:#3e2723!important;color:#3e2723!important}.text-brown-darken-4:hover:active:before{background:#3e2723!important;opacity:.3;transition:background .1s}.bg-blue-grey{background-color:#607d8b!important;border-color:#607d8b!important}.active\:bg-blue-grey:active,.hover\:bg-blue-grey:hover,[class*="hover:bg-"][class*="active:bg-blue-grey"]:active{background:#607d8b!important;transition:background .1s}.text-blue-grey{caret-color:#607d8b!important;color:#607d8b!important}.text-blue-grey:hover:active:before{background:#607d8b!important;opacity:.3;transition:background .1s}.bg-blue-grey-base{background-color:#607d8b!important;border-color:#607d8b!important}.active\:bg-blue-grey-base:active,.hover\:bg-blue-grey-base:hover,[class*="hover:bg-"][class*="active:bg-blue-grey-base"]:active{background:#607d8b!important;transition:background .1s}.text-blue-grey-base{caret-color:#607d8b!important;color:#607d8b!important}.text-blue-grey-base:hover:active:before{background:#607d8b!important;opacity:.3;transition:background .1s}.bg-blue-grey-lighten-5{background-color:#eceff1!important;border-color:#eceff1!important}.active\:bg-blue-grey-lighten-5:active,.hover\:bg-blue-grey-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-blue-grey-lighten-5"]:active{background:#eceff1!important;transition:background .1s}.text-blue-grey-lighten-5{caret-color:#eceff1!important;color:#eceff1!important}.text-blue-grey-lighten-5:hover:active:before{background:#eceff1!important;opacity:.3;transition:background .1s}.bg-blue-grey-lighten-4{background-color:#cfd8dc!important;border-color:#cfd8dc!important}.active\:bg-blue-grey-lighten-4:active,.hover\:bg-blue-grey-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-blue-grey-lighten-4"]:active{background:#cfd8dc!important;transition:background .1s}.text-blue-grey-lighten-4{caret-color:#cfd8dc!important;color:#cfd8dc!important}.text-blue-grey-lighten-4:hover:active:before{background:#cfd8dc!important;opacity:.3;transition:background .1s}.bg-blue-grey-lighten-3{background-color:#b0bec5!important;border-color:#b0bec5!important}.active\:bg-blue-grey-lighten-3:active,.hover\:bg-blue-grey-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-blue-grey-lighten-3"]:active{background:#b0bec5!important;transition:background .1s}.text-blue-grey-lighten-3{caret-color:#b0bec5!important;color:#b0bec5!important}.text-blue-grey-lighten-3:hover:active:before{background:#b0bec5!important;opacity:.3;transition:background .1s}.bg-blue-grey-lighten-2{background-color:#90a4ae!important;border-color:#90a4ae!important}.active\:bg-blue-grey-lighten-2:active,.hover\:bg-blue-grey-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-blue-grey-lighten-2"]:active{background:#90a4ae!important;transition:background .1s}.text-blue-grey-lighten-2{caret-color:#90a4ae!important;color:#90a4ae!important}.text-blue-grey-lighten-2:hover:active:before{background:#90a4ae!important;opacity:.3;transition:background .1s}.bg-blue-grey-lighten-1{background-color:#78909c!important;border-color:#78909c!important}.active\:bg-blue-grey-lighten-1:active,.hover\:bg-blue-grey-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-blue-grey-lighten-1"]:active{background:#78909c!important;transition:background .1s}.text-blue-grey-lighten-1{caret-color:#78909c!important;color:#78909c!important}.text-blue-grey-lighten-1:hover:active:before{background:#78909c!important;opacity:.3;transition:background .1s}.bg-blue-grey-darken-1{background-color:#546e7a!important;border-color:#546e7a!important}.active\:bg-blue-grey-darken-1:active,.hover\:bg-blue-grey-darken-1:hover,[class*="hover:bg-"][class*="active:bg-blue-grey-darken-1"]:active{background:#546e7a!important;transition:background .1s}.text-blue-grey-darken-1{caret-color:#546e7a!important;color:#546e7a!important}.text-blue-grey-darken-1:hover:active:before{background:#546e7a!important;opacity:.3;transition:background .1s}.bg-blue-grey-darken-2{background-color:#455a64!important;border-color:#455a64!important}.active\:bg-blue-grey-darken-2:active,.hover\:bg-blue-grey-darken-2:hover,[class*="hover:bg-"][class*="active:bg-blue-grey-darken-2"]:active{background:#455a64!important;transition:background .1s}.text-blue-grey-darken-2{caret-color:#455a64!important;color:#455a64!important}.text-blue-grey-darken-2:hover:active:before{background:#455a64!important;opacity:.3;transition:background .1s}.bg-blue-grey-darken-3{background-color:#37474f!important;border-color:#37474f!important}.active\:bg-blue-grey-darken-3:active,.hover\:bg-blue-grey-darken-3:hover,[class*="hover:bg-"][class*="active:bg-blue-grey-darken-3"]:active{background:#37474f!important;transition:background .1s}.text-blue-grey-darken-3{caret-color:#37474f!important;color:#37474f!important}.text-blue-grey-darken-3:hover:active:before{background:#37474f!important;opacity:.3;transition:background .1s}.bg-blue-grey-darken-4{background-color:#263238!important;border-color:#263238!important}.active\:bg-blue-grey-darken-4:active,.hover\:bg-blue-grey-darken-4:hover,[class*="hover:bg-"][class*="active:bg-blue-grey-darken-4"]:active{background:#263238!important;transition:background .1s}.text-blue-grey-darken-4{caret-color:#263238!important;color:#263238!important}.text-blue-grey-darken-4:hover:active:before{background:#263238!important;opacity:.3;transition:background .1s}.bg-grey{background-color:#9e9e9e!important;border-color:#9e9e9e!important}.active\:bg-grey:active,.hover\:bg-grey:hover,[class*="hover:bg-"][class*="active:bg-grey"]:active{background:#9e9e9e!important;transition:background .1s}.text-grey{caret-color:#9e9e9e!important;color:#9e9e9e!important}.text-grey:hover:active:before{background:#9e9e9e!important;opacity:.3;transition:background .1s}.bg-grey-base{background-color:#9e9e9e!important;border-color:#9e9e9e!important}.active\:bg-grey-base:active,.hover\:bg-grey-base:hover,[class*="hover:bg-"][class*="active:bg-grey-base"]:active{background:#9e9e9e!important;transition:background .1s}.text-grey-base{caret-color:#9e9e9e!important;color:#9e9e9e!important}.text-grey-base:hover:active:before{background:#9e9e9e!important;opacity:.3;transition:background .1s}.bg-grey-lighten-5{background-color:#fafafa!important;border-color:#fafafa!important}.active\:bg-grey-lighten-5:active,.hover\:bg-grey-lighten-5:hover,[class*="hover:bg-"][class*="active:bg-grey-lighten-5"]:active{background:#fafafa!important;transition:background .1s}.text-grey-lighten-5{caret-color:#fafafa!important;color:#fafafa!important}.text-grey-lighten-5:hover:active:before{background:#fafafa!important;opacity:.3;transition:background .1s}.bg-grey-lighten-4{background-color:#f5f5f5!important;border-color:#f5f5f5!important}.active\:bg-grey-lighten-4:active,.hover\:bg-grey-lighten-4:hover,[class*="hover:bg-"][class*="active:bg-grey-lighten-4"]:active{background:#f5f5f5!important;transition:background .1s}.text-grey-lighten-4{caret-color:#f5f5f5!important;color:#f5f5f5!important}.text-grey-lighten-4:hover:active:before{background:#f5f5f5!important;opacity:.3;transition:background .1s}.bg-grey-lighten-3{background-color:#eee!important;border-color:#eee!important}.active\:bg-grey-lighten-3:active,.hover\:bg-grey-lighten-3:hover,[class*="hover:bg-"][class*="active:bg-grey-lighten-3"]:active{background:#eee!important;transition:background .1s}.text-grey-lighten-3{caret-color:#eee!important;color:#eee!important}.text-grey-lighten-3:hover:active:before{background:#eee!important;opacity:.3;transition:background .1s}.bg-grey-lighten-2{background-color:#e0e0e0!important;border-color:#e0e0e0!important}.active\:bg-grey-lighten-2:active,.hover\:bg-grey-lighten-2:hover,[class*="hover:bg-"][class*="active:bg-grey-lighten-2"]:active{background:#e0e0e0!important;transition:background .1s}.text-grey-lighten-2{caret-color:#e0e0e0!important;color:#e0e0e0!important}.text-grey-lighten-2:hover:active:before{background:#e0e0e0!important;opacity:.3;transition:background .1s}.bg-grey-lighten-1{background-color:#bdbdbd!important;border-color:#bdbdbd!important}.active\:bg-grey-lighten-1:active,.hover\:bg-grey-lighten-1:hover,[class*="hover:bg-"][class*="active:bg-grey-lighten-1"]:active{background:#bdbdbd!important;transition:background .1s}.text-grey-lighten-1{caret-color:#bdbdbd!important;color:#bdbdbd!important}.text-grey-lighten-1:hover:active:before{background:#bdbdbd!important;opacity:.3;transition:background .1s}.bg-grey-darken-1{background-color:#757575!important;border-color:#757575!important}.active\:bg-grey-darken-1:active,.hover\:bg-grey-darken-1:hover,[class*="hover:bg-"][class*="active:bg-grey-darken-1"]:active{background:#757575!important;transition:background .1s}.text-grey-darken-1{caret-color:#757575!important;color:#757575!important}.text-grey-darken-1:hover:active:before{background:#757575!important;opacity:.3;transition:background .1s}.bg-grey-darken-2{background-color:#616161!important;border-color:#616161!important}.active\:bg-grey-darken-2:active,.hover\:bg-grey-darken-2:hover,[class*="hover:bg-"][class*="active:bg-grey-darken-2"]:active{background:#616161!important;transition:background .1s}.text-grey-darken-2{caret-color:#616161!important;color:#616161!important}.text-grey-darken-2:hover:active:before{background:#616161!important;opacity:.3;transition:background .1s}.bg-grey-darken-3{background-color:#424242!important;border-color:#424242!important}.active\:bg-grey-darken-3:active,.hover\:bg-grey-darken-3:hover,[class*="hover:bg-"][class*="active:bg-grey-darken-3"]:active{background:#424242!important;transition:background .1s}.text-grey-darken-3{caret-color:#424242!important;color:#424242!important}.text-grey-darken-3:hover:active:before{background:#424242!important;opacity:.3;transition:background .1s}.bg-grey-darken-4{background-color:#212121!important;border-color:#212121!important}.active\:bg-grey-darken-4:active,.hover\:bg-grey-darken-4:hover,[class*="hover:bg-"][class*="active:bg-grey-darken-4"]:active{background:#212121!important;transition:background .1s}.text-grey-darken-4{caret-color:#212121!important;color:#212121!important}.text-grey-darken-4:hover:active:before{background:#212121!important;opacity:.3;transition:background .1s}.bg-white{background-color:#fff!important;border-color:#fff!important}.active\:bg-white:active,.hover\:bg-white:hover,[class*="hover:bg-"][class*="active:bg-white"]:active{background:#fff!important;transition:background .1s}.text-white{caret-color:#fff!important;color:#fff!important}.text-white:hover:active:before{background:#fff!important;opacity:.3;transition:background .1s}.bg-white-base{background-color:#fff!important;border-color:#fff!important}.active\:bg-white-base:active,.hover\:bg-white-base:hover,[class*="hover:bg-"][class*="active:bg-white-base"]:active{background:#fff!important;transition:background .1s}.text-white-base{caret-color:#fff!important;color:#fff!important}.text-white-base:hover:active:before{background:#fff!important;opacity:.3;transition:background .1s}.bg-black{background-color:#000!important;border-color:#000!important}.active\:bg-black:active,.hover\:bg-black:hover,[class*="hover:bg-"][class*="active:bg-black"]:active{background:#000!important;transition:background .1s}.text-black{caret-color:#000!important;color:#000!important}.text-black:hover:active:before{background:#000!important;opacity:.3;transition:background .1s}.bg-black-base{background-color:#000!important;border-color:#000!important}.active\:bg-black-base:active,.hover\:bg-black-base:hover,[class*="hover:bg-"][class*="active:bg-black-base"]:active{background:#000!important;transition:background .1s}.text-black-base{caret-color:#000!important;color:#000!important}.text-black-base:hover:active:before{background:#000!important;opacity:.3;transition:background .1s}
|