@alfresco/adf-core 8.1.0-14489297497 → 8.1.0-14491540427
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/api/lib/alfresco-api/alfresco-api.utils.d.ts +1 -1
- package/breadcrumbs/styles/_breadcrumb.theme.scss +4 -4
- package/custom-theme/material-theme.scss +7 -4
- package/custom-theme/theme/custom-theme-palettes.scss +12 -8
- package/custom-theme/theme/typography.scss +26 -26
- package/esm2022/adf-core.mjs +5 -0
- package/esm2022/api/alfresco-adf-core-api.mjs +5 -0
- package/esm2022/api/index.mjs +20 -0
- package/esm2022/api/lib/adf-http-client.service.mjs +311 -0
- package/esm2022/api/lib/alfresco-api/alfresco-api.param-encoder.mjs +33 -0
- package/esm2022/api/lib/alfresco-api/alfresco-api.response-error.mjs +25 -0
- package/esm2022/api/lib/alfresco-api/alfresco-api.utils.mjs +80 -0
- package/esm2022/api/lib/interfaces.mjs +18 -0
- package/esm2022/api/lib/types.mjs +18 -0
- package/esm2022/auth/alfresco-adf-core-auth.mjs +5 -0
- package/esm2022/auth/authentication-interceptor/authentication.interceptor.mjs +56 -0
- package/esm2022/auth/authentication.mjs +19 -0
- package/esm2022/auth/index.mjs +19 -0
- package/esm2022/breadcrumbs/alfresco-adf-core-breadcrumbs.mjs +5 -0
- package/esm2022/breadcrumbs/components/breadcrumb/breadcrumb.component.mjs +83 -0
- package/esm2022/breadcrumbs/components/breadcrumb-item/breadcrumb-item.component.mjs +42 -0
- package/esm2022/breadcrumbs/directives/breadcrumb-focus.directive.mjs +44 -0
- package/esm2022/breadcrumbs/index.mjs +19 -0
- package/esm2022/feature-flags/alfresco-adf-core-feature-flags.mjs +5 -0
- package/esm2022/feature-flags/index.mjs +29 -0
- package/esm2022/feature-flags/lib/components/feature-flags-wrapper.mjs +36 -0
- package/esm2022/feature-flags/lib/components/feature-override-indicator.component.mjs +56 -0
- package/esm2022/feature-flags/lib/components/flags/flags.component.mjs +130 -0
- package/esm2022/feature-flags/lib/directives/features.directive.mjs +63 -0
- package/esm2022/feature-flags/lib/directives/not-features.directive.mjs +63 -0
- package/esm2022/feature-flags/lib/guards/is-feature-off.guard.mjs +38 -0
- package/esm2022/feature-flags/lib/guards/is-feature-on.guard.mjs +38 -0
- package/esm2022/feature-flags/lib/guards/is-flags-override-on.guard.mjs +40 -0
- package/esm2022/feature-flags/lib/interfaces/features.interface.mjs +24 -0
- package/esm2022/feature-flags/lib/mocks/features-service-mock.factory.mjs +62 -0
- package/esm2022/feature-flags/lib/providers/debug-feature-flags.provider.mjs +51 -0
- package/esm2022/feature-flags/lib/providers/dummy-feature-flags.provider.mjs +36 -0
- package/esm2022/feature-flags/lib/services/debug-features.service.mjs +84 -0
- package/esm2022/feature-flags/lib/services/dummy-features.service.mjs +40 -0
- package/esm2022/feature-flags/lib/services/flagset.parser.mjs +38 -0
- package/esm2022/feature-flags/lib/services/qa-features.helper.mjs +62 -0
- package/esm2022/feature-flags/lib/services/storage-features.service.mjs +121 -0
- package/esm2022/lib/about/about-extension-list/about-extension-list.component.mjs +52 -0
- package/esm2022/lib/about/about-license-list/about-license-list.component.mjs +52 -0
- package/esm2022/lib/about/about-module-list/module-list.component.mjs +52 -0
- package/esm2022/lib/about/about-package/package-list.component.mjs +66 -0
- package/esm2022/lib/about/about-panel.directive.mjs +37 -0
- package/esm2022/lib/about/about-repository-info/about-repository-info.component.mjs +60 -0
- package/esm2022/lib/about/about-repository-info/repository-info.interface.mjs +18 -0
- package/esm2022/lib/about/about-server-settings/about-server-settings.component.mjs +43 -0
- package/esm2022/lib/about/about-status-list/about-status-list.component.mjs +52 -0
- package/esm2022/lib/about/about.component.mjs +35 -0
- package/esm2022/lib/about/about.module.mjs +75 -0
- package/esm2022/lib/about/index.mjs +18 -0
- package/esm2022/lib/about/interfaces.mjs +18 -0
- package/esm2022/lib/about/public-api.mjs +28 -0
- package/esm2022/lib/app-config/app-config-storage-prefix.factory.mjs +51 -0
- package/esm2022/lib/app-config/app-config.loader.mjs +37 -0
- package/esm2022/lib/app-config/app-config.module.mjs +33 -0
- package/esm2022/lib/app-config/app-config.pipe.mjs +38 -0
- package/esm2022/lib/app-config/app-config.service.mjs +243 -0
- package/esm2022/lib/app-config/debug-app-config.service.mjs +44 -0
- package/esm2022/lib/app-config/index.mjs +18 -0
- package/esm2022/lib/app-config/public-api.mjs +22 -0
- package/esm2022/lib/auth/authentication-interceptor/auth-bearer.interceptor.mjs +67 -0
- package/esm2022/lib/auth/basic-auth/basic-alfresco-auth.service.mjs +356 -0
- package/esm2022/lib/auth/basic-auth/content-auth.mjs +189 -0
- package/esm2022/lib/auth/basic-auth/process-auth.mjs +193 -0
- package/esm2022/lib/auth/guard/auth-guard-bpm.service.mjs +31 -0
- package/esm2022/lib/auth/guard/auth-guard-ecm.service.mjs +31 -0
- package/esm2022/lib/auth/guard/auth-guard-sso-role.service.mjs +57 -0
- package/esm2022/lib/auth/guard/auth-guard.mjs +53 -0
- package/esm2022/lib/auth/guard/auth-guard.service.mjs +113 -0
- package/esm2022/lib/auth/index.mjs +18 -0
- package/esm2022/lib/auth/interfaces/authentication-service.interface.mjs +18 -0
- package/esm2022/lib/auth/interfaces/authentication.interface.mjs +18 -0
- package/esm2022/lib/auth/interfaces/identity-group.interface.mjs +18 -0
- package/esm2022/lib/auth/interfaces/identity-user.service.interface.mjs +18 -0
- package/esm2022/lib/auth/interfaces/openid-configuration.interface.mjs +18 -0
- package/esm2022/lib/auth/models/application-access.model.mjs +18 -0
- package/esm2022/lib/auth/models/identity-group.model.mjs +18 -0
- package/esm2022/lib/auth/models/identity-role.model.mjs +30 -0
- package/esm2022/lib/auth/models/identity-user.model.mjs +18 -0
- package/esm2022/lib/auth/models/oauth-config.model.mjs +18 -0
- package/esm2022/lib/auth/models/redirection.model.mjs +28 -0
- package/esm2022/lib/auth/models/user-access.model.mjs +18 -0
- package/esm2022/lib/auth/oidc/auth-config.mjs +19 -0
- package/esm2022/lib/auth/oidc/auth-config.service.mjs +110 -0
- package/esm2022/lib/auth/oidc/auth-routing.module.mjs +34 -0
- package/esm2022/lib/auth/oidc/auth.module.mjs +112 -0
- package/esm2022/lib/auth/oidc/auth.service.mjs +22 -0
- package/esm2022/lib/auth/oidc/oidc-auth.guard.mjs +37 -0
- package/esm2022/lib/auth/oidc/oidc-authentication.service.mjs +202 -0
- package/esm2022/lib/auth/oidc/public-api.mjs +24 -0
- package/esm2022/lib/auth/oidc/redirect-auth.service.mjs +267 -0
- package/esm2022/lib/auth/oidc/retry-login.service.mjs +66 -0
- package/esm2022/lib/auth/oidc/token.interceptor.mjs +62 -0
- package/esm2022/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.mjs +31 -0
- package/esm2022/lib/auth/public-api.mjs +44 -0
- package/esm2022/lib/auth/services/authentication.service.mjs +190 -0
- package/esm2022/lib/auth/services/base-authentication.service.mjs +99 -0
- package/esm2022/lib/auth/services/identity-group.service.mjs +269 -0
- package/esm2022/lib/auth/services/identity-role.service.mjs +99 -0
- package/esm2022/lib/auth/services/identity-user.service.mjs +443 -0
- package/esm2022/lib/auth/services/jwt-helper.service.mjs +205 -0
- package/esm2022/lib/auth/services/oauth2.service.mjs +69 -0
- package/esm2022/lib/auth/services/time-sync.service.mjs +83 -0
- package/esm2022/lib/auth/services/user-access.service.mjs +110 -0
- package/esm2022/lib/avatar/avatar.component.mjs +51 -0
- package/esm2022/lib/blank-page/blank-page.component.mjs +31 -0
- package/esm2022/lib/blank-page/blank-page.module.mjs +33 -0
- package/esm2022/lib/blank-page/index.mjs +18 -0
- package/esm2022/lib/blank-page/public-api.mjs +19 -0
- package/esm2022/lib/button/button.component.mjs +61 -0
- package/esm2022/lib/card-view/card-view.module.mjs +80 -0
- package/esm2022/lib/card-view/components/base-card-view.mjs +51 -0
- package/esm2022/lib/card-view/components/card-view/card-view.component.mjs +66 -0
- package/esm2022/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.mjs +56 -0
- package/esm2022/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.mjs +40 -0
- package/esm2022/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.mjs +177 -0
- package/esm2022/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.mjs +108 -0
- package/esm2022/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.mjs +65 -0
- package/esm2022/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.mjs +47 -0
- package/esm2022/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.mjs +138 -0
- package/esm2022/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.mjs +114 -0
- package/esm2022/lib/card-view/components/card-view-textitem/card-view-textitem.component.mjs +240 -0
- package/esm2022/lib/card-view/components/card-view.components.mjs +28 -0
- package/esm2022/lib/card-view/index.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/base-card-view-update.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-arrayitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-boolitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-dateitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-item-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-item-validator.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-item.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-keyvaluepairsitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-selectitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-textitem-pipe-property.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-textitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view.interfaces.mjs +29 -0
- package/esm2022/lib/card-view/interfaces/click-notification.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/update-notification.interface.mjs +18 -0
- package/esm2022/lib/card-view/models/card-view-arrayitem.model.mjs +28 -0
- package/esm2022/lib/card-view/models/card-view-baseitem.model.mjs +64 -0
- package/esm2022/lib/card-view/models/card-view-boolitem.model.mjs +36 -0
- package/esm2022/lib/card-view/models/card-view-dateitem.model.mjs +58 -0
- package/esm2022/lib/card-view/models/card-view-datetimeitem.model.mjs +28 -0
- package/esm2022/lib/card-view/models/card-view-floatitem.model.mjs +33 -0
- package/esm2022/lib/card-view/models/card-view-intitem.model.mjs +36 -0
- package/esm2022/lib/card-view/models/card-view-keyvaluepairs.model.mjs +27 -0
- package/esm2022/lib/card-view/models/card-view-longitem.model.mjs +36 -0
- package/esm2022/lib/card-view/models/card-view-mapitem.model.mjs +32 -0
- package/esm2022/lib/card-view/models/card-view-selectitem.model.mjs +41 -0
- package/esm2022/lib/card-view/models/card-view-textitem.model.mjs +40 -0
- package/esm2022/lib/card-view/models/card-view.models.mjs +29 -0
- package/esm2022/lib/card-view/public-api.mjs +25 -0
- package/esm2022/lib/card-view/services/card-item-types.service.mjs +54 -0
- package/esm2022/lib/card-view/services/card-view-update.service.mjs +59 -0
- package/esm2022/lib/card-view/services/card-view.services.mjs +19 -0
- package/esm2022/lib/card-view/validators/card-view-item-float.validator.mjs +31 -0
- package/esm2022/lib/card-view/validators/card-view-item-int.validator.mjs +35 -0
- package/esm2022/lib/card-view/validators/card-view-item-length.validator.mjs +34 -0
- package/esm2022/lib/card-view/validators/card-view-item-long.validator.mjs +35 -0
- package/esm2022/lib/card-view/validators/card-view-item-match.validator.mjs +35 -0
- package/esm2022/lib/card-view/validators/card-view-item-minmax.validator.mjs +35 -0
- package/esm2022/lib/card-view/validators/card-view-item-only-positive-int.validator.mjs +32 -0
- package/esm2022/lib/card-view/validators/card-view-item-only-positive-long.validator.mjs +31 -0
- package/esm2022/lib/card-view/validators/card-view.validators.mjs +26 -0
- package/esm2022/lib/card-view/validators/validators.map.mjs +26 -0
- package/esm2022/lib/clipboard/clipboard.directive.mjs +99 -0
- package/esm2022/lib/clipboard/clipboard.module.mjs +34 -0
- package/esm2022/lib/clipboard/clipboard.service.mjs +103 -0
- package/esm2022/lib/clipboard/index.mjs +18 -0
- package/esm2022/lib/clipboard/public-api.mjs +21 -0
- package/esm2022/lib/comments/comment-list/comment-list.component.mjs +53 -0
- package/esm2022/lib/comments/comment-list/comment-list.module.mjs +33 -0
- package/esm2022/lib/comments/comment-list/index.mjs +18 -0
- package/esm2022/lib/comments/comment-list/public-api.mjs +19 -0
- package/esm2022/lib/comments/comments.component.mjs +128 -0
- package/esm2022/lib/comments/comments.module.mjs +33 -0
- package/esm2022/lib/comments/index.mjs +18 -0
- package/esm2022/lib/comments/interfaces/comments-service.interface.mjs +18 -0
- package/esm2022/lib/comments/interfaces/comments.token.mjs +19 -0
- package/esm2022/lib/comments/public-api.mjs +22 -0
- package/esm2022/lib/common/index.mjs +35 -0
- package/esm2022/lib/common/interface/search-component.interface.mjs +18 -0
- package/esm2022/lib/common/mock/app-config.service.mock.mjs +47 -0
- package/esm2022/lib/common/models/default-languages.model.mjs +36 -0
- package/esm2022/lib/common/models/log-levels.model.mjs +33 -0
- package/esm2022/lib/common/models/user-info-mode.enum.mjs +25 -0
- package/esm2022/lib/common/services/cookie.service.mjs +82 -0
- package/esm2022/lib/common/services/download.service.mjs +102 -0
- package/esm2022/lib/common/services/dynamic-component-mapper.service.mjs +89 -0
- package/esm2022/lib/common/services/highlight-transform.service.mjs +61 -0
- package/esm2022/lib/common/services/language-item.interface.mjs +18 -0
- package/esm2022/lib/common/services/log.service.mjs +171 -0
- package/esm2022/lib/common/services/page-title.service.mjs +63 -0
- package/esm2022/lib/common/services/sort-by-category.service.mjs +81 -0
- package/esm2022/lib/common/services/storage.service.mjs +143 -0
- package/esm2022/lib/common/services/thumbnail.service.mjs +194 -0
- package/esm2022/lib/common/services/url.service.mjs +45 -0
- package/esm2022/lib/common/services/user-preferences.service.mjs +238 -0
- package/esm2022/lib/common/utils/date-fns-adapter.mjs +115 -0
- package/esm2022/lib/common/utils/date-fns-utils.mjs +222 -0
- package/esm2022/lib/common/utils/datetime-fns-adapter.mjs +134 -0
- package/esm2022/lib/common/utils/file-utils.mjs +65 -0
- package/esm2022/lib/common/utils/index.mjs +18 -0
- package/esm2022/lib/common/utils/moment-date-adapter.mjs +202 -0
- package/esm2022/lib/common/utils/moment-date-formats.model.mjs +32 -0
- package/esm2022/lib/common/utils/object-utils.mjs +107 -0
- package/esm2022/lib/common/utils/public-api.mjs +25 -0
- package/esm2022/lib/common/utils/string-utils.mjs +45 -0
- package/esm2022/lib/context-menu/animations.mjs +33 -0
- package/esm2022/lib/context-menu/context-menu-list.component.mjs +92 -0
- package/esm2022/lib/context-menu/context-menu-overlay.mjs +25 -0
- package/esm2022/lib/context-menu/context-menu-overlay.service.mjs +109 -0
- package/esm2022/lib/context-menu/context-menu.directive.mjs +63 -0
- package/esm2022/lib/context-menu/context-menu.module.mjs +35 -0
- package/esm2022/lib/context-menu/context-menu.tokens.mjs +19 -0
- package/esm2022/lib/context-menu/index.mjs +18 -0
- package/esm2022/lib/context-menu/interfaces.mjs +18 -0
- package/esm2022/lib/context-menu/public-api.mjs +21 -0
- package/esm2022/lib/core.module.mjs +314 -0
- package/esm2022/lib/datatable/components/amount-cell/amount-cell.component.mjs +45 -0
- package/esm2022/lib/datatable/components/boolean-cell/boolean-cell.component.mjs +65 -0
- package/esm2022/lib/datatable/components/columns-selector/columns-search-filter.pipe.mjs +55 -0
- package/esm2022/lib/datatable/components/columns-selector/columns-selector.component.mjs +114 -0
- package/esm2022/lib/datatable/components/data-cell.event.mjs +31 -0
- package/esm2022/lib/datatable/components/data-row-action.event.mjs +34 -0
- package/esm2022/lib/datatable/components/datatable/datatable.component.mjs +915 -0
- package/esm2022/lib/datatable/components/datatable-cell/datatable-cell.component.mjs +126 -0
- package/esm2022/lib/datatable/components/datatable-row/datatable-row.component.mjs +98 -0
- package/esm2022/lib/datatable/components/date-cell/date-cell.component.mjs +78 -0
- package/esm2022/lib/datatable/components/empty-list/empty-list.component.mjs +60 -0
- package/esm2022/lib/datatable/components/filesize-cell/filesize-cell.component.mjs +49 -0
- package/esm2022/lib/datatable/components/icon-cell/icon-cell.component.mjs +67 -0
- package/esm2022/lib/datatable/components/json-cell/json-cell.component.mjs +86 -0
- package/esm2022/lib/datatable/components/location-cell/location-cell.component.mjs +69 -0
- package/esm2022/lib/datatable/components/mocks/datatable.mock.mjs +153 -0
- package/esm2022/lib/datatable/components/number-cell/number-cell.component.mjs +42 -0
- package/esm2022/lib/datatable/data/data-column.model.mjs +18 -0
- package/esm2022/lib/datatable/data/data-row-event.model.mjs +26 -0
- package/esm2022/lib/datatable/data/data-row-update.model.mjs +18 -0
- package/esm2022/lib/datatable/data/data-row.model.mjs +18 -0
- package/esm2022/lib/datatable/data/data-sorting.model.mjs +24 -0
- package/esm2022/lib/datatable/data/data-table.schema.mjs +132 -0
- package/esm2022/lib/datatable/data/datatable-adapter.mjs +18 -0
- package/esm2022/lib/datatable/data/object-datacolumn.model.mjs +46 -0
- package/esm2022/lib/datatable/data/object-datarow.model.mjs +38 -0
- package/esm2022/lib/datatable/data/object-datatable-adapter.mjs +134 -0
- package/esm2022/lib/datatable/data-column/data-column-header.component.mjs +45 -0
- package/esm2022/lib/datatable/data-column/data-column-list.component.mjs +36 -0
- package/esm2022/lib/datatable/data-column/data-column.component.mjs +114 -0
- package/esm2022/lib/datatable/data-column/index.mjs +18 -0
- package/esm2022/lib/datatable/data-column/public-api.mjs +20 -0
- package/esm2022/lib/datatable/datatable.module.mjs +161 -0
- package/esm2022/lib/datatable/directives/custom-empty-content-template.directive.mjs +35 -0
- package/esm2022/lib/datatable/directives/custom-loading-template.directive.mjs +30 -0
- package/esm2022/lib/datatable/directives/custom-no-permission-template.directive.mjs +35 -0
- package/esm2022/lib/datatable/directives/drop-zone.directive.mjs +89 -0
- package/esm2022/lib/datatable/directives/header-filter-template.directive.mjs +43 -0
- package/esm2022/lib/datatable/directives/loading-template.directive.mjs +46 -0
- package/esm2022/lib/datatable/directives/main-data-table-action-template.directive.mjs +43 -0
- package/esm2022/lib/datatable/directives/no-content-template.directive.mjs +46 -0
- package/esm2022/lib/datatable/directives/no-permission-template.directive.mjs +46 -0
- package/esm2022/lib/datatable/directives/resizable/resizable.directive.mjs +173 -0
- package/esm2022/lib/datatable/directives/resizable/resize-handle.directive.mjs +72 -0
- package/esm2022/lib/datatable/directives/resizable/types.mjs +18 -0
- package/esm2022/lib/datatable/index.mjs +18 -0
- package/esm2022/lib/datatable/public-api.mjs +55 -0
- package/esm2022/lib/datatable/services/datatable.service.mjs +33 -0
- package/esm2022/lib/dialogs/confirm-dialog/confirm.dialog.mjs +50 -0
- package/esm2022/lib/dialogs/confirm-dialog/confirm.dialog.module.mjs +38 -0
- package/esm2022/lib/dialogs/dialog/dialog-data.interface.mjs +18 -0
- package/esm2022/lib/dialogs/dialog/dialog.component.mjs +71 -0
- package/esm2022/lib/dialogs/dialog/dialog.model.mjs +22 -0
- package/esm2022/lib/dialogs/dialog/index.mjs +20 -0
- package/esm2022/lib/dialogs/edit-json/edit-json.dialog.mjs +51 -0
- package/esm2022/lib/dialogs/edit-json/edit-json.dialog.module.mjs +38 -0
- package/esm2022/lib/dialogs/index.mjs +18 -0
- package/esm2022/lib/dialogs/public-api.mjs +25 -0
- package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.component.mjs +74 -0
- package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.model.mjs +18 -0
- package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.module.mjs +33 -0
- package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes.guard.mjs +64 -0
- package/esm2022/lib/directives/directive.module.mjs +56 -0
- package/esm2022/lib/directives/highlight.directive.mjs +67 -0
- package/esm2022/lib/directives/index.mjs +18 -0
- package/esm2022/lib/directives/infinite-select-scroll.directive.mjs +67 -0
- package/esm2022/lib/directives/logout.directive.mjs +72 -0
- package/esm2022/lib/directives/public-api.mjs +24 -0
- package/esm2022/lib/directives/tooltip-card/tooltip-card.component.mjs +60 -0
- package/esm2022/lib/directives/tooltip-card/tooltip-card.directive.mjs +104 -0
- package/esm2022/lib/directives/upload.directive.mjs +241 -0
- package/esm2022/lib/dynamic-chip-list/chip.mjs +18 -0
- package/esm2022/lib/dynamic-chip-list/dynamic-chip-list.component.mjs +205 -0
- package/esm2022/lib/dynamic-chip-list/dynamic-chip-list.module.mjs +33 -0
- package/esm2022/lib/dynamic-chip-list/index.mjs +18 -0
- package/esm2022/lib/dynamic-chip-list/public-api.mjs +20 -0
- package/esm2022/lib/events/base-ui.event.mjs +21 -0
- package/esm2022/lib/events/base.event.mjs +29 -0
- package/esm2022/lib/events/index.mjs +18 -0
- package/esm2022/lib/events/public-api.mjs +19 -0
- package/esm2022/lib/form/components/form-base.component.mjs +229 -0
- package/esm2022/lib/form/components/form-custom-button.directive.mjs +30 -0
- package/esm2022/lib/form/components/form-field/form-field.component.mjs +142 -0
- package/esm2022/lib/form/components/form-renderer.component.mjs +171 -0
- package/esm2022/lib/form/components/form-section/form-section.component.mjs +46 -0
- package/esm2022/lib/form/components/inplace-form-input/inplace-form-input.component.mjs +37 -0
- package/esm2022/lib/form/components/middlewares/decimal-middleware.service.mjs +48 -0
- package/esm2022/lib/form/components/middlewares/middleware.mjs +19 -0
- package/esm2022/lib/form/components/widgets/amount/amount.widget.mjs +78 -0
- package/esm2022/lib/form/components/widgets/base-viewer/base-viewer.widget.mjs +60 -0
- package/esm2022/lib/form/components/widgets/checkbox/checkbox.widget.mjs +53 -0
- package/esm2022/lib/form/components/widgets/core/container-column.model.mjs +28 -0
- package/esm2022/lib/form/components/widgets/core/container.model.mjs +50 -0
- package/esm2022/lib/form/components/widgets/core/content-link.model.mjs +52 -0
- package/esm2022/lib/form/components/widgets/core/displayable-cm-properties.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/error-message.model.mjs +38 -0
- package/esm2022/lib/form/components/widgets/core/external-content-link.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/external-content.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-file-source.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-metadata.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-option.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-rule.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-selected-folder.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-templates.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-types.mjs +74 -0
- package/esm2022/lib/form/components/widgets/core/form-field-utils.mjs +23 -0
- package/esm2022/lib/form/components/widgets/core/form-field-validator.mjs +268 -0
- package/esm2022/lib/form/components/widgets/core/form-field-variable-options.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field.model.mjs +482 -0
- package/esm2022/lib/form/components/widgets/core/form-outcome-event.model.mjs +32 -0
- package/esm2022/lib/form/components/widgets/core/form-outcome.model.mjs +38 -0
- package/esm2022/lib/form/components/widgets/core/form-values.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-variable.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-widget.model.mjs +33 -0
- package/esm2022/lib/form/components/widgets/core/form.model.mjs +384 -0
- package/esm2022/lib/form/components/widgets/core/group.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/index.mjs +49 -0
- package/esm2022/lib/form/components/widgets/core/predefined-theme.mjs +115 -0
- package/esm2022/lib/form/components/widgets/core/process-form-model.interface.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/process-variable.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/tab.model.mjs +34 -0
- package/esm2022/lib/form/components/widgets/core/theme.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/upload-widget-content-link.model.mjs +27 -0
- package/esm2022/lib/form/components/widgets/core/widget-schema.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/date/date.widget.mjs +163 -0
- package/esm2022/lib/form/components/widgets/date-time/date-time.widget.mjs +154 -0
- package/esm2022/lib/form/components/widgets/decimal/decimal.component.mjs +54 -0
- package/esm2022/lib/form/components/widgets/display-text/display-text.schema.mjs +86 -0
- package/esm2022/lib/form/components/widgets/display-text/display-text.widget.mjs +47 -0
- package/esm2022/lib/form/components/widgets/display-text/index.mjs +19 -0
- package/esm2022/lib/form/components/widgets/error/error.component.mjs +93 -0
- package/esm2022/lib/form/components/widgets/header/header.schema.mjs +86 -0
- package/esm2022/lib/form/components/widgets/header/header.widget.mjs +43 -0
- package/esm2022/lib/form/components/widgets/header/index.mjs +19 -0
- package/esm2022/lib/form/components/widgets/hyperlink/hyperlink.widget.mjs +71 -0
- package/esm2022/lib/form/components/widgets/index.mjs +71 -0
- package/esm2022/lib/form/components/widgets/json/json.widget.mjs +67 -0
- package/esm2022/lib/form/components/widgets/multiline-text/multiline-text.widget.mjs +56 -0
- package/esm2022/lib/form/components/widgets/number/number.widget.mjs +66 -0
- package/esm2022/lib/form/components/widgets/reactive-widget.interface.mjs +18 -0
- package/esm2022/lib/form/components/widgets/text/text-mask.component.mjs +215 -0
- package/esm2022/lib/form/components/widgets/text/text.widget.mjs +66 -0
- package/esm2022/lib/form/components/widgets/unknown/unknown.widget.mjs +63 -0
- package/esm2022/lib/form/components/widgets/widget.component.mjs +110 -0
- package/esm2022/lib/form/events/form-error.event.mjs +24 -0
- package/esm2022/lib/form/events/form-field.event.mjs +24 -0
- package/esm2022/lib/form/events/form-rules.event.mjs +25 -0
- package/esm2022/lib/form/events/form-spinner.event.mjs +23 -0
- package/esm2022/lib/form/events/form.event.mjs +29 -0
- package/esm2022/lib/form/events/index.mjs +24 -0
- package/esm2022/lib/form/events/validate-form-field.event.mjs +24 -0
- package/esm2022/lib/form/events/validate-form.event.mjs +25 -0
- package/esm2022/lib/form/form-base.module.mjs +90 -0
- package/esm2022/lib/form/index.mjs +18 -0
- package/esm2022/lib/form/models/form-rules.model.mjs +77 -0
- package/esm2022/lib/form/models/task-process-variable.model.mjs +19 -0
- package/esm2022/lib/form/models/widget-visibility.model.mjs +104 -0
- package/esm2022/lib/form/pipes/field-style.pipe.mjs +45 -0
- package/esm2022/lib/form/pipes/index.mjs +18 -0
- package/esm2022/lib/form/public-api.mjs +34 -0
- package/esm2022/lib/form/services/form-rendering.service.mjs +53 -0
- package/esm2022/lib/form/services/form-validation-service.interface.mjs +18 -0
- package/esm2022/lib/form/services/form.service.mjs +86 -0
- package/esm2022/lib/form/services/widget-visibility.service.mjs +294 -0
- package/esm2022/lib/header/header.component.mjs +73 -0
- package/esm2022/lib/header/index.mjs +18 -0
- package/esm2022/lib/header/navbar/navbar-item.component.mjs +37 -0
- package/esm2022/lib/header/navbar/navbar.component.mjs +36 -0
- package/esm2022/lib/header/public-api.mjs +20 -0
- package/esm2022/lib/icon/icon.component.mjs +51 -0
- package/esm2022/lib/icon/icon.module.mjs +36 -0
- package/esm2022/lib/icon/index.mjs +18 -0
- package/esm2022/lib/icon/public-api.mjs +19 -0
- package/esm2022/lib/identity-user-info/identity-user-info.component.mjs +87 -0
- package/esm2022/lib/identity-user-info/identity-user-info.module.mjs +33 -0
- package/esm2022/lib/identity-user-info/index.mjs +18 -0
- package/esm2022/lib/identity-user-info/public-api.mjs +19 -0
- package/esm2022/lib/info-drawer/index.mjs +18 -0
- package/esm2022/lib/info-drawer/info-drawer-layout.component.mjs +71 -0
- package/esm2022/lib/info-drawer/info-drawer.component.mjs +114 -0
- package/esm2022/lib/info-drawer/info-drawer.module.mjs +53 -0
- package/esm2022/lib/info-drawer/public-api.mjs +20 -0
- package/esm2022/lib/interface/index.mjs +18 -0
- package/esm2022/lib/interface/injection.tokens.mjs +19 -0
- package/esm2022/lib/interface/public-api.mjs +18 -0
- package/esm2022/lib/language-menu/index.mjs +18 -0
- package/esm2022/lib/language-menu/language-menu.component.mjs +61 -0
- package/esm2022/lib/language-menu/language-menu.module.mjs +35 -0
- package/esm2022/lib/language-menu/language-picker.component.mjs +78 -0
- package/esm2022/lib/language-menu/public-api.mjs +21 -0
- package/esm2022/lib/language-menu/service/language.service.interface.mjs +18 -0
- package/esm2022/lib/language-menu/service/language.service.mjs +34 -0
- package/esm2022/lib/layout/components/header/header.component.mjs +100 -0
- package/esm2022/lib/layout/components/layout-container/layout-container.component.mjs +180 -0
- package/esm2022/lib/layout/components/sidebar-action/sidebar-action-menu.component.mjs +82 -0
- package/esm2022/lib/layout/components/sidenav-layout/sidenav-layout.component.mjs +145 -0
- package/esm2022/lib/layout/directives/sidenav-layout-content.directive.mjs +33 -0
- package/esm2022/lib/layout/directives/sidenav-layout-header.directive.mjs +33 -0
- package/esm2022/lib/layout/directives/sidenav-layout-navigation.directive.mjs +33 -0
- package/esm2022/lib/layout/index.mjs +18 -0
- package/esm2022/lib/layout/layout.module.mjs +72 -0
- package/esm2022/lib/layout/public-api.mjs +25 -0
- package/esm2022/lib/login/components/login/login.component.mjs +368 -0
- package/esm2022/lib/login/components/login-dialog/login-dialog-component-data.interface.mjs +18 -0
- package/esm2022/lib/login/components/login-dialog/login-dialog.component.mjs +58 -0
- package/esm2022/lib/login/components/login-dialog-panel/login-dialog-panel.component.mjs +48 -0
- package/esm2022/lib/login/directives/login-footer.directive.mjs +41 -0
- package/esm2022/lib/login/directives/login-header.directive.mjs +41 -0
- package/esm2022/lib/login/index.mjs +18 -0
- package/esm2022/lib/login/login.module.mjs +54 -0
- package/esm2022/lib/login/models/login-error.event.mjs +22 -0
- package/esm2022/lib/login/models/login-submit.event.mjs +32 -0
- package/esm2022/lib/login/models/login-success.event.mjs +24 -0
- package/esm2022/lib/login/public-api.mjs +27 -0
- package/esm2022/lib/material.module.mjs +254 -0
- package/esm2022/lib/mock/cookie.service.mock.mjs +43 -0
- package/esm2022/lib/mock/data-column.mock.mjs +73 -0
- package/esm2022/lib/mock/event.mock.mjs +39 -0
- package/esm2022/lib/mock/form/form-definition-readonly.mock.mjs +225 -0
- package/esm2022/lib/mock/form/form-definition-visibility.mock.mjs +347 -0
- package/esm2022/lib/mock/form/form-definition.mock.mjs +403 -0
- package/esm2022/lib/mock/form/form.component.mock.mjs +275 -0
- package/esm2022/lib/mock/form/form.service.mock.mjs +248 -0
- package/esm2022/lib/mock/form/widget-visibility.service.mock.mjs +1835 -0
- package/esm2022/lib/mock/index.mjs +18 -0
- package/esm2022/lib/mock/public-api.mjs +27 -0
- package/esm2022/lib/mock/translation.service.mock.mjs +44 -0
- package/esm2022/lib/models/comment.model.mjs +51 -0
- package/esm2022/lib/models/component.model.mjs +24 -0
- package/esm2022/lib/models/decimal-number.model.mjs +26 -0
- package/esm2022/lib/models/general-user.model.mjs +24 -0
- package/esm2022/lib/models/index.mjs +18 -0
- package/esm2022/lib/models/pagination.model.mjs +29 -0
- package/esm2022/lib/models/path.model.mjs +24 -0
- package/esm2022/lib/models/product-version.model.mjs +28 -0
- package/esm2022/lib/models/public-api.mjs +24 -0
- package/esm2022/lib/models/request-pagination.model.mjs +25 -0
- package/esm2022/lib/notifications/components/add-notification.stories.component.mjs +44 -0
- package/esm2022/lib/notifications/components/notification-history.component.mjs +139 -0
- package/esm2022/lib/notifications/helpers/notification.factory.mjs +43 -0
- package/esm2022/lib/notifications/index.mjs +18 -0
- package/esm2022/lib/notifications/models/notification.model.mjs +25 -0
- package/esm2022/lib/notifications/notification-history.module.mjs +35 -0
- package/esm2022/lib/notifications/public-api.mjs +23 -0
- package/esm2022/lib/notifications/services/notification.service.mjs +166 -0
- package/esm2022/lib/pagination/index.mjs +18 -0
- package/esm2022/lib/pagination/infinite-pagination.component.mjs +112 -0
- package/esm2022/lib/pagination/paginated-component.interface.mjs +18 -0
- package/esm2022/lib/pagination/pagination-component.interface.mjs +18 -0
- package/esm2022/lib/pagination/pagination.component.mjs +263 -0
- package/esm2022/lib/pagination/pagination.module.mjs +35 -0
- package/esm2022/lib/pagination/public-api.mjs +22 -0
- package/esm2022/lib/pipes/date-time.pipe.mjs +46 -0
- package/esm2022/lib/pipes/decimal-number.pipe.mjs +78 -0
- package/esm2022/lib/pipes/file-size.pipe.mjs +54 -0
- package/esm2022/lib/pipes/file-type.pipe.mjs +40 -0
- package/esm2022/lib/pipes/format-space.pipe.mjs +39 -0
- package/esm2022/lib/pipes/full-name.pipe.mjs +43 -0
- package/esm2022/lib/pipes/index.mjs +18 -0
- package/esm2022/lib/pipes/localized-date.pipe.mjs +70 -0
- package/esm2022/lib/pipes/multi-value.pipe.mjs +37 -0
- package/esm2022/lib/pipes/pipe.module.mjs +83 -0
- package/esm2022/lib/pipes/public-api.mjs +30 -0
- package/esm2022/lib/pipes/text-highlight.pipe.mjs +39 -0
- package/esm2022/lib/pipes/time-ago.pipe.mjs +65 -0
- package/esm2022/lib/pipes/truncate.pipe.mjs +33 -0
- package/esm2022/lib/pipes/user-initial.pipe.mjs +52 -0
- package/esm2022/lib/pipes/user-like.interface.mjs +18 -0
- package/esm2022/lib/progress/progress.component.mjs +90 -0
- package/esm2022/lib/search-text/animations.mjs +32 -0
- package/esm2022/lib/search-text/index.mjs +18 -0
- package/esm2022/lib/search-text/models/search-text-input.model.mjs +23 -0
- package/esm2022/lib/search-text/public-api.mjs +22 -0
- package/esm2022/lib/search-text/search-text-input.component.mjs +294 -0
- package/esm2022/lib/search-text/search-text-input.module.mjs +35 -0
- package/esm2022/lib/search-text/search-trigger.directive.mjs +181 -0
- package/esm2022/lib/snackbar-content/index.mjs +18 -0
- package/esm2022/lib/snackbar-content/public-api.mjs +20 -0
- package/esm2022/lib/snackbar-content/snack-bar-data.mjs +18 -0
- package/esm2022/lib/snackbar-content/snackbar-content.component.mjs +48 -0
- package/esm2022/lib/snackbar-content/snackbar-content.module.mjs +38 -0
- package/esm2022/lib/sorting-picker/index.mjs +18 -0
- package/esm2022/lib/sorting-picker/public-api.mjs +18 -0
- package/esm2022/lib/sorting-picker/sorting-picker.component.mjs +68 -0
- package/esm2022/lib/templates/empty-content/empty-content.component.mjs +44 -0
- package/esm2022/lib/templates/error-content/error-content.component.mjs +62 -0
- package/esm2022/lib/templates/index.mjs +18 -0
- package/esm2022/lib/templates/public-api.mjs +20 -0
- package/esm2022/lib/templates/template.module.mjs +38 -0
- package/esm2022/lib/testing/core.story.module.mjs +39 -0
- package/esm2022/lib/testing/core.testing.module.mjs +35 -0
- package/esm2022/lib/testing/index.mjs +22 -0
- package/esm2022/lib/testing/noop-auth.module.mjs +80 -0
- package/esm2022/lib/testing/noop-translate.module.mjs +61 -0
- package/esm2022/lib/testing/unit-testing-utils.mjs +364 -0
- package/esm2022/lib/toolbar/index.mjs +18 -0
- package/esm2022/lib/toolbar/public-api.mjs +21 -0
- package/esm2022/lib/toolbar/toolbar-divider.component.mjs +27 -0
- package/esm2022/lib/toolbar/toolbar-title.component.mjs +32 -0
- package/esm2022/lib/toolbar/toolbar.component.mjs +40 -0
- package/esm2022/lib/toolbar/toolbar.module.mjs +36 -0
- package/esm2022/lib/translation/index.mjs +18 -0
- package/esm2022/lib/translation/public-api.mjs +19 -0
- package/esm2022/lib/translation/translate-loader.service.mjs +148 -0
- package/esm2022/lib/translation/translation.service.mjs +148 -0
- package/esm2022/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.mjs +37 -0
- package/esm2022/lib/viewer/components/img-viewer/img-viewer.component.mjs +221 -0
- package/esm2022/lib/viewer/components/media-player/media-player.component.mjs +64 -0
- package/esm2022/lib/viewer/components/pdf-viewer/pdf-viewer.component.mjs +528 -0
- package/esm2022/lib/viewer/components/pdf-viewer-password-dialog/pdf-viewer-password-dialog.mjs +61 -0
- package/esm2022/lib/viewer/components/pdf-viewer-thumb/pdf-viewer-thumb.component.mjs +49 -0
- package/esm2022/lib/viewer/components/pdf-viewer-thumbnails/pdf-viewer-thumbnails.component.mjs +198 -0
- package/esm2022/lib/viewer/components/txt-viewer/txt-viewer.component.mjs +77 -0
- package/esm2022/lib/viewer/components/unknown-format/unknown-format.component.mjs +33 -0
- package/esm2022/lib/viewer/components/viewer-more-actions.component.mjs +34 -0
- package/esm2022/lib/viewer/components/viewer-open-with.component.mjs +34 -0
- package/esm2022/lib/viewer/components/viewer-render/viewer-render.component.mjs +211 -0
- package/esm2022/lib/viewer/components/viewer-sidebar.component.mjs +46 -0
- package/esm2022/lib/viewer/components/viewer-toolbar-actions.component.mjs +34 -0
- package/esm2022/lib/viewer/components/viewer-toolbar-custom-actions.component.mjs +34 -0
- package/esm2022/lib/viewer/components/viewer-toolbar.component.mjs +34 -0
- package/esm2022/lib/viewer/components/viewer.component.mjs +462 -0
- package/esm2022/lib/viewer/directives/viewer-extension.directive.mjs +67 -0
- package/esm2022/lib/viewer/index.mjs +18 -0
- package/esm2022/lib/viewer/models/download-prompt.actions.mjs +23 -0
- package/esm2022/lib/viewer/models/viewer.model.mjs +22 -0
- package/esm2022/lib/viewer/public-api.mjs +40 -0
- package/esm2022/lib/viewer/services/rendering-queue.services.mjs +179 -0
- package/esm2022/lib/viewer/services/view-util.service.mjs +149 -0
- package/esm2022/lib/viewer/viewer.module.mjs +112 -0
- package/esm2022/public-api.mjs +60 -0
- package/esm2022/shell/alfresco-adf-core-shell.mjs +5 -0
- package/esm2022/shell/index.mjs +20 -0
- package/esm2022/shell/lib/components/shell/shell.component.mjs +122 -0
- package/esm2022/shell/lib/services/shell-app.service.mjs +22 -0
- package/esm2022/shell/lib/shell.module.mjs +79 -0
- package/esm2022/shell/lib/shell.routes.mjs +25 -0
- package/feature-flags/lib/providers/debug-feature-flags.provider.d.ts +35 -4
- package/fesm2022/adf-core.mjs +1012 -976
- package/fesm2022/adf-core.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-api.mjs +3 -3
- package/fesm2022/alfresco-adf-core-auth.mjs +3 -3
- package/fesm2022/alfresco-adf-core-breadcrumbs.mjs +10 -10
- package/fesm2022/alfresco-adf-core-breadcrumbs.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-feature-flags.mjs +56 -51
- package/fesm2022/alfresco-adf-core-feature-flags.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-shell.mjs +8 -8
- package/fesm2022/alfresco-adf-core-shell.mjs.map +1 -1
- package/lib/card-view/components/base-card-view.d.ts +1 -1
- package/lib/datatable/data/data-table.schema.d.ts +1 -1
- package/lib/prebuilt-themes/adf-blue-orange.css +1 -1
- package/lib/prebuilt-themes/adf-blue-purple.css +1 -1
- package/lib/prebuilt-themes/adf-cyan-orange.css +1 -1
- package/lib/prebuilt-themes/adf-cyan-purple.css +1 -1
- package/lib/prebuilt-themes/adf-green-orange.css +1 -1
- package/lib/prebuilt-themes/adf-green-purple.css +1 -1
- package/lib/prebuilt-themes/adf-indigo-pink.css +1 -1
- package/lib/prebuilt-themes/adf-pink-bluegrey.css +1 -1
- package/lib/prebuilt-themes/adf-purple-green.css +1 -1
- package/lib/styles/_components-variables.scss +42 -42
- package/lib/styles/_index.scss +57 -57
- package/lib/styles/_typography.scss +13 -13
- package/lib/styles/prebuilt/adf-blue-orange.scss +6 -7
- package/lib/styles/prebuilt/adf-blue-purple.scss +6 -7
- package/lib/styles/prebuilt/adf-cyan-orange.scss +6 -7
- package/lib/styles/prebuilt/adf-cyan-purple.scss +6 -7
- package/lib/styles/prebuilt/adf-green-orange.scss +6 -7
- package/lib/styles/prebuilt/adf-green-purple.scss +6 -7
- package/lib/styles/prebuilt/adf-indigo-pink.scss +6 -7
- package/lib/styles/prebuilt/adf-pink-bluegrey.scss +6 -7
- package/lib/styles/prebuilt/adf-purple-green.scss +6 -7
- package/lib/viewer/components/pdf-viewer/pdf-viewer.component.d.ts +14 -10
- package/lib/viewer/components/viewer-render/viewer-render.component.scss +4 -0
- package/package.json +15 -3
- package/schematics/migrations/schematics/migrations/7_0_0/index.d.ts +1 -1
- package/schematics/migrations/schematics/migrations/7_0_0/index.js +2 -2
- package/schematics/migrations/schematics/migrations/7_0_0/index.js.map +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
ul>li>form-field>.adf-focus .adf-label{color:var(--theme-primary-color)}.adf-error-container{height:20px;margin-top:-12px}.adf-error-text{color:var(--theme-warn-color);font-size:var(--theme-caption-font-size);height:16px;line-height:1.33;padding:1px}.adf-error-icon{color:var(--theme-warn-color);font-size:var(--theme-adf-icon-1-font-size)}.adf-label{color:var(--adf-theme-foreground-secondary-text-color)}.adf-asterisk{color:var(--theme-warn-color);padding-left:2px}.adf-invalid .mat-mdc-checkbox{padding-bottom:12px}.adf-invalid .mdc-line-ripple{background-color:var(--theme-warn-color)!important}.adf-invalid .mat-mdc-select-arrow{color:var(--adf-theme-foreground-secondary-text-color)!important}.adf-invalid .adf-file{border-color:var(--theme-warn-color)}.adf-invalid .mat-mdc-form-field-text-prefix{color:var(--adf-theme-foreground-secondary-text-color)}.adf-invalid .adf-input{border-color:var(--theme-warn-color)}.adf-left-label{color:var(--adf-theme-foreground-secondary-text-color)}@media screen and (-ms-high-contrast:active),screen and (-ms-high-contrast:none){adf-form-field .mat-mdc-form-field,adf-form-field .mat-mdc-input-element,adf-form-field .mat-mdc-select{display:block!important}}.adf-copy-tooltip{background:var(--theme-primary-color);border-radius:5px;bottom:93%;color:var(--theme-primary-color-default-contrast);font-size:var(--theme-caption-font-size);left:0;min-height:20px;padding:2px 5px;position:absolute;z-index:1001}.adf-sticky-header .adf-copy-tooltip{bottom:0;top:85%}html{--mat-badge-text-font:Roboto,sans-serif}.mat-h1,.mat-headline-5,.mat-typography .mat-h1,.mat-typography .mat-headline-5,.mat-typography h1{font:400 24px/32px Roboto,sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h2,.mat-headline-6,.mat-typography .mat-h2,.mat-typography .mat-headline-6,.mat-typography h2{font:500 20px/32px Roboto,sans-serif;letter-spacing:.0125em;margin:0 0 16px}.mat-h3,.mat-subtitle-1,.mat-typography .mat-h3,.mat-typography .mat-subtitle-1,.mat-typography h3{font:400 16px/28px Roboto,sans-serif;letter-spacing:.009375em;margin:0 0 16px}.mat-body-1,.mat-h4,.mat-typography .mat-body-1,.mat-typography .mat-h4,.mat-typography h4{font:400 16px/24px Roboto,sans-serif;letter-spacing:.03125em;margin:0 0 16px}.mat-h5,.mat-typography .mat-h5,.mat-typography h5{font:400 11.62px/20px Roboto,sans-serif;margin:0 0 12px}.mat-h6,.mat-typography .mat-h6,.mat-typography h6{font:400 9.38px/20px Roboto,sans-serif;margin:0 0 12px}.mat-body-strong,.mat-subtitle-2,.mat-typography .mat-body-strong,.mat-typography .mat-subtitle-2{font:500 14px/22px Roboto,sans-serif;letter-spacing:.0071428571em}.mat-body,.mat-body-2,.mat-typography,.mat-typography .mat-body,.mat-typography .mat-body-2{font:400 14px/20px Roboto,sans-serif;letter-spacing:.0178571429em}.mat-body p,.mat-body-2 p,.mat-typography .mat-body p,.mat-typography .mat-body-2 p,.mat-typography p{margin:0 0 12px}.mat-caption,.mat-small,.mat-typography .mat-caption,.mat-typography .mat-small{font:400 12px/20px Roboto,sans-serif;letter-spacing:.0333333333em}.mat-headline-1,.mat-typography .mat-headline-1{font:300 96px/96px Roboto,sans-serif;letter-spacing:-.015625em;margin:0 0 56px}.mat-headline-2,.mat-typography .mat-headline-2{font:300 60px/60px Roboto,sans-serif;letter-spacing:-.0083333333em;margin:0 0 64px}.mat-headline-3,.mat-typography .mat-headline-3{font:400 48px/50px Roboto,sans-serif;letter-spacing:normal;margin:0 0 64px}.mat-headline-4,.mat-typography .mat-headline-4{font:400 34px/40px Roboto,sans-serif;letter-spacing:.0073529412em;margin:0 0 64px}html{--mat-bottom-sheet-container-text-font:Roboto,sans-serif;--mat-bottom-sheet-container-text-tracking:0.0178571429em;--mat-legacy-button-toggle-label-text-font:Roboto,sans-serif;--mat-legacy-button-toggle-label-text-size:16px;--mat-legacy-button-toggle-label-text-tracking:0.03125em;--mat-standard-button-toggle-label-text-font:Roboto,sans-serif;--mat-standard-button-toggle-label-text-size:16px;--mat-standard-button-toggle-label-text-tracking:0.03125em;--mat-datepicker-calendar-text-font:Roboto,sans-serif;--mat-expansion-header-text-font:Roboto,sans-serif;--mat-expansion-container-text-font:Roboto,sans-serif;--mat-expansion-container-text-tracking:0.0178571429em;--mat-stepper-container-text-font:Roboto,sans-serif;--mat-stepper-header-label-text-font:Roboto,sans-serif;--mat-stepper-header-error-state-label-text-size:16px;--mat-stepper-header-selected-state-label-text-size:16px;--mat-toolbar-title-text-font:Roboto,sans-serif;--mat-toolbar-title-text-tracking:0.0125em;--mat-tree-node-text-font:Roboto,sans-serif;--mat-option-label-text-font:Roboto,sans-serif;--mat-option-label-text-size:16px;--mat-option-label-text-tracking:0.03125em;--mat-optgroup-label-text-font:Roboto,sans-serif;--mat-optgroup-label-text-size:16px;--mat-optgroup-label-text-tracking:0.03125em;--mat-card-title-text-font:Roboto,sans-serif;--mat-card-title-text-tracking:0.0125em;--mat-card-subtitle-text-font:Roboto,sans-serif;--mat-card-subtitle-text-line-height:22px;--mat-card-subtitle-text-tracking:0.0071428571em;--mdc-plain-tooltip-supporting-text-font:Roboto,sans-serif;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em;--mdc-filled-text-field-label-text-font:Roboto,sans-serif;--mdc-filled-text-field-label-text-size:16px;--mdc-filled-text-field-label-text-tracking:0.03125em;--mdc-outlined-text-field-label-text-font:Roboto,sans-serif;--mdc-outlined-text-field-label-text-size:16px;--mdc-outlined-text-field-label-text-tracking:0.03125em;--mat-form-field-container-text-font:Roboto,sans-serif;--mat-form-field-container-text-size:16px;--mat-form-field-container-text-tracking:0.03125em;--mat-form-field-outlined-label-text-populated-size:16px;--mat-form-field-subscript-text-font:Roboto,sans-serif;--mat-form-field-subscript-text-tracking:0.0333333333em;--mat-select-trigger-text-font:Roboto,sans-serif;--mat-select-trigger-text-size:16px;--mat-select-trigger-text-tracking:0.03125em;--mdc-dialog-subhead-font:Roboto,sans-serif;--mdc-dialog-subhead-tracking:0.0125em;--mdc-dialog-supporting-text-font:Roboto,sans-serif;--mdc-dialog-supporting-text-size:16px;--mdc-dialog-supporting-text-tracking:0.03125em}.mat-mdc-standard-chip{--mdc-chip-label-text-font:Roboto,sans-serif;--mdc-chip-label-text-tracking:0.0178571429em}html .mat-mdc-slide-toggle{--mat-switch-label-text-font:Roboto,sans-serif;--mat-switch-label-text-tracking:0.0178571429em}html{--mat-radio-label-text-font:Roboto,sans-serif;--mat-radio-label-text-tracking:0.0178571429em;--mdc-slider-label-label-text-font:Roboto,sans-serif;--mdc-slider-label-label-text-line-height:22px;--mdc-slider-label-label-text-tracking:0.0071428571em;--mat-menu-item-label-text-font:Roboto,sans-serif;--mat-menu-item-label-text-size:16px;--mat-menu-item-label-text-tracking:0.03125em;--mdc-list-list-item-label-text-font:Roboto,sans-serif;--mdc-list-list-item-label-text-size:16px;--mdc-list-list-item-label-text-tracking:0.03125em;--mdc-list-list-item-supporting-text-font:Roboto,sans-serif;--mdc-list-list-item-supporting-text-tracking:0.0178571429em;--mdc-list-list-item-trailing-supporting-text-font:Roboto,sans-serif;--mdc-list-list-item-trailing-supporting-text-tracking:0.0333333333em}.mdc-list-group__subheader{font:400 16px/28px Roboto,sans-serif;letter-spacing:.009375em}html{--mat-paginator-container-text-font:Roboto,sans-serif;--mat-paginator-container-text-tracking:0.0333333333em}.mat-mdc-tab-header{--mat-tab-header-label-text-font:Roboto,sans-serif;--mat-tab-header-label-text-tracking:0.0892857143em;--mat-tab-header-label-text-line-height:36px}html{--mat-checkbox-label-text-font:Roboto,sans-serif;--mat-checkbox-label-text-tracking:0.0178571429em;--mdc-text-button-label-text-font:Roboto,sans-serif;--mdc-text-button-label-text-tracking:0.0892857143em;--mdc-filled-button-label-text-font:Roboto,sans-serif;--mdc-filled-button-label-text-tracking:0.0892857143em;--mdc-protected-button-label-text-font:Roboto,sans-serif;--mdc-protected-button-label-text-tracking:0.0892857143em;--mdc-outlined-button-label-text-font:Roboto,sans-serif;--mdc-outlined-button-label-text-tracking:0.0892857143em;--mdc-extended-fab-label-text-font:Roboto,sans-serif;--mdc-extended-fab-label-text-tracking:0.0892857143em;--mdc-snackbar-supporting-text-font:Roboto,sans-serif;--mat-table-header-headline-font:Roboto,sans-serif;--mat-table-header-headline-line-height:22px;--mat-table-header-headline-tracking:0.0071428571em;--mat-table-row-item-label-text-font:Roboto,sans-serif;--mat-table-row-item-label-text-tracking:0.0178571429em;--mat-table-footer-supporting-text-font:Roboto,sans-serif;--mat-table-footer-supporting-text-tracking:0.0178571429em}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:var(--mat-app-elevation-shadow-level-0,none)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:var(--mat-app-elevation-shadow-level-1,none)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:var(--mat-app-elevation-shadow-level-2,none)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:var(--mat-app-elevation-shadow-level-3,none)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:var(--mat-app-elevation-shadow-level-4,none)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:var(--mat-app-elevation-shadow-level-5,none)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:var(--mat-app-elevation-shadow-level-6,none)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:var(--mat-app-elevation-shadow-level-7,none)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:var(--mat-app-elevation-shadow-level-8,none)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:var(--mat-app-elevation-shadow-level-9,none)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:var(--mat-app-elevation-shadow-level-10,none)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:var(--mat-app-elevation-shadow-level-11,none)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:var(--mat-app-elevation-shadow-level-12,none)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:var(--mat-app-elevation-shadow-level-13,none)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:var(--mat-app-elevation-shadow-level-14,none)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:var(--mat-app-elevation-shadow-level-15,none)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:var(--mat-app-elevation-shadow-level-16,none)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:var(--mat-app-elevation-shadow-level-17,none)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:var(--mat-app-elevation-shadow-level-18,none)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:var(--mat-app-elevation-shadow-level-19,none)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:var(--mat-app-elevation-shadow-level-20,none)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:var(--mat-app-elevation-shadow-level-21,none)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:var(--mat-app-elevation-shadow-level-22,none)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:var(--mat-app-elevation-shadow-level-23,none)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:var(--mat-app-elevation-shadow-level-24,none)}html{--mat-sys-on-surface:initial}.mat-app-background{background-color:var(--mat-app-background-color,var(--mat-sys-background,transparent));color:var(--mat-app-text-color,var(--mat-sys-on-background,inherit))}html{--mat-ripple-color:rgba(0,0,0,.1);--mat-option-selected-state-label-text-color:#2196f3;--mat-option-label-text-color:rgba(0,0,0,.87);--mat-option-hover-state-layer-color:rgba(0,0,0,.04);--mat-option-focus-state-layer-color:rgba(0,0,0,.04);--mat-option-selected-state-layer-color:rgba(0,0,0,.04)}.mat-accent{--mat-option-selected-state-label-text-color:#ff9800;--mat-option-label-text-color:rgba(0,0,0,.87);--mat-option-hover-state-layer-color:rgba(0,0,0,.04);--mat-option-focus-state-layer-color:rgba(0,0,0,.04);--mat-option-selected-state-layer-color:rgba(0,0,0,.04)}.mat-warn{--mat-option-selected-state-label-text-color:#f44336;--mat-option-label-text-color:rgba(0,0,0,.87);--mat-option-hover-state-layer-color:rgba(0,0,0,.04);--mat-option-focus-state-layer-color:rgba(0,0,0,.04);--mat-option-selected-state-layer-color:rgba(0,0,0,.04)}html{--mat-optgroup-label-text-color:rgba(0,0,0,.87);--mat-full-pseudo-checkbox-selected-icon-color:#ff9800;--mat-full-pseudo-checkbox-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color:#b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color:#b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color:#ff9800;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color:#b0b0b0}.mat-primary{--mat-full-pseudo-checkbox-selected-icon-color:#2196f3;--mat-full-pseudo-checkbox-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color:#b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color:#b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color:#2196f3;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color:#b0b0b0}.mat-accent{--mat-full-pseudo-checkbox-selected-icon-color:#ff9800;--mat-full-pseudo-checkbox-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color:#b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color:#b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color:#ff9800;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color:#b0b0b0}.mat-warn{--mat-full-pseudo-checkbox-selected-icon-color:#f44336;--mat-full-pseudo-checkbox-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color:#b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color:#b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color:#f44336;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color:#b0b0b0}html{--mat-app-background-color:#fafafa;--mat-app-text-color:rgba(0,0,0,.87);--mat-app-elevation-shadow-level-0:0px 0px 0px 0px rgba(0,0,0,.2),0px 0px 0px 0px rgba(0,0,0,.14),0px 0px 0px 0px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-1:0px 2px 1px -1px rgba(0,0,0,.2),0px 1px 1px 0px rgba(0,0,0,.14),0px 1px 3px 0px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-2:0px 3px 1px -2px rgba(0,0,0,.2),0px 2px 2px 0px rgba(0,0,0,.14),0px 1px 5px 0px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-3:0px 3px 3px -2px rgba(0,0,0,.2),0px 3px 4px 0px rgba(0,0,0,.14),0px 1px 8px 0px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-4:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-5:0px 3px 5px -1px rgba(0,0,0,.2),0px 5px 8px 0px rgba(0,0,0,.14),0px 1px 14px 0px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-6:0px 3px 5px -1px rgba(0,0,0,.2),0px 6px 10px 0px rgba(0,0,0,.14),0px 1px 18px 0px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-7:0px 4px 5px -2px rgba(0,0,0,.2),0px 7px 10px 1px rgba(0,0,0,.14),0px 2px 16px 1px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-8:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-9:0px 5px 6px -3px rgba(0,0,0,.2),0px 9px 12px 1px rgba(0,0,0,.14),0px 3px 16px 2px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-10:0px 6px 6px -3px rgba(0,0,0,.2),0px 10px 14px 1px rgba(0,0,0,.14),0px 4px 18px 3px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-11:0px 6px 7px -4px rgba(0,0,0,.2),0px 11px 15px 1px rgba(0,0,0,.14),0px 4px 20px 3px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-12:0px 7px 8px -4px rgba(0,0,0,.2),0px 12px 17px 2px rgba(0,0,0,.14),0px 5px 22px 4px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-13:0px 7px 8px -4px rgba(0,0,0,.2),0px 13px 19px 2px rgba(0,0,0,.14),0px 5px 24px 4px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-14:0px 7px 9px -4px rgba(0,0,0,.2),0px 14px 21px 2px rgba(0,0,0,.14),0px 5px 26px 4px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-15:0px 8px 9px -5px rgba(0,0,0,.2),0px 15px 22px 2px rgba(0,0,0,.14),0px 6px 28px 5px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-16:0px 8px 10px -5px rgba(0,0,0,.2),0px 16px 24px 2px rgba(0,0,0,.14),0px 6px 30px 5px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-17:0px 8px 11px -5px rgba(0,0,0,.2),0px 17px 26px 2px rgba(0,0,0,.14),0px 6px 32px 5px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-18:0px 9px 11px -5px rgba(0,0,0,.2),0px 18px 28px 2px rgba(0,0,0,.14),0px 7px 34px 6px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-19:0px 9px 12px -6px rgba(0,0,0,.2),0px 19px 29px 2px rgba(0,0,0,.14),0px 7px 36px 6px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-20:0px 10px 13px -6px rgba(0,0,0,.2),0px 20px 31px 3px rgba(0,0,0,.14),0px 8px 38px 7px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-21:0px 10px 13px -6px rgba(0,0,0,.2),0px 21px 33px 3px rgba(0,0,0,.14),0px 8px 40px 7px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-22:0px 10px 14px -6px rgba(0,0,0,.2),0px 22px 35px 3px rgba(0,0,0,.14),0px 8px 42px 7px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-23:0px 11px 14px -7px rgba(0,0,0,.2),0px 23px 36px 3px rgba(0,0,0,.14),0px 9px 44px 8px rgba(0,0,0,.12);--mat-app-elevation-shadow-level-24:0px 11px 15px -7px rgba(0,0,0,.2),0px 24px 38px 3px rgba(0,0,0,.14),0px 9px 46px 8px rgba(0,0,0,.12);--mat-option-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-option-label-text-line-height:24px;--mat-option-label-text-size:15px;--mat-option-label-text-tracking:normal;--mat-option-label-text-weight:400;--mat-optgroup-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-optgroup-label-text-line-height:24px;--mat-optgroup-label-text-size:15px;--mat-optgroup-label-text-tracking:normal;--mat-optgroup-label-text-weight:400;--mdc-elevated-card-container-shape:4px;--mdc-outlined-card-container-shape:4px;--mdc-outlined-card-outline-width:1px;--mdc-elevated-card-container-color:#fff;--mdc-elevated-card-container-elevation:0px 2px 1px -1px rgba(0,0,0,.2),0px 1px 1px 0px rgba(0,0,0,.14),0px 1px 3px 0px rgba(0,0,0,.12);--mdc-outlined-card-container-color:#fff;--mdc-outlined-card-outline-color:rgba(0,0,0,.12);--mdc-outlined-card-container-elevation:0px 0px 0px 0px rgba(0,0,0,.2),0px 0px 0px 0px rgba(0,0,0,.14),0px 0px 0px 0px rgba(0,0,0,.12);--mat-card-subtitle-text-color:rgba(0,0,0,.54);--mat-card-title-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-card-title-text-line-height:32px;--mat-card-title-text-size:20px;--mat-card-title-text-tracking:normal;--mat-card-title-text-weight:500;--mat-card-subtitle-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-card-subtitle-text-line-height:24px;--mat-card-subtitle-text-size:14px;--mat-card-subtitle-text-tracking:normal;--mat-card-subtitle-text-weight:500;--mdc-linear-progress-active-indicator-height:4px;--mdc-linear-progress-track-height:4px;--mdc-linear-progress-track-shape:0}.mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color:#2196f3;--mdc-linear-progress-track-color:rgba(33,150,243,.25)}.mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color:#ff9800;--mdc-linear-progress-track-color:rgba(255,152,0,.25)}.mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color:#f44336;--mdc-linear-progress-track-color:rgba(244,67,54,.25)}html{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px;--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff;--mdc-plain-tooltip-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:normal;--mdc-filled-text-field-active-indicator-height:1px;--mdc-filled-text-field-focus-active-indicator-height:2px;--mdc-filled-text-field-container-shape:4px;--mdc-outlined-text-field-outline-width:1px;--mdc-outlined-text-field-focus-outline-width:2px;--mdc-outlined-text-field-container-shape:4px;--mdc-filled-text-field-caret-color:#2196f3;--mdc-filled-text-field-focus-active-indicator-color:#2196f3;--mdc-filled-text-field-focus-label-text-color:rgba(33,150,243,.87);--mdc-filled-text-field-container-color:#f5f5f5;--mdc-filled-text-field-disabled-container-color:#fafafa;--mdc-filled-text-field-label-text-color:rgba(0,0,0,.6);--mdc-filled-text-field-hover-label-text-color:rgba(0,0,0,.6);--mdc-filled-text-field-disabled-label-text-color:rgba(0,0,0,.38);--mdc-filled-text-field-input-text-color:rgba(0,0,0,.87);--mdc-filled-text-field-disabled-input-text-color:rgba(0,0,0,.38);--mdc-filled-text-field-input-text-placeholder-color:rgba(0,0,0,.6);--mdc-filled-text-field-error-hover-label-text-color:#f44336;--mdc-filled-text-field-error-focus-label-text-color:#f44336;--mdc-filled-text-field-error-label-text-color:#f44336;--mdc-filled-text-field-error-caret-color:#f44336;--mdc-filled-text-field-active-indicator-color:rgba(0,0,0,.42);--mdc-filled-text-field-disabled-active-indicator-color:rgba(0,0,0,.06);--mdc-filled-text-field-hover-active-indicator-color:rgba(0,0,0,.87);--mdc-filled-text-field-error-active-indicator-color:#f44336;--mdc-filled-text-field-error-focus-active-indicator-color:#f44336;--mdc-filled-text-field-error-hover-active-indicator-color:#f44336;--mdc-outlined-text-field-caret-color:#2196f3;--mdc-outlined-text-field-focus-outline-color:#2196f3;--mdc-outlined-text-field-focus-label-text-color:rgba(33,150,243,.87);--mdc-outlined-text-field-label-text-color:rgba(0,0,0,.6);--mdc-outlined-text-field-hover-label-text-color:rgba(0,0,0,.6);--mdc-outlined-text-field-disabled-label-text-color:rgba(0,0,0,.38);--mdc-outlined-text-field-input-text-color:rgba(0,0,0,.87);--mdc-outlined-text-field-disabled-input-text-color:rgba(0,0,0,.38);--mdc-outlined-text-field-input-text-placeholder-color:rgba(0,0,0,.6);--mdc-outlined-text-field-error-caret-color:#f44336;--mdc-outlined-text-field-error-focus-label-text-color:#f44336;--mdc-outlined-text-field-error-label-text-color:#f44336;--mdc-outlined-text-field-error-hover-label-text-color:#f44336;--mdc-outlined-text-field-outline-color:rgba(0,0,0,.38);--mdc-outlined-text-field-disabled-outline-color:rgba(0,0,0,.06);--mdc-outlined-text-field-hover-outline-color:rgba(0,0,0,.87);--mdc-outlined-text-field-error-focus-outline-color:#f44336;--mdc-outlined-text-field-error-hover-outline-color:#f44336;--mdc-outlined-text-field-error-outline-color:#f44336;--mat-form-field-focus-select-arrow-color:rgba(33,150,243,.87);--mat-form-field-disabled-input-text-placeholder-color:rgba(0,0,0,.38);--mat-form-field-state-layer-color:rgba(0,0,0,.87);--mat-form-field-error-text-color:#f44336;--mat-form-field-select-option-text-color:inherit;--mat-form-field-select-disabled-option-text-color:GrayText;--mat-form-field-leading-icon-color:unset;--mat-form-field-disabled-leading-icon-color:unset;--mat-form-field-trailing-icon-color:unset;--mat-form-field-disabled-trailing-icon-color:unset;--mat-form-field-error-focus-trailing-icon-color:unset;--mat-form-field-error-hover-trailing-icon-color:unset;--mat-form-field-error-trailing-icon-color:unset;--mat-form-field-enabled-select-arrow-color:rgba(0,0,0,.54);--mat-form-field-disabled-select-arrow-color:rgba(0,0,0,.38);--mat-form-field-hover-state-layer-opacity:0.04;--mat-form-field-focus-state-layer-opacity:0.08}.mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color:#ff9800;--mdc-filled-text-field-focus-active-indicator-color:#ff9800;--mdc-filled-text-field-focus-label-text-color:rgba(255,152,0,.87);--mdc-outlined-text-field-caret-color:#ff9800;--mdc-outlined-text-field-focus-outline-color:#ff9800;--mdc-outlined-text-field-focus-label-text-color:rgba(255,152,0,.87);--mat-form-field-focus-select-arrow-color:rgba(255,152,0,.87)}.mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color:#f44336;--mdc-filled-text-field-focus-active-indicator-color:#f44336;--mdc-filled-text-field-focus-label-text-color:rgba(244,67,54,.87);--mdc-outlined-text-field-caret-color:#f44336;--mdc-outlined-text-field-focus-outline-color:#f44336;--mdc-outlined-text-field-focus-label-text-color:rgba(244,67,54,.87);--mat-form-field-focus-select-arrow-color:rgba(244,67,54,.87)}html{--mat-form-field-container-height:56px;--mat-form-field-filled-label-display:block;--mat-form-field-container-vertical-padding:16px;--mat-form-field-filled-with-label-container-padding-top:24px;--mat-form-field-filled-with-label-container-padding-bottom:8px;--mdc-filled-text-field-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-filled-text-field-label-text-size:15px;--mdc-filled-text-field-label-text-tracking:normal;--mdc-filled-text-field-label-text-weight:400;--mdc-outlined-text-field-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-outlined-text-field-label-text-size:15px;--mdc-outlined-text-field-label-text-tracking:normal;--mdc-outlined-text-field-label-text-weight:400;--mat-form-field-container-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-form-field-container-text-line-height:24px;--mat-form-field-container-text-size:15px;--mat-form-field-container-text-tracking:normal;--mat-form-field-container-text-weight:400;--mat-form-field-outlined-label-text-populated-size:15px;--mat-form-field-subscript-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-form-field-subscript-text-line-height:20px;--mat-form-field-subscript-text-size:12px;--mat-form-field-subscript-text-tracking:normal;--mat-form-field-subscript-text-weight:400;--mat-select-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mat-select-panel-background-color:#fff;--mat-select-enabled-trigger-text-color:rgba(0,0,0,.87);--mat-select-disabled-trigger-text-color:rgba(0,0,0,.38);--mat-select-placeholder-text-color:rgba(0,0,0,.6);--mat-select-enabled-arrow-color:rgba(0,0,0,.54);--mat-select-disabled-arrow-color:rgba(0,0,0,.38);--mat-select-focused-arrow-color:rgba(33,150,243,.87);--mat-select-invalid-arrow-color:rgba(244,67,54,.87)}html .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color:#fff;--mat-select-enabled-trigger-text-color:rgba(0,0,0,.87);--mat-select-disabled-trigger-text-color:rgba(0,0,0,.38);--mat-select-placeholder-text-color:rgba(0,0,0,.6);--mat-select-enabled-arrow-color:rgba(0,0,0,.54);--mat-select-disabled-arrow-color:rgba(0,0,0,.38);--mat-select-focused-arrow-color:rgba(255,152,0,.87);--mat-select-invalid-arrow-color:rgba(244,67,54,.87)}html .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color:#fff;--mat-select-enabled-trigger-text-color:rgba(0,0,0,.87);--mat-select-disabled-trigger-text-color:rgba(0,0,0,.38);--mat-select-placeholder-text-color:rgba(0,0,0,.6);--mat-select-enabled-arrow-color:rgba(0,0,0,.54);--mat-select-disabled-arrow-color:rgba(0,0,0,.38);--mat-select-focused-arrow-color:rgba(244,67,54,.87);--mat-select-invalid-arrow-color:rgba(244,67,54,.87)}html{--mat-select-arrow-transform:translateY(-8px);--mat-select-trigger-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-select-trigger-text-line-height:24px;--mat-select-trigger-text-size:15px;--mat-select-trigger-text-tracking:normal;--mat-select-trigger-text-weight:400;--mat-autocomplete-container-shape:4px;--mat-autocomplete-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mat-autocomplete-background-color:#fff;--mdc-dialog-container-shape:4px;--mat-dialog-container-elevation-shadow:0px 11px 15px -7px rgba(0,0,0,.2),0px 24px 38px 3px rgba(0,0,0,.14),0px 9px 46px 8px rgba(0,0,0,.12);--mat-dialog-container-max-width:80vw;--mat-dialog-container-small-max-width:80vw;--mat-dialog-container-min-width:0;--mat-dialog-actions-alignment:start;--mat-dialog-actions-padding:8px;--mat-dialog-content-padding:20px 24px;--mat-dialog-with-actions-content-padding:20px 24px;--mat-dialog-headline-padding:0 24px 9px;--mdc-dialog-container-color:#fff;--mdc-dialog-subhead-color:rgba(0,0,0,.87);--mdc-dialog-supporting-text-color:rgba(0,0,0,.6);--mdc-dialog-subhead-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-dialog-subhead-line-height:32px;--mdc-dialog-subhead-size:20px;--mdc-dialog-subhead-weight:500;--mdc-dialog-subhead-tracking:normal;--mdc-dialog-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-dialog-supporting-text-line-height:24px;--mdc-dialog-supporting-text-size:15px;--mdc-dialog-supporting-text-weight:400;--mdc-dialog-supporting-text-tracking:normal}.mat-mdc-standard-chip{--mdc-chip-container-shape-radius:16px;--mdc-chip-with-avatar-avatar-shape-radius:14px;--mdc-chip-with-avatar-avatar-size:28px;--mdc-chip-with-icon-icon-size:18px;--mdc-chip-outline-width:0;--mdc-chip-outline-color:transparent;--mdc-chip-disabled-outline-color:transparent;--mdc-chip-focus-outline-color:transparent;--mdc-chip-hover-state-layer-opacity:0.04;--mdc-chip-with-avatar-disabled-avatar-opacity:1;--mdc-chip-flat-selected-outline-width:0;--mdc-chip-selected-hover-state-layer-opacity:0.04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity:1;--mdc-chip-with-icon-disabled-icon-opacity:1;--mat-chip-disabled-container-opacity:0.4;--mat-chip-trailing-action-opacity:0.54;--mat-chip-trailing-action-focus-opacity:1;--mat-chip-trailing-action-state-layer-color:transparent;--mat-chip-selected-trailing-action-state-layer-color:transparent;--mat-chip-trailing-action-hover-state-layer-opacity:0;--mat-chip-trailing-action-focus-state-layer-opacity:0;--mdc-chip-disabled-label-text-color:#212121;--mdc-chip-elevated-container-color:#e0e0e0;--mdc-chip-elevated-selected-container-color:#e0e0e0;--mdc-chip-elevated-disabled-container-color:#e0e0e0;--mdc-chip-flat-disabled-selected-container-color:#e0e0e0;--mdc-chip-focus-state-layer-color:#000;--mdc-chip-hover-state-layer-color:#000;--mdc-chip-selected-hover-state-layer-color:#000;--mdc-chip-focus-state-layer-opacity:0.12;--mdc-chip-selected-focus-state-layer-color:#000;--mdc-chip-selected-focus-state-layer-opacity:0.12;--mdc-chip-label-text-color:#212121;--mdc-chip-selected-label-text-color:#212121;--mdc-chip-with-icon-icon-color:#212121;--mdc-chip-with-icon-disabled-icon-color:#212121;--mdc-chip-with-icon-selected-icon-color:#212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:#212121;--mdc-chip-with-trailing-icon-trailing-icon-color:#212121;--mat-chip-selected-disabled-trailing-icon-color:#212121;--mat-chip-selected-trailing-icon-color:#212121}.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary,.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary{--mdc-chip-disabled-label-text-color:#fff;--mdc-chip-elevated-container-color:#2196f3;--mdc-chip-elevated-selected-container-color:#2196f3;--mdc-chip-elevated-disabled-container-color:#2196f3;--mdc-chip-flat-disabled-selected-container-color:#2196f3;--mdc-chip-focus-state-layer-color:#000;--mdc-chip-hover-state-layer-color:#000;--mdc-chip-selected-hover-state-layer-color:#000;--mdc-chip-focus-state-layer-opacity:0.12;--mdc-chip-selected-focus-state-layer-color:#000;--mdc-chip-selected-focus-state-layer-opacity:0.12;--mdc-chip-label-text-color:#fff;--mdc-chip-selected-label-text-color:#fff;--mdc-chip-with-icon-icon-color:#fff;--mdc-chip-with-icon-disabled-icon-color:#fff;--mdc-chip-with-icon-selected-icon-color:#fff;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:#fff;--mdc-chip-with-trailing-icon-trailing-icon-color:#fff;--mat-chip-selected-disabled-trailing-icon-color:#fff;--mat-chip-selected-trailing-icon-color:#fff}.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent,.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent{--mdc-chip-disabled-label-text-color:hsla(0,0%,100%,.87);--mdc-chip-elevated-container-color:#ff9800;--mdc-chip-elevated-selected-container-color:#ff9800;--mdc-chip-elevated-disabled-container-color:#ff9800;--mdc-chip-flat-disabled-selected-container-color:#ff9800;--mdc-chip-focus-state-layer-color:#000;--mdc-chip-hover-state-layer-color:#000;--mdc-chip-selected-hover-state-layer-color:#000;--mdc-chip-focus-state-layer-opacity:0.12;--mdc-chip-selected-focus-state-layer-color:#000;--mdc-chip-selected-focus-state-layer-opacity:0.12;--mdc-chip-label-text-color:hsla(0,0%,100%,.87);--mdc-chip-selected-label-text-color:hsla(0,0%,100%,.87);--mdc-chip-with-icon-icon-color:hsla(0,0%,100%,.87);--mdc-chip-with-icon-disabled-icon-color:hsla(0,0%,100%,.87);--mdc-chip-with-icon-selected-icon-color:hsla(0,0%,100%,.87);--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:hsla(0,0%,100%,.87);--mdc-chip-with-trailing-icon-trailing-icon-color:hsla(0,0%,100%,.87);--mat-chip-selected-disabled-trailing-icon-color:hsla(0,0%,100%,.87);--mat-chip-selected-trailing-icon-color:hsla(0,0%,100%,.87)}.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn,.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn{--mdc-chip-disabled-label-text-color:#fff;--mdc-chip-elevated-container-color:#f44336;--mdc-chip-elevated-selected-container-color:#f44336;--mdc-chip-elevated-disabled-container-color:#f44336;--mdc-chip-flat-disabled-selected-container-color:#f44336;--mdc-chip-focus-state-layer-color:#000;--mdc-chip-hover-state-layer-color:#000;--mdc-chip-selected-hover-state-layer-color:#000;--mdc-chip-focus-state-layer-opacity:0.12;--mdc-chip-selected-focus-state-layer-color:#000;--mdc-chip-selected-focus-state-layer-opacity:0.12;--mdc-chip-label-text-color:#fff;--mdc-chip-selected-label-text-color:#fff;--mdc-chip-with-icon-icon-color:#fff;--mdc-chip-with-icon-disabled-icon-color:#fff;--mdc-chip-with-icon-selected-icon-color:#fff;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:#fff;--mdc-chip-with-trailing-icon-trailing-icon-color:#fff;--mat-chip-selected-disabled-trailing-icon-color:#fff;--mat-chip-selected-trailing-icon-color:#fff}.mat-mdc-chip.mat-mdc-standard-chip{--mdc-chip-container-height:32px}.mat-mdc-standard-chip{--mdc-chip-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-chip-label-text-line-height:20px;--mdc-chip-label-text-size:14px;--mdc-chip-label-text-tracking:normal;--mdc-chip-label-text-weight:400}html{--mdc-switch-disabled-selected-icon-opacity:0.38;--mdc-switch-disabled-track-opacity:0.12;--mdc-switch-disabled-unselected-icon-opacity:0.38;--mdc-switch-handle-height:20px;--mdc-switch-handle-shape:10px;--mdc-switch-handle-width:20px;--mdc-switch-selected-icon-size:18px;--mdc-switch-track-height:14px;--mdc-switch-track-shape:7px;--mdc-switch-track-width:36px;--mdc-switch-unselected-icon-size:18px;--mdc-switch-selected-focus-state-layer-opacity:0.12;--mdc-switch-selected-hover-state-layer-opacity:0.04;--mdc-switch-selected-pressed-state-layer-opacity:0.1;--mdc-switch-unselected-focus-state-layer-opacity:0.12;--mdc-switch-unselected-hover-state-layer-opacity:0.04;--mdc-switch-unselected-pressed-state-layer-opacity:0.1}html .mat-mdc-slide-toggle{--mat-switch-disabled-selected-handle-opacity:0.38;--mat-switch-disabled-unselected-handle-opacity:0.38;--mat-switch-unselected-handle-size:20px;--mat-switch-selected-handle-size:20px;--mat-switch-pressed-handle-size:20px;--mat-switch-with-icon-handle-size:20px;--mat-switch-selected-handle-horizontal-margin:0;--mat-switch-selected-with-icon-handle-horizontal-margin:0;--mat-switch-selected-pressed-handle-horizontal-margin:0;--mat-switch-unselected-handle-horizontal-margin:0;--mat-switch-unselected-with-icon-handle-horizontal-margin:0;--mat-switch-unselected-pressed-handle-horizontal-margin:0;--mat-switch-visible-track-opacity:1;--mat-switch-hidden-track-opacity:1;--mat-switch-visible-track-transition:transform 75ms 0ms cubic-bezier(0,0,0.2,1);--mat-switch-hidden-track-transition:transform 75ms 0ms cubic-bezier(0.4,0,0.6,1);--mat-switch-track-outline-width:1px;--mat-switch-track-outline-color:transparent;--mat-switch-selected-track-outline-width:1px;--mat-switch-selected-track-outline-color:transparent;--mat-switch-disabled-unselected-track-outline-width:1px;--mat-switch-disabled-unselected-track-outline-color:transparent}html{--mdc-switch-selected-focus-state-layer-color:#1e88e5;--mdc-switch-selected-handle-color:#1e88e5;--mdc-switch-selected-hover-state-layer-color:#1e88e5;--mdc-switch-selected-pressed-state-layer-color:#1e88e5;--mdc-switch-selected-focus-handle-color:#0d47a1;--mdc-switch-selected-hover-handle-color:#0d47a1;--mdc-switch-selected-pressed-handle-color:#0d47a1;--mdc-switch-selected-focus-track-color:#64b5f6;--mdc-switch-selected-hover-track-color:#64b5f6;--mdc-switch-selected-pressed-track-color:#64b5f6;--mdc-switch-selected-track-color:#64b5f6;--mdc-switch-disabled-selected-handle-color:#424242;--mdc-switch-disabled-selected-icon-color:#fff;--mdc-switch-disabled-selected-track-color:#424242;--mdc-switch-disabled-unselected-handle-color:#424242;--mdc-switch-disabled-unselected-icon-color:#fff;--mdc-switch-disabled-unselected-track-color:#424242;--mdc-switch-handle-surface-color:#fff;--mdc-switch-selected-icon-color:#fff;--mdc-switch-unselected-focus-handle-color:#212121;--mdc-switch-unselected-focus-state-layer-color:#424242;--mdc-switch-unselected-focus-track-color:#e0e0e0;--mdc-switch-unselected-handle-color:#616161;--mdc-switch-unselected-hover-handle-color:#212121;--mdc-switch-unselected-hover-state-layer-color:#424242;--mdc-switch-unselected-hover-track-color:#e0e0e0;--mdc-switch-unselected-icon-color:#fff;--mdc-switch-unselected-pressed-handle-color:#212121;--mdc-switch-unselected-pressed-state-layer-color:#424242;--mdc-switch-unselected-pressed-track-color:#e0e0e0;--mdc-switch-unselected-track-color:#e0e0e0;--mdc-switch-handle-elevation-shadow:0px 2px 1px -1px rgba(0,0,0,.2),0px 1px 1px 0px rgba(0,0,0,.14),0px 1px 3px 0px rgba(0,0,0,.12);--mdc-switch-disabled-handle-elevation-shadow:0px 0px 0px 0px rgba(0,0,0,.2),0px 0px 0px 0px rgba(0,0,0,.14),0px 0px 0px 0px rgba(0,0,0,.12);--mdc-switch-disabled-label-text-color:rgba(0,0,0,.38)}html .mat-mdc-slide-toggle{--mat-switch-label-text-color:rgba(0,0,0,.87)}html .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color:#fb8c00;--mdc-switch-selected-handle-color:#fb8c00;--mdc-switch-selected-hover-state-layer-color:#fb8c00;--mdc-switch-selected-pressed-state-layer-color:#fb8c00;--mdc-switch-selected-focus-handle-color:#e65100;--mdc-switch-selected-hover-handle-color:#e65100;--mdc-switch-selected-pressed-handle-color:#e65100;--mdc-switch-selected-focus-track-color:#ffb74d;--mdc-switch-selected-hover-track-color:#ffb74d;--mdc-switch-selected-pressed-track-color:#ffb74d;--mdc-switch-selected-track-color:#ffb74d}html .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color:#e53935;--mdc-switch-selected-handle-color:#e53935;--mdc-switch-selected-hover-state-layer-color:#e53935;--mdc-switch-selected-pressed-state-layer-color:#e53935;--mdc-switch-selected-focus-handle-color:#b71c1c;--mdc-switch-selected-hover-handle-color:#b71c1c;--mdc-switch-selected-pressed-handle-color:#b71c1c;--mdc-switch-selected-focus-track-color:#e57373;--mdc-switch-selected-hover-track-color:#e57373;--mdc-switch-selected-pressed-track-color:#e57373;--mdc-switch-selected-track-color:#e57373}html{--mdc-switch-state-layer-size:40px}html .mat-mdc-slide-toggle{--mat-switch-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-switch-label-text-line-height:20px;--mat-switch-label-text-size:14px;--mat-switch-label-text-tracking:normal;--mat-switch-label-text-weight:400}html{--mdc-radio-disabled-selected-icon-opacity:0.38;--mdc-radio-disabled-unselected-icon-opacity:0.38}.mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#2196f3;--mdc-radio-selected-hover-icon-color:#2196f3;--mdc-radio-selected-icon-color:#2196f3;--mdc-radio-selected-pressed-icon-color:#2196f3;--mat-radio-ripple-color:#000;--mat-radio-checked-ripple-color:#2196f3;--mat-radio-disabled-label-color:rgba(0,0,0,.38);--mat-radio-label-text-color:rgba(0,0,0,.87)}.mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#ff9800;--mdc-radio-selected-hover-icon-color:#ff9800;--mdc-radio-selected-icon-color:#ff9800;--mdc-radio-selected-pressed-icon-color:#ff9800;--mat-radio-ripple-color:#000;--mat-radio-checked-ripple-color:#ff9800;--mat-radio-disabled-label-color:rgba(0,0,0,.38);--mat-radio-label-text-color:rgba(0,0,0,.87)}.mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#f44336;--mdc-radio-selected-hover-icon-color:#f44336;--mdc-radio-selected-icon-color:#f44336;--mdc-radio-selected-pressed-icon-color:#f44336;--mat-radio-ripple-color:#000;--mat-radio-checked-ripple-color:#f44336;--mat-radio-disabled-label-color:rgba(0,0,0,.38);--mat-radio-label-text-color:rgba(0,0,0,.87)}html{--mdc-radio-state-layer-size:40px;--mat-radio-touch-target-display:block;--mat-radio-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-radio-label-text-line-height:20px;--mat-radio-label-text-size:14px;--mat-radio-label-text-tracking:normal;--mat-radio-label-text-weight:400;--mdc-slider-active-track-height:6px;--mdc-slider-active-track-shape:9999px;--mdc-slider-handle-height:20px;--mdc-slider-handle-shape:50%;--mdc-slider-handle-width:20px;--mdc-slider-inactive-track-height:4px;--mdc-slider-inactive-track-shape:9999px;--mdc-slider-with-overlap-handle-outline-width:1px;--mdc-slider-with-tick-marks-active-container-opacity:0.6;--mdc-slider-with-tick-marks-container-shape:50%;--mdc-slider-with-tick-marks-container-size:2px;--mdc-slider-with-tick-marks-inactive-container-opacity:0.6;--mdc-slider-handle-elevation:0px 2px 1px -1px rgba(0,0,0,.2),0px 1px 1px 0px rgba(0,0,0,.14),0px 1px 3px 0px rgba(0,0,0,.12);--mat-slider-value-indicator-width:auto;--mat-slider-value-indicator-height:32px;--mat-slider-value-indicator-caret-display:block;--mat-slider-value-indicator-border-radius:4px;--mat-slider-value-indicator-padding:0 12px;--mat-slider-value-indicator-text-transform:none;--mat-slider-value-indicator-container-transform:translateX(-50%);--mdc-slider-handle-color:#2196f3;--mdc-slider-focus-handle-color:#2196f3;--mdc-slider-hover-handle-color:#2196f3;--mdc-slider-active-track-color:#2196f3;--mdc-slider-inactive-track-color:#2196f3;--mdc-slider-with-tick-marks-inactive-container-color:#2196f3;--mdc-slider-with-tick-marks-active-container-color:#fff;--mdc-slider-disabled-active-track-color:#000;--mdc-slider-disabled-handle-color:#000;--mdc-slider-disabled-inactive-track-color:#000;--mdc-slider-label-container-color:#000;--mdc-slider-label-label-text-color:#fff;--mdc-slider-with-overlap-handle-outline-color:#fff;--mdc-slider-with-tick-marks-disabled-container-color:#000;--mat-slider-ripple-color:#2196f3;--mat-slider-hover-state-layer-color:rgba(33,150,243,.05);--mat-slider-focus-state-layer-color:rgba(33,150,243,.2);--mat-slider-value-indicator-opacity:0.6}html .mat-accent{--mdc-slider-handle-color:#ff9800;--mdc-slider-focus-handle-color:#ff9800;--mdc-slider-hover-handle-color:#ff9800;--mdc-slider-active-track-color:#ff9800;--mdc-slider-inactive-track-color:#ff9800;--mdc-slider-with-tick-marks-inactive-container-color:#ff9800;--mdc-slider-with-tick-marks-active-container-color:hsla(0,0%,100%,.87);--mat-slider-ripple-color:#ff9800;--mat-slider-hover-state-layer-color:rgba(255,152,0,.05);--mat-slider-focus-state-layer-color:rgba(255,152,0,.2)}html .mat-warn{--mdc-slider-handle-color:#f44336;--mdc-slider-focus-handle-color:#f44336;--mdc-slider-hover-handle-color:#f44336;--mdc-slider-active-track-color:#f44336;--mdc-slider-inactive-track-color:#f44336;--mdc-slider-with-tick-marks-inactive-container-color:#f44336;--mdc-slider-with-tick-marks-active-container-color:#fff;--mat-slider-ripple-color:#f44336;--mat-slider-hover-state-layer-color:rgba(244,67,54,.05);--mat-slider-focus-state-layer-color:rgba(244,67,54,.2)}html{--mdc-slider-label-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-slider-label-label-text-size:14px;--mdc-slider-label-label-text-line-height:24px;--mdc-slider-label-label-text-tracking:normal;--mdc-slider-label-label-text-weight:500;--mat-menu-container-shape:4px;--mat-menu-divider-bottom-spacing:0;--mat-menu-divider-top-spacing:0;--mat-menu-item-spacing:16px;--mat-menu-item-icon-size:24px;--mat-menu-item-leading-spacing:16px;--mat-menu-item-trailing-spacing:16px;--mat-menu-item-with-icon-leading-spacing:16px;--mat-menu-item-with-icon-trailing-spacing:16px;--mat-menu-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mat-menu-item-label-text-color:rgba(0,0,0,.87);--mat-menu-item-icon-color:rgba(0,0,0,.87);--mat-menu-item-hover-state-layer-color:rgba(0,0,0,.04);--mat-menu-item-focus-state-layer-color:rgba(0,0,0,.04);--mat-menu-container-color:#fff;--mat-menu-divider-color:rgba(0,0,0,.12);--mat-menu-item-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-menu-item-label-text-size:15px;--mat-menu-item-label-text-tracking:normal;--mat-menu-item-label-text-line-height:24px;--mat-menu-item-label-text-weight:400;--mdc-list-list-item-container-shape:0;--mdc-list-list-item-leading-avatar-shape:50%;--mdc-list-list-item-container-color:transparent;--mdc-list-list-item-selected-container-color:transparent;--mdc-list-list-item-leading-avatar-color:transparent;--mdc-list-list-item-leading-icon-size:24px;--mdc-list-list-item-leading-avatar-size:40px;--mdc-list-list-item-trailing-icon-size:24px;--mdc-list-list-item-disabled-state-layer-color:transparent;--mdc-list-list-item-disabled-state-layer-opacity:0;--mdc-list-list-item-disabled-label-text-opacity:0.38;--mdc-list-list-item-disabled-leading-icon-opacity:0.38;--mdc-list-list-item-disabled-trailing-icon-opacity:0.38;--mat-list-active-indicator-color:transparent;--mat-list-active-indicator-shape:4px;--mdc-list-list-item-label-text-color:rgba(0,0,0,.87);--mdc-list-list-item-supporting-text-color:rgba(0,0,0,.54);--mdc-list-list-item-leading-icon-color:rgba(0,0,0,.38);--mdc-list-list-item-trailing-supporting-text-color:rgba(0,0,0,.38);--mdc-list-list-item-trailing-icon-color:rgba(0,0,0,.38);--mdc-list-list-item-selected-trailing-icon-color:rgba(0,0,0,.38);--mdc-list-list-item-disabled-label-text-color:#000;--mdc-list-list-item-disabled-leading-icon-color:#000;--mdc-list-list-item-disabled-trailing-icon-color:#000;--mdc-list-list-item-hover-label-text-color:rgba(0,0,0,.87);--mdc-list-list-item-hover-leading-icon-color:rgba(0,0,0,.38);--mdc-list-list-item-hover-trailing-icon-color:rgba(0,0,0,.38);--mdc-list-list-item-focus-label-text-color:rgba(0,0,0,.87);--mdc-list-list-item-hover-state-layer-color:#000;--mdc-list-list-item-hover-state-layer-opacity:0.04;--mdc-list-list-item-focus-state-layer-color:#000;--mdc-list-list-item-focus-state-layer-opacity:0.12}.mdc-list-item__end,.mdc-list-item__start{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#2196f3;--mdc-radio-selected-hover-icon-color:#2196f3;--mdc-radio-selected-icon-color:#2196f3;--mdc-radio-selected-pressed-icon-color:#2196f3}.mat-accent .mdc-list-item__end,.mat-accent .mdc-list-item__start{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#ff9800;--mdc-radio-selected-hover-icon-color:#ff9800;--mdc-radio-selected-icon-color:#ff9800;--mdc-radio-selected-pressed-icon-color:#ff9800}.mat-warn .mdc-list-item__end,.mat-warn .mdc-list-item__start{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#f44336;--mdc-radio-selected-hover-icon-color:#f44336;--mdc-radio-selected-icon-color:#f44336;--mdc-radio-selected-pressed-icon-color:#f44336}.mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#2196f3;--mdc-checkbox-selected-hover-icon-color:#2196f3;--mdc-checkbox-selected-icon-color:#2196f3;--mdc-checkbox-selected-pressed-icon-color:#2196f3;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#2196f3;--mdc-checkbox-selected-hover-state-layer-color:#2196f3;--mdc-checkbox-selected-pressed-state-layer-color:#2196f3;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}.mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#ff9800;--mdc-checkbox-selected-hover-icon-color:#ff9800;--mdc-checkbox-selected-icon-color:#ff9800;--mdc-checkbox-selected-pressed-icon-color:#ff9800;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#ff9800;--mdc-checkbox-selected-hover-state-layer-color:#ff9800;--mdc-checkbox-selected-pressed-state-layer-color:#ff9800;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}.mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#f44336;--mdc-checkbox-selected-hover-icon-color:#f44336;--mdc-checkbox-selected-icon-color:#f44336;--mdc-checkbox-selected-pressed-icon-color:#f44336;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#f44336;--mdc-checkbox-selected-hover-state-layer-color:#f44336;--mdc-checkbox-selected-pressed-state-layer-color:#f44336;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start{color:#2196f3}.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start{opacity:1}html{--mdc-list-list-item-one-line-container-height:48px;--mdc-list-list-item-two-line-container-height:64px;--mdc-list-list-item-three-line-container-height:88px;--mat-list-list-item-leading-icon-start-space:16px;--mat-list-list-item-leading-icon-end-space:32px}.mdc-list-item__end,.mdc-list-item__start{--mdc-radio-state-layer-size:40px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}html{--mdc-list-list-item-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-list-list-item-label-text-line-height:24px;--mdc-list-list-item-label-text-size:15px;--mdc-list-list-item-label-text-tracking:normal;--mdc-list-list-item-label-text-weight:400;--mdc-list-list-item-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-list-list-item-supporting-text-line-height:20px;--mdc-list-list-item-supporting-text-size:14px;--mdc-list-list-item-supporting-text-tracking:normal;--mdc-list-list-item-supporting-text-weight:400;--mdc-list-list-item-trailing-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-list-list-item-trailing-supporting-text-line-height:20px;--mdc-list-list-item-trailing-supporting-text-size:12px;--mdc-list-list-item-trailing-supporting-text-tracking:normal;--mdc-list-list-item-trailing-supporting-text-weight:400}.mdc-list-group__subheader{font:400 16px/28px Muli,Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}html{--mat-paginator-container-text-color:rgba(0,0,0,.87);--mat-paginator-container-background-color:#fff;--mat-paginator-enabled-icon-color:rgba(0,0,0,.54);--mat-paginator-disabled-icon-color:rgba(0,0,0,.12);--mat-paginator-container-size:56px;--mat-paginator-form-field-container-height:40px;--mat-paginator-form-field-container-vertical-padding:8px;--mat-paginator-touch-target-display:block;--mat-paginator-container-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-paginator-container-text-line-height:20px;--mat-paginator-container-text-size:12px;--mat-paginator-container-text-tracking:normal;--mat-paginator-container-text-weight:400;--mat-paginator-select-trigger-text-size:12px;--mdc-secondary-navigation-tab-container-height:48px;--mdc-tab-indicator-active-indicator-height:2px;--mdc-tab-indicator-active-indicator-shape:0;--mat-tab-header-divider-color:transparent;--mat-tab-header-divider-height:0}.mat-mdc-tab-group,.mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color:#2196f3;--mat-tab-header-disabled-ripple-color:rgba(0,0,0,.38);--mat-tab-header-pagination-icon-color:#000;--mat-tab-header-inactive-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-label-text-color:#2196f3;--mat-tab-header-active-ripple-color:#2196f3;--mat-tab-header-inactive-ripple-color:#2196f3;--mat-tab-header-inactive-focus-label-text-color:rgba(0,0,0,.6);--mat-tab-header-inactive-hover-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-focus-label-text-color:#2196f3;--mat-tab-header-active-hover-label-text-color:#2196f3;--mat-tab-header-active-focus-indicator-color:#2196f3;--mat-tab-header-active-hover-indicator-color:#2196f3}.mat-mdc-tab-group.mat-accent,.mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color:#ff9800;--mat-tab-header-disabled-ripple-color:rgba(0,0,0,.38);--mat-tab-header-pagination-icon-color:#000;--mat-tab-header-inactive-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-label-text-color:#ff9800;--mat-tab-header-active-ripple-color:#ff9800;--mat-tab-header-inactive-ripple-color:#ff9800;--mat-tab-header-inactive-focus-label-text-color:rgba(0,0,0,.6);--mat-tab-header-inactive-hover-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-focus-label-text-color:#ff9800;--mat-tab-header-active-hover-label-text-color:#ff9800;--mat-tab-header-active-focus-indicator-color:#ff9800;--mat-tab-header-active-hover-indicator-color:#ff9800}.mat-mdc-tab-group.mat-warn,.mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color:#f44336;--mat-tab-header-disabled-ripple-color:rgba(0,0,0,.38);--mat-tab-header-pagination-icon-color:#000;--mat-tab-header-inactive-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-label-text-color:#f44336;--mat-tab-header-active-ripple-color:#f44336;--mat-tab-header-inactive-ripple-color:#f44336;--mat-tab-header-inactive-focus-label-text-color:rgba(0,0,0,.6);--mat-tab-header-inactive-hover-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-focus-label-text-color:#f44336;--mat-tab-header-active-hover-label-text-color:#f44336;--mat-tab-header-active-focus-indicator-color:#f44336;--mat-tab-header-active-hover-indicator-color:#f44336}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color:#2196f3;--mat-tab-header-with-background-foreground-color:#fff}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color:#ff9800;--mat-tab-header-with-background-foreground-color:hsla(0,0%,100%,.87)}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color:#f44336;--mat-tab-header-with-background-foreground-color:#fff}.mat-mdc-tab-header{--mdc-secondary-navigation-tab-container-height:48px;--mat-tab-header-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-tab-header-label-text-size:14px;--mat-tab-header-label-text-tracking:normal;--mat-tab-header-label-text-line-height:14px;--mat-tab-header-label-text-weight:500}html{--mdc-checkbox-disabled-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-state-layer-opacity:0.16;--mdc-checkbox-selected-hover-state-layer-opacity:0.04;--mdc-checkbox-selected-pressed-state-layer-opacity:0.16;--mdc-checkbox-unselected-focus-state-layer-opacity:0.16;--mdc-checkbox-unselected-hover-state-layer-opacity:0.04;--mdc-checkbox-unselected-pressed-state-layer-opacity:0.16;--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#ff9800;--mdc-checkbox-selected-hover-icon-color:#ff9800;--mdc-checkbox-selected-icon-color:#ff9800;--mdc-checkbox-selected-pressed-icon-color:#ff9800;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#ff9800;--mdc-checkbox-selected-hover-state-layer-color:#ff9800;--mdc-checkbox-selected-pressed-state-layer-color:#ff9800;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000;--mat-checkbox-disabled-label-color:rgba(0,0,0,.38);--mat-checkbox-label-text-color:rgba(0,0,0,.87)}.mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#2196f3;--mdc-checkbox-selected-hover-icon-color:#2196f3;--mdc-checkbox-selected-icon-color:#2196f3;--mdc-checkbox-selected-pressed-icon-color:#2196f3;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#2196f3;--mdc-checkbox-selected-hover-state-layer-color:#2196f3;--mdc-checkbox-selected-pressed-state-layer-color:#2196f3;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}.mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#f44336;--mdc-checkbox-selected-hover-icon-color:#f44336;--mdc-checkbox-selected-icon-color:#f44336;--mdc-checkbox-selected-pressed-icon-color:#f44336;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#f44336;--mdc-checkbox-selected-hover-state-layer-color:#f44336;--mdc-checkbox-selected-pressed-state-layer-color:#f44336;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}html{--mdc-checkbox-state-layer-size:40px;--mat-checkbox-touch-target-display:block;--mat-checkbox-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-checkbox-label-text-line-height:20px;--mat-checkbox-label-text-size:14px;--mat-checkbox-label-text-tracking:normal;--mat-checkbox-label-text-weight:400;--mdc-text-button-container-shape:4px;--mdc-text-button-keep-touch-target:false;--mdc-filled-button-container-shape:4px;--mdc-filled-button-keep-touch-target:false;--mdc-protected-button-container-shape:4px;--mdc-protected-button-container-elevation-shadow:0px 3px 1px -2px rgba(0,0,0,.2),0px 2px 2px 0px rgba(0,0,0,.14),0px 1px 5px 0px rgba(0,0,0,.12);--mdc-protected-button-disabled-container-elevation-shadow:0px 0px 0px 0px rgba(0,0,0,.2),0px 0px 0px 0px rgba(0,0,0,.14),0px 0px 0px 0px rgba(0,0,0,.12);--mdc-protected-button-focus-container-elevation-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12);--mdc-protected-button-hover-container-elevation-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12);--mdc-protected-button-pressed-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-outlined-button-keep-touch-target:false;--mdc-outlined-button-outline-width:1px;--mdc-outlined-button-container-shape:4px;--mat-text-button-horizontal-padding:8px;--mat-text-button-with-icon-horizontal-padding:8px;--mat-text-button-icon-spacing:8px;--mat-text-button-icon-offset:0;--mat-filled-button-horizontal-padding:16px;--mat-filled-button-icon-spacing:8px;--mat-filled-button-icon-offset:-4px;--mat-protected-button-horizontal-padding:16px;--mat-protected-button-icon-spacing:8px;--mat-protected-button-icon-offset:-4px;--mat-outlined-button-horizontal-padding:15px;--mat-outlined-button-icon-spacing:8px;--mat-outlined-button-icon-offset:-4px;--mdc-text-button-label-text-color:#000;--mdc-text-button-disabled-label-text-color:rgba(0,0,0,.38);--mat-text-button-state-layer-color:#000;--mat-text-button-disabled-state-layer-color:#000;--mat-text-button-ripple-color:rgba(0,0,0,.1);--mat-text-button-hover-state-layer-opacity:0.04;--mat-text-button-focus-state-layer-opacity:0.12;--mat-text-button-pressed-state-layer-opacity:0.12;--mdc-filled-button-container-color:#fff;--mdc-filled-button-label-text-color:#000;--mdc-filled-button-disabled-container-color:rgba(0,0,0,.12);--mdc-filled-button-disabled-label-text-color:rgba(0,0,0,.38);--mat-filled-button-state-layer-color:#000;--mat-filled-button-disabled-state-layer-color:#000;--mat-filled-button-ripple-color:rgba(0,0,0,.1);--mat-filled-button-hover-state-layer-opacity:0.04;--mat-filled-button-focus-state-layer-opacity:0.12;--mat-filled-button-pressed-state-layer-opacity:0.12;--mdc-protected-button-container-color:#fff;--mdc-protected-button-label-text-color:#000;--mdc-protected-button-disabled-container-color:rgba(0,0,0,.12);--mdc-protected-button-disabled-label-text-color:rgba(0,0,0,.38);--mat-protected-button-state-layer-color:#000;--mat-protected-button-disabled-state-layer-color:#000;--mat-protected-button-ripple-color:rgba(0,0,0,.1);--mat-protected-button-hover-state-layer-opacity:0.04;--mat-protected-button-focus-state-layer-opacity:0.12;--mat-protected-button-pressed-state-layer-opacity:0.12;--mdc-outlined-button-disabled-outline-color:rgba(0,0,0,.12);--mdc-outlined-button-disabled-label-text-color:rgba(0,0,0,.38);--mdc-outlined-button-label-text-color:#000;--mdc-outlined-button-outline-color:rgba(0,0,0,.12);--mat-outlined-button-state-layer-color:#000;--mat-outlined-button-disabled-state-layer-color:#000;--mat-outlined-button-ripple-color:rgba(0,0,0,.1);--mat-outlined-button-hover-state-layer-opacity:0.04;--mat-outlined-button-focus-state-layer-opacity:0.12;--mat-outlined-button-pressed-state-layer-opacity:0.12}.mat-mdc-button.mat-primary{--mdc-text-button-label-text-color:#2196f3;--mat-text-button-state-layer-color:#2196f3;--mat-text-button-ripple-color:rgba(33,150,243,.1)}.mat-mdc-button.mat-accent{--mdc-text-button-label-text-color:#ff9800;--mat-text-button-state-layer-color:#ff9800;--mat-text-button-ripple-color:rgba(255,152,0,.1)}.mat-mdc-button.mat-warn{--mdc-text-button-label-text-color:#f44336;--mat-text-button-state-layer-color:#f44336;--mat-text-button-ripple-color:rgba(244,67,54,.1)}.mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color:#2196f3;--mdc-filled-button-label-text-color:#fff;--mat-filled-button-state-layer-color:#fff;--mat-filled-button-ripple-color:hsla(0,0%,100%,.1)}.mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color:#ff9800;--mdc-filled-button-label-text-color:#fff;--mat-filled-button-state-layer-color:#fff;--mat-filled-button-ripple-color:hsla(0,0%,100%,.1)}.mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color:#f44336;--mdc-filled-button-label-text-color:#fff;--mat-filled-button-state-layer-color:#fff;--mat-filled-button-ripple-color:hsla(0,0%,100%,.1)}.mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color:#2196f3;--mdc-protected-button-label-text-color:#fff;--mat-protected-button-state-layer-color:#fff;--mat-protected-button-ripple-color:hsla(0,0%,100%,.1)}.mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color:#ff9800;--mdc-protected-button-label-text-color:#fff;--mat-protected-button-state-layer-color:#fff;--mat-protected-button-ripple-color:hsla(0,0%,100%,.1)}.mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color:#f44336;--mdc-protected-button-label-text-color:#fff;--mat-protected-button-state-layer-color:#fff;--mat-protected-button-ripple-color:hsla(0,0%,100%,.1)}.mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color:#2196f3;--mdc-outlined-button-outline-color:rgba(0,0,0,.12);--mat-outlined-button-state-layer-color:#2196f3;--mat-outlined-button-ripple-color:rgba(33,150,243,.1)}.mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color:#ff9800;--mdc-outlined-button-outline-color:rgba(0,0,0,.12);--mat-outlined-button-state-layer-color:#ff9800;--mat-outlined-button-ripple-color:rgba(255,152,0,.1)}.mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color:#f44336;--mdc-outlined-button-outline-color:rgba(0,0,0,.12);--mat-outlined-button-state-layer-color:#f44336;--mat-outlined-button-ripple-color:rgba(244,67,54,.1)}html{--mdc-text-button-container-height:36px;--mdc-filled-button-container-height:36px;--mdc-protected-button-container-height:36px;--mdc-outlined-button-container-height:36px;--mat-text-button-touch-target-display:block;--mat-filled-button-touch-target-display:block;--mat-protected-button-touch-target-display:block;--mat-outlined-button-touch-target-display:block;--mdc-text-button-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-text-button-label-text-size:14px;--mdc-text-button-label-text-tracking:normal;--mdc-text-button-label-text-weight:500;--mdc-text-button-label-text-transform:none;--mdc-filled-button-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-filled-button-label-text-size:14px;--mdc-filled-button-label-text-tracking:normal;--mdc-filled-button-label-text-weight:500;--mdc-filled-button-label-text-transform:none;--mdc-protected-button-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-protected-button-label-text-size:14px;--mdc-protected-button-label-text-tracking:normal;--mdc-protected-button-label-text-weight:500;--mdc-protected-button-label-text-transform:none;--mdc-outlined-button-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-outlined-button-label-text-size:14px;--mdc-outlined-button-label-text-tracking:normal;--mdc-outlined-button-label-text-weight:500;--mdc-outlined-button-label-text-transform:none;--mdc-icon-button-icon-size:24px;--mdc-icon-button-icon-color:inherit;--mdc-icon-button-disabled-icon-color:rgba(0,0,0,.38);--mat-icon-button-state-layer-color:#000;--mat-icon-button-disabled-state-layer-color:#000;--mat-icon-button-ripple-color:rgba(0,0,0,.1);--mat-icon-button-hover-state-layer-opacity:0.04;--mat-icon-button-focus-state-layer-opacity:0.12;--mat-icon-button-pressed-state-layer-opacity:0.12}html .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color:#2196f3;--mat-icon-button-state-layer-color:#2196f3;--mat-icon-button-ripple-color:rgba(33,150,243,.1)}html .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color:#ff9800;--mat-icon-button-state-layer-color:#ff9800;--mat-icon-button-ripple-color:rgba(255,152,0,.1)}html .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color:#f44336;--mat-icon-button-state-layer-color:#f44336;--mat-icon-button-ripple-color:rgba(244,67,54,.1)}html{--mat-icon-button-touch-target-display:block}.mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size:48px;height:var(--mdc-icon-button-state-layer-size);padding:12px;width:var(--mdc-icon-button-state-layer-size)}html{--mdc-fab-container-shape:50%;--mdc-fab-container-elevation-shadow:0px 3px 5px -1px rgba(0,0,0,.2),0px 6px 10px 0px rgba(0,0,0,.14),0px 1px 18px 0px rgba(0,0,0,.12);--mdc-fab-focus-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-fab-hover-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-fab-pressed-container-elevation-shadow:0px 7px 8px -4px rgba(0,0,0,.2),0px 12px 17px 2px rgba(0,0,0,.14),0px 5px 22px 4px rgba(0,0,0,.12);--mdc-fab-small-container-shape:50%;--mdc-fab-small-container-elevation-shadow:0px 3px 5px -1px rgba(0,0,0,.2),0px 6px 10px 0px rgba(0,0,0,.14),0px 1px 18px 0px rgba(0,0,0,.12);--mdc-fab-small-focus-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-fab-small-hover-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-fab-small-pressed-container-elevation-shadow:0px 7px 8px -4px rgba(0,0,0,.2),0px 12px 17px 2px rgba(0,0,0,.14),0px 5px 22px 4px rgba(0,0,0,.12);--mdc-extended-fab-container-height:48px;--mdc-extended-fab-container-shape:24px;--mdc-extended-fab-container-elevation-shadow:0px 3px 5px -1px rgba(0,0,0,.2),0px 6px 10px 0px rgba(0,0,0,.14),0px 1px 18px 0px rgba(0,0,0,.12);--mdc-extended-fab-focus-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-extended-fab-hover-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-extended-fab-pressed-container-elevation-shadow:0px 7px 8px -4px rgba(0,0,0,.2),0px 12px 17px 2px rgba(0,0,0,.14),0px 5px 22px 4px rgba(0,0,0,.12);--mdc-fab-container-color:#fff;--mat-fab-foreground-color:#000;--mat-fab-state-layer-color:#000;--mat-fab-disabled-state-layer-color:#000;--mat-fab-ripple-color:rgba(0,0,0,.1);--mat-fab-hover-state-layer-opacity:0.04;--mat-fab-focus-state-layer-opacity:0.12;--mat-fab-pressed-state-layer-opacity:0.12;--mat-fab-disabled-state-container-color:rgba(0,0,0,.12);--mat-fab-disabled-state-foreground-color:rgba(0,0,0,.38);--mdc-fab-small-container-color:#fff;--mat-fab-small-foreground-color:#000;--mat-fab-small-state-layer-color:#000;--mat-fab-small-disabled-state-layer-color:#000;--mat-fab-small-ripple-color:rgba(0,0,0,.1);--mat-fab-small-hover-state-layer-opacity:0.04;--mat-fab-small-focus-state-layer-opacity:0.12;--mat-fab-small-pressed-state-layer-opacity:0.12;--mat-fab-small-disabled-state-container-color:rgba(0,0,0,.12);--mat-fab-small-disabled-state-foreground-color:rgba(0,0,0,.38)}html .mat-mdc-fab.mat-primary{--mdc-fab-container-color:#2196f3;--mat-fab-foreground-color:#fff;--mat-fab-state-layer-color:#fff;--mat-fab-ripple-color:hsla(0,0%,100%,.1)}html .mat-mdc-fab.mat-accent{--mdc-fab-container-color:#ff9800;--mat-fab-foreground-color:#fff;--mat-fab-state-layer-color:#fff;--mat-fab-ripple-color:hsla(0,0%,100%,.1)}html .mat-mdc-fab.mat-warn{--mdc-fab-container-color:#f44336;--mat-fab-foreground-color:#fff;--mat-fab-state-layer-color:#fff;--mat-fab-ripple-color:hsla(0,0%,100%,.1)}html .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color:#2196f3;--mat-fab-small-foreground-color:#fff;--mat-fab-small-state-layer-color:#fff;--mat-fab-small-ripple-color:hsla(0,0%,100%,.1)}html .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color:#ff9800;--mat-fab-small-foreground-color:#fff;--mat-fab-small-state-layer-color:#fff;--mat-fab-small-ripple-color:hsla(0,0%,100%,.1)}html .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color:#f44336;--mat-fab-small-foreground-color:#fff;--mat-fab-small-state-layer-color:#fff;--mat-fab-small-ripple-color:hsla(0,0%,100%,.1)}html{--mat-fab-touch-target-display:block;--mat-fab-small-touch-target-display:block;--mdc-extended-fab-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-extended-fab-label-text-size:14px;--mdc-extended-fab-label-text-tracking:normal;--mdc-extended-fab-label-text-weight:500;--mdc-snackbar-container-shape:4px;--mdc-snackbar-container-color:#333;--mdc-snackbar-supporting-text-color:hsla(0,0%,100%,.87);--mat-snack-bar-button-color:#bbdefb;--mdc-snackbar-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-snackbar-supporting-text-line-height:20px;--mdc-snackbar-supporting-text-size:14px;--mdc-snackbar-supporting-text-weight:400;--mat-table-row-item-outline-width:1px;--mat-table-background-color:#fff;--mat-table-header-headline-color:rgba(0,0,0,.87);--mat-table-row-item-label-text-color:rgba(0,0,0,.87);--mat-table-row-item-outline-color:rgba(0,0,0,.12);--mat-table-header-container-height:56px;--mat-table-footer-container-height:52px;--mat-table-row-item-container-height:52px;--mat-table-header-headline-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-table-header-headline-line-height:24px;--mat-table-header-headline-size:14px;--mat-table-header-headline-weight:500;--mat-table-header-headline-tracking:normal;--mat-table-row-item-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-table-row-item-label-text-line-height:20px;--mat-table-row-item-label-text-size:14px;--mat-table-row-item-label-text-weight:400;--mat-table-row-item-label-text-tracking:normal;--mat-table-footer-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-table-footer-supporting-text-line-height:20px;--mat-table-footer-supporting-text-size:14px;--mat-table-footer-supporting-text-weight:400;--mat-table-footer-supporting-text-tracking:normal;--mdc-circular-progress-active-indicator-width:4px;--mdc-circular-progress-size:48px;--mdc-circular-progress-active-indicator-color:#2196f3}html .mat-accent{--mdc-circular-progress-active-indicator-color:#ff9800}html .mat-warn{--mdc-circular-progress-active-indicator-color:#f44336}html{--mat-badge-container-shape:50%;--mat-badge-container-size:unset;--mat-badge-small-size-container-size:unset;--mat-badge-large-size-container-size:unset;--mat-badge-legacy-container-size:22px;--mat-badge-legacy-small-size-container-size:16px;--mat-badge-legacy-large-size-container-size:28px;--mat-badge-container-offset:-11px 0;--mat-badge-small-size-container-offset:-8px 0;--mat-badge-large-size-container-offset:-14px 0;--mat-badge-container-overlap-offset:-11px;--mat-badge-small-size-container-overlap-offset:-8px;--mat-badge-large-size-container-overlap-offset:-14px;--mat-badge-container-padding:0;--mat-badge-small-size-container-padding:0;--mat-badge-large-size-container-padding:0;--mat-badge-background-color:#2196f3;--mat-badge-text-color:#fff;--mat-badge-disabled-state-background-color:#b9b9b9;--mat-badge-disabled-state-text-color:rgba(0,0,0,.38)}.mat-badge-accent{--mat-badge-background-color:#ff9800;--mat-badge-text-color:hsla(0,0%,100%,.87)}.mat-badge-warn{--mat-badge-background-color:#f44336;--mat-badge-text-color:#fff}html{--mat-badge-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-badge-line-height:22px;--mat-badge-text-size:12px;--mat-badge-text-weight:600;--mat-badge-small-size-text-size:9px;--mat-badge-small-size-line-height:16px;--mat-badge-large-size-text-size:24px;--mat-badge-large-size-line-height:28px;--mat-bottom-sheet-container-shape:4px;--mat-bottom-sheet-container-text-color:rgba(0,0,0,.87);--mat-bottom-sheet-container-background-color:#fff;--mat-bottom-sheet-container-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-bottom-sheet-container-text-line-height:20px;--mat-bottom-sheet-container-text-size:14px;--mat-bottom-sheet-container-text-tracking:normal;--mat-bottom-sheet-container-text-weight:400;--mat-legacy-button-toggle-height:36px;--mat-legacy-button-toggle-shape:2px;--mat-legacy-button-toggle-focus-state-layer-opacity:1;--mat-standard-button-toggle-shape:4px;--mat-standard-button-toggle-hover-state-layer-opacity:0.04;--mat-standard-button-toggle-focus-state-layer-opacity:0.12;--mat-legacy-button-toggle-text-color:rgba(0,0,0,.38);--mat-legacy-button-toggle-state-layer-color:rgba(0,0,0,.12);--mat-legacy-button-toggle-selected-state-text-color:rgba(0,0,0,.54);--mat-legacy-button-toggle-selected-state-background-color:#e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color:rgba(0,0,0,.26);--mat-legacy-button-toggle-disabled-state-background-color:#eee;--mat-legacy-button-toggle-disabled-selected-state-background-color:#bdbdbd;--mat-standard-button-toggle-text-color:rgba(0,0,0,.87);--mat-standard-button-toggle-background-color:#fff;--mat-standard-button-toggle-state-layer-color:#000;--mat-standard-button-toggle-selected-state-background-color:#e0e0e0;--mat-standard-button-toggle-selected-state-text-color:rgba(0,0,0,.87);--mat-standard-button-toggle-disabled-state-text-color:rgba(0,0,0,.26);--mat-standard-button-toggle-disabled-state-background-color:#fff;--mat-standard-button-toggle-disabled-selected-state-text-color:rgba(0,0,0,.87);--mat-standard-button-toggle-disabled-selected-state-background-color:#bdbdbd;--mat-standard-button-toggle-divider-color:#e0e0e0;--mat-standard-button-toggle-height:48px;--mat-legacy-button-toggle-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-legacy-button-toggle-label-text-line-height:24px;--mat-legacy-button-toggle-label-text-size:15px;--mat-legacy-button-toggle-label-text-tracking:normal;--mat-legacy-button-toggle-label-text-weight:400;--mat-standard-button-toggle-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-standard-button-toggle-label-text-line-height:24px;--mat-standard-button-toggle-label-text-size:15px;--mat-standard-button-toggle-label-text-tracking:normal;--mat-standard-button-toggle-label-text-weight:400;--mat-datepicker-calendar-container-shape:4px;--mat-datepicker-calendar-container-touch-shape:4px;--mat-datepicker-calendar-container-elevation-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12);--mat-datepicker-calendar-container-touch-elevation-shadow:0px 11px 15px -7px rgba(0,0,0,.2),0px 24px 38px 3px rgba(0,0,0,.14),0px 9px 46px 8px rgba(0,0,0,.12);--mat-datepicker-calendar-date-selected-state-text-color:#fff;--mat-datepicker-calendar-date-selected-state-background-color:#2196f3;--mat-datepicker-calendar-date-selected-disabled-state-background-color:rgba(33,150,243,.4);--mat-datepicker-calendar-date-today-selected-state-outline-color:#fff;--mat-datepicker-calendar-date-focus-state-background-color:rgba(33,150,243,.3);--mat-datepicker-calendar-date-hover-state-background-color:rgba(33,150,243,.3);--mat-datepicker-toggle-active-state-icon-color:#2196f3;--mat-datepicker-calendar-date-in-range-state-background-color:rgba(33,150,243,.2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color:rgba(249,171,0,.2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color:#a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color:#46a35e;--mat-datepicker-toggle-icon-color:rgba(0,0,0,.54);--mat-datepicker-calendar-body-label-text-color:rgba(0,0,0,.54);--mat-datepicker-calendar-period-button-text-color:#000;--mat-datepicker-calendar-period-button-icon-color:rgba(0,0,0,.54);--mat-datepicker-calendar-navigation-button-icon-color:rgba(0,0,0,.54);--mat-datepicker-calendar-header-divider-color:rgba(0,0,0,.12);--mat-datepicker-calendar-header-text-color:rgba(0,0,0,.54);--mat-datepicker-calendar-date-today-outline-color:rgba(0,0,0,.38);--mat-datepicker-calendar-date-today-disabled-state-outline-color:rgba(0,0,0,.18);--mat-datepicker-calendar-date-text-color:rgba(0,0,0,.87);--mat-datepicker-calendar-date-outline-color:transparent;--mat-datepicker-calendar-date-disabled-state-text-color:rgba(0,0,0,.38);--mat-datepicker-calendar-date-preview-state-outline-color:rgba(0,0,0,.24);--mat-datepicker-range-input-separator-color:rgba(0,0,0,.87);--mat-datepicker-range-input-disabled-state-separator-color:rgba(0,0,0,.38);--mat-datepicker-range-input-disabled-state-text-color:rgba(0,0,0,.38);--mat-datepicker-calendar-container-background-color:#fff;--mat-datepicker-calendar-container-text-color:rgba(0,0,0,.87)}.mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color:hsla(0,0%,100%,.87);--mat-datepicker-calendar-date-selected-state-background-color:#ff9800;--mat-datepicker-calendar-date-selected-disabled-state-background-color:rgba(255,152,0,.4);--mat-datepicker-calendar-date-today-selected-state-outline-color:hsla(0,0%,100%,.87);--mat-datepicker-calendar-date-focus-state-background-color:rgba(255,152,0,.3);--mat-datepicker-calendar-date-hover-state-background-color:rgba(255,152,0,.3);--mat-datepicker-calendar-date-in-range-state-background-color:rgba(255,152,0,.2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color:rgba(249,171,0,.2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color:#a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color:#46a35e}.mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color:#fff;--mat-datepicker-calendar-date-selected-state-background-color:#f44336;--mat-datepicker-calendar-date-selected-disabled-state-background-color:rgba(244,67,54,.4);--mat-datepicker-calendar-date-today-selected-state-outline-color:#fff;--mat-datepicker-calendar-date-focus-state-background-color:rgba(244,67,54,.3);--mat-datepicker-calendar-date-hover-state-background-color:rgba(244,67,54,.3);--mat-datepicker-calendar-date-in-range-state-background-color:rgba(244,67,54,.2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color:rgba(249,171,0,.2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color:#a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color:#46a35e}.mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color:#ff9800}.mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color:#f44336}.mat-calendar-controls{--mat-icon-button-touch-target-display:none}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size:40px;height:var(--mdc-icon-button-state-layer-size);padding:8px;width:var(--mdc-icon-button-state-layer-size)}html{--mat-datepicker-calendar-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-datepicker-calendar-text-size:13px;--mat-datepicker-calendar-body-label-text-size:14px;--mat-datepicker-calendar-body-label-text-weight:500;--mat-datepicker-calendar-period-button-text-size:14px;--mat-datepicker-calendar-period-button-text-weight:500;--mat-datepicker-calendar-header-text-size:11px;--mat-datepicker-calendar-header-text-weight:400;--mat-divider-width:1px;--mat-divider-color:rgba(0,0,0,.12);--mat-expansion-container-shape:4px;--mat-expansion-legacy-header-indicator-display:inline-block;--mat-expansion-header-indicator-display:none;--mat-expansion-container-background-color:#fff;--mat-expansion-container-text-color:rgba(0,0,0,.87);--mat-expansion-actions-divider-color:rgba(0,0,0,.12);--mat-expansion-header-hover-state-layer-color:rgba(0,0,0,.04);--mat-expansion-header-focus-state-layer-color:rgba(0,0,0,.04);--mat-expansion-header-disabled-state-text-color:rgba(0,0,0,.26);--mat-expansion-header-text-color:rgba(0,0,0,.87);--mat-expansion-header-description-color:rgba(0,0,0,.54);--mat-expansion-header-indicator-color:rgba(0,0,0,.54);--mat-expansion-header-collapsed-state-height:48px;--mat-expansion-header-expanded-state-height:64px;--mat-expansion-header-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-expansion-header-text-size:14px;--mat-expansion-header-text-weight:500;--mat-expansion-header-text-line-height:inherit;--mat-expansion-header-text-tracking:inherit;--mat-expansion-container-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-expansion-container-text-line-height:20px;--mat-expansion-container-text-size:14px;--mat-expansion-container-text-tracking:normal;--mat-expansion-container-text-weight:400;--mat-grid-list-tile-header-primary-text-size:14px;--mat-grid-list-tile-header-secondary-text-size:12px;--mat-grid-list-tile-footer-primary-text-size:14px;--mat-grid-list-tile-footer-secondary-text-size:12px;--mat-icon-color:inherit}.mat-icon.mat-primary{--mat-icon-color:#2196f3}.mat-icon.mat-accent{--mat-icon-color:#ff9800}.mat-icon.mat-warn{--mat-icon-color:#f44336}html{--mat-sidenav-container-shape:0;--mat-sidenav-container-elevation-shadow:0px 8px 10px -5px rgba(0,0,0,.2),0px 16px 24px 2px rgba(0,0,0,.14),0px 6px 30px 5px rgba(0,0,0,.12);--mat-sidenav-container-width:auto;--mat-sidenav-container-divider-color:rgba(0,0,0,.12);--mat-sidenav-container-background-color:#fff;--mat-sidenav-container-text-color:rgba(0,0,0,.87);--mat-sidenav-content-background-color:#fafafa;--mat-sidenav-content-text-color:rgba(0,0,0,.87);--mat-sidenav-scrim-color:rgba(0,0,0,.6);--mat-stepper-header-icon-foreground-color:#fff;--mat-stepper-header-selected-state-icon-background-color:#2196f3;--mat-stepper-header-selected-state-icon-foreground-color:#fff;--mat-stepper-header-done-state-icon-background-color:#2196f3;--mat-stepper-header-done-state-icon-foreground-color:#fff;--mat-stepper-header-edit-state-icon-background-color:#2196f3;--mat-stepper-header-edit-state-icon-foreground-color:#fff;--mat-stepper-container-color:#fff;--mat-stepper-line-color:rgba(0,0,0,.12);--mat-stepper-header-hover-state-layer-color:rgba(0,0,0,.04);--mat-stepper-header-focus-state-layer-color:rgba(0,0,0,.04);--mat-stepper-header-label-text-color:rgba(0,0,0,.54);--mat-stepper-header-optional-label-text-color:rgba(0,0,0,.54);--mat-stepper-header-selected-state-label-text-color:rgba(0,0,0,.87);--mat-stepper-header-error-state-label-text-color:#f44336;--mat-stepper-header-icon-background-color:rgba(0,0,0,.54);--mat-stepper-header-error-state-icon-foreground-color:#f44336;--mat-stepper-header-error-state-icon-background-color:transparent}html .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color:hsla(0,0%,100%,.87);--mat-stepper-header-selected-state-icon-background-color:#ff9800;--mat-stepper-header-selected-state-icon-foreground-color:hsla(0,0%,100%,.87);--mat-stepper-header-done-state-icon-background-color:#ff9800;--mat-stepper-header-done-state-icon-foreground-color:hsla(0,0%,100%,.87);--mat-stepper-header-edit-state-icon-background-color:#ff9800;--mat-stepper-header-edit-state-icon-foreground-color:hsla(0,0%,100%,.87)}html .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color:#fff;--mat-stepper-header-selected-state-icon-background-color:#f44336;--mat-stepper-header-selected-state-icon-foreground-color:#fff;--mat-stepper-header-done-state-icon-background-color:#f44336;--mat-stepper-header-done-state-icon-foreground-color:#fff;--mat-stepper-header-edit-state-icon-background-color:#f44336;--mat-stepper-header-edit-state-icon-foreground-color:#fff}html{--mat-stepper-header-height:72px;--mat-stepper-container-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-stepper-header-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-stepper-header-label-text-size:14px;--mat-stepper-header-label-text-weight:400;--mat-stepper-header-error-state-label-text-size:15px;--mat-stepper-header-selected-state-label-text-size:15px;--mat-stepper-header-selected-state-label-text-weight:400;--mat-sort-arrow-color:#757575;--mat-toolbar-container-background-color:#f5f5f5;--mat-toolbar-container-text-color:rgba(0,0,0,.87)}.mat-toolbar.mat-primary{--mat-toolbar-container-background-color:#2196f3;--mat-toolbar-container-text-color:#fff}.mat-toolbar.mat-accent{--mat-toolbar-container-background-color:#ff9800;--mat-toolbar-container-text-color:hsla(0,0%,100%,.87)}.mat-toolbar.mat-warn{--mat-toolbar-container-background-color:#f44336;--mat-toolbar-container-text-color:#fff}html{--mat-toolbar-standard-height:64px;--mat-toolbar-mobile-height:56px;--mat-toolbar-title-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-toolbar-title-text-line-height:32px;--mat-toolbar-title-text-size:20px;--mat-toolbar-title-text-tracking:normal;--mat-toolbar-title-text-weight:500;--mat-tree-container-background-color:#fff;--mat-tree-node-text-color:rgba(0,0,0,.87);--mat-tree-node-min-height:48px;--mat-tree-node-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-tree-node-text-size:14px;--mat-tree-node-text-weight:400;--mat-timepicker-container-shape:4px;--mat-timepicker-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mat-timepicker-container-background-color:#fff}:root{--theme-primary-color:#2196f3;--theme-primary-color-default-contrast:#fff;--theme-header-text-color:#fff;--adf-theme-primary-50:#e3f2fd;--adf-theme-primary-100:#bbdefb;--adf-theme-primary-300:#64b5f6;--adf-theme-primary-900:#0d47a1;--theme-warn-color:#f44336;--theme-warn-color-a700:#d50000;--theme-warn-color-default-contrast:#fff;--theme-accent-color:#ff9800;--theme-accent-color-a200:#ffab40;--theme-accent-color-default-contrast:hsla(0,0%,100%,.87);--theme-accent-500:#ff9800;--adf-theme-foreground-base-color:#000;--adf-theme-foreground-base-color-065:rgba(0,0,0,.65);--adf-theme-foreground-base-color-045:rgba(0,0,0,.45);--adf-theme-foreground-disabled-text-color:rgba(0,0,0,.38);--adf-theme-foreground-divider-color:rgba(0,0,0,.12);--adf-theme-foreground-icon-color:rgba(0,0,0,.54);--adf-theme-foreground-icon-color-054:rgba(0,0,0,.54);--adf-theme-foreground-secondary-text-color:rgba(0,0,0,.54);--adf-theme-foreground-text-color:rgba(0,0,0,.87);--adf-theme-foreground-text-color-087:rgba(0,0,0,.87);--adf-theme-foreground-text-color-075:rgba(0,0,0,.75);--adf-theme-foreground-text-color-064:rgba(0,0,0,.64);--adf-theme-foreground-text-color-054:rgba(0,0,0,.54);--adf-theme-foreground-text-color-040:rgba(0,0,0,.4);--adf-theme-foreground-text-color-027:rgba(0,0,0,.27);--adf-theme-foreground-text-color-025:rgba(0,0,0,.25);--adf-theme-foreground-text-color-014:rgba(0,0,0,.14);--adf-theme-foreground-text-color-007:rgba(0,0,0,.07);--adf-theme-background-card-color:#fff;--adf-theme-background-card-color-087:hsla(0,0%,100%,.87);--theme-background-color:#fafafa;--adf-theme-background-dialog-color:#fff;--adf-theme-background-hover-color:rgba(0,0,0,.04);--adf-theme-background-selected-button-color:#e0e0e0;--adf-theme-background-status-bar-color:#e0e0e0;--adf-theme-background-unselected-chip-color:#e0e0e0;--theme-font-family:Muli,Roboto,"Helvetica Neue",sans-serif;--theme-font-weight:normal;--theme-body-1-font-size:14px;--theme-body-2-font-size:14px;--theme-body-1-line-height:20px;--theme-display-1-font-size:34px;--theme-display-3-font-size:56px;--theme-display-4-font-size:112px;--theme-caption-font-size:12px;--theme-title-font-size:20px;--theme-subheading-1-font-size:15px;--theme-subheading-2-font-size:16px;--theme-button-font-size:14px;--theme-headline-font-size:24px;--theme-headline-line-height:32px;--theme-adf-icon-1-font-size:17px;--theme-adf-picture-1-font-size:18px;--theme-adf-task-footer-font-size:18px;--theme-adf-task-title-font-size:18px;--adf-theme-mat-grey-color-a200:#eee;--adf-theme-mat-grey-color-a400:#bdbdbd;--adf-theme-mat-grey-color-50:#fafafa;--adf-theme-spacing:16px}.mat-datetimepicker-calendar-header{background-color:#2196f3}.mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-selected{background-color:#2196f3;color:#fff}.mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-disabled>.mat-datetimepicker-calendar-body-selected{background-color:rgba(33,150,243,.4)}.mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-today:not(.mat-datetimepicker-calendar-body-selected){border-color:#2196f3}.mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-today.mat-datetimepicker-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.mat-datetimepicker-clock-center,.mat-datetimepicker-clock-hand,.mat-datetimepicker-clock-hand:before{background-color:#2196f3}.mat-datetimepicker-clock-cell.mat-datetimepicker-clock-cell-selected{background-color:#39a1f4}.adf-error-snackbar{background-color:var(--theme-warn-color)}.adf-warning-snackbar{background-color:var(--theme-accent-color)}.adf-info-snackbar{background-color:var(--theme-primary-color)}.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background-color:var(--adf-theme-background-hover-color)}.mat-calendar .mat-calendar-header button{color:var(--adf-theme-foreground-text-color-087)}.mat-calendar .mat-calendar-content .mat-calendar-table-header th,.mat-calendar .mat-calendar-header button:disabled{color:var(--adf-theme-foreground-text-color-054)}.mat-calendar .mat-calendar-content .mat-calendar-body-disabled>div{color:var(--adf-theme-foreground-text-color-054)!important}.mat-datetimepicker-calendar .mat-datetimepicker-calendar-header .mat-datetimepicker-calendar-header-date,.mat-datetimepicker-calendar .mat-datetimepicker-calendar-header .mat-datetimepicker-calendar-header-time,.mat-datetimepicker-calendar .mat-datetimepicker-calendar-header .mat-datetimepicker-calendar-header-year{opacity:1}.mat-datetimepicker-calendar .mat-datetimepicker-calendar-content .mat-datetimepicker-calendar-body-disabled>div,.mat-datetimepicker-calendar .mat-datetimepicker-calendar-content .mat-datetimepicker-calendar-table-header th{color:var(--adf-theme-foreground-text-color-054)}.mdc-snackbar.mat-mdc-snack-bar-container{margin:24px}.mdc-snackbar.mat-mdc-snack-bar-container .mdc-snackbar__label{line-height:unset}.mat-mdc-input-element:focus::placeholder{color:var(--theme-primary-color)}.mat-datetimepicker-dialog .mdc-dialog__container .mat-mdc-dialog-surface{padding:0}.mat-mdc-button-base{-webkit-font-smoothing:antialiased}:root{--adf-card-view-background:#fff;--adf-card-view-border:unset;--adf-card-view-border-color:rgba(0,0,0,.12);--adf-card-view-border-radius:0;--adf-card-view-array-item-background:#fff;--adf-card-view-array-item-border:unset;--adf-card-view-array-item-border-color:rgba(0,0,0,.12);--adf-card-view-array-item-border-radius:0;--adf-edit-task-and-service-filter-header-title-color:rgba(0,0,0,.87);--adf-edit-task-and-service-filter-header-description-color:rgba(0,0,0,.54);--adf-edit-task-and-service-filter-content-text-label-color:rgba(0,0,0,.54);--adf-edit-task-and-service-filter-content-select-label-color:rgba(0,0,0,.54);--adf-edit-task-and-service-filter-header-height:48px;--adf-about-panel-header-height:48px;--adf-about-panel-header-title-color:rgba(0,0,0,.87);--adf-edit-process-filter-header-height:48px;--adf-edit-process-filter-header-title-color:rgba(0,0,0,.87);--adf-edit-process-filter-header-description-color:rgba(0,0,0,.54);--adf-edit-process-filter-content-text-label-color:rgba(0,0,0,.54);--adf-edit-process-filter-content-select-label-color:rgba(0,0,0,.54);--adf-about-server-settings-background:#fff;--adf-about-server-settings-color:rgba(0,0,0,.87);--adf-about-server-settings-border-radius:4px;--adf-about-server-settings-padding:16px;--adf-package-list-table-background:#fff;--adf-package-list-table-header-min-height:56px;--adf-package-list-table-header-cell-color:rgba(0,0,0,.54);--adf-package-list-table-row-min-height:48px;--adf-package-list-table-row-cell-color:rgba(0,0,0,.87);--adf-identity-user-info-background:var(--adf-theme-primary-300);--adf-identity-user-info-height:40px;--adf-identity-user-info-width:40px;--adf-identity-user-info-line-height:40px;--adf-identity-user-info-font-size:var(--theme-adf-picture-1-font-size);--adf-user-info-container-margin-right:8px;--adf-info-drawer-tab-default-color:#ff9800;--adf-info-drawer-tab-default-background:#fff;--adf-info-drawer-tab-default-bottom-line:unset;--adf-info-drawer-tab-hover-color:#ff9800;--adf-info-drawer-tab-hover-background:#fff;--adf-info-drawer-tab-hover-bottom-line:unset;--adf-info-drawer-tab-active-unfocused-color:#2196f3;--adf-info-drawer-tab-active-unfocused-background:#fff;--adf-info-drawer-tab-active-unfocused-bottom-line:unset;--adf-info-drawer-tab-active-focused-color:rgba(0,0,0,.87);--adf-info-drawer-tab-active-focused-background:#2196f3;--adf-info-drawer-tab-active-focused-bottom-line:unset;--adf-people-cloud-input-label-default-color:rgba(0,0,0,.54);--adf-people-cloud-input-label-focus-color:#2196f3;--adf-people-cloud-autosuggest-result-active-color:rgba(0,0,0,.87);--adf-people-cloud-autosuggest-result-disabled-color:rgba(0,0,0,.54);--adf-people-cloud-input-caption-error-color:#f44336;--adf-metadata-property-panel-border-color:rgba(0,0,0,.12);--adf-metadata-buttons-background-color:rgba(33,33,33,.05);--adf-metadata-action-button-clear-color:rgba(33,35,40,.698);--adf-metadata-property-panel-text-color:rgba(33,35,40,.7);--adf-metadata-property-panel-label-color:rgba(33,33,33,.24);--adf-metadata-property-panel-title-color:#212121;--adf-group-cloud-input-label-default-color:rgba(0,0,0,.54);--adf-group-cloud-input-label-focus-color:#2196f3;--adf-group-cloud-autosuggest-result-active-color:rgba(0,0,0,.87);--adf-group-cloud-autosuggest-result-disabled-color:rgba(0,0,0,.54);--adf-group-cloud-input-caption-error-color:#f44336;--adf-task-assignment-filter-option-default-color:rgba(0,0,0,.87);--adf-task-assignment-filter-option-selected-color:#2196f3;--adf-task-assignment-filter-label-default-color:rgba(0,0,0,.54);--adf-task-assignment-filter-label-focus-color:#2196f3;--adf-process-header-cloud-card-background:#fff;--adf-header-icon-button-default-color:inherit;--adf-header-icon-button-default-border-radius:50%;--adf-header-icon-button-hover-color:inherit;--adf-header-icon-button-pressed-color:inherit;--adf-header-icon-button-disabled-color:inherit;--adf-error-color:#ba1b1b;--adf-secondary-button-background:rgba(33,33,33,.051);--adf-secondary-modal-text-color:#212121;--adf-disabled-button-background:rgba(0,0,0,.12);--adf-chip-border-color:#757575;--adf-sidenav-active-text-color:#003064;--adf-display-external-property-widget-preview-selection-color:rgba(0,0,0,.54)}
|
|
1
|
+
ul>li>form-field>.adf-focus .adf-label{color:var(--theme-primary-color)}.adf-error-container{height:20px;margin-top:-12px}.adf-error-text{color:var(--theme-warn-color);font-size:var(--theme-caption-font-size);height:16px;line-height:1.33;padding:1px}.adf-error-icon{color:var(--theme-warn-color);font-size:var(--theme-adf-icon-1-font-size)}.adf-label{color:var(--adf-theme-foreground-secondary-text-color)}.adf-asterisk{color:var(--theme-warn-color);padding-left:2px}.adf-invalid .mat-mdc-checkbox{padding-bottom:12px}.adf-invalid .mdc-line-ripple{background-color:var(--theme-warn-color)!important}.adf-invalid .mat-mdc-select-arrow{color:var(--adf-theme-foreground-secondary-text-color)!important}.adf-invalid .adf-file{border-color:var(--theme-warn-color)}.adf-invalid .mat-mdc-form-field-text-prefix{color:var(--adf-theme-foreground-secondary-text-color)}.adf-invalid .adf-input{border-color:var(--theme-warn-color)}.adf-left-label{color:var(--adf-theme-foreground-secondary-text-color)}@media screen and (-ms-high-contrast:active),screen and (-ms-high-contrast:none){adf-form-field .mat-mdc-form-field,adf-form-field .mat-mdc-input-element,adf-form-field .mat-mdc-select{display:block!important}}.adf-copy-tooltip{background:var(--theme-primary-color);border-radius:5px;bottom:93%;color:var(--theme-primary-color-default-contrast);font-size:var(--theme-caption-font-size);left:0;min-height:20px;padding:2px 5px;position:absolute;z-index:1001}.adf-sticky-header .adf-copy-tooltip{bottom:0;top:85%}html{--mat-badge-text-font:Roboto,sans-serif}.mat-h1,.mat-headline-5,.mat-typography .mat-h1,.mat-typography .mat-headline-5,.mat-typography h1{font:400 24px/32px Roboto,sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h2,.mat-headline-6,.mat-typography .mat-h2,.mat-typography .mat-headline-6,.mat-typography h2{font:500 20px/32px Roboto,sans-serif;letter-spacing:.0125em;margin:0 0 16px}.mat-h3,.mat-subtitle-1,.mat-typography .mat-h3,.mat-typography .mat-subtitle-1,.mat-typography h3{font:400 16px/28px Roboto,sans-serif;letter-spacing:.009375em;margin:0 0 16px}.mat-body-1,.mat-h4,.mat-typography .mat-body-1,.mat-typography .mat-h4,.mat-typography h4{font:400 16px/24px Roboto,sans-serif;letter-spacing:.03125em;margin:0 0 16px}.mat-h5,.mat-typography .mat-h5,.mat-typography h5{font:400 11.62px/20px Roboto,sans-serif;margin:0 0 12px}.mat-h6,.mat-typography .mat-h6,.mat-typography h6{font:400 9.38px/20px Roboto,sans-serif;margin:0 0 12px}.mat-body-strong,.mat-subtitle-2,.mat-typography .mat-body-strong,.mat-typography .mat-subtitle-2{font:500 14px/22px Roboto,sans-serif;letter-spacing:.0071428571em}.mat-body,.mat-body-2,.mat-typography,.mat-typography .mat-body,.mat-typography .mat-body-2{font:400 14px/20px Roboto,sans-serif;letter-spacing:.0178571429em}.mat-body p,.mat-body-2 p,.mat-typography .mat-body p,.mat-typography .mat-body-2 p,.mat-typography p{margin:0 0 12px}.mat-caption,.mat-small,.mat-typography .mat-caption,.mat-typography .mat-small{font:400 12px/20px Roboto,sans-serif;letter-spacing:.0333333333em}.mat-headline-1,.mat-typography .mat-headline-1{font:300 96px/96px Roboto,sans-serif;letter-spacing:-.015625em;margin:0 0 56px}.mat-headline-2,.mat-typography .mat-headline-2{font:300 60px/60px Roboto,sans-serif;letter-spacing:-.0083333333em;margin:0 0 64px}.mat-headline-3,.mat-typography .mat-headline-3{font:400 48px/50px Roboto,sans-serif;letter-spacing:normal;margin:0 0 64px}.mat-headline-4,.mat-typography .mat-headline-4{font:400 34px/40px Roboto,sans-serif;letter-spacing:.0073529412em;margin:0 0 64px}html{--mat-bottom-sheet-container-text-font:Roboto,sans-serif;--mat-bottom-sheet-container-text-tracking:0.0178571429em;--mat-legacy-button-toggle-text-font:Roboto,sans-serif;--mat-standard-button-toggle-text-font:Roboto,sans-serif;--mat-datepicker-calendar-text-font:Roboto,sans-serif;--mat-expansion-header-text-font:Roboto,sans-serif;--mat-expansion-container-text-font:Roboto,sans-serif;--mat-expansion-container-text-tracking:0.0178571429em;--mat-stepper-container-text-font:Roboto,sans-serif;--mat-stepper-header-label-text-font:Roboto,sans-serif;--mat-stepper-header-error-state-label-text-size:16px;--mat-stepper-header-selected-state-label-text-size:16px;--mat-toolbar-title-text-font:Roboto,sans-serif;--mat-toolbar-title-text-tracking:0.0125em;--mat-tree-node-text-font:Roboto,sans-serif;--mat-option-label-text-font:Roboto,sans-serif;--mat-option-label-text-size:16px;--mat-option-label-text-tracking:0.03125em;--mat-optgroup-label-text-font:Roboto,sans-serif;--mat-optgroup-label-text-size:16px;--mat-optgroup-label-text-tracking:0.03125em;--mat-card-title-text-font:Roboto,sans-serif;--mat-card-title-text-tracking:0.0125em;--mat-card-subtitle-text-font:Roboto,sans-serif;--mat-card-subtitle-text-line-height:22px;--mat-card-subtitle-text-tracking:0.0071428571em;--mdc-plain-tooltip-supporting-text-font:Roboto,sans-serif;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em;--mdc-filled-text-field-label-text-font:Roboto,sans-serif;--mdc-filled-text-field-label-text-size:16px;--mdc-filled-text-field-label-text-tracking:0.03125em;--mdc-outlined-text-field-label-text-font:Roboto,sans-serif;--mdc-outlined-text-field-label-text-size:16px;--mdc-outlined-text-field-label-text-tracking:0.03125em;--mat-form-field-container-text-font:Roboto,sans-serif;--mat-form-field-container-text-size:16px;--mat-form-field-container-text-tracking:0.03125em;--mat-form-field-outlined-label-text-populated-size:16px;--mat-form-field-subscript-text-font:Roboto,sans-serif;--mat-form-field-subscript-text-tracking:0.0333333333em;--mat-select-trigger-text-font:Roboto,sans-serif;--mat-select-trigger-text-size:16px;--mat-select-trigger-text-tracking:0.03125em;--mdc-dialog-subhead-font:Roboto,sans-serif;--mdc-dialog-subhead-tracking:0.0125em;--mdc-dialog-supporting-text-font:Roboto,sans-serif;--mdc-dialog-supporting-text-size:16px;--mdc-dialog-supporting-text-tracking:0.03125em}.mat-mdc-standard-chip{--mdc-chip-label-text-font:Roboto,sans-serif;--mdc-chip-label-text-tracking:0.0178571429em}.mat-mdc-radio-button,html .mat-mdc-slide-toggle{--mdc-form-field-label-text-font:Roboto,sans-serif;--mdc-form-field-label-text-tracking:0.0178571429em}html{--mdc-slider-label-label-text-font:Roboto,sans-serif;--mdc-slider-label-label-text-line-height:22px;--mdc-slider-label-label-text-tracking:0.0071428571em;--mat-menu-item-label-text-font:Roboto,sans-serif;--mat-menu-item-label-text-size:16px;--mat-menu-item-label-text-tracking:0.03125em;--mdc-list-list-item-label-text-font:Roboto,sans-serif;--mdc-list-list-item-label-text-size:16px;--mdc-list-list-item-label-text-tracking:0.03125em;--mdc-list-list-item-supporting-text-font:Roboto,sans-serif;--mdc-list-list-item-supporting-text-tracking:0.0178571429em;--mdc-list-list-item-trailing-supporting-text-font:Roboto,sans-serif;--mdc-list-list-item-trailing-supporting-text-tracking:0.0333333333em}.mdc-list-group__subheader{font:400 16px/28px Roboto,sans-serif;letter-spacing:.009375em}html{--mat-paginator-container-text-font:Roboto,sans-serif;--mat-paginator-container-text-tracking:0.0333333333em}.mat-mdc-tab-header{--mat-tab-header-label-text-font:Roboto,sans-serif;--mat-tab-header-label-text-tracking:0.0892857143em;--mat-tab-header-label-text-line-height:36px}.mat-mdc-checkbox{--mdc-form-field-label-text-font:Roboto,sans-serif;--mdc-form-field-label-text-tracking:0.0178571429em}html{--mdc-text-button-label-text-font:Roboto,sans-serif;--mdc-text-button-label-text-tracking:0.0892857143em;--mdc-filled-button-label-text-font:Roboto,sans-serif;--mdc-filled-button-label-text-tracking:0.0892857143em;--mdc-outlined-button-label-text-font:Roboto,sans-serif;--mdc-outlined-button-label-text-tracking:0.0892857143em;--mdc-protected-button-label-text-font:Roboto,sans-serif;--mdc-protected-button-label-text-tracking:0.0892857143em;--mdc-extended-fab-label-text-font:Roboto,sans-serif;--mdc-extended-fab-label-text-tracking:0.0892857143em;--mdc-snackbar-supporting-text-font:Roboto,sans-serif;--mat-table-header-headline-font:Roboto,sans-serif;--mat-table-header-headline-line-height:22px;--mat-table-header-headline-tracking:0.0071428571em;--mat-table-row-item-label-text-font:Roboto,sans-serif;--mat-table-row-item-label-text-tracking:0.0178571429em;--mat-table-footer-supporting-text-font:Roboto,sans-serif;--mat-table-footer-supporting-text-tracking:0.0178571429em}.mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{background-color:var(--mat-ripple-color,rgba(0,0,0,.1));border-radius:50%;pointer-events:none;position:absolute;transform:scale3d(0,0,0);transition:opacity,transform 0ms cubic-bezier(0,0,.2,1)}.cdk-high-contrast-active .mat-ripple-element{display:none}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);-webkit-appearance:none;-moz-appearance:none;height:1px;left:0;margin:-1px;outline:0;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.cdk-global-overlay-wrapper,.cdk-overlay-container{height:100%;left:0;pointer-events:none;top:0;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper,.cdk-overlay-pane{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{box-sizing:border-box;max-height:100%;max-width:100%;pointer-events:auto}.cdk-overlay-backdrop{bottom:0;left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1000;-webkit-tap-highlight-color:rgba(0,0,0,0);opacity:0;transition:opacity .4s cubic-bezier(.25,.8,.25,1)}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.cdk-overlay-transparent-backdrop{opacity:1;transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{display:flex;flex-direction:column;min-height:1px;min-width:1px;position:absolute;z-index:1000}.cdk-global-scrollblock{overflow-y:scroll;position:fixed;width:100%}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{box-sizing:content-box!important;height:auto!important;overflow:hidden!important;padding:2px 0!important}textarea.cdk-textarea-autosize-measuring-firefox{box-sizing:content-box!important;height:0!important;padding:2px 0!important}@keyframes cdk-text-field-autofill-start{/*!*/}@keyframes cdk-text-field-autofill-end{/*!*/}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.mat-focus-indicator{position:relative}.mat-focus-indicator:before{border:var(--mat-focus-indicator-border-width,3px) var(--mat-focus-indicator-border-style,solid) var(--mat-focus-indicator-border-color,transparent);border-radius:var(--mat-focus-indicator-border-radius,4px);bottom:0;box-sizing:border-box;display:var(--mat-focus-indicator-display,none);left:0;pointer-events:none;position:absolute;right:0;top:0}.mat-focus-indicator:focus:before{content:""}.cdk-high-contrast-active{--mat-focus-indicator-display:block}.mat-mdc-focus-indicator{position:relative}.mat-mdc-focus-indicator:before{border:var(--mat-mdc-focus-indicator-border-width,3px) var(--mat-mdc-focus-indicator-border-style,solid) var(--mat-mdc-focus-indicator-border-color,transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius,4px);bottom:0;box-sizing:border-box;display:var(--mat-mdc-focus-indicator-display,none);left:0;pointer-events:none;position:absolute;right:0;top:0}.mat-mdc-focus-indicator:focus:before{content:""}.cdk-high-contrast-active{--mat-mdc-focus-indicator-display:block}.mat-app-background{background-color:var(--mat-app-background-color,transparent);color:var(--mat-app-text-color,inherit)}html{--mat-ripple-color:rgba(0,0,0,.1);--mat-option-selected-state-label-text-color:#2196f3;--mat-option-label-text-color:rgba(0,0,0,.87);--mat-option-hover-state-layer-color:rgba(0,0,0,.04);--mat-option-focus-state-layer-color:rgba(0,0,0,.04);--mat-option-selected-state-layer-color:rgba(0,0,0,.04)}.mat-accent{--mat-option-selected-state-label-text-color:#ff9800;--mat-option-label-text-color:rgba(0,0,0,.87);--mat-option-hover-state-layer-color:rgba(0,0,0,.04);--mat-option-focus-state-layer-color:rgba(0,0,0,.04);--mat-option-selected-state-layer-color:rgba(0,0,0,.04)}.mat-warn{--mat-option-selected-state-label-text-color:#f44336;--mat-option-label-text-color:rgba(0,0,0,.87);--mat-option-hover-state-layer-color:rgba(0,0,0,.04);--mat-option-focus-state-layer-color:rgba(0,0,0,.04);--mat-option-selected-state-layer-color:rgba(0,0,0,.04)}html{--mat-optgroup-label-text-color:rgba(0,0,0,.87)}.mat-primary{--mat-full-pseudo-checkbox-selected-icon-color:#2196f3;--mat-full-pseudo-checkbox-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color:#b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color:#b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color:#2196f3;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color:#b0b0b0}.mat-accent,html{--mat-full-pseudo-checkbox-selected-icon-color:#ff9800;--mat-full-pseudo-checkbox-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color:#b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color:#b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color:#ff9800;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color:#b0b0b0}.mat-warn{--mat-full-pseudo-checkbox-selected-icon-color:#f44336;--mat-full-pseudo-checkbox-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color:#fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color:#b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color:#b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color:#f44336;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color:#b0b0b0}html{--mat-app-background-color:#fafafa;--mat-app-text-color:rgba(0,0,0,.87)}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{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)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)}.mat-theme-loaded-marker{display:none}html{--mat-option-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-option-label-text-line-height:24px;--mat-option-label-text-size:15px;--mat-option-label-text-tracking:normal;--mat-option-label-text-weight:400;--mat-optgroup-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-optgroup-label-text-line-height:24px;--mat-optgroup-label-text-size:15px;--mat-optgroup-label-text-tracking:normal;--mat-optgroup-label-text-weight:400;--mdc-elevated-card-container-shape:4px;--mdc-outlined-card-container-shape:4px;--mdc-outlined-card-outline-width:1px;--mdc-elevated-card-container-color:#fff;--mdc-elevated-card-container-elevation:0px 2px 1px -1px rgba(0,0,0,.2),0px 1px 1px 0px rgba(0,0,0,.14),0px 1px 3px 0px rgba(0,0,0,.12);--mdc-outlined-card-container-color:#fff;--mdc-outlined-card-outline-color:rgba(0,0,0,.12);--mdc-outlined-card-container-elevation:0px 0px 0px 0px rgba(0,0,0,.2),0px 0px 0px 0px rgba(0,0,0,.14),0px 0px 0px 0px rgba(0,0,0,.12);--mat-card-subtitle-text-color:rgba(0,0,0,.54);--mat-card-title-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-card-title-text-line-height:32px;--mat-card-title-text-size:20px;--mat-card-title-text-tracking:normal;--mat-card-title-text-weight:500;--mat-card-subtitle-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-card-subtitle-text-line-height:24px;--mat-card-subtitle-text-size:14px;--mat-card-subtitle-text-tracking:normal;--mat-card-subtitle-text-weight:500;--mdc-linear-progress-active-indicator-height:4px;--mdc-linear-progress-track-height:4px;--mdc-linear-progress-track-shape:0}.mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color:#2196f3;--mdc-linear-progress-track-color:rgba(33,150,243,.25)}.mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color:#ff9800;--mdc-linear-progress-track-color:rgba(255,152,0,.25)}.mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color:#f44336;--mdc-linear-progress-track-color:rgba(244,67,54,.25)}html{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px;--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff;--mdc-plain-tooltip-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:normal;--mdc-filled-text-field-active-indicator-height:1px;--mdc-filled-text-field-focus-active-indicator-height:2px;--mdc-filled-text-field-container-shape:4px;--mdc-outlined-text-field-outline-width:1px;--mdc-outlined-text-field-focus-outline-width:2px;--mdc-outlined-text-field-container-shape:4px;--mdc-filled-text-field-caret-color:#2196f3;--mdc-filled-text-field-focus-active-indicator-color:#2196f3;--mdc-filled-text-field-focus-label-text-color:rgba(33,150,243,.87);--mdc-filled-text-field-container-color:#f5f5f5;--mdc-filled-text-field-disabled-container-color:#fafafa;--mdc-filled-text-field-label-text-color:rgba(0,0,0,.6);--mdc-filled-text-field-hover-label-text-color:rgba(0,0,0,.6);--mdc-filled-text-field-disabled-label-text-color:rgba(0,0,0,.38);--mdc-filled-text-field-input-text-color:rgba(0,0,0,.87);--mdc-filled-text-field-disabled-input-text-color:rgba(0,0,0,.38);--mdc-filled-text-field-input-text-placeholder-color:rgba(0,0,0,.6);--mdc-filled-text-field-error-hover-label-text-color:#f44336;--mdc-filled-text-field-error-focus-label-text-color:#f44336;--mdc-filled-text-field-error-label-text-color:#f44336;--mdc-filled-text-field-error-caret-color:#f44336;--mdc-filled-text-field-active-indicator-color:rgba(0,0,0,.42);--mdc-filled-text-field-disabled-active-indicator-color:rgba(0,0,0,.06);--mdc-filled-text-field-hover-active-indicator-color:rgba(0,0,0,.87);--mdc-filled-text-field-error-active-indicator-color:#f44336;--mdc-filled-text-field-error-focus-active-indicator-color:#f44336;--mdc-filled-text-field-error-hover-active-indicator-color:#f44336;--mdc-outlined-text-field-caret-color:#2196f3;--mdc-outlined-text-field-focus-outline-color:#2196f3;--mdc-outlined-text-field-focus-label-text-color:rgba(33,150,243,.87);--mdc-outlined-text-field-label-text-color:rgba(0,0,0,.6);--mdc-outlined-text-field-hover-label-text-color:rgba(0,0,0,.6);--mdc-outlined-text-field-disabled-label-text-color:rgba(0,0,0,.38);--mdc-outlined-text-field-input-text-color:rgba(0,0,0,.87);--mdc-outlined-text-field-disabled-input-text-color:rgba(0,0,0,.38);--mdc-outlined-text-field-input-text-placeholder-color:rgba(0,0,0,.6);--mdc-outlined-text-field-error-caret-color:#f44336;--mdc-outlined-text-field-error-focus-label-text-color:#f44336;--mdc-outlined-text-field-error-label-text-color:#f44336;--mdc-outlined-text-field-error-hover-label-text-color:#f44336;--mdc-outlined-text-field-outline-color:rgba(0,0,0,.38);--mdc-outlined-text-field-disabled-outline-color:rgba(0,0,0,.06);--mdc-outlined-text-field-hover-outline-color:rgba(0,0,0,.87);--mdc-outlined-text-field-error-focus-outline-color:#f44336;--mdc-outlined-text-field-error-hover-outline-color:#f44336;--mdc-outlined-text-field-error-outline-color:#f44336;--mat-form-field-focus-select-arrow-color:rgba(33,150,243,.87);--mat-form-field-disabled-input-text-placeholder-color:rgba(0,0,0,.38);--mat-form-field-state-layer-color:rgba(0,0,0,.87);--mat-form-field-error-text-color:#f44336;--mat-form-field-select-option-text-color:inherit;--mat-form-field-select-disabled-option-text-color:GrayText;--mat-form-field-leading-icon-color:unset;--mat-form-field-disabled-leading-icon-color:unset;--mat-form-field-trailing-icon-color:unset;--mat-form-field-disabled-trailing-icon-color:unset;--mat-form-field-error-focus-trailing-icon-color:unset;--mat-form-field-error-hover-trailing-icon-color:unset;--mat-form-field-error-trailing-icon-color:unset;--mat-form-field-enabled-select-arrow-color:rgba(0,0,0,.54);--mat-form-field-disabled-select-arrow-color:rgba(0,0,0,.38);--mat-form-field-hover-state-layer-opacity:0.04;--mat-form-field-focus-state-layer-opacity:0.08}.mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color:#ff9800;--mdc-filled-text-field-focus-active-indicator-color:#ff9800;--mdc-filled-text-field-focus-label-text-color:rgba(255,152,0,.87);--mdc-outlined-text-field-caret-color:#ff9800;--mdc-outlined-text-field-focus-outline-color:#ff9800;--mdc-outlined-text-field-focus-label-text-color:rgba(255,152,0,.87);--mat-form-field-focus-select-arrow-color:rgba(255,152,0,.87)}.mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color:#f44336;--mdc-filled-text-field-focus-active-indicator-color:#f44336;--mdc-filled-text-field-focus-label-text-color:rgba(244,67,54,.87);--mdc-outlined-text-field-caret-color:#f44336;--mdc-outlined-text-field-focus-outline-color:#f44336;--mdc-outlined-text-field-focus-label-text-color:rgba(244,67,54,.87);--mat-form-field-focus-select-arrow-color:rgba(244,67,54,.87)}html{--mat-form-field-container-height:56px;--mat-form-field-filled-label-display:block;--mat-form-field-container-vertical-padding:16px;--mat-form-field-filled-with-label-container-padding-top:24px;--mat-form-field-filled-with-label-container-padding-bottom:8px;--mdc-filled-text-field-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-filled-text-field-label-text-size:15px;--mdc-filled-text-field-label-text-tracking:normal;--mdc-filled-text-field-label-text-weight:400;--mdc-outlined-text-field-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-outlined-text-field-label-text-size:15px;--mdc-outlined-text-field-label-text-tracking:normal;--mdc-outlined-text-field-label-text-weight:400;--mat-form-field-container-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-form-field-container-text-line-height:24px;--mat-form-field-container-text-size:15px;--mat-form-field-container-text-tracking:normal;--mat-form-field-container-text-weight:400;--mat-form-field-outlined-label-text-populated-size:15px;--mat-form-field-subscript-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-form-field-subscript-text-line-height:20px;--mat-form-field-subscript-text-size:12px;--mat-form-field-subscript-text-tracking:normal;--mat-form-field-subscript-text-weight:400;--mat-select-panel-background-color:#fff;--mat-select-enabled-trigger-text-color:rgba(0,0,0,.87);--mat-select-disabled-trigger-text-color:rgba(0,0,0,.38);--mat-select-placeholder-text-color:rgba(0,0,0,.6);--mat-select-enabled-arrow-color:rgba(0,0,0,.54);--mat-select-disabled-arrow-color:rgba(0,0,0,.38);--mat-select-focused-arrow-color:rgba(33,150,243,.87);--mat-select-invalid-arrow-color:rgba(244,67,54,.87)}html .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color:#fff;--mat-select-enabled-trigger-text-color:rgba(0,0,0,.87);--mat-select-disabled-trigger-text-color:rgba(0,0,0,.38);--mat-select-placeholder-text-color:rgba(0,0,0,.6);--mat-select-enabled-arrow-color:rgba(0,0,0,.54);--mat-select-disabled-arrow-color:rgba(0,0,0,.38);--mat-select-focused-arrow-color:rgba(255,152,0,.87);--mat-select-invalid-arrow-color:rgba(244,67,54,.87)}html .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color:#fff;--mat-select-enabled-trigger-text-color:rgba(0,0,0,.87);--mat-select-disabled-trigger-text-color:rgba(0,0,0,.38);--mat-select-placeholder-text-color:rgba(0,0,0,.6);--mat-select-enabled-arrow-color:rgba(0,0,0,.54);--mat-select-disabled-arrow-color:rgba(0,0,0,.38);--mat-select-focused-arrow-color:rgba(244,67,54,.87);--mat-select-invalid-arrow-color:rgba(244,67,54,.87)}html{--mat-select-trigger-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-select-trigger-text-line-height:24px;--mat-select-trigger-text-size:15px;--mat-select-trigger-text-tracking:normal;--mat-select-trigger-text-weight:400;--mat-autocomplete-background-color:#fff;--mdc-dialog-container-elevation-shadow:0px 11px 15px -7px rgba(0,0,0,.2),0px 24px 38px 3px rgba(0,0,0,.14),0px 9px 46px 8px rgba(0,0,0,.12);--mdc-dialog-container-shadow-color:#000;--mdc-dialog-container-shape:4px;--mdc-dialog-container-color:#fff;--mdc-dialog-subhead-color:rgba(0,0,0,.87);--mdc-dialog-supporting-text-color:rgba(0,0,0,.6);--mdc-dialog-subhead-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-dialog-subhead-line-height:32px;--mdc-dialog-subhead-size:20px;--mdc-dialog-subhead-weight:500;--mdc-dialog-subhead-tracking:normal;--mdc-dialog-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-dialog-supporting-text-line-height:24px;--mdc-dialog-supporting-text-size:15px;--mdc-dialog-supporting-text-weight:400;--mdc-dialog-supporting-text-tracking:normal}.mat-mdc-standard-chip{--mdc-chip-container-shape-family:rounded;--mdc-chip-container-shape-radius:16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family:rounded;--mdc-chip-with-avatar-avatar-shape-radius:14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size:28px;--mdc-chip-with-icon-icon-size:18px;--mdc-chip-disabled-label-text-color:#212121;--mdc-chip-elevated-container-color:#e0e0e0;--mdc-chip-elevated-disabled-container-color:#e0e0e0;--mdc-chip-focus-state-layer-color:#000;--mdc-chip-focus-state-layer-opacity:0.12;--mdc-chip-label-text-color:#212121;--mdc-chip-with-icon-icon-color:#212121;--mdc-chip-with-icon-disabled-icon-color:#212121;--mdc-chip-with-icon-selected-icon-color:#212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:#212121;--mdc-chip-with-trailing-icon-trailing-icon-color:#212121}.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary,.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary{--mdc-chip-disabled-label-text-color:#fff;--mdc-chip-elevated-container-color:#2196f3;--mdc-chip-elevated-disabled-container-color:#2196f3;--mdc-chip-focus-state-layer-color:#000;--mdc-chip-focus-state-layer-opacity:0.12;--mdc-chip-label-text-color:#fff;--mdc-chip-with-icon-icon-color:#fff;--mdc-chip-with-icon-disabled-icon-color:#fff;--mdc-chip-with-icon-selected-icon-color:#fff;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:#fff;--mdc-chip-with-trailing-icon-trailing-icon-color:#fff}.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent,.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent{--mdc-chip-disabled-label-text-color:hsla(0,0%,100%,.87);--mdc-chip-elevated-container-color:#ff9800;--mdc-chip-elevated-disabled-container-color:#ff9800;--mdc-chip-focus-state-layer-color:#000;--mdc-chip-focus-state-layer-opacity:0.12;--mdc-chip-label-text-color:hsla(0,0%,100%,.87);--mdc-chip-with-icon-icon-color:hsla(0,0%,100%,.87);--mdc-chip-with-icon-disabled-icon-color:hsla(0,0%,100%,.87);--mdc-chip-with-icon-selected-icon-color:hsla(0,0%,100%,.87);--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:hsla(0,0%,100%,.87);--mdc-chip-with-trailing-icon-trailing-icon-color:hsla(0,0%,100%,.87)}.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn,.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn{--mdc-chip-disabled-label-text-color:#fff;--mdc-chip-elevated-container-color:#f44336;--mdc-chip-elevated-disabled-container-color:#f44336;--mdc-chip-focus-state-layer-color:#000;--mdc-chip-focus-state-layer-opacity:0.12;--mdc-chip-label-text-color:#fff;--mdc-chip-with-icon-icon-color:#fff;--mdc-chip-with-icon-disabled-icon-color:#fff;--mdc-chip-with-icon-selected-icon-color:#fff;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:#fff;--mdc-chip-with-trailing-icon-trailing-icon-color:#fff}.mat-mdc-chip.mat-mdc-standard-chip{--mdc-chip-container-height:32px}.mat-mdc-standard-chip{--mdc-chip-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-chip-label-text-line-height:20px;--mdc-chip-label-text-size:14px;--mdc-chip-label-text-tracking:normal;--mdc-chip-label-text-weight:400}html{--mdc-switch-disabled-handle-opacity:0.38;--mdc-switch-disabled-selected-icon-opacity:0.38;--mdc-switch-disabled-track-opacity:0.12;--mdc-switch-disabled-unselected-icon-opacity:0.38;--mdc-switch-handle-height:20px;--mdc-switch-handle-shape:10px;--mdc-switch-handle-width:20px;--mdc-switch-selected-icon-size:18px;--mdc-switch-track-height:14px;--mdc-switch-track-shape:7px;--mdc-switch-track-width:36px;--mdc-switch-unselected-icon-size:18px;--mdc-switch-selected-focus-state-layer-opacity:0.12;--mdc-switch-selected-hover-state-layer-opacity:0.04;--mdc-switch-selected-pressed-state-layer-opacity:0.1;--mdc-switch-unselected-focus-state-layer-opacity:0.12;--mdc-switch-unselected-hover-state-layer-opacity:0.04;--mdc-switch-unselected-pressed-state-layer-opacity:0.1;--mdc-switch-selected-focus-state-layer-color:#1e88e5;--mdc-switch-selected-handle-color:#1e88e5;--mdc-switch-selected-hover-state-layer-color:#1e88e5;--mdc-switch-selected-pressed-state-layer-color:#1e88e5;--mdc-switch-selected-focus-handle-color:#0d47a1;--mdc-switch-selected-hover-handle-color:#0d47a1;--mdc-switch-selected-pressed-handle-color:#0d47a1;--mdc-switch-selected-focus-track-color:#64b5f6;--mdc-switch-selected-hover-track-color:#64b5f6;--mdc-switch-selected-pressed-track-color:#64b5f6;--mdc-switch-selected-track-color:#64b5f6;--mdc-switch-disabled-selected-handle-color:#424242;--mdc-switch-disabled-selected-icon-color:#fff;--mdc-switch-disabled-selected-track-color:#424242;--mdc-switch-disabled-unselected-handle-color:#424242;--mdc-switch-disabled-unselected-icon-color:#fff;--mdc-switch-disabled-unselected-track-color:#424242;--mdc-switch-handle-surface-color:var(--mdc-theme-surface,#fff);--mdc-switch-handle-elevation-shadow:0px 2px 1px -1px rgba(0,0,0,.2),0px 1px 1px 0px rgba(0,0,0,.14),0px 1px 3px 0px rgba(0,0,0,.12);--mdc-switch-handle-shadow-color:#000;--mdc-switch-disabled-handle-elevation-shadow:0px 0px 0px 0px rgba(0,0,0,.2),0px 0px 0px 0px rgba(0,0,0,.14),0px 0px 0px 0px rgba(0,0,0,.12);--mdc-switch-selected-icon-color:#fff;--mdc-switch-unselected-focus-handle-color:#212121;--mdc-switch-unselected-focus-state-layer-color:#424242;--mdc-switch-unselected-focus-track-color:#e0e0e0;--mdc-switch-unselected-handle-color:#616161;--mdc-switch-unselected-hover-handle-color:#212121;--mdc-switch-unselected-hover-state-layer-color:#424242;--mdc-switch-unselected-hover-track-color:#e0e0e0;--mdc-switch-unselected-icon-color:#fff;--mdc-switch-unselected-pressed-handle-color:#212121;--mdc-switch-unselected-pressed-state-layer-color:#424242;--mdc-switch-unselected-pressed-track-color:#e0e0e0;--mdc-switch-unselected-track-color:#e0e0e0;--mdc-switch-disabled-label-text-color:rgba(0,0,0,.38)}html .mat-mdc-slide-toggle{--mdc-form-field-label-text-color:rgba(0,0,0,.87)}html .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color:#fb8c00;--mdc-switch-selected-handle-color:#fb8c00;--mdc-switch-selected-hover-state-layer-color:#fb8c00;--mdc-switch-selected-pressed-state-layer-color:#fb8c00;--mdc-switch-selected-focus-handle-color:#e65100;--mdc-switch-selected-hover-handle-color:#e65100;--mdc-switch-selected-pressed-handle-color:#e65100;--mdc-switch-selected-focus-track-color:#ffb74d;--mdc-switch-selected-hover-track-color:#ffb74d;--mdc-switch-selected-pressed-track-color:#ffb74d;--mdc-switch-selected-track-color:#ffb74d}html .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color:#e53935;--mdc-switch-selected-handle-color:#e53935;--mdc-switch-selected-hover-state-layer-color:#e53935;--mdc-switch-selected-pressed-state-layer-color:#e53935;--mdc-switch-selected-focus-handle-color:#b71c1c;--mdc-switch-selected-hover-handle-color:#b71c1c;--mdc-switch-selected-pressed-handle-color:#b71c1c;--mdc-switch-selected-focus-track-color:#e57373;--mdc-switch-selected-hover-track-color:#e57373;--mdc-switch-selected-pressed-track-color:#e57373;--mdc-switch-selected-track-color:#e57373}html{--mdc-switch-state-layer-size:40px}html .mat-mdc-slide-toggle{--mdc-form-field-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-form-field-label-text-line-height:20px;--mdc-form-field-label-text-size:14px;--mdc-form-field-label-text-tracking:normal;--mdc-form-field-label-text-weight:400}html{--mdc-radio-disabled-selected-icon-opacity:0.38;--mdc-radio-disabled-unselected-icon-opacity:0.38}.mat-mdc-radio-button{--mdc-form-field-label-text-color:rgba(0,0,0,.87)}.mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#2196f3;--mdc-radio-selected-hover-icon-color:#2196f3;--mdc-radio-selected-icon-color:#2196f3;--mdc-radio-selected-pressed-icon-color:#2196f3;--mat-radio-ripple-color:#000;--mat-radio-checked-ripple-color:#2196f3;--mat-radio-disabled-label-color:rgba(0,0,0,.38)}.mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#ff9800;--mdc-radio-selected-hover-icon-color:#ff9800;--mdc-radio-selected-icon-color:#ff9800;--mdc-radio-selected-pressed-icon-color:#ff9800;--mat-radio-ripple-color:#000;--mat-radio-checked-ripple-color:#ff9800;--mat-radio-disabled-label-color:rgba(0,0,0,.38)}.mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#f44336;--mdc-radio-selected-hover-icon-color:#f44336;--mdc-radio-selected-icon-color:#f44336;--mdc-radio-selected-pressed-icon-color:#f44336;--mat-radio-ripple-color:#000;--mat-radio-checked-ripple-color:#f44336;--mat-radio-disabled-label-color:rgba(0,0,0,.38)}html{--mdc-radio-state-layer-size:40px}.mat-mdc-radio-button{--mdc-form-field-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-form-field-label-text-line-height:20px;--mdc-form-field-label-text-size:14px;--mdc-form-field-label-text-tracking:normal;--mdc-form-field-label-text-weight:400}html{--mat-slider-value-indicator-width:auto;--mat-slider-value-indicator-height:32px;--mat-slider-value-indicator-caret-display:block;--mat-slider-value-indicator-border-radius:4px;--mat-slider-value-indicator-padding:0 12px;--mat-slider-value-indicator-text-transform:none;--mat-slider-value-indicator-container-transform:translateX(-50%);--mdc-slider-active-track-height:6px;--mdc-slider-active-track-shape:9999px;--mdc-slider-handle-height:20px;--mdc-slider-handle-shape:50%;--mdc-slider-handle-width:20px;--mdc-slider-inactive-track-height:4px;--mdc-slider-inactive-track-shape:9999px;--mdc-slider-with-overlap-handle-outline-width:1px;--mdc-slider-with-tick-marks-active-container-opacity:0.6;--mdc-slider-with-tick-marks-container-shape:50%;--mdc-slider-with-tick-marks-container-size:2px;--mdc-slider-with-tick-marks-inactive-container-opacity:0.6;--mdc-slider-handle-color:#2196f3;--mdc-slider-focus-handle-color:#2196f3;--mdc-slider-hover-handle-color:#2196f3;--mdc-slider-active-track-color:#2196f3;--mdc-slider-inactive-track-color:#2196f3;--mdc-slider-with-tick-marks-inactive-container-color:#2196f3;--mdc-slider-with-tick-marks-active-container-color:#fff;--mdc-slider-disabled-active-track-color:#000;--mdc-slider-disabled-handle-color:#000;--mdc-slider-disabled-inactive-track-color:#000;--mdc-slider-label-container-color:#000;--mdc-slider-label-label-text-color:#fff;--mdc-slider-with-overlap-handle-outline-color:#fff;--mdc-slider-with-tick-marks-disabled-container-color:#000;--mdc-slider-handle-elevation:0px 2px 1px -1px rgba(0,0,0,.2),0px 1px 1px 0px rgba(0,0,0,.14),0px 1px 3px 0px rgba(0,0,0,.12);--mat-slider-ripple-color:#2196f3;--mat-slider-hover-state-layer-color:rgba(33,150,243,.05);--mat-slider-focus-state-layer-color:rgba(33,150,243,.2);--mat-slider-value-indicator-opacity:0.6}html .mat-accent{--mat-slider-ripple-color:#ff9800;--mat-slider-hover-state-layer-color:rgba(255,152,0,.05);--mat-slider-focus-state-layer-color:rgba(255,152,0,.2);--mdc-slider-handle-color:#ff9800;--mdc-slider-focus-handle-color:#ff9800;--mdc-slider-hover-handle-color:#ff9800;--mdc-slider-active-track-color:#ff9800;--mdc-slider-inactive-track-color:#ff9800;--mdc-slider-with-tick-marks-inactive-container-color:#ff9800;--mdc-slider-with-tick-marks-active-container-color:hsla(0,0%,100%,.87)}html .mat-warn{--mat-slider-ripple-color:#f44336;--mat-slider-hover-state-layer-color:rgba(244,67,54,.05);--mat-slider-focus-state-layer-color:rgba(244,67,54,.2);--mdc-slider-handle-color:#f44336;--mdc-slider-focus-handle-color:#f44336;--mdc-slider-hover-handle-color:#f44336;--mdc-slider-active-track-color:#f44336;--mdc-slider-inactive-track-color:#f44336;--mdc-slider-with-tick-marks-inactive-container-color:#f44336;--mdc-slider-with-tick-marks-active-container-color:#fff}html{--mdc-slider-label-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-slider-label-label-text-size:14px;--mdc-slider-label-label-text-line-height:24px;--mdc-slider-label-label-text-tracking:normal;--mdc-slider-label-label-text-weight:500;--mat-menu-container-shape:4px;--mat-menu-item-label-text-color:rgba(0,0,0,.87);--mat-menu-item-icon-color:rgba(0,0,0,.87);--mat-menu-item-hover-state-layer-color:rgba(0,0,0,.04);--mat-menu-item-focus-state-layer-color:rgba(0,0,0,.04);--mat-menu-container-color:#fff;--mat-menu-item-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-menu-item-label-text-size:15px;--mat-menu-item-label-text-tracking:normal;--mat-menu-item-label-text-line-height:24px;--mat-menu-item-label-text-weight:400;--mdc-list-list-item-container-shape:0;--mdc-list-list-item-leading-avatar-shape:50%;--mdc-list-list-item-container-color:transparent;--mdc-list-list-item-selected-container-color:transparent;--mdc-list-list-item-leading-avatar-color:transparent;--mdc-list-list-item-leading-icon-size:24px;--mdc-list-list-item-leading-avatar-size:40px;--mdc-list-list-item-trailing-icon-size:24px;--mdc-list-list-item-disabled-state-layer-color:transparent;--mdc-list-list-item-disabled-state-layer-opacity:0;--mdc-list-list-item-disabled-label-text-opacity:0.38;--mdc-list-list-item-disabled-leading-icon-opacity:0.38;--mdc-list-list-item-disabled-trailing-icon-opacity:0.38;--mdc-list-list-item-label-text-color:rgba(0,0,0,.87);--mdc-list-list-item-supporting-text-color:rgba(0,0,0,.54);--mdc-list-list-item-leading-icon-color:rgba(0,0,0,.38);--mdc-list-list-item-trailing-supporting-text-color:rgba(0,0,0,.38);--mdc-list-list-item-trailing-icon-color:rgba(0,0,0,.38);--mdc-list-list-item-selected-trailing-icon-color:rgba(0,0,0,.38);--mdc-list-list-item-disabled-label-text-color:#000;--mdc-list-list-item-disabled-leading-icon-color:#000;--mdc-list-list-item-disabled-trailing-icon-color:#000;--mdc-list-list-item-hover-label-text-color:rgba(0,0,0,.87);--mdc-list-list-item-hover-leading-icon-color:rgba(0,0,0,.38);--mdc-list-list-item-hover-trailing-icon-color:rgba(0,0,0,.38);--mdc-list-list-item-focus-label-text-color:rgba(0,0,0,.87);--mdc-list-list-item-hover-state-layer-color:#000;--mdc-list-list-item-hover-state-layer-opacity:0.04;--mdc-list-list-item-focus-state-layer-color:#000;--mdc-list-list-item-focus-state-layer-opacity:0.12}.mdc-list-item__end,.mdc-list-item__start{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#2196f3;--mdc-radio-selected-hover-icon-color:#2196f3;--mdc-radio-selected-icon-color:#2196f3;--mdc-radio-selected-pressed-icon-color:#2196f3}.mat-accent .mdc-list-item__end,.mat-accent .mdc-list-item__start{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#ff9800;--mdc-radio-selected-hover-icon-color:#ff9800;--mdc-radio-selected-icon-color:#ff9800;--mdc-radio-selected-pressed-icon-color:#ff9800}.mat-warn .mdc-list-item__end,.mat-warn .mdc-list-item__start{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0,0,0,.54);--mdc-radio-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-radio-selected-focus-icon-color:#f44336;--mdc-radio-selected-hover-icon-color:#f44336;--mdc-radio-selected-icon-color:#f44336;--mdc-radio-selected-pressed-icon-color:#f44336}.mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#2196f3;--mdc-checkbox-selected-hover-icon-color:#2196f3;--mdc-checkbox-selected-icon-color:#2196f3;--mdc-checkbox-selected-pressed-icon-color:#2196f3;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#2196f3;--mdc-checkbox-selected-hover-state-layer-color:#2196f3;--mdc-checkbox-selected-pressed-state-layer-color:#2196f3;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}.mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#000;--mdc-checkbox-selected-focus-icon-color:#ff9800;--mdc-checkbox-selected-hover-icon-color:#ff9800;--mdc-checkbox-selected-icon-color:#ff9800;--mdc-checkbox-selected-pressed-icon-color:#ff9800;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#ff9800;--mdc-checkbox-selected-hover-state-layer-color:#ff9800;--mdc-checkbox-selected-pressed-state-layer-color:#ff9800;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}.mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#f44336;--mdc-checkbox-selected-hover-icon-color:#f44336;--mdc-checkbox-selected-icon-color:#f44336;--mdc-checkbox-selected-pressed-icon-color:#f44336;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#f44336;--mdc-checkbox-selected-hover-state-layer-color:#f44336;--mdc-checkbox-selected-pressed-state-layer-color:#f44336;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#2196f3}.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start{opacity:1}html{--mdc-list-list-item-one-line-container-height:48px;--mdc-list-list-item-two-line-container-height:64px;--mdc-list-list-item-three-line-container-height:88px}.mdc-list-item__end,.mdc-list-item__start{--mdc-radio-state-layer-size:40px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}html{--mdc-list-list-item-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-list-list-item-label-text-line-height:24px;--mdc-list-list-item-label-text-size:15px;--mdc-list-list-item-label-text-tracking:normal;--mdc-list-list-item-label-text-weight:400;--mdc-list-list-item-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-list-list-item-supporting-text-line-height:20px;--mdc-list-list-item-supporting-text-size:14px;--mdc-list-list-item-supporting-text-tracking:normal;--mdc-list-list-item-supporting-text-weight:400;--mdc-list-list-item-trailing-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-list-list-item-trailing-supporting-text-line-height:20px;--mdc-list-list-item-trailing-supporting-text-size:12px;--mdc-list-list-item-trailing-supporting-text-tracking:normal;--mdc-list-list-item-trailing-supporting-text-weight:400}.mdc-list-group__subheader{font:400 16px/28px Muli,Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}html{--mat-paginator-container-text-color:rgba(0,0,0,.87);--mat-paginator-container-background-color:#fff;--mat-paginator-enabled-icon-color:rgba(0,0,0,.54);--mat-paginator-disabled-icon-color:rgba(0,0,0,.12);--mat-paginator-container-size:56px}.mat-mdc-paginator{--mat-form-field-container-height:40px;--mat-form-field-filled-label-display:none;--mat-form-field-container-vertical-padding:8px;--mat-form-field-filled-with-label-container-padding-top:8px;--mat-form-field-filled-with-label-container-padding-bottom:8px}html{--mat-paginator-container-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-paginator-container-text-line-height:20px;--mat-paginator-container-text-size:12px;--mat-paginator-container-text-tracking:normal;--mat-paginator-container-text-weight:400;--mat-paginator-select-trigger-text-size:12px;--mdc-tab-indicator-active-indicator-height:2px;--mdc-tab-indicator-active-indicator-shape:0;--mdc-secondary-navigation-tab-container-height:48px;--mat-tab-header-divider-color:transparent;--mat-tab-header-divider-height:0}.mat-mdc-tab-group,.mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color:#2196f3;--mat-tab-header-disabled-ripple-color:rgba(0,0,0,.38);--mat-tab-header-pagination-icon-color:#000;--mat-tab-header-inactive-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-label-text-color:#2196f3;--mat-tab-header-active-ripple-color:#2196f3;--mat-tab-header-inactive-ripple-color:#2196f3;--mat-tab-header-inactive-focus-label-text-color:rgba(0,0,0,.6);--mat-tab-header-inactive-hover-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-focus-label-text-color:#2196f3;--mat-tab-header-active-hover-label-text-color:#2196f3;--mat-tab-header-active-focus-indicator-color:#2196f3;--mat-tab-header-active-hover-indicator-color:#2196f3}.mat-mdc-tab-group.mat-accent,.mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color:#ff9800;--mat-tab-header-disabled-ripple-color:rgba(0,0,0,.38);--mat-tab-header-pagination-icon-color:#000;--mat-tab-header-inactive-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-label-text-color:#ff9800;--mat-tab-header-active-ripple-color:#ff9800;--mat-tab-header-inactive-ripple-color:#ff9800;--mat-tab-header-inactive-focus-label-text-color:rgba(0,0,0,.6);--mat-tab-header-inactive-hover-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-focus-label-text-color:#ff9800;--mat-tab-header-active-hover-label-text-color:#ff9800;--mat-tab-header-active-focus-indicator-color:#ff9800;--mat-tab-header-active-hover-indicator-color:#ff9800}.mat-mdc-tab-group.mat-warn,.mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color:#f44336;--mat-tab-header-disabled-ripple-color:rgba(0,0,0,.38);--mat-tab-header-pagination-icon-color:#000;--mat-tab-header-inactive-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-label-text-color:#f44336;--mat-tab-header-active-ripple-color:#f44336;--mat-tab-header-inactive-ripple-color:#f44336;--mat-tab-header-inactive-focus-label-text-color:rgba(0,0,0,.6);--mat-tab-header-inactive-hover-label-text-color:rgba(0,0,0,.6);--mat-tab-header-active-focus-label-text-color:#f44336;--mat-tab-header-active-hover-label-text-color:#f44336;--mat-tab-header-active-focus-indicator-color:#f44336;--mat-tab-header-active-hover-indicator-color:#f44336}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color:#2196f3;--mat-tab-header-with-background-foreground-color:#fff}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color:#ff9800;--mat-tab-header-with-background-foreground-color:hsla(0,0%,100%,.87)}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color:#f44336;--mat-tab-header-with-background-foreground-color:#fff}.mat-mdc-tab-header{--mdc-secondary-navigation-tab-container-height:48px;--mat-tab-header-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-tab-header-label-text-size:14px;--mat-tab-header-label-text-tracking:normal;--mat-tab-header-label-text-line-height:14px;--mat-tab-header-label-text-weight:500}html{--mdc-checkbox-disabled-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-state-layer-opacity:0.16;--mdc-checkbox-selected-hover-state-layer-opacity:0.04;--mdc-checkbox-selected-pressed-state-layer-opacity:0.16;--mdc-checkbox-unselected-focus-state-layer-opacity:0.16;--mdc-checkbox-unselected-hover-state-layer-opacity:0.04;--mdc-checkbox-unselected-pressed-state-layer-opacity:0.16;--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#000;--mdc-checkbox-selected-focus-icon-color:#ff9800;--mdc-checkbox-selected-hover-icon-color:#ff9800;--mdc-checkbox-selected-icon-color:#ff9800;--mdc-checkbox-selected-pressed-icon-color:#ff9800;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#ff9800;--mdc-checkbox-selected-hover-state-layer-color:#ff9800;--mdc-checkbox-selected-pressed-state-layer-color:#ff9800;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}.mat-mdc-checkbox{--mdc-form-field-label-text-color:rgba(0,0,0,.87)}.mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#2196f3;--mdc-checkbox-selected-hover-icon-color:#2196f3;--mdc-checkbox-selected-icon-color:#2196f3;--mdc-checkbox-selected-pressed-icon-color:#2196f3;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#2196f3;--mdc-checkbox-selected-hover-state-layer-color:#2196f3;--mdc-checkbox-selected-pressed-state-layer-color:#2196f3;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}.mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0,0,0,.38);--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#f44336;--mdc-checkbox-selected-hover-icon-color:#f44336;--mdc-checkbox-selected-icon-color:#f44336;--mdc-checkbox-selected-pressed-icon-color:#f44336;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-unselected-icon-color:rgba(0,0,0,.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0,0,0,.54);--mdc-checkbox-selected-focus-state-layer-color:#f44336;--mdc-checkbox-selected-hover-state-layer-color:#f44336;--mdc-checkbox-selected-pressed-state-layer-color:#f44336;--mdc-checkbox-unselected-focus-state-layer-color:#000;--mdc-checkbox-unselected-hover-state-layer-color:#000;--mdc-checkbox-unselected-pressed-state-layer-color:#000}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:rgba(0,0,0,.38)}html{--mdc-checkbox-state-layer-size:40px}.mat-mdc-checkbox{--mdc-form-field-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-form-field-label-text-line-height:20px;--mdc-form-field-label-text-size:14px;--mdc-form-field-label-text-tracking:normal;--mdc-form-field-label-text-weight:400}html{--mdc-text-button-container-shape:4px;--mdc-text-button-keep-touch-target:false;--mdc-filled-button-container-shape:4px;--mdc-filled-button-keep-touch-target:false;--mdc-protected-button-container-shape:4px;--mdc-protected-button-keep-touch-target:false;--mdc-outlined-button-keep-touch-target:false;--mdc-outlined-button-outline-width:1px;--mdc-outlined-button-container-shape:4px;--mdc-text-button-label-text-color:#000;--mdc-text-button-disabled-label-text-color:rgba(0,0,0,.38);--mat-text-button-state-layer-color:#000;--mat-text-button-disabled-state-layer-color:#000;--mat-text-button-ripple-color:rgba(0,0,0,.1);--mat-text-button-hover-state-layer-opacity:0.04;--mat-text-button-focus-state-layer-opacity:0.12;--mat-text-button-pressed-state-layer-opacity:0.12;--mdc-filled-button-container-color:#fff;--mdc-filled-button-label-text-color:#000;--mdc-filled-button-disabled-container-color:rgba(0,0,0,.12);--mdc-filled-button-disabled-label-text-color:rgba(0,0,0,.38);--mat-filled-button-state-layer-color:#000;--mat-filled-button-disabled-state-layer-color:#000;--mat-filled-button-ripple-color:rgba(0,0,0,.1);--mat-filled-button-hover-state-layer-opacity:0.04;--mat-filled-button-focus-state-layer-opacity:0.12;--mat-filled-button-pressed-state-layer-opacity:0.12;--mdc-protected-button-container-color:#fff;--mdc-protected-button-label-text-color:#000;--mdc-protected-button-disabled-container-color:rgba(0,0,0,.12);--mdc-protected-button-disabled-label-text-color:rgba(0,0,0,.38);--mdc-protected-button-container-elevation-shadow:0px 3px 1px -2px rgba(0,0,0,.2),0px 2px 2px 0px rgba(0,0,0,.14),0px 1px 5px 0px rgba(0,0,0,.12);--mdc-protected-button-disabled-container-elevation-shadow:0px 0px 0px 0px rgba(0,0,0,.2),0px 0px 0px 0px rgba(0,0,0,.14),0px 0px 0px 0px rgba(0,0,0,.12);--mdc-protected-button-focus-container-elevation-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12);--mdc-protected-button-hover-container-elevation-shadow:0px 2px 4px -1px rgba(0,0,0,.2),0px 4px 5px 0px rgba(0,0,0,.14),0px 1px 10px 0px rgba(0,0,0,.12);--mdc-protected-button-pressed-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-protected-button-container-shadow-color:#000;--mat-protected-button-state-layer-color:#000;--mat-protected-button-disabled-state-layer-color:#000;--mat-protected-button-ripple-color:rgba(0,0,0,.1);--mat-protected-button-hover-state-layer-opacity:0.04;--mat-protected-button-focus-state-layer-opacity:0.12;--mat-protected-button-pressed-state-layer-opacity:0.12;--mdc-outlined-button-disabled-outline-color:rgba(0,0,0,.12);--mdc-outlined-button-disabled-label-text-color:rgba(0,0,0,.38);--mdc-outlined-button-label-text-color:#000;--mdc-outlined-button-outline-color:rgba(0,0,0,.12);--mat-outlined-button-state-layer-color:#000;--mat-outlined-button-disabled-state-layer-color:#000;--mat-outlined-button-ripple-color:rgba(0,0,0,.1);--mat-outlined-button-hover-state-layer-opacity:0.04;--mat-outlined-button-focus-state-layer-opacity:0.12;--mat-outlined-button-pressed-state-layer-opacity:0.12}.mat-mdc-button.mat-primary{--mdc-text-button-label-text-color:#2196f3;--mat-text-button-state-layer-color:#2196f3;--mat-text-button-ripple-color:rgba(33,150,243,.1)}.mat-mdc-button.mat-accent{--mdc-text-button-label-text-color:#ff9800;--mat-text-button-state-layer-color:#ff9800;--mat-text-button-ripple-color:rgba(255,152,0,.1)}.mat-mdc-button.mat-warn{--mdc-text-button-label-text-color:#f44336;--mat-text-button-state-layer-color:#f44336;--mat-text-button-ripple-color:rgba(244,67,54,.1)}.mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color:#2196f3;--mdc-filled-button-label-text-color:#fff;--mat-filled-button-state-layer-color:#fff;--mat-filled-button-ripple-color:hsla(0,0%,100%,.1)}.mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color:#ff9800;--mdc-filled-button-label-text-color:#000;--mat-filled-button-state-layer-color:#000;--mat-filled-button-ripple-color:rgba(0,0,0,.1)}.mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color:#f44336;--mdc-filled-button-label-text-color:#fff;--mat-filled-button-state-layer-color:#fff;--mat-filled-button-ripple-color:hsla(0,0%,100%,.1)}.mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color:#2196f3;--mdc-protected-button-label-text-color:#fff;--mat-protected-button-state-layer-color:#fff;--mat-protected-button-ripple-color:hsla(0,0%,100%,.1)}.mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color:#ff9800;--mdc-protected-button-label-text-color:#000;--mat-protected-button-state-layer-color:#000;--mat-protected-button-ripple-color:rgba(0,0,0,.1)}.mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color:#f44336;--mdc-protected-button-label-text-color:#fff;--mat-protected-button-state-layer-color:#fff;--mat-protected-button-ripple-color:hsla(0,0%,100%,.1)}.mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color:#2196f3;--mdc-outlined-button-outline-color:rgba(0,0,0,.12);--mat-outlined-button-state-layer-color:#2196f3;--mat-outlined-button-ripple-color:rgba(33,150,243,.1)}.mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color:#ff9800;--mdc-outlined-button-outline-color:rgba(0,0,0,.12);--mat-outlined-button-state-layer-color:#ff9800;--mat-outlined-button-ripple-color:rgba(255,152,0,.1)}.mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color:#f44336;--mdc-outlined-button-outline-color:rgba(0,0,0,.12);--mat-outlined-button-state-layer-color:#f44336;--mat-outlined-button-ripple-color:rgba(244,67,54,.1)}html{--mdc-text-button-container-height:36px;--mdc-filled-button-container-height:36px;--mdc-outlined-button-container-height:36px;--mdc-protected-button-container-height:36px;--mdc-text-button-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-text-button-label-text-size:14px;--mdc-text-button-label-text-tracking:normal;--mdc-text-button-label-text-weight:500;--mdc-text-button-label-text-transform:none;--mdc-filled-button-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-filled-button-label-text-size:14px;--mdc-filled-button-label-text-tracking:normal;--mdc-filled-button-label-text-weight:500;--mdc-filled-button-label-text-transform:none;--mdc-outlined-button-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-outlined-button-label-text-size:14px;--mdc-outlined-button-label-text-tracking:normal;--mdc-outlined-button-label-text-weight:500;--mdc-outlined-button-label-text-transform:none;--mdc-protected-button-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-protected-button-label-text-size:14px;--mdc-protected-button-label-text-tracking:normal;--mdc-protected-button-label-text-weight:500;--mdc-protected-button-label-text-transform:none;--mdc-icon-button-state-layer-size:48px;--mdc-icon-button-icon-size:24px;--mdc-icon-button-icon-color:inherit;--mdc-icon-button-disabled-icon-color:rgba(0,0,0,.38);--mat-icon-button-state-layer-color:#000;--mat-icon-button-disabled-state-layer-color:#000;--mat-icon-button-ripple-color:rgba(0,0,0,.1);--mat-icon-button-hover-state-layer-opacity:0.04;--mat-icon-button-focus-state-layer-opacity:0.12;--mat-icon-button-pressed-state-layer-opacity:0.12}html .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color:#2196f3;--mat-icon-button-state-layer-color:#2196f3;--mat-icon-button-ripple-color:rgba(33,150,243,.1)}html .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color:#ff9800;--mat-icon-button-state-layer-color:#ff9800;--mat-icon-button-ripple-color:rgba(255,152,0,.1)}html .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color:#f44336;--mat-icon-button-state-layer-color:#f44336;--mat-icon-button-ripple-color:rgba(244,67,54,.1)}.mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size:48px;height:var(--mdc-icon-button-state-layer-size);padding:12px;width:var(--mdc-icon-button-state-layer-size)}html{--mdc-fab-container-shape:50%;--mdc-fab-icon-size:24px;--mdc-fab-container-color:#fff;--mdc-fab-container-elevation-shadow:0px 3px 5px -1px rgba(0,0,0,.2),0px 6px 10px 0px rgba(0,0,0,.14),0px 1px 18px 0px rgba(0,0,0,.12);--mdc-fab-focus-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-fab-hover-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-fab-pressed-container-elevation-shadow:0px 7px 8px -4px rgba(0,0,0,.2),0px 12px 17px 2px rgba(0,0,0,.14),0px 5px 22px 4px rgba(0,0,0,.12);--mdc-fab-container-shadow-color:#000;--mat-fab-foreground-color:#000;--mat-fab-state-layer-color:#000;--mat-fab-disabled-state-layer-color:#000;--mat-fab-ripple-color:rgba(0,0,0,.1);--mat-fab-hover-state-layer-opacity:0.04;--mat-fab-focus-state-layer-opacity:0.12;--mat-fab-pressed-state-layer-opacity:0.12;--mat-fab-disabled-state-container-color:rgba(0,0,0,.12);--mat-fab-disabled-state-foreground-color:rgba(0,0,0,.38);--mdc-extended-fab-container-elevation-shadow:0px 3px 5px -1px rgba(0,0,0,.2),0px 6px 10px 0px rgba(0,0,0,.14),0px 1px 18px 0px rgba(0,0,0,.12);--mdc-extended-fab-focus-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-extended-fab-hover-container-elevation-shadow:0px 5px 5px -3px rgba(0,0,0,.2),0px 8px 10px 1px rgba(0,0,0,.14),0px 3px 14px 2px rgba(0,0,0,.12);--mdc-extended-fab-pressed-container-elevation-shadow:0px 7px 8px -4px rgba(0,0,0,.2),0px 12px 17px 2px rgba(0,0,0,.14),0px 5px 22px 4px rgba(0,0,0,.12);--mdc-extended-fab-container-shadow-color:#000}html .mat-mdc-fab.mat-primary,html .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color:#2196f3;--mat-fab-foreground-color:#fff;--mat-fab-state-layer-color:#fff;--mat-fab-ripple-color:hsla(0,0%,100%,.1)}html .mat-mdc-fab.mat-accent,html .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color:#ff9800;--mat-fab-foreground-color:#000;--mat-fab-state-layer-color:#000;--mat-fab-ripple-color:rgba(0,0,0,.1)}html .mat-mdc-fab.mat-warn,html .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color:#f44336;--mat-fab-foreground-color:#fff;--mat-fab-state-layer-color:#fff;--mat-fab-ripple-color:hsla(0,0%,100%,.1)}html{--mdc-extended-fab-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-extended-fab-label-text-size:14px;--mdc-extended-fab-label-text-tracking:normal;--mdc-extended-fab-label-text-weight:500;--mdc-snackbar-container-shape:4px;--mdc-snackbar-container-color:#333;--mdc-snackbar-supporting-text-color:hsla(0,0%,100%,.87);--mat-snack-bar-button-color:#ff9800;--mdc-snackbar-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mdc-snackbar-supporting-text-line-height:20px;--mdc-snackbar-supporting-text-size:14px;--mdc-snackbar-supporting-text-weight:400;--mat-table-row-item-outline-width:1px;--mat-table-background-color:#fff;--mat-table-header-headline-color:rgba(0,0,0,.87);--mat-table-row-item-label-text-color:rgba(0,0,0,.87);--mat-table-row-item-outline-color:rgba(0,0,0,.12);--mat-table-header-container-height:56px;--mat-table-footer-container-height:52px;--mat-table-row-item-container-height:52px;--mat-table-header-headline-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-table-header-headline-line-height:24px;--mat-table-header-headline-size:14px;--mat-table-header-headline-weight:500;--mat-table-header-headline-tracking:normal;--mat-table-row-item-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-table-row-item-label-text-line-height:20px;--mat-table-row-item-label-text-size:14px;--mat-table-row-item-label-text-weight:400;--mat-table-row-item-label-text-tracking:normal;--mat-table-footer-supporting-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-table-footer-supporting-text-line-height:20px;--mat-table-footer-supporting-text-size:14px;--mat-table-footer-supporting-text-weight:400;--mat-table-footer-supporting-text-tracking:normal;--mdc-circular-progress-active-indicator-width:4px;--mdc-circular-progress-size:48px;--mdc-circular-progress-active-indicator-color:#2196f3}html .mat-accent{--mdc-circular-progress-active-indicator-color:#ff9800}html .mat-warn{--mdc-circular-progress-active-indicator-color:#f44336}html{--mat-badge-background-color:#2196f3;--mat-badge-text-color:#fff;--mat-badge-disabled-state-background-color:#b9b9b9;--mat-badge-disabled-state-text-color:rgba(0,0,0,.38)}.mat-badge-accent{--mat-badge-background-color:#ff9800;--mat-badge-text-color:hsla(0,0%,100%,.87)}.mat-badge-warn{--mat-badge-background-color:#f44336;--mat-badge-text-color:#fff}html{--mat-badge-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-badge-text-size:12px;--mat-badge-text-weight:600;--mat-badge-small-size-text-size:9px;--mat-badge-large-size-text-size:24px;--mat-bottom-sheet-container-shape:4px;--mat-bottom-sheet-container-text-color:rgba(0,0,0,.87);--mat-bottom-sheet-container-background-color:#fff;--mat-bottom-sheet-container-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-bottom-sheet-container-text-line-height:20px;--mat-bottom-sheet-container-text-size:14px;--mat-bottom-sheet-container-text-tracking:normal;--mat-bottom-sheet-container-text-weight:400;--mat-legacy-button-toggle-height:36px;--mat-legacy-button-toggle-shape:2px;--mat-legacy-button-toggle-focus-state-layer-opacity:1;--mat-standard-button-toggle-shape:4px;--mat-standard-button-toggle-hover-state-layer-opacity:0.04;--mat-standard-button-toggle-focus-state-layer-opacity:0.12;--mat-legacy-button-toggle-text-color:rgba(0,0,0,.38);--mat-legacy-button-toggle-state-layer-color:rgba(0,0,0,.12);--mat-legacy-button-toggle-selected-state-text-color:rgba(0,0,0,.54);--mat-legacy-button-toggle-selected-state-background-color:#e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color:rgba(0,0,0,.26);--mat-legacy-button-toggle-disabled-state-background-color:#eee;--mat-legacy-button-toggle-disabled-selected-state-background-color:#bdbdbd;--mat-standard-button-toggle-text-color:rgba(0,0,0,.87);--mat-standard-button-toggle-background-color:#fff;--mat-standard-button-toggle-state-layer-color:#000;--mat-standard-button-toggle-selected-state-background-color:#e0e0e0;--mat-standard-button-toggle-selected-state-text-color:rgba(0,0,0,.87);--mat-standard-button-toggle-disabled-state-text-color:rgba(0,0,0,.26);--mat-standard-button-toggle-disabled-state-background-color:#fff;--mat-standard-button-toggle-disabled-selected-state-text-color:rgba(0,0,0,.87);--mat-standard-button-toggle-disabled-selected-state-background-color:#bdbdbd;--mat-standard-button-toggle-divider-color:#e0e0e0;--mat-standard-button-toggle-height:48px;--mat-legacy-button-toggle-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-standard-button-toggle-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-datepicker-calendar-date-selected-state-text-color:#fff;--mat-datepicker-calendar-date-selected-state-background-color:#2196f3;--mat-datepicker-calendar-date-selected-disabled-state-background-color:rgba(33,150,243,.4);--mat-datepicker-calendar-date-today-selected-state-outline-color:#fff;--mat-datepicker-calendar-date-focus-state-background-color:rgba(33,150,243,.3);--mat-datepicker-calendar-date-hover-state-background-color:rgba(33,150,243,.3);--mat-datepicker-toggle-active-state-icon-color:#2196f3;--mat-datepicker-calendar-date-in-range-state-background-color:rgba(33,150,243,.2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color:rgba(249,171,0,.2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color:#a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color:#46a35e;--mat-datepicker-toggle-icon-color:rgba(0,0,0,.54);--mat-datepicker-calendar-body-label-text-color:rgba(0,0,0,.54);--mat-datepicker-calendar-period-button-icon-color:rgba(0,0,0,.54);--mat-datepicker-calendar-navigation-button-icon-color:rgba(0,0,0,.54);--mat-datepicker-calendar-header-divider-color:rgba(0,0,0,.12);--mat-datepicker-calendar-header-text-color:rgba(0,0,0,.54);--mat-datepicker-calendar-date-today-outline-color:rgba(0,0,0,.38);--mat-datepicker-calendar-date-today-disabled-state-outline-color:rgba(0,0,0,.18);--mat-datepicker-calendar-date-text-color:rgba(0,0,0,.87);--mat-datepicker-calendar-date-outline-color:transparent;--mat-datepicker-calendar-date-disabled-state-text-color:rgba(0,0,0,.38);--mat-datepicker-calendar-date-preview-state-outline-color:rgba(0,0,0,.24);--mat-datepicker-range-input-separator-color:rgba(0,0,0,.87);--mat-datepicker-range-input-disabled-state-separator-color:rgba(0,0,0,.38);--mat-datepicker-range-input-disabled-state-text-color:rgba(0,0,0,.38);--mat-datepicker-calendar-container-background-color:#fff;--mat-datepicker-calendar-container-text-color:rgba(0,0,0,.87)}.mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color:hsla(0,0%,100%,.87);--mat-datepicker-calendar-date-selected-state-background-color:#ff9800;--mat-datepicker-calendar-date-selected-disabled-state-background-color:rgba(255,152,0,.4);--mat-datepicker-calendar-date-today-selected-state-outline-color:hsla(0,0%,100%,.87);--mat-datepicker-calendar-date-focus-state-background-color:rgba(255,152,0,.3);--mat-datepicker-calendar-date-hover-state-background-color:rgba(255,152,0,.3);--mat-datepicker-calendar-date-in-range-state-background-color:rgba(255,152,0,.2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color:rgba(249,171,0,.2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color:#a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color:#46a35e}.mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color:#fff;--mat-datepicker-calendar-date-selected-state-background-color:#f44336;--mat-datepicker-calendar-date-selected-disabled-state-background-color:rgba(244,67,54,.4);--mat-datepicker-calendar-date-today-selected-state-outline-color:#fff;--mat-datepicker-calendar-date-focus-state-background-color:rgba(244,67,54,.3);--mat-datepicker-calendar-date-hover-state-background-color:rgba(244,67,54,.3);--mat-datepicker-calendar-date-in-range-state-background-color:rgba(244,67,54,.2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color:rgba(249,171,0,.2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color:#a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color:#46a35e}.mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color:#ff9800}.mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color:#f44336}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size:40px;height:var(--mdc-icon-button-state-layer-size);padding:8px;width:var(--mdc-icon-button-state-layer-size)}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target{display:none}html{--mat-datepicker-calendar-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-datepicker-calendar-text-size:13px;--mat-datepicker-calendar-body-label-text-size:14px;--mat-datepicker-calendar-body-label-text-weight:500;--mat-datepicker-calendar-period-button-text-size:14px;--mat-datepicker-calendar-period-button-text-weight:500;--mat-datepicker-calendar-header-text-size:11px;--mat-datepicker-calendar-header-text-weight:400;--mat-divider-width:1px;--mat-divider-color:rgba(0,0,0,.12);--mat-expansion-container-shape:4px;--mat-expansion-container-background-color:#fff;--mat-expansion-container-text-color:rgba(0,0,0,.87);--mat-expansion-actions-divider-color:rgba(0,0,0,.12);--mat-expansion-header-hover-state-layer-color:rgba(0,0,0,.04);--mat-expansion-header-focus-state-layer-color:rgba(0,0,0,.04);--mat-expansion-header-disabled-state-text-color:rgba(0,0,0,.26);--mat-expansion-header-text-color:rgba(0,0,0,.87);--mat-expansion-header-description-color:rgba(0,0,0,.54);--mat-expansion-header-indicator-color:rgba(0,0,0,.54);--mat-expansion-header-collapsed-state-height:48px;--mat-expansion-header-expanded-state-height:64px;--mat-expansion-header-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-expansion-header-text-size:14px;--mat-expansion-header-text-weight:500;--mat-expansion-header-text-line-height:inherit;--mat-expansion-header-text-tracking:inherit;--mat-expansion-container-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-expansion-container-text-line-height:20px;--mat-expansion-container-text-size:14px;--mat-expansion-container-text-tracking:normal;--mat-expansion-container-text-weight:400;--mat-grid-list-tile-header-primary-text-size:14px;--mat-grid-list-tile-header-secondary-text-size:12px;--mat-grid-list-tile-footer-primary-text-size:14px;--mat-grid-list-tile-footer-secondary-text-size:12px;--mat-icon-color:inherit}.mat-icon.mat-primary{--mat-icon-color:#2196f3}.mat-icon.mat-accent{--mat-icon-color:#ff9800}.mat-icon.mat-warn{--mat-icon-color:#f44336}html{--mat-sidenav-container-shape:0;--mat-sidenav-container-divider-color:rgba(0,0,0,.12);--mat-sidenav-container-background-color:#fff;--mat-sidenav-container-text-color:rgba(0,0,0,.87);--mat-sidenav-content-background-color:#fafafa;--mat-sidenav-content-text-color:rgba(0,0,0,.87);--mat-sidenav-scrim-color:rgba(0,0,0,.6);--mat-stepper-header-icon-foreground-color:#fff;--mat-stepper-header-selected-state-icon-background-color:#2196f3;--mat-stepper-header-selected-state-icon-foreground-color:#fff;--mat-stepper-header-done-state-icon-background-color:#2196f3;--mat-stepper-header-done-state-icon-foreground-color:#fff;--mat-stepper-header-edit-state-icon-background-color:#2196f3;--mat-stepper-header-edit-state-icon-foreground-color:#fff;--mat-stepper-container-color:#fff;--mat-stepper-line-color:rgba(0,0,0,.12);--mat-stepper-header-hover-state-layer-color:rgba(0,0,0,.04);--mat-stepper-header-focus-state-layer-color:rgba(0,0,0,.04);--mat-stepper-header-label-text-color:rgba(0,0,0,.54);--mat-stepper-header-optional-label-text-color:rgba(0,0,0,.54);--mat-stepper-header-selected-state-label-text-color:rgba(0,0,0,.87);--mat-stepper-header-error-state-label-text-color:#f44336;--mat-stepper-header-icon-background-color:rgba(0,0,0,.54);--mat-stepper-header-error-state-icon-foreground-color:#f44336;--mat-stepper-header-error-state-icon-background-color:transparent}html .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color:hsla(0,0%,100%,.87);--mat-stepper-header-selected-state-icon-background-color:#ff9800;--mat-stepper-header-selected-state-icon-foreground-color:hsla(0,0%,100%,.87);--mat-stepper-header-done-state-icon-background-color:#ff9800;--mat-stepper-header-done-state-icon-foreground-color:hsla(0,0%,100%,.87);--mat-stepper-header-edit-state-icon-background-color:#ff9800;--mat-stepper-header-edit-state-icon-foreground-color:hsla(0,0%,100%,.87)}html .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color:#fff;--mat-stepper-header-selected-state-icon-background-color:#f44336;--mat-stepper-header-selected-state-icon-foreground-color:#fff;--mat-stepper-header-done-state-icon-background-color:#f44336;--mat-stepper-header-done-state-icon-foreground-color:#fff;--mat-stepper-header-edit-state-icon-background-color:#f44336;--mat-stepper-header-edit-state-icon-foreground-color:#fff}html{--mat-stepper-header-height:72px;--mat-stepper-container-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-stepper-header-label-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-stepper-header-label-text-size:14px;--mat-stepper-header-label-text-weight:400;--mat-stepper-header-error-state-label-text-size:15px;--mat-stepper-header-selected-state-label-text-size:15px;--mat-stepper-header-selected-state-label-text-weight:400;--mat-sort-arrow-color:#757575;--mat-toolbar-container-background-color:#f5f5f5;--mat-toolbar-container-text-color:rgba(0,0,0,.87)}.mat-toolbar.mat-primary{--mat-toolbar-container-background-color:#2196f3;--mat-toolbar-container-text-color:#fff}.mat-toolbar.mat-accent{--mat-toolbar-container-background-color:#ff9800;--mat-toolbar-container-text-color:hsla(0,0%,100%,.87)}.mat-toolbar.mat-warn{--mat-toolbar-container-background-color:#f44336;--mat-toolbar-container-text-color:#fff}html{--mat-toolbar-standard-height:64px;--mat-toolbar-mobile-height:56px;--mat-toolbar-title-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-toolbar-title-text-line-height:32px;--mat-toolbar-title-text-size:20px;--mat-toolbar-title-text-tracking:normal;--mat-toolbar-title-text-weight:500;--mat-tree-container-background-color:#fff;--mat-tree-node-text-color:rgba(0,0,0,.87);--mat-tree-node-min-height:48px;--mat-tree-node-text-font:Muli,Roboto,"Helvetica Neue",sans-serif;--mat-tree-node-text-size:14px;--mat-tree-node-text-weight:400}:root{--theme-primary-color:#2196f3;--theme-primary-color-default-contrast:#fff;--theme-header-text-color:#fff;--adf-theme-primary-50:#e3f2fd;--adf-theme-primary-100:#bbdefb;--adf-theme-primary-300:#64b5f6;--adf-theme-primary-900:#0d47a1;--theme-warn-color:#f44336;--theme-warn-color-a700:#d50000;--theme-warn-color-default-contrast:#fff;--theme-accent-color:#ff9800;--theme-accent-color-a200:#ffab40;--theme-accent-color-default-contrast:hsla(0,0%,100%,.87);--theme-accent-500:#ff9800;--adf-theme-foreground-base-color:#000;--adf-theme-foreground-base-color-065:rgba(0,0,0,.65);--adf-theme-foreground-base-color-045:rgba(0,0,0,.45);--adf-theme-foreground-disabled-text-color:rgba(0,0,0,.38);--adf-theme-foreground-divider-color:rgba(0,0,0,.12);--adf-theme-foreground-icon-color:rgba(0,0,0,.54);--adf-theme-foreground-icon-color-054:rgba(0,0,0,.54);--adf-theme-foreground-secondary-text-color:rgba(0,0,0,.54);--adf-theme-foreground-text-color:rgba(0,0,0,.87);--adf-theme-foreground-text-color-087:rgba(0,0,0,.87);--adf-theme-foreground-text-color-075:rgba(0,0,0,.75);--adf-theme-foreground-text-color-064:rgba(0,0,0,.64);--adf-theme-foreground-text-color-054:rgba(0,0,0,.54);--adf-theme-foreground-text-color-040:rgba(0,0,0,.4);--adf-theme-foreground-text-color-027:rgba(0,0,0,.27);--adf-theme-foreground-text-color-025:rgba(0,0,0,.25);--adf-theme-foreground-text-color-014:rgba(0,0,0,.14);--adf-theme-foreground-text-color-007:rgba(0,0,0,.07);--adf-theme-background-card-color:#fff;--adf-theme-background-card-color-087:hsla(0,0%,100%,.87);--theme-background-color:#fafafa;--adf-theme-background-dialog-color:#fff;--adf-theme-background-hover-color:rgba(0,0,0,.04);--adf-theme-background-selected-button-color:#e0e0e0;--adf-theme-background-status-bar-color:#e0e0e0;--adf-theme-background-unselected-chip-color:#e0e0e0;--theme-font-family:Muli,Roboto,"Helvetica Neue",sans-serif;--theme-font-weight:normal;--theme-body-1-font-size:14px;--theme-body-2-font-size:14px;--theme-body-1-line-height:20px;--theme-display-1-font-size:34px;--theme-display-3-font-size:56px;--theme-display-4-font-size:112px;--theme-caption-font-size:12px;--theme-title-font-size:20px;--theme-subheading-1-font-size:15px;--theme-subheading-2-font-size:16px;--theme-button-font-size:14px;--theme-headline-font-size:24px;--theme-headline-line-height:32px;--theme-adf-icon-1-font-size:17px;--theme-adf-picture-1-font-size:18px;--theme-adf-task-footer-font-size:18px;--theme-adf-task-title-font-size:18px;--adf-theme-mat-grey-color-a200:#eee;--adf-theme-mat-grey-color-a400:#bdbdbd;--adf-theme-mat-grey-color-50:#fafafa;--adf-theme-spacing:16px}.mat-datetimepicker-calendar-header{background-color:#2196f3}.mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-selected{background-color:#2196f3;color:#fff}.mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-disabled>.mat-datetimepicker-calendar-body-selected{background-color:rgba(33,150,243,.4)}.mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-today:not(.mat-datetimepicker-calendar-body-selected){border-color:#2196f3}.mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-today.mat-datetimepicker-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.mat-datetimepicker-clock-center,.mat-datetimepicker-clock-hand,.mat-datetimepicker-clock-hand:before{background-color:#2196f3}.mat-datetimepicker-clock-cell.mat-datetimepicker-clock-cell-selected{background-color:#39a1f4}.adf-error-snackbar{background-color:var(--theme-warn-color)}.adf-warning-snackbar{background-color:var(--theme-accent-color)}.adf-info-snackbar{background-color:var(--theme-primary-color)}.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background-color:var(--adf-theme-background-hover-color)}.mat-calendar .mat-calendar-header button{color:var(--adf-theme-foreground-text-color-087)}.mat-calendar .mat-calendar-content .mat-calendar-table-header th,.mat-calendar .mat-calendar-header button:disabled{color:var(--adf-theme-foreground-text-color-054)}.mat-calendar .mat-calendar-content .mat-calendar-body-disabled>div{color:var(--adf-theme-foreground-text-color-054)!important}.mat-datetimepicker-calendar .mat-datetimepicker-calendar-header .mat-datetimepicker-calendar-header-date,.mat-datetimepicker-calendar .mat-datetimepicker-calendar-header .mat-datetimepicker-calendar-header-time,.mat-datetimepicker-calendar .mat-datetimepicker-calendar-header .mat-datetimepicker-calendar-header-year{opacity:1}.mat-datetimepicker-calendar .mat-datetimepicker-calendar-content .mat-datetimepicker-calendar-body-disabled>div,.mat-datetimepicker-calendar .mat-datetimepicker-calendar-content .mat-datetimepicker-calendar-table-header th{color:var(--adf-theme-foreground-text-color-054)}.mdc-snackbar.mat-mdc-snack-bar-container{margin:24px}.mdc-snackbar.mat-mdc-snack-bar-container .mdc-snackbar__label{line-height:unset}.mat-mdc-input-element:focus::placeholder{color:var(--theme-primary-color)}.mat-datetimepicker-dialog .mdc-dialog__container .mat-mdc-dialog-surface{padding:0}.mat-mdc-button-base{-webkit-font-smoothing:antialiased}:root{--adf-card-view-background:#fff;--adf-card-view-border:unset;--adf-card-view-border-color:rgba(0,0,0,.12);--adf-card-view-border-radius:0;--adf-card-view-array-item-background:#fff;--adf-card-view-array-item-border:unset;--adf-card-view-array-item-border-color:rgba(0,0,0,.12);--adf-card-view-array-item-border-radius:0;--adf-edit-task-and-service-filter-header-title-color:rgba(0,0,0,.87);--adf-edit-task-and-service-filter-header-description-color:rgba(0,0,0,.54);--adf-edit-task-and-service-filter-content-text-label-color:rgba(0,0,0,.54);--adf-edit-task-and-service-filter-content-select-label-color:rgba(0,0,0,.54);--adf-edit-task-and-service-filter-header-height:48px;--adf-about-panel-header-height:48px;--adf-about-panel-header-title-color:rgba(0,0,0,.87);--adf-edit-process-filter-header-height:48px;--adf-edit-process-filter-header-title-color:rgba(0,0,0,.87);--adf-edit-process-filter-header-description-color:rgba(0,0,0,.54);--adf-edit-process-filter-content-text-label-color:rgba(0,0,0,.54);--adf-edit-process-filter-content-select-label-color:rgba(0,0,0,.54);--adf-about-server-settings-background:#fff;--adf-about-server-settings-color:rgba(0,0,0,.87);--adf-about-server-settings-border-radius:4px;--adf-about-server-settings-padding:16px;--adf-package-list-table-background:#fff;--adf-package-list-table-header-min-height:56px;--adf-package-list-table-header-cell-color:rgba(0,0,0,.54);--adf-package-list-table-row-min-height:48px;--adf-package-list-table-row-cell-color:rgba(0,0,0,.87);--adf-identity-user-info-background:var(--adf-theme-primary-300);--adf-identity-user-info-height:40px;--adf-identity-user-info-width:40px;--adf-identity-user-info-line-height:40px;--adf-identity-user-info-font-size:var(--theme-adf-picture-1-font-size);--adf-user-info-container-margin-right:8px;--adf-info-drawer-tab-default-color:#ff9800;--adf-info-drawer-tab-default-background:#fff;--adf-info-drawer-tab-default-bottom-line:unset;--adf-info-drawer-tab-hover-color:#ff9800;--adf-info-drawer-tab-hover-background:#fff;--adf-info-drawer-tab-hover-bottom-line:unset;--adf-info-drawer-tab-active-unfocused-color:#2196f3;--adf-info-drawer-tab-active-unfocused-background:#fff;--adf-info-drawer-tab-active-unfocused-bottom-line:unset;--adf-info-drawer-tab-active-focused-color:rgba(0,0,0,.87);--adf-info-drawer-tab-active-focused-background:#2196f3;--adf-info-drawer-tab-active-focused-bottom-line:unset;--adf-people-cloud-input-label-default-color:rgba(0,0,0,.54);--adf-people-cloud-input-label-focus-color:#2196f3;--adf-people-cloud-autosuggest-result-active-color:rgba(0,0,0,.87);--adf-people-cloud-autosuggest-result-disabled-color:rgba(0,0,0,.54);--adf-people-cloud-input-caption-error-color:#f44336;--adf-metadata-property-panel-border-color:rgba(0,0,0,.12);--adf-metadata-buttons-background-color:rgba(33,33,33,.05);--adf-metadata-action-button-clear-color:rgba(33,35,40,.698);--adf-metadata-property-panel-text-color:rgba(33,35,40,.7);--adf-metadata-property-panel-label-color:rgba(33,33,33,.24);--adf-metadata-property-panel-title-color:#212121;--adf-group-cloud-input-label-default-color:rgba(0,0,0,.54);--adf-group-cloud-input-label-focus-color:#2196f3;--adf-group-cloud-autosuggest-result-active-color:rgba(0,0,0,.87);--adf-group-cloud-autosuggest-result-disabled-color:rgba(0,0,0,.54);--adf-group-cloud-input-caption-error-color:#f44336;--adf-task-assignment-filter-option-default-color:rgba(0,0,0,.87);--adf-task-assignment-filter-option-selected-color:#2196f3;--adf-task-assignment-filter-label-default-color:rgba(0,0,0,.54);--adf-task-assignment-filter-label-focus-color:#2196f3;--adf-process-header-cloud-card-background:#fff;--adf-header-icon-button-default-color:inherit;--adf-header-icon-button-default-border-radius:50%;--adf-header-icon-button-hover-color:inherit;--adf-header-icon-button-pressed-color:inherit;--adf-header-icon-button-disabled-color:inherit;--adf-error-color:#ba1b1b;--adf-secondary-button-background:rgba(33,33,33,.051);--adf-secondary-modal-text-color:#212121;--adf-disabled-button-background:rgba(0,0,0,.12);--adf-chip-border-color:#757575;--adf-sidenav-active-text-color:#003064;--adf-display-external-property-widget-preview-selection-color:rgba(0,0,0,.54)}
|