UNPKG

@nuarch/dynamic-forms

Version:

Teradata UI Platform Dynamic Forms Module

221 lines 729 kB
/** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingReturn,uselessCode} checked by tsc */ import { ChangeDetectionStrategy, ChangeDetectorRef, Component, EventEmitter, Input, Output, QueryList, TemplateRef, ViewChildren, } from '@angular/core'; import { TdMediaService } from '@covalent/core/media'; import { BehaviorSubject, Subject } from 'rxjs'; import { distinctUntilChanged, takeUntil } from 'rxjs/operators'; import { TdDynamicFormsComponent } from './dynamic-forms.component'; export class NuDynamicFormsComponent { /** * @param {?} media * @param {?} _changeDetectorRef */ constructor(media, _changeDetectorRef) { this.media = media; this._changeDetectorRef = _changeDetectorRef; this.destroySubscriptions = new Subject(); this.group = 'group'; this.chunks = []; this.smallScreen = false; this.remove = new EventEmitter(); this.change = new EventEmitter(); this.media.registerQuery('gt-sm').pipe(takeUntil(this.destroySubscriptions), distinctUntilChanged()).subscribe((largeScreen) => { this.smallScreen = !largeScreen; }); } /** * @param {?} elements * @return {?} */ set elements(elements) { if (!elements) { return; } this.chunks = elements; this.chunks.forEach((chunk) => { if (chunk.type === this.group) { /** @type {?} */ let renderElements; if (!chunk.groupValues) { renderElements = []; } else { renderElements = chunk.groupValues.map((groupValue) => { if (!groupValue) { return undefined; } return this.createRenderElement(groupValue, !(!!chunk.max && chunk.max === 1), chunk.elements); }); } Object.assign(chunk, { groupValues: chunk.groupValues ? chunk.groupValues : [], renderElements: renderElements, }); } }); } /** * @return {?} */ get valid() { return !this.forms.some((form) => { return !form.valid; }); } /** * @return {?} */ get touched() { return this.forms.some((form) => { return form.touched; }); } /** * @return {?} */ get dirty() { if (!!this.forms) { return this.forms.some((form) => { return form.dirty; }); } return false; } /** * @param {?} groupValue * @param {?} createNewSelections * @param {?} elements * @return {?} */ createRenderElement(groupValue, createNewSelections, elements) { return elements.map((element) => { /** @type {?} */ let renderElement = Object.assign({}, element, { hidden: groupValue.delete ? true : element.hidden }); if (!!element.selections && createNewSelections) { renderElement = Object.assign({}, Object.assign({}, renderElement, { selections: element.selections instanceof BehaviorSubject ? new BehaviorSubject(element.selections.value) : element.selections })); } /** @type {?} */ const defaultValue = groupValue.values[element.name] === undefined ? element.default : groupValue.values[element.name]; if (element.type === this.group) { return Object.assign(renderElement, { groupValues: defaultValue }); } else { return Object.assign(renderElement, { default: defaultValue }); } }); } /** * @param {?} chunk * @return {?} */ showAdd(chunk) { /** @type {?} */ const displayedGroups = chunk.groupValues.filter((groupValue) => !groupValue.delete); if (!!chunk.max) { return !chunk.disabled && displayedGroups.length < chunk.max; } return !chunk.disabled; } /** * @param {?} groupValue * @param {?} chunkIndex * @return {?} */ showRemove(groupValue, chunkIndex) { /** @type {?} */ const chunk = this.chunks[chunkIndex]; /** @type {?} */ const displayedGroups = chunk.groupValues.filter((value) => !value.delete); if (!!chunk.min) { return !chunk.disabled && !groupValue.delete && displayedGroups.length > chunk.min; } return !chunk.disabled && !groupValue.delete; } /** * @param {?} event * @param {?} name * @param {?} pos * @return {?} */ insertChunk(event, name, pos) { /** @type {?} */ const chunk = this.chunks[pos]; /** @type {?} */ const valueToInsert = { isNew: true, values: chunk.elements.reduce((result, element) => { result[element.name] = element.default; return result; }, {}), }; chunk.groupValues.push(valueToInsert); if (!!this.chunks[pos].renderElements) { this.chunks[pos].renderElements.push(this.createRenderElement(valueToInsert, !(!!chunk.max && chunk.max === 1), this.chunks[pos].elements)); } else { this.chunks[pos].renderElements = [this.createRenderElement(valueToInsert, !(!!chunk.max && chunk.max === 1), this.chunks[pos].elements)]; } event.preventDefault(); } /** * @param {?} chunkIndex * @param {?} elementIndex * @return {?} */ removeChunk(chunkIndex, elementIndex) { /** @type {?} */ const valueToRemove = this.chunks[chunkIndex].groupValues[elementIndex]; if (valueToRemove.isNew) { this.chunks[chunkIndex].groupValues.splice(elementIndex, 1); this.chunks[chunkIndex].renderElements.splice(elementIndex, 1); } else { this.chunks[chunkIndex].groupValues[elementIndex].delete = true; this.chunks[chunkIndex].renderElements[elementIndex] = this.chunks[chunkIndex].renderElements[elementIndex].map((element) => { return Object.assign({}, element, { hidden: true }); }); } this.remove.emit(); } /** * @return {?} */ removeGroup() { this.remove.emit(); } /** * @return {?} */ changeGroup() { this.change.emit(); } /** * @param {?} chunk * @return {?} */ getStyle(chunk) { /** @type {?} */ const width = !this.smallScreen && chunk && chunk.flex ? `${chunk.flex}%` : '100%'; return { 'max-width': width, 'flex': `1 1 ${width}`, '-ms-flex': `1 1 ${width}`, '-webkit-box-flex': 1, }; } /** * @return {?} */ ngOnDestroy() { this.destroySubscriptions.next(); } } NuDynamicFormsComponent.decorators = [ { type: Component, args: [{ selector: 'nu-dynamic-forms', template: "<div class=\"dynamic-form-wrapper\">\r\n <ng-template let-chunk ngFor [ngForOf]=\"chunks\" let-i=\"index\">\r\n <div class=\"group-wrapper\" [ngStyle]=\"getStyle(chunk)\">\r\n <ng-container *ngIf=\"chunk.type === group\">\r\n <div class=\"header\">\r\n <span class=\"label\">{{chunk.label || chunk.name}}</span>\r\n </div>\r\n <ng-template let-renderElements ngFor [ngForOf]=\"chunk.renderElements\" let-j=\"index\">\r\n <div class=\"group\" *ngIf=\"!chunk.groupValues[j].delete\">\r\n <div class=\"group-header\">\r\n <div class=\"group-label\">{{chunk.groupLabel}}</div>\r\n <div class=\"action\">\r\n <button class=\"remove\" color=\"primary\" mat-button\r\n *ngIf=\"showRemove(chunk.groupValues[j], i)\"\r\n (click)=\"removeChunk(i, j)\">\r\n <mat-icon>remove_circle_outline\r\n </mat-icon>\r\n </button>\r\n </div>\r\n </div>\r\n <div class=\"group-body\">\r\n <td-dynamic-forms #form [elements]=\"renderElements\"\r\n [templateRef]=\"templateRef\"\r\n (remove)=\"removeGroup()\"\r\n (change)=\"changeGroup()\">\r\n </td-dynamic-forms>\r\n </div>\r\n </div>\r\n </ng-template>\r\n <button class=\"add\" mat-button\r\n *ngIf=\"showAdd(chunk)\"\r\n (click)=\"insertChunk($event, chunk.name, i)\">\r\n <mat-icon>add_circle_outline</mat-icon>\r\n {{chunk.addLabel}}\r\n </button>\r\n </ng-container>\r\n <ng-container *ngIf=\"chunk.type !== group\">\r\n <td-dynamic-forms #form [elements]=\"[chunk]\" [isSingleInGroupedForm]=\"true\" [templateRef]=\"templateRef\" (remove)=\"removeGroup()\">\r\n </td-dynamic-forms>\r\n </ng-container>\r\n </div>\r\n </ng-template>\r\n</div>\r\n", changeDetection: ChangeDetectionStrategy.OnPush, styles: ["@-moz-document url-prefix(){[layout-fill]{margin:0;width:100%;min-height:100%;height:100%}}.mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-badge-small .mat-badge-content{font-size:6px}.mat-badge-large .mat-badge-content{font-size:24px}.mat-h1,.mat-headline,.mat-typography h1{font:400 24px/32px Roboto,\"Helvetica Neue\",sans-serif;margin:0 0 16px}.mat-h2,.mat-title,.mat-typography h2{font:500 20px/32px Roboto,\"Helvetica Neue\",sans-serif;margin:0 0 16px}.mat-h3,.mat-subheading-2,.mat-typography h3{font:400 16px/28px Roboto,\"Helvetica Neue\",sans-serif;margin:0 0 16px}.mat-h4,.mat-subheading-1,.mat-typography h4{font:400 15px/24px Roboto,\"Helvetica Neue\",sans-serif;margin:0 0 16px}.mat-h5,.mat-typography h5{font:400 11.62px/20px Roboto,\"Helvetica Neue\",sans-serif;margin:0 0 12px}.mat-h6,.mat-typography h6{font:400 9.38px/20px Roboto,\"Helvetica Neue\",sans-serif;margin:0 0 12px}.mat-body-2,.mat-body-strong{font:500 14px/24px Roboto,\"Helvetica Neue\",sans-serif}.mat-body,.mat-body-1,.mat-typography{font:400 14px/20px Roboto,\"Helvetica Neue\",sans-serif}.mat-body p,.mat-body-1 p,.mat-typography p{margin:0 0 12px}.mat-caption,.mat-small{font:400 12px/20px Roboto,\"Helvetica Neue\",sans-serif}.mat-display-4,.mat-typography .mat-display-4{font:300 112px/112px Roboto,\"Helvetica Neue\",sans-serif;margin:0 0 56px;letter-spacing:-.05em}.mat-display-3,.mat-typography .mat-display-3{font:400 56px/56px Roboto,\"Helvetica Neue\",sans-serif;margin:0 0 64px;letter-spacing:-.02em}.mat-display-2,.mat-typography .mat-display-2{font:400 45px/48px Roboto,\"Helvetica Neue\",sans-serif;margin:0 0 64px;letter-spacing:-.005em}.mat-display-1,.mat-typography .mat-display-1{font:400 34px/40px Roboto,\"Helvetica Neue\",sans-serif;margin:0 0 64px}.mat-bottom-sheet-container{font:400 14px/20px Roboto,\"Helvetica Neue\",sans-serif}.mat-button,.mat-fab,.mat-flat-button,.mat-icon-button,.mat-mini-fab,.mat-raised-button,.mat-stroked-button{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:14px;font-weight:400}.mat-button-toggle,.mat-card{font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-card-title{font-size:24px;font-weight:500}.mat-card-header .mat-card-title{font-size:20px}.mat-card-content,.mat-card-subtitle{font-size:14px}.mat-checkbox{font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-checkbox-layout .mat-checkbox-label{line-height:24px}.mat-chip{font-size:14px;font-weight:500}.mat-chip .mat-chip-remove.mat-icon,.mat-chip .mat-chip-trailing-icon.mat-icon{font-size:18px}.mat-table{font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-header-cell{font-size:12px;font-weight:500}.mat-cell,.mat-footer-cell{font-size:14px}.mat-calendar{font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-calendar-body{font-size:13px}.mat-calendar-body-label,.mat-calendar-period-button{font-size:14px;font-weight:400}.mat-calendar-table-header th{font-size:11px;font-weight:400}.mat-dialog-title{font:500 20px/32px Roboto,\"Helvetica Neue\",sans-serif}.mat-expansion-panel-header{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:15px;font-weight:400}.mat-expansion-panel-content{font:400 14px/20px Roboto,\"Helvetica Neue\",sans-serif}.mat-form-field{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-form-field-wrapper{padding-bottom:1.34375em}.mat-form-field-prefix .mat-icon,.mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}.mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}.mat-form-field-infix{padding:.5em 0;border-top:.84375em solid transparent}.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label{-webkit-transform:translateY(-1.34375em) scale(.75);-ms-transform:translateY(-1.34375em) scale(.75);transform:translateY(-1.34375em) scale(.75);width:133.33333%}.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{-webkit-transform:translateY(-1.34374em) scale(.75);-ms-transform:translateY(-1.34374em) scale(.75);transform:translateY(-1.34374em) scale(.75);width:133.33334%}.mat-form-field-label-wrapper{top:-.84375em;padding-top:.84375em}.mat-form-field-label{top:1.34375em}.mat-form-field-underline{bottom:1.34375em}.mat-form-field-subscript-wrapper{font-size:75%;margin-top:.66667em;top:calc(100% - 1.79167em)}.mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}.mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label{-webkit-transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);-ms-transform:translateY(-1.28125em) scale(.75);width:133.33333%}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{-webkit-transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);-ms-transform:translateY(-1.28124em) scale(.75);width:133.33334%}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{-webkit-transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);-ms-transform:translateY(-1.28123em) scale(.75);width:133.33335%}.mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}.mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.54167em;top:calc(100% - 1.66667em)}@media print{.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label{-webkit-transform:translateY(-1.28122em) scale(.75);-ms-transform:translateY(-1.28122em) scale(.75);transform:translateY(-1.28122em) scale(.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{-webkit-transform:translateY(-1.28121em) scale(.75);transform:translateY(-1.28121em) scale(.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{-webkit-transform:translateY(-1.2812em) scale(.75);-ms-transform:translateY(-1.2812em) scale(.75);transform:translateY(-1.2812em) scale(.75)}}.mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em}.mat-form-field-appearance-fill .mat-form-field-label{top:1.09375em;margin-top:-.5em}.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label{-webkit-transform:translateY(-.59375em) scale(.75);-ms-transform:translateY(-.59375em) scale(.75);transform:translateY(-.59375em) scale(.75);width:133.33333%}.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{-webkit-transform:translateY(-.59374em) scale(.75);-ms-transform:translateY(-.59374em) scale(.75);transform:translateY(-.59374em) scale(.75);width:133.33334%}.mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0}.mat-form-field-appearance-outline .mat-form-field-label{top:1.84375em;margin-top:-.25em}.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label{-webkit-transform:translateY(-1.59375em) scale(.75);-ms-transform:translateY(-1.59375em) scale(.75);transform:translateY(-1.59375em) scale(.75);width:133.33333%}.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{-webkit-transform:translateY(-1.59374em) scale(.75);-ms-transform:translateY(-1.59374em) scale(.75);transform:translateY(-1.59374em) scale(.75);width:133.33334%}.mat-grid-tile-footer,.mat-grid-tile-header{font-size:14px}.mat-grid-tile-footer .mat-line,.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2),.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:12px}input.mat-input-element{margin-top:-.0625em}.mat-menu-item{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:14px;font-weight:400}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:12px}.mat-radio-button,.mat-select{font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-select-trigger{height:1.125em}.mat-slide-toggle-content{font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-slider-thumb-label-text{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:12px;font-weight:500}.mat-stepper-horizontal,.mat-stepper-vertical{font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-step-label{font-size:14px;font-weight:400}.mat-step-sub-label-error{font-weight:400}.mat-step-label-error{font-size:14px}.mat-step-label-selected{font-size:14px;font-weight:500}.mat-tab-group{font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-tab-label,.mat-tab-link{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:14px;font-weight:400}.mat-tooltip{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.mat-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}.mat-list-item,.mat-list-option{font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-list .mat-list-item,.mat-nav-list .mat-list-item,.mat-selection-list .mat-list-item{font-size:16px}.mat-list .mat-list-item .mat-line,.mat-nav-list .mat-list-item .mat-line,.mat-selection-list .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list .mat-list-item .mat-line:nth-child(n+2),.mat-nav-list .mat-list-item .mat-line:nth-child(n+2),.mat-selection-list .mat-list-item .mat-line:nth-child(n+2){font-size:14px}.mat-list .mat-list-option,.mat-nav-list .mat-list-option,.mat-selection-list .mat-list-option{font-size:16px}.mat-list .mat-list-option .mat-line,.mat-nav-list .mat-list-option .mat-line,.mat-selection-list .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list .mat-list-option .mat-line:nth-child(n+2),.mat-nav-list .mat-list-option .mat-line:nth-child(n+2),.mat-selection-list .mat-list-option .mat-line:nth-child(n+2){font-size:14px}.mat-list .mat-subheader,.mat-nav-list .mat-subheader,.mat-selection-list .mat-subheader{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:14px;font-weight:500}.mat-list[dense] .mat-list-item,.mat-nav-list[dense] .mat-list-item,.mat-selection-list[dense] .mat-list-item{font-size:12px}.mat-list[dense] .mat-list-item .mat-line,.mat-nav-list[dense] .mat-list-item .mat-line,.mat-selection-list[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list[dense] .mat-list-item .mat-line:nth-child(n+2),.mat-list[dense] .mat-list-option,.mat-nav-list[dense] .mat-list-item .mat-line:nth-child(n+2),.mat-nav-list[dense] .mat-list-option,.mat-selection-list[dense] .mat-list-item .mat-line:nth-child(n+2),.mat-selection-list[dense] .mat-list-option{font-size:12px}.mat-list[dense] .mat-list-option .mat-line,.mat-nav-list[dense] .mat-list-option .mat-line,.mat-selection-list[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list[dense] .mat-list-option .mat-line:nth-child(n+2),.mat-nav-list[dense] .mat-list-option .mat-line:nth-child(n+2),.mat-selection-list[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}.mat-list[dense] .mat-subheader,.mat-nav-list[dense] .mat-subheader,.mat-selection-list[dense] .mat-subheader{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:12px;font-weight:500}.mat-option{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:16px}.mat-optgroup-label{font:500 14px/24px Roboto,\"Helvetica Neue\",sans-serif}.mat-simple-snackbar{font-family:Roboto,\"Helvetica Neue\",sans-serif;font-size:14px}.mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:400}.mat-tree{font-family:Roboto,\"Helvetica Neue\",sans-serif}.mat-nested-tree-node,.mat-tree-node{font-weight:400;font-size:14px}.mat-ripple{overflow:hidden;position:relative}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;-webkit-transition:opacity,-webkit-transform cubic-bezier(0,0,.2,1);transition:opacity,transform cubic-bezier(0,0,.2,1),-webkit-transform cubic-bezier(0,0,.2,1);-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}@media screen and (-ms-high-contrast:active){.mat-ripple-element{display:none}}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;outline:0;-webkit-appearance:none;-moz-appearance:none}.cdk-global-overlay-wrapper,.cdk-overlay-container{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:-webkit-box;display:-ms-flexbox;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;-webkit-transition:opacity .4s cubic-bezier(.25,.8,.25,1);transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}@media screen and (-ms-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,.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}@-webkit-keyframes cdk-text-field-autofill-start{/*!*/}@keyframes cdk-text-field-autofill-start{/*!*/}@-webkit-keyframes cdk-text-field-autofill-end{/*!*/}@keyframes cdk-text-field-autofill-end{/*!*/}.cdk-text-field-autofill-monitored:-webkit-autofill{-webkit-animation-name:cdk-text-field-autofill-start;animation-name:cdk-text-field-autofill-start}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){-webkit-animation-name:cdk-text-field-autofill-end;animation-name:cdk-text-field-autofill-end}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{height:auto!important;overflow:hidden!important;padding:2px 0!important;box-sizing:content-box!important}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font:400 20px/32px Roboto,\"Helvetica Neue\",sans-serif;margin:0}body .bgc-td-slate,body .bgc-td-slate-800,body .bgc-td-slate-900{background-color:#394851}body .bgc-td-slate-600,body .bgc-td-slate-700{background-color:#616d73}body .bgc-td-slate-400,body .bgc-td-slate-500{background-color:#899296}body .bgc-td-slate-200,body .bgc-td-slate-300{background-color:#b0b6b9}body .bgc-td-slate-100,body .bgc-td-slate-50{background-color:#d8dbdc}body .tc-td-slate,body .tc-td-slate-800,body .tc-td-slate-900{color:#394851}body .tc-td-slate-600,body .tc-td-slate-700{color:#616d73}body .tc-td-slate-400,body .tc-td-slate-500{color:#899296}body .tc-td-slate-200,body .tc-td-slate-300{color:#b0b6b9}body .tc-td-slate-100,body .tc-td-slate-50{color:#d8dbdc}body .fill-td-slate,body .fill-td-slate-800,body .fill-td-slate-900{fill:#394851}body .fill-td-slate-600,body .fill-td-slate-700{fill:#616d73}body .fill-td-slate-400,body .fill-td-slate-500{fill:#899296}body .fill-td-slate-200,body .fill-td-slate-300{fill:#b0b6b9}body .fill-td-slate-100,body .fill-td-slate-50{fill:#d8dbdc}body .bgc-td-orange,body .bgc-td-orange-800,body .bgc-td-orange-900{background-color:#f3753f}body .bgc-td-orange-600,body .bgc-td-orange-700{background-color:#f58e6f}body .bgc-td-orange-400,body .bgc-td-orange-500{background-color:#f7aa93}body .bgc-td-orange-200,body .bgc-td-orange-300{background-color:#fac7b7}body .bgc-td-orange-100,body .bgc-td-orange-50{background-color:#fce3db}body .tc-td-orange,body .tc-td-orange-800,body .tc-td-orange-900{color:#f3753f}body .tc-td-orange-600,body .tc-td-orange-700{color:#f58e6f}body .tc-td-orange-400,body .tc-td-orange-500{color:#f7aa93}body .tc-td-orange-200,body .tc-td-orange-300{color:#fac7b7}body .tc-td-orange-100,body .tc-td-orange-50{color:#fce3db}body .fill-td-orange,body .fill-td-orange-800,body .fill-td-orange-900{fill:#f3753f}body .fill-td-orange-600,body .fill-td-orange-700{fill:#f58e6f}body .fill-td-orange-400,body .fill-td-orange-500{fill:#f7aa93}body .fill-td-orange-200,body .fill-td-orange-300{fill:#fac7b7}body .fill-td-orange-100,body .fill-td-orange-50{fill:#fce3db}body .bgc-td-yellow,body .bgc-td-yellow-800,body .bgc-td-yellow-900{background-color:#fec64d}body .bgc-td-yellow-600,body .bgc-td-yellow-700{background-color:#fdd381}body .bgc-td-yellow-400,body .bgc-td-yellow-500{background-color:#fedea0}body .bgc-td-yellow-200,body .bgc-td-yellow-300{background-color:#fee9c0}body .bgc-td-yellow-100,body .bgc-td-yellow-50{background-color:#fff4df}body .tc-td-yellow,body .tc-td-yellow-800,body .tc-td-yellow-900{color:#fec64d}body .tc-td-yellow-600,body .tc-td-yellow-700{color:#fdd381}body .tc-td-yellow-400,body .tc-td-yellow-500{color:#fedea0}body .tc-td-yellow-200,body .tc-td-yellow-300{color:#fee9c0}body .tc-td-yellow-100,body .tc-td-yellow-50{color:#fff4df}body .fill-td-yellow,body .fill-td-yellow-800,body .fill-td-yellow-900{fill:#fec64d}body .fill-td-yellow-600,body .fill-td-yellow-700{fill:#fdd381}body .fill-td-yellow-400,body .fill-td-yellow-500{fill:#fedea0}body .fill-td-yellow-200,body .fill-td-yellow-300{fill:#fee9c0}body .fill-td-yellow-100,body .fill-td-yellow-50{fill:#fff4df}body .bgc-td-teal,body .bgc-td-teal-800,body .bgc-td-teal-900{background-color:#00b2b1}body .bgc-td-teal-600,body .bgc-td-teal-700{background-color:#3fc3c1}body .bgc-td-teal-400,body .bgc-td-teal-500{background-color:#6fd2d0}body .bgc-td-teal-200,body .bgc-td-teal-300{background-color:#9fe1e0}body .bgc-td-teal-100,body .bgc-td-teal-50{background-color:#cff0ef}body .tc-td-teal,body .tc-td-teal-800,body .tc-td-teal-900{color:#00b2b1}body .tc-td-teal-600,body .tc-td-teal-700{color:#3fc3c1}body .tc-td-teal-400,body .tc-td-teal-500{color:#6fd2d0}body .tc-td-teal-200,body .tc-td-teal-300{color:#9fe1e0}body .tc-td-teal-100,body .tc-td-teal-50{color:#cff0ef}body .fill-td-teal,body .fill-td-teal-800,body .fill-td-teal-900{fill:#00b2b1}body .fill-td-teal-600,body .fill-td-teal-700{fill:#3fc3c1}body .fill-td-teal-400,body .fill-td-teal-500{fill:#6fd2d0}body .fill-td-teal-200,body .fill-td-teal-300{fill:#9fe1e0}body .fill-td-teal-100,body .fill-td-teal-50{fill:#cff0ef}body .bgc-td-blue,body .bgc-td-blue-800,body .bgc-td-blue-900{background-color:#0098c9}body .bgc-td-blue-600,body .bgc-td-blue-700{background-color:#49add1}body .bgc-td-blue-400,body .bgc-td-blue-500{background-color:#76c1dd}body .bgc-td-blue-200,body .bgc-td-blue-300{background-color:#a4d6e8}body .bgc-td-blue-100,body .bgc-td-blue-50{background-color:#d1eaf4}body .tc-td-blue,body .tc-td-blue-800,body .tc-td-blue-900{color:#0098c9}body .tc-td-blue-600,body .tc-td-blue-700{color:#49add1}body .tc-td-blue-400,body .tc-td-blue-500{color:#76c1dd}body .tc-td-blue-200,body .tc-td-blue-300{color:#a4d6e8}body .tc-td-blue-100,body .tc-td-blue-50{color:#d1eaf4}body .fill-td-blue,body .fill-td-blue-800,body .fill-td-blue-900{fill:#0098c9}body .fill-td-blue-600,body .fill-td-blue-700{fill:#49add1}body .fill-td-blue-400,body .fill-td-blue-500{fill:#76c1dd}body .fill-td-blue-200,body .fill-td-blue-300{fill:#a4d6e8}body .fill-td-blue-100,body .fill-td-blue-50{fill:#d1eaf4}.mat-fab.mat-fab-bottom-right,.mat-fab.mat-fab-position-bottom-right,[mat-fab].mat-fab-bottom-right,[mat-fab].mat-fab-position-bottom-right{top:auto;right:20px;left:auto;bottom:20px;position:absolute}[dir=rtl] .mat-fab.mat-fab-bottom-right,[dir=rtl] .mat-fab.mat-fab-position-bottom-right,[dir=rtl] [mat-fab].mat-fab-bottom-right,[dir=rtl] [mat-fab].mat-fab-position-bottom-right,body[dir=rtl] .mat-fab.mat-fab-bottom-right,body[dir=rtl] .mat-fab.mat-fab-position-bottom-right,body[dir=rtl] [mat-fab].mat-fab-bottom-right,body[dir=rtl] [mat-fab].mat-fab-position-bottom-right,html[dir=rtl] .mat-fab.mat-fab-bottom-right,html[dir=rtl] .mat-fab.mat-fab-position-bottom-right,html[dir=rtl] [mat-fab].mat-fab-bottom-right,html[dir=rtl] [mat-fab].mat-fab-position-bottom-right{right:auto;unicode-bidi:embed;left:20px;unicode-bidi:embed}.mat-fab.mat-fab-bottom-right bdo[dir=rtl],.mat-fab.mat-fab-position-bottom-right bdo[dir=rtl],[mat-fab].mat-fab-bottom-right bdo[dir=rtl],[mat-fab].mat-fab-position-bottom-right bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}.mat-fab.mat-fab-bottom-right bdo[dir=ltr],.mat-fab.mat-fab-position-bottom-right bdo[dir=ltr],[mat-fab].mat-fab-bottom-right bdo[dir=ltr],[mat-fab].mat-fab-position-bottom-right bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}.mat-fab.mat-fab-bottom-right.fixed,.mat-fab.mat-fab-position-bottom-right.fixed,[mat-fab].mat-fab-bottom-right.fixed,[mat-fab].mat-fab-position-bottom-right.fixed{position:fixed}.mat-fab.mat-fab-bottom-left,.mat-fab.mat-fab-position-bottom-left,[mat-fab].mat-fab-bottom-left,[mat-fab].mat-fab-position-bottom-left{top:auto;right:auto;left:20px;bottom:20px;position:absolute}[dir=rtl] .mat-fab.mat-fab-bottom-left,[dir=rtl] .mat-fab.mat-fab-position-bottom-left,[dir=rtl] [mat-fab].mat-fab-bottom-left,[dir=rtl] [mat-fab].mat-fab-position-bottom-left,body[dir=rtl] .mat-fab.mat-fab-bottom-left,body[dir=rtl] .mat-fab.mat-fab-position-bottom-left,body[dir=rtl] [mat-fab].mat-fab-bottom-left,body[dir=rtl] [mat-fab].mat-fab-position-bottom-left,html[dir=rtl] .mat-fab.mat-fab-bottom-left,html[dir=rtl] .mat-fab.mat-fab-position-bottom-left,html[dir=rtl] [mat-fab].mat-fab-bottom-left,html[dir=rtl] [mat-fab].mat-fab-position-bottom-left{right:20px;unicode-bidi:embed;left:auto;unicode-bidi:embed}.mat-fab.mat-fab-bottom-left bdo[dir=rtl],.mat-fab.mat-fab-position-bottom-left bdo[dir=rtl],[mat-fab].mat-fab-bottom-left bdo[dir=rtl],[mat-fab].mat-fab-position-bottom-left bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}.mat-fab.mat-fab-bottom-left bdo[dir=ltr],.mat-fab.mat-fab-position-bottom-left bdo[dir=ltr],[mat-fab].mat-fab-bottom-left bdo[dir=ltr],[mat-fab].mat-fab-position-bottom-left bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}.mat-fab.mat-fab-bottom-left.fixed,.mat-fab.mat-fab-position-bottom-left.fixed,[mat-fab].mat-fab-bottom-left.fixed,[mat-fab].mat-fab-position-bottom-left.fixed{position:fixed}.mat-fab.mat-fab-position-top-right,.mat-fab.mat-fab-top-right,[mat-fab].mat-fab-position-top-right,[mat-fab].mat-fab-top-right{top:20px;right:20px;left:auto;bottom:auto;position:absolute}[dir=rtl] .mat-fab.mat-fab-position-top-right,[dir=rtl] .mat-fab.mat-fab-top-right,[dir=rtl] [mat-fab].mat-fab-position-top-right,[dir=rtl] [mat-fab].mat-fab-top-right,body[dir=rtl] .mat-fab.mat-fab-position-top-right,body[dir=rtl] .mat-fab.mat-fab-top-right,body[dir=rtl] [mat-fab].mat-fab-position-top-right,body[dir=rtl] [mat-fab].mat-fab-top-right,html[dir=rtl] .mat-fab.mat-fab-position-top-right,html[dir=rtl] .mat-fab.mat-fab-top-right,html[dir=rtl] [mat-fab].mat-fab-position-top-right,html[dir=rtl] [mat-fab].mat-fab-top-right{right:auto;unicode-bidi:embed;left:20px;unicode-bidi:embed}.mat-fab.mat-fab-position-top-right bdo[dir=rtl],.mat-fab.mat-fab-top-right bdo[dir=rtl],[mat-fab].mat-fab-position-top-right bdo[dir=rtl],[mat-fab].mat-fab-top-right bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}.mat-fab.mat-fab-position-top-right bdo[dir=ltr],.mat-fab.mat-fab-top-right bdo[dir=ltr],[mat-fab].mat-fab-position-top-right bdo[dir=ltr],[mat-fab].mat-fab-top-right bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}.mat-fab.mat-fab-position-top-right.fixed,.mat-fab.mat-fab-top-right.fixed,[mat-fab].mat-fab-position-top-right.fixed,[mat-fab].mat-fab-top-right.fixed{position:fixed}.mat-fab.mat-fab-position-top-left,.mat-fab.mat-fab-top-left,[mat-fab].mat-fab-position-top-left,[mat-fab].mat-fab-top-left{top:20px;right:auto;left:20px;bottom:auto;position:absolute}[dir=rtl] .mat-fab.mat-fab-position-top-left,[dir=rtl] .mat-fab.mat-fab-top-left,[dir=rtl] [mat-fab].mat-fab-position-top-left,[dir=rtl] [mat-fab].mat-fab-top-left,body[dir=rtl] .mat-fab.mat-fab-position-top-left,body[dir=rtl] .mat-fab.mat-fab-top-left,body[dir=rtl] [mat-fab].mat-fab-position-top-left,body[dir=rtl] [mat-fab].mat-fab-top-left,html[dir=rtl] .mat-fab.mat-fab-position-top-left,html[dir=rtl] .mat-fab.mat-fab-top-left,html[dir=rtl] [mat-fab].mat-fab-position-top-left,html[dir=rtl] [mat-fab].mat-fab-top-left{right:20px;unicode-bidi:embed;left:auto;unicode-bidi:embed}.mat-fab.mat-fab-position-top-left bdo[dir=rtl],.mat-fab.mat-fab-top-left bdo[dir=rtl],[mat-fab].mat-fab-position-top-left bdo[dir=rtl],[mat-fab].mat-fab-top-left bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}.mat-fab.mat-fab-position-top-left bdo[dir=ltr],.mat-fab.mat-fab-top-left bdo[dir=ltr],[mat-fab].mat-fab-position-top-left bdo[dir=ltr],[mat-fab].mat-fab-top-left bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}.mat-fab.mat-fab-position-top-left.fixed,.mat-fab.mat-fab-top-left.fixed,[mat-fab].mat-fab-position-top-left.fixed,[mat-fab].mat-fab-top-left.fixed{position:fixed}button[mat-icon-button].mat-icon-button-mini{height:24px;line-height:24px;width:24px}html .mat-card{padding:0;margin:8px}html .mat-card mat-card-header{height:auto}html .mat-card [matCardAvatar]{font-size:40px;line-height:40px;height:40px;width:40px;margin:16px 0 0 15px;border-radius:50%}html .mat-card .mat-card-image{width:100%}html .mat-card .mat-card-image,html .mat-card .mat-card-lg-image,html .mat-card .mat-card-md-image,html .mat-card .mat-card-sm-image,html .mat-card .mat-card-title-group{margin:0}html .mat-card mat-card-title{padding-top:16px;padding-left:16px;padding-right:16px}html .mat-card mat-card-subtitle{padding-left:16px;padding-right:16px}html .mat-card mat-card-content{padding:16px}html .mat-card .mat-card .mat-card-actions,html .mat-card .mat-card-actions{padding:8px;margin:0}html .mat-card .mat-card-actions:last-child{margin-bottom:0;padding-bottom:8px}html .mat-card .mat-divider.relative{position:relative}html[dir=rtl] .mat-card-title-group .mat-card-image:last-child,html[dir=rtl] .mat-card-title-group .mat-card-lg-image:last-child,html[dir=rtl] .mat-card-title-group .mat-card-md-image:last-child,html[dir=rtl] .mat-card-title-group .mat-card-sm-image:last-child{border-top-left-radius:2px;border-bottom-left-radius:2px}html[dir=rtl] .mat-card .mat-card-image:first-child{border-top-left-radius:2px;border-top-right-radius:2px}html[dir=rtl] .mat-card .mat-card-lg-image:first-child,html[dir=rtl] .mat-card .mat-card-md-image:first-child,html[dir=rtl] .mat-card .mat-card-sm-image:first-child{border-top-right-radius:2px}html:not([dir=rtl]) .mat-card-title-group .mat-card-image:last-child,html:not([dir=rtl]) .mat-card-title-group .mat-card-lg-image:last-child,html:not([dir=rtl]) .mat-card-title-group .mat-card-md-image:last-child,html:not([dir=rtl]) .mat-card-title-group .mat-card-sm-image:last-child{border-top-right-radius:2px;border-bottom-right-radius:2px}html:not([dir=rtl]) .mat-card .mat-card-image:first-child{border-top-left-radius:2px;border-top-right-radius:2px}html:not([dir=rtl]) .mat-card .mat-card-lg-image:first-child,html:not([dir=rtl]) .mat-card .mat-card-md-image:first-child,html:not([dir=rtl]) .mat-card .mat-card-sm-image:first-child{border-top-left-radius:2px}.mat-card-colored[href]:hover,.mat-card-colored[ng-reflect-href]:hover{cursor:pointer;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-card-colored[href]:active,.mat-card-colored[ng-reflect-href]:active{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-card-colored[href]:active mat-toolbar,.mat-card-colored[ng-reflect-href]:active mat-toolbar{background-color:rgba(255,255,255,.2);background-position:-100% 100%}.mat-card-colored[href] mat-toolbar,.mat-card-colored[ng-reflect-href] mat-toolbar{background-size:200% 100%;background-image:-webkit-gradient(linear,left top,right top,color-stop(50%,transparent),color-stop(50%,rgba(255,255,255,.2)));background-image:linear-gradient(to right,transparent 50%,rgba(255,255,255,.2) 50%);-webkit-transition:background-position .3s cubic-bezier(.19,1,.22,1) .1s,color .5s,background-color .5s;transition:background-position .3s cubic-bezier(.19,1,.22,1) .1s,color .5s,background-color .5s}.mat-card-colored mat-toolbar{height:148px;border-radius:2px 2px 0 0;overflow:hidden}.mat-card-colored mat-toolbar .mat-icon,.mat-card-colored mat-toolbar mat-icon{opacity:.65;color:#fff;font-size:8rem;text-shadow:0 0 rgba(0,0,0,.01),1px 1px rgba(0,0,0,.01),2px 2px rgba(0,0,0,.01),3px 3px rgba(0,0,0,.01),4px 4px rgba(0,0,0,.01),5px 5px rgba(0,0,0,.01),6px 6px rgba(0,0,0,.01),7px 7px rgba(0,0,0,.01),8px 8px rgba(0,0,0,.01),9px 9px rgba(0,0,0,.01),10px 10px rgba(0,0,0,.01),11px 11px rgba(0,0,0,.01),12px 12px rgba(0,0,0,.01),13px 13px rgba(0,0,0,.01),14px 14px rgba(0,0,0,.01),15px 15px rgba(0,0,0,.01),16px 16px rgba(0,0,0,.01),17px 17px rgba(0,0,0,.01),18px 18px rgba(0,0,0,.01),19px 19px rgba(0,0,0,.01),20px 20px rgba(0,0,0,.01),21px 21px rgba(0,0,0,.01),22px 22px rgba(0,0,0,.01),23px 23px rgba(0,0,0,.01),24px 24px rgba(0,0,0,.01),25px 25px rgba(0,0,0,.01),26px 26px rgba(0,0,0,.01),27px 27px rgba(0,0,0,.01),28px 28px rgba(0,0,0,.01),29px 29px rgba(0,0,0,.01),30px 30px rgba(0,0,0,.01),31px 31px rgba(0,0,0,.01),32px 32px rgba(0,0,0,.01),33px 33px rgba(0,0,0,.01),34px 34px rgba(0,0,0,.01),35px 35px rgba(0,0,0,.01),36px 36px rgba(0,0,0,.01),37px 37px rgba(0,0,0,.01),38px 38px rgba(0,0,0,.01),39px 39px rgba(0,0,0,.01),40px 40px rgba(0,0,0,.01),41px 41px rgba(0,0,0,.01),42px 42px rgba(0,0,0,.01),43px 43px rgba(0,0,0,.01),44px 44px rgba(0,0,0,.01),45px 45px rgba(0,0,0,.01),46px 46px rgba(0,0,0,.01),47px 47px rgba(0,0,0,.01),48px 48px rgba(0,0,0,.01),49px 49px rgba(0,0,0,.01),50px 50px rgba(0,0,0,.01),51px 51px rgba(0,0,0,.01),52px 52px rgba(0,0,0,.01),53px 53px rgba(0,0,0,.01),54px 54px rgba(0,0,0,.01),55px 55px rgba(0,0,0,.01),56px 56px rgba(0,0,0,.01),57px 57px rgba(0,0,0,.01),58px 58px rgba(0,0,0,.01),59px 59px rgba(0,0,0,.01),60px 60px rgba(0,0,0,.01),61px 61px rgba(0,0,0,.01),62px 62px rgba(0,0,0,.01),63px 63px rgba(0,0,0,.01),64px 64px rgba(0,0,0,.01),65px 65px rgba(0,0,0,.01),66px 66px rgba(0,0,0,.01),67px 67px rgba(0,0,0,.01),68px 68px rgba(0,0,0,.01),69px 69px rgba(0,0,0,.01),70px 70px rgba(0,0,0,.01),71px 71px rgba(0,0,0,.01),72px 72px rgba(0,0,0,.01),73px 73px rgba(0,0,0,.01),74px 74px rgba(0,0,0,.01),75px 75px rgba(0,0,0,.01),76px 76px rgba(0,0,0,.01),77px 77px rgba(0,0,0,.01),78px 78px rgba(0,0,0,.01),79px 79px rgba(0,0,0,.01),80px 80px rgba(0,0,0,.01),81px 81px rgba(0,0,0,.01),82px 82px rgba(0,0,0,.01),83px 83px rgba(0,0,0,.01),84px 84px rgba(0,0,0,.01),85px 85px rgba(0,0,0,.01),86px 86px rgba(0,0,0,.01),87px 87px rgba(0,0,0,.01),88px 88px rgba(0,0,0,.01),89px 89px rgba(0,0,0,.01),90px 90px rgba(0,0,0,.01),91px 91px rgba(0,0,0,.01),92px 92px rgba(0,0,0,.01),93px 93px rgba(0,0,0,.01),94px 94px rgba(0,0,0,.01),95px 95px rgba(0,0,0,.01),96px 96px rgba(0,0,0,.01),97px 97px rgba(0,0,0,.01),98px 98px rgba(0,0,0,.01),99px 99px rgba(0,0,0,.01),100px 100px rgba(0,0,0,.01),101px 101px rgba(0,0,0,.01),102px 102px rgba(0,0,0,.01),103px 103px rgba(0,0,0,.01),104px 104px rgba(0,0,0,.01),105px 105px rgba(0,0,0,.01),106px 106px rgba(0,0,0,.01),107px 107px rgba(0,0,0,.01),108px 108px rgba(0,0,0,.01),109px 109px rgba(0,0,0,.01),110px 110px rgba(0,0,0,.01),111px 111px rgba(0,0,0,.01),112px 112px rgba(0,0,0,.01),113px 113px rgba(0,0,0,.01),114px 114px rgba(0,0,0,.01),115px 115px rgba(0,0,0,.01),116px 116px rgba(0,0,0,.01),117px 117px rgba(0,0,0,.01),118px 118px rgba(0,0,0,.01),119px 119px rgba(0,0,0,.01),120px 120px rgba(0,0,0,.01),121px 121px rgba(0,0,0,.01),122px 122px rgba(0,0,0,.01),123px 123px rgba(0,0,0,.01),124px 124px rgba(0,0,0,.01),125px 125px rgba(0,0,0,.01),126px 126px rgba(0,0,0,.01),127px 127px rgba(0,0,0,.01),128px 128px rgba(0,0,0,.01),129px 129px rgba(0,0,0,.01),130px 130px rgba(0,0,0,.01),131px 131px rgba(0,0,0,.01),132px 132px rgba(0,0,0,.01),133px 133px rgba(0,0,0,.01),134px 134px rgba(0,0,0,.01),135px 135px rgba(0,0,0,.01),136px 136px rgba(0,0,0,.01),137px 137px rgba(0,0,0,.01),138px 138px rgba(0,0,0,.01),139px 139px rgba(0,0,0,.01),140px 140px rgba(0,0,0,.01),141px 141px rgba(0,0,0,.01),142px 142px rgba(0,0,0,.01),143px 143px rgba(0,0,0,.01),144px 144px rgba(0,0,0,.01),145px 145px rgba(0,0,0,.01),146px 146px rgba(0,0,0,.01),147px 147px rgba(0,0,0,.01),148px 148px rgba(0,0,0,.01),149px 149px rgba(0,0,0,.01),150px 150px rgba(0,0,0,.01),151px 151px rgba(0,0,0,.01),152px 152px rgba(0,0,0,.01),153px 153px rgba(0,0,0,.01),154px 154px rgba(0,0,0,.01),155px 155px rgba(0,0,0,.01),156px 156px rgba(0,0,0,.01),157px 157px rgba(0,0,0,.01),158px 158px rgba(0,0,0,.01),159px 159px rgba(0,0,0,.01),160px 160px rgba(0,0,0,.01),161px 161px rgba(0,0,0,.01),162px 162px rgba(0,0,0,.01),163px 163px rgba(0,0,0,.01),164px 164px rgba(0,0,0,.01),165px 165px rgba(0,0,0,.01),166px 166px rgba(0,0,0,.01),167px 167px rgba(0,0,0,.01),168px 168px rgba(0,0,0,.01),169px 169px rgba(0,0,0,.01),170px 170px rgba(0,0,0,.01),171px 171px rgba(0,0,0,.01),172px 172px rgba(0,0,0,.01),173px 173px rgba(0,0,0,.01),174px 174px rgba(0,0,0,.01),175px 175px rgba(0,0,0,.01),176px 176px rgba(0,0,0,.01),177px 177px rgba(0,0,0,.01),178px 178px rgba(0,0,0,.01),179px 179px rgba(0,0,0,.01),180px 180px rgba(0,0,0,.01),181px 181px rgba(0,0,0,.01),182px 182px rgba(0,0,0,.01),183px 183px rgba(0,0,0,.01),184px 184px rgba(0,0,0,.01),185px 185px rgba(0,0,0,.01),186px 186px rgba(0,0,0,.01),187px 187px rgba(0,0,0,.01),188px 188px rgba(0,0,0,.01),189px 189px rgba(0,0,0,.01),190px 190px rgba(0,0,0,.01),191px 191px rgba(0,0,0,.01),192px 192px rgba(0,0,0,.01),193px 193px rgba(0,0,0,.01),194px 194px rgba(0,0,0,.01),195px 195px rgba(0,0,0,.01),196px 196px rgba(0,0,0,.01),197px 197px rgba(0,0,0,.01),198px 198px rgba(0,0,0,.01),199px 199px rgba(0,0,0,.01),200px 200px rgba(0,0,0,.01)}.mat-content,.md-content,[mat-content],[md-content],mat-content,md-content{display:block;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}.mat-content.mat-scroll-y,.mat-content[md-scroll-y],.md-content.mat-scroll-y,.md-content[md-scroll-y],[mat-content].mat-scroll-y,[mat-content][md-scroll-y],[md-content].mat-scroll-y,[md-content][md-scroll-y],mat-content.mat-scroll-y,mat-content[md-scroll-y],md-content.mat-scroll-y,md-content[md-scroll-y]{overflow-y:auto;overflow-x:hidden}.mat-content.mat-scroll-x,.mat-content[md-scroll-x],.md-content.mat-scroll-x,.md-content[md-scroll-x],[mat-content].mat-scroll-x,[mat-content][md-scroll-x],[md-content].mat-scroll-x,[md-content][md-scroll-x],mat-content.mat-scroll-x,mat-content[md-scroll-x],md-content.mat-scroll-x,md-content[md-scroll-x]{overflow-x:auto;overflow-y:hidden}.mat-content.autoScroll,.md-content.autoScroll,[mat-content].autoScroll,[md-content].autoScroll,mat-content.autoScroll,md-content.autoScroll{-webkit-overflow-scrolling:auto}mat-sidenav-container>.mat-content,mat-sidenav-container>.md-content,mat-sidenav-container>[mat-content],mat-sidenav-container>[md-content],mat-sidenav-container>mat-content,mat-sidenav-container>md-content{height:100%;overflow:hidden}mat-divider[mat-inset],mat-divider[matInset]{margin-left:72px;margin-right:0}[dir=rtl] mat-divider[mat-inset],[dir=rtl] mat-divider[matInset],body[dir=rtl] mat-divider[mat-inset],body[dir=rtl] mat-divider[matInset],html[dir=rtl] mat-divider[mat-inset],html[dir=rtl] mat-divider[matInset]{margin-left:0;unicode-bidi:embed;margin-right:72px;unicode-bidi:embed}mat-divider[mat-inset] bdo[dir=rtl],mat-divider[matInset] bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}mat-divider[mat-inset] bdo[dir=ltr],mat-divider[matInset] bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}.mat-list-item-content mat-icon[matListAvatar],mat-list-item mat-icon[matListAvatar]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;background-color:rgba(0,0,0,.04)}.mat-icon.mat-icon-logo{height:24px;width:100px;position:relative;top:-2px}.mat-icon{-ms-flex-negative:0;flex-shrink:0}mat-list a[mat-list-item] [matListAvatar],mat-list mat-list-item [matListAvatar],mat-nav-list a[mat-list-item] [matListAvatar],mat-nav-list mat-list-item [matListAvatar]{min-width:40px}mat-sidenav{width:320px}mat-sidenav .mat-list-item-content mat-icon{margin-left:0;margin-right:16px;color:#737373;fill:#737373}[dir=rtl] mat-sidenav .mat-list-item-content mat-icon,body[dir=rtl] mat-sidenav .mat-list-item-content mat-icon,html[dir=rtl] mat-sidenav .mat-list-item-content mat-icon{margin-left:16px;unicode-bidi:embed;margin-right:0;unicode-bidi:embed}mat-sidenav .mat-list-item-content mat-icon bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}mat-sidenav .mat-list-item-content mat-icon bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}[tabindex='-1']:focus,mat-sidenav [mat-list-item],mat-sidenav [mat-list-item]:active,mat-sidenav [mat-list-item]:focus{outline:0}body,html{height:100%;color:rgba(0,0,0,.87);background:#fff;position:relative}body{margin:0;padding:0;font-family:Roboto,\"Helvetica Neue\",sans-serif}.inset{padding:10px}button.md-no-style{font-weight:400;background-color:inherit;text-align:left;border:none;padding:0;margin:0}[dir=rtl] button.md-no-style,body[dir=rtl] button.md-no-style,html[dir=rtl] button.md-no-style{text-align:right;unicode-bidi:embed}button.md-no-style bdo[dir=rtl]{direction:rtl;unicode-bidi:bidi-override}button.md-no-style bdo[dir=ltr]{direction:ltr;unicode-bidi:bidi-override}button,input,select,textarea{vertical-align:baseline}button,html input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{cursor:default}textarea{vertical-align:top;overflow:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box;-webkit-box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit