Commit 777ff389 authored by prumde's avatar prumde

Updated


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@174480 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1ada2a9e
import { BrowserModule } from '@angular/platform-browser'; import { BrowserModule } from '@angular/platform-browser';
import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core'; import { NgModule, CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA } from '@angular/core';
import { LocationStrategy, HashLocationStrategy } from '@angular/common'; import { LocationStrategy, HashLocationStrategy } from '@angular/common';
import { FormsModule,ReactiveFormsModule } from '@angular/forms'; import { FormsModule,ReactiveFormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http'; import { HttpModule } from '@angular/http';
import { RouterModule, Routes } from '@angular/router'; import { RouterModule, Routes } from '@angular/router';
import {BBKeyInputModule} from 'base-blocks';
//import { JwtHelper } from 'angular2-jwt'; //For Future //import { JwtHelper } from 'angular2-jwt'; //For Future
import {StoreModule} from '@ngrx/store'; import {StoreModule} from '@ngrx/store';
import {EffectsModule} from '@ngrx/effects'; import {EffectsModule} from '@ngrx/effects';
import { MaterialModule } from '@angular/material';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component'; import { AppComponent } from './app.component';
...@@ -45,6 +46,11 @@ import { EcmTemplateComponent, EcmTemplateDirective } from './ecm-product-detail ...@@ -45,6 +46,11 @@ import { EcmTemplateComponent, EcmTemplateDirective } from './ecm-product-detail
import { EcmCartComponent, ECMConfirmDialog, CounterComponent } from './ecm-view/ecm-cart/ecm-cart.component'; import { EcmCartComponent, ECMConfirmDialog, CounterComponent } from './ecm-view/ecm-cart/ecm-cart.component';
import { EcmCartService } from './ecm-view/ecm-cart/ecm-cart.service'; import { EcmCartService } from './ecm-view/ecm-cart/ecm-cart.service';
import { ProfileInfoService } from './user-profile/profile-info.service';
import { UserAddressService } from './user-address/ecm-user-address.service';
import { UserReviewService } from './user-review/ecm-user-review.service';
import { UserCardService } from './user-card/ecm-user-card.service';
import { EcmCheckoutService } from './ecm-view/ecm-checkout/ecm-checkout.service';
import { EcmProductReviewService } from './ecm-product-details/ecm-product-review.service'; import { EcmProductReviewService } from './ecm-product-details/ecm-product-review.service';
import { EcmRecentViewComponent } from './ecm-view/ecm-recent-view/ecm-recent-view.component'; import { EcmRecentViewComponent } from './ecm-view/ecm-recent-view/ecm-recent-view.component';
import { EcmReadmoreComponent } from './ecm-view/ecm-readmore/ecm-readmore.component'; import { EcmReadmoreComponent } from './ecm-view/ecm-readmore/ecm-readmore.component';
...@@ -60,10 +66,19 @@ import { EcmProductDetailService } from './ecm-product-details/ecm-product-detai ...@@ -60,10 +66,19 @@ import { EcmProductDetailService } from './ecm-product-details/ecm-product-detai
import { EcmLocationService } from './ecm-search/ecm-location.service'; import { EcmLocationService } from './ecm-search/ecm-location.service';
import reducer from './ecm-store/reducers'; import reducer from './ecm-store/reducers';
import {CartActions, CategoryActions, SubCategoryActions, ItemActions, LocationActions, WishListActions, MenuActions} from './ecm-store/actions'; import {CartActions, CategoryActions, SubCategoryActions, ItemActions, LocationActions, WishListActions, MenuActions,ProfileActions, AdressAction, ReviewAction, SavedCardAction} from './ecm-store/actions';
import {CartEffects, CategoryEffects, SubCategoryEffects, ItemEffects, WishlistEffects, MenuEffects} from './ecm-store/effects'; import {CartEffects, CategoryEffects, SubCategoryEffects, ItemEffects, WishlistEffects, MenuEffects,ProfileEffects, AddressEffects, ReviewsEffects, SavedCardEffects} from './ecm-store/effects';
import { EcmPanelComponent, ECMDialog } from './ecm-view/ecm-panel/ecm-panel.component'; import { EcmPanelComponent, ECMDialog } from './ecm-view/ecm-panel/ecm-panel.component';
import { UserProfileComponent, ProfileEditor, ProfileScreenComponent } from './user-profile';
import { UserAddressComponent, AddressEditor, AddressScreenComponent } from './user-address';
import { UserCardComponent, CardEditor, CardScreenComponent } from './user-card';
import { UserReviewComponent, ReviewEditor, ReviewScreenComponent } from './user-review';
import { MyProfileComponent } from './my-profile/my-profile.component';
import { ChangePasswordComponent } from './change-password/change-password.component';
import { MaterialModule } from './module';
//Changes by Prajyot //Changes by Prajyot
const appRoutes: Routes = [ const appRoutes: Routes = [
{ path: '', redirectTo: 'home', pathMatch: 'full' }, { path: '', redirectTo: 'home', pathMatch: 'full' },
...@@ -76,8 +91,16 @@ const appRoutes: Routes = [ ...@@ -76,8 +91,16 @@ const appRoutes: Routes = [
{ path: 'search/:value', component: EcmSearchResultComponent}, { path: 'search/:value', component: EcmSearchResultComponent},
{ path: 'cart', component: EcmCartComponent}, { path: 'cart', component: EcmCartComponent},
{ path: 'checkout', component: EcmCheckoutComponent}, { path: 'checkout', component: EcmCheckoutComponent},
{ path: 'wishlist', component: EcmWishListComponent} { path: 'wishlist', component: EcmWishListComponent},
{ path: 'myprofile', component: MyProfileComponent, children: [
{ path: 'userprofile', component: UserProfileComponent, outlet: 'profile' },
{ path: 'useraddress', component: UserAddressComponent, outlet: 'profile' },
{ path: 'chgpassword', component: ChangePasswordComponent, outlet: 'profile' },
{ path: 'usercard', component: UserCardComponent, outlet: 'profile' },
{ path: 'userreview', component: UserReviewComponent, outlet: 'profile' }]
}
]; ];
@NgModule({ @NgModule({
declarations: [ declarations: [
AppComponent, AppComponent,
...@@ -118,7 +141,21 @@ const appRoutes: Routes = [ ...@@ -118,7 +141,21 @@ const appRoutes: Routes = [
RatingComponent, RatingComponent,
EcmWishListComponent, EcmWishListComponent,
EcmPanelComponent, EcmPanelComponent,
ECMDialog ECMDialog,
UserProfileComponent,
UserAddressComponent,
UserCardComponent,
UserReviewComponent,
MyProfileComponent,
ChangePasswordComponent,
AddressEditor,
AddressScreenComponent,
ProfileEditor,
ProfileScreenComponent,
CardEditor,
CardScreenComponent,
ReviewEditor,
ReviewScreenComponent
], ],
imports: [ imports: [
BrowserModule, BrowserModule,
...@@ -134,7 +171,14 @@ const appRoutes: Routes = [ ...@@ -134,7 +171,14 @@ const appRoutes: Routes = [
EffectsModule.run(SubCategoryEffects), EffectsModule.run(SubCategoryEffects),
EffectsModule.run(ItemEffects), EffectsModule.run(ItemEffects),
EffectsModule.run(WishlistEffects), EffectsModule.run(WishlistEffects),
EffectsModule.run(MenuEffects) EffectsModule.run(ProfileEffects),
EffectsModule.run(MenuEffects),
EffectsModule.run(AddressEffects),
EffectsModule.run(ReviewsEffects),
EffectsModule.run(SavedCardEffects),
FormsModule,
BrowserAnimationsModule,
BBKeyInputModule
], ],
providers: [ providers: [
{provide: LocationStrategy, useClass: HashLocationStrategy}, {provide: LocationStrategy, useClass: HashLocationStrategy},
...@@ -148,13 +192,19 @@ const appRoutes: Routes = [ ...@@ -148,13 +192,19 @@ const appRoutes: Routes = [
CategoryActions, CategoryActions,
EcmSubCategoryService, EcmSubCategoryService,
SubCategoryActions, SubCategoryActions,
ProfileInfoService,
UserAddressService,
UserReviewService,
UserCardService,
ItemActions, ItemActions,
EcmProductService, EcmProductService,
EcmProductDetailService, EcmProductDetailService,
LocationActions, LocationActions,
EcmLocationService, EcmLocationService,
WishListActions, WishListActions,
MenuActions MenuActions,
ProfileActions,
AdressAction, ReviewAction, SavedCardAction
], ],
entryComponents: [ entryComponents: [
EcmOutingComponent, EcmOutingComponent,
...@@ -165,7 +215,8 @@ const appRoutes: Routes = [ ...@@ -165,7 +215,8 @@ const appRoutes: Routes = [
ECMWriteReviewDialog, ECMWriteReviewDialog,
ECMDialog ECMDialog
], ],
bootstrap: [AppComponent], schemas:[CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA],
schemas: [NO_ERRORS_SCHEMA] bootstrap: [AppComponent]
}) })
export class AppModule { } export class AppModule { }
...@@ -146,6 +146,20 @@ export class EcmBreadcrumbsComponent implements OnInit { ...@@ -146,6 +146,20 @@ export class EcmBreadcrumbsComponent implements OnInit {
}); });
} }
if ( this.pageName == 'USERPROFILE' ) {
this.breadcrumbs = [];
this.breadcrumbs.push( {
label: 'Home',
url: '/home'
});
this.breadcrumbs.push( {
label: 'My Profile',
url: 'javascript:void(0)'
});
}
} }
backClicked() { backClicked() {
......
...@@ -31,8 +31,10 @@ Overlay End --> ...@@ -31,8 +31,10 @@ Overlay End -->
<section class="header-section visible"> <section class="header-section visible">
<div class="input-container-bg" [@fadeState]="headerFadeState"></div> <div class="input-container-bg" [@fadeState]="headerFadeState"></div>
<div class="input-container"> <div class="input-container">
<img *ngIf="userData" mdTooltip="Click here to Manage Account" [mdTooltipPosition]="'below'" (click)="userAction();" [src]="profileImageLink" onerror="this.src = '/ecm/assets/images/w_user_128_128.png'; " class="user-adj user-image-128" title= "{{userData.name}}" [@userState]="headerFadeState" /> <span>
<img *ngIf="!userData" mdTooltip="Click here for Login" [mdTooltipPosition]="'below'" (click)="userAction();" class="img-user user-adj" [@userState]="headerFadeState" src="w_user_128_128.png"/> <img *ngIf="userData" (click)="userAction();" [src]="profileImageLink" onerror="this.src = '/ecm/assets/images/w_user_128_128.png'; " class="user-adj user-image-128" title= "{{userData.name}}" [@userState]="headerFadeState" />
<img *ngIf="!userData" (click)="userAction();" class="img-user user-adj" [@userState]="headerFadeState" src="w_user_128_128.png"/>
</span>
<div class="row"> <div class="row">
<div class="small-12 medium-10 large-10 medium-centered column"> <div class="small-12 medium-10 large-10 medium-centered column">
<img class="img-logo logo-adj" [@l2dLogoTrans]="headerFadeState" src="logo.png" /> <img class="img-logo logo-adj" [@l2dLogoTrans]="headerFadeState" src="logo.png" />
...@@ -47,7 +49,7 @@ Overlay End --> ...@@ -47,7 +49,7 @@ Overlay End -->
</ng-template> </ng-template>
<ng-template #fixedHeader> <ng-template #fixedHeader>
<div *ngIf="clientWidth > 640" > <div *ngIf="clientWidth >= 640" >
<ng-container *ngTemplateOutlet="fixedHeaderLarge"></ng-container> <ng-container *ngTemplateOutlet="fixedHeaderLarge"></ng-container>
</div> </div>
<div *ngIf="clientWidth < 639" > <div *ngIf="clientWidth < 639" >
...@@ -65,18 +67,18 @@ Overlay End --> ...@@ -65,18 +67,18 @@ Overlay End -->
<img class="fixed-header-logo img-logo-32" src="logo_32_32.svg" /> <img class="fixed-header-logo img-logo-32" src="logo_32_32.svg" />
<span class="siteHeading">{{siteHeading}}</span> <span class="siteHeading">{{siteHeading}}</span>
<ecm-search [compFadeState]="headerFadeState" [headerState]="'fixed'"></ecm-search> <ecm-search [compFadeState]="headerFadeState" [headerState]="'fixed'"></ecm-search>
<span (click)="cartAction();" > <span (click)="cartAction();" mdTooltip="Show Cart" [mdTooltipPosition]="'below'" >
<button md-button class="square-button"> <button md-button class="square-button">
<span *ngIf="(cartItems | async)?.length!=0" class="fixed-header-badge">{{(cartItems | async)?.length}}</span> <span *ngIf="(cartItems | async)?.length!=0" class="fixed-header-badge">{{(cartItems | async)?.length}}</span>
<img mdTooltip="Show Cart" [mdTooltipPosition]="'below'" class="fixed-header-cart img-cart-32" src="cart_32_32.svg"/> <img class="fixed-header-cart img-cart-32" src="cart_32_32.svg"/>
<!-- <img *ngIf="cartItems == 0" class="fixed-header-cart img-cart-32 no-badge" /> --> <!-- <img *ngIf="cartItems == 0" class="fixed-header-cart img-cart-32 no-badge" /> -->
<!--<md-icon class="example-icon">shopping_cart</md-icon>--> <!--<md-icon class="example-icon">shopping_cart</md-icon>-->
</button> </button>
</span> </span>
<span (click)="userAction();" > <span (click)="userAction();" [mdTooltip]="userToolTipText" [mdTooltipPosition]="'below'">
<button md-button class="square-button"> <button md-button class="square-button">
<img *ngIf="userData" mdTooltip="Click here to Manage Account" [mdTooltipPosition]="'below'" [src]="profileImageLink" onerror="this.src = '/ecm/assets/images/svg/user_32_32.svg'; this.className = 'fixed-header-no-user'" title="{{userData.name}}" [ngClass]="( userImage.src.indexOf('/ibase/') > 0 ) ? 'fixed-header-user' : 'fixed-header-no-user' " #userImage/> <img *ngIf="userData" [src]="profileImageLink" onerror="this.src = '/ecm/assets/images/svg/user_32_32.svg'; this.className = 'fixed-header-no-user'" title="{{userData.name}}" [ngClass]="( userImage.src.indexOf('/ibase/') > 0 ) ? 'fixed-header-user' : 'fixed-header-no-user' " #userImage/>
<img *ngIf="!userData" mdTooltip="Click here for Login" [mdTooltipPosition]="'below'" class="fixed-header-no-user img-user-32" src="user_32_32.svg"/> <img *ngIf="!userData" class="fixed-header-no-user img-user-32" src="user_32_32.svg"/>
<!--<md-icon class="example-icon">account_circle</md-icon>--> <!--<md-icon class="example-icon">account_circle</md-icon>-->
</button> </button>
</span> </span>
...@@ -98,18 +100,18 @@ Overlay End --> ...@@ -98,18 +100,18 @@ Overlay End -->
<i class="material-icons mobile-search">search</i> <i class="material-icons mobile-search">search</i>
</button> </button>
</span> </span>
<span (click)="cartAction();" > <span (click)="cartAction();" mdTooltip="Show Cart" [mdTooltipPosition]="'below'" >
<button md-button class="square-button"> <button md-button class="square-button">
<span *ngIf="cartCounter > 0" class="fixed-header-badge">{{ cartCounter }}</span> <span *ngIf="cartCounter > 0" class="fixed-header-badge">{{ cartCounter }}</span>
<img mdTooltip="Show Cart" [mdTooltipPosition]="'below'" class="fixed-header-cart img-cart-32" src="cart_32_32.svg"/> <img class="fixed-header-cart img-cart-32" src="cart_32_32.svg"/>
<!-- <img *ngIf="cartItems == 0" class="fixed-header-cart img-cart-32 no-badge" /> --> <!-- <img *ngIf="cartItems == 0" class="fixed-header-cart img-cart-32 no-badge" /> -->
<!--<md-icon class="example-icon">shopping_cart</md-icon>--> <!--<md-icon class="example-icon">shopping_cart</md-icon>-->
</button> </button>
</span> </span>
<span (click)="userAction();" > <span (click)="userAction();" [mdTooltip]="userToolTipText" [mdTooltipPosition]="'below'" >
<button md-button class="square-button"> <button md-button class="square-button">
<img *ngIf="userData" mdTooltip="Click here to Manage Account" [mdTooltipPosition]="'below'" [src]="profileImageLink" onerror="this.src = '/ecm/assets/images/svg/user_32_32.svg'; this.className = 'fixed-header-no-user'" title="{{userData.name}}" [ngClass]="( userImage.src.indexOf('/ibase/') > 0 ) ? 'fixed-header-user' : 'fixed-header-no-user' " #userImage/> <img *ngIf="userData" [src]="profileImageLink" onerror="this.src = '/ecm/assets/images/svg/user_32_32.svg'; this.className = 'fixed-header-no-user'" title="{{userData.name}}" [ngClass]="( userImage.src.indexOf('/ibase/') > 0 ) ? 'fixed-header-user' : 'fixed-header-no-user' " #userImage/>
<img *ngIf="!userData" mdTooltip="Click here for Login" [mdTooltipPosition]="'below'" class="fixed-header-no-user img-user-32" src="user_32_32.svg"/> <img *ngIf="!userData" class="fixed-header-no-user img-user-32" src="user_32_32.svg"/>
<!--<md-icon class="example-icon">account_circle</md-icon>--> <!--<md-icon class="example-icon">account_circle</md-icon>-->
</button> </button>
</span> </span>
......
...@@ -85,6 +85,8 @@ export class ECMHeaderComponent implements OnInit, OnDestroy { ...@@ -85,6 +85,8 @@ export class ECMHeaderComponent implements OnInit, OnDestroy {
@ViewChild( 'userImage' ) userImage: ElementRef; @ViewChild( 'userImage' ) userImage: ElementRef;
@ViewChild( 'ecmPanel' ) ecmPanel: EcmPanelComponent; @ViewChild( 'ecmPanel' ) ecmPanel: EcmPanelComponent;
userToolTipText : string;
selectedOption: string; selectedOption: string;
userData: any; userData: any;
sideOption: any; sideOption: any;
...@@ -115,11 +117,13 @@ export class ECMHeaderComponent implements OnInit, OnDestroy { ...@@ -115,11 +117,13 @@ export class ECMHeaderComponent implements OnInit, OnDestroy {
{ {
this.userData = JSON.parse( userInfo ); this.userData = JSON.parse( userInfo );
this.profileImageLink = this.userData.profileImageLink; this.profileImageLink = this.userData.profileImageLink;
this.userToolTipText = "Click here to Manage Account";
} }
else else
{ {
this.userData = null; this.userData = null;
this.profileImageLink = ""; this.profileImageLink = "";
this.userToolTipText = "Click here for Login";
} }
console.log( 'ECMHeaderComponent getUserInfo ::' + userInfo + ' \n this.userData :: ' + this.userData ); console.log( 'ECMHeaderComponent getUserInfo ::' + userInfo + ' \n this.userData :: ' + this.userData );
} }
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
<div class="my-menu-list"> <div class="my-menu-list">
<div class="nav-my-profile"> <div class="nav-my-profile">
<img class="ecm-user-icon" src="/ecm/assets/images/svg/user.svg" /> <img class="ecm-user-icon" src="/ecm/assets/images/svg/user.svg" />
<span class="menu-title">My Profile</span> <span class="menu-title" [routerLink]="['/myprofile']">My Profile</span>
</div> </div>
<div class="nav-orders"> <div class="nav-orders">
<img class="ecm-order-icon" src="/ecm/assets/images/svg/order.svg" /> <img class="ecm-order-icon" src="/ecm/assets/images/svg/order.svg" />
......
...@@ -32,7 +32,8 @@ export class EcmLocationService { ...@@ -32,7 +32,8 @@ export class EcmLocationService {
response => { response => {
if(response.status == 200){ if(response.status == 200){
let data = response.json(); let data = response.json();
console.log('geolocate -- data.......'+ JSON.stringify(data) ); console.log('geolocate -- data.......'+ JSON.stringify(data) );
console.log("the respective location data id"+data);
this.displayLocation(data); this.displayLocation(data);
} }
}, },
...@@ -84,9 +85,16 @@ export class EcmLocationService { ...@@ -84,9 +85,16 @@ export class EcmLocationService {
{ {
var resultObject = this.find("locality", data.results[0].address_components); var resultObject = this.find("locality", data.results[0].address_components);
//this.city = resultObject.long_name; //this.city = resultObject.long_name;
ecmLocation.city = resultObject.long_name; ecmLocation.city = resultObject.long_name;
//this.add = data.results[0].formatted_address; //this.add = data.results[0].formatted_address;
ecmLocation.address = data.results[0].formatted_address; ecmLocation.address = data.results[0].formatted_address;
ecmLocation.state = data.results[0].address_components[7].long_name;
ecmLocation.country = data.results[0].address_components[8].long_name;
ecmLocation.pincode = data.results[0].address_components[9].long_name;
console.log("----------");
console.log("start of a resultObject"+JSON.stringify(resultObject))
console.log("----------");
} }
//this.store.dispatch(this.locationAction.resetBlankLocation()); //this.store.dispatch(this.locationAction.resetBlankLocation());
......
...@@ -2,10 +2,12 @@ export class EcmLocation { ...@@ -2,10 +2,12 @@ export class EcmLocation {
public latitude : string; public latitude : string;
public longitude : string; public longitude : string;
public address: string; public address: string;
public pincode: number; public pincode: string;
public city: string; public city: string;
public country: string;
public state: string;
public toString(){ public toString(){
return "[" + this.latitude + "][" + this.longitude + "][" + this.address + "][" + this.pincode + "][" + this.city + "]"; return "[" + this.latitude + "][" + this.longitude + "][" + this.address + "][" + this.pincode + "][" + this.city + "][" + this.country + "][" + this.state + "]";
} }
} }
<form *ngIf="headerState === 'relative'" id="search-form" [@searchInputTrans]="compFadeState"> <form *ngIf="headerState === 'relative'" id="search-form" [@searchInputTrans]="compFadeState">
<span class="search-page-border"> <span class="search-page-border">
<input #myInput type="text" placeholder="Search Food, Tour, Events and More..." class="search-terms" name="search-terms" [formControl]="stateCtrl" [mdAutocomplete]="auto" /> <input #myInput type="text" placeholder="Search Food, Tour, Events and More..." class="search-terms" name="search-terms" [formControl]="stateCtrl" [mdAutocomplete]="auto" />
<md-autocomplete #auto="mdAutocomplete"> <md-autocomplete #auto>
<md-option *ngFor="let option of filteredOptions" [innerHTML]="option.term" [value]="option.term" (click)="search(option.term)" (onSelect)="search(option.term)"> <md-option *ngFor="let option of filteredOptions" [innerHTML]="option.term" [value]="option.term" (click)="search(option.term)" (onSelect)="search(option.term)">
</md-option> </md-option>
</md-autocomplete> </md-autocomplete>
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<form> <form>
<input #myInput type="text" placeholder="Search Food, Tour, Events and More..." class="search-terms-fixed" value="" name="search" id="search" [formControl]="stateCtrl" [mdAutocomplete]="auto" /> <input #myInput type="text" placeholder="Search Food, Tour, Events and More..." class="search-terms-fixed" value="" name="search" id="search" [formControl]="stateCtrl" [mdAutocomplete]="auto" />
<md-autocomplete #auto="mdAutocomplete"> <md-autocomplete #auto>
<md-option *ngFor="let option of filteredOptions" [innerHTML]="option.term" [value]="option.term" (click)="search(option.term)" (onSelect)="search(option.term)"> <md-option *ngFor="let option of filteredOptions" [innerHTML]="option.term" [value]="option.term" (click)="search(option.term)" (onSelect)="search(option.term)">
</md-option> </md-option>
</md-autocomplete> </md-autocomplete>
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
<i mdSuffix class="material-icons mobile-search" (click)="search(myInput.value)">search</i> <i mdSuffix class="material-icons mobile-search" (click)="search(myInput.value)">search</i>
</md-input-container> </md-input-container>
<md-autocomplete #auto="mdAutocomplete"> <md-autocomplete #auto>
<md-option *ngFor="let option of filteredOptions" [innerHTML]="option.term" [value]="option.term" (click)="search(option.term)" (onSelect)="search(option.term)"> <md-option *ngFor="let option of filteredOptions" [innerHTML]="option.term" [value]="option.term" (click)="search(option.term)" (onSelect)="search(option.term)">
</md-option> </md-option>
</md-autocomplete> </md-autocomplete>
......
...@@ -201,6 +201,7 @@ export class EcmSigninComponent implements OnInit { ...@@ -201,6 +201,7 @@ export class EcmSigninComponent implements OnInit {
{ {
this.userData = JSON.parse( result.Response.results ); this.userData = JSON.parse( result.Response.results );
this.userData.jti = this._username; this.userData.jti = this._username;
this.userData.profileImageLink = "/ibase/resource/images/users/" + this._username + ".png?temp=" + Math.random();
//Fetch User Data and Store in cache //Fetch User Data and Store in cache
this.signinService.fetchUserData().subscribe( this.signinService.fetchUserData().subscribe(
......
...@@ -438,6 +438,16 @@ h6 ...@@ -438,6 +438,16 @@ h6
padding: 0px 20px; padding: 0px 20px;
padding-top: 40px; padding-top: 40px;
} }
.changePass-userProfile{
padding: 0px;
padding-top: 0px;
}
.successFormscreen{
top: 40%;
color: mediumvioletred;
}
/* Change Password End */ /* Change Password End */
......
...@@ -26,6 +26,9 @@ ...@@ -26,6 +26,9 @@
<div *ngIf="activeScreen == 'changePwdScreen'" > <div *ngIf="activeScreen == 'changePwdScreen'" >
<ng-container *ngTemplateOutlet="changePwdScreen"></ng-container> <ng-container *ngTemplateOutlet="changePwdScreen"></ng-container>
</div> </div>
<div class="successFormscreen" *ngIf="activeScreen == 'successForm' && fullProfile">
<span>Password change successfully</span>
</div>
<ng-template #userInfoScreen> <ng-template #userInfoScreen>
<div class="user-option"> <div class="user-option">
...@@ -34,12 +37,12 @@ ...@@ -34,12 +37,12 @@
<div class="user-info-section"> <div class="user-info-section">
<div> <div>
<div class="user-profile-image" titile="Profile"> <div class="user-profile-image" titile="Profile">
<img [src]="userData.profileImageLink" onerror="this.src = '/ecm/assets/images/w_user_128_128.png'; " class="profile-image profile-image-128" title="{{userData.name}}" /> <img [src]="userData.profileImageLink" onerror="this.src = '/ecm/assets/images/w_user_128_128.png'; " class="profile-image profile-image-128" title="{{userData.NAME}}" />
</div> </div>
<i class="image-edit-icon" (click)="openDialog();"></i> <i class="image-edit-icon" (click)="openDialog();"></i>
</div> </div>
<span class="user-prof-name"> {{userData.EMP_NAME}}</span> <span class="user-prof-name"> {{userData.NAME}}</span>
<span class="user-prof-email"> {{userData.EMAIL_ID_OFF}} </span> <span class="user-prof-email"> {{userData.EMAIL_ID}} </span>
</div> </div>
<div class="user-profile-location-section"> <div class="user-profile-location-section">
<div class="user-profile-location" *ngIf="userLocation.address">{{userLocation.address}}</div> <div class="user-profile-location" *ngIf="userLocation.address">{{userLocation.address}}</div>
...@@ -58,8 +61,10 @@ ...@@ -58,8 +61,10 @@
<ng-template #changePwdScreen> <ng-template #changePwdScreen>
<div class="changePass-form"> <!-- <div [ngClass]="!fullProfile ? 'changePass-userProfile' : 'changePass-form'">
<span class="chg-password-header">Change Password</span> <h4 *ngIf="!fullProfile">Change Password</h4> -->
<div class="changePass-form">
<h4 *ngIf="!fullProfile">Change Password</h4>
<form #changePass="ngForm" (ngSubmit)="changePassword(changePass);" novalidate autocomplete="off"> <form #changePass="ngForm" (ngSubmit)="changePassword(changePass);" novalidate autocomplete="off">
<md-input-container class="password-input-container" [hideRequiredMarker] = "true"> <md-input-container class="password-input-container" [hideRequiredMarker] = "true">
<input mdInput class="username-input" placeholder="Current Password" required name="cpassword" [(ngModel)]="_current_password" #current_password="ngModel" (keydown)="clearTimer();" type = 'password' <input mdInput class="username-input" placeholder="Current Password" required name="cpassword" [(ngModel)]="_current_password" #current_password="ngModel" (keydown)="clearTimer();" type = 'password'
......
...@@ -30,7 +30,9 @@ export class EcmUserOptionComponent implements OnInit { ...@@ -30,7 +30,9 @@ export class EcmUserOptionComponent implements OnInit {
selectedOption: string; selectedOption: string;
contentPluginViewUI: any; contentPluginViewUI: any;
userData: any; userData: any;
activeScreen : string = 'userInfoScreen'; @Input('activeScreen') activeScreen : string = 'userInfoScreen';
@Input('fullProfile') fullProfile : boolean = false;
_current_password: string; _current_password: string;
_new_password: string; _new_password: string;
_confirm_password: string; _confirm_password: string;
...@@ -137,6 +139,7 @@ export class EcmUserOptionComponent implements OnInit { ...@@ -137,6 +139,7 @@ export class EcmUserOptionComponent implements OnInit {
if ( result.Response.status == 'success' ) { if ( result.Response.status == 'success' ) {
console.log( 'Logging Out' ); console.log( 'Logging Out' );
alert(result.Response.results); alert(result.Response.results);
this.activeScreen = 'successForm';
this.userData = null; this.userData = null;
//TODO Load Login Screen //TODO Load Login Screen
this.closePanel.emit(); this.closePanel.emit();
......
...@@ -496,8 +496,9 @@ md-card { ...@@ -496,8 +496,9 @@ md-card {
float: inherit !important; float: inherit !important;
display: block !important; display: block !important;
position: relative !important; position: relative !important;
padding: 20px; /* padding: 20px; */
padding-left: calc(25% + 15px); /* padding-left: calc(25% + 15px); */
padding-left: calc(25% + 9px);
} }
.items-cost-rate { .items-cost-rate {
text-align: left !important; text-align: left !important;
......
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {NgModule} from '@angular/core';
import {OverlayModule} from '@angular/cdk/overlay';
import {A11yModule} from '@angular/cdk/a11y';
import {BidiModule} from '@angular/cdk/bidi';
import {ObserversModule} from '@angular/cdk/observers';
import {PortalModule} from '@angular/cdk/portal';
import {MdCommonModule, MdRippleModule, PlatformModule, StyleModule, MdNativeDateModule } from '@angular/material/core';
import {MdButtonToggleModule} from '@angular/material/button-toggle';
import {MdButtonModule} from '@angular/material/button';
import {MdCheckboxModule} from '@angular/material/checkbox';
import {MdRadioModule} from '@angular/material/radio';
import {MdSelectModule} from '@angular/material/select';
import {MdSlideToggleModule} from '@angular/material/slide-toggle';
import {MdSliderModule} from '@angular/material/slider';
import {MdSidenavModule} from '@angular/material/sidenav';
import {MdListModule} from '@angular/material/list';
import {MdGridListModule} from '@angular/material/grid-list';
import {MdCardModule} from '@angular/material/card';
import {MdChipsModule} from '@angular/material/chips';
import {MdIconModule} from '@angular/material/icon';
import {MdProgressSpinnerModule} from '@angular/material/progress-spinner';
import {MdProgressBarModule} from '@angular/material/progress-bar';
import {MdInputModule} from '@angular/material/input';
import {MdSnackBarModule} from '@angular/material/snack-bar';
import {MdTabsModule} from '@angular/material/tabs';
import {MdToolbarModule} from '@angular/material/toolbar';
import {MdTooltipModule} from '@angular/material/tooltip';
import {MdMenuModule} from '@angular/material/menu';
import {MdDialogModule} from '@angular/material/dialog';
import {MdAutocompleteModule} from '@angular/material/autocomplete';
import {MdDatepickerModule} from '@angular/material/datepicker';
import {MdExpansionModule} from '@angular/material/expansion';
import {MdTableModule} from '@angular/material/table';
import {MdSortModule} from '@angular/material/sort';
import {MdPaginatorModule} from '@angular/material/paginator';
import {MdFormFieldModule} from '@angular/material/form-field';
const MATERIAL_MODULES = [
MdAutocompleteModule,
MdButtonModule,
MdButtonToggleModule,
MdCardModule,
MdChipsModule,
MdCheckboxModule,
MdDatepickerModule,
MdTableModule,
MdDialogModule,
MdExpansionModule,
MdFormFieldModule,
MdGridListModule,
MdIconModule,
MdInputModule,
MdListModule,
MdMenuModule,
MdPaginatorModule,
MdProgressBarModule,
MdProgressSpinnerModule,
MdRadioModule,
MdRippleModule,
MdSelectModule,
MdSidenavModule,
MdSliderModule,
MdSlideToggleModule,
MdSnackBarModule,
MdSortModule,
MdTabsModule,
MdToolbarModule,
MdTooltipModule,
OverlayModule,
PortalModule,
BidiModule,
StyleModule,
A11yModule,
PlatformModule,
MdCommonModule,
ObserversModule,
MdNativeDateModule
];
/** @deprecated */
@NgModule({
imports: MATERIAL_MODULES,
exports: MATERIAL_MODULES,
})
export class MaterialModule {}
/* indigo as - primary :: #3f51b5 */ /* indigo as - primary :: #3f51b5 >> var(--primary)*/
/* pink as - accent :: #ff4081 */ /* pink as - accent :: #ff4081 >> var(--accent)*/
/* red as - warn :: #f44336 */ /* red as - warn :: #f44336 */
:root { :root {
--primary: mediumvioletred; --primary: mediumvioletred;
...@@ -8,134 +8,542 @@ ...@@ -8,134 +8,542 @@
} }
.mat-elevation-z0 { .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 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)
0 rgba(0, 0, 0, .12)
} }
.mat-elevation-z1 { .mat-elevation-z1 {
box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 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)
rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12)
} }
.mat-elevation-z2 { .mat-elevation-z2 {
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 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)
rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)
} }
.mat-elevation-z3 { .mat-elevation-z3 {
box-shadow: 0 3px 3px -2px rgba(0, 0, 0, .2), 0 3px 4px 0 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)
rgba(0, 0, 0, .14), 0 1px 8px 0 rgba(0, 0, 0, .12)
} }
.mat-elevation-z4 { .mat-elevation-z4 {
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 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)
rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12)
} }
.mat-elevation-z5 { .mat-elevation-z5 {
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 5px 8px 0 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)
rgba(0, 0, 0, .14), 0 1px 14px 0 rgba(0, 0, 0, .12)
} }
.mat-elevation-z6 { .mat-elevation-z6 {
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 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)
rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12)
} }
.mat-elevation-z7 { .mat-elevation-z7 {
box-shadow: 0 4px 5px -2px rgba(0, 0, 0, .2), 0 7px 10px 1px 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)
rgba(0, 0, 0, .14), 0 2px 16px 1px rgba(0, 0, 0, .12)
} }
.mat-elevation-z8 { .mat-elevation-z8 {
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px 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)
rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12)
} }
.mat-elevation-z9 { .mat-elevation-z9 {
box-shadow: 0 5px 6px -3px rgba(0, 0, 0, .2), 0 9px 12px 1px 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)
rgba(0, 0, 0, .14), 0 3px 16px 2px rgba(0, 0, 0, .12)
} }
.mat-elevation-z10 { .mat-elevation-z10 {
box-shadow: 0 6px 6px -3px rgba(0, 0, 0, .2), 0 10px 14px 1px 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)
rgba(0, 0, 0, .14), 0 4px 18px 3px rgba(0, 0, 0, .12)
} }
.mat-elevation-z11 { .mat-elevation-z11 {
box-shadow: 0 6px 7px -4px rgba(0, 0, 0, .2), 0 11px 15px 1px 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)
rgba(0, 0, 0, .14), 0 4px 20px 3px rgba(0, 0, 0, .12)
} }
.mat-elevation-z12 { .mat-elevation-z12 {
box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .2), 0 12px 17px 2px 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)
rgba(0, 0, 0, .14), 0 5px 22px 4px rgba(0, 0, 0, .12)
} }
.mat-elevation-z13 { .mat-elevation-z13 {
box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .2), 0 13px 19px 2px 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)
rgba(0, 0, 0, .14), 0 5px 24px 4px rgba(0, 0, 0, .12)
} }
.mat-elevation-z14 { .mat-elevation-z14 {
box-shadow: 0 7px 9px -4px rgba(0, 0, 0, .2), 0 14px 21px 2px 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)
rgba(0, 0, 0, .14), 0 5px 26px 4px rgba(0, 0, 0, .12)
} }
.mat-elevation-z15 { .mat-elevation-z15 {
box-shadow: 0 8px 9px -5px rgba(0, 0, 0, .2), 0 15px 22px 2px 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)
rgba(0, 0, 0, .14), 0 6px 28px 5px rgba(0, 0, 0, .12)
} }
.mat-elevation-z16 { .mat-elevation-z16 {
box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px 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)
rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12)
} }
.mat-elevation-z17 { .mat-elevation-z17 {
box-shadow: 0 8px 11px -5px rgba(0, 0, 0, .2), 0 17px 26px 2px 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)
rgba(0, 0, 0, .14), 0 6px 32px 5px rgba(0, 0, 0, .12)
} }
.mat-elevation-z18 { .mat-elevation-z18 {
box-shadow: 0 9px 11px -5px rgba(0, 0, 0, .2), 0 18px 28px 2px 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)
rgba(0, 0, 0, .14), 0 7px 34px 6px rgba(0, 0, 0, .12)
} }
.mat-elevation-z19 { .mat-elevation-z19 {
box-shadow: 0 9px 12px -6px rgba(0, 0, 0, .2), 0 19px 29px 2px 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)
rgba(0, 0, 0, .14), 0 7px 36px 6px rgba(0, 0, 0, .12)
} }
.mat-elevation-z20 { .mat-elevation-z20 {
box-shadow: 0 10px 13px -6px rgba(0, 0, 0, .2), 0 20px 31px 3px 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)
rgba(0, 0, 0, .14), 0 8px 38px 7px rgba(0, 0, 0, .12)
} }
.mat-elevation-z21 { .mat-elevation-z21 {
box-shadow: 0 10px 13px -6px rgba(0, 0, 0, .2), 0 21px 33px 3px 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)
rgba(0, 0, 0, .14), 0 8px 40px 7px rgba(0, 0, 0, .12)
} }
.mat-elevation-z22 { .mat-elevation-z22 {
box-shadow: 0 10px 14px -6px rgba(0, 0, 0, .2), 0 22px 35px 3px 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)
rgba(0, 0, 0, .14), 0 8px 42px 7px rgba(0, 0, 0, .12)
} }
.mat-elevation-z23 { .mat-elevation-z23 {
box-shadow: 0 11px 14px -7px rgba(0, 0, 0, .2), 0 23px 36px 3px 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)
rgba(0, 0, 0, .14), 0 9px 44px 8px rgba(0, 0, 0, .12)
} }
.mat-elevation-z24 { .mat-elevation-z24 {
box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px 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)
rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12) }
.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-size: 11.62px;
font-weight: 400;
font-family: Roboto, "Helvetica Neue", sans-serif;
line-height: 20px;
margin: 0 0 12px
}
.mat-h6, .mat-typography h6 {
font-size: 9.38px;
font-weight: 400;
font-family: Roboto, "Helvetica Neue", sans-serif;
line-height: 20px;
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-button, .mat-fab, .mat-icon-button, .mat-mini-fab,
.mat-raised-button {
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 14px;
font-weight: 500
}
.mat-button-toggle {
font-family: Roboto, "Helvetica Neue", sans-serif
}
.mat-card {
font-family: Roboto, "Helvetica Neue", sans-serif
}
.mat-card-title {
font-size: 24px;
font-weight: 400
}
.mat-card-content, .mat-card-header .mat-card-title, .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: 13px;
line-height: 18px
}
.mat-chip .mat-chip-remove.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 {
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: 500
}
.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-family: Roboto, "Helvetica Neue", sans-serif;
font-size: inherit;
font-weight: 400;
line-height: 1.125
}
.mat-form-field-wrapper {
padding-bottom: 1.25em
}
.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: .4375em 0;
border-top: .84375em solid transparent
}
.mat-form-field-autofill-float:-webkit-autofill+.mat-form-field-placeholder-wrapper .mat-form-field-float
{
-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-placeholder-wrapper {
top: -.84375em;
padding-top: .84375em
}
.mat-form-field-placeholder {
top: 1.28125em
}
.mat-focused .mat-form-field-placeholder.mat-form-field-float,
.mat-form-field-placeholder.mat-form-field-float:not(.mat-form-field-empty){
-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-underline {
bottom: 1.25em
}
.mat-form-field-subscript-wrapper {
font-size: 75%;
margin-top: .54167em;
top: calc(100% - 1.66667em)
}
.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: 16px
}
.mat-paginator, .mat-paginator-page-size .mat-select-trigger {
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 12px
}
.mat-radio-button {
font-family: Roboto, "Helvetica Neue", sans-serif
}
.mat-select {
padding-top: 16px;
font-family: Roboto, "Helvetica Neue", sans-serif
}
.mat-select-trigger {
font-size: 16px
}
.mat-slide-toggle-content {
font: 400 14px/20px Roboto, "Helvetica Neue", sans-serif
}
.mat-slider-thumb-label-text {
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 12px;
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: 500
}
.mat-toolbar, .mat-toolbar h1, .mat-toolbar h2, .mat-toolbar h3,
.mat-toolbar h4, .mat-toolbar h5, .mat-toolbar h6 {
font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
margin: 0
}
.mat-tooltip {
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 10px;
padding-top: 6px;
padding-bottom: 6px
}
.mat-list-item {
font-family: Roboto, "Helvetica Neue", sans-serif
}
.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-nav-list[dense] .mat-list-item .mat-line:nth-child(n+2),
.mat-selection-list[dense] .mat-list-item .mat-line:nth-child(n+2) {
font-size: 12px
}
.mat-list[dense] .mat-list-option, .mat-nav-list[dense] .mat-list-option,
.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: 500
} }
.mat-ripple { .mat-ripple {
overflow: hidden overflow: hidden
} }
@media screen and (-ms-high-contrast:active) {
.mat-ripple {
display: none
}
}
.mat-ripple.mat-ripple-unbounded { .mat-ripple.mat-ripple-unbounded {
overflow: visible overflow: visible
} }
...@@ -156,8 +564,6 @@ ...@@ -156,8 +564,6 @@
line-height: 48px; line-height: 48px;
height: 48px; height: 48px;
padding: 0 16px; padding: 0 16px;
font-size: 16px;
font-family: Roboto, "Helvetica Neue", sans-serif;
text-align: left; text-align: left;
text-decoration: none; text-decoration: none;
position: relative; position: relative;
...@@ -190,12 +596,21 @@ ...@@ -190,12 +596,21 @@
cursor: default cursor: default
} }
.mat-optgroup .mat-option:not (.mat-option-multiple ){
padding-left: 32px
}
[dir=rtl] .mat-optgroup .mat-option:not (.mat-option-multiple ){
padding-left: 16px;
padding-right: 32px
}
.mat-option-ripple { .mat-option-ripple {
position: absolute;
top: 0; top: 0;
left: 0; left: 0;
bottom: 0;
right: 0; right: 0;
bottom: 0;
position: absolute;
pointer-events: none pointer-events: none
} }
...@@ -214,6 +629,40 @@ ...@@ -214,6 +629,40 @@
margin-right: 0 margin-right: 0
} }
.mat-optgroup-label {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
line-height: 48px;
height: 48px;
padding: 0 16px;
text-align: left;
text-decoration: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default
}
.mat-optgroup-label[disabled] {
cursor: default
}
[dir=rtl] .mat-optgroup-label {
text-align: right
}
.mat-optgroup-label .mat-icon {
margin-right: 16px
}
[dir=rtl] .mat-optgroup-label .mat-icon {
margin-left: 16px;
margin-right: 0
}
.cdk-visually-hidden { .cdk-visually-hidden {
border: 0; border: 0;
clip: rect(0, 0, 0, 0); clip: rect(0, 0, 0, 0);
...@@ -222,7 +671,6 @@ ...@@ -222,7 +671,6 @@
overflow: hidden; overflow: hidden;
padding: 0; padding: 0;
position: absolute; position: absolute;
text-transform: none;
width: 1px width: 1px
} }
...@@ -260,6 +708,7 @@ ...@@ -260,6 +708,7 @@
right: 0; right: 0;
z-index: 1000; z-index: 1000;
pointer-events: auto; pointer-events: auto;
-webkit-tap-highlight-color: transparent;
transition: opacity .4s cubic-bezier(.25, .8, .25, 1); transition: opacity .4s cubic-bezier(.25, .8, .25, 1);
opacity: 0 opacity: 0
} }
...@@ -290,22 +739,19 @@ ...@@ -290,22 +739,19 @@
color: rgba(0, 0, 0, .87) color: rgba(0, 0, 0, .87)
} }
.mat-option:focus:not (.mat-option-disabled ), .mat-option:hover:not (.mat-option-disabled .mat-option:focus:not (.mat-option-disabled ), .mat-option:hover:not (.mat-option-disabled ){
){
background: rgba(0, 0, 0, .04) background: rgba(0, 0, 0, .04)
} }
.mat-option.mat-selected.mat-primary, .mat-primary .mat-option.mat-selected .mat-primary .mat-option.mat-selected {
{
color: var(--primary) color: var(--primary)
} }
.mat-accent .mat-option.mat-selected, .mat-option.mat-selected.mat-accent .mat-accent .mat-option.mat-selected {
{
color: #ff4081 color: #ff4081
} }
.mat-option.mat-selected.mat-warn, .mat-warn .mat-option.mat-selected { .mat-warn .mat-option.mat-selected {
color: #f44336 color: #f44336
} }
...@@ -322,6 +768,14 @@ ...@@ -322,6 +768,14 @@
color: rgba(0, 0, 0, .38) color: rgba(0, 0, 0, .38)
} }
.mat-optgroup-label {
color: rgba(0, 0, 0, .54)
}
.mat-optgroup-disabled .mat-optgroup-label {
color: rgba(0, 0, 0, .38)
}
.mat-pseudo-checkbox { .mat-pseudo-checkbox {
color: rgba(0, 0, 0, .54) color: rgba(0, 0, 0, .54)
} }
...@@ -330,21 +784,18 @@ ...@@ -330,21 +784,18 @@
color: #fafafa color: #fafafa
} }
.mat-primary .mat-pseudo-checkbox-checked, .mat-primary .mat-pseudo-checkbox-indeterminate,
.mat-pseudo-checkbox-checked.mat-primary,
.mat-pseudo-checkbox-indeterminate.mat-primary {
background: var(--primary)
}
.mat-accent .mat-pseudo-checkbox-checked, .mat-accent .mat-pseudo-checkbox-indeterminate, .mat-accent .mat-pseudo-checkbox-checked, .mat-accent .mat-pseudo-checkbox-indeterminate,
.mat-pseudo-checkbox-checked.mat-accent, .mat-pseudo-checkbox-checked, .mat-pseudo-checkbox-indeterminate {
.mat-pseudo-checkbox-indeterminate.mat-accent {
background: #ff4081 background: #ff4081
} }
.mat-pseudo-checkbox-checked.mat-warn, .mat-primary .mat-pseudo-checkbox-checked, .mat-primary .mat-pseudo-checkbox-indeterminate
.mat-pseudo-checkbox-indeterminate.mat-warn, .mat-warn .mat-pseudo-checkbox-checked, {
.mat-warn .mat-pseudo-checkbox-indeterminate { background: var(--primary)
}
.mat-warn .mat-pseudo-checkbox-checked, .mat-warn .mat-pseudo-checkbox-indeterminate
{
background: #f44336 background: #f44336
} }
...@@ -366,7 +817,8 @@ ...@@ -366,7 +817,8 @@
color: rgba(0, 0, 0, .87) color: rgba(0, 0, 0, .87)
} }
.mat-autocomplete-panel .mat-option.mat-selected:not (.mat-active ){ .mat-autocomplete-panel .mat-option.mat-selected:not (.mat-active ):not
(:hover ){
background: #fff; background: #fff;
color: rgba(0, 0, 0, .87) color: rgba(0, 0, 0, .87)
} }
...@@ -384,12 +836,14 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -384,12 +836,14 @@ a.mat-button:focus, a.mat-button:hover{
color: var(--primary); color: var(--primary);
} }
.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay .mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay
{ {
/* background-color: rgba(63, 81, 181, .12) */
background-color: var(--button-overlay) background-color: var(--button-overlay)
} }
/*Custom Change*/
.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay .mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay
{ {
background-color: rgba(255, 64, 129, .12) background-color: rgba(255, 64, 129, .12)
...@@ -515,15 +969,6 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -515,15 +969,6 @@ a.mat-button:focus, a.mat-button:hover{
background-color: rgba(244, 67, 54, .2) background-color: rgba(244, 67, 54, .2)
} }
.mat-fab, .mat-mini-fab {
background-color: #ff4081;
color: #fff
}
.mat-fab .mat-ripple-element, .mat-mini-fab .mat-ripple-element {
background-color: rgba(255, 255, 255, .2)
}
.mat-button-toggle { .mat-button-toggle {
color: rgba(0, 0, 0, .38) color: rgba(0, 0, 0, .38)
} }
...@@ -534,7 +979,7 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -534,7 +979,7 @@ a.mat-button:focus, a.mat-button:hover{
.mat-button-toggle-checked { .mat-button-toggle-checked {
background-color: #e0e0e0; background-color: #e0e0e0;
color: #000 color: rgba(0, 0, 0, .54)
} }
.mat-button-toggle-disabled { .mat-button-toggle-disabled {
...@@ -621,28 +1066,76 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -621,28 +1066,76 @@ a.mat-button:focus, a.mat-button:hover{
color: rgba(0, 0, 0, .87) color: rgba(0, 0, 0, .87)
} }
.mat-chip.mat-chip-selected:not (.mat-basic-chip ){ .mat-chip:not (.mat-basic-chip ) .mat-chip-remove {
background-color: grey; color: rgba(0, 0, 0, .87);
color: rgba(255, 255, 255, .87) opacity: .4
}
.mat-chip:not (.mat-basic-chip ) .mat-chip-remove:hover {
opacity: .54
} }
.mat-chip.mat-chip-selected:not (.mat-basic-chip ).mat-primary { .mat-chip.mat-chip-selected.mat-primary {
background-color: var(--primary); background-color: var(--primary);
color: rgba(255, 255, 255, .87) color: rgba(255, 255, 255, .87)
} }
.mat-chip.mat-chip-selected:not (.mat-basic-chip ).mat-accent { .mat-chip.mat-chip-selected.mat-primary .mat-chip-remove {
color: rgba(255, 255, 255, .87);
opacity: .4
}
.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove:hover {
opacity: .54
}
.mat-chip.mat-chip-selected.mat-warn {
background-color: #f44336;
color: #fff
}
.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove {
color: #fff;
opacity: .4
}
.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove:hover {
opacity: .54
}
.mat-chip.mat-chip-selected.mat-accent {
background-color: #ff4081; background-color: #ff4081;
color: #fff color: #fff
} }
.mat-chip.mat-chip-selected:not (.mat-basic-chip ).mat-warn { .mat-chip.mat-chip-selected.mat-accent .mat-chip-remove {
background-color: #f44336; color: #fff;
color: #fff opacity: .4
}
.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove:hover {
opacity: .54
}
.mat-table {
background: #fff
}
.mat-header-row, .mat-row {
border-bottom-color: rgba(0, 0, 0, .12)
}
.mat-header-cell {
color: rgba(0, 0, 0, .54)
}
.mat-cell {
color: rgba(0, 0, 0, .87)
} }
.mat-datepicker-content { .mat-datepicker-content {
background-color: #fff background-color: #fff;
color: rgba(0, 0, 0, .87)
} }
.mat-calendar-arrow { .mat-calendar-arrow {
...@@ -670,8 +1163,7 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -670,8 +1163,7 @@ a.mat-button:focus, a.mat-button:hover{
border-color: transparent border-color: transparent
} }
.mat-calendar-body-disabled>.mat-calendar-body-cell-content:not (.mat-calendar-body-selected .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not (.mat-calendar-body-selected ){
){
color: rgba(0, 0, 0, .38) color: rgba(0, 0, 0, .38)
} }
...@@ -698,53 +1190,80 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -698,53 +1190,80 @@ a.mat-button:focus, a.mat-button:hover{
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .87) box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .87)
} }
.mat-calendar-body-disabled>.mat-calendar-body-today:not (.mat-calendar-body-selected .mat-calendar-body-disabled>.mat-calendar-body-today:not (.mat-calendar-body-selected){
){
border-color: rgba(0, 0, 0, .18) border-color: rgba(0, 0, 0, .18)
} }
.mat-dialog-container { .mat-dialog-container {
background: #fff background: #fff;
color: rgba(0, 0, 0, .87)
} }
.mat-icon.mat-primary { .mat-expansion-panel {
color: var(--primary) background: #fff;
color: rgba(0, 0, 0, .87)
} }
.mat-icon.mat-accent { .mat-action-row {
color: #ff4081 border-top-color: rgba(0, 0, 0, .12)
} }
.mat-icon.mat-warn { .mat-expansion-panel-header:not ([aria-disabled=true] ).cdk-keyboard-focused,
color: #f44336 .mat-expansion-panel-header:not ([aria-disabled=true] ).cdk-program-focused,
.mat-expansion-panel-header:not ([aria-disabled=true] ):hover {
background: rgba(0, 0, 0, .04)
}
.mat-expansion-panel-header-title {
color: rgba(0, 0, 0, .87)
}
.mat-expansion-indicator::after, .mat-expansion-panel-header-description
{
color: rgba(0, 0, 0, .54)
} }
.mat-input-placeholder { .mat-expansion-panel-header[aria-disabled=true] {
color: rgba(0, 0, 0, .38) color: rgba(0, 0, 0, .38)
} }
.mat-focused .mat-input-placeholder { .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description,
.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title
{
color: inherit
}
.mat-form-field {
width: 200px
}
.mat-form-field-placeholder {
color: rgba(0, 0, 0, .54)
}
.mat-hint {
color: rgba(0, 0, 0, .54)
}
.mat-focused .mat-form-field-placeholder {
color: var(--primary) color: var(--primary)
} }
.mat-focused .mat-input-placeholder.mat-accent { .mat-focused .mat-form-field-placeholder.mat-accent {
color: #ff4081 color: #ff4081
} }
.mat-focused .mat-input-placeholder.mat-warn { .mat-focused .mat-form-field-placeholder.mat-warn {
color: #f44336 color: #f44336
} }
.mat-input-element:disabled { .mat-focused .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker,
color: rgba(0, 0, 0, .38) .mat-form-field-autofill-float:-webkit-autofill+.mat-form-field-placeholder .mat-form-field-required-marker {
}
.mat-focused .mat-input-placeholder.mat-float .mat-placeholder-required,
input.mat-input-element:-webkit-autofill+.mat-input-placeholder .mat-placeholder-required
{
color: #ff4081 color: #ff4081
} }
/*Custom Change*/
.mat-focused .mat-input-placeholder.mat-float, .mat-focused .mat-input-placeholder.mat-float,
.mat-input-placeholder.mat-float:not(.mat-empty){ .mat-input-placeholder.mat-float:not(.mat-empty){
color: var(--primary); color: var(--primary);
...@@ -762,19 +1281,18 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -762,19 +1281,18 @@ a.mat-button:focus, a.mat-button:hover{
visibility: hidden; visibility: hidden;
} }
.mat-input-underline {
border-color: rgba(0, 0, 0, .12)
}
.mat-input-underline .mat-input-ripple { .mat-form-field-invalid:not(.ng-pristine) .mat-form-field-placeholder {
background-color: var(--primary) color: #f44336
} }
.mat-input-underline .mat-input-ripple.mat-accent { .mat-form-field-invalid:not(.ng-pristine) .mat-form-field-placeholder.mat-accent,
background-color: #ff4081 .mat-form-field-invalid:not(.ng-pristine) .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker
{
color: #f44336
} }
.mat-input-underline .mat-input-ripple.mat-warn { .mat-form-field-invalid:not(.ng-pristine) .mat-form-field-ripple {
background-color: #f44336 background-color: #f44336
} }
...@@ -787,19 +1305,83 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -787,19 +1305,83 @@ a.mat-button:focus, a.mat-button:hover{
.mat-input-invalid:not(.ng-pristine) .mat-input-ripple { .mat-input-invalid:not(.ng-pristine) .mat-input-ripple {
background-color: #f44336 background-color: #f44336
} }
/*Custom Change*/
.mat-form-field-underline {
background-color: rgba(0, 0, 0, .42)
}
.mat-form-field-underline.mat-disabled {
background-image: linear-gradient(to right, rgba(0, 0, 0, .42) 0, rgba(0, 0, 0, .42) 33%, transparent 0);
background-size: 4px 1px;
background-repeat: repeat-x
}
.mat-form-field-ripple {
background-color: var(--primary)
}
.mat-form-field-ripple.mat-accent {
background-color: #ff4081
}
.mat-form-field-ripple.mat-warn {
background-color: #f44336
}
/*
.mat-form-field-invalid .mat-form-field-placeholder {
color: #f44336
}
.mat-form-field-invalid .mat-form-field-placeholder.mat-accent,
.mat-form-field-invalid .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker
{
color: #f44336
}
.mat-form-field-invalid .mat-form-field-ripple {
background-color: #f44336
}
*/
.mat-error {
color: #f44336
}
.mat-icon.mat-primary {
color: var(--primary)
}
.mat-icon.mat-accent {
color: #ff4081
}
.mat-input-error { .mat-icon.mat-warn {
color: #f44336 color: #f44336
} }
.mat-list .mat-list-item, .mat-nav-list .mat-list-item { .mat-input-element:disabled {
color: rgba(0, 0, 0, .42)
}
.mat-list .mat-list-item, .mat-nav-list .mat-list-item,
.mat-selection-list .mat-list-item {
color: rgba(0, 0, 0, .87)
}
.mat-list .mat-list-option, .mat-nav-list .mat-list-option,
.mat-selection-list .mat-list-option {
color: rgba(0, 0, 0, .87) color: rgba(0, 0, 0, .87)
} }
.mat-list .mat-subheader, .mat-nav-list .mat-subheader { .mat-list .mat-subheader, .mat-nav-list .mat-subheader,
.mat-selection-list .mat-subheader {
color: rgba(0, 0, 0, .54) color: rgba(0, 0, 0, .54)
} }
.mat-list-item-disabled {
background-color: #eee
}
.mat-divider { .mat-divider {
border-top-color: rgba(0, 0, 0, .12) border-top-color: rgba(0, 0, 0, .12)
} }
...@@ -813,7 +1395,15 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -813,7 +1395,15 @@ a.mat-button:focus, a.mat-button:hover{
background: rgba(0, 0, 0, .04) background: rgba(0, 0, 0, .04)
} }
.mat-menu-content { .mat-list-option {
outline: 0
}
.mat-list-option.mat-list-item-focus, .mat-list-option:hover {
background: rgba(0, 0, 0, .04)
}
.mat-menu-panel {
background: #fff background: #fff
} }
...@@ -826,18 +1416,36 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -826,18 +1416,36 @@ a.mat-button:focus, a.mat-button:hover{
color: rgba(0, 0, 0, .38) color: rgba(0, 0, 0, .38)
} }
.mat-menu-item .mat-icon { .mat-menu-item .mat-icon, .mat-menu-item-submenu-trigger::after {
color: rgba(0, 0, 0, .54); color: rgba(0, 0, 0, .54)
vertical-align: middle
} }
.mat-menu-item:focus:not ([disabled] ), .mat-menu-item:hover:not ([disabled] .mat-menu-item-highlighted:not ([disabled] ), .mat-menu-item:focus:not ([disabled]
){ ), .mat-menu-item:hover:not ([disabled] ){
background: rgba(0, 0, 0, .04) background: rgba(0, 0, 0, .04)
} }
.mat-paginator {
background: #fff
}
.mat-paginator, .mat-paginator-page-size .mat-select-trigger {
color: rgba(0, 0, 0, .54)
}
.mat-paginator-decrement, .mat-paginator-increment {
border-top: 2px solid rgba(0, 0, 0, .54);
border-right: 2px solid rgba(0, 0, 0, .54)
}
.mat-icon-button[disabled] .mat-paginator-decrement, .mat-icon-button[disabled] .mat-paginator-increment
{
border-color: rgba(0, 0, 0, .38)
}
.mat-progress-bar-background { .mat-progress-bar-background {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23c5cae9%27%2F%3E%3C%2Fsvg%3E") background-image:
url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23c5cae9%27%2F%3E%3C%2Fsvg%3E")
} }
.mat-progress-bar-buffer { .mat-progress-bar-buffer {
...@@ -849,7 +1457,8 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -849,7 +1457,8 @@ a.mat-button:focus, a.mat-button:hover{
} }
.mat-progress-bar.mat-accent .mat-progress-bar-background { .mat-progress-bar.mat-accent .mat-progress-bar-background {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ff80ab%27%2F%3E%3C%2Fsvg%3E") background-image:
url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ff80ab%27%2F%3E%3C%2Fsvg%3E")
} }
.mat-progress-bar.mat-accent .mat-progress-bar-buffer { .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
...@@ -861,7 +1470,8 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -861,7 +1470,8 @@ a.mat-button:focus, a.mat-button:hover{
} }
.mat-progress-bar.mat-warn .mat-progress-bar-background { .mat-progress-bar.mat-warn .mat-progress-bar-background {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ffcdd2%27%2F%3E%3C%2Fsvg%3E") background-image:
url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ffcdd2%27%2F%3E%3C%2Fsvg%3E")
} }
.mat-progress-bar.mat-warn .mat-progress-bar-buffer { .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
...@@ -888,42 +1498,74 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -888,42 +1498,74 @@ a.mat-button:focus, a.mat-button:hover{
border-color: rgba(0, 0, 0, .54) border-color: rgba(0, 0, 0, .54)
} }
.mat-radio-checked .mat-radio-outer-circle {
border-color: #ff4081
}
.mat-radio-disabled .mat-radio-outer-circle { .mat-radio-disabled .mat-radio-outer-circle {
border-color: rgba(0, 0, 0, .38) border-color: rgba(0, 0, 0, .38)
} }
.mat-radio-inner-circle { .mat-radio-disabled .mat-radio-inner-circle, .mat-radio-disabled .mat-radio-ripple .mat-ripple-element
{
background-color: rgba(0, 0, 0, .38)
}
.mat-radio-disabled .mat-radio-label-content {
color: rgba(0, 0, 0, .38)
}
.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle
{
border-color: var(--primary)
}
.mat-radio-button.mat-primary .mat-radio-inner-circle {
background-color: var(--primary)
}
.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element {
background-color: rgba(63, 81, 181, .26)
}
.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
border-color: #ff4081
}
.mat-radio-button.mat-accent .mat-radio-inner-circle {
background-color: #ff4081 background-color: #ff4081
} }
.mat-radio-ripple .mat-ripple-element { .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element {
background-color: rgba(255, 64, 129, .26) background-color: rgba(255, 64, 129, .26)
} }
.mat-radio-disabled .mat-radio-inner-circle, .mat-radio-disabled .mat-radio-ripple .mat-ripple-element .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
{ border-color: #f44336
background-color: rgba(0, 0, 0, .38)
} }
.mat-radio-disabled .mat-radio-label-content { .mat-radio-button.mat-warn .mat-radio-inner-circle {
color: rgba(0, 0, 0, .38) background-color: #f44336
}
.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element {
background-color: rgba(244, 67, 54, .26)
} }
.mat-select-arrow, .mat-select-trigger { .mat-select-arrow, .mat-select-trigger {
color: rgba(0, 0, 0, .38) color: rgba(0, 0, 0, .54)
} }
.mat-select-underline { .mat-select-underline {
background-color: rgba(0, 0, 0, .12) background-color: rgba(0, 0, 0, .42)
}
[aria-disabled=true] .mat-select-underline {
background-image: linear-gradient(to right, rgba(0, 0, 0, .42) 0,
rgba(0, 0, 0, .42) 33%, transparent 0);
background-size: 4px 1px;
background-repeat: repeat-x
} }
.mat-select-arrow, .mat-select-disabled .mat-select-value, .mat-select-arrow, .mat-select-disabled .mat-select-value,
.mat-select-trigger { .mat-select-trigger {
color: rgba(0, 0, 0, .38) color: rgba(0, 0, 0, .54)
} }
.mat-select-content, .mat-select-panel-done-animating { .mat-select-content, .mat-select-panel-done-animating {
...@@ -934,6 +1576,10 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -934,6 +1576,10 @@ a.mat-button:focus, a.mat-button:hover{
color: rgba(0, 0, 0, .87) color: rgba(0, 0, 0, .87)
} }
.mat-select-panel .mat-option.mat-selected:not (.mat-option-multiple ){
background: rgba(0, 0, 0, .12)
}
.mat-select:focus:not (.mat-select-disabled ).mat-primary .mat-select-arrow, .mat-select:focus:not (.mat-select-disabled ).mat-primary .mat-select-arrow,
.mat-select:focus:not (.mat-select-disabled ).mat-primary .mat-select-trigger .mat-select:focus:not (.mat-select-disabled ).mat-primary .mat-select-trigger
{ {
...@@ -956,35 +1602,38 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -956,35 +1602,38 @@ a.mat-button:focus, a.mat-button:hover{
background-color: #ff4081 background-color: #ff4081
} }
.mat-select:focus:not (.mat-select-disabled ).mat-warn .mat-select-arrow, .mat-select:focus:not (.mat-select-disabled ).mat-select-required .mat-select-placeholder::after
.mat-select:focus:not (.mat-select-disabled ).mat-warn .mat-select-trigger, {
.mat-select:not (:focus ).ng-invalid.ng-touched:not (.mat-select-disabled color: #f44336
) .mat-select-arrow, .mat-select:not (:focus ).ng-invalid.ng-touched:not }
(.mat-select-disabled ) .mat-select-trigger {
.mat-select-invalid .mat-select-arrow, .mat-select-invalid .mat-select-trigger,
.mat-select:focus:not (.mat-select-disabled ).mat-warn .mat-select-arrow,
.mat-select:focus:not (.mat-select-disabled ).mat-warn .mat-select-trigger
{
color: #f44336 color: #f44336
} }
.mat-select:focus:not (.mat-select-disabled ).mat-warn .mat-select-underline, .mat-select-invalid .mat-select-underline, .mat-select:focus:not (.mat-select-disabled
.mat-select:not (:focus ).ng-invalid.ng-touched:not (.mat-select-disabled ).mat-warn .mat-select-underline {
) .mat-select-underline {
background-color: #f44336 background-color: #f44336
} }
.mat-sidenav-container { .mat-drawer-container {
background-color: #fafafa; background-color: #fafafa;
color: rgba(0, 0, 0, .87) color: rgba(0, 0, 0, .87)
} }
.mat-sidenav { .mat-drawer {
background-color: #fff; background-color: #fff;
color: rgba(0, 0, 0, .87) color: rgba(0, 0, 0, .87)
} }
.mat-sidenav.mat-sidenav-push { .mat-drawer.mat-drawer-push {
background-color: #fff background-color: #fff
} }
.mat-sidenav-backdrop.mat-sidenav-shown { .mat-drawer-backdrop.mat-drawer-shown {
background-color: rgba(0, 0, 0, .6) background-color: rgba(0, 0, 0, .6)
} }
...@@ -1114,7 +1763,7 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -1114,7 +1763,7 @@ a.mat-button:focus, a.mat-button:hover{
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb, .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label
{ {
background-color: #000 background-color: rgba(0, 0, 0, .87)
} }
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb, .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
...@@ -1146,12 +1795,15 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -1146,12 +1795,15 @@ a.mat-button:focus, a.mat-button:hover{
} }
.mat-slider-horizontal .mat-slider-ticks { .mat-slider-horizontal .mat-slider-ticks {
background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, .7), rgba(0, 0, 0, .7) 2px, transparent 0, transparent); background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, .7),
background-image: -moz-repeating-linear-gradient(.0001deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .7) 2px, transparent 0, transparent) rgba(0, 0, 0, .7) 2px, transparent 0, transparent);
background-image: -moz-repeating-linear-gradient(.0001deg, rgba(0, 0, 0, .7),
rgba(0, 0, 0, .7) 2px, transparent 0, transparent)
} }
.mat-slider-vertical .mat-slider-ticks { .mat-slider-vertical .mat-slider-ticks {
background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, .7), rgba(0, 0, 0, .7) 2px, transparent 0, transparent) background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, .7),
rgba(0, 0, 0, .7) 2px, transparent 0, transparent)
} }
.mat-tab-header, .mat-tab-nav-bar { .mat-tab-header, .mat-tab-nav-bar {
...@@ -1164,20 +1816,188 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -1164,20 +1816,188 @@ a.mat-button:focus, a.mat-button:hover{
border-bottom: none border-bottom: none
} }
.mat-tab-label:focus { .mat-tab-label, .mat-tab-link {
color: rgba(0, 0, 0, .87)
}
.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {
color: rgba(0, 0, 0, .38)
}
.mat-tab-header-pagination-chevron {
border-color: rgba(0, 0, 0, .87)
}
.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
border-color: rgba(0, 0, 0, .38)
}
.mat-tab-group[class*=mat-background-] .mat-tab-header, .mat-tab-nav-bar[class*=mat-background-]
{
border-bottom: none;
border-top: none
}
.mat-tab-group.mat-primary .mat-tab-label:focus, .mat-tab-group.mat-primary .mat-tab-link:focus,
.mat-tab-nav-bar.mat-primary .mat-tab-label:focus, .mat-tab-nav-bar.mat-primary .mat-tab-link:focus
{
background-color: rgba(197, 202, 233, .3) background-color: rgba(197, 202, 233, .3)
} }
.mat-ink-bar { .mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar
{
background-color: var(--primary) background-color: var(--primary)
} }
.mat-tab-label, .mat-tab-link { .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar,
color: rgba(0, 0, 0, .87) .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
background-color: rgba(255, 255, 255, .87)
} }
.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled { .mat-tab-group.mat-accent .mat-tab-label:focus, .mat-tab-group.mat-accent .mat-tab-link:focus,
color: rgba(0, 0, 0, .38) .mat-tab-nav-bar.mat-accent .mat-tab-label:focus, .mat-tab-nav-bar.mat-accent .mat-tab-link:focus
{
background-color: rgba(255, 128, 171, .3)
}
.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar
{
background-color: #ff4081
}
.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar,
.mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
background-color: #fff
}
.mat-tab-group.mat-warn .mat-tab-label:focus, .mat-tab-group.mat-warn .mat-tab-link:focus,
.mat-tab-nav-bar.mat-warn .mat-tab-label:focus, .mat-tab-nav-bar.mat-warn .mat-tab-link:focus
{
background-color: rgba(255, 205, 210, .3)
}
.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar
{
background-color: #f44336
}
.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar,
.mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
background-color: #fff
}
.mat-tab-group.mat-background-primary .mat-tab-label:focus,
.mat-tab-group.mat-background-primary .mat-tab-link:focus,
.mat-tab-nav-bar.mat-background-primary .mat-tab-label:focus,
.mat-tab-nav-bar.mat-background-primary .mat-tab-link:focus {
background-color: rgba(197, 202, 233, .3)
}
.mat-tab-group.mat-background-primary .mat-tab-header, .mat-tab-group.mat-background-primary .mat-tab-links,
.mat-tab-nav-bar.mat-background-primary .mat-tab-header,
.mat-tab-nav-bar.mat-background-primary .mat-tab-links {
background-color: var(--primary)
}
.mat-tab-group.mat-background-primary .mat-tab-label, .mat-tab-group.mat-background-primary .mat-tab-link,
.mat-tab-nav-bar.mat-background-primary .mat-tab-label,
.mat-tab-nav-bar.mat-background-primary .mat-tab-link {
color: rgba(255, 255, 255, .87)
}
.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled,
.mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled
{
color: rgba(255, 255, 255, .4)
}
.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron
{
border-color: rgba(255, 255, 255, .87)
}
.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron
{
border-color: rgba(255, 255, 255, .4)
}
.mat-tab-group.mat-background-accent .mat-tab-label:focus,
.mat-tab-group.mat-background-accent .mat-tab-link:focus,
.mat-tab-nav-bar.mat-background-accent .mat-tab-label:focus,
.mat-tab-nav-bar.mat-background-accent .mat-tab-link:focus {
background-color: rgba(255, 128, 171, .3)
}
.mat-tab-group.mat-background-accent .mat-tab-header, .mat-tab-group.mat-background-accent .mat-tab-links,
.mat-tab-nav-bar.mat-background-accent .mat-tab-header,
.mat-tab-nav-bar.mat-background-accent .mat-tab-links {
background-color: #ff4081
}
.mat-tab-group.mat-background-accent .mat-tab-label, .mat-tab-group.mat-background-accent .mat-tab-link,
.mat-tab-nav-bar.mat-background-accent .mat-tab-label, .mat-tab-nav-bar.mat-background-accent .mat-tab-link
{
color: #fff
}
.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled,
.mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
color: rgba(255, 255, 255, .4)
}
.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron
{
border-color: #fff
}
.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron
{
border-color: rgba(255, 255, 255, .4)
}
.mat-tab-group.mat-background-warn .mat-tab-label:focus, .mat-tab-group.mat-background-warn .mat-tab-link:focus,
.mat-tab-nav-bar.mat-background-warn .mat-tab-label:focus,
.mat-tab-nav-bar.mat-background-warn .mat-tab-link:focus {
background-color: rgba(255, 205, 210, .3)
}
.mat-tab-group.mat-background-warn .mat-tab-header, .mat-tab-group.mat-background-warn .mat-tab-links,
.mat-tab-nav-bar.mat-background-warn .mat-tab-header, .mat-tab-nav-bar.mat-background-warn .mat-tab-links
{
background-color: #f44336
}
.mat-tab-group.mat-background-warn .mat-tab-label, .mat-tab-group.mat-background-warn .mat-tab-link,
.mat-tab-nav-bar.mat-background-warn .mat-tab-label, .mat-tab-nav-bar.mat-background-warn .mat-tab-link
{
color: #fff
}
.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled,
.mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
color: rgba(255, 255, 255, .4)
}
.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron
{
border-color: #fff
}
.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron
{
border-color: rgba(255, 255, 255, .4)
} }
.mat-toolbar { .mat-toolbar {
...@@ -1204,3 +2024,11 @@ a.mat-button:focus, a.mat-button:hover{ ...@@ -1204,3 +2024,11 @@ a.mat-button:focus, a.mat-button:hover{
background: rgba(97, 97, 97, .9) background: rgba(97, 97, 97, .9)
} }
.mat-snack-bar-container {
background: #323232;
color: #fff
}
.mat-simple-snackbar-action {
color: #ff4081
}
\ No newline at end of file
.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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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-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-size:11.62px;font-weight:400;font-family:Roboto,"Helvetica Neue",sans-serif;line-height:20px;margin:0 0 12px}.mat-h6,.mat-typography h6{font-size:9.38px;font-weight:400;font-family:Roboto,"Helvetica Neue",sans-serif;line-height:20px;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-button,.mat-fab,.mat-icon-button,.mat-mini-fab,.mat-raised-button{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:14px;font-weight:500}.mat-button-toggle{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-card{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-card-title{font-size:24px;font-weight:400}.mat-card-content,.mat-card-header .mat-card-title,.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:13px;line-height:18px}.mat-chip .mat-chip-remove.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{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:500}.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-family:Roboto,"Helvetica Neue",sans-serif;font-size:inherit;font-weight:400;line-height:1.125}.mat-form-field-wrapper{padding-bottom:1.25em}.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:.4375em 0;border-top:.84375em solid transparent}.mat-form-field-autofill-float:-webkit-autofill+.mat-form-field-placeholder-wrapper .mat-form-field-float{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);-ms-transform:translateY(-1.28125em) scale(.75);width:133.33333%}.mat-form-field-placeholder-wrapper{top:-.84375em;padding-top:.84375em}.mat-form-field-placeholder{top:1.28125em}.mat-focused .mat-form-field-placeholder.mat-form-field-float,.mat-form-field-placeholder.mat-form-field-float:not(.mat-form-field-empty){transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);-ms-transform:translateY(-1.28125em) scale(.75);width:133.33333%}.mat-form-field-underline{bottom:1.25em}.mat-form-field-subscript-wrapper{font-size:75%;margin-top:.54167em;top:calc(100% - 1.66667em)}.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:16px}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:12px}.mat-radio-button{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-select{padding-top:16px;font-family:Roboto,"Helvetica Neue",sans-serif}.mat-select-trigger{font-size:16px}.mat-slide-toggle-content{font:400 14px/20px Roboto,"Helvetica Neue",sans-serif}.mat-slider-thumb-label-text{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:12px;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:500}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font:500 20px/32px Roboto,"Helvetica Neue",sans-serif;margin:0}.mat-tooltip{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.mat-list-item{font-family:Roboto,"Helvetica Neue",sans-serif}.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-nav-list[dense] .mat-list-item .mat-line:nth-child(n+2),.mat-selection-list[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}.mat-list[dense] .mat-list-option,.mat-nav-list[dense] .mat-list-option,.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:500}.mat-ripple{overflow:hidden}@media screen and (-ms-high-contrast:active){.mat-ripple{display:none}}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0s cubic-bezier(0,0,.2,1);transform:scale(0)}.mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;position:relative;cursor:pointer;outline:0}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}@media screen and (-ms-high-contrast:active){.mat-option-ripple{opacity:.5}}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}.mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.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-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.48}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.cdk-overlay-transparent-backdrop{background:0 0}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.mat-ripple-element{background-color:rgba(0,0,0,.1)}.mat-option{color:rgba(0,0,0,.87)}.mat-option:focus:not(.mat-option-disabled),.mat-option:hover:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.mat-primary .mat-option.mat-selected{color:#673ab7}.mat-accent .mat-option.mat-selected{color:#ffd740}.mat-warn .mat-option.mat-selected{color:#f44336}.mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.04)}.mat-option.mat-active{background:rgba(0,0,0,.04);color:rgba(0,0,0,.87)}.mat-option.mat-option-disabled{color:rgba(0,0,0,.38)}.mat-optgroup-label{color:rgba(0,0,0,.54)}.mat-optgroup-disabled .mat-optgroup-label{color:rgba(0,0,0,.38)}.mat-pseudo-checkbox{color:rgba(0,0,0,.54)}.mat-pseudo-checkbox::after{color:#fafafa}.mat-accent .mat-pseudo-checkbox-checked,.mat-accent .mat-pseudo-checkbox-indeterminate,.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-indeterminate{background:#ffd740}.mat-primary .mat-pseudo-checkbox-checked,.mat-primary .mat-pseudo-checkbox-indeterminate{background:#673ab7}.mat-warn .mat-pseudo-checkbox-checked,.mat-warn .mat-pseudo-checkbox-indeterminate{background:#f44336}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.mat-app-background{background-color:#fafafa}.mat-theme-loaded-marker{display:none}.mat-autocomplete-panel{background:#fff;color:rgba(0,0,0,.87)}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#fff;color:rgba(0,0,0,.87)}.mat-button,.mat-icon-button{background:0 0}.mat-button.mat-primary .mat-button-focus-overlay,.mat-icon-button.mat-primary .mat-button-focus-overlay{background-color:rgba(103,58,183,.12)}.mat-button.mat-accent .mat-button-focus-overlay,.mat-icon-button.mat-accent .mat-button-focus-overlay{background-color:rgba(255,215,64,.12)}.mat-button.mat-warn .mat-button-focus-overlay,.mat-icon-button.mat-warn .mat-button-focus-overlay{background-color:rgba(244,67,54,.12)}.mat-button[disabled] .mat-button-focus-overlay,.mat-icon-button[disabled] .mat-button-focus-overlay{background-color:transparent}.mat-button.mat-primary,.mat-icon-button.mat-primary{color:#673ab7}.mat-button.mat-accent,.mat-icon-button.mat-accent{color:#ffd740}.mat-button.mat-warn,.mat-icon-button.mat-warn{color:#f44336}.mat-button.mat-accent[disabled],.mat-button.mat-primary[disabled],.mat-button.mat-warn[disabled],.mat-button[disabled][disabled],.mat-icon-button.mat-accent[disabled],.mat-icon-button.mat-primary[disabled],.mat-icon-button.mat-warn[disabled],.mat-icon-button[disabled][disabled]{color:rgba(0,0,0,.38)}.mat-fab,.mat-mini-fab,.mat-raised-button{color:rgba(0,0,0,.87);background-color:#fff}.mat-fab.mat-primary,.mat-mini-fab.mat-primary,.mat-raised-button.mat-primary{color:rgba(255,255,255,.87)}.mat-fab.mat-accent,.mat-mini-fab.mat-accent,.mat-raised-button.mat-accent{color:rgba(0,0,0,.87)}.mat-fab.mat-warn,.mat-mini-fab.mat-warn,.mat-raised-button.mat-warn{color:#fff}.mat-fab.mat-accent[disabled],.mat-fab.mat-primary[disabled],.mat-fab.mat-warn[disabled],.mat-fab[disabled][disabled],.mat-mini-fab.mat-accent[disabled],.mat-mini-fab.mat-primary[disabled],.mat-mini-fab.mat-warn[disabled],.mat-mini-fab[disabled][disabled],.mat-raised-button.mat-accent[disabled],.mat-raised-button.mat-primary[disabled],.mat-raised-button.mat-warn[disabled],.mat-raised-button[disabled][disabled]{color:rgba(0,0,0,.38)}.mat-fab.mat-primary,.mat-mini-fab.mat-primary,.mat-raised-button.mat-primary{background-color:#673ab7}.mat-fab.mat-accent,.mat-mini-fab.mat-accent,.mat-raised-button.mat-accent{background-color:#ffd740}.mat-fab.mat-warn,.mat-mini-fab.mat-warn,.mat-raised-button.mat-warn{background-color:#f44336}.mat-fab.mat-accent[disabled],.mat-fab.mat-primary[disabled],.mat-fab.mat-warn[disabled],.mat-fab[disabled][disabled],.mat-mini-fab.mat-accent[disabled],.mat-mini-fab.mat-primary[disabled],.mat-mini-fab.mat-warn[disabled],.mat-mini-fab[disabled][disabled],.mat-raised-button.mat-accent[disabled],.mat-raised-button.mat-primary[disabled],.mat-raised-button.mat-warn[disabled],.mat-raised-button[disabled][disabled]{background-color:rgba(0,0,0,.12)}.mat-fab.mat-primary .mat-ripple-element,.mat-mini-fab.mat-primary .mat-ripple-element,.mat-raised-button.mat-primary .mat-ripple-element{background-color:rgba(255,255,255,.2)}.mat-fab.mat-accent .mat-ripple-element,.mat-mini-fab.mat-accent .mat-ripple-element,.mat-raised-button.mat-accent .mat-ripple-element{background-color:rgba(0,0,0,.2)}.mat-fab.mat-warn .mat-ripple-element,.mat-mini-fab.mat-warn .mat-ripple-element,.mat-raised-button.mat-warn .mat-ripple-element{background-color:rgba(255,255,255,.2)}.mat-button.mat-primary .mat-ripple-element{background-color:rgba(103,58,183,.1)}.mat-button.mat-accent .mat-ripple-element{background-color:rgba(255,215,64,.1)}.mat-button.mat-warn .mat-ripple-element{background-color:rgba(244,67,54,.1)}.mat-icon-button.mat-primary .mat-ripple-element{background-color:rgba(103,58,183,.2)}.mat-icon-button.mat-accent .mat-ripple-element{background-color:rgba(255,215,64,.2)}.mat-icon-button.mat-warn .mat-ripple-element{background-color:rgba(244,67,54,.2)}.mat-button-toggle{color:rgba(0,0,0,.38)}.mat-button-toggle.cdk-focused .mat-button-toggle-focus-overlay{background-color:rgba(0,0,0,.06)}.mat-button-toggle-checked{background-color:#e0e0e0;color:rgba(0,0,0,.54)}.mat-button-toggle-disabled{background-color:#eee;color:rgba(0,0,0,.38)}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.mat-card{background:#fff;color:rgba(0,0,0,.87)}.mat-card-subtitle{color:rgba(0,0,0,.54)}.mat-checkbox-frame{border-color:rgba(0,0,0,.54)}.mat-checkbox-checkmark{fill:#fafafa}.mat-checkbox-checkmark-path{stroke:#fafafa!important}.mat-checkbox-mixedmark{background-color:#fafafa}.mat-checkbox-checked.mat-primary .mat-checkbox-background,.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background{background-color:#673ab7}.mat-checkbox-checked.mat-accent .mat-checkbox-background,.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background{background-color:#ffd740}.mat-checkbox-checked.mat-warn .mat-checkbox-background,.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background{background-color:#f44336}.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.mat-checkbox-disabled .mat-checkbox-label{color:#b0b0b0}.mat-checkbox:not(.mat-checkbox-disabled).mat-primary .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(103,58,183,.26)}.mat-checkbox:not(.mat-checkbox-disabled).mat-accent .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(255,215,64,.26)}.mat-checkbox:not(.mat-checkbox-disabled).mat-warn .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(244,67,54,.26)}.mat-chip:not(.mat-basic-chip){background-color:#e0e0e0;color:rgba(0,0,0,.87)}.mat-chip:not(.mat-basic-chip) .mat-chip-remove{color:rgba(0,0,0,.87);opacity:.4}.mat-chip:not(.mat-basic-chip) .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-primary{background-color:#673ab7;color:rgba(255,255,255,.87)}.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:rgba(255,255,255,.87);opacity:.4}.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-warn{background-color:#f44336;color:#fff}.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-accent{background-color:#ffd740;color:rgba(0,0,0,.87)}.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:rgba(0,0,0,.87);opacity:.4}.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove:hover{opacity:.54}.mat-table{background:#fff}.mat-header-row,.mat-row{border-bottom-color:rgba(0,0,0,.12)}.mat-header-cell{color:rgba(0,0,0,.54)}.mat-cell{color:rgba(0,0,0,.87)}.mat-datepicker-content{background-color:#fff;color:rgba(0,0,0,.87)}.mat-calendar-arrow{border-top-color:rgba(0,0,0,.54)}.mat-calendar-next-button,.mat-calendar-previous-button{color:rgba(0,0,0,.54)}.mat-calendar-table-header{color:rgba(0,0,0,.38)}.mat-calendar-table-header-divider::after{background:rgba(0,0,0,.12)}.mat-calendar-body-label{color:rgba(0,0,0,.54)}.mat-calendar-body-cell-content{color:rgba(0,0,0,.87);border-color:transparent}.mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected){color:rgba(0,0,0,.38)}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected),:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected){background-color:rgba(0,0,0,.04)}.mat-calendar-body-selected{background-color:#673ab7;color:rgba(255,255,255,.87)}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(103,58,183,.4)}.mat-calendar-body-today:not(.mat-calendar-body-selected){border-color:rgba(0,0,0,.38)}.mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px rgba(255,255,255,.87)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected){border-color:rgba(0,0,0,.18)}.mat-dialog-container{background:#fff;color:rgba(0,0,0,.87)}.mat-expansion-panel{background:#fff;color:rgba(0,0,0,.87)}.mat-action-row{border-top-color:rgba(0,0,0,.12)}.mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused,.mat-expansion-panel-header:not([aria-disabled=true]):hover{background:rgba(0,0,0,.04)}.mat-expansion-panel-header-title{color:rgba(0,0,0,.87)}.mat-expansion-indicator::after,.mat-expansion-panel-header-description{color:rgba(0,0,0,.54)}.mat-expansion-panel-header[aria-disabled=true]{color:rgba(0,0,0,.38)}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title{color:inherit}.mat-form-field{width:200px}.mat-form-field-placeholder{color:rgba(0,0,0,.54)}.mat-hint{color:rgba(0,0,0,.54)}.mat-focused .mat-form-field-placeholder{color:#673ab7}.mat-focused .mat-form-field-placeholder.mat-accent{color:#ffd740}.mat-focused .mat-form-field-placeholder.mat-warn{color:#f44336}.mat-focused .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker,.mat-form-field-autofill-float:-webkit-autofill+.mat-form-field-placeholder .mat-form-field-required-marker{color:#ffd740}.mat-form-field-underline{background-color:rgba(0,0,0,.42)}.mat-form-field-underline.mat-disabled{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:4px 1px;background-repeat:repeat-x}.mat-form-field-ripple{background-color:#673ab7}.mat-form-field-ripple.mat-accent{background-color:#ffd740}.mat-form-field-ripple.mat-warn{background-color:#f44336}.mat-form-field-invalid .mat-form-field-placeholder{color:#f44336}.mat-form-field-invalid .mat-form-field-placeholder.mat-accent,.mat-form-field-invalid .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker{color:#f44336}.mat-form-field-invalid .mat-form-field-ripple{background-color:#f44336}.mat-error{color:#f44336}.mat-icon.mat-primary{color:#673ab7}.mat-icon.mat-accent{color:#ffd740}.mat-icon.mat-warn{color:#f44336}.mat-input-element:disabled{color:rgba(0,0,0,.42)}.mat-list .mat-list-item,.mat-nav-list .mat-list-item,.mat-selection-list .mat-list-item{color:rgba(0,0,0,.87)}.mat-list .mat-list-option,.mat-nav-list .mat-list-option,.mat-selection-list .mat-list-option{color:rgba(0,0,0,.87)}.mat-list .mat-subheader,.mat-nav-list .mat-subheader,.mat-selection-list .mat-subheader{color:rgba(0,0,0,.54)}.mat-list-item-disabled{background-color:#eee}.mat-divider{border-top-color:rgba(0,0,0,.12)}.mat-nav-list .mat-list-item{outline:0}.mat-nav-list .mat-list-item.mat-list-item-focus,.mat-nav-list .mat-list-item:hover{background:rgba(0,0,0,.04)}.mat-list-option{outline:0}.mat-list-option.mat-list-item-focus,.mat-list-option:hover{background:rgba(0,0,0,.04)}.mat-menu-panel{background:#fff}.mat-menu-item{background:0 0;color:rgba(0,0,0,.87)}.mat-menu-item[disabled]{color:rgba(0,0,0,.38)}.mat-menu-item .mat-icon,.mat-menu-item-submenu-trigger::after{color:rgba(0,0,0,.54)}.mat-menu-item-highlighted:not([disabled]),.mat-menu-item:focus:not([disabled]),.mat-menu-item:hover:not([disabled]){background:rgba(0,0,0,.04)}.mat-paginator{background:#fff}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{color:rgba(0,0,0,.54)}.mat-paginator-decrement,.mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.mat-icon-button[disabled] .mat-paginator-decrement,.mat-icon-button[disabled] .mat-paginator-increment{border-color:rgba(0,0,0,.38)}.mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23d1c4e9%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar-buffer{background-color:#d1c4e9}.mat-progress-bar-fill::after{background-color:#673ab7}.mat-progress-bar.mat-accent .mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ffe57f%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ffe57f}.mat-progress-bar.mat-accent .mat-progress-bar-fill::after{background-color:#ffd740}.mat-progress-bar.mat-warn .mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ffcdd2%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#ffcdd2}.mat-progress-bar.mat-warn .mat-progress-bar-fill::after{background-color:#f44336}.mat-progress-spinner path,.mat-spinner path{stroke:#673ab7}.mat-progress-spinner.mat-accent path,.mat-spinner.mat-accent path{stroke:#ffd740}.mat-progress-spinner.mat-warn path,.mat-spinner.mat-warn path{stroke:#f44336}.mat-radio-outer-circle{border-color:rgba(0,0,0,.54)}.mat-radio-disabled .mat-radio-outer-circle{border-color:rgba(0,0,0,.38)}.mat-radio-disabled .mat-radio-inner-circle,.mat-radio-disabled .mat-radio-ripple .mat-ripple-element{background-color:rgba(0,0,0,.38)}.mat-radio-disabled .mat-radio-label-content{color:rgba(0,0,0,.38)}.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#673ab7}.mat-radio-button.mat-primary .mat-radio-inner-circle{background-color:#673ab7}.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element{background-color:rgba(103,58,183,.26)}.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#ffd740}.mat-radio-button.mat-accent .mat-radio-inner-circle{background-color:#ffd740}.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element{background-color:rgba(255,215,64,.26)}.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#f44336}.mat-radio-button.mat-warn .mat-radio-inner-circle{background-color:#f44336}.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element{background-color:rgba(244,67,54,.26)}.mat-select-arrow,.mat-select-trigger{color:rgba(0,0,0,.54)}.mat-select-underline{background-color:rgba(0,0,0,.42)}[aria-disabled=true] .mat-select-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:4px 1px;background-repeat:repeat-x}.mat-select-arrow,.mat-select-disabled .mat-select-value,.mat-select-trigger{color:rgba(0,0,0,.54)}.mat-select-content,.mat-select-panel-done-animating{background:#fff}.mat-select-value{color:rgba(0,0,0,.87)}.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.mat-select:focus:not(.mat-select-disabled).mat-primary .mat-select-arrow,.mat-select:focus:not(.mat-select-disabled).mat-primary .mat-select-trigger{color:#673ab7}.mat-select:focus:not(.mat-select-disabled).mat-primary .mat-select-underline{background-color:#673ab7}.mat-select:focus:not(.mat-select-disabled).mat-accent .mat-select-arrow,.mat-select:focus:not(.mat-select-disabled).mat-accent .mat-select-trigger{color:#ffd740}.mat-select:focus:not(.mat-select-disabled).mat-accent .mat-select-underline{background-color:#ffd740}.mat-select:focus:not(.mat-select-disabled).mat-select-required .mat-select-placeholder::after{color:#f44336}.mat-select-invalid .mat-select-arrow,.mat-select-invalid .mat-select-trigger,.mat-select:focus:not(.mat-select-disabled).mat-warn .mat-select-arrow,.mat-select:focus:not(.mat-select-disabled).mat-warn .mat-select-trigger{color:#f44336}.mat-select-invalid .mat-select-underline,.mat-select:focus:not(.mat-select-disabled).mat-warn .mat-select-underline{background-color:#f44336}.mat-drawer-container{background-color:#fafafa;color:rgba(0,0,0,.87)}.mat-drawer{background-color:#fff;color:rgba(0,0,0,.87)}.mat-drawer.mat-drawer-push{background-color:#fff}.mat-drawer-backdrop.mat-drawer-shown{background-color:rgba(0,0,0,.6)}.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#ffc107}.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(255,193,7,.5)}.mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:rgba(0,0,0,.06)}.mat-slide-toggle .mat-ripple-element{background-color:rgba(255,193,7,.12)}.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#673ab7}.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(103,58,183,.5)}.mat-slide-toggle.mat-primary:not(.mat-checked) .mat-ripple-element{background-color:rgba(0,0,0,.06)}.mat-slide-toggle.mat-primary .mat-ripple-element{background-color:rgba(103,58,183,.12)}.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#f44336}.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(244,67,54,.5)}.mat-slide-toggle.mat-warn:not(.mat-checked) .mat-ripple-element{background-color:rgba(0,0,0,.06)}.mat-slide-toggle.mat-warn .mat-ripple-element{background-color:rgba(244,67,54,.12)}.mat-disabled .mat-slide-toggle-thumb{background-color:#bdbdbd}.mat-disabled .mat-slide-toggle-bar{background-color:rgba(0,0,0,.1)}.mat-slide-toggle-thumb{background-color:#fafafa}.mat-slide-toggle-bar{background-color:rgba(0,0,0,.38)}.mat-slider-track-background{background-color:rgba(0,0,0,.26)}.mat-primary .mat-slider-thumb,.mat-primary .mat-slider-thumb-label,.mat-primary .mat-slider-track-fill{background-color:#673ab7}.mat-primary .mat-slider-thumb-label-text{color:rgba(255,255,255,.87)}.mat-accent .mat-slider-thumb,.mat-accent .mat-slider-thumb-label,.mat-accent .mat-slider-track-fill{background-color:#ffd740}.mat-accent .mat-slider-thumb-label-text{color:rgba(0,0,0,.87)}.mat-warn .mat-slider-thumb,.mat-warn .mat-slider-thumb-label,.mat-warn .mat-slider-track-fill{background-color:#f44336}.mat-warn .mat-slider-thumb-label-text{color:#fff}.mat-slider-focus-ring{background-color:rgba(255,215,64,.2)}.cdk-focused .mat-slider-track-background,.mat-slider:hover .mat-slider-track-background{background-color:rgba(0,0,0,.38)}.mat-slider-disabled .mat-slider-thumb,.mat-slider-disabled .mat-slider-track-background,.mat-slider-disabled .mat-slider-track-fill{background-color:rgba(0,0,0,.26)}.mat-slider-disabled:hover .mat-slider-track-background{background-color:rgba(0,0,0,.26)}.mat-slider-min-value .mat-slider-focus-ring{background-color:rgba(0,0,0,.12)}.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:rgba(0,0,0,.87)}.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:rgba(0,0,0,.26)}.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:rgba(0,0,0,.26);background-color:transparent}.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb,.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb{border-color:rgba(0,0,0,.38)}.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb,.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb{border-color:rgba(0,0,0,.26)}.mat-slider-has-ticks .mat-slider-wrapper::after{border-color:rgba(0,0,0,.7)}.mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.mat-tab-header,.mat-tab-nav-bar{border-bottom:1px solid rgba(0,0,0,.12)}.mat-tab-group-inverted-header .mat-tab-header,.mat-tab-group-inverted-header .mat-tab-nav-bar{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.mat-tab-label,.mat-tab-link{color:rgba(0,0,0,.87)}.mat-tab-label.mat-tab-disabled,.mat-tab-link.mat-tab-disabled{color:rgba(0,0,0,.38)}.mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.87)}.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.38)}.mat-tab-group[class*=mat-background-] .mat-tab-header,.mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.mat-tab-group.mat-primary .mat-tab-label:focus,.mat-tab-group.mat-primary .mat-tab-link:focus,.mat-tab-nav-bar.mat-primary .mat-tab-label:focus,.mat-tab-nav-bar.mat-primary .mat-tab-link:focus{background-color:rgba(209,196,233,.3)}.mat-tab-group.mat-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#673ab7}.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar{background-color:rgba(255,255,255,.87)}.mat-tab-group.mat-accent .mat-tab-label:focus,.mat-tab-group.mat-accent .mat-tab-link:focus,.mat-tab-nav-bar.mat-accent .mat-tab-label:focus,.mat-tab-nav-bar.mat-accent .mat-tab-link:focus{background-color:rgba(255,229,127,.3)}.mat-tab-group.mat-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#ffd740}.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar{background-color:rgba(0,0,0,.87)}.mat-tab-group.mat-warn .mat-tab-label:focus,.mat-tab-group.mat-warn .mat-tab-link:focus,.mat-tab-nav-bar.mat-warn .mat-tab-label:focus,.mat-tab-nav-bar.mat-warn .mat-tab-link:focus{background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#f44336}.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-background-primary .mat-tab-label:focus,.mat-tab-group.mat-background-primary .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-primary .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-primary .mat-tab-link:focus{background-color:rgba(209,196,233,.3)}.mat-tab-group.mat-background-primary .mat-tab-header,.mat-tab-group.mat-background-primary .mat-tab-links,.mat-tab-nav-bar.mat-background-primary .mat-tab-header,.mat-tab-nav-bar.mat-background-primary .mat-tab-links{background-color:#673ab7}.mat-tab-group.mat-background-primary .mat-tab-label,.mat-tab-group.mat-background-primary .mat-tab-link,.mat-tab-nav-bar.mat-background-primary .mat-tab-label,.mat-tab-nav-bar.mat-background-primary .mat-tab-link{color:rgba(255,255,255,.87)}.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.87)}.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-accent .mat-tab-label:focus,.mat-tab-group.mat-background-accent .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-accent .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-accent .mat-tab-link:focus{background-color:rgba(255,229,127,.3)}.mat-tab-group.mat-background-accent .mat-tab-header,.mat-tab-group.mat-background-accent .mat-tab-links,.mat-tab-nav-bar.mat-background-accent .mat-tab-header,.mat-tab-nav-bar.mat-background-accent .mat-tab-links{background-color:#ffd740}.mat-tab-group.mat-background-accent .mat-tab-label,.mat-tab-group.mat-background-accent .mat-tab-link,.mat-tab-nav-bar.mat-background-accent .mat-tab-label,.mat-tab-nav-bar.mat-background-accent .mat-tab-link{color:rgba(0,0,0,.87)}.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled{color:rgba(0,0,0,.4)}.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.87)}.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.4)}.mat-tab-group.mat-background-warn .mat-tab-label:focus,.mat-tab-group.mat-background-warn .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-warn .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-warn .mat-tab-link:focus{background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-background-warn .mat-tab-header,.mat-tab-group.mat-background-warn .mat-tab-links,.mat-tab-nav-bar.mat-background-warn .mat-tab-header,.mat-tab-nav-bar.mat-background-warn .mat-tab-links{background-color:#f44336}.mat-tab-group.mat-background-warn .mat-tab-label,.mat-tab-group.mat-background-warn .mat-tab-link,.mat-tab-nav-bar.mat-background-warn .mat-tab-label,.mat-tab-nav-bar.mat-background-warn .mat-tab-link{color:#fff}.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron{border-color:#fff}.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.4)}.mat-toolbar{background:#f5f5f5;color:rgba(0,0,0,.87)}.mat-toolbar.mat-primary{background:#673ab7;color:rgba(255,255,255,.87)}.mat-toolbar.mat-accent{background:#ffd740;color:rgba(0,0,0,.87)}.mat-toolbar.mat-warn{background:#f44336;color:#fff}.mat-tooltip{background:rgba(97,97,97,.9)}.mat-snack-bar-container{background:#323232;color:#fff}.mat-simple-snackbar-action{color:#ffd740}
\ No newline at end of file
/* indigo as - primary :: #3f51b5 >> var(--primary)*/
/* pink as - accent :: #ff4081 >> var(--accent)*/
/* red as - warn :: #f44336 */
:root {
--primary: mediumvioletred;
--accent: #3f51b5;
--button-overlay: rgba(199, 21, 133, 0.12);
}
.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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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 {
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-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-size: 11.62px;
font-weight: 400;
font-family: Roboto, "Helvetica Neue", sans-serif;
line-height: 20px;
margin: 0 0 12px
}
.mat-h6, .mat-typography h6 {
font-size: 9.38px;
font-weight: 400;
font-family: Roboto, "Helvetica Neue", sans-serif;
line-height: 20px;
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-button, .mat-fab, .mat-icon-button, .mat-mini-fab,
.mat-raised-button {
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 14px;
font-weight: 500
}
.mat-button-toggle {
font-family: Roboto, "Helvetica Neue", sans-serif
}
.mat-card {
font-family: Roboto, "Helvetica Neue", sans-serif
}
.mat-card-title {
font-size: 24px;
font-weight: 400
}
.mat-card-content, .mat-card-header .mat-card-title, .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: 13px;
line-height: 18px
}
.mat-chip .mat-chip-remove.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 {
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: 500
}
.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-family: Roboto, "Helvetica Neue", sans-serif;
font-size: inherit;
font-weight: 400;
line-height: 1.125
}
.mat-form-field-wrapper {
padding-bottom: 1.25em
}
.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: .4375em 0;
border-top: .84375em solid transparent
}
.mat-form-field-autofill-float:-webkit-autofill+.mat-form-field-placeholder-wrapper .mat-form-field-float
{
-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-placeholder-wrapper {
top: -.84375em;
padding-top: .84375em
}
.mat-form-field-placeholder {
top: 1.28125em
}
.mat-focused .mat-form-field-placeholder.mat-form-field-float,
.mat-form-field-placeholder.mat-form-field-float:not(.mat-form-field-empty){
-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-underline {
bottom: 1.25em
}
.mat-form-field-subscript-wrapper {
font-size: 75%;
margin-top: .54167em;
top: calc(100% - 1.66667em)
}
.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: 16px
}
.mat-paginator, .mat-paginator-page-size .mat-select-trigger {
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 12px
}
.mat-radio-button {
font-family: Roboto, "Helvetica Neue", sans-serif
}
.mat-select {
padding-top: 16px;
font-family: Roboto, "Helvetica Neue", sans-serif
}
.mat-select-trigger {
font-size: 16px
}
.mat-slide-toggle-content {
font: 400 14px/20px Roboto, "Helvetica Neue", sans-serif
}
.mat-slider-thumb-label-text {
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 12px;
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: 500
}
.mat-toolbar, .mat-toolbar h1, .mat-toolbar h2, .mat-toolbar h3,
.mat-toolbar h4, .mat-toolbar h5, .mat-toolbar h6 {
font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
margin: 0
}
.mat-tooltip {
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 10px;
padding-top: 6px;
padding-bottom: 6px
}
.mat-list-item {
font-family: Roboto, "Helvetica Neue", sans-serif
}
.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-nav-list[dense] .mat-list-item .mat-line:nth-child(n+2),
.mat-selection-list[dense] .mat-list-item .mat-line:nth-child(n+2) {
font-size: 12px
}
.mat-list[dense] .mat-list-option, .mat-nav-list[dense] .mat-list-option,
.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: 500
}
.mat-ripple {
overflow: hidden
}
@media screen and (-ms-high-contrast:active) {
.mat-ripple {
display: none
}
}
.mat-ripple.mat-ripple-unbounded {
overflow: visible
}
.mat-ripple-element {
position: absolute;
border-radius: 50%;
pointer-events: none;
transition: opacity, transform 0s cubic-bezier(0, 0, .2, 1);
transform: scale(0)
}
.mat-option {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
line-height: 48px;
height: 48px;
padding: 0 16px;
text-align: left;
text-decoration: none;
position: relative;
cursor: pointer;
outline: 0
}
.mat-option[disabled] {
cursor: default
}
[dir=rtl] .mat-option {
text-align: right
}
.mat-option .mat-icon {
margin-right: 16px
}
[dir=rtl] .mat-option .mat-icon {
margin-left: 16px;
margin-right: 0
}
.mat-option[aria-disabled=true] {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default
}
.mat-optgroup .mat-option:not (.mat-option-multiple ){
padding-left: 32px
}
[dir=rtl] .mat-optgroup .mat-option:not (.mat-option-multiple ){
padding-left: 16px;
padding-right: 32px
}
.mat-option-ripple {
top: 0;
left: 0;
right: 0;
bottom: 0;
position: absolute;
pointer-events: none
}
@media screen and (-ms-high-contrast:active) {
.mat-option-ripple {
opacity: .5
}
}
.mat-option-pseudo-checkbox {
margin-right: 8px
}
[dir=rtl] .mat-option-pseudo-checkbox {
margin-left: 8px;
margin-right: 0
}
.mat-optgroup-label {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
line-height: 48px;
height: 48px;
padding: 0 16px;
text-align: left;
text-decoration: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default
}
.mat-optgroup-label[disabled] {
cursor: default
}
[dir=rtl] .mat-optgroup-label {
text-align: right
}
.mat-optgroup-label .mat-icon {
margin-right: 16px
}
[dir=rtl] .mat-optgroup-label .mat-icon {
margin-left: 16px;
margin-right: 0
}
.cdk-visually-hidden {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px
}
.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-global-overlay-wrapper {
display: flex;
position: absolute;
z-index: 1000
}
.cdk-overlay-pane {
position: absolute;
pointer-events: auto;
box-sizing: border-box;
z-index: 1000
}
.cdk-overlay-backdrop {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1000;
pointer-events: auto;
-webkit-tap-highlight-color: transparent;
transition: opacity .4s cubic-bezier(.25, .8, .25, 1);
opacity: 0
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
opacity: .48
}
.cdk-overlay-dark-backdrop {
background: rgba(0, 0, 0, .6)
}
.cdk-overlay-transparent-backdrop {
background: 0 0
}
.cdk-global-scrollblock {
position: fixed;
width: 100%;
overflow-y: scroll
}
.mat-ripple-element {
background-color: rgba(0, 0, 0, .1)
}
.mat-option {
color: rgba(0, 0, 0, .87)
}
.mat-option:focus:not (.mat-option-disabled ), .mat-option:hover:not (.mat-option-disabled ){
background: rgba(0, 0, 0, .04)
}
.mat-primary .mat-option.mat-selected {
color: var(--primary)
}
.mat-accent .mat-option.mat-selected {
color: #ff4081
}
.mat-warn .mat-option.mat-selected {
color: #f44336
}
.mat-option.mat-selected:not (.mat-option-multiple ){
background: rgba(0, 0, 0, .04)
}
.mat-option.mat-active {
background: rgba(0, 0, 0, .04);
color: rgba(0, 0, 0, .87)
}
.mat-option.mat-option-disabled {
color: rgba(0, 0, 0, .38)
}
.mat-optgroup-label {
color: rgba(0, 0, 0, .54)
}
.mat-optgroup-disabled .mat-optgroup-label {
color: rgba(0, 0, 0, .38)
}
.mat-pseudo-checkbox {
color: rgba(0, 0, 0, .54)
}
.mat-pseudo-checkbox::after {
color: #fafafa
}
.mat-accent .mat-pseudo-checkbox-checked, .mat-accent .mat-pseudo-checkbox-indeterminate,
.mat-pseudo-checkbox-checked, .mat-pseudo-checkbox-indeterminate {
background: #ff4081
}
.mat-primary .mat-pseudo-checkbox-checked, .mat-primary .mat-pseudo-checkbox-indeterminate
{
background: var(--primary)
}
.mat-warn .mat-pseudo-checkbox-checked, .mat-warn .mat-pseudo-checkbox-indeterminate
{
background: #f44336
}
.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
background: #b0b0b0
}
.mat-app-background {
background-color: #fafafa
}
.mat-theme-loaded-marker {
display: none
}
.mat-autocomplete-panel {
background: #fff;
color: rgba(0, 0, 0, .87)
}
.mat-autocomplete-panel .mat-option.mat-selected:not (.mat-active ):not
(:hover ){
background: #fff;
color: rgba(0, 0, 0, .87)
}
.mat-button, .mat-icon-button {
background: 0 0
}
/*Custom Change*/
.mat-button-focus-overlay {
background-color: transparent !important ;
}
a.mat-button:focus, a.mat-button:hover{
color: var(--primary);
}
.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay
{
/* background-color: rgba(63, 81, 181, .12) */
background-color: var(--button-overlay)
}
/*Custom Change*/
.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay
{
background-color: rgba(255, 64, 129, .12)
}
.mat-button.mat-warn .mat-button-focus-overlay, .mat-icon-button.mat-warn .mat-button-focus-overlay
{
background-color: rgba(244, 67, 54, .12)
}
.mat-button[disabled] .mat-button-focus-overlay, .mat-icon-button[disabled] .mat-button-focus-overlay
{
background-color: transparent
}
.mat-button.mat-primary, .mat-icon-button.mat-primary {
color: var(--primary)
}
.mat-button.mat-accent, .mat-icon-button.mat-accent {
color: #ff4081
}
.mat-button.mat-warn, .mat-icon-button.mat-warn {
color: #f44336
}
.mat-button.mat-accent[disabled], .mat-button.mat-primary[disabled],
.mat-button.mat-warn[disabled], .mat-button[disabled][disabled],
.mat-icon-button.mat-accent[disabled], .mat-icon-button.mat-primary[disabled],
.mat-icon-button.mat-warn[disabled], .mat-icon-button[disabled][disabled]
{
color: rgba(0, 0, 0, .38)
}
.mat-fab, .mat-mini-fab, .mat-raised-button {
color: rgba(0, 0, 0, .87);
background-color: #fff
}
.mat-fab.mat-primary, .mat-mini-fab.mat-primary, .mat-raised-button.mat-primary
{
color: rgba(255, 255, 255, .87)
}
.mat-fab.mat-accent, .mat-mini-fab.mat-accent, .mat-raised-button.mat-accent
{
color: #fff
}
.mat-fab.mat-warn, .mat-mini-fab.mat-warn, .mat-raised-button.mat-warn {
color: #fff
}
.mat-fab.mat-accent[disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-warn[disabled],
.mat-fab[disabled][disabled], .mat-mini-fab.mat-accent[disabled],
.mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-warn[disabled],
.mat-mini-fab[disabled][disabled], .mat-raised-button.mat-accent[disabled],
.mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-warn[disabled],
.mat-raised-button[disabled][disabled] {
color: rgba(0, 0, 0, .38)
}
.mat-fab.mat-primary, .mat-mini-fab.mat-primary, .mat-raised-button.mat-primary
{
background-color: var(--primary)
}
.mat-fab.mat-accent, .mat-mini-fab.mat-accent, .mat-raised-button.mat-accent
{
background-color: #ff4081
}
.mat-fab.mat-warn, .mat-mini-fab.mat-warn, .mat-raised-button.mat-warn {
background-color: #f44336
}
.mat-fab.mat-accent[disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-warn[disabled],
.mat-fab[disabled][disabled], .mat-mini-fab.mat-accent[disabled],
.mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-warn[disabled],
.mat-mini-fab[disabled][disabled], .mat-raised-button.mat-accent[disabled],
.mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-warn[disabled],
.mat-raised-button[disabled][disabled] {
background-color: rgba(0, 0, 0, .12)
}
.mat-fab.mat-primary .mat-ripple-element, .mat-mini-fab.mat-primary .mat-ripple-element,
.mat-raised-button.mat-primary .mat-ripple-element {
background-color: rgba(255, 255, 255, .2)
}
.mat-fab.mat-accent .mat-ripple-element, .mat-mini-fab.mat-accent .mat-ripple-element,
.mat-raised-button.mat-accent .mat-ripple-element {
background-color: rgba(255, 255, 255, .2)
}
.mat-fab.mat-warn .mat-ripple-element, .mat-mini-fab.mat-warn .mat-ripple-element,
.mat-raised-button.mat-warn .mat-ripple-element {
background-color: rgba(255, 255, 255, .2)
}
.mat-button.mat-primary .mat-ripple-element {
background-color: rgba(63, 81, 181, .1)
}
.mat-button.mat-accent .mat-ripple-element {
background-color: rgba(255, 64, 129, .1)
}
.mat-button.mat-warn .mat-ripple-element {
background-color: rgba(244, 67, 54, .1)
}
.mat-icon-button.mat-primary .mat-ripple-element {
background-color: rgba(63, 81, 181, .2)
}
.mat-icon-button.mat-accent .mat-ripple-element {
background-color: rgba(255, 64, 129, .2)
}
.mat-icon-button.mat-warn .mat-ripple-element {
background-color: rgba(244, 67, 54, .2)
}
.mat-button-toggle {
color: rgba(0, 0, 0, .38)
}
.mat-button-toggle.cdk-focused .mat-button-toggle-focus-overlay {
background-color: rgba(0, 0, 0, .06)
}
.mat-button-toggle-checked {
background-color: #e0e0e0;
color: rgba(0, 0, 0, .54)
}
.mat-button-toggle-disabled {
background-color: #eee;
color: rgba(0, 0, 0, .38)
}
.mat-button-toggle-disabled.mat-button-toggle-checked {
background-color: #bdbdbd
}
.mat-card {
background: #fff;
color: rgba(0, 0, 0, .87)
}
.mat-card-subtitle {
color: rgba(0, 0, 0, .54)
}
.mat-checkbox-frame {
border-color: rgba(0, 0, 0, .54)
}
.mat-checkbox-checkmark {
fill: #fafafa
}
.mat-checkbox-checkmark-path {
stroke: #fafafa !important
}
.mat-checkbox-mixedmark {
background-color: #fafafa
}
.mat-checkbox-checked.mat-primary .mat-checkbox-background,
.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background {
background-color: var(--primary)
}
.mat-checkbox-checked.mat-accent .mat-checkbox-background,
.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background {
background-color: #ff4081
}
.mat-checkbox-checked.mat-warn .mat-checkbox-background,
.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background {
background-color: #f44336
}
.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,
.mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background
{
background-color: #b0b0b0
}
.mat-checkbox-disabled:not (.mat-checkbox-checked ) .mat-checkbox-frame
{
border-color: #b0b0b0
}
.mat-checkbox-disabled .mat-checkbox-label {
color: #b0b0b0
}
.mat-checkbox:not (.mat-checkbox-disabled ).mat-primary .mat-checkbox-ripple .mat-ripple-element
{
background-color: rgba(63, 81, 181, .26)
}
.mat-checkbox:not (.mat-checkbox-disabled ).mat-accent .mat-checkbox-ripple .mat-ripple-element
{
background-color: rgba(255, 64, 129, .26)
}
.mat-checkbox:not (.mat-checkbox-disabled ).mat-warn .mat-checkbox-ripple .mat-ripple-element
{
background-color: rgba(244, 67, 54, .26)
}
.mat-chip:not (.mat-basic-chip ){
background-color: #e0e0e0;
color: rgba(0, 0, 0, .87)
}
.mat-chip:not (.mat-basic-chip ) .mat-chip-remove {
color: rgba(0, 0, 0, .87);
opacity: .4
}
.mat-chip:not (.mat-basic-chip ) .mat-chip-remove:hover {
opacity: .54
}
.mat-chip.mat-chip-selected.mat-primary {
background-color: var(--primary);
color: rgba(255, 255, 255, .87)
}
.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove {
color: rgba(255, 255, 255, .87);
opacity: .4
}
.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove:hover {
opacity: .54
}
.mat-chip.mat-chip-selected.mat-warn {
background-color: #f44336;
color: #fff
}
.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove {
color: #fff;
opacity: .4
}
.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove:hover {
opacity: .54
}
.mat-chip.mat-chip-selected.mat-accent {
background-color: #ff4081;
color: #fff
}
.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove {
color: #fff;
opacity: .4
}
.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove:hover {
opacity: .54
}
.mat-table {
background: #fff
}
.mat-header-row, .mat-row {
border-bottom-color: rgba(0, 0, 0, .12)
}
.mat-header-cell {
color: rgba(0, 0, 0, .54)
}
.mat-cell {
color: rgba(0, 0, 0, .87)
}
.mat-datepicker-content {
background-color: #fff;
color: rgba(0, 0, 0, .87)
}
.mat-calendar-arrow {
border-top-color: rgba(0, 0, 0, .54)
}
.mat-calendar-next-button, .mat-calendar-previous-button {
color: rgba(0, 0, 0, .54)
}
.mat-calendar-table-header {
color: rgba(0, 0, 0, .38)
}
.mat-calendar-table-header-divider::after {
background: rgba(0, 0, 0, .12)
}
.mat-calendar-body-label {
color: rgba(0, 0, 0, .54)
}
.mat-calendar-body-cell-content {
color: rgba(0, 0, 0, .87);
border-color: transparent
}
.mat-calendar-body-disabled>.mat-calendar-body-cell-content:not (.mat-calendar-body-selected ){
color: rgba(0, 0, 0, .38)
}
.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not
(.mat-calendar-body-selected ), :not (.mat-calendar-body-disabled ):hover>.mat-calendar-body-cell-content:not
(.mat-calendar-body-selected ){
background-color: rgba(0, 0, 0, .04)
}
.mat-calendar-body-selected {
background-color: var(--primary);
color: rgba(255, 255, 255, .87)
}
.mat-calendar-body-disabled>.mat-calendar-body-selected {
background-color: rgba(63, 81, 181, .4)
}
.mat-calendar-body-today:not (.mat-calendar-body-selected ){
border-color: rgba(0, 0, 0, .38)
}
.mat-calendar-body-today.mat-calendar-body-selected {
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .87)
}
.mat-calendar-body-disabled>.mat-calendar-body-today:not (.mat-calendar-body-selected){
border-color: rgba(0, 0, 0, .18)
}
.mat-dialog-container {
background: #fff;
color: rgba(0, 0, 0, .87)
}
.mat-expansion-panel {
background: #fff;
color: rgba(0, 0, 0, .87)
}
.mat-action-row {
border-top-color: rgba(0, 0, 0, .12)
}
.mat-expansion-panel-header:not ([aria-disabled=true] ).cdk-keyboard-focused,
.mat-expansion-panel-header:not ([aria-disabled=true] ).cdk-program-focused,
.mat-expansion-panel-header:not ([aria-disabled=true] ):hover {
background: rgba(0, 0, 0, .04)
}
.mat-expansion-panel-header-title {
color: rgba(0, 0, 0, .87)
}
.mat-expansion-indicator::after, .mat-expansion-panel-header-description
{
color: rgba(0, 0, 0, .54)
}
.mat-expansion-panel-header[aria-disabled=true] {
color: rgba(0, 0, 0, .38)
}
.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description,
.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title
{
color: inherit
}
.mat-form-field {
width: 200px
}
.mat-form-field-placeholder {
color: rgba(0, 0, 0, .54)
}
.mat-hint {
color: rgba(0, 0, 0, .54)
}
.mat-focused .mat-form-field-placeholder {
color: var(--primary)
}
.mat-focused .mat-form-field-placeholder.mat-accent {
color: #ff4081
}
.mat-focused .mat-form-field-placeholder.mat-warn {
color: #f44336
}
.mat-focused .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker,
.mat-form-field-autofill-float:-webkit-autofill+.mat-form-field-placeholder .mat-form-field-required-marker {
color: #ff4081
}
/*Custom Change*/
.mat-focused .mat-input-placeholder.mat-float,
.mat-input-placeholder.mat-float:not(.mat-empty){
color: var(--primary);
transform: translate3d(0,-1.15em,0) scale(.65) !important;
font-size: large;
}
.mat-input-container:not(.mat-focused):not(.ng-invalid) .mat-input-ripple {
background-color: var(--primary);
visibility: visible;
transform: scale(1);
}
.mat-input-invalid:not(.ng-dirty) .mat-input-underline .mat-input-ripple {
visibility: hidden;
}
.mat-form-field-invalid:not(.ng-pristine) .mat-form-field-placeholder {
color: #f44336
}
.mat-form-field-invalid:not(.ng-pristine) .mat-form-field-placeholder.mat-accent,
.mat-form-field-invalid:not(.ng-pristine) .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker
{
color: #f44336
}
.mat-form-field-invalid:not(.ng-pristine) .mat-form-field-ripple {
background-color: #f44336
}
.mat-input-invalid:not(.ng-pristine) .mat-input-placeholder,
.mat-input-invalid:not(.ng-pristine) .mat-placeholder-required
{
color: #f44336
}
.mat-input-invalid:not(.ng-pristine) .mat-input-ripple {
background-color: #f44336
}
/*Custom Change*/
.mat-form-field-underline {
background-color: rgba(0, 0, 0, .42)
}
.mat-form-field-underline.mat-disabled {
background-image: linear-gradient(to right, rgba(0, 0, 0, .42) 0, rgba(0, 0, 0, .42) 33%, transparent 0);
background-size: 4px 1px;
background-repeat: repeat-x
}
.mat-form-field-ripple {
background-color: var(--primary)
}
.mat-form-field-ripple.mat-accent {
background-color: #ff4081
}
.mat-form-field-ripple.mat-warn {
background-color: #f44336
}
/*
.mat-form-field-invalid .mat-form-field-placeholder {
color: #f44336
}
.mat-form-field-invalid .mat-form-field-placeholder.mat-accent,
.mat-form-field-invalid .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker
{
color: #f44336
}
.mat-form-field-invalid .mat-form-field-ripple {
background-color: #f44336
}
*/
.mat-error {
color: #f44336
}
.mat-icon.mat-primary {
color: var(--primary)
}
.mat-icon.mat-accent {
color: #ff4081
}
.mat-icon.mat-warn {
color: #f44336
}
.mat-input-element:disabled {
color: rgba(0, 0, 0, .42)
}
.mat-list .mat-list-item, .mat-nav-list .mat-list-item,
.mat-selection-list .mat-list-item {
color: rgba(0, 0, 0, .87)
}
.mat-list .mat-list-option, .mat-nav-list .mat-list-option,
.mat-selection-list .mat-list-option {
color: rgba(0, 0, 0, .87)
}
.mat-list .mat-subheader, .mat-nav-list .mat-subheader,
.mat-selection-list .mat-subheader {
color: rgba(0, 0, 0, .54)
}
.mat-list-item-disabled {
background-color: #eee
}
.mat-divider {
border-top-color: rgba(0, 0, 0, .12)
}
.mat-nav-list .mat-list-item {
outline: 0
}
.mat-nav-list .mat-list-item.mat-list-item-focus, .mat-nav-list .mat-list-item:hover
{
background: rgba(0, 0, 0, .04)
}
.mat-list-option {
outline: 0
}
.mat-list-option.mat-list-item-focus, .mat-list-option:hover {
background: rgba(0, 0, 0, .04)
}
.mat-menu-panel {
background: #fff
}
.mat-menu-item {
background: 0 0;
color: rgba(0, 0, 0, .87)
}
.mat-menu-item[disabled] {
color: rgba(0, 0, 0, .38)
}
.mat-menu-item .mat-icon, .mat-menu-item-submenu-trigger::after {
color: rgba(0, 0, 0, .54)
}
.mat-menu-item-highlighted:not ([disabled] ), .mat-menu-item:focus:not ([disabled]
), .mat-menu-item:hover:not ([disabled] ){
background: rgba(0, 0, 0, .04)
}
.mat-paginator {
background: #fff
}
.mat-paginator, .mat-paginator-page-size .mat-select-trigger {
color: rgba(0, 0, 0, .54)
}
.mat-paginator-decrement, .mat-paginator-increment {
border-top: 2px solid rgba(0, 0, 0, .54);
border-right: 2px solid rgba(0, 0, 0, .54)
}
.mat-icon-button[disabled] .mat-paginator-decrement, .mat-icon-button[disabled] .mat-paginator-increment
{
border-color: rgba(0, 0, 0, .38)
}
.mat-progress-bar-background {
background-image:
url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23c5cae9%27%2F%3E%3C%2Fsvg%3E")
}
.mat-progress-bar-buffer {
background-color: #c5cae9
}
.mat-progress-bar-fill::after {
background-color: var(--primary)
}
.mat-progress-bar.mat-accent .mat-progress-bar-background {
background-image:
url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ff80ab%27%2F%3E%3C%2Fsvg%3E")
}
.mat-progress-bar.mat-accent .mat-progress-bar-buffer {
background-color: #ff80ab
}
.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
background-color: #ff4081
}
.mat-progress-bar.mat-warn .mat-progress-bar-background {
background-image:
url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ffcdd2%27%2F%3E%3C%2Fsvg%3E")
}
.mat-progress-bar.mat-warn .mat-progress-bar-buffer {
background-color: #ffcdd2
}
.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
background-color: #f44336
}
.mat-progress-spinner path, .mat-spinner path {
stroke: var(--primary)
}
.mat-progress-spinner.mat-accent path, .mat-spinner.mat-accent path {
stroke: #ff4081
}
.mat-progress-spinner.mat-warn path, .mat-spinner.mat-warn path {
stroke: #f44336
}
.mat-radio-outer-circle {
border-color: rgba(0, 0, 0, .54)
}
.mat-radio-disabled .mat-radio-outer-circle {
border-color: rgba(0, 0, 0, .38)
}
.mat-radio-disabled .mat-radio-inner-circle, .mat-radio-disabled .mat-radio-ripple .mat-ripple-element
{
background-color: rgba(0, 0, 0, .38)
}
.mat-radio-disabled .mat-radio-label-content {
color: rgba(0, 0, 0, .38)
}
.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle
{
border-color: var(--primary)
}
.mat-radio-button.mat-primary .mat-radio-inner-circle {
background-color: var(--primary)
}
.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element {
background-color: rgba(63, 81, 181, .26)
}
.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
border-color: #ff4081
}
.mat-radio-button.mat-accent .mat-radio-inner-circle {
background-color: #ff4081
}
.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element {
background-color: rgba(255, 64, 129, .26)
}
.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
border-color: #f44336
}
.mat-radio-button.mat-warn .mat-radio-inner-circle {
background-color: #f44336
}
.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element {
background-color: rgba(244, 67, 54, .26)
}
.mat-select-arrow, .mat-select-trigger {
color: rgba(0, 0, 0, .54)
}
.mat-select-underline {
background-color: rgba(0, 0, 0, .42)
}
[aria-disabled=true] .mat-select-underline {
background-image: linear-gradient(to right, rgba(0, 0, 0, .42) 0,
rgba(0, 0, 0, .42) 33%, transparent 0);
background-size: 4px 1px;
background-repeat: repeat-x
}
.mat-select-arrow, .mat-select-disabled .mat-select-value,
.mat-select-trigger {
color: rgba(0, 0, 0, .54)
}
.mat-select-content, .mat-select-panel-done-animating {
background: #fff
}
.mat-select-value {
color: rgba(0, 0, 0, .87)
}
.mat-select-panel .mat-option.mat-selected:not (.mat-option-multiple ){
background: rgba(0, 0, 0, .12)
}
.mat-select:focus:not (.mat-select-disabled ).mat-primary .mat-select-arrow,
.mat-select:focus:not (.mat-select-disabled ).mat-primary .mat-select-trigger
{
color: var(--primary)
}
.mat-select:focus:not (.mat-select-disabled ).mat-primary .mat-select-underline
{
background-color: var(--primary)
}
.mat-select:focus:not (.mat-select-disabled ).mat-accent .mat-select-arrow,
.mat-select:focus:not (.mat-select-disabled ).mat-accent .mat-select-trigger
{
color: #ff4081
}
.mat-select:focus:not (.mat-select-disabled ).mat-accent .mat-select-underline
{
background-color: #ff4081
}
.mat-select:focus:not (.mat-select-disabled ).mat-select-required .mat-select-placeholder::after
{
color: #f44336
}
.mat-select-invalid .mat-select-arrow, .mat-select-invalid .mat-select-trigger,
.mat-select:focus:not (.mat-select-disabled ).mat-warn .mat-select-arrow,
.mat-select:focus:not (.mat-select-disabled ).mat-warn .mat-select-trigger
{
color: #f44336
}
.mat-select-invalid .mat-select-underline, .mat-select:focus:not (.mat-select-disabled
).mat-warn .mat-select-underline {
background-color: #f44336
}
.mat-drawer-container {
background-color: #fafafa;
color: rgba(0, 0, 0, .87)
}
.mat-drawer {
background-color: #fff;
color: rgba(0, 0, 0, .87)
}
.mat-drawer.mat-drawer-push {
background-color: #fff
}
.mat-drawer-backdrop.mat-drawer-shown {
background-color: rgba(0, 0, 0, .6)
}
.mat-slide-toggle.mat-checked:not (.mat-disabled ) .mat-slide-toggle-thumb
{
background-color: #e91e63
}
.mat-slide-toggle.mat-checked:not (.mat-disabled ) .mat-slide-toggle-bar
{
background-color: rgba(233, 30, 99, .5)
}
.mat-slide-toggle:not (.mat-checked ) .mat-ripple-element {
background-color: rgba(0, 0, 0, .06)
}
.mat-slide-toggle .mat-ripple-element {
background-color: rgba(233, 30, 99, .12)
}
.mat-slide-toggle.mat-primary.mat-checked:not (.mat-disabled ) .mat-slide-toggle-thumb
{
background-color: var(--primary)
}
.mat-slide-toggle.mat-primary.mat-checked:not (.mat-disabled ) .mat-slide-toggle-bar
{
background-color: rgba(63, 81, 181, .5)
}
.mat-slide-toggle.mat-primary:not (.mat-checked ) .mat-ripple-element {
background-color: rgba(0, 0, 0, .06)
}
.mat-slide-toggle.mat-primary .mat-ripple-element {
background-color: rgba(63, 81, 181, .12)
}
.mat-slide-toggle.mat-warn.mat-checked:not (.mat-disabled ) .mat-slide-toggle-thumb
{
background-color: #f44336
}
.mat-slide-toggle.mat-warn.mat-checked:not (.mat-disabled ) .mat-slide-toggle-bar
{
background-color: rgba(244, 67, 54, .5)
}
.mat-slide-toggle.mat-warn:not (.mat-checked ) .mat-ripple-element {
background-color: rgba(0, 0, 0, .06)
}
.mat-slide-toggle.mat-warn .mat-ripple-element {
background-color: rgba(244, 67, 54, .12)
}
.mat-disabled .mat-slide-toggle-thumb {
background-color: #bdbdbd
}
.mat-disabled .mat-slide-toggle-bar {
background-color: rgba(0, 0, 0, .1)
}
.mat-slide-toggle-thumb {
background-color: #fafafa
}
.mat-slide-toggle-bar {
background-color: rgba(0, 0, 0, .38)
}
.mat-slider-track-background {
background-color: rgba(0, 0, 0, .26)
}
.mat-primary .mat-slider-thumb, .mat-primary .mat-slider-thumb-label,
.mat-primary .mat-slider-track-fill {
background-color: var(--primary)
}
.mat-primary .mat-slider-thumb-label-text {
color: rgba(255, 255, 255, .87)
}
.mat-accent .mat-slider-thumb, .mat-accent .mat-slider-thumb-label,
.mat-accent .mat-slider-track-fill {
background-color: #ff4081
}
.mat-accent .mat-slider-thumb-label-text {
color: #fff
}
.mat-warn .mat-slider-thumb, .mat-warn .mat-slider-thumb-label,
.mat-warn .mat-slider-track-fill {
background-color: #f44336
}
.mat-warn .mat-slider-thumb-label-text {
color: #fff
}
.mat-slider-focus-ring {
background-color: rgba(255, 64, 129, .2)
}
.cdk-focused .mat-slider-track-background, .mat-slider:hover .mat-slider-track-background
{
background-color: rgba(0, 0, 0, .38)
}
.mat-slider-disabled .mat-slider-thumb, .mat-slider-disabled .mat-slider-track-background,
.mat-slider-disabled .mat-slider-track-fill {
background-color: rgba(0, 0, 0, .26)
}
.mat-slider-disabled:hover .mat-slider-track-background {
background-color: rgba(0, 0, 0, .26)
}
.mat-slider-min-value .mat-slider-focus-ring {
background-color: rgba(0, 0, 0, .12)
}
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label
{
background-color: rgba(0, 0, 0, .87)
}
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label
{
background-color: rgba(0, 0, 0, .26)
}
.mat-slider-min-value:not (.mat-slider-thumb-label-showing ) .mat-slider-thumb
{
border-color: rgba(0, 0, 0, .26);
background-color: transparent
}
.mat-slider-min-value:not (.mat-slider-thumb-label-showing ).cdk-focused .mat-slider-thumb,
.mat-slider-min-value:not (.mat-slider-thumb-label-showing ):hover .mat-slider-thumb
{
border-color: rgba(0, 0, 0, .38)
}
.mat-slider-min-value:not (.mat-slider-thumb-label-showing ).cdk-focused.mat-slider-disabled .mat-slider-thumb,
.mat-slider-min-value:not (.mat-slider-thumb-label-showing ):hover.mat-slider-disabled .mat-slider-thumb
{
border-color: rgba(0, 0, 0, .26)
}
.mat-slider-has-ticks .mat-slider-wrapper::after {
border-color: rgba(0, 0, 0, .7)
}
.mat-slider-horizontal .mat-slider-ticks {
background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, .7),
rgba(0, 0, 0, .7) 2px, transparent 0, transparent);
background-image: -moz-repeating-linear-gradient(.0001deg, rgba(0, 0, 0, .7),
rgba(0, 0, 0, .7) 2px, transparent 0, transparent)
}
.mat-slider-vertical .mat-slider-ticks {
background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, .7),
rgba(0, 0, 0, .7) 2px, transparent 0, transparent)
}
.mat-tab-header, .mat-tab-nav-bar {
border-bottom: 1px solid rgba(0, 0, 0, .12)
}
.mat-tab-group-inverted-header .mat-tab-header,
.mat-tab-group-inverted-header .mat-tab-nav-bar {
border-top: 1px solid rgba(0, 0, 0, .12);
border-bottom: none
}
.mat-tab-label, .mat-tab-link {
color: rgba(0, 0, 0, .87)
}
.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {
color: rgba(0, 0, 0, .38)
}
.mat-tab-header-pagination-chevron {
border-color: rgba(0, 0, 0, .87)
}
.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
border-color: rgba(0, 0, 0, .38)
}
.mat-tab-group[class*=mat-background-] .mat-tab-header, .mat-tab-nav-bar[class*=mat-background-]
{
border-bottom: none;
border-top: none
}
.mat-tab-group.mat-primary .mat-tab-label:focus, .mat-tab-group.mat-primary .mat-tab-link:focus,
.mat-tab-nav-bar.mat-primary .mat-tab-label:focus, .mat-tab-nav-bar.mat-primary .mat-tab-link:focus
{
background-color: rgba(197, 202, 233, .3)
}
.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar
{
background-color: var(--primary)
}
.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar,
.mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
background-color: rgba(255, 255, 255, .87)
}
.mat-tab-group.mat-accent .mat-tab-label:focus, .mat-tab-group.mat-accent .mat-tab-link:focus,
.mat-tab-nav-bar.mat-accent .mat-tab-label:focus, .mat-tab-nav-bar.mat-accent .mat-tab-link:focus
{
background-color: rgba(255, 128, 171, .3)
}
.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar
{
background-color: #ff4081
}
.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar,
.mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
background-color: #fff
}
.mat-tab-group.mat-warn .mat-tab-label:focus, .mat-tab-group.mat-warn .mat-tab-link:focus,
.mat-tab-nav-bar.mat-warn .mat-tab-label:focus, .mat-tab-nav-bar.mat-warn .mat-tab-link:focus
{
background-color: rgba(255, 205, 210, .3)
}
.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar
{
background-color: #f44336
}
.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar,
.mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
background-color: #fff
}
.mat-tab-group.mat-background-primary .mat-tab-label:focus,
.mat-tab-group.mat-background-primary .mat-tab-link:focus,
.mat-tab-nav-bar.mat-background-primary .mat-tab-label:focus,
.mat-tab-nav-bar.mat-background-primary .mat-tab-link:focus {
background-color: rgba(197, 202, 233, .3)
}
.mat-tab-group.mat-background-primary .mat-tab-header, .mat-tab-group.mat-background-primary .mat-tab-links,
.mat-tab-nav-bar.mat-background-primary .mat-tab-header,
.mat-tab-nav-bar.mat-background-primary .mat-tab-links {
background-color: var(--primary)
}
.mat-tab-group.mat-background-primary .mat-tab-label, .mat-tab-group.mat-background-primary .mat-tab-link,
.mat-tab-nav-bar.mat-background-primary .mat-tab-label,
.mat-tab-nav-bar.mat-background-primary .mat-tab-link {
color: rgba(255, 255, 255, .87)
}
.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled,
.mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled
{
color: rgba(255, 255, 255, .4)
}
.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron
{
border-color: rgba(255, 255, 255, .87)
}
.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron
{
border-color: rgba(255, 255, 255, .4)
}
.mat-tab-group.mat-background-accent .mat-tab-label:focus,
.mat-tab-group.mat-background-accent .mat-tab-link:focus,
.mat-tab-nav-bar.mat-background-accent .mat-tab-label:focus,
.mat-tab-nav-bar.mat-background-accent .mat-tab-link:focus {
background-color: rgba(255, 128, 171, .3)
}
.mat-tab-group.mat-background-accent .mat-tab-header, .mat-tab-group.mat-background-accent .mat-tab-links,
.mat-tab-nav-bar.mat-background-accent .mat-tab-header,
.mat-tab-nav-bar.mat-background-accent .mat-tab-links {
background-color: #ff4081
}
.mat-tab-group.mat-background-accent .mat-tab-label, .mat-tab-group.mat-background-accent .mat-tab-link,
.mat-tab-nav-bar.mat-background-accent .mat-tab-label, .mat-tab-nav-bar.mat-background-accent .mat-tab-link
{
color: #fff
}
.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled,
.mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
color: rgba(255, 255, 255, .4)
}
.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron
{
border-color: #fff
}
.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron
{
border-color: rgba(255, 255, 255, .4)
}
.mat-tab-group.mat-background-warn .mat-tab-label:focus, .mat-tab-group.mat-background-warn .mat-tab-link:focus,
.mat-tab-nav-bar.mat-background-warn .mat-tab-label:focus,
.mat-tab-nav-bar.mat-background-warn .mat-tab-link:focus {
background-color: rgba(255, 205, 210, .3)
}
.mat-tab-group.mat-background-warn .mat-tab-header, .mat-tab-group.mat-background-warn .mat-tab-links,
.mat-tab-nav-bar.mat-background-warn .mat-tab-header, .mat-tab-nav-bar.mat-background-warn .mat-tab-links
{
background-color: #f44336
}
.mat-tab-group.mat-background-warn .mat-tab-label, .mat-tab-group.mat-background-warn .mat-tab-link,
.mat-tab-nav-bar.mat-background-warn .mat-tab-label, .mat-tab-nav-bar.mat-background-warn .mat-tab-link
{
color: #fff
}
.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled,
.mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled,
.mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
color: rgba(255, 255, 255, .4)
}
.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron
{
border-color: #fff
}
.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron
{
border-color: rgba(255, 255, 255, .4)
}
.mat-toolbar {
background: #f5f5f5;
color: rgba(0, 0, 0, .87)
}
.mat-toolbar.mat-primary {
background: var(--primary);
color: rgba(255, 255, 255, .87)
}
.mat-toolbar.mat-accent {
background: #ff4081;
color: #fff
}
.mat-toolbar.mat-warn {
background: #f44336;
color: #fff
}
.mat-tooltip {
background: rgba(97, 97, 97, .9)
}
.mat-snack-bar-container {
background: #323232;
color: #fff
}
.mat-simple-snackbar-action {
color: #ff4081
}
\ No newline at end of file
.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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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-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-size:11.62px;font-weight:400;font-family:Roboto,"Helvetica Neue",sans-serif;line-height:20px;margin:0 0 12px}.mat-h6,.mat-typography h6{font-size:9.38px;font-weight:400;font-family:Roboto,"Helvetica Neue",sans-serif;line-height:20px;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-button,.mat-fab,.mat-icon-button,.mat-mini-fab,.mat-raised-button{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:14px;font-weight:500}.mat-button-toggle{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-card{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-card-title{font-size:24px;font-weight:400}.mat-card-content,.mat-card-header .mat-card-title,.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:13px;line-height:18px}.mat-chip .mat-chip-remove.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{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:500}.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-family:Roboto,"Helvetica Neue",sans-serif;font-size:inherit;font-weight:400;line-height:1.125}.mat-form-field-wrapper{padding-bottom:1.25em}.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:.4375em 0;border-top:.84375em solid transparent}.mat-form-field-autofill-float:-webkit-autofill+.mat-form-field-placeholder-wrapper .mat-form-field-float{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);-ms-transform:translateY(-1.28125em) scale(.75);width:133.33333%}.mat-form-field-placeholder-wrapper{top:-.84375em;padding-top:.84375em}.mat-form-field-placeholder{top:1.28125em}.mat-focused .mat-form-field-placeholder.mat-form-field-float,.mat-form-field-placeholder.mat-form-field-float:not(.mat-form-field-empty){transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);-ms-transform:translateY(-1.28125em) scale(.75);width:133.33333%}.mat-form-field-underline{bottom:1.25em}.mat-form-field-subscript-wrapper{font-size:75%;margin-top:.54167em;top:calc(100% - 1.66667em)}.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:16px}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:12px}.mat-radio-button{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-select{padding-top:16px;font-family:Roboto,"Helvetica Neue",sans-serif}.mat-select-trigger{font-size:16px}.mat-slide-toggle-content{font:400 14px/20px Roboto,"Helvetica Neue",sans-serif}.mat-slider-thumb-label-text{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:12px;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:500}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font:500 20px/32px Roboto,"Helvetica Neue",sans-serif;margin:0}.mat-tooltip{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.mat-list-item{font-family:Roboto,"Helvetica Neue",sans-serif}.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-nav-list[dense] .mat-list-item .mat-line:nth-child(n+2),.mat-selection-list[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}.mat-list[dense] .mat-list-option,.mat-nav-list[dense] .mat-list-option,.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:500}.mat-ripple{overflow:hidden}@media screen and (-ms-high-contrast:active){.mat-ripple{display:none}}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0s cubic-bezier(0,0,.2,1);transform:scale(0)}.mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;position:relative;cursor:pointer;outline:0}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}@media screen and (-ms-high-contrast:active){.mat-option-ripple{opacity:.5}}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}.mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.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-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.48}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.cdk-overlay-transparent-backdrop{background:0 0}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-option{color:#fff}.mat-option:focus:not(.mat-option-disabled),.mat-option:hover:not(.mat-option-disabled){background:rgba(255,255,255,.04)}.mat-primary .mat-option.mat-selected{color:#c2185b}.mat-accent .mat-option.mat-selected{color:#b0bec5}.mat-warn .mat-option.mat-selected{color:#f44336}.mat-option.mat-selected:not(.mat-option-multiple){background:rgba(255,255,255,.04)}.mat-option.mat-active{background:rgba(255,255,255,.04);color:#fff}.mat-option.mat-option-disabled{color:rgba(255,255,255,.3)}.mat-optgroup-label{color:rgba(255,255,255,.7)}.mat-optgroup-disabled .mat-optgroup-label{color:rgba(255,255,255,.3)}.mat-pseudo-checkbox{color:rgba(255,255,255,.7)}.mat-pseudo-checkbox::after{color:#303030}.mat-accent .mat-pseudo-checkbox-checked,.mat-accent .mat-pseudo-checkbox-indeterminate,.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-indeterminate{background:#b0bec5}.mat-primary .mat-pseudo-checkbox-checked,.mat-primary .mat-pseudo-checkbox-indeterminate{background:#c2185b}.mat-warn .mat-pseudo-checkbox-checked,.mat-warn .mat-pseudo-checkbox-indeterminate{background:#f44336}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.mat-app-background{background-color:#303030}.mat-theme-loaded-marker{display:none}.mat-autocomplete-panel{background:#424242;color:#fff}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#424242;color:#fff}.mat-button,.mat-icon-button{background:0 0}.mat-button.mat-primary .mat-button-focus-overlay,.mat-icon-button.mat-primary .mat-button-focus-overlay{background-color:rgba(194,24,91,.12)}.mat-button.mat-accent .mat-button-focus-overlay,.mat-icon-button.mat-accent .mat-button-focus-overlay{background-color:rgba(176,190,197,.12)}.mat-button.mat-warn .mat-button-focus-overlay,.mat-icon-button.mat-warn .mat-button-focus-overlay{background-color:rgba(244,67,54,.12)}.mat-button[disabled] .mat-button-focus-overlay,.mat-icon-button[disabled] .mat-button-focus-overlay{background-color:transparent}.mat-button.mat-primary,.mat-icon-button.mat-primary{color:#c2185b}.mat-button.mat-accent,.mat-icon-button.mat-accent{color:#b0bec5}.mat-button.mat-warn,.mat-icon-button.mat-warn{color:#f44336}.mat-button.mat-accent[disabled],.mat-button.mat-primary[disabled],.mat-button.mat-warn[disabled],.mat-button[disabled][disabled],.mat-icon-button.mat-accent[disabled],.mat-icon-button.mat-primary[disabled],.mat-icon-button.mat-warn[disabled],.mat-icon-button[disabled][disabled]{color:rgba(255,255,255,.3)}.mat-fab,.mat-mini-fab,.mat-raised-button{color:#fff;background-color:#424242}.mat-fab.mat-primary,.mat-mini-fab.mat-primary,.mat-raised-button.mat-primary{color:rgba(255,255,255,.87)}.mat-fab.mat-accent,.mat-mini-fab.mat-accent,.mat-raised-button.mat-accent{color:rgba(0,0,0,.87)}.mat-fab.mat-warn,.mat-mini-fab.mat-warn,.mat-raised-button.mat-warn{color:#fff}.mat-fab.mat-accent[disabled],.mat-fab.mat-primary[disabled],.mat-fab.mat-warn[disabled],.mat-fab[disabled][disabled],.mat-mini-fab.mat-accent[disabled],.mat-mini-fab.mat-primary[disabled],.mat-mini-fab.mat-warn[disabled],.mat-mini-fab[disabled][disabled],.mat-raised-button.mat-accent[disabled],.mat-raised-button.mat-primary[disabled],.mat-raised-button.mat-warn[disabled],.mat-raised-button[disabled][disabled]{color:rgba(255,255,255,.3)}.mat-fab.mat-primary,.mat-mini-fab.mat-primary,.mat-raised-button.mat-primary{background-color:#c2185b}.mat-fab.mat-accent,.mat-mini-fab.mat-accent,.mat-raised-button.mat-accent{background-color:#b0bec5}.mat-fab.mat-warn,.mat-mini-fab.mat-warn,.mat-raised-button.mat-warn{background-color:#f44336}.mat-fab.mat-accent[disabled],.mat-fab.mat-primary[disabled],.mat-fab.mat-warn[disabled],.mat-fab[disabled][disabled],.mat-mini-fab.mat-accent[disabled],.mat-mini-fab.mat-primary[disabled],.mat-mini-fab.mat-warn[disabled],.mat-mini-fab[disabled][disabled],.mat-raised-button.mat-accent[disabled],.mat-raised-button.mat-primary[disabled],.mat-raised-button.mat-warn[disabled],.mat-raised-button[disabled][disabled]{background-color:rgba(255,255,255,.12)}.mat-fab.mat-primary .mat-ripple-element,.mat-mini-fab.mat-primary .mat-ripple-element,.mat-raised-button.mat-primary .mat-ripple-element{background-color:rgba(255,255,255,.2)}.mat-fab.mat-accent .mat-ripple-element,.mat-mini-fab.mat-accent .mat-ripple-element,.mat-raised-button.mat-accent .mat-ripple-element{background-color:rgba(0,0,0,.2)}.mat-fab.mat-warn .mat-ripple-element,.mat-mini-fab.mat-warn .mat-ripple-element,.mat-raised-button.mat-warn .mat-ripple-element{background-color:rgba(255,255,255,.2)}.mat-button.mat-primary .mat-ripple-element{background-color:rgba(194,24,91,.1)}.mat-button.mat-accent .mat-ripple-element{background-color:rgba(176,190,197,.1)}.mat-button.mat-warn .mat-ripple-element{background-color:rgba(244,67,54,.1)}.mat-icon-button.mat-primary .mat-ripple-element{background-color:rgba(194,24,91,.2)}.mat-icon-button.mat-accent .mat-ripple-element{background-color:rgba(176,190,197,.2)}.mat-icon-button.mat-warn .mat-ripple-element{background-color:rgba(244,67,54,.2)}.mat-button-toggle{color:rgba(255,255,255,.3)}.mat-button-toggle.cdk-focused .mat-button-toggle-focus-overlay{background-color:rgba(255,255,255,.06)}.mat-button-toggle-checked{background-color:#212121;color:rgba(255,255,255,.7)}.mat-button-toggle-disabled{background-color:#000;color:rgba(255,255,255,.3)}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#424242}.mat-card{background:#424242;color:#fff}.mat-card-subtitle{color:rgba(255,255,255,.7)}.mat-checkbox-frame{border-color:rgba(255,255,255,.7)}.mat-checkbox-checkmark{fill:#303030}.mat-checkbox-checkmark-path{stroke:#303030!important}.mat-checkbox-mixedmark{background-color:#303030}.mat-checkbox-checked.mat-primary .mat-checkbox-background,.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background{background-color:#c2185b}.mat-checkbox-checked.mat-accent .mat-checkbox-background,.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background{background-color:#b0bec5}.mat-checkbox-checked.mat-warn .mat-checkbox-background,.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background{background-color:#f44336}.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.mat-checkbox-disabled .mat-checkbox-label{color:#686868}.mat-checkbox:not(.mat-checkbox-disabled).mat-primary .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(194,24,91,.26)}.mat-checkbox:not(.mat-checkbox-disabled).mat-accent .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(176,190,197,.26)}.mat-checkbox:not(.mat-checkbox-disabled).mat-warn .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(244,67,54,.26)}.mat-chip:not(.mat-basic-chip){background-color:#616161;color:#fff}.mat-chip:not(.mat-basic-chip) .mat-chip-remove{color:#fff;opacity:.4}.mat-chip:not(.mat-basic-chip) .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-primary{background-color:#c2185b;color:rgba(255,255,255,.87)}.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:rgba(255,255,255,.87);opacity:.4}.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-warn{background-color:#f44336;color:#fff}.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-accent{background-color:#b0bec5;color:rgba(0,0,0,.87)}.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:rgba(0,0,0,.87);opacity:.4}.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove:hover{opacity:.54}.mat-table{background:#424242}.mat-header-row,.mat-row{border-bottom-color:rgba(255,255,255,.12)}.mat-header-cell{color:rgba(255,255,255,.7)}.mat-cell{color:#fff}.mat-datepicker-content{background-color:#424242;color:#fff}.mat-calendar-arrow{border-top-color:#fff}.mat-calendar-next-button,.mat-calendar-previous-button{color:#fff}.mat-calendar-table-header{color:rgba(255,255,255,.3)}.mat-calendar-table-header-divider::after{background:rgba(255,255,255,.12)}.mat-calendar-body-label{color:rgba(255,255,255,.7)}.mat-calendar-body-cell-content{color:#fff;border-color:transparent}.mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected){color:rgba(255,255,255,.3)}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected),:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected){background-color:rgba(255,255,255,.04)}.mat-calendar-body-selected{background-color:#c2185b;color:rgba(255,255,255,.87)}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(194,24,91,.4)}.mat-calendar-body-today:not(.mat-calendar-body-selected){border-color:rgba(255,255,255,.3)}.mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px rgba(255,255,255,.87)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected){border-color:rgba(255,255,255,.1)}.mat-dialog-container{background:#424242;color:#fff}.mat-expansion-panel{background:#424242;color:#fff}.mat-action-row{border-top-color:rgba(255,255,255,.12)}.mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused,.mat-expansion-panel-header:not([aria-disabled=true]):hover{background:rgba(255,255,255,.04)}.mat-expansion-panel-header-title{color:#fff}.mat-expansion-indicator::after,.mat-expansion-panel-header-description{color:rgba(255,255,255,.7)}.mat-expansion-panel-header[aria-disabled=true]{color:rgba(255,255,255,.3)}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title{color:inherit}.mat-form-field{width:200px}.mat-form-field-placeholder{color:rgba(255,255,255,.7)}.mat-hint{color:rgba(255,255,255,.7)}.mat-focused .mat-form-field-placeholder{color:#c2185b}.mat-focused .mat-form-field-placeholder.mat-accent{color:#b0bec5}.mat-focused .mat-form-field-placeholder.mat-warn{color:#f44336}.mat-focused .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker,.mat-form-field-autofill-float:-webkit-autofill+.mat-form-field-placeholder .mat-form-field-required-marker{color:#b0bec5}.mat-form-field-underline{background-color:rgba(255,255,255,.7)}.mat-form-field-underline.mat-disabled{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0,rgba(255,255,255,.7) 33%,transparent 0);background-size:4px 1px;background-repeat:repeat-x}.mat-form-field-ripple{background-color:#c2185b}.mat-form-field-ripple.mat-accent{background-color:#b0bec5}.mat-form-field-ripple.mat-warn{background-color:#f44336}.mat-form-field-invalid .mat-form-field-placeholder{color:#f44336}.mat-form-field-invalid .mat-form-field-placeholder.mat-accent,.mat-form-field-invalid .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker{color:#f44336}.mat-form-field-invalid .mat-form-field-ripple{background-color:#f44336}.mat-error{color:#f44336}.mat-icon.mat-primary{color:#c2185b}.mat-icon.mat-accent{color:#b0bec5}.mat-icon.mat-warn{color:#f44336}.mat-input-element:disabled{color:rgba(255,255,255,.7)}.mat-list .mat-list-item,.mat-nav-list .mat-list-item,.mat-selection-list .mat-list-item{color:#fff}.mat-list .mat-list-option,.mat-nav-list .mat-list-option,.mat-selection-list .mat-list-option{color:#fff}.mat-list .mat-subheader,.mat-nav-list .mat-subheader,.mat-selection-list .mat-subheader{color:rgba(255,255,255,.7)}.mat-list-item-disabled{background-color:#000}.mat-divider{border-top-color:rgba(255,255,255,.12)}.mat-nav-list .mat-list-item{outline:0}.mat-nav-list .mat-list-item.mat-list-item-focus,.mat-nav-list .mat-list-item:hover{background:rgba(255,255,255,.04)}.mat-list-option{outline:0}.mat-list-option.mat-list-item-focus,.mat-list-option:hover{background:rgba(255,255,255,.04)}.mat-menu-panel{background:#424242}.mat-menu-item{background:0 0;color:#fff}.mat-menu-item[disabled]{color:rgba(255,255,255,.3)}.mat-menu-item .mat-icon,.mat-menu-item-submenu-trigger::after{color:#fff}.mat-menu-item-highlighted:not([disabled]),.mat-menu-item:focus:not([disabled]),.mat-menu-item:hover:not([disabled]){background:rgba(255,255,255,.04)}.mat-paginator{background:#424242}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{color:rgba(255,255,255,.7)}.mat-paginator-decrement,.mat-paginator-increment{border-top:2px solid #fff;border-right:2px solid #fff}.mat-icon-button[disabled] .mat-paginator-decrement,.mat-icon-button[disabled] .mat-paginator-increment{border-color:rgba(255,255,255,.3)}.mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23e91e63%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar-buffer{background-color:#e91e63}.mat-progress-bar-fill::after{background-color:#c2185b}.mat-progress-bar.mat-accent .mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23cfd8dc%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#cfd8dc}.mat-progress-bar.mat-accent .mat-progress-bar-fill::after{background-color:#b0bec5}.mat-progress-bar.mat-warn .mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ffcdd2%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#ffcdd2}.mat-progress-bar.mat-warn .mat-progress-bar-fill::after{background-color:#f44336}.mat-progress-spinner path,.mat-spinner path{stroke:#c2185b}.mat-progress-spinner.mat-accent path,.mat-spinner.mat-accent path{stroke:#b0bec5}.mat-progress-spinner.mat-warn path,.mat-spinner.mat-warn path{stroke:#f44336}.mat-radio-outer-circle{border-color:rgba(255,255,255,.7)}.mat-radio-disabled .mat-radio-outer-circle{border-color:rgba(255,255,255,.3)}.mat-radio-disabled .mat-radio-inner-circle,.mat-radio-disabled .mat-radio-ripple .mat-ripple-element{background-color:rgba(255,255,255,.3)}.mat-radio-disabled .mat-radio-label-content{color:rgba(255,255,255,.3)}.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#c2185b}.mat-radio-button.mat-primary .mat-radio-inner-circle{background-color:#c2185b}.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element{background-color:rgba(194,24,91,.26)}.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#b0bec5}.mat-radio-button.mat-accent .mat-radio-inner-circle{background-color:#b0bec5}.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element{background-color:rgba(176,190,197,.26)}.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#f44336}.mat-radio-button.mat-warn .mat-radio-inner-circle{background-color:#f44336}.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element{background-color:rgba(244,67,54,.26)}.mat-select-arrow,.mat-select-trigger{color:rgba(255,255,255,.7)}.mat-select-underline{background-color:rgba(255,255,255,.7)}[aria-disabled=true] .mat-select-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0,rgba(255,255,255,.7) 33%,transparent 0);background-size:4px 1px;background-repeat:repeat-x}.mat-select-arrow,.mat-select-disabled .mat-select-value,.mat-select-trigger{color:rgba(255,255,255,.7)}.mat-select-content,.mat-select-panel-done-animating{background:#424242}.mat-select-value{color:#fff}.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(255,255,255,.12)}.mat-select:focus:not(.mat-select-disabled).mat-primary .mat-select-arrow,.mat-select:focus:not(.mat-select-disabled).mat-primary .mat-select-trigger{color:#c2185b}.mat-select:focus:not(.mat-select-disabled).mat-primary .mat-select-underline{background-color:#c2185b}.mat-select:focus:not(.mat-select-disabled).mat-accent .mat-select-arrow,.mat-select:focus:not(.mat-select-disabled).mat-accent .mat-select-trigger{color:#b0bec5}.mat-select:focus:not(.mat-select-disabled).mat-accent .mat-select-underline{background-color:#b0bec5}.mat-select:focus:not(.mat-select-disabled).mat-select-required .mat-select-placeholder::after{color:#f44336}.mat-select-invalid .mat-select-arrow,.mat-select-invalid .mat-select-trigger,.mat-select:focus:not(.mat-select-disabled).mat-warn .mat-select-arrow,.mat-select:focus:not(.mat-select-disabled).mat-warn .mat-select-trigger{color:#f44336}.mat-select-invalid .mat-select-underline,.mat-select:focus:not(.mat-select-disabled).mat-warn .mat-select-underline{background-color:#f44336}.mat-drawer-container{background-color:#303030;color:#fff}.mat-drawer{background-color:#424242;color:#fff}.mat-drawer.mat-drawer-push{background-color:#424242}.mat-drawer-backdrop.mat-drawer-shown{background-color:rgba(189,189,189,.6)}.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#b0bec5}.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(176,190,197,.5)}.mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-slide-toggle .mat-ripple-element{background-color:rgba(176,190,197,.12)}.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#f48fb1}.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(244,143,177,.5)}.mat-slide-toggle.mat-primary:not(.mat-checked) .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-slide-toggle.mat-primary .mat-ripple-element{background-color:rgba(244,143,177,.12)}.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#ef9a9a}.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(239,154,154,.5)}.mat-slide-toggle.mat-warn:not(.mat-checked) .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-slide-toggle.mat-warn .mat-ripple-element{background-color:rgba(239,154,154,.12)}.mat-disabled .mat-slide-toggle-thumb{background-color:#424242}.mat-disabled .mat-slide-toggle-bar{background-color:rgba(255,255,255,.12)}.mat-slide-toggle-thumb{background-color:#bdbdbd}.mat-slide-toggle-bar{background-color:rgba(255,255,255,.3)}.mat-slider-track-background{background-color:rgba(255,255,255,.3)}.mat-primary .mat-slider-thumb,.mat-primary .mat-slider-thumb-label,.mat-primary .mat-slider-track-fill{background-color:#c2185b}.mat-primary .mat-slider-thumb-label-text{color:rgba(255,255,255,.87)}.mat-accent .mat-slider-thumb,.mat-accent .mat-slider-thumb-label,.mat-accent .mat-slider-track-fill{background-color:#b0bec5}.mat-accent .mat-slider-thumb-label-text{color:rgba(0,0,0,.87)}.mat-warn .mat-slider-thumb,.mat-warn .mat-slider-thumb-label,.mat-warn .mat-slider-track-fill{background-color:#f44336}.mat-warn .mat-slider-thumb-label-text{color:#fff}.mat-slider-focus-ring{background-color:rgba(176,190,197,.2)}.cdk-focused .mat-slider-track-background,.mat-slider:hover .mat-slider-track-background{background-color:rgba(255,255,255,.3)}.mat-slider-disabled .mat-slider-thumb,.mat-slider-disabled .mat-slider-track-background,.mat-slider-disabled .mat-slider-track-fill{background-color:rgba(255,255,255,.3)}.mat-slider-disabled:hover .mat-slider-track-background{background-color:rgba(255,255,255,.3)}.mat-slider-min-value .mat-slider-focus-ring{background-color:rgba(255,255,255,.12)}.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:rgba(255,255,255,.3)}.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:rgba(255,255,255,.3);background-color:transparent}.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb,.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb{border-color:rgba(255,255,255,.3)}.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb,.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb{border-color:rgba(255,255,255,.3)}.mat-slider-has-ticks .mat-slider-wrapper::after{border-color:rgba(255,255,255,.7)}.mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.mat-tab-header,.mat-tab-nav-bar{border-bottom:1px solid rgba(255,255,255,.12)}.mat-tab-group-inverted-header .mat-tab-header,.mat-tab-group-inverted-header .mat-tab-nav-bar{border-top:1px solid rgba(255,255,255,.12);border-bottom:none}.mat-tab-label,.mat-tab-link{color:#fff}.mat-tab-label.mat-tab-disabled,.mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.3)}.mat-tab-header-pagination-chevron{border-color:#fff}.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.3)}.mat-tab-group[class*=mat-background-] .mat-tab-header,.mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.mat-tab-group.mat-primary .mat-tab-label:focus,.mat-tab-group.mat-primary .mat-tab-link:focus,.mat-tab-nav-bar.mat-primary .mat-tab-label:focus,.mat-tab-nav-bar.mat-primary .mat-tab-link:focus{background-color:rgba(233,30,99,.3)}.mat-tab-group.mat-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#c2185b}.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar{background-color:rgba(255,255,255,.87)}.mat-tab-group.mat-accent .mat-tab-label:focus,.mat-tab-group.mat-accent .mat-tab-link:focus,.mat-tab-nav-bar.mat-accent .mat-tab-label:focus,.mat-tab-nav-bar.mat-accent .mat-tab-link:focus{background-color:rgba(207,216,220,.3)}.mat-tab-group.mat-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#b0bec5}.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar{background-color:rgba(0,0,0,.87)}.mat-tab-group.mat-warn .mat-tab-label:focus,.mat-tab-group.mat-warn .mat-tab-link:focus,.mat-tab-nav-bar.mat-warn .mat-tab-label:focus,.mat-tab-nav-bar.mat-warn .mat-tab-link:focus{background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#f44336}.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-background-primary .mat-tab-label:focus,.mat-tab-group.mat-background-primary .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-primary .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-primary .mat-tab-link:focus{background-color:rgba(233,30,99,.3)}.mat-tab-group.mat-background-primary .mat-tab-header,.mat-tab-group.mat-background-primary .mat-tab-links,.mat-tab-nav-bar.mat-background-primary .mat-tab-header,.mat-tab-nav-bar.mat-background-primary .mat-tab-links{background-color:#c2185b}.mat-tab-group.mat-background-primary .mat-tab-label,.mat-tab-group.mat-background-primary .mat-tab-link,.mat-tab-nav-bar.mat-background-primary .mat-tab-label,.mat-tab-nav-bar.mat-background-primary .mat-tab-link{color:rgba(255,255,255,.87)}.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.87)}.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-accent .mat-tab-label:focus,.mat-tab-group.mat-background-accent .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-accent .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-accent .mat-tab-link:focus{background-color:rgba(207,216,220,.3)}.mat-tab-group.mat-background-accent .mat-tab-header,.mat-tab-group.mat-background-accent .mat-tab-links,.mat-tab-nav-bar.mat-background-accent .mat-tab-header,.mat-tab-nav-bar.mat-background-accent .mat-tab-links{background-color:#b0bec5}.mat-tab-group.mat-background-accent .mat-tab-label,.mat-tab-group.mat-background-accent .mat-tab-link,.mat-tab-nav-bar.mat-background-accent .mat-tab-label,.mat-tab-nav-bar.mat-background-accent .mat-tab-link{color:rgba(0,0,0,.87)}.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled{color:rgba(0,0,0,.4)}.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.87)}.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.4)}.mat-tab-group.mat-background-warn .mat-tab-label:focus,.mat-tab-group.mat-background-warn .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-warn .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-warn .mat-tab-link:focus{background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-background-warn .mat-tab-header,.mat-tab-group.mat-background-warn .mat-tab-links,.mat-tab-nav-bar.mat-background-warn .mat-tab-header,.mat-tab-nav-bar.mat-background-warn .mat-tab-links{background-color:#f44336}.mat-tab-group.mat-background-warn .mat-tab-label,.mat-tab-group.mat-background-warn .mat-tab-link,.mat-tab-nav-bar.mat-background-warn .mat-tab-label,.mat-tab-nav-bar.mat-background-warn .mat-tab-link{color:#fff}.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron{border-color:#fff}.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.4)}.mat-toolbar{background:#212121;color:#fff}.mat-toolbar.mat-primary{background:#c2185b;color:rgba(255,255,255,.87)}.mat-toolbar.mat-accent{background:#b0bec5;color:rgba(0,0,0,.87)}.mat-toolbar.mat-warn{background:#f44336;color:#fff}.mat-tooltip{background:rgba(97,97,97,.9)}.mat-snack-bar-container{background:#fafafa;color:rgba(0,0,0,.87)}.mat-simple-snackbar-action{color:inherit}
\ No newline at end of file
.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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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{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-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-size:11.62px;font-weight:400;font-family:Roboto,"Helvetica Neue",sans-serif;line-height:20px;margin:0 0 12px}.mat-h6,.mat-typography h6{font-size:9.38px;font-weight:400;font-family:Roboto,"Helvetica Neue",sans-serif;line-height:20px;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-button,.mat-fab,.mat-icon-button,.mat-mini-fab,.mat-raised-button{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:14px;font-weight:500}.mat-button-toggle{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-card{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-card-title{font-size:24px;font-weight:400}.mat-card-content,.mat-card-header .mat-card-title,.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:13px;line-height:18px}.mat-chip .mat-chip-remove.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{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:500}.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-family:Roboto,"Helvetica Neue",sans-serif;font-size:inherit;font-weight:400;line-height:1.125}.mat-form-field-wrapper{padding-bottom:1.25em}.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:.4375em 0;border-top:.84375em solid transparent}.mat-form-field-autofill-float:-webkit-autofill+.mat-form-field-placeholder-wrapper .mat-form-field-float{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);-ms-transform:translateY(-1.28125em) scale(.75);width:133.33333%}.mat-form-field-placeholder-wrapper{top:-.84375em;padding-top:.84375em}.mat-form-field-placeholder{top:1.28125em}.mat-focused .mat-form-field-placeholder.mat-form-field-float,.mat-form-field-placeholder.mat-form-field-float:not(.mat-form-field-empty){transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);-ms-transform:translateY(-1.28125em) scale(.75);width:133.33333%}.mat-form-field-underline{bottom:1.25em}.mat-form-field-subscript-wrapper{font-size:75%;margin-top:.54167em;top:calc(100% - 1.66667em)}.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:16px}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:12px}.mat-radio-button{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-select{padding-top:16px;font-family:Roboto,"Helvetica Neue",sans-serif}.mat-select-trigger{font-size:16px}.mat-slide-toggle-content{font:400 14px/20px Roboto,"Helvetica Neue",sans-serif}.mat-slider-thumb-label-text{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:12px;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:500}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font:500 20px/32px Roboto,"Helvetica Neue",sans-serif;margin:0}.mat-tooltip{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.mat-list-item{font-family:Roboto,"Helvetica Neue",sans-serif}.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-nav-list[dense] .mat-list-item .mat-line:nth-child(n+2),.mat-selection-list[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}.mat-list[dense] .mat-list-option,.mat-nav-list[dense] .mat-list-option,.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:500}.mat-ripple{overflow:hidden}@media screen and (-ms-high-contrast:active){.mat-ripple{display:none}}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0s cubic-bezier(0,0,.2,1);transform:scale(0)}.mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;position:relative;cursor:pointer;outline:0}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}@media screen and (-ms-high-contrast:active){.mat-option-ripple{opacity:.5}}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}.mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.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-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.48}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.cdk-overlay-transparent-backdrop{background:0 0}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-option{color:#fff}.mat-option:focus:not(.mat-option-disabled),.mat-option:hover:not(.mat-option-disabled){background:rgba(255,255,255,.04)}.mat-primary .mat-option.mat-selected{color:#7b1fa2}.mat-accent .mat-option.mat-selected{color:#69f0ae}.mat-warn .mat-option.mat-selected{color:#f44336}.mat-option.mat-selected:not(.mat-option-multiple){background:rgba(255,255,255,.04)}.mat-option.mat-active{background:rgba(255,255,255,.04);color:#fff}.mat-option.mat-option-disabled{color:rgba(255,255,255,.3)}.mat-optgroup-label{color:rgba(255,255,255,.7)}.mat-optgroup-disabled .mat-optgroup-label{color:rgba(255,255,255,.3)}.mat-pseudo-checkbox{color:rgba(255,255,255,.7)}.mat-pseudo-checkbox::after{color:#303030}.mat-accent .mat-pseudo-checkbox-checked,.mat-accent .mat-pseudo-checkbox-indeterminate,.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-indeterminate{background:#69f0ae}.mat-primary .mat-pseudo-checkbox-checked,.mat-primary .mat-pseudo-checkbox-indeterminate{background:#7b1fa2}.mat-warn .mat-pseudo-checkbox-checked,.mat-warn .mat-pseudo-checkbox-indeterminate{background:#f44336}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.mat-app-background{background-color:#303030}.mat-theme-loaded-marker{display:none}.mat-autocomplete-panel{background:#424242;color:#fff}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#424242;color:#fff}.mat-button,.mat-icon-button{background:0 0}.mat-button.mat-primary .mat-button-focus-overlay,.mat-icon-button.mat-primary .mat-button-focus-overlay{background-color:rgba(123,31,162,.12)}.mat-button.mat-accent .mat-button-focus-overlay,.mat-icon-button.mat-accent .mat-button-focus-overlay{background-color:rgba(105,240,174,.12)}.mat-button.mat-warn .mat-button-focus-overlay,.mat-icon-button.mat-warn .mat-button-focus-overlay{background-color:rgba(244,67,54,.12)}.mat-button[disabled] .mat-button-focus-overlay,.mat-icon-button[disabled] .mat-button-focus-overlay{background-color:transparent}.mat-button.mat-primary,.mat-icon-button.mat-primary{color:#7b1fa2}.mat-button.mat-accent,.mat-icon-button.mat-accent{color:#69f0ae}.mat-button.mat-warn,.mat-icon-button.mat-warn{color:#f44336}.mat-button.mat-accent[disabled],.mat-button.mat-primary[disabled],.mat-button.mat-warn[disabled],.mat-button[disabled][disabled],.mat-icon-button.mat-accent[disabled],.mat-icon-button.mat-primary[disabled],.mat-icon-button.mat-warn[disabled],.mat-icon-button[disabled][disabled]{color:rgba(255,255,255,.3)}.mat-fab,.mat-mini-fab,.mat-raised-button{color:#fff;background-color:#424242}.mat-fab.mat-primary,.mat-mini-fab.mat-primary,.mat-raised-button.mat-primary{color:rgba(255,255,255,.87)}.mat-fab.mat-accent,.mat-mini-fab.mat-accent,.mat-raised-button.mat-accent{color:rgba(0,0,0,.87)}.mat-fab.mat-warn,.mat-mini-fab.mat-warn,.mat-raised-button.mat-warn{color:#fff}.mat-fab.mat-accent[disabled],.mat-fab.mat-primary[disabled],.mat-fab.mat-warn[disabled],.mat-fab[disabled][disabled],.mat-mini-fab.mat-accent[disabled],.mat-mini-fab.mat-primary[disabled],.mat-mini-fab.mat-warn[disabled],.mat-mini-fab[disabled][disabled],.mat-raised-button.mat-accent[disabled],.mat-raised-button.mat-primary[disabled],.mat-raised-button.mat-warn[disabled],.mat-raised-button[disabled][disabled]{color:rgba(255,255,255,.3)}.mat-fab.mat-primary,.mat-mini-fab.mat-primary,.mat-raised-button.mat-primary{background-color:#7b1fa2}.mat-fab.mat-accent,.mat-mini-fab.mat-accent,.mat-raised-button.mat-accent{background-color:#69f0ae}.mat-fab.mat-warn,.mat-mini-fab.mat-warn,.mat-raised-button.mat-warn{background-color:#f44336}.mat-fab.mat-accent[disabled],.mat-fab.mat-primary[disabled],.mat-fab.mat-warn[disabled],.mat-fab[disabled][disabled],.mat-mini-fab.mat-accent[disabled],.mat-mini-fab.mat-primary[disabled],.mat-mini-fab.mat-warn[disabled],.mat-mini-fab[disabled][disabled],.mat-raised-button.mat-accent[disabled],.mat-raised-button.mat-primary[disabled],.mat-raised-button.mat-warn[disabled],.mat-raised-button[disabled][disabled]{background-color:rgba(255,255,255,.12)}.mat-fab.mat-primary .mat-ripple-element,.mat-mini-fab.mat-primary .mat-ripple-element,.mat-raised-button.mat-primary .mat-ripple-element{background-color:rgba(255,255,255,.2)}.mat-fab.mat-accent .mat-ripple-element,.mat-mini-fab.mat-accent .mat-ripple-element,.mat-raised-button.mat-accent .mat-ripple-element{background-color:rgba(0,0,0,.2)}.mat-fab.mat-warn .mat-ripple-element,.mat-mini-fab.mat-warn .mat-ripple-element,.mat-raised-button.mat-warn .mat-ripple-element{background-color:rgba(255,255,255,.2)}.mat-button.mat-primary .mat-ripple-element{background-color:rgba(123,31,162,.1)}.mat-button.mat-accent .mat-ripple-element{background-color:rgba(105,240,174,.1)}.mat-button.mat-warn .mat-ripple-element{background-color:rgba(244,67,54,.1)}.mat-icon-button.mat-primary .mat-ripple-element{background-color:rgba(123,31,162,.2)}.mat-icon-button.mat-accent .mat-ripple-element{background-color:rgba(105,240,174,.2)}.mat-icon-button.mat-warn .mat-ripple-element{background-color:rgba(244,67,54,.2)}.mat-button-toggle{color:rgba(255,255,255,.3)}.mat-button-toggle.cdk-focused .mat-button-toggle-focus-overlay{background-color:rgba(255,255,255,.06)}.mat-button-toggle-checked{background-color:#212121;color:rgba(255,255,255,.7)}.mat-button-toggle-disabled{background-color:#000;color:rgba(255,255,255,.3)}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#424242}.mat-card{background:#424242;color:#fff}.mat-card-subtitle{color:rgba(255,255,255,.7)}.mat-checkbox-frame{border-color:rgba(255,255,255,.7)}.mat-checkbox-checkmark{fill:#303030}.mat-checkbox-checkmark-path{stroke:#303030!important}.mat-checkbox-mixedmark{background-color:#303030}.mat-checkbox-checked.mat-primary .mat-checkbox-background,.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background{background-color:#7b1fa2}.mat-checkbox-checked.mat-accent .mat-checkbox-background,.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background{background-color:#69f0ae}.mat-checkbox-checked.mat-warn .mat-checkbox-background,.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background{background-color:#f44336}.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.mat-checkbox-disabled .mat-checkbox-label{color:#686868}.mat-checkbox:not(.mat-checkbox-disabled).mat-primary .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(123,31,162,.26)}.mat-checkbox:not(.mat-checkbox-disabled).mat-accent .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(105,240,174,.26)}.mat-checkbox:not(.mat-checkbox-disabled).mat-warn .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(244,67,54,.26)}.mat-chip:not(.mat-basic-chip){background-color:#616161;color:#fff}.mat-chip:not(.mat-basic-chip) .mat-chip-remove{color:#fff;opacity:.4}.mat-chip:not(.mat-basic-chip) .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-primary{background-color:#7b1fa2;color:rgba(255,255,255,.87)}.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:rgba(255,255,255,.87);opacity:.4}.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-warn{background-color:#f44336;color:#fff}.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-accent{background-color:#69f0ae;color:rgba(0,0,0,.87)}.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:rgba(0,0,0,.87);opacity:.4}.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove:hover{opacity:.54}.mat-table{background:#424242}.mat-header-row,.mat-row{border-bottom-color:rgba(255,255,255,.12)}.mat-header-cell{color:rgba(255,255,255,.7)}.mat-cell{color:#fff}.mat-datepicker-content{background-color:#424242;color:#fff}.mat-calendar-arrow{border-top-color:#fff}.mat-calendar-next-button,.mat-calendar-previous-button{color:#fff}.mat-calendar-table-header{color:rgba(255,255,255,.3)}.mat-calendar-table-header-divider::after{background:rgba(255,255,255,.12)}.mat-calendar-body-label{color:rgba(255,255,255,.7)}.mat-calendar-body-cell-content{color:#fff;border-color:transparent}.mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected){color:rgba(255,255,255,.3)}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected),:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected){background-color:rgba(255,255,255,.04)}.mat-calendar-body-selected{background-color:#7b1fa2;color:rgba(255,255,255,.87)}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(123,31,162,.4)}.mat-calendar-body-today:not(.mat-calendar-body-selected){border-color:rgba(255,255,255,.3)}.mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px rgba(255,255,255,.87)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected){border-color:rgba(255,255,255,.1)}.mat-dialog-container{background:#424242;color:#fff}.mat-expansion-panel{background:#424242;color:#fff}.mat-action-row{border-top-color:rgba(255,255,255,.12)}.mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused,.mat-expansion-panel-header:not([aria-disabled=true]):hover{background:rgba(255,255,255,.04)}.mat-expansion-panel-header-title{color:#fff}.mat-expansion-indicator::after,.mat-expansion-panel-header-description{color:rgba(255,255,255,.7)}.mat-expansion-panel-header[aria-disabled=true]{color:rgba(255,255,255,.3)}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title{color:inherit}.mat-form-field{width:200px}.mat-form-field-placeholder{color:rgba(255,255,255,.7)}.mat-hint{color:rgba(255,255,255,.7)}.mat-focused .mat-form-field-placeholder{color:#7b1fa2}.mat-focused .mat-form-field-placeholder.mat-accent{color:#69f0ae}.mat-focused .mat-form-field-placeholder.mat-warn{color:#f44336}.mat-focused .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker,.mat-form-field-autofill-float:-webkit-autofill+.mat-form-field-placeholder .mat-form-field-required-marker{color:#69f0ae}.mat-form-field-underline{background-color:rgba(255,255,255,.7)}.mat-form-field-underline.mat-disabled{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0,rgba(255,255,255,.7) 33%,transparent 0);background-size:4px 1px;background-repeat:repeat-x}.mat-form-field-ripple{background-color:#7b1fa2}.mat-form-field-ripple.mat-accent{background-color:#69f0ae}.mat-form-field-ripple.mat-warn{background-color:#f44336}.mat-form-field-invalid .mat-form-field-placeholder{color:#f44336}.mat-form-field-invalid .mat-form-field-placeholder.mat-accent,.mat-form-field-invalid .mat-form-field-placeholder.mat-form-field-float .mat-form-field-required-marker{color:#f44336}.mat-form-field-invalid .mat-form-field-ripple{background-color:#f44336}.mat-error{color:#f44336}.mat-icon.mat-primary{color:#7b1fa2}.mat-icon.mat-accent{color:#69f0ae}.mat-icon.mat-warn{color:#f44336}.mat-input-element:disabled{color:rgba(255,255,255,.7)}.mat-list .mat-list-item,.mat-nav-list .mat-list-item,.mat-selection-list .mat-list-item{color:#fff}.mat-list .mat-list-option,.mat-nav-list .mat-list-option,.mat-selection-list .mat-list-option{color:#fff}.mat-list .mat-subheader,.mat-nav-list .mat-subheader,.mat-selection-list .mat-subheader{color:rgba(255,255,255,.7)}.mat-list-item-disabled{background-color:#000}.mat-divider{border-top-color:rgba(255,255,255,.12)}.mat-nav-list .mat-list-item{outline:0}.mat-nav-list .mat-list-item.mat-list-item-focus,.mat-nav-list .mat-list-item:hover{background:rgba(255,255,255,.04)}.mat-list-option{outline:0}.mat-list-option.mat-list-item-focus,.mat-list-option:hover{background:rgba(255,255,255,.04)}.mat-menu-panel{background:#424242}.mat-menu-item{background:0 0;color:#fff}.mat-menu-item[disabled]{color:rgba(255,255,255,.3)}.mat-menu-item .mat-icon,.mat-menu-item-submenu-trigger::after{color:#fff}.mat-menu-item-highlighted:not([disabled]),.mat-menu-item:focus:not([disabled]),.mat-menu-item:hover:not([disabled]){background:rgba(255,255,255,.04)}.mat-paginator{background:#424242}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{color:rgba(255,255,255,.7)}.mat-paginator-decrement,.mat-paginator-increment{border-top:2px solid #fff;border-right:2px solid #fff}.mat-icon-button[disabled] .mat-paginator-decrement,.mat-icon-button[disabled] .mat-paginator-increment{border-color:rgba(255,255,255,.3)}.mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%239c27b0%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar-buffer{background-color:#9c27b0}.mat-progress-bar-fill::after{background-color:#7b1fa2}.mat-progress-bar.mat-accent .mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23b9f6ca%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#b9f6ca}.mat-progress-bar.mat-accent .mat-progress-bar-fill::after{background-color:#69f0ae}.mat-progress-bar.mat-warn .mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ffcdd2%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#ffcdd2}.mat-progress-bar.mat-warn .mat-progress-bar-fill::after{background-color:#f44336}.mat-progress-spinner path,.mat-spinner path{stroke:#7b1fa2}.mat-progress-spinner.mat-accent path,.mat-spinner.mat-accent path{stroke:#69f0ae}.mat-progress-spinner.mat-warn path,.mat-spinner.mat-warn path{stroke:#f44336}.mat-radio-outer-circle{border-color:rgba(255,255,255,.7)}.mat-radio-disabled .mat-radio-outer-circle{border-color:rgba(255,255,255,.3)}.mat-radio-disabled .mat-radio-inner-circle,.mat-radio-disabled .mat-radio-ripple .mat-ripple-element{background-color:rgba(255,255,255,.3)}.mat-radio-disabled .mat-radio-label-content{color:rgba(255,255,255,.3)}.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#7b1fa2}.mat-radio-button.mat-primary .mat-radio-inner-circle{background-color:#7b1fa2}.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element{background-color:rgba(123,31,162,.26)}.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#69f0ae}.mat-radio-button.mat-accent .mat-radio-inner-circle{background-color:#69f0ae}.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element{background-color:rgba(105,240,174,.26)}.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#f44336}.mat-radio-button.mat-warn .mat-radio-inner-circle{background-color:#f44336}.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element{background-color:rgba(244,67,54,.26)}.mat-select-arrow,.mat-select-trigger{color:rgba(255,255,255,.7)}.mat-select-underline{background-color:rgba(255,255,255,.7)}[aria-disabled=true] .mat-select-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0,rgba(255,255,255,.7) 33%,transparent 0);background-size:4px 1px;background-repeat:repeat-x}.mat-select-arrow,.mat-select-disabled .mat-select-value,.mat-select-trigger{color:rgba(255,255,255,.7)}.mat-select-content,.mat-select-panel-done-animating{background:#424242}.mat-select-value{color:#fff}.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(255,255,255,.12)}.mat-select:focus:not(.mat-select-disabled).mat-primary .mat-select-arrow,.mat-select:focus:not(.mat-select-disabled).mat-primary .mat-select-trigger{color:#7b1fa2}.mat-select:focus:not(.mat-select-disabled).mat-primary .mat-select-underline{background-color:#7b1fa2}.mat-select:focus:not(.mat-select-disabled).mat-accent .mat-select-arrow,.mat-select:focus:not(.mat-select-disabled).mat-accent .mat-select-trigger{color:#69f0ae}.mat-select:focus:not(.mat-select-disabled).mat-accent .mat-select-underline{background-color:#69f0ae}.mat-select:focus:not(.mat-select-disabled).mat-select-required .mat-select-placeholder::after{color:#f44336}.mat-select-invalid .mat-select-arrow,.mat-select-invalid .mat-select-trigger,.mat-select:focus:not(.mat-select-disabled).mat-warn .mat-select-arrow,.mat-select:focus:not(.mat-select-disabled).mat-warn .mat-select-trigger{color:#f44336}.mat-select-invalid .mat-select-underline,.mat-select:focus:not(.mat-select-disabled).mat-warn .mat-select-underline{background-color:#f44336}.mat-drawer-container{background-color:#303030;color:#fff}.mat-drawer{background-color:#424242;color:#fff}.mat-drawer.mat-drawer-push{background-color:#424242}.mat-drawer-backdrop.mat-drawer-shown{background-color:rgba(189,189,189,.6)}.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#a5d6a7}.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(165,214,167,.5)}.mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-slide-toggle .mat-ripple-element{background-color:rgba(165,214,167,.12)}.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#ce93d8}.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(206,147,216,.5)}.mat-slide-toggle.mat-primary:not(.mat-checked) .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-slide-toggle.mat-primary .mat-ripple-element{background-color:rgba(206,147,216,.12)}.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#ef9a9a}.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(239,154,154,.5)}.mat-slide-toggle.mat-warn:not(.mat-checked) .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-slide-toggle.mat-warn .mat-ripple-element{background-color:rgba(239,154,154,.12)}.mat-disabled .mat-slide-toggle-thumb{background-color:#424242}.mat-disabled .mat-slide-toggle-bar{background-color:rgba(255,255,255,.12)}.mat-slide-toggle-thumb{background-color:#bdbdbd}.mat-slide-toggle-bar{background-color:rgba(255,255,255,.3)}.mat-slider-track-background{background-color:rgba(255,255,255,.3)}.mat-primary .mat-slider-thumb,.mat-primary .mat-slider-thumb-label,.mat-primary .mat-slider-track-fill{background-color:#7b1fa2}.mat-primary .mat-slider-thumb-label-text{color:rgba(255,255,255,.87)}.mat-accent .mat-slider-thumb,.mat-accent .mat-slider-thumb-label,.mat-accent .mat-slider-track-fill{background-color:#69f0ae}.mat-accent .mat-slider-thumb-label-text{color:rgba(0,0,0,.87)}.mat-warn .mat-slider-thumb,.mat-warn .mat-slider-thumb-label,.mat-warn .mat-slider-track-fill{background-color:#f44336}.mat-warn .mat-slider-thumb-label-text{color:#fff}.mat-slider-focus-ring{background-color:rgba(105,240,174,.2)}.cdk-focused .mat-slider-track-background,.mat-slider:hover .mat-slider-track-background{background-color:rgba(255,255,255,.3)}.mat-slider-disabled .mat-slider-thumb,.mat-slider-disabled .mat-slider-track-background,.mat-slider-disabled .mat-slider-track-fill{background-color:rgba(255,255,255,.3)}.mat-slider-disabled:hover .mat-slider-track-background{background-color:rgba(255,255,255,.3)}.mat-slider-min-value .mat-slider-focus-ring{background-color:rgba(255,255,255,.12)}.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:rgba(255,255,255,.3)}.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:rgba(255,255,255,.3);background-color:transparent}.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb,.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb{border-color:rgba(255,255,255,.3)}.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb,.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb{border-color:rgba(255,255,255,.3)}.mat-slider-has-ticks .mat-slider-wrapper::after{border-color:rgba(255,255,255,.7)}.mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.mat-tab-header,.mat-tab-nav-bar{border-bottom:1px solid rgba(255,255,255,.12)}.mat-tab-group-inverted-header .mat-tab-header,.mat-tab-group-inverted-header .mat-tab-nav-bar{border-top:1px solid rgba(255,255,255,.12);border-bottom:none}.mat-tab-label,.mat-tab-link{color:#fff}.mat-tab-label.mat-tab-disabled,.mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.3)}.mat-tab-header-pagination-chevron{border-color:#fff}.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.3)}.mat-tab-group[class*=mat-background-] .mat-tab-header,.mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.mat-tab-group.mat-primary .mat-tab-label:focus,.mat-tab-group.mat-primary .mat-tab-link:focus,.mat-tab-nav-bar.mat-primary .mat-tab-label:focus,.mat-tab-nav-bar.mat-primary .mat-tab-link:focus{background-color:rgba(156,39,176,.3)}.mat-tab-group.mat-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#7b1fa2}.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar{background-color:rgba(255,255,255,.87)}.mat-tab-group.mat-accent .mat-tab-label:focus,.mat-tab-group.mat-accent .mat-tab-link:focus,.mat-tab-nav-bar.mat-accent .mat-tab-label:focus,.mat-tab-nav-bar.mat-accent .mat-tab-link:focus{background-color:rgba(185,246,202,.3)}.mat-tab-group.mat-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#69f0ae}.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar{background-color:rgba(0,0,0,.87)}.mat-tab-group.mat-warn .mat-tab-label:focus,.mat-tab-group.mat-warn .mat-tab-link:focus,.mat-tab-nav-bar.mat-warn .mat-tab-label:focus,.mat-tab-nav-bar.mat-warn .mat-tab-link:focus{background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#f44336}.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-background-primary .mat-tab-label:focus,.mat-tab-group.mat-background-primary .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-primary .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-primary .mat-tab-link:focus{background-color:rgba(156,39,176,.3)}.mat-tab-group.mat-background-primary .mat-tab-header,.mat-tab-group.mat-background-primary .mat-tab-links,.mat-tab-nav-bar.mat-background-primary .mat-tab-header,.mat-tab-nav-bar.mat-background-primary .mat-tab-links{background-color:#7b1fa2}.mat-tab-group.mat-background-primary .mat-tab-label,.mat-tab-group.mat-background-primary .mat-tab-link,.mat-tab-nav-bar.mat-background-primary .mat-tab-label,.mat-tab-nav-bar.mat-background-primary .mat-tab-link{color:rgba(255,255,255,.87)}.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.87)}.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-accent .mat-tab-label:focus,.mat-tab-group.mat-background-accent .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-accent .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-accent .mat-tab-link:focus{background-color:rgba(185,246,202,.3)}.mat-tab-group.mat-background-accent .mat-tab-header,.mat-tab-group.mat-background-accent .mat-tab-links,.mat-tab-nav-bar.mat-background-accent .mat-tab-header,.mat-tab-nav-bar.mat-background-accent .mat-tab-links{background-color:#69f0ae}.mat-tab-group.mat-background-accent .mat-tab-label,.mat-tab-group.mat-background-accent .mat-tab-link,.mat-tab-nav-bar.mat-background-accent .mat-tab-label,.mat-tab-nav-bar.mat-background-accent .mat-tab-link{color:rgba(0,0,0,.87)}.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled{color:rgba(0,0,0,.4)}.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.87)}.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.4)}.mat-tab-group.mat-background-warn .mat-tab-label:focus,.mat-tab-group.mat-background-warn .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-warn .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-warn .mat-tab-link:focus{background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-background-warn .mat-tab-header,.mat-tab-group.mat-background-warn .mat-tab-links,.mat-tab-nav-bar.mat-background-warn .mat-tab-header,.mat-tab-nav-bar.mat-background-warn .mat-tab-links{background-color:#f44336}.mat-tab-group.mat-background-warn .mat-tab-label,.mat-tab-group.mat-background-warn .mat-tab-link,.mat-tab-nav-bar.mat-background-warn .mat-tab-label,.mat-tab-nav-bar.mat-background-warn .mat-tab-link{color:#fff}.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron{border-color:#fff}.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.4)}.mat-toolbar{background:#212121;color:#fff}.mat-toolbar.mat-primary{background:#7b1fa2;color:rgba(255,255,255,.87)}.mat-toolbar.mat-accent{background:#69f0ae;color:rgba(0,0,0,.87)}.mat-toolbar.mat-warn{background:#f44336;color:#fff}.mat-tooltip{background:rgba(97,97,97,.9)}.mat-snack-bar-container{background:#fafafa;color:rgba(0,0,0,.87)}.mat-simple-snackbar-action{color:inherit}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment