@esfaenza/core 15.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/components/back-top/back-top.component.d.ts +12 -0
- package/components/breadcrumb/breadcrumb.component.d.ts +15 -0
- package/components/components.module.d.ts +25 -0
- package/components/error/404/pagenotfound.component.d.ts +13 -0
- package/components/error/500/servererror.component.d.ts +17 -0
- package/components/error/Angular/angularerror.component.d.ts +24 -0
- package/components/external-page/external_pages.component.d.ts +21 -0
- package/components/index.d.ts +5 -0
- package/components/jace-login/jace-login.component.d.ts +7 -0
- package/components/navbar/modules-board/jace-modules-board.component.d.ts +13 -0
- package/components/navbar/navbar.component.d.ts +60 -0
- package/components/navbar/navbar.component.loc.d.ts +8 -0
- package/components/page/pages.component.d.ts +23 -0
- package/components/public-api.d.ts +13 -0
- package/components/redirecter/redirecter.component.d.ts +19 -0
- package/components/sidebar/sidebar.component.d.ts +39 -0
- package/components/sidebar/sidebar.component.service.d.ts +27 -0
- package/directives/directives.module.d.ts +9 -0
- package/directives/draggable/draggable.directive.d.ts +13 -0
- package/directives/index.d.ts +5 -0
- package/directives/public-api.d.ts +4 -0
- package/directives/slim-scroll/slim-scroll.directive.d.ts +15 -0
- package/directives/widget/widget.directive.d.ts +9 -0
- package/domain/index.d.ts +5 -0
- package/domain/models/core/classes/ApplicationMenu.d.ts +16 -0
- package/domain/models/core/classes/EnvOptions.d.ts +14 -0
- package/domain/models/jace/classes/AccountScope.d.ts +9 -0
- package/domain/models/jace/classes/ActiveModuleView.d.ts +15 -0
- package/domain/models/jace/classes/JaceAccount.d.ts +26 -0
- package/domain/models/jace/classes/JaceIdentity.d.ts +17 -0
- package/domain/models/jace/classes/JaceModule.d.ts +6 -0
- package/domain/models/jace/classes/JacePermission.d.ts +9 -0
- package/domain/models/jace/classes/JaceRole.d.ts +11 -0
- package/domain/models/jace/classes/User.d.ts +4 -0
- package/domain/public-api.d.ts +11 -0
- package/domain/tokens.d.ts +16 -0
- package/esm2020/components/back-top/back-top.component.mjs +43 -0
- package/esm2020/components/breadcrumb/breadcrumb.component.mjs +55 -0
- package/esm2020/components/components.module.mjs +74 -0
- package/esm2020/components/error/404/pagenotfound.component.mjs +27 -0
- package/esm2020/components/error/500/servererror.component.mjs +35 -0
- package/esm2020/components/error/Angular/angularerror.component.mjs +50 -0
- package/esm2020/components/esfaenza-core-components.mjs +5 -0
- package/esm2020/components/external-page/external_pages.component.mjs +46 -0
- package/esm2020/components/jace-login/jace-login.component.mjs +17 -0
- package/esm2020/components/navbar/modules-board/jace-modules-board.component.mjs +40 -0
- package/esm2020/components/navbar/navbar.component.loc.mjs +36 -0
- package/esm2020/components/navbar/navbar.component.mjs +179 -0
- package/esm2020/components/page/pages.component.mjs +57 -0
- package/esm2020/components/public-api.mjs +14 -0
- package/esm2020/components/redirecter/redirecter.component.mjs +53 -0
- package/esm2020/components/sidebar/sidebar.component.mjs +179 -0
- package/esm2020/components/sidebar/sidebar.component.service.mjs +58 -0
- package/esm2020/directives/directives.module.mjs +18 -0
- package/esm2020/directives/draggable/draggable.directive.mjs +48 -0
- package/esm2020/directives/esfaenza-core-directives.mjs +5 -0
- package/esm2020/directives/public-api.mjs +5 -0
- package/esm2020/directives/slim-scroll/slim-scroll.directive.mjs +40 -0
- package/esm2020/directives/widget/widget.directive.mjs +36 -0
- package/esm2020/domain/esfaenza-core-domain.mjs +5 -0
- package/esm2020/domain/models/core/classes/ApplicationMenu.mjs +26 -0
- package/esm2020/domain/models/core/classes/EnvOptions.mjs +4 -0
- package/esm2020/domain/models/jace/classes/AccountScope.mjs +8 -0
- package/esm2020/domain/models/jace/classes/ActiveModuleView.mjs +9 -0
- package/esm2020/domain/models/jace/classes/JaceAccount.mjs +5 -0
- package/esm2020/domain/models/jace/classes/JaceIdentity.mjs +16 -0
- package/esm2020/domain/models/jace/classes/JaceModule.mjs +3 -0
- package/esm2020/domain/models/jace/classes/JacePermission.mjs +3 -0
- package/esm2020/domain/models/jace/classes/JaceRole.mjs +3 -0
- package/esm2020/domain/models/jace/classes/User.mjs +3 -0
- package/esm2020/domain/public-api.mjs +12 -0
- package/esm2020/domain/tokens.mjs +11 -0
- package/esm2020/esfaenza-core.mjs +5 -0
- package/esm2020/helpers/classes/ResizeListener.mjs +38 -0
- package/esm2020/helpers/esfaenza-core-helpers.mjs +5 -0
- package/esm2020/helpers/public-api.mjs +2 -0
- package/esm2020/lib/app.component.mjs +26 -0
- package/esm2020/lib/core.module.mjs +227 -0
- package/esm2020/modules/classes/_base.module.mjs +27 -0
- package/esm2020/modules/classes/t_c.module.mjs +85 -0
- package/esm2020/modules/esfaenza-core-modules.mjs +5 -0
- package/esm2020/modules/public-api.mjs +3 -0
- package/esm2020/pipes/esfaenza-core-pipes.mjs +5 -0
- package/esm2020/pipes/included_in/included_in.pipe.mjs +17 -0
- package/esm2020/pipes/pipes.module.mjs +20 -0
- package/esm2020/pipes/public-api.mjs +7 -0
- package/esm2020/pipes/safe_html/safe_html.pipe.mjs +18 -0
- package/esm2020/pipes/safe_script/safe_script.pipe.mjs +18 -0
- package/esm2020/pipes/safe_style/safe_style.pipe.mjs +18 -0
- package/esm2020/pipes/safe_url/safe_url.pipe.mjs +18 -0
- package/esm2020/public-api.mjs +4 -0
- package/esm2020/services/classes/app.accesstoken.mjs +51 -0
- package/esm2020/services/classes/app.errorhandler.mjs +41 -0
- package/esm2020/services/classes/app.event.mjs +27 -0
- package/esm2020/services/classes/app.httpextensions.loc.mjs +15 -0
- package/esm2020/services/classes/app.httpextensions.mjs +90 -0
- package/esm2020/services/classes/app.routeguard.mjs +22 -0
- package/esm2020/services/classes/app.session.mjs +33 -0
- package/esm2020/services/classes/app.state.mjs +172 -0
- package/esm2020/services/classes/preferences/app.cache.persistor.mjs +94 -0
- package/esm2020/services/classes/preferences/app.preference.persistor.mjs +94 -0
- package/esm2020/services/esfaenza-core-services.mjs +5 -0
- package/esm2020/services/public-api.mjs +10 -0
- package/fesm2015/esfaenza-core-components.mjs +870 -0
- package/fesm2015/esfaenza-core-components.mjs.map +1 -0
- package/fesm2015/esfaenza-core-directives.mjs +138 -0
- package/fesm2015/esfaenza-core-directives.mjs.map +1 -0
- package/fesm2015/esfaenza-core-domain.mjs +99 -0
- package/fesm2015/esfaenza-core-domain.mjs.map +1 -0
- package/fesm2015/esfaenza-core-helpers.mjs +44 -0
- package/fesm2015/esfaenza-core-helpers.mjs.map +1 -0
- package/fesm2015/esfaenza-core-modules.mjs +112 -0
- package/fesm2015/esfaenza-core-modules.mjs.map +1 -0
- package/fesm2015/esfaenza-core-pipes.mjs +97 -0
- package/fesm2015/esfaenza-core-pipes.mjs.map +1 -0
- package/fesm2015/esfaenza-core-services.mjs +598 -0
- package/fesm2015/esfaenza-core-services.mjs.map +1 -0
- package/fesm2015/esfaenza-core.mjs +251 -0
- package/fesm2015/esfaenza-core.mjs.map +1 -0
- package/fesm2020/esfaenza-core-components.mjs +863 -0
- package/fesm2020/esfaenza-core-components.mjs.map +1 -0
- package/fesm2020/esfaenza-core-directives.mjs +138 -0
- package/fesm2020/esfaenza-core-directives.mjs.map +1 -0
- package/fesm2020/esfaenza-core-domain.mjs +98 -0
- package/fesm2020/esfaenza-core-domain.mjs.map +1 -0
- package/fesm2020/esfaenza-core-helpers.mjs +44 -0
- package/fesm2020/esfaenza-core-helpers.mjs.map +1 -0
- package/fesm2020/esfaenza-core-modules.mjs +112 -0
- package/fesm2020/esfaenza-core-modules.mjs.map +1 -0
- package/fesm2020/esfaenza-core-pipes.mjs +97 -0
- package/fesm2020/esfaenza-core-pipes.mjs.map +1 -0
- package/fesm2020/esfaenza-core-services.mjs +595 -0
- package/fesm2020/esfaenza-core-services.mjs.map +1 -0
- package/fesm2020/esfaenza-core.mjs +251 -0
- package/fesm2020/esfaenza-core.mjs.map +1 -0
- package/helpers/classes/ResizeListener.d.ts +12 -0
- package/helpers/index.d.ts +5 -0
- package/helpers/public-api.d.ts +1 -0
- package/index.d.ts +5 -0
- package/lib/app.component.d.ts +12 -0
- package/lib/core.module.d.ts +82 -0
- package/modules/classes/_base.module.d.ts +4 -0
- package/modules/classes/t_c.module.d.ts +19 -0
- package/modules/index.d.ts +5 -0
- package/modules/public-api.d.ts +2 -0
- package/package.json +115 -0
- package/pipes/included_in/included_in.pipe.d.ts +7 -0
- package/pipes/index.d.ts +5 -0
- package/pipes/pipes.module.d.ts +11 -0
- package/pipes/public-api.d.ts +6 -0
- package/pipes/safe_html/safe_html.pipe.d.ts +10 -0
- package/pipes/safe_script/safe_script.pipe.d.ts +10 -0
- package/pipes/safe_style/safe_style.pipe.d.ts +10 -0
- package/pipes/safe_url/safe_url.pipe.d.ts +10 -0
- package/public-api.d.ts +3 -0
- package/services/classes/app.accesstoken.d.ts +15 -0
- package/services/classes/app.errorhandler.d.ts +11 -0
- package/services/classes/app.event.d.ts +10 -0
- package/services/classes/app.httpextensions.d.ts +34 -0
- package/services/classes/app.httpextensions.loc.d.ts +8 -0
- package/services/classes/app.routeguard.d.ts +10 -0
- package/services/classes/app.session.d.ts +14 -0
- package/services/classes/app.state.d.ts +59 -0
- package/services/classes/preferences/app.cache.persistor.d.ts +25 -0
- package/services/classes/preferences/app.preference.persistor.d.ts +25 -0
- package/services/index.d.ts +5 -0
- package/services/public-api.d.ts +9 -0
- package/theme/initial.scss +48 -0
- package/theme/styles/_base.scss +257 -0
- package/theme/styles/_bootstrap-override.scss +1624 -0
- package/theme/styles/_font.scss +86 -0
- package/theme/styles/_fullcalendar-override.scss +86 -0
- package/theme/styles/_libs-override.scss +97 -0
- package/theme/styles/_material-override.scss +231 -0
- package/theme/styles/_mixins.scss +50 -0
- package/theme/styles/_preloader.scss +119 -0
- package/theme/styles/_project-override.scss +2383 -0
- package/theme/styles/_variables.scss +52 -0
- package/theme/styles/skins/_blue.scss +16 -0
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, ViewEncapsulation, LOCALE_ID, APP_INITIALIZER, ErrorHandler, NgModule } from '@angular/core';
|
|
3
|
+
import * as i1 from '@esfaenza/core/services';
|
|
4
|
+
import { SessionRetriever, ApplicationPreferencesPersistor, ApplicationCachePersistor, OutZoneEventPlugin, HTTPServiceExtensions, TokenService, APPErrorHandler } from '@esfaenza/core/services';
|
|
5
|
+
import * as i2 from '@angular/router';
|
|
6
|
+
import { RouterModule, NoPreloading, ROUTES } from '@angular/router';
|
|
7
|
+
import * as i3 from '@angular/common';
|
|
8
|
+
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
9
|
+
import { MAT_DATE_LOCALE, MAT_DATE_FORMATS } from '@angular/material/core';
|
|
10
|
+
import { EVENT_MANAGER_PLUGINS } from '@angular/platform-browser';
|
|
11
|
+
import { ServiceWorkerModule } from '@angular/service-worker';
|
|
12
|
+
import { HttpClientModule } from '@angular/common/http';
|
|
13
|
+
import '@angular/common/locales/global/it';
|
|
14
|
+
import { NGX_MAT_DATE_FORMATS, NgxMatDateAdapter } from '@angular-material-components/datetime-picker';
|
|
15
|
+
import { CookieService } from 'ngx-cookie-service';
|
|
16
|
+
import * as i15 from 'ngx-toastr';
|
|
17
|
+
import { ToastrModule } from 'ngx-toastr';
|
|
18
|
+
import 'widgster/widgster.js';
|
|
19
|
+
import * as i5 from '@esfaenza/localizations';
|
|
20
|
+
import { LocalizationModule, LocalizationMissingPolicy, LocalizationService, LOC_DEBUG_MODE } from '@esfaenza/localizations';
|
|
21
|
+
import * as i7 from '@esfaenza/httpservice';
|
|
22
|
+
import { HttpserviceModule, HttpServiceExtensions, HTTPService, HTTP_DEBUG_MODE, HTTP_INVALIDATION } from '@esfaenza/httpservice';
|
|
23
|
+
import * as i8 from '@esfaenza/signalr-notifications';
|
|
24
|
+
import { SignalrNotificationsModule, SGR_DEBUG_MODE, BaseMessageService } from '@esfaenza/signalr-notifications';
|
|
25
|
+
import * as i3$1 from '@esfaenza/forms-and-validations';
|
|
26
|
+
import { FormsAndValidationsModule, NgxExpandedDayJsDateAdapter } from '@esfaenza/forms-and-validations';
|
|
27
|
+
import * as i6 from '@esfaenza/access-control';
|
|
28
|
+
import { AccessControlModule, AccessControlService, ACC_DEBUG_MODE } from '@esfaenza/access-control';
|
|
29
|
+
import * as i10 from '@esfaenza/es-charts';
|
|
30
|
+
import { EsChartsModule, ESC_DEBUG_MODE, BaseAdapter } from '@esfaenza/es-charts';
|
|
31
|
+
import * as i9 from '@esfaenza/preferences';
|
|
32
|
+
import { PreferencesModule, PREF_DEBUG_MODE } from '@esfaenza/preferences';
|
|
33
|
+
import * as i4 from '@esfaenza/extensions';
|
|
34
|
+
import { ExtensionsModule, EXT_DEBUG_MODE } from '@esfaenza/extensions';
|
|
35
|
+
import { CurrencyMaskModule } from '@esfaenza/ngx-currency-mask';
|
|
36
|
+
import { EsMatrixValuesModule } from '@esfaenza/matrix-values';
|
|
37
|
+
import { EsQueryBuilderModule } from '@esfaenza/query-builder';
|
|
38
|
+
import * as i17 from '@esfaenza/ngx-contextmenu';
|
|
39
|
+
import { ContextMenuModule } from '@esfaenza/ngx-contextmenu';
|
|
40
|
+
import { EsTagChooserModule } from '@esfaenza/tag-chooser';
|
|
41
|
+
import { EsParametersModule } from '@esfaenza/parameters';
|
|
42
|
+
import * as i18 from '@esfaenza/ngx-dragula';
|
|
43
|
+
import { DragulaModule } from '@esfaenza/ngx-dragula';
|
|
44
|
+
import { EsGertrudeModule } from '@esfaenza/gertrude';
|
|
45
|
+
import * as i2$1 from '@esfaenza/es-table';
|
|
46
|
+
import { EsTableModule } from '@esfaenza/es-table';
|
|
47
|
+
import { EsWizardModule } from '@esfaenza/wizard';
|
|
48
|
+
import { EsCronModule } from '@esfaenza/cron';
|
|
49
|
+
import { ExternalPagesComponent, PagesComponent, RedirecterComponent, JaceLoginComponent, ServerErrorComponent, AngularErrorComponent, PageNotFoundComponent, ComponentsModule } from '@esfaenza/core/components';
|
|
50
|
+
import { REDIRECT_MAP, MENU_LOCALIZATION, MENU } from '@esfaenza/core/domain';
|
|
51
|
+
export * from '@esfaenza/core/domain';
|
|
52
|
+
import { TemplateCommon } from '@esfaenza/core/modules';
|
|
53
|
+
import { catchError, tap, switchMap } from 'rxjs/operators';
|
|
54
|
+
import { forkJoin, of } from 'rxjs';
|
|
55
|
+
import * as i13 from 'ngx-bootstrap/progressbar';
|
|
56
|
+
import { ProgressbarModule } from 'ngx-bootstrap/progressbar';
|
|
57
|
+
import * as i16 from 'ngx-bootstrap/timepicker';
|
|
58
|
+
import { TimepickerModule } from 'ngx-bootstrap/timepicker';
|
|
59
|
+
import * as i14 from 'ngx-bootstrap/dropdown';
|
|
60
|
+
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
|
|
61
|
+
import * as i11 from 'ngx-bootstrap/tooltip';
|
|
62
|
+
import { TooltipModule } from 'ngx-bootstrap/tooltip';
|
|
63
|
+
import * as i12 from 'ngx-bootstrap/modal';
|
|
64
|
+
import { ModalModule } from 'ngx-bootstrap/modal';
|
|
65
|
+
|
|
66
|
+
// Angular
|
|
67
|
+
class AppComponent {
|
|
68
|
+
constructor(bts, _state, router) {
|
|
69
|
+
this.bts = bts;
|
|
70
|
+
this._state = _state;
|
|
71
|
+
this.router = router;
|
|
72
|
+
this.snows = [];
|
|
73
|
+
if (this._state.christmasTime)
|
|
74
|
+
for (let i = 0; i < 400; i++)
|
|
75
|
+
this.snows.push(i);
|
|
76
|
+
if (!this.bts.accountScope)
|
|
77
|
+
this.router.navigate(["login", { fromUrl: this.router.url }]);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
AppComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AppComponent, deps: [{ token: i1.TokenService }, { token: i1.AppState }, { token: i2.Router }], target: i0.ɵɵFactoryTarget.Component });
|
|
81
|
+
AppComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AppComponent, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: [".table-borderless>tbody>tr>td,.table-borderless>tbody>tr>th,.table-borderless>tfoot>tr>td,.table-borderless>tfoot>tr>th,.table-borderless>thead>tr>td,.table-borderless>thead>tr>th{border:none}.table,.table-responsive{margin-bottom:5px}a:hover,a:focus{text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}*{outline:none!important}.modal-title{width:calc(100% - 20px)}.progress{height:20px}.progress.progress-primary[value]::-webkit-progress-value{background-color:#024a88}.progress.progress-primary[value]::-moz-progress-bar{background-color:#024a88}.progress.progress-primary[value]::-ms-fill{background-color:#024a88}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#024a88}}.progress.progress-info[value]::-webkit-progress-value{background-color:#248dad}.progress.progress-info[value]::-moz-progress-bar{background-color:#248dad}.progress.progress-info[value]::-ms-fill{background-color:#248dad}@media screen and (min-width: 0\\fffd){.progress.progress-info .progress-bar{background-color:#248dad}}.progress.progress-danger[value]::-webkit-progress-value{background-color:#bf1725}.progress.progress-danger[value]::-moz-progress-bar{background-color:#bf1725}.progress.progress-danger[value]::-ms-fill{background-color:#bf1725}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#bf1725}}.progress.progress-success[value]::-webkit-progress-value{background-color:#2d922d}.progress.progress-success[value]::-moz-progress-bar{background-color:#2d922d}.progress.progress-success[value]::-ms-fill{background-color:#2d922d}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#2d922d}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#f79a17}.progress.progress-warning[value]::-moz-progress-bar{background-color:#f79a17}.progress.progress-warning[value]::-ms-fill{background-color:#f79a17}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#f79a17}}.progress[value]::-moz-progress-bar{border-radius:0}.progress[value]::-webkit-progress-value{border-radius:0}.progress[value=\"100\"]::-moz-progress-bar{border-radius:0}.progress[value=\"100\"]::-webkit-progress-value{border-radius:0}.progress-xs{height:7px}.progress-sm{height:10px}.progress-md{height:13px}.progress-bar-info-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem;background-color:#5bc0de!important}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.1422;transform:translate(71.6434vw,-10px) scale(.5732);animation:fall-1 16s -6s linear infinite}@keyframes fall-1{35.946%{transform:translate(77.6749vw,35.946vh) scale(.5732)}to{transform:translate(74.65915vw,100vh) scale(.5732)}}.snow:nth-child(2){opacity:1.0244;transform:translate(54.1393vw,-10px) scale(.3454);animation:fall-2 30s -15s linear infinite}@keyframes fall-2{37.619%{transform:translate(49.4259vw,37.619vh) scale(.3454)}to{transform:translate(51.7826vw,100vh) scale(.3454)}}.snow:nth-child(3){opacity:.9616;transform:translate(5.4907vw,-10px) scale(.4515);animation:fall-3 28s -16s linear infinite}@keyframes fall-3{33.402%{transform:translate(3.9076vw,33.402vh) scale(.4515)}to{transform:translate(4.69915vw,100vh) scale(.4515)}}.snow:nth-child(4){opacity:.7768;transform:translate(79.3714vw,-10px) scale(.5461);animation:fall-4 21s -25s linear infinite}@keyframes fall-4{78.781%{transform:translate(82.2855vw,78.781vh) scale(.5461)}to{transform:translate(80.82845vw,100vh) scale(.5461)}}.snow:nth-child(5){opacity:.6998;transform:translate(77.3678vw,-10px) scale(.4506);animation:fall-5 12s -5s linear infinite}@keyframes fall-5{79.343%{transform:translate(80.4328vw,79.343vh) scale(.4506)}to{transform:translate(78.9003vw,100vh) scale(.4506)}}.snow:nth-child(6){opacity:1.8586;transform:translate(61.0581vw,-10px) scale(.0848);animation:fall-6 15s -29s linear infinite}@keyframes fall-6{40.025%{transform:translate(51.3361vw,40.025vh) scale(.0848)}to{transform:translate(56.1971vw,100vh) scale(.0848)}}.snow:nth-child(7){opacity:1.062;transform:translate(6.6669vw,-10px) scale(.3276);animation:fall-7 21s -17s linear infinite}@keyframes fall-7{55.849%{transform:translate(3.1655vw,55.849vh) scale(.3276)}to{transform:translate(4.9162vw,100vh) scale(.3276)}}.snow:nth-child(8){opacity:1.504;transform:translate(8.5907vw,-10px) scale(.682);animation:fall-8 20s -5s linear infinite}@keyframes fall-8{45.12%{transform:translate(-1.3783vw,45.12vh) scale(.682)}to{transform:translate(3.6062vw,100vh) scale(.682)}}.snow:nth-child(9){opacity:.1358;transform:translate(26.602vw,-10px) scale(.8538);animation:fall-9 10s -18s linear infinite}@keyframes fall-9{44.415%{transform:translate(27.852vw,44.415vh) scale(.8538)}to{transform:translate(27.227vw,100vh) scale(.8538)}}.snow:nth-child(10){opacity:1.23;transform:translate(52.644vw,-10px) scale(.8293);animation:fall-10 14s -20s linear infinite}@keyframes fall-10{75.384%{transform:translate(51.5939vw,75.384vh) scale(.8293)}to{transform:translate(52.11895vw,100vh) scale(.8293)}}.snow:nth-child(11){opacity:.3992;transform:translate(35.8239vw,-10px) scale(.693);animation:fall-11 23s -11s linear infinite}@keyframes fall-11{72.432%{transform:translate(40.6621vw,72.432vh) scale(.693)}to{transform:translate(38.243vw,100vh) scale(.693)}}.snow:nth-child(12){opacity:.141;transform:translate(92.0868vw,-10px) scale(.6009);animation:fall-12 11s -1s linear infinite}@keyframes fall-12{60.313%{transform:translate(98.2125vw,60.313vh) scale(.6009)}to{transform:translate(95.14965vw,100vh) scale(.6009)}}.snow:nth-child(13){opacity:1.5768;transform:translate(42.6729vw,-10px) scale(.7885);animation:fall-13 17s -12s linear infinite}@keyframes fall-13{39.008%{transform:translate(40.7591vw,39.008vh) scale(.7885)}to{transform:translate(41.716vw,100vh) scale(.7885)}}.snow:nth-child(14){opacity:.0474;transform:translate(41.1808vw,-10px) scale(.5955);animation:fall-14 13s -9s linear infinite}@keyframes fall-14{39.289%{transform:translate(43.6018vw,39.289vh) scale(.5955)}to{transform:translate(42.3913vw,100vh) scale(.5955)}}.snow:nth-child(15){opacity:.7622;transform:translate(68.3525vw,-10px) scale(.8199);animation:fall-15 20s -12s linear infinite}@keyframes fall-15{40.539%{transform:translate(62.1974vw,40.539vh) scale(.8199)}to{transform:translate(65.27495vw,100vh) scale(.8199)}}.snow:nth-child(16){opacity:1.8806;transform:translate(10.5307vw,-10px) scale(.9657);animation:fall-16 17s -14s linear infinite}@keyframes fall-16{36.983%{transform:translate(.6926vw,36.983vh) scale(.9657)}to{transform:translate(5.61165vw,100vh) scale(.9657)}}.snow:nth-child(17){opacity:.4934;transform:translate(5.1112vw,-10px) scale(.8495);animation:fall-17 16s -13s linear infinite}@keyframes fall-17{36.919%{transform:translate(1.3636vw,36.919vh) scale(.8495)}to{transform:translate(3.2374vw,100vh) scale(.8495)}}.snow:nth-child(18){opacity:1.5494;transform:translate(6.5943vw,-10px) scale(.7015);animation:fall-18 24s -26s linear infinite}@keyframes fall-18{78.259%{transform:translate(.8025vw,78.259vh) scale(.7015)}to{transform:translate(3.6984vw,100vh) scale(.7015)}}.snow:nth-child(19){opacity:.606;transform:translate(65.663vw,-10px) scale(.6769);animation:fall-19 15s -12s linear infinite}@keyframes fall-19{69.913%{transform:translate(57.7016vw,69.913vh) scale(.6769)}to{transform:translate(61.6823vw,100vh) scale(.6769)}}.snow:nth-child(20){opacity:1.052;transform:translate(44.4778vw,-10px) scale(.3244);animation:fall-20 25s -30s linear infinite}@keyframes fall-20{62.617%{transform:translate(49.7977vw,62.617vh) scale(.3244)}to{transform:translate(47.13775vw,100vh) scale(.3244)}}.snow:nth-child(21){opacity:.3964;transform:translate(79.2737vw,-10px) scale(.2605);animation:fall-21 29s -17s linear infinite}@keyframes fall-21{75.193%{transform:translate(85.4067vw,75.193vh) scale(.2605)}to{transform:translate(82.3402vw,100vh) scale(.2605)}}.snow:nth-child(22){opacity:1.9736;transform:translate(70.6281vw,-10px) scale(.6275);animation:fall-22 19s -11s linear infinite}@keyframes fall-22{31.502%{transform:translate(71.3307vw,31.502vh) scale(.6275)}to{transform:translate(70.9794vw,100vh) scale(.6275)}}.snow:nth-child(23){opacity:.3406;transform:translate(68.5182vw,-10px) scale(.3862);animation:fall-23 17s -17s linear infinite}@keyframes fall-23{67.008%{transform:translate(59.611vw,67.008vh) scale(.3862)}to{transform:translate(64.0646vw,100vh) scale(.3862)}}.snow:nth-child(24){opacity:1.5264;transform:translate(42.8285vw,-10px) scale(.6394);animation:fall-24 30s -18s linear infinite}@keyframes fall-24{54.019%{transform:translate(50.1333vw,54.019vh) scale(.6394)}to{transform:translate(46.4809vw,100vh) scale(.6394)}}.snow:nth-child(25){opacity:.2466;transform:translate(57.461vw,-10px) scale(.3393);animation:fall-25 21s -1s linear infinite}@keyframes fall-25{62.651%{transform:translate(65.8521vw,62.651vh) scale(.3393)}to{transform:translate(61.65655vw,100vh) scale(.3393)}}.snow:nth-child(26){opacity:1.975;transform:translate(65.3912vw,-10px) scale(.6114);animation:fall-26 17s -14s linear infinite}@keyframes fall-26{78.836%{transform:translate(70.3154vw,78.836vh) scale(.6114)}to{transform:translate(67.8533vw,100vh) scale(.6114)}}.snow:nth-child(27){opacity:.081;transform:translate(63.6059vw,-10px) scale(.2217);animation:fall-27 30s -28s linear infinite}@keyframes fall-27{63.008%{transform:translate(59.2593vw,63.008vh) scale(.2217)}to{transform:translate(61.4326vw,100vh) scale(.2217)}}.snow:nth-child(28){opacity:1.5086;transform:translate(82.0673vw,-10px) scale(.8177);animation:fall-28 10s -21s linear infinite}@keyframes fall-28{78.067%{transform:translate(75.6375vw,78.067vh) scale(.8177)}to{transform:translate(78.8524vw,100vh) scale(.8177)}}.snow:nth-child(29){opacity:1.5382;transform:translate(70.9988vw,-10px) scale(.87);animation:fall-29 10s -4s linear infinite}@keyframes fall-29{49.482%{transform:translate(67.2499vw,49.482vh) scale(.87)}to{transform:translate(69.12435vw,100vh) scale(.87)}}.snow:nth-child(30){opacity:1.1258;transform:translate(81.6621vw,-10px) scale(.5545);animation:fall-30 26s -27s linear infinite}@keyframes fall-30{57.133%{transform:translate(72.0628vw,57.133vh) scale(.5545)}to{transform:translate(76.86245vw,100vh) scale(.5545)}}.snow:nth-child(31){opacity:.0242;transform:translate(70.5455vw,-10px) scale(.0637);animation:fall-31 25s -4s linear infinite}@keyframes fall-31{30.852%{transform:translate(69.1872vw,30.852vh) scale(.0637)}to{transform:translate(69.86635vw,100vh) scale(.0637)}}.snow:nth-child(32){opacity:1.3204;transform:translate(15.3677vw,-10px) scale(.963);animation:fall-32 14s -13s linear infinite}@keyframes fall-32{73.698%{transform:translate(20.7592vw,73.698vh) scale(.963)}to{transform:translate(18.06345vw,100vh) scale(.963)}}.snow:nth-child(33){opacity:.4396;transform:translate(30.7896vw,-10px) scale(.1713);animation:fall-33 25s -12s linear infinite}@keyframes fall-33{53.897%{transform:translate(21.9518vw,53.897vh) scale(.1713)}to{transform:translate(26.3707vw,100vh) scale(.1713)}}.snow:nth-child(34){opacity:1.8286;transform:translate(31.1773vw,-10px) scale(.1034);animation:fall-34 30s -24s linear infinite}@keyframes fall-34{39.924%{transform:translate(26.6174vw,39.924vh) scale(.1034)}to{transform:translate(28.89735vw,100vh) scale(.1034)}}.snow:nth-child(35){opacity:1.2952;transform:translate(32.8848vw,-10px) scale(.4641);animation:fall-35 20s -18s linear infinite}@keyframes fall-35{74.015%{transform:translate(32.7026vw,74.015vh) scale(.4641)}to{transform:translate(32.7937vw,100vh) scale(.4641)}}.snow:nth-child(36){opacity:1.4648;transform:translate(48.2216vw,-10px) scale(.4675);animation:fall-36 27s -16s linear infinite}@keyframes fall-36{76.163%{transform:translate(50.3527vw,76.163vh) scale(.4675)}to{transform:translate(49.28715vw,100vh) scale(.4675)}}.snow:nth-child(37){opacity:.2474;transform:translate(34.8917vw,-10px) scale(.0227);animation:fall-37 11s -23s linear infinite}@keyframes fall-37{66.117%{transform:translate(42.9499vw,66.117vh) scale(.0227)}to{transform:translate(38.9208vw,100vh) scale(.0227)}}.snow:nth-child(38){opacity:1.5346;transform:translate(14.3169vw,-10px) scale(.6462);animation:fall-38 11s -21s linear infinite}@keyframes fall-38{51.143%{transform:translate(8.0507vw,51.143vh) scale(.6462)}to{transform:translate(11.1838vw,100vh) scale(.6462)}}.snow:nth-child(39){opacity:1.515;transform:translate(26.2643vw,-10px) scale(.1258);animation:fall-39 24s -29s linear infinite}@keyframes fall-39{43.875%{transform:translate(25.1153vw,43.875vh) scale(.1258)}to{transform:translate(25.6898vw,100vh) scale(.1258)}}.snow:nth-child(40){opacity:1.9642;transform:translate(29.9858vw,-10px) scale(.4286);animation:fall-40 19s -28s linear infinite}@keyframes fall-40{38.356%{transform:translate(22.2629vw,38.356vh) scale(.4286)}to{transform:translate(26.12435vw,100vh) scale(.4286)}}.snow:nth-child(41){opacity:.558;transform:translate(23.3663vw,-10px) scale(.9312);animation:fall-41 22s -11s linear infinite}@keyframes fall-41{39.172%{transform:translate(17.075vw,39.172vh) scale(.9312)}to{transform:translate(20.22065vw,100vh) scale(.9312)}}.snow:nth-child(42){opacity:1.7612;transform:translate(11.4759vw,-10px) scale(.3312);animation:fall-42 29s -7s linear infinite}@keyframes fall-42{41.415%{transform:translate(9.6929vw,41.415vh) scale(.3312)}to{transform:translate(10.5844vw,100vh) scale(.3312)}}.snow:nth-child(43){opacity:.0164;transform:translate(31.1813vw,-10px) scale(.172);animation:fall-43 28s -17s linear infinite}@keyframes fall-43{73.491%{transform:translate(31.9452vw,73.491vh) scale(.172)}to{transform:translate(31.56325vw,100vh) scale(.172)}}.snow:nth-child(44){opacity:.2618;transform:translate(20.1179vw,-10px) scale(.5314);animation:fall-44 21s -6s linear infinite}@keyframes fall-44{68.002%{transform:translate(22.5385vw,68.002vh) scale(.5314)}to{transform:translate(21.3282vw,100vh) scale(.5314)}}.snow:nth-child(45){opacity:1.7884;transform:translate(42.1831vw,-10px) scale(.1618);animation:fall-45 14s -15s linear infinite}@keyframes fall-45{30.458%{transform:translate(47.9003vw,30.458vh) scale(.1618)}to{transform:translate(45.0417vw,100vh) scale(.1618)}}.snow:nth-child(46){opacity:.5458;transform:translate(25.2875vw,-10px) scale(.4834);animation:fall-46 22s -2s linear infinite}@keyframes fall-46{65.977%{transform:translate(27.4759vw,65.977vh) scale(.4834)}to{transform:translate(26.3817vw,100vh) scale(.4834)}}.snow:nth-child(47){opacity:1.371;transform:translate(6.167vw,-10px) scale(.4454);animation:fall-47 24s -21s linear infinite}@keyframes fall-47{58.509%{transform:translate(13.3389vw,58.509vh) scale(.4454)}to{transform:translate(9.75295vw,100vh) scale(.4454)}}.snow:nth-child(48){opacity:.2914;transform:translate(28.7889vw,-10px) scale(.6064);animation:fall-48 17s -4s linear infinite}@keyframes fall-48{43.869%{transform:translate(32.4225vw,43.869vh) scale(.6064)}to{transform:translate(30.6057vw,100vh) scale(.6064)}}.snow:nth-child(49){opacity:1.5962;transform:translate(78.1663vw,-10px) scale(.7341);animation:fall-49 17s -20s linear infinite}@keyframes fall-49{40.957%{transform:translate(73.9424vw,40.957vh) scale(.7341)}to{transform:translate(76.05435vw,100vh) scale(.7341)}}.snow:nth-child(50){opacity:1.93;transform:translate(38.5832vw,-10px) scale(.6427);animation:fall-50 20s -3s linear infinite}@keyframes fall-50{72.783%{transform:translate(44.2553vw,72.783vh) scale(.6427)}to{transform:translate(41.41925vw,100vh) scale(.6427)}}.snow:nth-child(51){opacity:.9748;transform:translate(44.031vw,-10px) scale(.06);animation:fall-51 29s -8s linear infinite}@keyframes fall-51{64.999%{transform:translate(46.8106vw,64.999vh) scale(.06)}to{transform:translate(45.4208vw,100vh) scale(.06)}}.snow:nth-child(52){opacity:.086;transform:translate(94.3972vw,-10px) scale(.0143);animation:fall-52 13s -16s linear infinite}@keyframes fall-52{57.083%{transform:translate(101.6535vw,57.083vh) scale(.0143)}to{transform:translate(98.02535vw,100vh) scale(.0143)}}.snow:nth-child(53){opacity:1.5642;transform:translate(10.3505vw,-10px) scale(.8492);animation:fall-53 14s -26s linear infinite}@keyframes fall-53{35.582%{transform:translate(5.5327vw,35.582vh) scale(.8492)}to{transform:translate(7.9416vw,100vh) scale(.8492)}}.snow:nth-child(54){opacity:1.9038;transform:translate(37.0359vw,-10px) scale(.4111);animation:fall-54 25s -17s linear infinite}@keyframes fall-54{69.338%{transform:translate(45.1761vw,69.338vh) scale(.4111)}to{transform:translate(41.106vw,100vh) scale(.4111)}}.snow:nth-child(55){opacity:.8624;transform:translate(51.3444vw,-10px) scale(.1606);animation:fall-55 12s -17s linear infinite}@keyframes fall-55{49.156%{transform:translate(49.6882vw,49.156vh) scale(.1606)}to{transform:translate(50.5163vw,100vh) scale(.1606)}}.snow:nth-child(56){opacity:1.3884;transform:translate(49.192vw,-10px) scale(.1584);animation:fall-56 23s -10s linear infinite}@keyframes fall-56{71.885%{transform:translate(54.0529vw,71.885vh) scale(.1584)}to{transform:translate(51.62245vw,100vh) scale(.1584)}}.snow:nth-child(57){opacity:.0418;transform:translate(16.4246vw,-10px) scale(.1883);animation:fall-57 10s -19s linear infinite}@keyframes fall-57{58.956%{transform:translate(18.6965vw,58.956vh) scale(.1883)}to{transform:translate(17.56055vw,100vh) scale(.1883)}}.snow:nth-child(58){opacity:1.4228;transform:translate(78.5196vw,-10px) scale(.8515);animation:fall-58 14s -4s linear infinite}@keyframes fall-58{53.895%{transform:translate(77.3597vw,53.895vh) scale(.8515)}to{transform:translate(77.93965vw,100vh) scale(.8515)}}.snow:nth-child(59){opacity:.607;transform:translate(42.2719vw,-10px) scale(.9631);animation:fall-59 26s -13s linear infinite}@keyframes fall-59{60.406%{transform:translate(51.6601vw,60.406vh) scale(.9631)}to{transform:translate(46.966vw,100vh) scale(.9631)}}.snow:nth-child(60){opacity:.2604;transform:translate(81.0467vw,-10px) scale(.7343);animation:fall-60 30s -28s linear infinite}@keyframes fall-60{41.209%{transform:translate(76.2705vw,41.209vh) scale(.7343)}to{transform:translate(78.6586vw,100vh) scale(.7343)}}.snow:nth-child(61){opacity:1.3106;transform:translate(92.8113vw,-10px) scale(.5716);animation:fall-61 21s -21s linear infinite}@keyframes fall-61{47.518%{transform:translate(99.4538vw,47.518vh) scale(.5716)}to{transform:translate(96.13255vw,100vh) scale(.5716)}}.snow:nth-child(62){opacity:.9334;transform:translate(29.4735vw,-10px) scale(.2447);animation:fall-62 24s -9s linear infinite}@keyframes fall-62{40.37%{transform:translate(27.7048vw,40.37vh) scale(.2447)}to{transform:translate(28.58915vw,100vh) scale(.2447)}}.snow:nth-child(63){opacity:.1324;transform:translate(83.0656vw,-10px) scale(.9608);animation:fall-63 22s -23s linear infinite}@keyframes fall-63{61.429%{transform:translate(85.2469vw,61.429vh) scale(.9608)}to{transform:translate(84.15625vw,100vh) scale(.9608)}}.snow:nth-child(64){opacity:.1796;transform:translate(74.8342vw,-10px) scale(.2941);animation:fall-64 12s -14s linear infinite}@keyframes fall-64{39.853%{transform:translate(80.2738vw,39.853vh) scale(.2941)}to{transform:translate(77.554vw,100vh) scale(.2941)}}.snow:nth-child(65){opacity:.2654;transform:translate(85.5372vw,-10px) scale(.6046);animation:fall-65 26s -15s linear infinite}@keyframes fall-65{56.313%{transform:translate(89.5249vw,56.313vh) scale(.6046)}to{transform:translate(87.53105vw,100vh) scale(.6046)}}.snow:nth-child(66){opacity:.3202;transform:translate(57.0736vw,-10px) scale(.2334);animation:fall-66 19s -20s linear infinite}@keyframes fall-66{77.9%{transform:translate(66.5018vw,77.9vh) scale(.2334)}to{transform:translate(61.7877vw,100vh) scale(.2334)}}.snow:nth-child(67){opacity:.0258;transform:translate(33.2885vw,-10px) scale(.4469);animation:fall-67 21s -7s linear infinite}@keyframes fall-67{70.917%{transform:translate(40.6778vw,70.917vh) scale(.4469)}to{transform:translate(36.98315vw,100vh) scale(.4469)}}.snow:nth-child(68){opacity:.4314;transform:translate(20.7782vw,-10px) scale(.6082);animation:fall-68 14s -7s linear infinite}@keyframes fall-68{56.659%{transform:translate(20.2424vw,56.659vh) scale(.6082)}to{transform:translate(20.5103vw,100vh) scale(.6082)}}.snow:nth-child(69){opacity:.263;transform:translate(12.6426vw,-10px) scale(.3885);animation:fall-69 23s -6s linear infinite}@keyframes fall-69{76.284%{transform:translate(22.4779vw,76.284vh) scale(.3885)}to{transform:translate(17.56025vw,100vh) scale(.3885)}}.snow:nth-child(70){opacity:1.596;transform:translate(34.3251vw,-10px) scale(.5736);animation:fall-70 24s -3s linear infinite}@keyframes fall-70{76.705%{transform:translate(26.7592vw,76.705vh) scale(.5736)}to{transform:translate(30.54215vw,100vh) scale(.5736)}}.snow:nth-child(71){opacity:.8346;transform:translate(44.8212vw,-10px) scale(.4398);animation:fall-71 21s -28s linear infinite}@keyframes fall-71{57.348%{transform:translate(38.0853vw,57.348vh) scale(.4398)}to{transform:translate(41.45325vw,100vh) scale(.4398)}}.snow:nth-child(72){opacity:1.2894;transform:translate(92.5287vw,-10px) scale(.0185);animation:fall-72 30s -24s linear infinite}@keyframes fall-72{39.794%{transform:translate(95.0094vw,39.794vh) scale(.0185)}to{transform:translate(93.76905vw,100vh) scale(.0185)}}.snow:nth-child(73){opacity:1.7652;transform:translate(79.0852vw,-10px) scale(.6178);animation:fall-73 16s -2s linear infinite}@keyframes fall-73{37.12%{transform:translate(71.5749vw,37.12vh) scale(.6178)}to{transform:translate(75.33005vw,100vh) scale(.6178)}}.snow:nth-child(74){opacity:.4422;transform:translate(31.2424vw,-10px) scale(.7903);animation:fall-74 10s -12s linear infinite}@keyframes fall-74{72.943%{transform:translate(28.5623vw,72.943vh) scale(.7903)}to{transform:translate(29.90235vw,100vh) scale(.7903)}}.snow:nth-child(75){opacity:.102;transform:translate(21.2807vw,-10px) scale(.7084);animation:fall-75 11s -10s linear infinite}@keyframes fall-75{45.042%{transform:translate(23.4443vw,45.042vh) scale(.7084)}to{transform:translate(22.3625vw,100vh) scale(.7084)}}.snow:nth-child(76){opacity:1.8896;transform:translate(14.1432vw,-10px) scale(.0691);animation:fall-76 15s -10s linear infinite}@keyframes fall-76{32.422%{transform:translate(6.5436vw,32.422vh) scale(.0691)}to{transform:translate(10.3434vw,100vh) scale(.0691)}}.snow:nth-child(77){opacity:.5194;transform:translate(50.8497vw,-10px) scale(.5781);animation:fall-77 14s -4s linear infinite}@keyframes fall-77{60.737%{transform:translate(49.3569vw,60.737vh) scale(.5781)}to{transform:translate(50.1033vw,100vh) scale(.5781)}}.snow:nth-child(78){opacity:1.7646;transform:translate(1.046vw,-10px) scale(.6624);animation:fall-78 20s -18s linear infinite}@keyframes fall-78{56.066%{transform:translate(3.8517vw,56.066vh) scale(.6624)}to{transform:translate(2.44885vw,100vh) scale(.6624)}}.snow:nth-child(79){opacity:1.172;transform:translate(60.6533vw,-10px) scale(.9303);animation:fall-79 29s -19s linear infinite}@keyframes fall-79{73.418%{transform:translate(51.4397vw,73.418vh) scale(.9303)}to{transform:translate(56.0465vw,100vh) scale(.9303)}}.snow:nth-child(80){opacity:1.0538;transform:translate(75.7657vw,-10px) scale(.1584);animation:fall-80 18s -13s linear infinite}@keyframes fall-80{57.977%{transform:translate(83.0584vw,57.977vh) scale(.1584)}to{transform:translate(79.41205vw,100vh) scale(.1584)}}.snow:nth-child(81){opacity:.326;transform:translate(13.0063vw,-10px) scale(.6104);animation:fall-81 11s -16s linear infinite}@keyframes fall-81{77.437%{transform:translate(18.5988vw,77.437vh) scale(.6104)}to{transform:translate(15.80255vw,100vh) scale(.6104)}}.snow:nth-child(82){opacity:1.9344;transform:translate(87.8186vw,-10px) scale(.025);animation:fall-82 10s -22s linear infinite}@keyframes fall-82{61.313%{transform:translate(82.2492vw,61.313vh) scale(.025)}to{transform:translate(85.0339vw,100vh) scale(.025)}}.snow:nth-child(83){opacity:1.613;transform:translate(52.4895vw,-10px) scale(.451);animation:fall-83 29s -3s linear infinite}@keyframes fall-83{51.311%{transform:translate(50.382vw,51.311vh) scale(.451)}to{transform:translate(51.43575vw,100vh) scale(.451)}}.snow:nth-child(84){opacity:1.8782;transform:translate(7.6014vw,-10px) scale(.3417);animation:fall-84 15s -24s linear infinite}@keyframes fall-84{61.357%{transform:translate(17.5018vw,61.357vh) scale(.3417)}to{transform:translate(12.5516vw,100vh) scale(.3417)}}.snow:nth-child(85){opacity:.378;transform:translate(23.3799vw,-10px) scale(.7237);animation:fall-85 20s -12s linear infinite}@keyframes fall-85{57.096%{transform:translate(16.9109vw,57.096vh) scale(.7237)}to{transform:translate(20.1454vw,100vh) scale(.7237)}}.snow:nth-child(86){opacity:1.3038;transform:translate(.3404vw,-10px) scale(.6132);animation:fall-86 25s -28s linear infinite}@keyframes fall-86{65.935%{transform:translate(9.2809vw,65.935vh) scale(.6132)}to{transform:translate(4.81065vw,100vh) scale(.6132)}}.snow:nth-child(87){opacity:1.8594;transform:translate(6.4097vw,-10px) scale(.5874);animation:fall-87 24s -20s linear infinite}@keyframes fall-87{48.771%{transform:translate(9.9787vw,48.771vh) scale(.5874)}to{transform:translate(8.1942vw,100vh) scale(.5874)}}.snow:nth-child(88){opacity:1.0708;transform:translate(49.8495vw,-10px) scale(.3304);animation:fall-88 12s -29s linear infinite}@keyframes fall-88{35.442%{transform:translate(58.6514vw,35.442vh) scale(.3304)}to{transform:translate(54.25045vw,100vh) scale(.3304)}}.snow:nth-child(89){opacity:.5432;transform:translate(59.4359vw,-10px) scale(.7063);animation:fall-89 14s -17s linear infinite}@keyframes fall-89{75.042%{transform:translate(60.2912vw,75.042vh) scale(.7063)}to{transform:translate(59.86355vw,100vh) scale(.7063)}}.snow:nth-child(90){opacity:.9534;transform:translate(10.5354vw,-10px) scale(.2934);animation:fall-90 24s -2s linear infinite}@keyframes fall-90{77.147%{transform:translate(19.105vw,77.147vh) scale(.2934)}to{transform:translate(14.8202vw,100vh) scale(.2934)}}.snow:nth-child(91){opacity:.4116;transform:translate(62.0873vw,-10px) scale(.0673);animation:fall-91 20s -27s linear infinite}@keyframes fall-91{37.872%{transform:translate(61.6052vw,37.872vh) scale(.0673)}to{transform:translate(61.84625vw,100vh) scale(.0673)}}.snow:nth-child(92){opacity:.254;transform:translate(24.8696vw,-10px) scale(.4381);animation:fall-92 16s -28s linear infinite}@keyframes fall-92{71.572%{transform:translate(24.2474vw,71.572vh) scale(.4381)}to{transform:translate(24.5585vw,100vh) scale(.4381)}}.snow:nth-child(93){opacity:.81;transform:translate(69.8552vw,-10px) scale(.4708);animation:fall-93 27s -11s linear infinite}@keyframes fall-93{50.102%{transform:translate(77.3267vw,50.102vh) scale(.4708)}to{transform:translate(73.59095vw,100vh) scale(.4708)}}.snow:nth-child(94){opacity:1.3382;transform:translate(94.721vw,-10px) scale(.8462);animation:fall-94 17s -6s linear infinite}@keyframes fall-94{60.37%{transform:translate(96.9921vw,60.37vh) scale(.8462)}to{transform:translate(95.85655vw,100vh) scale(.8462)}}.snow:nth-child(95){opacity:1.7356;transform:translate(34.2295vw,-10px) scale(.855);animation:fall-95 27s -12s linear infinite}@keyframes fall-95{55.256%{transform:translate(42.8109vw,55.256vh) scale(.855)}to{transform:translate(38.5202vw,100vh) scale(.855)}}.snow:nth-child(96){opacity:1.3288;transform:translate(3.7379vw,-10px) scale(.3732);animation:fall-96 30s -1s linear infinite}@keyframes fall-96{38.926%{transform:translate(-4.228vw,38.926vh) scale(.3732)}to{transform:translate(-.24505vw,100vh) scale(.3732)}}.snow:nth-child(97){opacity:1.865;transform:translate(71.754vw,-10px) scale(.9593);animation:fall-97 24s -6s linear infinite}@keyframes fall-97{46.969%{transform:translate(67.9888vw,46.969vh) scale(.9593)}to{transform:translate(69.8714vw,100vh) scale(.9593)}}.snow:nth-child(98){opacity:1.082;transform:translate(63.8427vw,-10px) scale(.4137);animation:fall-98 12s -26s linear infinite}@keyframes fall-98{36.967%{transform:translate(63.7318vw,36.967vh) scale(.4137)}to{transform:translate(63.78725vw,100vh) scale(.4137)}}.snow:nth-child(99){opacity:.6558;transform:translate(24.7392vw,-10px) scale(.5016);animation:fall-99 12s -8s linear infinite}@keyframes fall-99{44.724%{transform:translate(23.5692vw,44.724vh) scale(.5016)}to{transform:translate(24.1542vw,100vh) scale(.5016)}}.snow:nth-child(100){opacity:.4952;transform:translate(96.4663vw,-10px) scale(.9335);animation:fall-100 23s -28s linear infinite}@keyframes fall-100{49.295%{transform:translate(102.4078vw,49.295vh) scale(.9335)}to{transform:translate(99.43705vw,100vh) scale(.9335)}}.snow:nth-child(101){opacity:1.9894;transform:translate(30.793vw,-10px) scale(.9667);animation:fall-101 26s -1s linear infinite}@keyframes fall-101{45.287%{transform:translate(31.3537vw,45.287vh) scale(.9667)}to{transform:translate(31.07335vw,100vh) scale(.9667)}}.snow:nth-child(102){opacity:1.084;transform:translate(16.3751vw,-10px) scale(.5574);animation:fall-102 25s -23s linear infinite}@keyframes fall-102{55.084%{transform:translate(25.4613vw,55.084vh) scale(.5574)}to{transform:translate(20.9182vw,100vh) scale(.5574)}}.snow:nth-child(103){opacity:.918;transform:translate(96.5182vw,-10px) scale(.6235);animation:fall-103 21s -29s linear infinite}@keyframes fall-103{52.461%{transform:translate(93.0286vw,52.461vh) scale(.6235)}to{transform:translate(94.7734vw,100vh) scale(.6235)}}.snow:nth-child(104){opacity:.014;transform:translate(37.4644vw,-10px) scale(.1819);animation:fall-104 13s -4s linear infinite}@keyframes fall-104{77.387%{transform:translate(45.839vw,77.387vh) scale(.1819)}to{transform:translate(41.6517vw,100vh) scale(.1819)}}.snow:nth-child(105){opacity:1.9604;transform:translate(52.8167vw,-10px) scale(.775);animation:fall-105 26s -26s linear infinite}@keyframes fall-105{49.161%{transform:translate(61.3264vw,49.161vh) scale(.775)}to{transform:translate(57.07155vw,100vh) scale(.775)}}.snow:nth-child(106){opacity:.2226;transform:translate(99.7686vw,-10px) scale(.7287);animation:fall-106 17s -29s linear infinite}@keyframes fall-106{69.736%{transform:translate(95.5994vw,69.736vh) scale(.7287)}to{transform:translate(97.684vw,100vh) scale(.7287)}}.snow:nth-child(107){opacity:.0432;transform:translate(65.4227vw,-10px) scale(.0566);animation:fall-107 27s -22s linear infinite}@keyframes fall-107{40.321%{transform:translate(68.6947vw,40.321vh) scale(.0566)}to{transform:translate(67.0587vw,100vh) scale(.0566)}}.snow:nth-child(108){opacity:1.9386;transform:translate(59.6065vw,-10px) scale(.252);animation:fall-108 14s -1s linear infinite}@keyframes fall-108{50.982%{transform:translate(60.522vw,50.982vh) scale(.252)}to{transform:translate(60.06425vw,100vh) scale(.252)}}.snow:nth-child(109){opacity:.354;transform:translate(57.7204vw,-10px) scale(.0143);animation:fall-109 30s -6s linear infinite}@keyframes fall-109{36.461%{transform:translate(62.6642vw,36.461vh) scale(.0143)}to{transform:translate(60.1923vw,100vh) scale(.0143)}}.snow:nth-child(110){opacity:1.9854;transform:translate(9.9382vw,-10px) scale(.7109);animation:fall-110 11s -12s linear infinite}@keyframes fall-110{30.762%{transform:translate(19.2102vw,30.762vh) scale(.7109)}to{transform:translate(14.5742vw,100vh) scale(.7109)}}.snow:nth-child(111){opacity:.1788;transform:translate(1.2632vw,-10px) scale(.5677);animation:fall-111 26s -18s linear infinite}@keyframes fall-111{78.996%{transform:translate(2.5097vw,78.996vh) scale(.5677)}to{transform:translate(1.88645vw,100vh) scale(.5677)}}.snow:nth-child(112){opacity:1.0496;transform:translate(86.9642vw,-10px) scale(.0538);animation:fall-112 20s -21s linear infinite}@keyframes fall-112{30.629%{transform:translate(81.6264vw,30.629vh) scale(.0538)}to{transform:translate(84.2953vw,100vh) scale(.0538)}}.snow:nth-child(113){opacity:1.178;transform:translate(19.0253vw,-10px) scale(.947);animation:fall-113 28s -22s linear infinite}@keyframes fall-113{57.674%{transform:translate(10.0161vw,57.674vh) scale(.947)}to{transform:translate(14.5207vw,100vh) scale(.947)}}.snow:nth-child(114){opacity:1.1054;transform:translate(15.5969vw,-10px) scale(.7632);animation:fall-114 26s -23s linear infinite}@keyframes fall-114{46.153%{transform:translate(6.2328vw,46.153vh) scale(.7632)}to{transform:translate(10.91485vw,100vh) scale(.7632)}}.snow:nth-child(115){opacity:.661;transform:translate(86.716vw,-10px) scale(.9375);animation:fall-115 27s -6s linear infinite}@keyframes fall-115{74.721%{transform:translate(94.5975vw,74.721vh) scale(.9375)}to{transform:translate(90.65675vw,100vh) scale(.9375)}}.snow:nth-child(116){opacity:.4334;transform:translate(22.5821vw,-10px) scale(.3338);animation:fall-116 29s -17s linear infinite}@keyframes fall-116{67.491%{transform:translate(24.0967vw,67.491vh) scale(.3338)}to{transform:translate(23.3394vw,100vh) scale(.3338)}}.snow:nth-child(117){opacity:1.063;transform:translate(75.7491vw,-10px) scale(.4833);animation:fall-117 26s -13s linear infinite}@keyframes fall-117{36.201%{transform:translate(82.047vw,36.201vh) scale(.4833)}to{transform:translate(78.89805vw,100vh) scale(.4833)}}.snow:nth-child(118){opacity:1.6028;transform:translate(41.901vw,-10px) scale(.2329);animation:fall-118 10s -7s linear infinite}@keyframes fall-118{50.28%{transform:translate(39.2717vw,50.28vh) scale(.2329)}to{transform:translate(40.58635vw,100vh) scale(.2329)}}.snow:nth-child(119){opacity:.1492;transform:translate(21.2556vw,-10px) scale(.5565);animation:fall-119 22s -8s linear infinite}@keyframes fall-119{72.675%{transform:translate(23.2089vw,72.675vh) scale(.5565)}to{transform:translate(22.23225vw,100vh) scale(.5565)}}.snow:nth-child(120){opacity:1.3348;transform:translate(37.8384vw,-10px) scale(.6002);animation:fall-120 17s -27s linear infinite}@keyframes fall-120{40.245%{transform:translate(31.0236vw,40.245vh) scale(.6002)}to{transform:translate(34.431vw,100vh) scale(.6002)}}.snow:nth-child(121){opacity:.5924;transform:translate(5.8261vw,-10px) scale(.3538);animation:fall-121 11s -24s linear infinite}@keyframes fall-121{76.34%{transform:translate(4.9924vw,76.34vh) scale(.3538)}to{transform:translate(5.40925vw,100vh) scale(.3538)}}.snow:nth-child(122){opacity:.4744;transform:translate(5.4363vw,-10px) scale(.4927);animation:fall-122 10s -28s linear infinite}@keyframes fall-122{33.889%{transform:translate(7.6996vw,33.889vh) scale(.4927)}to{transform:translate(6.56795vw,100vh) scale(.4927)}}.snow:nth-child(123){opacity:1.6116;transform:translate(44.1564vw,-10px) scale(.2067);animation:fall-123 10s -2s linear infinite}@keyframes fall-123{31.852%{transform:translate(51.9998vw,31.852vh) scale(.2067)}to{transform:translate(48.0781vw,100vh) scale(.2067)}}.snow:nth-child(124){opacity:.5342;transform:translate(54.3744vw,-10px) scale(.6301);animation:fall-124 25s -1s linear infinite}@keyframes fall-124{72.889%{transform:translate(56.2816vw,72.889vh) scale(.6301)}to{transform:translate(55.328vw,100vh) scale(.6301)}}.snow:nth-child(125){opacity:.649;transform:translate(33.207vw,-10px) scale(.5964);animation:fall-125 28s -9s linear infinite}@keyframes fall-125{66.68%{transform:translate(26.7247vw,66.68vh) scale(.5964)}to{transform:translate(29.96585vw,100vh) scale(.5964)}}.snow:nth-child(126){opacity:1.3714;transform:translate(80.0508vw,-10px) scale(.431);animation:fall-126 15s -18s linear infinite}@keyframes fall-126{34.538%{transform:translate(81.5951vw,34.538vh) scale(.431)}to{transform:translate(80.82295vw,100vh) scale(.431)}}.snow:nth-child(127){opacity:1.1792;transform:translate(70.2615vw,-10px) scale(.3463);animation:fall-127 12s -1s linear infinite}@keyframes fall-127{35.65%{transform:translate(79.7378vw,35.65vh) scale(.3463)}to{transform:translate(74.99965vw,100vh) scale(.3463)}}.snow:nth-child(128){opacity:1.5072;transform:translate(10.8279vw,-10px) scale(.2533);animation:fall-128 12s -5s linear infinite}@keyframes fall-128{44.032%{transform:translate(13.6506vw,44.032vh) scale(.2533)}to{transform:translate(12.23925vw,100vh) scale(.2533)}}.snow:nth-child(129){opacity:1.0336;transform:translate(21.3908vw,-10px) scale(.7399);animation:fall-129 21s -6s linear infinite}@keyframes fall-129{63.012%{transform:translate(17.6051vw,63.012vh) scale(.7399)}to{transform:translate(19.49795vw,100vh) scale(.7399)}}.snow:nth-child(130){opacity:.0572;transform:translate(67.4651vw,-10px) scale(.017);animation:fall-130 18s -11s linear infinite}@keyframes fall-130{49.157%{transform:translate(72.6764vw,49.157vh) scale(.017)}to{transform:translate(70.07075vw,100vh) scale(.017)}}.snow:nth-child(131){opacity:.3572;transform:translate(83.1944vw,-10px) scale(.676);animation:fall-131 12s -27s linear infinite}@keyframes fall-131{40.268%{transform:translate(78.9223vw,40.268vh) scale(.676)}to{transform:translate(81.05835vw,100vh) scale(.676)}}.snow:nth-child(132){opacity:.6992;transform:translate(26.5292vw,-10px) scale(.3726);animation:fall-132 28s -13s linear infinite}@keyframes fall-132{50.983%{transform:translate(18.2829vw,50.983vh) scale(.3726)}to{transform:translate(22.40605vw,100vh) scale(.3726)}}.snow:nth-child(133){opacity:1.3446;transform:translate(64.0763vw,-10px) scale(.5407);animation:fall-133 22s -3s linear infinite}@keyframes fall-133{78.929%{transform:translate(68.5923vw,78.929vh) scale(.5407)}to{transform:translate(66.3343vw,100vh) scale(.5407)}}.snow:nth-child(134){opacity:1.5928;transform:translate(91.4033vw,-10px) scale(.8759);animation:fall-134 15s -9s linear infinite}@keyframes fall-134{50.695%{transform:translate(89.1624vw,50.695vh) scale(.8759)}to{transform:translate(90.28285vw,100vh) scale(.8759)}}.snow:nth-child(135){opacity:1.6588;transform:translate(14.5897vw,-10px) scale(.4725);animation:fall-135 27s -27s linear infinite}@keyframes fall-135{45.241%{transform:translate(17.4882vw,45.241vh) scale(.4725)}to{transform:translate(16.03895vw,100vh) scale(.4725)}}.snow:nth-child(136){opacity:1.8136;transform:translate(78.7209vw,-10px) scale(.2397);animation:fall-136 22s -29s linear infinite}@keyframes fall-136{59.216%{transform:translate(77.7494vw,59.216vh) scale(.2397)}to{transform:translate(78.23515vw,100vh) scale(.2397)}}.snow:nth-child(137){opacity:1.97;transform:translate(75.2725vw,-10px) scale(.8407);animation:fall-137 17s -2s linear infinite}@keyframes fall-137{75.287%{transform:translate(72.0815vw,75.287vh) scale(.8407)}to{transform:translate(73.677vw,100vh) scale(.8407)}}.snow:nth-child(138){opacity:1.802;transform:translate(67.2557vw,-10px) scale(.7195);animation:fall-138 24s -24s linear infinite}@keyframes fall-138{56.53%{transform:translate(74.8948vw,56.53vh) scale(.7195)}to{transform:translate(71.07525vw,100vh) scale(.7195)}}.snow:nth-child(139){opacity:.644;transform:translate(20.1659vw,-10px) scale(.2587);animation:fall-139 29s -17s linear infinite}@keyframes fall-139{62.407%{transform:translate(28.6502vw,62.407vh) scale(.2587)}to{transform:translate(24.40805vw,100vh) scale(.2587)}}.snow:nth-child(140){opacity:1.5952;transform:translate(68.4856vw,-10px) scale(.5183);animation:fall-140 15s -21s linear infinite}@keyframes fall-140{66.019%{transform:translate(61.7018vw,66.019vh) scale(.5183)}to{transform:translate(65.0937vw,100vh) scale(.5183)}}.snow:nth-child(141){opacity:.2126;transform:translate(78.3222vw,-10px) scale(.3776);animation:fall-141 19s -20s linear infinite}@keyframes fall-141{67.993%{transform:translate(68.3226vw,67.993vh) scale(.3776)}to{transform:translate(73.3224vw,100vh) scale(.3776)}}.snow:nth-child(142){opacity:1.2892;transform:translate(79.3355vw,-10px) scale(.6804);animation:fall-142 26s -20s linear infinite}@keyframes fall-142{32.302%{transform:translate(86.7174vw,32.302vh) scale(.6804)}to{transform:translate(83.02645vw,100vh) scale(.6804)}}.snow:nth-child(143){opacity:.7764;transform:translate(35.3647vw,-10px) scale(.52);animation:fall-143 27s -21s linear infinite}@keyframes fall-143{48.42%{transform:translate(41.3018vw,48.42vh) scale(.52)}to{transform:translate(38.33325vw,100vh) scale(.52)}}.snow:nth-child(144){opacity:1.1504;transform:translate(46.2309vw,-10px) scale(.8277);animation:fall-144 14s -9s linear infinite}@keyframes fall-144{39.596%{transform:translate(52.4903vw,39.596vh) scale(.8277)}to{transform:translate(49.3606vw,100vh) scale(.8277)}}.snow:nth-child(145){opacity:1.8864;transform:translate(53.0695vw,-10px) scale(.4269);animation:fall-145 30s -22s linear infinite}@keyframes fall-145{74.827%{transform:translate(53.5322vw,74.827vh) scale(.4269)}to{transform:translate(53.30085vw,100vh) scale(.4269)}}.snow:nth-child(146){opacity:.36;transform:translate(17.9264vw,-10px) scale(.5791);animation:fall-146 12s -19s linear infinite}@keyframes fall-146{42.628%{transform:translate(9.8227vw,42.628vh) scale(.5791)}to{transform:translate(13.87455vw,100vh) scale(.5791)}}.snow:nth-child(147){opacity:1.5256;transform:translate(5.6766vw,-10px) scale(.9614);animation:fall-147 29s -23s linear infinite}@keyframes fall-147{39.089%{transform:translate(4.3978vw,39.089vh) scale(.9614)}to{transform:translate(5.0372vw,100vh) scale(.9614)}}.snow:nth-child(148){opacity:1.1092;transform:translate(80.5958vw,-10px) scale(.4624);animation:fall-148 17s -7s linear infinite}@keyframes fall-148{32.594%{transform:translate(79.1685vw,32.594vh) scale(.4624)}to{transform:translate(79.88215vw,100vh) scale(.4624)}}.snow:nth-child(149){opacity:1.2316;transform:translate(51.0657vw,-10px) scale(.5195);animation:fall-149 22s -24s linear infinite}@keyframes fall-149{60.432%{transform:translate(46.811vw,60.432vh) scale(.5195)}to{transform:translate(48.93835vw,100vh) scale(.5195)}}.snow:nth-child(150){opacity:1.3782;transform:translate(15.6006vw,-10px) scale(.6721);animation:fall-150 14s -8s linear infinite}@keyframes fall-150{76.592%{transform:translate(15.7492vw,76.592vh) scale(.6721)}to{transform:translate(15.6749vw,100vh) scale(.6721)}}.snow:nth-child(151){opacity:1.1098;transform:translate(22.8858vw,-10px) scale(.3133);animation:fall-151 15s -28s linear infinite}@keyframes fall-151{52.638%{transform:translate(16.928vw,52.638vh) scale(.3133)}to{transform:translate(19.9069vw,100vh) scale(.3133)}}.snow:nth-child(152){opacity:1.3046;transform:translate(.1983vw,-10px) scale(.296);animation:fall-152 27s -28s linear infinite}@keyframes fall-152{57.701%{transform:translate(-5.5203vw,57.701vh) scale(.296)}to{transform:translate(-2.661vw,100vh) scale(.296)}}.snow:nth-child(153){opacity:.1904;transform:translate(40.5799vw,-10px) scale(.0092);animation:fall-153 23s -1s linear infinite}@keyframes fall-153{54.745%{transform:translate(36.2506vw,54.745vh) scale(.0092)}to{transform:translate(38.41525vw,100vh) scale(.0092)}}.snow:nth-child(154){opacity:1.7108;transform:translate(64.6718vw,-10px) scale(.6344);animation:fall-154 23s -9s linear infinite}@keyframes fall-154{51.632%{transform:translate(61.1472vw,51.632vh) scale(.6344)}to{transform:translate(62.9095vw,100vh) scale(.6344)}}.snow:nth-child(155){opacity:1.9552;transform:translate(3.4988vw,-10px) scale(.0088);animation:fall-155 28s -10s linear infinite}@keyframes fall-155{61.733%{transform:translate(2.3557vw,61.733vh) scale(.0088)}to{transform:translate(2.92725vw,100vh) scale(.0088)}}.snow:nth-child(156){opacity:1.8046;transform:translate(99.1471vw,-10px) scale(.7026);animation:fall-156 17s -24s linear infinite}@keyframes fall-156{55.922%{transform:translate(105.3942vw,55.922vh) scale(.7026)}to{transform:translate(102.27065vw,100vh) scale(.7026)}}.snow:nth-child(157){opacity:1.4664;transform:translate(15.2998vw,-10px) scale(.6744);animation:fall-157 10s -28s linear infinite}@keyframes fall-157{65.375%{transform:translate(16.7827vw,65.375vh) scale(.6744)}to{transform:translate(16.04125vw,100vh) scale(.6744)}}.snow:nth-child(158){opacity:1.9956;transform:translate(76.8389vw,-10px) scale(.7998);animation:fall-158 21s -18s linear infinite}@keyframes fall-158{71.966%{transform:translate(79.5315vw,71.966vh) scale(.7998)}to{transform:translate(78.1852vw,100vh) scale(.7998)}}.snow:nth-child(159){opacity:1.9048;transform:translate(32.5572vw,-10px) scale(.4053);animation:fall-159 16s -15s linear infinite}@keyframes fall-159{77.301%{transform:translate(37.5078vw,77.301vh) scale(.4053)}to{transform:translate(35.0325vw,100vh) scale(.4053)}}.snow:nth-child(160){opacity:.92;transform:translate(23.8187vw,-10px) scale(.7353);animation:fall-160 27s -28s linear infinite}@keyframes fall-160{30.605%{transform:translate(19.0884vw,30.605vh) scale(.7353)}to{transform:translate(21.45355vw,100vh) scale(.7353)}}.snow:nth-child(161){opacity:.4894;transform:translate(75.0372vw,-10px) scale(.4369);animation:fall-161 20s -9s linear infinite}@keyframes fall-161{64.202%{transform:translate(83.3291vw,64.202vh) scale(.4369)}to{transform:translate(79.18315vw,100vh) scale(.4369)}}.snow:nth-child(162){opacity:.7502;transform:translate(35.7894vw,-10px) scale(.3634);animation:fall-162 28s -28s linear infinite}@keyframes fall-162{66.318%{transform:translate(27.7358vw,66.318vh) scale(.3634)}to{transform:translate(31.7626vw,100vh) scale(.3634)}}.snow:nth-child(163){opacity:.439;transform:translate(16.3497vw,-10px) scale(.5055);animation:fall-163 25s -16s linear infinite}@keyframes fall-163{43.31%{transform:translate(8.1633vw,43.31vh) scale(.5055)}to{transform:translate(12.2565vw,100vh) scale(.5055)}}.snow:nth-child(164){opacity:.0906;transform:translate(74.2471vw,-10px) scale(.0533);animation:fall-164 10s -4s linear infinite}@keyframes fall-164{73.755%{transform:translate(70.6749vw,73.755vh) scale(.0533)}to{transform:translate(72.461vw,100vh) scale(.0533)}}.snow:nth-child(165){opacity:.2414;transform:translate(61.0456vw,-10px) scale(.9827);animation:fall-165 19s -19s linear infinite}@keyframes fall-165{41.721%{transform:translate(69.907vw,41.721vh) scale(.9827)}to{transform:translate(65.4763vw,100vh) scale(.9827)}}.snow:nth-child(166){opacity:.8476;transform:translate(59.1867vw,-10px) scale(.0257);animation:fall-166 12s -26s linear infinite}@keyframes fall-166{65.077%{transform:translate(65.4036vw,65.077vh) scale(.0257)}to{transform:translate(62.29515vw,100vh) scale(.0257)}}.snow:nth-child(167){opacity:1.635;transform:translate(93.589vw,-10px) scale(.4113);animation:fall-167 10s -11s linear infinite}@keyframes fall-167{48.741%{transform:translate(88.5283vw,48.741vh) scale(.4113)}to{transform:translate(91.05865vw,100vh) scale(.4113)}}.snow:nth-child(168){opacity:1.8086;transform:translate(31.7513vw,-10px) scale(.0662);animation:fall-168 17s -7s linear infinite}@keyframes fall-168{30.255%{transform:translate(33.6953vw,30.255vh) scale(.0662)}to{transform:translate(32.7233vw,100vh) scale(.0662)}}.snow:nth-child(169){opacity:.7174;transform:translate(20.8455vw,-10px) scale(.4553);animation:fall-169 14s -11s linear infinite}@keyframes fall-169{60.005%{transform:translate(18.262vw,60.005vh) scale(.4553)}to{transform:translate(19.55375vw,100vh) scale(.4553)}}.snow:nth-child(170){opacity:.3844;transform:translate(29.1566vw,-10px) scale(.624);animation:fall-170 29s -7s linear infinite}@keyframes fall-170{64.762%{transform:translate(38.548vw,64.762vh) scale(.624)}to{transform:translate(33.8523vw,100vh) scale(.624)}}.snow:nth-child(171){opacity:1.7358;transform:translate(84.7307vw,-10px) scale(.8345);animation:fall-171 10s -4s linear infinite}@keyframes fall-171{45.888%{transform:translate(79.5588vw,45.888vh) scale(.8345)}to{transform:translate(82.14475vw,100vh) scale(.8345)}}.snow:nth-child(172){opacity:1.5094;transform:translate(2.1968vw,-10px) scale(.3197);animation:fall-172 11s -7s linear infinite}@keyframes fall-172{78.716%{transform:translate(-3.7065vw,78.716vh) scale(.3197)}to{transform:translate(-.75485vw,100vh) scale(.3197)}}.snow:nth-child(173){opacity:1.4748;transform:translate(12.1389vw,-10px) scale(.4268);animation:fall-173 18s -29s linear infinite}@keyframes fall-173{60.151%{transform:translate(2.9786vw,60.151vh) scale(.4268)}to{transform:translate(7.55875vw,100vh) scale(.4268)}}.snow:nth-child(174){opacity:.5076;transform:translate(35.5854vw,-10px) scale(.0853);animation:fall-174 22s -20s linear infinite}@keyframes fall-174{47.402%{transform:translate(25.7994vw,47.402vh) scale(.0853)}to{transform:translate(30.6924vw,100vh) scale(.0853)}}.snow:nth-child(175){opacity:1.312;transform:translate(74.4206vw,-10px) scale(.6619);animation:fall-175 10s -19s linear infinite}@keyframes fall-175{42.091%{transform:translate(68.0898vw,42.091vh) scale(.6619)}to{transform:translate(71.2552vw,100vh) scale(.6619)}}.snow:nth-child(176){opacity:1.8824;transform:translate(72.3169vw,-10px) scale(.7125);animation:fall-176 11s -18s linear infinite}@keyframes fall-176{56.165%{transform:translate(66.3617vw,56.165vh) scale(.7125)}to{transform:translate(69.3393vw,100vh) scale(.7125)}}.snow:nth-child(177){opacity:1.3006;transform:translate(71.3955vw,-10px) scale(.7314);animation:fall-177 23s -17s linear infinite}@keyframes fall-177{35.879%{transform:translate(81.3087vw,35.879vh) scale(.7314)}to{transform:translate(76.3521vw,100vh) scale(.7314)}}.snow:nth-child(178){opacity:1.972;transform:translate(6.3634vw,-10px) scale(.8372);animation:fall-178 29s -16s linear infinite}@keyframes fall-178{43.972%{transform:translate(3.5045vw,43.972vh) scale(.8372)}to{transform:translate(4.93395vw,100vh) scale(.8372)}}.snow:nth-child(179){opacity:.1362;transform:translate(8.5247vw,-10px) scale(.5199);animation:fall-179 16s -26s linear infinite}@keyframes fall-179{50.091%{transform:translate(17.6956vw,50.091vh) scale(.5199)}to{transform:translate(13.11015vw,100vh) scale(.5199)}}.snow:nth-child(180){opacity:1.8644;transform:translate(25.0081vw,-10px) scale(.9674);animation:fall-180 15s -19s linear infinite}@keyframes fall-180{33.894%{transform:translate(25.732vw,33.894vh) scale(.9674)}to{transform:translate(25.37005vw,100vh) scale(.9674)}}.snow:nth-child(181){opacity:1.5662;transform:translate(32.4746vw,-10px) scale(.4738);animation:fall-181 10s -30s linear infinite}@keyframes fall-181{78.329%{transform:translate(32.8734vw,78.329vh) scale(.4738)}to{transform:translate(32.674vw,100vh) scale(.4738)}}.snow:nth-child(182){opacity:.1058;transform:translate(63.0088vw,-10px) scale(.449);animation:fall-182 18s -16s linear infinite}@keyframes fall-182{76.186%{transform:translate(71.0839vw,76.186vh) scale(.449)}to{transform:translate(67.04635vw,100vh) scale(.449)}}.snow:nth-child(183){opacity:.3174;transform:translate(18.1843vw,-10px) scale(.1696);animation:fall-183 28s -26s linear infinite}@keyframes fall-183{52.274%{transform:translate(9.5481vw,52.274vh) scale(.1696)}to{transform:translate(13.8662vw,100vh) scale(.1696)}}.snow:nth-child(184){opacity:.437;transform:translate(86.3594vw,-10px) scale(.627);animation:fall-184 12s -30s linear infinite}@keyframes fall-184{33.567%{transform:translate(94.6194vw,33.567vh) scale(.627)}to{transform:translate(90.4894vw,100vh) scale(.627)}}.snow:nth-child(185){opacity:1.5342;transform:translate(93.7087vw,-10px) scale(.5909);animation:fall-185 18s -16s linear infinite}@keyframes fall-185{46.703%{transform:translate(96.3858vw,46.703vh) scale(.5909)}to{transform:translate(95.04725vw,100vh) scale(.5909)}}.snow:nth-child(186){opacity:1.3902;transform:translate(17.7582vw,-10px) scale(.2233);animation:fall-186 25s -17s linear infinite}@keyframes fall-186{36.188%{transform:translate(10.275vw,36.188vh) scale(.2233)}to{transform:translate(14.0166vw,100vh) scale(.2233)}}.snow:nth-child(187){opacity:.752;transform:translate(50.2328vw,-10px) scale(.5627);animation:fall-187 12s -6s linear infinite}@keyframes fall-187{62.997%{transform:translate(41.3448vw,62.997vh) scale(.5627)}to{transform:translate(45.7888vw,100vh) scale(.5627)}}.snow:nth-child(188){opacity:1.2678;transform:translate(57.5072vw,-10px) scale(.0938);animation:fall-188 22s -21s linear infinite}@keyframes fall-188{34.116%{transform:translate(48.2411vw,34.116vh) scale(.0938)}to{transform:translate(52.87415vw,100vh) scale(.0938)}}.snow:nth-child(189){opacity:.4482;transform:translate(67.0977vw,-10px) scale(.1612);animation:fall-189 30s -26s linear infinite}@keyframes fall-189{78.304%{transform:translate(75.4906vw,78.304vh) scale(.1612)}to{transform:translate(71.29415vw,100vh) scale(.1612)}}.snow:nth-child(190){opacity:1.1668;transform:translate(10.8162vw,-10px) scale(.6986);animation:fall-190 20s -8s linear infinite}@keyframes fall-190{68.624%{transform:translate(6.9457vw,68.624vh) scale(.6986)}to{transform:translate(8.88095vw,100vh) scale(.6986)}}.snow:nth-child(191){opacity:.1222;transform:translate(58.3684vw,-10px) scale(.7651);animation:fall-191 27s -13s linear infinite}@keyframes fall-191{53.485%{transform:translate(56.091vw,53.485vh) scale(.7651)}to{transform:translate(57.2297vw,100vh) scale(.7651)}}.snow:nth-child(192){opacity:1.3578;transform:translate(72.7457vw,-10px) scale(.6492);animation:fall-192 19s -26s linear infinite}@keyframes fall-192{79.86%{transform:translate(80.6681vw,79.86vh) scale(.6492)}to{transform:translate(76.7069vw,100vh) scale(.6492)}}.snow:nth-child(193){opacity:1.2704;transform:translate(24.4823vw,-10px) scale(.1372);animation:fall-193 28s -3s linear infinite}@keyframes fall-193{46.43%{transform:translate(29.2939vw,46.43vh) scale(.1372)}to{transform:translate(26.8881vw,100vh) scale(.1372)}}.snow:nth-child(194){opacity:1.558;transform:translate(39.583vw,-10px) scale(.4589);animation:fall-194 26s -29s linear infinite}@keyframes fall-194{49.216%{transform:translate(30.1174vw,49.216vh) scale(.4589)}to{transform:translate(34.8502vw,100vh) scale(.4589)}}.snow:nth-child(195){opacity:.8182;transform:translate(5.8752vw,-10px) scale(.7237);animation:fall-195 30s -8s linear infinite}@keyframes fall-195{67.479%{transform:translate(6.3002vw,67.479vh) scale(.7237)}to{transform:translate(6.0877vw,100vh) scale(.7237)}}.snow:nth-child(196){opacity:1.8236;transform:translate(37.6586vw,-10px) scale(.3602);animation:fall-196 16s -1s linear infinite}@keyframes fall-196{65.314%{transform:translate(32.2896vw,65.314vh) scale(.3602)}to{transform:translate(34.9741vw,100vh) scale(.3602)}}.snow:nth-child(197){opacity:.6824;transform:translate(19.4065vw,-10px) scale(.5519);animation:fall-197 13s -4s linear infinite}@keyframes fall-197{42.388%{transform:translate(14.9983vw,42.388vh) scale(.5519)}to{transform:translate(17.2024vw,100vh) scale(.5519)}}.snow:nth-child(198){opacity:.572;transform:translate(17.0709vw,-10px) scale(.4266);animation:fall-198 26s -23s linear infinite}@keyframes fall-198{51.987%{transform:translate(9.8924vw,51.987vh) scale(.4266)}to{transform:translate(13.48165vw,100vh) scale(.4266)}}.snow:nth-child(199){opacity:.77;transform:translate(53.7985vw,-10px) scale(.1096);animation:fall-199 19s -17s linear infinite}@keyframes fall-199{49.994%{transform:translate(57.542vw,49.994vh) scale(.1096)}to{transform:translate(55.67025vw,100vh) scale(.1096)}}.snow:nth-child(200){opacity:.6116;transform:translate(81.4688vw,-10px) scale(.9332);animation:fall-200 14s -17s linear infinite}@keyframes fall-200{53.527%{transform:translate(77.8031vw,53.527vh) scale(.9332)}to{transform:translate(79.63595vw,100vh) scale(.9332)}}.snow:nth-child(201){opacity:.9436;transform:translate(75.0591vw,-10px) scale(.3626);animation:fall-201 15s -8s linear infinite}@keyframes fall-201{50.591%{transform:translate(67.377vw,50.591vh) scale(.3626)}to{transform:translate(71.21805vw,100vh) scale(.3626)}}.snow:nth-child(202){opacity:.6568;transform:translate(67.479vw,-10px) scale(.6694);animation:fall-202 21s -8s linear infinite}@keyframes fall-202{46.921%{transform:translate(60.2684vw,46.921vh) scale(.6694)}to{transform:translate(63.8737vw,100vh) scale(.6694)}}.snow:nth-child(203){opacity:.15;transform:translate(12.9973vw,-10px) scale(.6753);animation:fall-203 28s -24s linear infinite}@keyframes fall-203{34.471%{transform:translate(10.6564vw,34.471vh) scale(.6753)}to{transform:translate(11.82685vw,100vh) scale(.6753)}}.snow:nth-child(204){opacity:.2778;transform:translate(50.737vw,-10px) scale(.51);animation:fall-204 14s -23s linear infinite}@keyframes fall-204{51.984%{transform:translate(42.1989vw,51.984vh) scale(.51)}to{transform:translate(46.46795vw,100vh) scale(.51)}}.snow:nth-child(205){opacity:1.4948;transform:translate(70.5807vw,-10px) scale(.8845);animation:fall-205 16s -7s linear infinite}@keyframes fall-205{50.086%{transform:translate(77.869vw,50.086vh) scale(.8845)}to{transform:translate(74.22485vw,100vh) scale(.8845)}}.snow:nth-child(206){opacity:.9378;transform:translate(36.6795vw,-10px) scale(.46);animation:fall-206 13s -3s linear infinite}@keyframes fall-206{40.649%{transform:translate(30.3618vw,40.649vh) scale(.46)}to{transform:translate(33.52065vw,100vh) scale(.46)}}.snow:nth-child(207){opacity:.1558;transform:translate(33.2418vw,-10px) scale(.7488);animation:fall-207 26s -3s linear infinite}@keyframes fall-207{53.621%{transform:translate(35.9883vw,53.621vh) scale(.7488)}to{transform:translate(34.61505vw,100vh) scale(.7488)}}.snow:nth-child(208){opacity:.0252;transform:translate(1.5173vw,-10px) scale(.8834);animation:fall-208 27s -28s linear infinite}@keyframes fall-208{43.79%{transform:translate(-3.7127vw,43.79vh) scale(.8834)}to{transform:translate(-1.0977vw,100vh) scale(.8834)}}.snow:nth-child(209){opacity:.045;transform:translate(73.7303vw,-10px) scale(.1411);animation:fall-209 20s -29s linear infinite}@keyframes fall-209{72.357%{transform:translate(68.1155vw,72.357vh) scale(.1411)}to{transform:translate(70.9229vw,100vh) scale(.1411)}}.snow:nth-child(210){opacity:1.8006;transform:translate(85.498vw,-10px) scale(.4487);animation:fall-210 30s -15s linear infinite}@keyframes fall-210{44.408%{transform:translate(94.8294vw,44.408vh) scale(.4487)}to{transform:translate(90.1637vw,100vh) scale(.4487)}}.snow:nth-child(211){opacity:.2528;transform:translate(56.3557vw,-10px) scale(.922);animation:fall-211 28s -22s linear infinite}@keyframes fall-211{75.58%{transform:translate(49.7604vw,75.58vh) scale(.922)}to{transform:translate(53.05805vw,100vh) scale(.922)}}.snow:nth-child(212){opacity:.8898;transform:translate(51.0931vw,-10px) scale(.9316);animation:fall-212 26s -2s linear infinite}@keyframes fall-212{65.313%{transform:translate(55.2605vw,65.313vh) scale(.9316)}to{transform:translate(53.1768vw,100vh) scale(.9316)}}.snow:nth-child(213){opacity:.0716;transform:translate(97.5272vw,-10px) scale(.292);animation:fall-213 29s -4s linear infinite}@keyframes fall-213{55.577%{transform:translate(93.6948vw,55.577vh) scale(.292)}to{transform:translate(95.611vw,100vh) scale(.292)}}.snow:nth-child(214){opacity:1.9286;transform:translate(96.9741vw,-10px) scale(.2706);animation:fall-214 23s -27s linear infinite}@keyframes fall-214{76.022%{transform:translate(88.2847vw,76.022vh) scale(.2706)}to{transform:translate(92.6294vw,100vh) scale(.2706)}}.snow:nth-child(215){opacity:.1938;transform:translate(41.6889vw,-10px) scale(.2205);animation:fall-215 20s -22s linear infinite}@keyframes fall-215{51.766%{transform:translate(46.1515vw,51.766vh) scale(.2205)}to{transform:translate(43.9202vw,100vh) scale(.2205)}}.snow:nth-child(216){opacity:1.9558;transform:translate(82.5491vw,-10px) scale(.9102);animation:fall-216 23s -23s linear infinite}@keyframes fall-216{34.362%{transform:translate(73.7026vw,34.362vh) scale(.9102)}to{transform:translate(78.12585vw,100vh) scale(.9102)}}.snow:nth-child(217){opacity:.431;transform:translate(86.1675vw,-10px) scale(.619);animation:fall-217 12s -10s linear infinite}@keyframes fall-217{51.537%{transform:translate(92.7505vw,51.537vh) scale(.619)}to{transform:translate(89.459vw,100vh) scale(.619)}}.snow:nth-child(218){opacity:.2406;transform:translate(76.5319vw,-10px) scale(.2474);animation:fall-218 18s -22s linear infinite}@keyframes fall-218{32.223%{transform:translate(71.9721vw,32.223vh) scale(.2474)}to{transform:translate(74.252vw,100vh) scale(.2474)}}.snow:nth-child(219){opacity:.5366;transform:translate(20.0421vw,-10px) scale(.1541);animation:fall-219 13s -2s linear infinite}@keyframes fall-219{32.056%{transform:translate(25.461vw,32.056vh) scale(.1541)}to{transform:translate(22.75155vw,100vh) scale(.1541)}}.snow:nth-child(220){opacity:.4006;transform:translate(29.6908vw,-10px) scale(.3322);animation:fall-220 11s -28s linear infinite}@keyframes fall-220{48.4%{transform:translate(36.8037vw,48.4vh) scale(.3322)}to{transform:translate(33.24725vw,100vh) scale(.3322)}}.snow:nth-child(221){opacity:.1958;transform:translate(80.3397vw,-10px) scale(.2865);animation:fall-221 26s -30s linear infinite}@keyframes fall-221{60.971%{transform:translate(82.532vw,60.971vh) scale(.2865)}to{transform:translate(81.43585vw,100vh) scale(.2865)}}.snow:nth-child(222){opacity:.9118;transform:translate(19.5047vw,-10px) scale(.802);animation:fall-222 14s -25s linear infinite}@keyframes fall-222{50.944%{transform:translate(20.7911vw,50.944vh) scale(.802)}to{transform:translate(20.1479vw,100vh) scale(.802)}}.snow:nth-child(223){opacity:1.8694;transform:translate(68.7941vw,-10px) scale(.5931);animation:fall-223 22s -29s linear infinite}@keyframes fall-223{73.132%{transform:translate(65.7591vw,73.132vh) scale(.5931)}to{transform:translate(67.2766vw,100vh) scale(.5931)}}.snow:nth-child(224){opacity:1.861;transform:translate(27.4289vw,-10px) scale(.4555);animation:fall-224 22s -9s linear infinite}@keyframes fall-224{73.171%{transform:translate(22.8988vw,73.171vh) scale(.4555)}to{transform:translate(25.16385vw,100vh) scale(.4555)}}.snow:nth-child(225){opacity:.0228;transform:translate(77.3223vw,-10px) scale(.1173);animation:fall-225 25s -14s linear infinite}@keyframes fall-225{45.034%{transform:translate(69.9087vw,45.034vh) scale(.1173)}to{transform:translate(73.6155vw,100vh) scale(.1173)}}.snow:nth-child(226){opacity:1.8178;transform:translate(99.9367vw,-10px) scale(.7836);animation:fall-226 10s -12s linear infinite}@keyframes fall-226{61.469%{transform:translate(105.0645vw,61.469vh) scale(.7836)}to{transform:translate(102.5006vw,100vh) scale(.7836)}}.snow:nth-child(227){opacity:1.4662;transform:translate(8.3446vw,-10px) scale(.1097);animation:fall-227 16s -8s linear infinite}@keyframes fall-227{70.15%{transform:translate(1.1182vw,70.15vh) scale(.1097)}to{transform:translate(4.7314vw,100vh) scale(.1097)}}.snow:nth-child(228){opacity:1.5008;transform:translate(72.5279vw,-10px) scale(.5867);animation:fall-228 28s -22s linear infinite}@keyframes fall-228{58.476%{transform:translate(67.9201vw,58.476vh) scale(.5867)}to{transform:translate(70.224vw,100vh) scale(.5867)}}.snow:nth-child(229){opacity:1.6114;transform:translate(92.0273vw,-10px) scale(.9655);animation:fall-229 22s -25s linear infinite}@keyframes fall-229{31.788%{transform:translate(92.2701vw,31.788vh) scale(.9655)}to{transform:translate(92.1487vw,100vh) scale(.9655)}}.snow:nth-child(230){opacity:1.7258;transform:translate(49.5837vw,-10px) scale(.0303);animation:fall-230 26s -7s linear infinite}@keyframes fall-230{57.342%{transform:translate(55.8994vw,57.342vh) scale(.0303)}to{transform:translate(52.74155vw,100vh) scale(.0303)}}.snow:nth-child(231){opacity:1.6426;transform:translate(31.8574vw,-10px) scale(.5356);animation:fall-231 14s -5s linear infinite}@keyframes fall-231{75.663%{transform:translate(30.0176vw,75.663vh) scale(.5356)}to{transform:translate(30.9375vw,100vh) scale(.5356)}}.snow:nth-child(232){opacity:.8436;transform:translate(71.4277vw,-10px) scale(.7178);animation:fall-232 27s -26s linear infinite}@keyframes fall-232{76.043%{transform:translate(78.3777vw,76.043vh) scale(.7178)}to{transform:translate(74.9027vw,100vh) scale(.7178)}}.snow:nth-child(233){opacity:1.5372;transform:translate(29.7831vw,-10px) scale(.3369);animation:fall-233 15s -28s linear infinite}@keyframes fall-233{60.077%{transform:translate(35.5823vw,60.077vh) scale(.3369)}to{transform:translate(32.6827vw,100vh) scale(.3369)}}.snow:nth-child(234){opacity:.092;transform:translate(80.1937vw,-10px) scale(.4453);animation:fall-234 10s -6s linear infinite}@keyframes fall-234{60.064%{transform:translate(82.5024vw,60.064vh) scale(.4453)}to{transform:translate(81.34805vw,100vh) scale(.4453)}}.snow:nth-child(235){opacity:1.439;transform:translate(51.8957vw,-10px) scale(.3531);animation:fall-235 17s -6s linear infinite}@keyframes fall-235{61.722%{transform:translate(52.0681vw,61.722vh) scale(.3531)}to{transform:translate(51.9819vw,100vh) scale(.3531)}}.snow:nth-child(236){opacity:.9018;transform:translate(47.9211vw,-10px) scale(.4481);animation:fall-236 29s -10s linear infinite}@keyframes fall-236{46.605%{transform:translate(53.4683vw,46.605vh) scale(.4481)}to{transform:translate(50.6947vw,100vh) scale(.4481)}}.snow:nth-child(237){opacity:1.1038;transform:translate(46.6286vw,-10px) scale(.6589);animation:fall-237 10s -21s linear infinite}@keyframes fall-237{46.013%{transform:translate(43.3526vw,46.013vh) scale(.6589)}to{transform:translate(44.9906vw,100vh) scale(.6589)}}.snow:nth-child(238){opacity:.7968;transform:translate(58.9898vw,-10px) scale(.4066);animation:fall-238 15s -4s linear infinite}@keyframes fall-238{32.283%{transform:translate(53.7318vw,32.283vh) scale(.4066)}to{transform:translate(56.3608vw,100vh) scale(.4066)}}.snow:nth-child(239){opacity:1.4068;transform:translate(11.9486vw,-10px) scale(.9586);animation:fall-239 18s -17s linear infinite}@keyframes fall-239{71.368%{transform:translate(14.765vw,71.368vh) scale(.9586)}to{transform:translate(13.3568vw,100vh) scale(.9586)}}.snow:nth-child(240){opacity:1.069;transform:translate(65.6632vw,-10px) scale(.1429);animation:fall-240 19s -21s linear infinite}@keyframes fall-240{69.009%{transform:translate(62.3137vw,69.009vh) scale(.1429)}to{transform:translate(63.98845vw,100vh) scale(.1429)}}.snow:nth-child(241){opacity:.7382;transform:translate(47.8723vw,-10px) scale(.1964);animation:fall-241 22s -27s linear infinite}@keyframes fall-241{47.031%{transform:translate(44.5341vw,47.031vh) scale(.1964)}to{transform:translate(46.2032vw,100vh) scale(.1964)}}.snow:nth-child(242){opacity:1.0558;transform:translate(52.2595vw,-10px) scale(.1859);animation:fall-242 14s -29s linear infinite}@keyframes fall-242{77.396%{transform:translate(45.1252vw,77.396vh) scale(.1859)}to{transform:translate(48.69235vw,100vh) scale(.1859)}}.snow:nth-child(243){opacity:.5112;transform:translate(46.98vw,-10px) scale(.9334);animation:fall-243 23s -21s linear infinite}@keyframes fall-243{43.19%{transform:translate(56.9214vw,43.19vh) scale(.9334)}to{transform:translate(51.9507vw,100vh) scale(.9334)}}.snow:nth-child(244){opacity:.818;transform:translate(88.5582vw,-10px) scale(.1492);animation:fall-244 29s -15s linear infinite}@keyframes fall-244{71.521%{transform:translate(97.7016vw,71.521vh) scale(.1492)}to{transform:translate(93.1299vw,100vh) scale(.1492)}}.snow:nth-child(245){opacity:1.2008;transform:translate(42.1603vw,-10px) scale(.4905);animation:fall-245 14s -27s linear infinite}@keyframes fall-245{39.603%{transform:translate(46.8956vw,39.603vh) scale(.4905)}to{transform:translate(44.52795vw,100vh) scale(.4905)}}.snow:nth-child(246){opacity:1.0884;transform:translate(27.0095vw,-10px) scale(.8055);animation:fall-246 30s -27s linear infinite}@keyframes fall-246{62.436%{transform:translate(25.9068vw,62.436vh) scale(.8055)}to{transform:translate(26.45815vw,100vh) scale(.8055)}}.snow:nth-child(247){opacity:1.3546;transform:translate(11.0756vw,-10px) scale(.4036);animation:fall-247 25s -2s linear infinite}@keyframes fall-247{55.264%{transform:translate(14.9042vw,55.264vh) scale(.4036)}to{transform:translate(12.9899vw,100vh) scale(.4036)}}.snow:nth-child(248){opacity:.4064;transform:translate(32.0202vw,-10px) scale(.5048);animation:fall-248 17s -10s linear infinite}@keyframes fall-248{63.396%{transform:translate(22.2366vw,63.396vh) scale(.5048)}to{transform:translate(27.1284vw,100vh) scale(.5048)}}.snow:nth-child(249){opacity:.814;transform:translate(49.8201vw,-10px) scale(.9293);animation:fall-249 30s -7s linear infinite}@keyframes fall-249{60.437%{transform:translate(47.4876vw,60.437vh) scale(.9293)}to{transform:translate(48.65385vw,100vh) scale(.9293)}}.snow:nth-child(250){opacity:.3222;transform:translate(2.3822vw,-10px) scale(.1942);animation:fall-250 19s -19s linear infinite}@keyframes fall-250{34.036%{transform:translate(5.5971vw,34.036vh) scale(.1942)}to{transform:translate(3.98965vw,100vh) scale(.1942)}}.snow:nth-child(251){opacity:.3328;transform:translate(39.6663vw,-10px) scale(.5955);animation:fall-251 13s -19s linear infinite}@keyframes fall-251{65.85%{transform:translate(31.8784vw,65.85vh) scale(.5955)}to{transform:translate(35.77235vw,100vh) scale(.5955)}}.snow:nth-child(252){opacity:1.8988;transform:translate(98.0985vw,-10px) scale(.0549);animation:fall-252 14s -26s linear infinite}@keyframes fall-252{44.722%{transform:translate(93.4314vw,44.722vh) scale(.0549)}to{transform:translate(95.76495vw,100vh) scale(.0549)}}.snow:nth-child(253){opacity:.3628;transform:translate(95.8028vw,-10px) scale(.9471);animation:fall-253 11s -11s linear infinite}@keyframes fall-253{72.571%{transform:translate(96.0162vw,72.571vh) scale(.9471)}to{transform:translate(95.9095vw,100vh) scale(.9471)}}.snow:nth-child(254){opacity:1.9812;transform:translate(26.7872vw,-10px) scale(.7843);animation:fall-254 10s -16s linear infinite}@keyframes fall-254{60.671%{transform:translate(17.4113vw,60.671vh) scale(.7843)}to{transform:translate(22.09925vw,100vh) scale(.7843)}}.snow:nth-child(255){opacity:1.2996;transform:translate(80.8152vw,-10px) scale(.5435);animation:fall-255 10s -29s linear infinite}@keyframes fall-255{73.168%{transform:translate(71.3106vw,73.168vh) scale(.5435)}to{transform:translate(76.0629vw,100vh) scale(.5435)}}.snow:nth-child(256){opacity:1.542;transform:translate(73.4013vw,-10px) scale(.8126);animation:fall-256 22s -27s linear infinite}@keyframes fall-256{70.808%{transform:translate(73.9428vw,70.808vh) scale(.8126)}to{transform:translate(73.67205vw,100vh) scale(.8126)}}.snow:nth-child(257){opacity:1.2698;transform:translate(24.3898vw,-10px) scale(.7835);animation:fall-257 15s -20s linear infinite}@keyframes fall-257{61.527%{transform:translate(14.5222vw,61.527vh) scale(.7835)}to{transform:translate(19.456vw,100vh) scale(.7835)}}.snow:nth-child(258){opacity:.407;transform:translate(28.1974vw,-10px) scale(.046);animation:fall-258 20s -11s linear infinite}@keyframes fall-258{60.288%{transform:translate(34.4326vw,60.288vh) scale(.046)}to{transform:translate(31.315vw,100vh) scale(.046)}}.snow:nth-child(259){opacity:.5108;transform:translate(15.1158vw,-10px) scale(.1473);animation:fall-259 10s -8s linear infinite}@keyframes fall-259{58.481%{transform:translate(10.7185vw,58.481vh) scale(.1473)}to{transform:translate(12.91715vw,100vh) scale(.1473)}}.snow:nth-child(260){opacity:1.1964;transform:translate(13.3812vw,-10px) scale(.5365);animation:fall-260 12s -6s linear infinite}@keyframes fall-260{60.305%{transform:translate(11.5066vw,60.305vh) scale(.5365)}to{transform:translate(12.4439vw,100vh) scale(.5365)}}.snow:nth-child(261){opacity:1.97;transform:translate(93.6957vw,-10px) scale(.1948);animation:fall-261 19s -2s linear infinite}@keyframes fall-261{40.675%{transform:translate(98.2369vw,40.675vh) scale(.1948)}to{transform:translate(95.9663vw,100vh) scale(.1948)}}.snow:nth-child(262){opacity:.4422;transform:translate(35.1798vw,-10px) scale(.799);animation:fall-262 24s -30s linear infinite}@keyframes fall-262{39.53%{transform:translate(30.1589vw,39.53vh) scale(.799)}to{transform:translate(32.66935vw,100vh) scale(.799)}}.snow:nth-child(263){opacity:1.946;transform:translate(91.3991vw,-10px) scale(.7542);animation:fall-263 17s -5s linear infinite}@keyframes fall-263{30.886%{transform:translate(94.4352vw,30.886vh) scale(.7542)}to{transform:translate(92.91715vw,100vh) scale(.7542)}}.snow:nth-child(264){opacity:1.2;transform:translate(43.5527vw,-10px) scale(.0275);animation:fall-264 11s -23s linear infinite}@keyframes fall-264{47.803%{transform:translate(48.5682vw,47.803vh) scale(.0275)}to{transform:translate(46.06045vw,100vh) scale(.0275)}}.snow:nth-child(265){opacity:1.8526;transform:translate(15.3362vw,-10px) scale(.7509);animation:fall-265 18s -8s linear infinite}@keyframes fall-265{43.455%{transform:translate(10.1903vw,43.455vh) scale(.7509)}to{transform:translate(12.76325vw,100vh) scale(.7509)}}.snow:nth-child(266){opacity:1.8842;transform:translate(96.9689vw,-10px) scale(.192);animation:fall-266 13s -26s linear infinite}@keyframes fall-266{66.177%{transform:translate(102.7531vw,66.177vh) scale(.192)}to{transform:translate(99.861vw,100vh) scale(.192)}}.snow:nth-child(267){opacity:1.9578;transform:translate(36.796vw,-10px) scale(.0777);animation:fall-267 24s -6s linear infinite}@keyframes fall-267{44.292%{transform:translate(33.5913vw,44.292vh) scale(.0777)}to{transform:translate(35.19365vw,100vh) scale(.0777)}}.snow:nth-child(268){opacity:.5446;transform:translate(46.9323vw,-10px) scale(.9958);animation:fall-268 18s -30s linear infinite}@keyframes fall-268{31.566%{transform:translate(44.6651vw,31.566vh) scale(.9958)}to{transform:translate(45.7987vw,100vh) scale(.9958)}}.snow:nth-child(269){opacity:.3654;transform:translate(64.1174vw,-10px) scale(.8369);animation:fall-269 26s -22s linear infinite}@keyframes fall-269{41.604%{transform:translate(73.0509vw,41.604vh) scale(.8369)}to{transform:translate(68.58415vw,100vh) scale(.8369)}}.snow:nth-child(270){opacity:.6214;transform:translate(92.051vw,-10px) scale(.5292);animation:fall-270 10s -18s linear infinite}@keyframes fall-270{62.944%{transform:translate(84.9725vw,62.944vh) scale(.5292)}to{transform:translate(88.51175vw,100vh) scale(.5292)}}.snow:nth-child(271){opacity:.288;transform:translate(91.2793vw,-10px) scale(.6197);animation:fall-271 17s -18s linear infinite}@keyframes fall-271{42.268%{transform:translate(90.7842vw,42.268vh) scale(.6197)}to{transform:translate(91.03175vw,100vh) scale(.6197)}}.snow:nth-child(272){opacity:1.7942;transform:translate(92.6741vw,-10px) scale(.8034);animation:fall-272 10s -30s linear infinite}@keyframes fall-272{58.176%{transform:translate(87.8656vw,58.176vh) scale(.8034)}to{transform:translate(90.26985vw,100vh) scale(.8034)}}.snow:nth-child(273){opacity:.1612;transform:translate(91.4034vw,-10px) scale(.1668);animation:fall-273 20s -7s linear infinite}@keyframes fall-273{68.787%{transform:translate(83.6666vw,68.787vh) scale(.1668)}to{transform:translate(87.535vw,100vh) scale(.1668)}}.snow:nth-child(274){opacity:.2922;transform:translate(68.3518vw,-10px) scale(.3672);animation:fall-274 26s -19s linear infinite}@keyframes fall-274{55.008%{transform:translate(77.0658vw,55.008vh) scale(.3672)}to{transform:translate(72.7088vw,100vh) scale(.3672)}}.snow:nth-child(275){opacity:1.3648;transform:translate(2.1605vw,-10px) scale(.1786);animation:fall-275 27s -21s linear infinite}@keyframes fall-275{49.316%{transform:translate(-6.6466vw,49.316vh) scale(.1786)}to{transform:translate(-2.24305vw,100vh) scale(.1786)}}.snow:nth-child(276){opacity:1.607;transform:translate(17.0693vw,-10px) scale(.0224);animation:fall-276 28s -3s linear infinite}@keyframes fall-276{68.954%{transform:translate(24.0874vw,68.954vh) scale(.0224)}to{transform:translate(20.57835vw,100vh) scale(.0224)}}.snow:nth-child(277){opacity:.6944;transform:translate(43.3644vw,-10px) scale(.3344);animation:fall-277 19s -18s linear infinite}@keyframes fall-277{42.361%{transform:translate(33.5978vw,42.361vh) scale(.3344)}to{transform:translate(38.4811vw,100vh) scale(.3344)}}.snow:nth-child(278){opacity:.9766;transform:translate(66.8854vw,-10px) scale(.5675);animation:fall-278 10s -10s linear infinite}@keyframes fall-278{44.776%{transform:translate(73.5294vw,44.776vh) scale(.5675)}to{transform:translate(70.2074vw,100vh) scale(.5675)}}.snow:nth-child(279){opacity:1.9572;transform:translate(10.6983vw,-10px) scale(.6667);animation:fall-279 26s -15s linear infinite}@keyframes fall-279{48.731%{transform:translate(5.6137vw,48.731vh) scale(.6667)}to{transform:translate(8.156vw,100vh) scale(.6667)}}.snow:nth-child(280){opacity:.8202;transform:translate(23.7015vw,-10px) scale(.8473);animation:fall-280 24s -30s linear infinite}@keyframes fall-280{32.427%{transform:translate(26.0094vw,32.427vh) scale(.8473)}to{transform:translate(24.85545vw,100vh) scale(.8473)}}.snow:nth-child(281){opacity:1.7202;transform:translate(47.4539vw,-10px) scale(.8966);animation:fall-281 15s -17s linear infinite}@keyframes fall-281{44.525%{transform:translate(56.908vw,44.525vh) scale(.8966)}to{transform:translate(52.18095vw,100vh) scale(.8966)}}.snow:nth-child(282){opacity:1.7552;transform:translate(13.3239vw,-10px) scale(.6448);animation:fall-282 23s -15s linear infinite}@keyframes fall-282{39.106%{transform:translate(22.258vw,39.106vh) scale(.6448)}to{transform:translate(17.79095vw,100vh) scale(.6448)}}.snow:nth-child(283){opacity:1.1492;transform:translate(26.774vw,-10px) scale(.8649);animation:fall-283 21s -11s linear infinite}@keyframes fall-283{59.132%{transform:translate(25.1654vw,59.132vh) scale(.8649)}to{transform:translate(25.9697vw,100vh) scale(.8649)}}.snow:nth-child(284){opacity:.7386;transform:translate(17.1895vw,-10px) scale(.0941);animation:fall-284 20s -23s linear infinite}@keyframes fall-284{34.977%{transform:translate(16.6183vw,34.977vh) scale(.0941)}to{transform:translate(16.9039vw,100vh) scale(.0941)}}.snow:nth-child(285){opacity:.5714;transform:translate(25.6714vw,-10px) scale(.7941);animation:fall-285 16s -5s linear infinite}@keyframes fall-285{31.632%{transform:translate(27.3058vw,31.632vh) scale(.7941)}to{transform:translate(26.4886vw,100vh) scale(.7941)}}.snow:nth-child(286){opacity:1.145;transform:translate(36.6429vw,-10px) scale(.9142);animation:fall-286 22s -16s linear infinite}@keyframes fall-286{79.015%{transform:translate(44.8138vw,79.015vh) scale(.9142)}to{transform:translate(40.72835vw,100vh) scale(.9142)}}.snow:nth-child(287){opacity:.8266;transform:translate(74.1991vw,-10px) scale(.1547);animation:fall-287 21s -9s linear infinite}@keyframes fall-287{63.305%{transform:translate(68.3112vw,63.305vh) scale(.1547)}to{transform:translate(71.25515vw,100vh) scale(.1547)}}.snow:nth-child(288){opacity:1.9832;transform:translate(99.7176vw,-10px) scale(.9405);animation:fall-288 12s -27s linear infinite}@keyframes fall-288{35.26%{transform:translate(105.1454vw,35.26vh) scale(.9405)}to{transform:translate(102.4315vw,100vh) scale(.9405)}}.snow:nth-child(289){opacity:1.0218;transform:translate(46.154vw,-10px) scale(.1361);animation:fall-289 17s -23s linear infinite}@keyframes fall-289{56.11%{transform:translate(38.7682vw,56.11vh) scale(.1361)}to{transform:translate(42.4611vw,100vh) scale(.1361)}}.snow:nth-child(290){opacity:1.102;transform:translate(64.1352vw,-10px) scale(.6639);animation:fall-290 19s -23s linear infinite}@keyframes fall-290{39.112%{transform:translate(71.171vw,39.112vh) scale(.6639)}to{transform:translate(67.6531vw,100vh) scale(.6639)}}.snow:nth-child(291){opacity:1.3346;transform:translate(11.0456vw,-10px) scale(.0735);animation:fall-291 23s -19s linear infinite}@keyframes fall-291{63.006%{transform:translate(11.2572vw,63.006vh) scale(.0735)}to{transform:translate(11.1514vw,100vh) scale(.0735)}}.snow:nth-child(292){opacity:1.0458;transform:translate(65.3732vw,-10px) scale(.5225);animation:fall-292 29s -27s linear infinite}@keyframes fall-292{38.267%{transform:translate(65.2409vw,38.267vh) scale(.5225)}to{transform:translate(65.30705vw,100vh) scale(.5225)}}.snow:nth-child(293){opacity:1.4106;transform:translate(48.8223vw,-10px) scale(.0752);animation:fall-293 24s -19s linear infinite}@keyframes fall-293{41.907%{transform:translate(43.1782vw,41.907vh) scale(.0752)}to{transform:translate(46.00025vw,100vh) scale(.0752)}}.snow:nth-child(294){opacity:.1608;transform:translate(48.6214vw,-10px) scale(.2999);animation:fall-294 18s -15s linear infinite}@keyframes fall-294{79.497%{transform:translate(42.4219vw,79.497vh) scale(.2999)}to{transform:translate(45.52165vw,100vh) scale(.2999)}}.snow:nth-child(295){opacity:.996;transform:translate(54.0172vw,-10px) scale(.9541);animation:fall-295 16s -11s linear infinite}@keyframes fall-295{57.058%{transform:translate(52.7717vw,57.058vh) scale(.9541)}to{transform:translate(53.39445vw,100vh) scale(.9541)}}.snow:nth-child(296){opacity:1.788;transform:translate(41.3054vw,-10px) scale(.6645);animation:fall-296 16s -30s linear infinite}@keyframes fall-296{48.747%{transform:translate(43.6586vw,48.747vh) scale(.6645)}to{transform:translate(42.482vw,100vh) scale(.6645)}}.snow:nth-child(297){opacity:.885;transform:translate(2.4153vw,-10px) scale(.477);animation:fall-297 27s -18s linear infinite}@keyframes fall-297{33.434%{transform:translate(2.806vw,33.434vh) scale(.477)}to{transform:translate(2.61065vw,100vh) scale(.477)}}.snow:nth-child(298){opacity:.0652;transform:translate(99.3991vw,-10px) scale(.4539);animation:fall-298 14s -22s linear infinite}@keyframes fall-298{34.586%{transform:translate(98.9167vw,34.586vh) scale(.4539)}to{transform:translate(99.1579vw,100vh) scale(.4539)}}.snow:nth-child(299){opacity:.2698;transform:translate(36.4371vw,-10px) scale(.4706);animation:fall-299 20s -17s linear infinite}@keyframes fall-299{36.409%{transform:translate(34.6236vw,36.409vh) scale(.4706)}to{transform:translate(35.53035vw,100vh) scale(.4706)}}.snow:nth-child(300){opacity:.185;transform:translate(35.891vw,-10px) scale(.7441);animation:fall-300 11s -28s linear infinite}@keyframes fall-300{58.346%{transform:translate(30.4911vw,58.346vh) scale(.7441)}to{transform:translate(33.19105vw,100vh) scale(.7441)}}.snow:nth-child(301){opacity:.7824;transform:translate(50.8503vw,-10px) scale(.0495);animation:fall-301 19s -6s linear infinite}@keyframes fall-301{64.957%{transform:translate(56.5633vw,64.957vh) scale(.0495)}to{transform:translate(53.7068vw,100vh) scale(.0495)}}.snow:nth-child(302){opacity:1.7458;transform:translate(97.8714vw,-10px) scale(.5746);animation:fall-302 28s -12s linear infinite}@keyframes fall-302{79.121%{transform:translate(96.8148vw,79.121vh) scale(.5746)}to{transform:translate(97.3431vw,100vh) scale(.5746)}}.snow:nth-child(303){opacity:1.0374;transform:translate(33.1464vw,-10px) scale(.0132);animation:fall-303 30s -24s linear infinite}@keyframes fall-303{30.472%{transform:translate(32.0283vw,30.472vh) scale(.0132)}to{transform:translate(32.58735vw,100vh) scale(.0132)}}.snow:nth-child(304){opacity:1.2114;transform:translate(38.6191vw,-10px) scale(.2261);animation:fall-304 29s -25s linear infinite}@keyframes fall-304{34.416%{transform:translate(41.8535vw,34.416vh) scale(.2261)}to{transform:translate(40.2363vw,100vh) scale(.2261)}}.snow:nth-child(305){opacity:1.6296;transform:translate(23.3196vw,-10px) scale(.0436);animation:fall-305 26s -23s linear infinite}@keyframes fall-305{53.834%{transform:translate(18.4767vw,53.834vh) scale(.0436)}to{transform:translate(20.89815vw,100vh) scale(.0436)}}.snow:nth-child(306){opacity:1.919;transform:translate(32.8199vw,-10px) scale(.5021);animation:fall-306 15s -3s linear infinite}@keyframes fall-306{62.866%{transform:translate(27.403vw,62.866vh) scale(.5021)}to{transform:translate(30.11145vw,100vh) scale(.5021)}}.snow:nth-child(307){opacity:.2522;transform:translate(43.3148vw,-10px) scale(.3481);animation:fall-307 18s -19s linear infinite}@keyframes fall-307{50.064%{transform:translate(52.8616vw,50.064vh) scale(.3481)}to{transform:translate(48.0882vw,100vh) scale(.3481)}}.snow:nth-child(308){opacity:.1396;transform:translate(.6169vw,-10px) scale(.4555);animation:fall-308 13s -12s linear infinite}@keyframes fall-308{71.479%{transform:translate(7.2495vw,71.479vh) scale(.4555)}to{transform:translate(3.9332vw,100vh) scale(.4555)}}.snow:nth-child(309){opacity:.1734;transform:translate(59.6546vw,-10px) scale(.8361);animation:fall-309 24s -10s linear infinite}@keyframes fall-309{79.791%{transform:translate(65.2476vw,79.791vh) scale(.8361)}to{transform:translate(62.4511vw,100vh) scale(.8361)}}.snow:nth-child(310){opacity:1.3738;transform:translate(13.2385vw,-10px) scale(.5246);animation:fall-310 16s -14s linear infinite}@keyframes fall-310{69.775%{transform:translate(14.2382vw,69.775vh) scale(.5246)}to{transform:translate(13.73835vw,100vh) scale(.5246)}}.snow:nth-child(311){opacity:1.5816;transform:translate(18.2933vw,-10px) scale(.8602);animation:fall-311 14s -4s linear infinite}@keyframes fall-311{72.645%{transform:translate(15.2301vw,72.645vh) scale(.8602)}to{transform:translate(16.7617vw,100vh) scale(.8602)}}.snow:nth-child(312){opacity:.5026;transform:translate(78.0505vw,-10px) scale(.013);animation:fall-312 10s -10s linear infinite}@keyframes fall-312{47.842%{transform:translate(71.0533vw,47.842vh) scale(.013)}to{transform:translate(74.5519vw,100vh) scale(.013)}}.snow:nth-child(313){opacity:1.2184;transform:translate(65.0636vw,-10px) scale(.0624);animation:fall-313 15s -17s linear infinite}@keyframes fall-313{32.644%{transform:translate(56.7616vw,32.644vh) scale(.0624)}to{transform:translate(60.9126vw,100vh) scale(.0624)}}.snow:nth-child(314){opacity:.258;transform:translate(93.7445vw,-10px) scale(.6905);animation:fall-314 28s -6s linear infinite}@keyframes fall-314{65.463%{transform:translate(84.2271vw,65.463vh) scale(.6905)}to{transform:translate(88.9858vw,100vh) scale(.6905)}}.snow:nth-child(315){opacity:.7652;transform:translate(76.2463vw,-10px) scale(.6905);animation:fall-315 26s -9s linear infinite}@keyframes fall-315{74.509%{transform:translate(69.8612vw,74.509vh) scale(.6905)}to{transform:translate(73.05375vw,100vh) scale(.6905)}}.snow:nth-child(316){opacity:.4632;transform:translate(51.6774vw,-10px) scale(.561);animation:fall-316 13s -21s linear infinite}@keyframes fall-316{49.179%{transform:translate(42.2686vw,49.179vh) scale(.561)}to{transform:translate(46.973vw,100vh) scale(.561)}}.snow:nth-child(317){opacity:.6564;transform:translate(44.6877vw,-10px) scale(.9109);animation:fall-317 17s -17s linear infinite}@keyframes fall-317{46.209%{transform:translate(48.2807vw,46.209vh) scale(.9109)}to{transform:translate(46.4842vw,100vh) scale(.9109)}}.snow:nth-child(318){opacity:.1238;transform:translate(10.9719vw,-10px) scale(.1709);animation:fall-318 22s -19s linear infinite}@keyframes fall-318{34.895%{transform:translate(4.1447vw,34.895vh) scale(.1709)}to{transform:translate(7.5583vw,100vh) scale(.1709)}}.snow:nth-child(319){opacity:.0332;transform:translate(66.1396vw,-10px) scale(.3133);animation:fall-319 22s -10s linear infinite}@keyframes fall-319{56.896%{transform:translate(56.5197vw,56.896vh) scale(.3133)}to{transform:translate(61.32965vw,100vh) scale(.3133)}}.snow:nth-child(320){opacity:.4748;transform:translate(16.0907vw,-10px) scale(.7638);animation:fall-320 13s -17s linear infinite}@keyframes fall-320{54.351%{transform:translate(19.5463vw,54.351vh) scale(.7638)}to{transform:translate(17.8185vw,100vh) scale(.7638)}}.snow:nth-child(321){opacity:.9634;transform:translate(34.0184vw,-10px) scale(.5855);animation:fall-321 20s -21s linear infinite}@keyframes fall-321{62.702%{transform:translate(26.0141vw,62.702vh) scale(.5855)}to{transform:translate(30.01625vw,100vh) scale(.5855)}}.snow:nth-child(322){opacity:.4986;transform:translate(93.7738vw,-10px) scale(.0561);animation:fall-322 15s -23s linear infinite}@keyframes fall-322{68.55%{transform:translate(86.053vw,68.55vh) scale(.0561)}to{transform:translate(89.9134vw,100vh) scale(.0561)}}.snow:nth-child(323){opacity:1.2794;transform:translate(3.2091vw,-10px) scale(.4968);animation:fall-323 11s -22s linear infinite}@keyframes fall-323{30.156%{transform:translate(3.7436vw,30.156vh) scale(.4968)}to{transform:translate(3.47635vw,100vh) scale(.4968)}}.snow:nth-child(324){opacity:1.3554;transform:translate(7.1731vw,-10px) scale(.4339);animation:fall-324 27s -24s linear infinite}@keyframes fall-324{42.956%{transform:translate(14.7296vw,42.956vh) scale(.4339)}to{transform:translate(10.95135vw,100vh) scale(.4339)}}.snow:nth-child(325){opacity:.6054;transform:translate(90.9411vw,-10px) scale(.216);animation:fall-325 10s -6s linear infinite}@keyframes fall-325{73.362%{transform:translate(96.3578vw,73.362vh) scale(.216)}to{transform:translate(93.64945vw,100vh) scale(.216)}}.snow:nth-child(326){opacity:1.86;transform:translate(23.5949vw,-10px) scale(.2568);animation:fall-326 28s -3s linear infinite}@keyframes fall-326{77.382%{transform:translate(16.6141vw,77.382vh) scale(.2568)}to{transform:translate(20.1045vw,100vh) scale(.2568)}}.snow:nth-child(327){opacity:.8672;transform:translate(64.7716vw,-10px) scale(.5472);animation:fall-327 14s -4s linear infinite}@keyframes fall-327{57.228%{transform:translate(66.6534vw,57.228vh) scale(.5472)}to{transform:translate(65.7125vw,100vh) scale(.5472)}}.snow:nth-child(328){opacity:1.4244;transform:translate(26.7894vw,-10px) scale(.3289);animation:fall-328 28s -12s linear infinite}@keyframes fall-328{49.84%{transform:translate(26.508vw,49.84vh) scale(.3289)}to{transform:translate(26.6487vw,100vh) scale(.3289)}}.snow:nth-child(329){opacity:1.2258;transform:translate(42.9512vw,-10px) scale(.1423);animation:fall-329 29s -19s linear infinite}@keyframes fall-329{55.779%{transform:translate(41.5375vw,55.779vh) scale(.1423)}to{transform:translate(42.24435vw,100vh) scale(.1423)}}.snow:nth-child(330){opacity:.3158;transform:translate(45.5952vw,-10px) scale(.2554);animation:fall-330 24s -30s linear infinite}@keyframes fall-330{75.73%{transform:translate(49.538vw,75.73vh) scale(.2554)}to{transform:translate(47.5666vw,100vh) scale(.2554)}}.snow:nth-child(331){opacity:1.3556;transform:translate(70.7052vw,-10px) scale(.3249);animation:fall-331 16s -3s linear infinite}@keyframes fall-331{68.359%{transform:translate(79.4184vw,68.359vh) scale(.3249)}to{transform:translate(75.0618vw,100vh) scale(.3249)}}.snow:nth-child(332){opacity:1.1306;transform:translate(49.1098vw,-10px) scale(.1294);animation:fall-332 12s -10s linear infinite}@keyframes fall-332{53.472%{transform:translate(41.6001vw,53.472vh) scale(.1294)}to{transform:translate(45.35495vw,100vh) scale(.1294)}}.snow:nth-child(333){opacity:.5564;transform:translate(56.2054vw,-10px) scale(.3123);animation:fall-333 23s -9s linear infinite}@keyframes fall-333{69.623%{transform:translate(53.1208vw,69.623vh) scale(.3123)}to{transform:translate(54.6631vw,100vh) scale(.3123)}}.snow:nth-child(334){opacity:1.1468;transform:translate(18.4425vw,-10px) scale(.9036);animation:fall-334 15s -16s linear infinite}@keyframes fall-334{64.601%{transform:translate(8.4894vw,64.601vh) scale(.9036)}to{transform:translate(13.46595vw,100vh) scale(.9036)}}.snow:nth-child(335){opacity:1.9372;transform:translate(48.513vw,-10px) scale(.9068);animation:fall-335 20s -8s linear infinite}@keyframes fall-335{60.177%{transform:translate(39.1377vw,60.177vh) scale(.9068)}to{transform:translate(43.82535vw,100vh) scale(.9068)}}.snow:nth-child(336){opacity:1.8182;transform:translate(22.9608vw,-10px) scale(.6151);animation:fall-336 24s -30s linear infinite}@keyframes fall-336{45.946%{transform:translate(28.2668vw,45.946vh) scale(.6151)}to{transform:translate(25.6138vw,100vh) scale(.6151)}}.snow:nth-child(337){opacity:1.32;transform:translate(12.2985vw,-10px) scale(.9272);animation:fall-337 26s -5s linear infinite}@keyframes fall-337{60.907%{transform:translate(3.4203vw,60.907vh) scale(.9272)}to{transform:translate(7.8594vw,100vh) scale(.9272)}}.snow:nth-child(338){opacity:.1664;transform:translate(68.7706vw,-10px) scale(.3242);animation:fall-338 28s -4s linear infinite}@keyframes fall-338{43.843%{transform:translate(59.7459vw,43.843vh) scale(.3242)}to{transform:translate(64.25825vw,100vh) scale(.3242)}}.snow:nth-child(339){opacity:1.4686;transform:translate(57.7896vw,-10px) scale(.8438);animation:fall-339 19s -28s linear infinite}@keyframes fall-339{42.089%{transform:translate(63.189vw,42.089vh) scale(.8438)}to{transform:translate(60.4893vw,100vh) scale(.8438)}}.snow:nth-child(340){opacity:.2826;transform:translate(24.65vw,-10px) scale(.2184);animation:fall-340 17s -8s linear infinite}@keyframes fall-340{64.088%{transform:translate(21.4394vw,64.088vh) scale(.2184)}to{transform:translate(23.0447vw,100vh) scale(.2184)}}.snow:nth-child(341){opacity:1.0528;transform:translate(78.7936vw,-10px) scale(.014);animation:fall-341 24s -28s linear infinite}@keyframes fall-341{79.691%{transform:translate(83.9813vw,79.691vh) scale(.014)}to{transform:translate(81.38745vw,100vh) scale(.014)}}.snow:nth-child(342){opacity:1.1824;transform:translate(67.5443vw,-10px) scale(.9508);animation:fall-342 11s -4s linear infinite}@keyframes fall-342{64.957%{transform:translate(66.2565vw,64.957vh) scale(.9508)}to{transform:translate(66.9004vw,100vh) scale(.9508)}}.snow:nth-child(343){opacity:1.3836;transform:translate(45.1969vw,-10px) scale(.5976);animation:fall-343 14s -21s linear infinite}@keyframes fall-343{52.152%{transform:translate(45.5502vw,52.152vh) scale(.5976)}to{transform:translate(45.37355vw,100vh) scale(.5976)}}.snow:nth-child(344){opacity:.2816;transform:translate(2.8838vw,-10px) scale(.0271);animation:fall-344 22s -9s linear infinite}@keyframes fall-344{78.445%{transform:translate(12.3505vw,78.445vh) scale(.0271)}to{transform:translate(7.61715vw,100vh) scale(.0271)}}.snow:nth-child(345){opacity:.4104;transform:translate(38.6758vw,-10px) scale(.1795);animation:fall-345 20s -3s linear infinite}@keyframes fall-345{64.081%{transform:translate(33.2717vw,64.081vh) scale(.1795)}to{transform:translate(35.97375vw,100vh) scale(.1795)}}.snow:nth-child(346){opacity:.6816;transform:translate(46.3918vw,-10px) scale(.7028);animation:fall-346 18s -3s linear infinite}@keyframes fall-346{37.723%{transform:translate(36.5483vw,37.723vh) scale(.7028)}to{transform:translate(41.47005vw,100vh) scale(.7028)}}.snow:nth-child(347){opacity:1.6804;transform:translate(79.2599vw,-10px) scale(.1056);animation:fall-347 23s -8s linear infinite}@keyframes fall-347{62.282%{transform:translate(80.0503vw,62.282vh) scale(.1056)}to{transform:translate(79.6551vw,100vh) scale(.1056)}}.snow:nth-child(348){opacity:1.341;transform:translate(58.2707vw,-10px) scale(.5076);animation:fall-348 25s -24s linear infinite}@keyframes fall-348{51.157%{transform:translate(67.951vw,51.157vh) scale(.5076)}to{transform:translate(63.11085vw,100vh) scale(.5076)}}.snow:nth-child(349){opacity:.3986;transform:translate(37.9565vw,-10px) scale(.4578);animation:fall-349 21s -3s linear infinite}@keyframes fall-349{33.878%{transform:translate(41.6762vw,33.878vh) scale(.4578)}to{transform:translate(39.81635vw,100vh) scale(.4578)}}.snow:nth-child(350){opacity:.6414;transform:translate(25.7509vw,-10px) scale(.4263);animation:fall-350 26s -1s linear infinite}@keyframes fall-350{69.971%{transform:translate(24.7485vw,69.971vh) scale(.4263)}to{transform:translate(25.2497vw,100vh) scale(.4263)}}.snow:nth-child(351){opacity:.4378;transform:translate(38.7372vw,-10px) scale(.059);animation:fall-351 28s -2s linear infinite}@keyframes fall-351{67.628%{transform:translate(40.6727vw,67.628vh) scale(.059)}to{transform:translate(39.70495vw,100vh) scale(.059)}}.snow:nth-child(352){opacity:.4766;transform:translate(89.9193vw,-10px) scale(.1622);animation:fall-352 12s -26s linear infinite}@keyframes fall-352{64.766%{transform:translate(81.5569vw,64.766vh) scale(.1622)}to{transform:translate(85.7381vw,100vh) scale(.1622)}}.snow:nth-child(353){opacity:.2658;transform:translate(25.1504vw,-10px) scale(.7811);animation:fall-353 14s -4s linear infinite}@keyframes fall-353{48.157%{transform:translate(25.8511vw,48.157vh) scale(.7811)}to{transform:translate(25.50075vw,100vh) scale(.7811)}}.snow:nth-child(354){opacity:.37;transform:translate(19.6472vw,-10px) scale(.0641);animation:fall-354 19s -23s linear infinite}@keyframes fall-354{41.822%{transform:translate(20.1843vw,41.822vh) scale(.0641)}to{transform:translate(19.91575vw,100vh) scale(.0641)}}.snow:nth-child(355){opacity:.5672;transform:translate(80.0156vw,-10px) scale(.6799);animation:fall-355 23s -15s linear infinite}@keyframes fall-355{44.344%{transform:translate(80.0569vw,44.344vh) scale(.6799)}to{transform:translate(80.03625vw,100vh) scale(.6799)}}.snow:nth-child(356){opacity:.4952;transform:translate(88.3268vw,-10px) scale(.2306);animation:fall-356 16s -8s linear infinite}@keyframes fall-356{39.879%{transform:translate(82.409vw,39.879vh) scale(.2306)}to{transform:translate(85.3679vw,100vh) scale(.2306)}}.snow:nth-child(357){opacity:1.3374;transform:translate(10.3274vw,-10px) scale(.0591);animation:fall-357 13s -13s linear infinite}@keyframes fall-357{69.825%{transform:translate(.7532vw,69.825vh) scale(.0591)}to{transform:translate(5.5403vw,100vh) scale(.0591)}}.snow:nth-child(358){opacity:.0072;transform:translate(67.5855vw,-10px) scale(.8451);animation:fall-358 25s -1s linear infinite}@keyframes fall-358{40.905%{transform:translate(75.6614vw,40.905vh) scale(.8451)}to{transform:translate(71.62345vw,100vh) scale(.8451)}}.snow:nth-child(359){opacity:.1302;transform:translate(97.0096vw,-10px) scale(.2382);animation:fall-359 26s -3s linear infinite}@keyframes fall-359{79.184%{transform:translate(98.7983vw,79.184vh) scale(.2382)}to{transform:translate(97.90395vw,100vh) scale(.2382)}}.snow:nth-child(360){opacity:1.8164;transform:translate(3.5356vw,-10px) scale(.2017);animation:fall-360 26s -22s linear infinite}@keyframes fall-360{35.188%{transform:translate(1.8299vw,35.188vh) scale(.2017)}to{transform:translate(2.68275vw,100vh) scale(.2017)}}.snow:nth-child(361){opacity:1.8618;transform:translate(65.6882vw,-10px) scale(.3251);animation:fall-361 25s -12s linear infinite}@keyframes fall-361{31.323%{transform:translate(71.7513vw,31.323vh) scale(.3251)}to{transform:translate(68.71975vw,100vh) scale(.3251)}}.snow:nth-child(362){opacity:.7738;transform:translate(23.2727vw,-10px) scale(.9646);animation:fall-362 18s -14s linear infinite}@keyframes fall-362{51.003%{transform:translate(15.2769vw,51.003vh) scale(.9646)}to{transform:translate(19.2748vw,100vh) scale(.9646)}}.snow:nth-child(363){opacity:.7044;transform:translate(7.9769vw,-10px) scale(.9082);animation:fall-363 26s -12s linear infinite}@keyframes fall-363{36.425%{transform:translate(-2.0031vw,36.425vh) scale(.9082)}to{transform:translate(2.9869vw,100vh) scale(.9082)}}.snow:nth-child(364){opacity:.3722;transform:translate(16.7314vw,-10px) scale(.7238);animation:fall-364 10s -21s linear infinite}@keyframes fall-364{76.226%{transform:translate(15.6844vw,76.226vh) scale(.7238)}to{transform:translate(16.2079vw,100vh) scale(.7238)}}.snow:nth-child(365){opacity:1.5996;transform:translate(85.8786vw,-10px) scale(.4354);animation:fall-365 12s -9s linear infinite}@keyframes fall-365{56.331%{transform:translate(90.5431vw,56.331vh) scale(.4354)}to{transform:translate(88.21085vw,100vh) scale(.4354)}}.snow:nth-child(366){opacity:1.7572;transform:translate(89.4142vw,-10px) scale(.8143);animation:fall-366 26s -9s linear infinite}@keyframes fall-366{75.982%{transform:translate(86.1848vw,75.982vh) scale(.8143)}to{transform:translate(87.7995vw,100vh) scale(.8143)}}.snow:nth-child(367){opacity:1.3902;transform:translate(47.7302vw,-10px) scale(.8375);animation:fall-367 22s -3s linear infinite}@keyframes fall-367{31.665%{transform:translate(42.1767vw,31.665vh) scale(.8375)}to{transform:translate(44.95345vw,100vh) scale(.8375)}}.snow:nth-child(368){opacity:1.4528;transform:translate(94.5509vw,-10px) scale(.4026);animation:fall-368 20s -16s linear infinite}@keyframes fall-368{50.812%{transform:translate(101.8024vw,50.812vh) scale(.4026)}to{transform:translate(98.17665vw,100vh) scale(.4026)}}.snow:nth-child(369){opacity:.262;transform:translate(45.1923vw,-10px) scale(.5179);animation:fall-369 26s -10s linear infinite}@keyframes fall-369{60.124%{transform:translate(35.8343vw,60.124vh) scale(.5179)}to{transform:translate(40.5133vw,100vh) scale(.5179)}}.snow:nth-child(370){opacity:.495;transform:translate(48.4844vw,-10px) scale(.7328);animation:fall-370 11s -3s linear infinite}@keyframes fall-370{79.332%{transform:translate(55.1748vw,79.332vh) scale(.7328)}to{transform:translate(51.8296vw,100vh) scale(.7328)}}.snow:nth-child(371){opacity:1.2642;transform:translate(76.5988vw,-10px) scale(.007);animation:fall-371 25s -6s linear infinite}@keyframes fall-371{38.205%{transform:translate(78.4134vw,38.205vh) scale(.007)}to{transform:translate(77.5061vw,100vh) scale(.007)}}.snow:nth-child(372){opacity:1.4228;transform:translate(26.5436vw,-10px) scale(.5808);animation:fall-372 20s -13s linear infinite}@keyframes fall-372{38.342%{transform:translate(19.679vw,38.342vh) scale(.5808)}to{transform:translate(23.1113vw,100vh) scale(.5808)}}.snow:nth-child(373){opacity:1.976;transform:translate(73.0721vw,-10px) scale(.9826);animation:fall-373 17s -22s linear infinite}@keyframes fall-373{52.562%{transform:translate(71.887vw,52.562vh) scale(.9826)}to{transform:translate(72.47955vw,100vh) scale(.9826)}}.snow:nth-child(374){opacity:.2384;transform:translate(87.2998vw,-10px) scale(.8628);animation:fall-374 17s -27s linear infinite}@keyframes fall-374{62.565%{transform:translate(80.861vw,62.565vh) scale(.8628)}to{transform:translate(84.0804vw,100vh) scale(.8628)}}.snow:nth-child(375){opacity:.996;transform:translate(68.1079vw,-10px) scale(.548);animation:fall-375 29s -14s linear infinite}@keyframes fall-375{36.484%{transform:translate(69.6388vw,36.484vh) scale(.548)}to{transform:translate(68.87335vw,100vh) scale(.548)}}.snow:nth-child(376){opacity:.984;transform:translate(16.8511vw,-10px) scale(.4359);animation:fall-376 13s -2s linear infinite}@keyframes fall-376{38.476%{transform:translate(25.7796vw,38.476vh) scale(.4359)}to{transform:translate(21.31535vw,100vh) scale(.4359)}}.snow:nth-child(377){opacity:1.483;transform:translate(67.3763vw,-10px) scale(.3457);animation:fall-377 29s -21s linear infinite}@keyframes fall-377{59.551%{transform:translate(68.1913vw,59.551vh) scale(.3457)}to{transform:translate(67.7838vw,100vh) scale(.3457)}}.snow:nth-child(378){opacity:.6282;transform:translate(20.9519vw,-10px) scale(.9223);animation:fall-378 19s -23s linear infinite}@keyframes fall-378{39.948%{transform:translate(24.414vw,39.948vh) scale(.9223)}to{transform:translate(22.68295vw,100vh) scale(.9223)}}.snow:nth-child(379){opacity:1.1274;transform:translate(40.4894vw,-10px) scale(.3549);animation:fall-379 22s -13s linear infinite}@keyframes fall-379{72.319%{transform:translate(34.6957vw,72.319vh) scale(.3549)}to{transform:translate(37.59255vw,100vh) scale(.3549)}}.snow:nth-child(380){opacity:.9202;transform:translate(54.9487vw,-10px) scale(.0333);animation:fall-380 11s -28s linear infinite}@keyframes fall-380{57.228%{transform:translate(60.3636vw,57.228vh) scale(.0333)}to{transform:translate(57.65615vw,100vh) scale(.0333)}}.snow:nth-child(381){opacity:.6784;transform:translate(21.6808vw,-10px) scale(.8543);animation:fall-381 18s -23s linear infinite}@keyframes fall-381{37.62%{transform:translate(16.3345vw,37.62vh) scale(.8543)}to{transform:translate(19.00765vw,100vh) scale(.8543)}}.snow:nth-child(382){opacity:.1292;transform:translate(41.7167vw,-10px) scale(.212);animation:fall-382 10s -6s linear infinite}@keyframes fall-382{55.478%{transform:translate(47.1481vw,55.478vh) scale(.212)}to{transform:translate(44.4324vw,100vh) scale(.212)}}.snow:nth-child(383){opacity:.2684;transform:translate(15.2507vw,-10px) scale(.5504);animation:fall-383 23s -19s linear infinite}@keyframes fall-383{60.375%{transform:translate(17.1293vw,60.375vh) scale(.5504)}to{transform:translate(16.19vw,100vh) scale(.5504)}}.snow:nth-child(384){opacity:.7956;transform:translate(89.6209vw,-10px) scale(.3787);animation:fall-384 29s -28s linear infinite}@keyframes fall-384{78.868%{transform:translate(81.8013vw,78.868vh) scale(.3787)}to{transform:translate(85.7111vw,100vh) scale(.3787)}}.snow:nth-child(385){opacity:.629;transform:translate(9.1019vw,-10px) scale(.9866);animation:fall-385 30s -1s linear infinite}@keyframes fall-385{67.09%{transform:translate(12.6827vw,67.09vh) scale(.9866)}to{transform:translate(10.8923vw,100vh) scale(.9866)}}.snow:nth-child(386){opacity:.1802;transform:translate(70.9482vw,-10px) scale(.1638);animation:fall-386 29s -16s linear infinite}@keyframes fall-386{54.713%{transform:translate(72.7349vw,54.713vh) scale(.1638)}to{transform:translate(71.84155vw,100vh) scale(.1638)}}.snow:nth-child(387){opacity:1.9624;transform:translate(17.6315vw,-10px) scale(.9399);animation:fall-387 14s -9s linear infinite}@keyframes fall-387{40.675%{transform:translate(24.7233vw,40.675vh) scale(.9399)}to{transform:translate(21.1774vw,100vh) scale(.9399)}}.snow:nth-child(388){opacity:.763;transform:translate(35.8775vw,-10px) scale(.4961);animation:fall-388 29s -6s linear infinite}@keyframes fall-388{79.104%{transform:translate(35.9036vw,79.104vh) scale(.4961)}to{transform:translate(35.89055vw,100vh) scale(.4961)}}.snow:nth-child(389){opacity:.534;transform:translate(11.371vw,-10px) scale(.2374);animation:fall-389 12s -21s linear infinite}@keyframes fall-389{60.646%{transform:translate(18.0303vw,60.646vh) scale(.2374)}to{transform:translate(14.70065vw,100vh) scale(.2374)}}.snow:nth-child(390){opacity:1.5468;transform:translate(96.4161vw,-10px) scale(.6678);animation:fall-390 22s -19s linear infinite}@keyframes fall-390{68.432%{transform:translate(99.6891vw,68.432vh) scale(.6678)}to{transform:translate(98.0526vw,100vh) scale(.6678)}}.snow:nth-child(391){opacity:1.354;transform:translate(.3865vw,-10px) scale(.7186);animation:fall-391 29s -14s linear infinite}@keyframes fall-391{60.246%{transform:translate(-.909vw,60.246vh) scale(.7186)}to{transform:translate(-.26125vw,100vh) scale(.7186)}}.snow:nth-child(392){opacity:1.4618;transform:translate(34.0203vw,-10px) scale(.4016);animation:fall-392 19s -21s linear infinite}@keyframes fall-392{64.533%{transform:translate(31.89vw,64.533vh) scale(.4016)}to{transform:translate(32.95515vw,100vh) scale(.4016)}}.snow:nth-child(393){opacity:.3298;transform:translate(79.3933vw,-10px) scale(.5668);animation:fall-393 28s -5s linear infinite}@keyframes fall-393{73.322%{transform:translate(70.3138vw,73.322vh) scale(.5668)}to{transform:translate(74.85355vw,100vh) scale(.5668)}}.snow:nth-child(394){opacity:.6128;transform:translate(71.1268vw,-10px) scale(.1295);animation:fall-394 29s -22s linear infinite}@keyframes fall-394{69.091%{transform:translate(68.7551vw,69.091vh) scale(.1295)}to{transform:translate(69.94095vw,100vh) scale(.1295)}}.snow:nth-child(395){opacity:.9546;transform:translate(3.1202vw,-10px) scale(.3335);animation:fall-395 24s -23s linear infinite}@keyframes fall-395{37.882%{transform:translate(9.0238vw,37.882vh) scale(.3335)}to{transform:translate(6.072vw,100vh) scale(.3335)}}.snow:nth-child(396){opacity:.961;transform:translate(32.846vw,-10px) scale(.5231);animation:fall-396 23s -1s linear infinite}@keyframes fall-396{69.454%{transform:translate(29.6333vw,69.454vh) scale(.5231)}to{transform:translate(31.23965vw,100vh) scale(.5231)}}.snow:nth-child(397){opacity:1.7326;transform:translate(2.6965vw,-10px) scale(.7658);animation:fall-397 24s -17s linear infinite}@keyframes fall-397{60.119%{transform:translate(10.2622vw,60.119vh) scale(.7658)}to{transform:translate(6.47935vw,100vh) scale(.7658)}}.snow:nth-child(398){opacity:1.5096;transform:translate(75.8695vw,-10px) scale(.1929);animation:fall-398 11s -25s linear infinite}@keyframes fall-398{73.574%{transform:translate(78.5697vw,73.574vh) scale(.1929)}to{transform:translate(77.2196vw,100vh) scale(.1929)}}.snow:nth-child(399){opacity:1.4992;transform:translate(48.94vw,-10px) scale(.4448);animation:fall-399 24s -11s linear infinite}@keyframes fall-399{70.524%{transform:translate(44.3429vw,70.524vh) scale(.4448)}to{transform:translate(46.64145vw,100vh) scale(.4448)}}.snow:nth-child(400){opacity:.2242;transform:translate(21.5315vw,-10px) scale(.9005);animation:fall-400 29s -24s linear infinite}@keyframes fall-400{57.387%{transform:translate(28.4994vw,57.387vh) scale(.9005)}to{transform:translate(25.01545vw,100vh) scale(.9005)}}\n"], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
82
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AppComponent, decorators: [{
|
|
83
|
+
type: Component,
|
|
84
|
+
args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: [".table-borderless>tbody>tr>td,.table-borderless>tbody>tr>th,.table-borderless>tfoot>tr>td,.table-borderless>tfoot>tr>th,.table-borderless>thead>tr>td,.table-borderless>thead>tr>th{border:none}.table,.table-responsive{margin-bottom:5px}a:hover,a:focus{text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}*{outline:none!important}.modal-title{width:calc(100% - 20px)}.progress{height:20px}.progress.progress-primary[value]::-webkit-progress-value{background-color:#024a88}.progress.progress-primary[value]::-moz-progress-bar{background-color:#024a88}.progress.progress-primary[value]::-ms-fill{background-color:#024a88}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#024a88}}.progress.progress-info[value]::-webkit-progress-value{background-color:#248dad}.progress.progress-info[value]::-moz-progress-bar{background-color:#248dad}.progress.progress-info[value]::-ms-fill{background-color:#248dad}@media screen and (min-width: 0\\fffd){.progress.progress-info .progress-bar{background-color:#248dad}}.progress.progress-danger[value]::-webkit-progress-value{background-color:#bf1725}.progress.progress-danger[value]::-moz-progress-bar{background-color:#bf1725}.progress.progress-danger[value]::-ms-fill{background-color:#bf1725}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#bf1725}}.progress.progress-success[value]::-webkit-progress-value{background-color:#2d922d}.progress.progress-success[value]::-moz-progress-bar{background-color:#2d922d}.progress.progress-success[value]::-ms-fill{background-color:#2d922d}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#2d922d}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#f79a17}.progress.progress-warning[value]::-moz-progress-bar{background-color:#f79a17}.progress.progress-warning[value]::-ms-fill{background-color:#f79a17}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#f79a17}}.progress[value]::-moz-progress-bar{border-radius:0}.progress[value]::-webkit-progress-value{border-radius:0}.progress[value=\"100\"]::-moz-progress-bar{border-radius:0}.progress[value=\"100\"]::-webkit-progress-value{border-radius:0}.progress-xs{height:7px}.progress-sm{height:10px}.progress-md{height:13px}.progress-bar-info-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem;background-color:#5bc0de!important}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.1422;transform:translate(71.6434vw,-10px) scale(.5732);animation:fall-1 16s -6s linear infinite}@keyframes fall-1{35.946%{transform:translate(77.6749vw,35.946vh) scale(.5732)}to{transform:translate(74.65915vw,100vh) scale(.5732)}}.snow:nth-child(2){opacity:1.0244;transform:translate(54.1393vw,-10px) scale(.3454);animation:fall-2 30s -15s linear infinite}@keyframes fall-2{37.619%{transform:translate(49.4259vw,37.619vh) scale(.3454)}to{transform:translate(51.7826vw,100vh) scale(.3454)}}.snow:nth-child(3){opacity:.9616;transform:translate(5.4907vw,-10px) scale(.4515);animation:fall-3 28s -16s linear infinite}@keyframes fall-3{33.402%{transform:translate(3.9076vw,33.402vh) scale(.4515)}to{transform:translate(4.69915vw,100vh) scale(.4515)}}.snow:nth-child(4){opacity:.7768;transform:translate(79.3714vw,-10px) scale(.5461);animation:fall-4 21s -25s linear infinite}@keyframes fall-4{78.781%{transform:translate(82.2855vw,78.781vh) scale(.5461)}to{transform:translate(80.82845vw,100vh) scale(.5461)}}.snow:nth-child(5){opacity:.6998;transform:translate(77.3678vw,-10px) scale(.4506);animation:fall-5 12s -5s linear infinite}@keyframes fall-5{79.343%{transform:translate(80.4328vw,79.343vh) scale(.4506)}to{transform:translate(78.9003vw,100vh) scale(.4506)}}.snow:nth-child(6){opacity:1.8586;transform:translate(61.0581vw,-10px) scale(.0848);animation:fall-6 15s -29s linear infinite}@keyframes fall-6{40.025%{transform:translate(51.3361vw,40.025vh) scale(.0848)}to{transform:translate(56.1971vw,100vh) scale(.0848)}}.snow:nth-child(7){opacity:1.062;transform:translate(6.6669vw,-10px) scale(.3276);animation:fall-7 21s -17s linear infinite}@keyframes fall-7{55.849%{transform:translate(3.1655vw,55.849vh) scale(.3276)}to{transform:translate(4.9162vw,100vh) scale(.3276)}}.snow:nth-child(8){opacity:1.504;transform:translate(8.5907vw,-10px) scale(.682);animation:fall-8 20s -5s linear infinite}@keyframes fall-8{45.12%{transform:translate(-1.3783vw,45.12vh) scale(.682)}to{transform:translate(3.6062vw,100vh) scale(.682)}}.snow:nth-child(9){opacity:.1358;transform:translate(26.602vw,-10px) scale(.8538);animation:fall-9 10s -18s linear infinite}@keyframes fall-9{44.415%{transform:translate(27.852vw,44.415vh) scale(.8538)}to{transform:translate(27.227vw,100vh) scale(.8538)}}.snow:nth-child(10){opacity:1.23;transform:translate(52.644vw,-10px) scale(.8293);animation:fall-10 14s -20s linear infinite}@keyframes fall-10{75.384%{transform:translate(51.5939vw,75.384vh) scale(.8293)}to{transform:translate(52.11895vw,100vh) scale(.8293)}}.snow:nth-child(11){opacity:.3992;transform:translate(35.8239vw,-10px) scale(.693);animation:fall-11 23s -11s linear infinite}@keyframes fall-11{72.432%{transform:translate(40.6621vw,72.432vh) scale(.693)}to{transform:translate(38.243vw,100vh) scale(.693)}}.snow:nth-child(12){opacity:.141;transform:translate(92.0868vw,-10px) scale(.6009);animation:fall-12 11s -1s linear infinite}@keyframes fall-12{60.313%{transform:translate(98.2125vw,60.313vh) scale(.6009)}to{transform:translate(95.14965vw,100vh) scale(.6009)}}.snow:nth-child(13){opacity:1.5768;transform:translate(42.6729vw,-10px) scale(.7885);animation:fall-13 17s -12s linear infinite}@keyframes fall-13{39.008%{transform:translate(40.7591vw,39.008vh) scale(.7885)}to{transform:translate(41.716vw,100vh) scale(.7885)}}.snow:nth-child(14){opacity:.0474;transform:translate(41.1808vw,-10px) scale(.5955);animation:fall-14 13s -9s linear infinite}@keyframes fall-14{39.289%{transform:translate(43.6018vw,39.289vh) scale(.5955)}to{transform:translate(42.3913vw,100vh) scale(.5955)}}.snow:nth-child(15){opacity:.7622;transform:translate(68.3525vw,-10px) scale(.8199);animation:fall-15 20s -12s linear infinite}@keyframes fall-15{40.539%{transform:translate(62.1974vw,40.539vh) scale(.8199)}to{transform:translate(65.27495vw,100vh) scale(.8199)}}.snow:nth-child(16){opacity:1.8806;transform:translate(10.5307vw,-10px) scale(.9657);animation:fall-16 17s -14s linear infinite}@keyframes fall-16{36.983%{transform:translate(.6926vw,36.983vh) scale(.9657)}to{transform:translate(5.61165vw,100vh) scale(.9657)}}.snow:nth-child(17){opacity:.4934;transform:translate(5.1112vw,-10px) scale(.8495);animation:fall-17 16s -13s linear infinite}@keyframes fall-17{36.919%{transform:translate(1.3636vw,36.919vh) scale(.8495)}to{transform:translate(3.2374vw,100vh) scale(.8495)}}.snow:nth-child(18){opacity:1.5494;transform:translate(6.5943vw,-10px) scale(.7015);animation:fall-18 24s -26s linear infinite}@keyframes fall-18{78.259%{transform:translate(.8025vw,78.259vh) scale(.7015)}to{transform:translate(3.6984vw,100vh) scale(.7015)}}.snow:nth-child(19){opacity:.606;transform:translate(65.663vw,-10px) scale(.6769);animation:fall-19 15s -12s linear infinite}@keyframes fall-19{69.913%{transform:translate(57.7016vw,69.913vh) scale(.6769)}to{transform:translate(61.6823vw,100vh) scale(.6769)}}.snow:nth-child(20){opacity:1.052;transform:translate(44.4778vw,-10px) scale(.3244);animation:fall-20 25s -30s linear infinite}@keyframes fall-20{62.617%{transform:translate(49.7977vw,62.617vh) scale(.3244)}to{transform:translate(47.13775vw,100vh) scale(.3244)}}.snow:nth-child(21){opacity:.3964;transform:translate(79.2737vw,-10px) scale(.2605);animation:fall-21 29s -17s linear infinite}@keyframes fall-21{75.193%{transform:translate(85.4067vw,75.193vh) scale(.2605)}to{transform:translate(82.3402vw,100vh) scale(.2605)}}.snow:nth-child(22){opacity:1.9736;transform:translate(70.6281vw,-10px) scale(.6275);animation:fall-22 19s -11s linear infinite}@keyframes fall-22{31.502%{transform:translate(71.3307vw,31.502vh) scale(.6275)}to{transform:translate(70.9794vw,100vh) scale(.6275)}}.snow:nth-child(23){opacity:.3406;transform:translate(68.5182vw,-10px) scale(.3862);animation:fall-23 17s -17s linear infinite}@keyframes fall-23{67.008%{transform:translate(59.611vw,67.008vh) scale(.3862)}to{transform:translate(64.0646vw,100vh) scale(.3862)}}.snow:nth-child(24){opacity:1.5264;transform:translate(42.8285vw,-10px) scale(.6394);animation:fall-24 30s -18s linear infinite}@keyframes fall-24{54.019%{transform:translate(50.1333vw,54.019vh) scale(.6394)}to{transform:translate(46.4809vw,100vh) scale(.6394)}}.snow:nth-child(25){opacity:.2466;transform:translate(57.461vw,-10px) scale(.3393);animation:fall-25 21s -1s linear infinite}@keyframes fall-25{62.651%{transform:translate(65.8521vw,62.651vh) scale(.3393)}to{transform:translate(61.65655vw,100vh) scale(.3393)}}.snow:nth-child(26){opacity:1.975;transform:translate(65.3912vw,-10px) scale(.6114);animation:fall-26 17s -14s linear infinite}@keyframes fall-26{78.836%{transform:translate(70.3154vw,78.836vh) scale(.6114)}to{transform:translate(67.8533vw,100vh) scale(.6114)}}.snow:nth-child(27){opacity:.081;transform:translate(63.6059vw,-10px) scale(.2217);animation:fall-27 30s -28s linear infinite}@keyframes fall-27{63.008%{transform:translate(59.2593vw,63.008vh) scale(.2217)}to{transform:translate(61.4326vw,100vh) scale(.2217)}}.snow:nth-child(28){opacity:1.5086;transform:translate(82.0673vw,-10px) scale(.8177);animation:fall-28 10s -21s linear infinite}@keyframes fall-28{78.067%{transform:translate(75.6375vw,78.067vh) scale(.8177)}to{transform:translate(78.8524vw,100vh) scale(.8177)}}.snow:nth-child(29){opacity:1.5382;transform:translate(70.9988vw,-10px) scale(.87);animation:fall-29 10s -4s linear infinite}@keyframes fall-29{49.482%{transform:translate(67.2499vw,49.482vh) scale(.87)}to{transform:translate(69.12435vw,100vh) scale(.87)}}.snow:nth-child(30){opacity:1.1258;transform:translate(81.6621vw,-10px) scale(.5545);animation:fall-30 26s -27s linear infinite}@keyframes fall-30{57.133%{transform:translate(72.0628vw,57.133vh) scale(.5545)}to{transform:translate(76.86245vw,100vh) scale(.5545)}}.snow:nth-child(31){opacity:.0242;transform:translate(70.5455vw,-10px) scale(.0637);animation:fall-31 25s -4s linear infinite}@keyframes fall-31{30.852%{transform:translate(69.1872vw,30.852vh) scale(.0637)}to{transform:translate(69.86635vw,100vh) scale(.0637)}}.snow:nth-child(32){opacity:1.3204;transform:translate(15.3677vw,-10px) scale(.963);animation:fall-32 14s -13s linear infinite}@keyframes fall-32{73.698%{transform:translate(20.7592vw,73.698vh) scale(.963)}to{transform:translate(18.06345vw,100vh) scale(.963)}}.snow:nth-child(33){opacity:.4396;transform:translate(30.7896vw,-10px) scale(.1713);animation:fall-33 25s -12s linear infinite}@keyframes fall-33{53.897%{transform:translate(21.9518vw,53.897vh) scale(.1713)}to{transform:translate(26.3707vw,100vh) scale(.1713)}}.snow:nth-child(34){opacity:1.8286;transform:translate(31.1773vw,-10px) scale(.1034);animation:fall-34 30s -24s linear infinite}@keyframes fall-34{39.924%{transform:translate(26.6174vw,39.924vh) scale(.1034)}to{transform:translate(28.89735vw,100vh) scale(.1034)}}.snow:nth-child(35){opacity:1.2952;transform:translate(32.8848vw,-10px) scale(.4641);animation:fall-35 20s -18s linear infinite}@keyframes fall-35{74.015%{transform:translate(32.7026vw,74.015vh) scale(.4641)}to{transform:translate(32.7937vw,100vh) scale(.4641)}}.snow:nth-child(36){opacity:1.4648;transform:translate(48.2216vw,-10px) scale(.4675);animation:fall-36 27s -16s linear infinite}@keyframes fall-36{76.163%{transform:translate(50.3527vw,76.163vh) scale(.4675)}to{transform:translate(49.28715vw,100vh) scale(.4675)}}.snow:nth-child(37){opacity:.2474;transform:translate(34.8917vw,-10px) scale(.0227);animation:fall-37 11s -23s linear infinite}@keyframes fall-37{66.117%{transform:translate(42.9499vw,66.117vh) scale(.0227)}to{transform:translate(38.9208vw,100vh) scale(.0227)}}.snow:nth-child(38){opacity:1.5346;transform:translate(14.3169vw,-10px) scale(.6462);animation:fall-38 11s -21s linear infinite}@keyframes fall-38{51.143%{transform:translate(8.0507vw,51.143vh) scale(.6462)}to{transform:translate(11.1838vw,100vh) scale(.6462)}}.snow:nth-child(39){opacity:1.515;transform:translate(26.2643vw,-10px) scale(.1258);animation:fall-39 24s -29s linear infinite}@keyframes fall-39{43.875%{transform:translate(25.1153vw,43.875vh) scale(.1258)}to{transform:translate(25.6898vw,100vh) scale(.1258)}}.snow:nth-child(40){opacity:1.9642;transform:translate(29.9858vw,-10px) scale(.4286);animation:fall-40 19s -28s linear infinite}@keyframes fall-40{38.356%{transform:translate(22.2629vw,38.356vh) scale(.4286)}to{transform:translate(26.12435vw,100vh) scale(.4286)}}.snow:nth-child(41){opacity:.558;transform:translate(23.3663vw,-10px) scale(.9312);animation:fall-41 22s -11s linear infinite}@keyframes fall-41{39.172%{transform:translate(17.075vw,39.172vh) scale(.9312)}to{transform:translate(20.22065vw,100vh) scale(.9312)}}.snow:nth-child(42){opacity:1.7612;transform:translate(11.4759vw,-10px) scale(.3312);animation:fall-42 29s -7s linear infinite}@keyframes fall-42{41.415%{transform:translate(9.6929vw,41.415vh) scale(.3312)}to{transform:translate(10.5844vw,100vh) scale(.3312)}}.snow:nth-child(43){opacity:.0164;transform:translate(31.1813vw,-10px) scale(.172);animation:fall-43 28s -17s linear infinite}@keyframes fall-43{73.491%{transform:translate(31.9452vw,73.491vh) scale(.172)}to{transform:translate(31.56325vw,100vh) scale(.172)}}.snow:nth-child(44){opacity:.2618;transform:translate(20.1179vw,-10px) scale(.5314);animation:fall-44 21s -6s linear infinite}@keyframes fall-44{68.002%{transform:translate(22.5385vw,68.002vh) scale(.5314)}to{transform:translate(21.3282vw,100vh) scale(.5314)}}.snow:nth-child(45){opacity:1.7884;transform:translate(42.1831vw,-10px) scale(.1618);animation:fall-45 14s -15s linear infinite}@keyframes fall-45{30.458%{transform:translate(47.9003vw,30.458vh) scale(.1618)}to{transform:translate(45.0417vw,100vh) scale(.1618)}}.snow:nth-child(46){opacity:.5458;transform:translate(25.2875vw,-10px) scale(.4834);animation:fall-46 22s -2s linear infinite}@keyframes fall-46{65.977%{transform:translate(27.4759vw,65.977vh) scale(.4834)}to{transform:translate(26.3817vw,100vh) scale(.4834)}}.snow:nth-child(47){opacity:1.371;transform:translate(6.167vw,-10px) scale(.4454);animation:fall-47 24s -21s linear infinite}@keyframes fall-47{58.509%{transform:translate(13.3389vw,58.509vh) scale(.4454)}to{transform:translate(9.75295vw,100vh) scale(.4454)}}.snow:nth-child(48){opacity:.2914;transform:translate(28.7889vw,-10px) scale(.6064);animation:fall-48 17s -4s linear infinite}@keyframes fall-48{43.869%{transform:translate(32.4225vw,43.869vh) scale(.6064)}to{transform:translate(30.6057vw,100vh) scale(.6064)}}.snow:nth-child(49){opacity:1.5962;transform:translate(78.1663vw,-10px) scale(.7341);animation:fall-49 17s -20s linear infinite}@keyframes fall-49{40.957%{transform:translate(73.9424vw,40.957vh) scale(.7341)}to{transform:translate(76.05435vw,100vh) scale(.7341)}}.snow:nth-child(50){opacity:1.93;transform:translate(38.5832vw,-10px) scale(.6427);animation:fall-50 20s -3s linear infinite}@keyframes fall-50{72.783%{transform:translate(44.2553vw,72.783vh) scale(.6427)}to{transform:translate(41.41925vw,100vh) scale(.6427)}}.snow:nth-child(51){opacity:.9748;transform:translate(44.031vw,-10px) scale(.06);animation:fall-51 29s -8s linear infinite}@keyframes fall-51{64.999%{transform:translate(46.8106vw,64.999vh) scale(.06)}to{transform:translate(45.4208vw,100vh) scale(.06)}}.snow:nth-child(52){opacity:.086;transform:translate(94.3972vw,-10px) scale(.0143);animation:fall-52 13s -16s linear infinite}@keyframes fall-52{57.083%{transform:translate(101.6535vw,57.083vh) scale(.0143)}to{transform:translate(98.02535vw,100vh) scale(.0143)}}.snow:nth-child(53){opacity:1.5642;transform:translate(10.3505vw,-10px) scale(.8492);animation:fall-53 14s -26s linear infinite}@keyframes fall-53{35.582%{transform:translate(5.5327vw,35.582vh) scale(.8492)}to{transform:translate(7.9416vw,100vh) scale(.8492)}}.snow:nth-child(54){opacity:1.9038;transform:translate(37.0359vw,-10px) scale(.4111);animation:fall-54 25s -17s linear infinite}@keyframes fall-54{69.338%{transform:translate(45.1761vw,69.338vh) scale(.4111)}to{transform:translate(41.106vw,100vh) scale(.4111)}}.snow:nth-child(55){opacity:.8624;transform:translate(51.3444vw,-10px) scale(.1606);animation:fall-55 12s -17s linear infinite}@keyframes fall-55{49.156%{transform:translate(49.6882vw,49.156vh) scale(.1606)}to{transform:translate(50.5163vw,100vh) scale(.1606)}}.snow:nth-child(56){opacity:1.3884;transform:translate(49.192vw,-10px) scale(.1584);animation:fall-56 23s -10s linear infinite}@keyframes fall-56{71.885%{transform:translate(54.0529vw,71.885vh) scale(.1584)}to{transform:translate(51.62245vw,100vh) scale(.1584)}}.snow:nth-child(57){opacity:.0418;transform:translate(16.4246vw,-10px) scale(.1883);animation:fall-57 10s -19s linear infinite}@keyframes fall-57{58.956%{transform:translate(18.6965vw,58.956vh) scale(.1883)}to{transform:translate(17.56055vw,100vh) scale(.1883)}}.snow:nth-child(58){opacity:1.4228;transform:translate(78.5196vw,-10px) scale(.8515);animation:fall-58 14s -4s linear infinite}@keyframes fall-58{53.895%{transform:translate(77.3597vw,53.895vh) scale(.8515)}to{transform:translate(77.93965vw,100vh) scale(.8515)}}.snow:nth-child(59){opacity:.607;transform:translate(42.2719vw,-10px) scale(.9631);animation:fall-59 26s -13s linear infinite}@keyframes fall-59{60.406%{transform:translate(51.6601vw,60.406vh) scale(.9631)}to{transform:translate(46.966vw,100vh) scale(.9631)}}.snow:nth-child(60){opacity:.2604;transform:translate(81.0467vw,-10px) scale(.7343);animation:fall-60 30s -28s linear infinite}@keyframes fall-60{41.209%{transform:translate(76.2705vw,41.209vh) scale(.7343)}to{transform:translate(78.6586vw,100vh) scale(.7343)}}.snow:nth-child(61){opacity:1.3106;transform:translate(92.8113vw,-10px) scale(.5716);animation:fall-61 21s -21s linear infinite}@keyframes fall-61{47.518%{transform:translate(99.4538vw,47.518vh) scale(.5716)}to{transform:translate(96.13255vw,100vh) scale(.5716)}}.snow:nth-child(62){opacity:.9334;transform:translate(29.4735vw,-10px) scale(.2447);animation:fall-62 24s -9s linear infinite}@keyframes fall-62{40.37%{transform:translate(27.7048vw,40.37vh) scale(.2447)}to{transform:translate(28.58915vw,100vh) scale(.2447)}}.snow:nth-child(63){opacity:.1324;transform:translate(83.0656vw,-10px) scale(.9608);animation:fall-63 22s -23s linear infinite}@keyframes fall-63{61.429%{transform:translate(85.2469vw,61.429vh) scale(.9608)}to{transform:translate(84.15625vw,100vh) scale(.9608)}}.snow:nth-child(64){opacity:.1796;transform:translate(74.8342vw,-10px) scale(.2941);animation:fall-64 12s -14s linear infinite}@keyframes fall-64{39.853%{transform:translate(80.2738vw,39.853vh) scale(.2941)}to{transform:translate(77.554vw,100vh) scale(.2941)}}.snow:nth-child(65){opacity:.2654;transform:translate(85.5372vw,-10px) scale(.6046);animation:fall-65 26s -15s linear infinite}@keyframes fall-65{56.313%{transform:translate(89.5249vw,56.313vh) scale(.6046)}to{transform:translate(87.53105vw,100vh) scale(.6046)}}.snow:nth-child(66){opacity:.3202;transform:translate(57.0736vw,-10px) scale(.2334);animation:fall-66 19s -20s linear infinite}@keyframes fall-66{77.9%{transform:translate(66.5018vw,77.9vh) scale(.2334)}to{transform:translate(61.7877vw,100vh) scale(.2334)}}.snow:nth-child(67){opacity:.0258;transform:translate(33.2885vw,-10px) scale(.4469);animation:fall-67 21s -7s linear infinite}@keyframes fall-67{70.917%{transform:translate(40.6778vw,70.917vh) scale(.4469)}to{transform:translate(36.98315vw,100vh) scale(.4469)}}.snow:nth-child(68){opacity:.4314;transform:translate(20.7782vw,-10px) scale(.6082);animation:fall-68 14s -7s linear infinite}@keyframes fall-68{56.659%{transform:translate(20.2424vw,56.659vh) scale(.6082)}to{transform:translate(20.5103vw,100vh) scale(.6082)}}.snow:nth-child(69){opacity:.263;transform:translate(12.6426vw,-10px) scale(.3885);animation:fall-69 23s -6s linear infinite}@keyframes fall-69{76.284%{transform:translate(22.4779vw,76.284vh) scale(.3885)}to{transform:translate(17.56025vw,100vh) scale(.3885)}}.snow:nth-child(70){opacity:1.596;transform:translate(34.3251vw,-10px) scale(.5736);animation:fall-70 24s -3s linear infinite}@keyframes fall-70{76.705%{transform:translate(26.7592vw,76.705vh) scale(.5736)}to{transform:translate(30.54215vw,100vh) scale(.5736)}}.snow:nth-child(71){opacity:.8346;transform:translate(44.8212vw,-10px) scale(.4398);animation:fall-71 21s -28s linear infinite}@keyframes fall-71{57.348%{transform:translate(38.0853vw,57.348vh) scale(.4398)}to{transform:translate(41.45325vw,100vh) scale(.4398)}}.snow:nth-child(72){opacity:1.2894;transform:translate(92.5287vw,-10px) scale(.0185);animation:fall-72 30s -24s linear infinite}@keyframes fall-72{39.794%{transform:translate(95.0094vw,39.794vh) scale(.0185)}to{transform:translate(93.76905vw,100vh) scale(.0185)}}.snow:nth-child(73){opacity:1.7652;transform:translate(79.0852vw,-10px) scale(.6178);animation:fall-73 16s -2s linear infinite}@keyframes fall-73{37.12%{transform:translate(71.5749vw,37.12vh) scale(.6178)}to{transform:translate(75.33005vw,100vh) scale(.6178)}}.snow:nth-child(74){opacity:.4422;transform:translate(31.2424vw,-10px) scale(.7903);animation:fall-74 10s -12s linear infinite}@keyframes fall-74{72.943%{transform:translate(28.5623vw,72.943vh) scale(.7903)}to{transform:translate(29.90235vw,100vh) scale(.7903)}}.snow:nth-child(75){opacity:.102;transform:translate(21.2807vw,-10px) scale(.7084);animation:fall-75 11s -10s linear infinite}@keyframes fall-75{45.042%{transform:translate(23.4443vw,45.042vh) scale(.7084)}to{transform:translate(22.3625vw,100vh) scale(.7084)}}.snow:nth-child(76){opacity:1.8896;transform:translate(14.1432vw,-10px) scale(.0691);animation:fall-76 15s -10s linear infinite}@keyframes fall-76{32.422%{transform:translate(6.5436vw,32.422vh) scale(.0691)}to{transform:translate(10.3434vw,100vh) scale(.0691)}}.snow:nth-child(77){opacity:.5194;transform:translate(50.8497vw,-10px) scale(.5781);animation:fall-77 14s -4s linear infinite}@keyframes fall-77{60.737%{transform:translate(49.3569vw,60.737vh) scale(.5781)}to{transform:translate(50.1033vw,100vh) scale(.5781)}}.snow:nth-child(78){opacity:1.7646;transform:translate(1.046vw,-10px) scale(.6624);animation:fall-78 20s -18s linear infinite}@keyframes fall-78{56.066%{transform:translate(3.8517vw,56.066vh) scale(.6624)}to{transform:translate(2.44885vw,100vh) scale(.6624)}}.snow:nth-child(79){opacity:1.172;transform:translate(60.6533vw,-10px) scale(.9303);animation:fall-79 29s -19s linear infinite}@keyframes fall-79{73.418%{transform:translate(51.4397vw,73.418vh) scale(.9303)}to{transform:translate(56.0465vw,100vh) scale(.9303)}}.snow:nth-child(80){opacity:1.0538;transform:translate(75.7657vw,-10px) scale(.1584);animation:fall-80 18s -13s linear infinite}@keyframes fall-80{57.977%{transform:translate(83.0584vw,57.977vh) scale(.1584)}to{transform:translate(79.41205vw,100vh) scale(.1584)}}.snow:nth-child(81){opacity:.326;transform:translate(13.0063vw,-10px) scale(.6104);animation:fall-81 11s -16s linear infinite}@keyframes fall-81{77.437%{transform:translate(18.5988vw,77.437vh) scale(.6104)}to{transform:translate(15.80255vw,100vh) scale(.6104)}}.snow:nth-child(82){opacity:1.9344;transform:translate(87.8186vw,-10px) scale(.025);animation:fall-82 10s -22s linear infinite}@keyframes fall-82{61.313%{transform:translate(82.2492vw,61.313vh) scale(.025)}to{transform:translate(85.0339vw,100vh) scale(.025)}}.snow:nth-child(83){opacity:1.613;transform:translate(52.4895vw,-10px) scale(.451);animation:fall-83 29s -3s linear infinite}@keyframes fall-83{51.311%{transform:translate(50.382vw,51.311vh) scale(.451)}to{transform:translate(51.43575vw,100vh) scale(.451)}}.snow:nth-child(84){opacity:1.8782;transform:translate(7.6014vw,-10px) scale(.3417);animation:fall-84 15s -24s linear infinite}@keyframes fall-84{61.357%{transform:translate(17.5018vw,61.357vh) scale(.3417)}to{transform:translate(12.5516vw,100vh) scale(.3417)}}.snow:nth-child(85){opacity:.378;transform:translate(23.3799vw,-10px) scale(.7237);animation:fall-85 20s -12s linear infinite}@keyframes fall-85{57.096%{transform:translate(16.9109vw,57.096vh) scale(.7237)}to{transform:translate(20.1454vw,100vh) scale(.7237)}}.snow:nth-child(86){opacity:1.3038;transform:translate(.3404vw,-10px) scale(.6132);animation:fall-86 25s -28s linear infinite}@keyframes fall-86{65.935%{transform:translate(9.2809vw,65.935vh) scale(.6132)}to{transform:translate(4.81065vw,100vh) scale(.6132)}}.snow:nth-child(87){opacity:1.8594;transform:translate(6.4097vw,-10px) scale(.5874);animation:fall-87 24s -20s linear infinite}@keyframes fall-87{48.771%{transform:translate(9.9787vw,48.771vh) scale(.5874)}to{transform:translate(8.1942vw,100vh) scale(.5874)}}.snow:nth-child(88){opacity:1.0708;transform:translate(49.8495vw,-10px) scale(.3304);animation:fall-88 12s -29s linear infinite}@keyframes fall-88{35.442%{transform:translate(58.6514vw,35.442vh) scale(.3304)}to{transform:translate(54.25045vw,100vh) scale(.3304)}}.snow:nth-child(89){opacity:.5432;transform:translate(59.4359vw,-10px) scale(.7063);animation:fall-89 14s -17s linear infinite}@keyframes fall-89{75.042%{transform:translate(60.2912vw,75.042vh) scale(.7063)}to{transform:translate(59.86355vw,100vh) scale(.7063)}}.snow:nth-child(90){opacity:.9534;transform:translate(10.5354vw,-10px) scale(.2934);animation:fall-90 24s -2s linear infinite}@keyframes fall-90{77.147%{transform:translate(19.105vw,77.147vh) scale(.2934)}to{transform:translate(14.8202vw,100vh) scale(.2934)}}.snow:nth-child(91){opacity:.4116;transform:translate(62.0873vw,-10px) scale(.0673);animation:fall-91 20s -27s linear infinite}@keyframes fall-91{37.872%{transform:translate(61.6052vw,37.872vh) scale(.0673)}to{transform:translate(61.84625vw,100vh) scale(.0673)}}.snow:nth-child(92){opacity:.254;transform:translate(24.8696vw,-10px) scale(.4381);animation:fall-92 16s -28s linear infinite}@keyframes fall-92{71.572%{transform:translate(24.2474vw,71.572vh) scale(.4381)}to{transform:translate(24.5585vw,100vh) scale(.4381)}}.snow:nth-child(93){opacity:.81;transform:translate(69.8552vw,-10px) scale(.4708);animation:fall-93 27s -11s linear infinite}@keyframes fall-93{50.102%{transform:translate(77.3267vw,50.102vh) scale(.4708)}to{transform:translate(73.59095vw,100vh) scale(.4708)}}.snow:nth-child(94){opacity:1.3382;transform:translate(94.721vw,-10px) scale(.8462);animation:fall-94 17s -6s linear infinite}@keyframes fall-94{60.37%{transform:translate(96.9921vw,60.37vh) scale(.8462)}to{transform:translate(95.85655vw,100vh) scale(.8462)}}.snow:nth-child(95){opacity:1.7356;transform:translate(34.2295vw,-10px) scale(.855);animation:fall-95 27s -12s linear infinite}@keyframes fall-95{55.256%{transform:translate(42.8109vw,55.256vh) scale(.855)}to{transform:translate(38.5202vw,100vh) scale(.855)}}.snow:nth-child(96){opacity:1.3288;transform:translate(3.7379vw,-10px) scale(.3732);animation:fall-96 30s -1s linear infinite}@keyframes fall-96{38.926%{transform:translate(-4.228vw,38.926vh) scale(.3732)}to{transform:translate(-.24505vw,100vh) scale(.3732)}}.snow:nth-child(97){opacity:1.865;transform:translate(71.754vw,-10px) scale(.9593);animation:fall-97 24s -6s linear infinite}@keyframes fall-97{46.969%{transform:translate(67.9888vw,46.969vh) scale(.9593)}to{transform:translate(69.8714vw,100vh) scale(.9593)}}.snow:nth-child(98){opacity:1.082;transform:translate(63.8427vw,-10px) scale(.4137);animation:fall-98 12s -26s linear infinite}@keyframes fall-98{36.967%{transform:translate(63.7318vw,36.967vh) scale(.4137)}to{transform:translate(63.78725vw,100vh) scale(.4137)}}.snow:nth-child(99){opacity:.6558;transform:translate(24.7392vw,-10px) scale(.5016);animation:fall-99 12s -8s linear infinite}@keyframes fall-99{44.724%{transform:translate(23.5692vw,44.724vh) scale(.5016)}to{transform:translate(24.1542vw,100vh) scale(.5016)}}.snow:nth-child(100){opacity:.4952;transform:translate(96.4663vw,-10px) scale(.9335);animation:fall-100 23s -28s linear infinite}@keyframes fall-100{49.295%{transform:translate(102.4078vw,49.295vh) scale(.9335)}to{transform:translate(99.43705vw,100vh) scale(.9335)}}.snow:nth-child(101){opacity:1.9894;transform:translate(30.793vw,-10px) scale(.9667);animation:fall-101 26s -1s linear infinite}@keyframes fall-101{45.287%{transform:translate(31.3537vw,45.287vh) scale(.9667)}to{transform:translate(31.07335vw,100vh) scale(.9667)}}.snow:nth-child(102){opacity:1.084;transform:translate(16.3751vw,-10px) scale(.5574);animation:fall-102 25s -23s linear infinite}@keyframes fall-102{55.084%{transform:translate(25.4613vw,55.084vh) scale(.5574)}to{transform:translate(20.9182vw,100vh) scale(.5574)}}.snow:nth-child(103){opacity:.918;transform:translate(96.5182vw,-10px) scale(.6235);animation:fall-103 21s -29s linear infinite}@keyframes fall-103{52.461%{transform:translate(93.0286vw,52.461vh) scale(.6235)}to{transform:translate(94.7734vw,100vh) scale(.6235)}}.snow:nth-child(104){opacity:.014;transform:translate(37.4644vw,-10px) scale(.1819);animation:fall-104 13s -4s linear infinite}@keyframes fall-104{77.387%{transform:translate(45.839vw,77.387vh) scale(.1819)}to{transform:translate(41.6517vw,100vh) scale(.1819)}}.snow:nth-child(105){opacity:1.9604;transform:translate(52.8167vw,-10px) scale(.775);animation:fall-105 26s -26s linear infinite}@keyframes fall-105{49.161%{transform:translate(61.3264vw,49.161vh) scale(.775)}to{transform:translate(57.07155vw,100vh) scale(.775)}}.snow:nth-child(106){opacity:.2226;transform:translate(99.7686vw,-10px) scale(.7287);animation:fall-106 17s -29s linear infinite}@keyframes fall-106{69.736%{transform:translate(95.5994vw,69.736vh) scale(.7287)}to{transform:translate(97.684vw,100vh) scale(.7287)}}.snow:nth-child(107){opacity:.0432;transform:translate(65.4227vw,-10px) scale(.0566);animation:fall-107 27s -22s linear infinite}@keyframes fall-107{40.321%{transform:translate(68.6947vw,40.321vh) scale(.0566)}to{transform:translate(67.0587vw,100vh) scale(.0566)}}.snow:nth-child(108){opacity:1.9386;transform:translate(59.6065vw,-10px) scale(.252);animation:fall-108 14s -1s linear infinite}@keyframes fall-108{50.982%{transform:translate(60.522vw,50.982vh) scale(.252)}to{transform:translate(60.06425vw,100vh) scale(.252)}}.snow:nth-child(109){opacity:.354;transform:translate(57.7204vw,-10px) scale(.0143);animation:fall-109 30s -6s linear infinite}@keyframes fall-109{36.461%{transform:translate(62.6642vw,36.461vh) scale(.0143)}to{transform:translate(60.1923vw,100vh) scale(.0143)}}.snow:nth-child(110){opacity:1.9854;transform:translate(9.9382vw,-10px) scale(.7109);animation:fall-110 11s -12s linear infinite}@keyframes fall-110{30.762%{transform:translate(19.2102vw,30.762vh) scale(.7109)}to{transform:translate(14.5742vw,100vh) scale(.7109)}}.snow:nth-child(111){opacity:.1788;transform:translate(1.2632vw,-10px) scale(.5677);animation:fall-111 26s -18s linear infinite}@keyframes fall-111{78.996%{transform:translate(2.5097vw,78.996vh) scale(.5677)}to{transform:translate(1.88645vw,100vh) scale(.5677)}}.snow:nth-child(112){opacity:1.0496;transform:translate(86.9642vw,-10px) scale(.0538);animation:fall-112 20s -21s linear infinite}@keyframes fall-112{30.629%{transform:translate(81.6264vw,30.629vh) scale(.0538)}to{transform:translate(84.2953vw,100vh) scale(.0538)}}.snow:nth-child(113){opacity:1.178;transform:translate(19.0253vw,-10px) scale(.947);animation:fall-113 28s -22s linear infinite}@keyframes fall-113{57.674%{transform:translate(10.0161vw,57.674vh) scale(.947)}to{transform:translate(14.5207vw,100vh) scale(.947)}}.snow:nth-child(114){opacity:1.1054;transform:translate(15.5969vw,-10px) scale(.7632);animation:fall-114 26s -23s linear infinite}@keyframes fall-114{46.153%{transform:translate(6.2328vw,46.153vh) scale(.7632)}to{transform:translate(10.91485vw,100vh) scale(.7632)}}.snow:nth-child(115){opacity:.661;transform:translate(86.716vw,-10px) scale(.9375);animation:fall-115 27s -6s linear infinite}@keyframes fall-115{74.721%{transform:translate(94.5975vw,74.721vh) scale(.9375)}to{transform:translate(90.65675vw,100vh) scale(.9375)}}.snow:nth-child(116){opacity:.4334;transform:translate(22.5821vw,-10px) scale(.3338);animation:fall-116 29s -17s linear infinite}@keyframes fall-116{67.491%{transform:translate(24.0967vw,67.491vh) scale(.3338)}to{transform:translate(23.3394vw,100vh) scale(.3338)}}.snow:nth-child(117){opacity:1.063;transform:translate(75.7491vw,-10px) scale(.4833);animation:fall-117 26s -13s linear infinite}@keyframes fall-117{36.201%{transform:translate(82.047vw,36.201vh) scale(.4833)}to{transform:translate(78.89805vw,100vh) scale(.4833)}}.snow:nth-child(118){opacity:1.6028;transform:translate(41.901vw,-10px) scale(.2329);animation:fall-118 10s -7s linear infinite}@keyframes fall-118{50.28%{transform:translate(39.2717vw,50.28vh) scale(.2329)}to{transform:translate(40.58635vw,100vh) scale(.2329)}}.snow:nth-child(119){opacity:.1492;transform:translate(21.2556vw,-10px) scale(.5565);animation:fall-119 22s -8s linear infinite}@keyframes fall-119{72.675%{transform:translate(23.2089vw,72.675vh) scale(.5565)}to{transform:translate(22.23225vw,100vh) scale(.5565)}}.snow:nth-child(120){opacity:1.3348;transform:translate(37.8384vw,-10px) scale(.6002);animation:fall-120 17s -27s linear infinite}@keyframes fall-120{40.245%{transform:translate(31.0236vw,40.245vh) scale(.6002)}to{transform:translate(34.431vw,100vh) scale(.6002)}}.snow:nth-child(121){opacity:.5924;transform:translate(5.8261vw,-10px) scale(.3538);animation:fall-121 11s -24s linear infinite}@keyframes fall-121{76.34%{transform:translate(4.9924vw,76.34vh) scale(.3538)}to{transform:translate(5.40925vw,100vh) scale(.3538)}}.snow:nth-child(122){opacity:.4744;transform:translate(5.4363vw,-10px) scale(.4927);animation:fall-122 10s -28s linear infinite}@keyframes fall-122{33.889%{transform:translate(7.6996vw,33.889vh) scale(.4927)}to{transform:translate(6.56795vw,100vh) scale(.4927)}}.snow:nth-child(123){opacity:1.6116;transform:translate(44.1564vw,-10px) scale(.2067);animation:fall-123 10s -2s linear infinite}@keyframes fall-123{31.852%{transform:translate(51.9998vw,31.852vh) scale(.2067)}to{transform:translate(48.0781vw,100vh) scale(.2067)}}.snow:nth-child(124){opacity:.5342;transform:translate(54.3744vw,-10px) scale(.6301);animation:fall-124 25s -1s linear infinite}@keyframes fall-124{72.889%{transform:translate(56.2816vw,72.889vh) scale(.6301)}to{transform:translate(55.328vw,100vh) scale(.6301)}}.snow:nth-child(125){opacity:.649;transform:translate(33.207vw,-10px) scale(.5964);animation:fall-125 28s -9s linear infinite}@keyframes fall-125{66.68%{transform:translate(26.7247vw,66.68vh) scale(.5964)}to{transform:translate(29.96585vw,100vh) scale(.5964)}}.snow:nth-child(126){opacity:1.3714;transform:translate(80.0508vw,-10px) scale(.431);animation:fall-126 15s -18s linear infinite}@keyframes fall-126{34.538%{transform:translate(81.5951vw,34.538vh) scale(.431)}to{transform:translate(80.82295vw,100vh) scale(.431)}}.snow:nth-child(127){opacity:1.1792;transform:translate(70.2615vw,-10px) scale(.3463);animation:fall-127 12s -1s linear infinite}@keyframes fall-127{35.65%{transform:translate(79.7378vw,35.65vh) scale(.3463)}to{transform:translate(74.99965vw,100vh) scale(.3463)}}.snow:nth-child(128){opacity:1.5072;transform:translate(10.8279vw,-10px) scale(.2533);animation:fall-128 12s -5s linear infinite}@keyframes fall-128{44.032%{transform:translate(13.6506vw,44.032vh) scale(.2533)}to{transform:translate(12.23925vw,100vh) scale(.2533)}}.snow:nth-child(129){opacity:1.0336;transform:translate(21.3908vw,-10px) scale(.7399);animation:fall-129 21s -6s linear infinite}@keyframes fall-129{63.012%{transform:translate(17.6051vw,63.012vh) scale(.7399)}to{transform:translate(19.49795vw,100vh) scale(.7399)}}.snow:nth-child(130){opacity:.0572;transform:translate(67.4651vw,-10px) scale(.017);animation:fall-130 18s -11s linear infinite}@keyframes fall-130{49.157%{transform:translate(72.6764vw,49.157vh) scale(.017)}to{transform:translate(70.07075vw,100vh) scale(.017)}}.snow:nth-child(131){opacity:.3572;transform:translate(83.1944vw,-10px) scale(.676);animation:fall-131 12s -27s linear infinite}@keyframes fall-131{40.268%{transform:translate(78.9223vw,40.268vh) scale(.676)}to{transform:translate(81.05835vw,100vh) scale(.676)}}.snow:nth-child(132){opacity:.6992;transform:translate(26.5292vw,-10px) scale(.3726);animation:fall-132 28s -13s linear infinite}@keyframes fall-132{50.983%{transform:translate(18.2829vw,50.983vh) scale(.3726)}to{transform:translate(22.40605vw,100vh) scale(.3726)}}.snow:nth-child(133){opacity:1.3446;transform:translate(64.0763vw,-10px) scale(.5407);animation:fall-133 22s -3s linear infinite}@keyframes fall-133{78.929%{transform:translate(68.5923vw,78.929vh) scale(.5407)}to{transform:translate(66.3343vw,100vh) scale(.5407)}}.snow:nth-child(134){opacity:1.5928;transform:translate(91.4033vw,-10px) scale(.8759);animation:fall-134 15s -9s linear infinite}@keyframes fall-134{50.695%{transform:translate(89.1624vw,50.695vh) scale(.8759)}to{transform:translate(90.28285vw,100vh) scale(.8759)}}.snow:nth-child(135){opacity:1.6588;transform:translate(14.5897vw,-10px) scale(.4725);animation:fall-135 27s -27s linear infinite}@keyframes fall-135{45.241%{transform:translate(17.4882vw,45.241vh) scale(.4725)}to{transform:translate(16.03895vw,100vh) scale(.4725)}}.snow:nth-child(136){opacity:1.8136;transform:translate(78.7209vw,-10px) scale(.2397);animation:fall-136 22s -29s linear infinite}@keyframes fall-136{59.216%{transform:translate(77.7494vw,59.216vh) scale(.2397)}to{transform:translate(78.23515vw,100vh) scale(.2397)}}.snow:nth-child(137){opacity:1.97;transform:translate(75.2725vw,-10px) scale(.8407);animation:fall-137 17s -2s linear infinite}@keyframes fall-137{75.287%{transform:translate(72.0815vw,75.287vh) scale(.8407)}to{transform:translate(73.677vw,100vh) scale(.8407)}}.snow:nth-child(138){opacity:1.802;transform:translate(67.2557vw,-10px) scale(.7195);animation:fall-138 24s -24s linear infinite}@keyframes fall-138{56.53%{transform:translate(74.8948vw,56.53vh) scale(.7195)}to{transform:translate(71.07525vw,100vh) scale(.7195)}}.snow:nth-child(139){opacity:.644;transform:translate(20.1659vw,-10px) scale(.2587);animation:fall-139 29s -17s linear infinite}@keyframes fall-139{62.407%{transform:translate(28.6502vw,62.407vh) scale(.2587)}to{transform:translate(24.40805vw,100vh) scale(.2587)}}.snow:nth-child(140){opacity:1.5952;transform:translate(68.4856vw,-10px) scale(.5183);animation:fall-140 15s -21s linear infinite}@keyframes fall-140{66.019%{transform:translate(61.7018vw,66.019vh) scale(.5183)}to{transform:translate(65.0937vw,100vh) scale(.5183)}}.snow:nth-child(141){opacity:.2126;transform:translate(78.3222vw,-10px) scale(.3776);animation:fall-141 19s -20s linear infinite}@keyframes fall-141{67.993%{transform:translate(68.3226vw,67.993vh) scale(.3776)}to{transform:translate(73.3224vw,100vh) scale(.3776)}}.snow:nth-child(142){opacity:1.2892;transform:translate(79.3355vw,-10px) scale(.6804);animation:fall-142 26s -20s linear infinite}@keyframes fall-142{32.302%{transform:translate(86.7174vw,32.302vh) scale(.6804)}to{transform:translate(83.02645vw,100vh) scale(.6804)}}.snow:nth-child(143){opacity:.7764;transform:translate(35.3647vw,-10px) scale(.52);animation:fall-143 27s -21s linear infinite}@keyframes fall-143{48.42%{transform:translate(41.3018vw,48.42vh) scale(.52)}to{transform:translate(38.33325vw,100vh) scale(.52)}}.snow:nth-child(144){opacity:1.1504;transform:translate(46.2309vw,-10px) scale(.8277);animation:fall-144 14s -9s linear infinite}@keyframes fall-144{39.596%{transform:translate(52.4903vw,39.596vh) scale(.8277)}to{transform:translate(49.3606vw,100vh) scale(.8277)}}.snow:nth-child(145){opacity:1.8864;transform:translate(53.0695vw,-10px) scale(.4269);animation:fall-145 30s -22s linear infinite}@keyframes fall-145{74.827%{transform:translate(53.5322vw,74.827vh) scale(.4269)}to{transform:translate(53.30085vw,100vh) scale(.4269)}}.snow:nth-child(146){opacity:.36;transform:translate(17.9264vw,-10px) scale(.5791);animation:fall-146 12s -19s linear infinite}@keyframes fall-146{42.628%{transform:translate(9.8227vw,42.628vh) scale(.5791)}to{transform:translate(13.87455vw,100vh) scale(.5791)}}.snow:nth-child(147){opacity:1.5256;transform:translate(5.6766vw,-10px) scale(.9614);animation:fall-147 29s -23s linear infinite}@keyframes fall-147{39.089%{transform:translate(4.3978vw,39.089vh) scale(.9614)}to{transform:translate(5.0372vw,100vh) scale(.9614)}}.snow:nth-child(148){opacity:1.1092;transform:translate(80.5958vw,-10px) scale(.4624);animation:fall-148 17s -7s linear infinite}@keyframes fall-148{32.594%{transform:translate(79.1685vw,32.594vh) scale(.4624)}to{transform:translate(79.88215vw,100vh) scale(.4624)}}.snow:nth-child(149){opacity:1.2316;transform:translate(51.0657vw,-10px) scale(.5195);animation:fall-149 22s -24s linear infinite}@keyframes fall-149{60.432%{transform:translate(46.811vw,60.432vh) scale(.5195)}to{transform:translate(48.93835vw,100vh) scale(.5195)}}.snow:nth-child(150){opacity:1.3782;transform:translate(15.6006vw,-10px) scale(.6721);animation:fall-150 14s -8s linear infinite}@keyframes fall-150{76.592%{transform:translate(15.7492vw,76.592vh) scale(.6721)}to{transform:translate(15.6749vw,100vh) scale(.6721)}}.snow:nth-child(151){opacity:1.1098;transform:translate(22.8858vw,-10px) scale(.3133);animation:fall-151 15s -28s linear infinite}@keyframes fall-151{52.638%{transform:translate(16.928vw,52.638vh) scale(.3133)}to{transform:translate(19.9069vw,100vh) scale(.3133)}}.snow:nth-child(152){opacity:1.3046;transform:translate(.1983vw,-10px) scale(.296);animation:fall-152 27s -28s linear infinite}@keyframes fall-152{57.701%{transform:translate(-5.5203vw,57.701vh) scale(.296)}to{transform:translate(-2.661vw,100vh) scale(.296)}}.snow:nth-child(153){opacity:.1904;transform:translate(40.5799vw,-10px) scale(.0092);animation:fall-153 23s -1s linear infinite}@keyframes fall-153{54.745%{transform:translate(36.2506vw,54.745vh) scale(.0092)}to{transform:translate(38.41525vw,100vh) scale(.0092)}}.snow:nth-child(154){opacity:1.7108;transform:translate(64.6718vw,-10px) scale(.6344);animation:fall-154 23s -9s linear infinite}@keyframes fall-154{51.632%{transform:translate(61.1472vw,51.632vh) scale(.6344)}to{transform:translate(62.9095vw,100vh) scale(.6344)}}.snow:nth-child(155){opacity:1.9552;transform:translate(3.4988vw,-10px) scale(.0088);animation:fall-155 28s -10s linear infinite}@keyframes fall-155{61.733%{transform:translate(2.3557vw,61.733vh) scale(.0088)}to{transform:translate(2.92725vw,100vh) scale(.0088)}}.snow:nth-child(156){opacity:1.8046;transform:translate(99.1471vw,-10px) scale(.7026);animation:fall-156 17s -24s linear infinite}@keyframes fall-156{55.922%{transform:translate(105.3942vw,55.922vh) scale(.7026)}to{transform:translate(102.27065vw,100vh) scale(.7026)}}.snow:nth-child(157){opacity:1.4664;transform:translate(15.2998vw,-10px) scale(.6744);animation:fall-157 10s -28s linear infinite}@keyframes fall-157{65.375%{transform:translate(16.7827vw,65.375vh) scale(.6744)}to{transform:translate(16.04125vw,100vh) scale(.6744)}}.snow:nth-child(158){opacity:1.9956;transform:translate(76.8389vw,-10px) scale(.7998);animation:fall-158 21s -18s linear infinite}@keyframes fall-158{71.966%{transform:translate(79.5315vw,71.966vh) scale(.7998)}to{transform:translate(78.1852vw,100vh) scale(.7998)}}.snow:nth-child(159){opacity:1.9048;transform:translate(32.5572vw,-10px) scale(.4053);animation:fall-159 16s -15s linear infinite}@keyframes fall-159{77.301%{transform:translate(37.5078vw,77.301vh) scale(.4053)}to{transform:translate(35.0325vw,100vh) scale(.4053)}}.snow:nth-child(160){opacity:.92;transform:translate(23.8187vw,-10px) scale(.7353);animation:fall-160 27s -28s linear infinite}@keyframes fall-160{30.605%{transform:translate(19.0884vw,30.605vh) scale(.7353)}to{transform:translate(21.45355vw,100vh) scale(.7353)}}.snow:nth-child(161){opacity:.4894;transform:translate(75.0372vw,-10px) scale(.4369);animation:fall-161 20s -9s linear infinite}@keyframes fall-161{64.202%{transform:translate(83.3291vw,64.202vh) scale(.4369)}to{transform:translate(79.18315vw,100vh) scale(.4369)}}.snow:nth-child(162){opacity:.7502;transform:translate(35.7894vw,-10px) scale(.3634);animation:fall-162 28s -28s linear infinite}@keyframes fall-162{66.318%{transform:translate(27.7358vw,66.318vh) scale(.3634)}to{transform:translate(31.7626vw,100vh) scale(.3634)}}.snow:nth-child(163){opacity:.439;transform:translate(16.3497vw,-10px) scale(.5055);animation:fall-163 25s -16s linear infinite}@keyframes fall-163{43.31%{transform:translate(8.1633vw,43.31vh) scale(.5055)}to{transform:translate(12.2565vw,100vh) scale(.5055)}}.snow:nth-child(164){opacity:.0906;transform:translate(74.2471vw,-10px) scale(.0533);animation:fall-164 10s -4s linear infinite}@keyframes fall-164{73.755%{transform:translate(70.6749vw,73.755vh) scale(.0533)}to{transform:translate(72.461vw,100vh) scale(.0533)}}.snow:nth-child(165){opacity:.2414;transform:translate(61.0456vw,-10px) scale(.9827);animation:fall-165 19s -19s linear infinite}@keyframes fall-165{41.721%{transform:translate(69.907vw,41.721vh) scale(.9827)}to{transform:translate(65.4763vw,100vh) scale(.9827)}}.snow:nth-child(166){opacity:.8476;transform:translate(59.1867vw,-10px) scale(.0257);animation:fall-166 12s -26s linear infinite}@keyframes fall-166{65.077%{transform:translate(65.4036vw,65.077vh) scale(.0257)}to{transform:translate(62.29515vw,100vh) scale(.0257)}}.snow:nth-child(167){opacity:1.635;transform:translate(93.589vw,-10px) scale(.4113);animation:fall-167 10s -11s linear infinite}@keyframes fall-167{48.741%{transform:translate(88.5283vw,48.741vh) scale(.4113)}to{transform:translate(91.05865vw,100vh) scale(.4113)}}.snow:nth-child(168){opacity:1.8086;transform:translate(31.7513vw,-10px) scale(.0662);animation:fall-168 17s -7s linear infinite}@keyframes fall-168{30.255%{transform:translate(33.6953vw,30.255vh) scale(.0662)}to{transform:translate(32.7233vw,100vh) scale(.0662)}}.snow:nth-child(169){opacity:.7174;transform:translate(20.8455vw,-10px) scale(.4553);animation:fall-169 14s -11s linear infinite}@keyframes fall-169{60.005%{transform:translate(18.262vw,60.005vh) scale(.4553)}to{transform:translate(19.55375vw,100vh) scale(.4553)}}.snow:nth-child(170){opacity:.3844;transform:translate(29.1566vw,-10px) scale(.624);animation:fall-170 29s -7s linear infinite}@keyframes fall-170{64.762%{transform:translate(38.548vw,64.762vh) scale(.624)}to{transform:translate(33.8523vw,100vh) scale(.624)}}.snow:nth-child(171){opacity:1.7358;transform:translate(84.7307vw,-10px) scale(.8345);animation:fall-171 10s -4s linear infinite}@keyframes fall-171{45.888%{transform:translate(79.5588vw,45.888vh) scale(.8345)}to{transform:translate(82.14475vw,100vh) scale(.8345)}}.snow:nth-child(172){opacity:1.5094;transform:translate(2.1968vw,-10px) scale(.3197);animation:fall-172 11s -7s linear infinite}@keyframes fall-172{78.716%{transform:translate(-3.7065vw,78.716vh) scale(.3197)}to{transform:translate(-.75485vw,100vh) scale(.3197)}}.snow:nth-child(173){opacity:1.4748;transform:translate(12.1389vw,-10px) scale(.4268);animation:fall-173 18s -29s linear infinite}@keyframes fall-173{60.151%{transform:translate(2.9786vw,60.151vh) scale(.4268)}to{transform:translate(7.55875vw,100vh) scale(.4268)}}.snow:nth-child(174){opacity:.5076;transform:translate(35.5854vw,-10px) scale(.0853);animation:fall-174 22s -20s linear infinite}@keyframes fall-174{47.402%{transform:translate(25.7994vw,47.402vh) scale(.0853)}to{transform:translate(30.6924vw,100vh) scale(.0853)}}.snow:nth-child(175){opacity:1.312;transform:translate(74.4206vw,-10px) scale(.6619);animation:fall-175 10s -19s linear infinite}@keyframes fall-175{42.091%{transform:translate(68.0898vw,42.091vh) scale(.6619)}to{transform:translate(71.2552vw,100vh) scale(.6619)}}.snow:nth-child(176){opacity:1.8824;transform:translate(72.3169vw,-10px) scale(.7125);animation:fall-176 11s -18s linear infinite}@keyframes fall-176{56.165%{transform:translate(66.3617vw,56.165vh) scale(.7125)}to{transform:translate(69.3393vw,100vh) scale(.7125)}}.snow:nth-child(177){opacity:1.3006;transform:translate(71.3955vw,-10px) scale(.7314);animation:fall-177 23s -17s linear infinite}@keyframes fall-177{35.879%{transform:translate(81.3087vw,35.879vh) scale(.7314)}to{transform:translate(76.3521vw,100vh) scale(.7314)}}.snow:nth-child(178){opacity:1.972;transform:translate(6.3634vw,-10px) scale(.8372);animation:fall-178 29s -16s linear infinite}@keyframes fall-178{43.972%{transform:translate(3.5045vw,43.972vh) scale(.8372)}to{transform:translate(4.93395vw,100vh) scale(.8372)}}.snow:nth-child(179){opacity:.1362;transform:translate(8.5247vw,-10px) scale(.5199);animation:fall-179 16s -26s linear infinite}@keyframes fall-179{50.091%{transform:translate(17.6956vw,50.091vh) scale(.5199)}to{transform:translate(13.11015vw,100vh) scale(.5199)}}.snow:nth-child(180){opacity:1.8644;transform:translate(25.0081vw,-10px) scale(.9674);animation:fall-180 15s -19s linear infinite}@keyframes fall-180{33.894%{transform:translate(25.732vw,33.894vh) scale(.9674)}to{transform:translate(25.37005vw,100vh) scale(.9674)}}.snow:nth-child(181){opacity:1.5662;transform:translate(32.4746vw,-10px) scale(.4738);animation:fall-181 10s -30s linear infinite}@keyframes fall-181{78.329%{transform:translate(32.8734vw,78.329vh) scale(.4738)}to{transform:translate(32.674vw,100vh) scale(.4738)}}.snow:nth-child(182){opacity:.1058;transform:translate(63.0088vw,-10px) scale(.449);animation:fall-182 18s -16s linear infinite}@keyframes fall-182{76.186%{transform:translate(71.0839vw,76.186vh) scale(.449)}to{transform:translate(67.04635vw,100vh) scale(.449)}}.snow:nth-child(183){opacity:.3174;transform:translate(18.1843vw,-10px) scale(.1696);animation:fall-183 28s -26s linear infinite}@keyframes fall-183{52.274%{transform:translate(9.5481vw,52.274vh) scale(.1696)}to{transform:translate(13.8662vw,100vh) scale(.1696)}}.snow:nth-child(184){opacity:.437;transform:translate(86.3594vw,-10px) scale(.627);animation:fall-184 12s -30s linear infinite}@keyframes fall-184{33.567%{transform:translate(94.6194vw,33.567vh) scale(.627)}to{transform:translate(90.4894vw,100vh) scale(.627)}}.snow:nth-child(185){opacity:1.5342;transform:translate(93.7087vw,-10px) scale(.5909);animation:fall-185 18s -16s linear infinite}@keyframes fall-185{46.703%{transform:translate(96.3858vw,46.703vh) scale(.5909)}to{transform:translate(95.04725vw,100vh) scale(.5909)}}.snow:nth-child(186){opacity:1.3902;transform:translate(17.7582vw,-10px) scale(.2233);animation:fall-186 25s -17s linear infinite}@keyframes fall-186{36.188%{transform:translate(10.275vw,36.188vh) scale(.2233)}to{transform:translate(14.0166vw,100vh) scale(.2233)}}.snow:nth-child(187){opacity:.752;transform:translate(50.2328vw,-10px) scale(.5627);animation:fall-187 12s -6s linear infinite}@keyframes fall-187{62.997%{transform:translate(41.3448vw,62.997vh) scale(.5627)}to{transform:translate(45.7888vw,100vh) scale(.5627)}}.snow:nth-child(188){opacity:1.2678;transform:translate(57.5072vw,-10px) scale(.0938);animation:fall-188 22s -21s linear infinite}@keyframes fall-188{34.116%{transform:translate(48.2411vw,34.116vh) scale(.0938)}to{transform:translate(52.87415vw,100vh) scale(.0938)}}.snow:nth-child(189){opacity:.4482;transform:translate(67.0977vw,-10px) scale(.1612);animation:fall-189 30s -26s linear infinite}@keyframes fall-189{78.304%{transform:translate(75.4906vw,78.304vh) scale(.1612)}to{transform:translate(71.29415vw,100vh) scale(.1612)}}.snow:nth-child(190){opacity:1.1668;transform:translate(10.8162vw,-10px) scale(.6986);animation:fall-190 20s -8s linear infinite}@keyframes fall-190{68.624%{transform:translate(6.9457vw,68.624vh) scale(.6986)}to{transform:translate(8.88095vw,100vh) scale(.6986)}}.snow:nth-child(191){opacity:.1222;transform:translate(58.3684vw,-10px) scale(.7651);animation:fall-191 27s -13s linear infinite}@keyframes fall-191{53.485%{transform:translate(56.091vw,53.485vh) scale(.7651)}to{transform:translate(57.2297vw,100vh) scale(.7651)}}.snow:nth-child(192){opacity:1.3578;transform:translate(72.7457vw,-10px) scale(.6492);animation:fall-192 19s -26s linear infinite}@keyframes fall-192{79.86%{transform:translate(80.6681vw,79.86vh) scale(.6492)}to{transform:translate(76.7069vw,100vh) scale(.6492)}}.snow:nth-child(193){opacity:1.2704;transform:translate(24.4823vw,-10px) scale(.1372);animation:fall-193 28s -3s linear infinite}@keyframes fall-193{46.43%{transform:translate(29.2939vw,46.43vh) scale(.1372)}to{transform:translate(26.8881vw,100vh) scale(.1372)}}.snow:nth-child(194){opacity:1.558;transform:translate(39.583vw,-10px) scale(.4589);animation:fall-194 26s -29s linear infinite}@keyframes fall-194{49.216%{transform:translate(30.1174vw,49.216vh) scale(.4589)}to{transform:translate(34.8502vw,100vh) scale(.4589)}}.snow:nth-child(195){opacity:.8182;transform:translate(5.8752vw,-10px) scale(.7237);animation:fall-195 30s -8s linear infinite}@keyframes fall-195{67.479%{transform:translate(6.3002vw,67.479vh) scale(.7237)}to{transform:translate(6.0877vw,100vh) scale(.7237)}}.snow:nth-child(196){opacity:1.8236;transform:translate(37.6586vw,-10px) scale(.3602);animation:fall-196 16s -1s linear infinite}@keyframes fall-196{65.314%{transform:translate(32.2896vw,65.314vh) scale(.3602)}to{transform:translate(34.9741vw,100vh) scale(.3602)}}.snow:nth-child(197){opacity:.6824;transform:translate(19.4065vw,-10px) scale(.5519);animation:fall-197 13s -4s linear infinite}@keyframes fall-197{42.388%{transform:translate(14.9983vw,42.388vh) scale(.5519)}to{transform:translate(17.2024vw,100vh) scale(.5519)}}.snow:nth-child(198){opacity:.572;transform:translate(17.0709vw,-10px) scale(.4266);animation:fall-198 26s -23s linear infinite}@keyframes fall-198{51.987%{transform:translate(9.8924vw,51.987vh) scale(.4266)}to{transform:translate(13.48165vw,100vh) scale(.4266)}}.snow:nth-child(199){opacity:.77;transform:translate(53.7985vw,-10px) scale(.1096);animation:fall-199 19s -17s linear infinite}@keyframes fall-199{49.994%{transform:translate(57.542vw,49.994vh) scale(.1096)}to{transform:translate(55.67025vw,100vh) scale(.1096)}}.snow:nth-child(200){opacity:.6116;transform:translate(81.4688vw,-10px) scale(.9332);animation:fall-200 14s -17s linear infinite}@keyframes fall-200{53.527%{transform:translate(77.8031vw,53.527vh) scale(.9332)}to{transform:translate(79.63595vw,100vh) scale(.9332)}}.snow:nth-child(201){opacity:.9436;transform:translate(75.0591vw,-10px) scale(.3626);animation:fall-201 15s -8s linear infinite}@keyframes fall-201{50.591%{transform:translate(67.377vw,50.591vh) scale(.3626)}to{transform:translate(71.21805vw,100vh) scale(.3626)}}.snow:nth-child(202){opacity:.6568;transform:translate(67.479vw,-10px) scale(.6694);animation:fall-202 21s -8s linear infinite}@keyframes fall-202{46.921%{transform:translate(60.2684vw,46.921vh) scale(.6694)}to{transform:translate(63.8737vw,100vh) scale(.6694)}}.snow:nth-child(203){opacity:.15;transform:translate(12.9973vw,-10px) scale(.6753);animation:fall-203 28s -24s linear infinite}@keyframes fall-203{34.471%{transform:translate(10.6564vw,34.471vh) scale(.6753)}to{transform:translate(11.82685vw,100vh) scale(.6753)}}.snow:nth-child(204){opacity:.2778;transform:translate(50.737vw,-10px) scale(.51);animation:fall-204 14s -23s linear infinite}@keyframes fall-204{51.984%{transform:translate(42.1989vw,51.984vh) scale(.51)}to{transform:translate(46.46795vw,100vh) scale(.51)}}.snow:nth-child(205){opacity:1.4948;transform:translate(70.5807vw,-10px) scale(.8845);animation:fall-205 16s -7s linear infinite}@keyframes fall-205{50.086%{transform:translate(77.869vw,50.086vh) scale(.8845)}to{transform:translate(74.22485vw,100vh) scale(.8845)}}.snow:nth-child(206){opacity:.9378;transform:translate(36.6795vw,-10px) scale(.46);animation:fall-206 13s -3s linear infinite}@keyframes fall-206{40.649%{transform:translate(30.3618vw,40.649vh) scale(.46)}to{transform:translate(33.52065vw,100vh) scale(.46)}}.snow:nth-child(207){opacity:.1558;transform:translate(33.2418vw,-10px) scale(.7488);animation:fall-207 26s -3s linear infinite}@keyframes fall-207{53.621%{transform:translate(35.9883vw,53.621vh) scale(.7488)}to{transform:translate(34.61505vw,100vh) scale(.7488)}}.snow:nth-child(208){opacity:.0252;transform:translate(1.5173vw,-10px) scale(.8834);animation:fall-208 27s -28s linear infinite}@keyframes fall-208{43.79%{transform:translate(-3.7127vw,43.79vh) scale(.8834)}to{transform:translate(-1.0977vw,100vh) scale(.8834)}}.snow:nth-child(209){opacity:.045;transform:translate(73.7303vw,-10px) scale(.1411);animation:fall-209 20s -29s linear infinite}@keyframes fall-209{72.357%{transform:translate(68.1155vw,72.357vh) scale(.1411)}to{transform:translate(70.9229vw,100vh) scale(.1411)}}.snow:nth-child(210){opacity:1.8006;transform:translate(85.498vw,-10px) scale(.4487);animation:fall-210 30s -15s linear infinite}@keyframes fall-210{44.408%{transform:translate(94.8294vw,44.408vh) scale(.4487)}to{transform:translate(90.1637vw,100vh) scale(.4487)}}.snow:nth-child(211){opacity:.2528;transform:translate(56.3557vw,-10px) scale(.922);animation:fall-211 28s -22s linear infinite}@keyframes fall-211{75.58%{transform:translate(49.7604vw,75.58vh) scale(.922)}to{transform:translate(53.05805vw,100vh) scale(.922)}}.snow:nth-child(212){opacity:.8898;transform:translate(51.0931vw,-10px) scale(.9316);animation:fall-212 26s -2s linear infinite}@keyframes fall-212{65.313%{transform:translate(55.2605vw,65.313vh) scale(.9316)}to{transform:translate(53.1768vw,100vh) scale(.9316)}}.snow:nth-child(213){opacity:.0716;transform:translate(97.5272vw,-10px) scale(.292);animation:fall-213 29s -4s linear infinite}@keyframes fall-213{55.577%{transform:translate(93.6948vw,55.577vh) scale(.292)}to{transform:translate(95.611vw,100vh) scale(.292)}}.snow:nth-child(214){opacity:1.9286;transform:translate(96.9741vw,-10px) scale(.2706);animation:fall-214 23s -27s linear infinite}@keyframes fall-214{76.022%{transform:translate(88.2847vw,76.022vh) scale(.2706)}to{transform:translate(92.6294vw,100vh) scale(.2706)}}.snow:nth-child(215){opacity:.1938;transform:translate(41.6889vw,-10px) scale(.2205);animation:fall-215 20s -22s linear infinite}@keyframes fall-215{51.766%{transform:translate(46.1515vw,51.766vh) scale(.2205)}to{transform:translate(43.9202vw,100vh) scale(.2205)}}.snow:nth-child(216){opacity:1.9558;transform:translate(82.5491vw,-10px) scale(.9102);animation:fall-216 23s -23s linear infinite}@keyframes fall-216{34.362%{transform:translate(73.7026vw,34.362vh) scale(.9102)}to{transform:translate(78.12585vw,100vh) scale(.9102)}}.snow:nth-child(217){opacity:.431;transform:translate(86.1675vw,-10px) scale(.619);animation:fall-217 12s -10s linear infinite}@keyframes fall-217{51.537%{transform:translate(92.7505vw,51.537vh) scale(.619)}to{transform:translate(89.459vw,100vh) scale(.619)}}.snow:nth-child(218){opacity:.2406;transform:translate(76.5319vw,-10px) scale(.2474);animation:fall-218 18s -22s linear infinite}@keyframes fall-218{32.223%{transform:translate(71.9721vw,32.223vh) scale(.2474)}to{transform:translate(74.252vw,100vh) scale(.2474)}}.snow:nth-child(219){opacity:.5366;transform:translate(20.0421vw,-10px) scale(.1541);animation:fall-219 13s -2s linear infinite}@keyframes fall-219{32.056%{transform:translate(25.461vw,32.056vh) scale(.1541)}to{transform:translate(22.75155vw,100vh) scale(.1541)}}.snow:nth-child(220){opacity:.4006;transform:translate(29.6908vw,-10px) scale(.3322);animation:fall-220 11s -28s linear infinite}@keyframes fall-220{48.4%{transform:translate(36.8037vw,48.4vh) scale(.3322)}to{transform:translate(33.24725vw,100vh) scale(.3322)}}.snow:nth-child(221){opacity:.1958;transform:translate(80.3397vw,-10px) scale(.2865);animation:fall-221 26s -30s linear infinite}@keyframes fall-221{60.971%{transform:translate(82.532vw,60.971vh) scale(.2865)}to{transform:translate(81.43585vw,100vh) scale(.2865)}}.snow:nth-child(222){opacity:.9118;transform:translate(19.5047vw,-10px) scale(.802);animation:fall-222 14s -25s linear infinite}@keyframes fall-222{50.944%{transform:translate(20.7911vw,50.944vh) scale(.802)}to{transform:translate(20.1479vw,100vh) scale(.802)}}.snow:nth-child(223){opacity:1.8694;transform:translate(68.7941vw,-10px) scale(.5931);animation:fall-223 22s -29s linear infinite}@keyframes fall-223{73.132%{transform:translate(65.7591vw,73.132vh) scale(.5931)}to{transform:translate(67.2766vw,100vh) scale(.5931)}}.snow:nth-child(224){opacity:1.861;transform:translate(27.4289vw,-10px) scale(.4555);animation:fall-224 22s -9s linear infinite}@keyframes fall-224{73.171%{transform:translate(22.8988vw,73.171vh) scale(.4555)}to{transform:translate(25.16385vw,100vh) scale(.4555)}}.snow:nth-child(225){opacity:.0228;transform:translate(77.3223vw,-10px) scale(.1173);animation:fall-225 25s -14s linear infinite}@keyframes fall-225{45.034%{transform:translate(69.9087vw,45.034vh) scale(.1173)}to{transform:translate(73.6155vw,100vh) scale(.1173)}}.snow:nth-child(226){opacity:1.8178;transform:translate(99.9367vw,-10px) scale(.7836);animation:fall-226 10s -12s linear infinite}@keyframes fall-226{61.469%{transform:translate(105.0645vw,61.469vh) scale(.7836)}to{transform:translate(102.5006vw,100vh) scale(.7836)}}.snow:nth-child(227){opacity:1.4662;transform:translate(8.3446vw,-10px) scale(.1097);animation:fall-227 16s -8s linear infinite}@keyframes fall-227{70.15%{transform:translate(1.1182vw,70.15vh) scale(.1097)}to{transform:translate(4.7314vw,100vh) scale(.1097)}}.snow:nth-child(228){opacity:1.5008;transform:translate(72.5279vw,-10px) scale(.5867);animation:fall-228 28s -22s linear infinite}@keyframes fall-228{58.476%{transform:translate(67.9201vw,58.476vh) scale(.5867)}to{transform:translate(70.224vw,100vh) scale(.5867)}}.snow:nth-child(229){opacity:1.6114;transform:translate(92.0273vw,-10px) scale(.9655);animation:fall-229 22s -25s linear infinite}@keyframes fall-229{31.788%{transform:translate(92.2701vw,31.788vh) scale(.9655)}to{transform:translate(92.1487vw,100vh) scale(.9655)}}.snow:nth-child(230){opacity:1.7258;transform:translate(49.5837vw,-10px) scale(.0303);animation:fall-230 26s -7s linear infinite}@keyframes fall-230{57.342%{transform:translate(55.8994vw,57.342vh) scale(.0303)}to{transform:translate(52.74155vw,100vh) scale(.0303)}}.snow:nth-child(231){opacity:1.6426;transform:translate(31.8574vw,-10px) scale(.5356);animation:fall-231 14s -5s linear infinite}@keyframes fall-231{75.663%{transform:translate(30.0176vw,75.663vh) scale(.5356)}to{transform:translate(30.9375vw,100vh) scale(.5356)}}.snow:nth-child(232){opacity:.8436;transform:translate(71.4277vw,-10px) scale(.7178);animation:fall-232 27s -26s linear infinite}@keyframes fall-232{76.043%{transform:translate(78.3777vw,76.043vh) scale(.7178)}to{transform:translate(74.9027vw,100vh) scale(.7178)}}.snow:nth-child(233){opacity:1.5372;transform:translate(29.7831vw,-10px) scale(.3369);animation:fall-233 15s -28s linear infinite}@keyframes fall-233{60.077%{transform:translate(35.5823vw,60.077vh) scale(.3369)}to{transform:translate(32.6827vw,100vh) scale(.3369)}}.snow:nth-child(234){opacity:.092;transform:translate(80.1937vw,-10px) scale(.4453);animation:fall-234 10s -6s linear infinite}@keyframes fall-234{60.064%{transform:translate(82.5024vw,60.064vh) scale(.4453)}to{transform:translate(81.34805vw,100vh) scale(.4453)}}.snow:nth-child(235){opacity:1.439;transform:translate(51.8957vw,-10px) scale(.3531);animation:fall-235 17s -6s linear infinite}@keyframes fall-235{61.722%{transform:translate(52.0681vw,61.722vh) scale(.3531)}to{transform:translate(51.9819vw,100vh) scale(.3531)}}.snow:nth-child(236){opacity:.9018;transform:translate(47.9211vw,-10px) scale(.4481);animation:fall-236 29s -10s linear infinite}@keyframes fall-236{46.605%{transform:translate(53.4683vw,46.605vh) scale(.4481)}to{transform:translate(50.6947vw,100vh) scale(.4481)}}.snow:nth-child(237){opacity:1.1038;transform:translate(46.6286vw,-10px) scale(.6589);animation:fall-237 10s -21s linear infinite}@keyframes fall-237{46.013%{transform:translate(43.3526vw,46.013vh) scale(.6589)}to{transform:translate(44.9906vw,100vh) scale(.6589)}}.snow:nth-child(238){opacity:.7968;transform:translate(58.9898vw,-10px) scale(.4066);animation:fall-238 15s -4s linear infinite}@keyframes fall-238{32.283%{transform:translate(53.7318vw,32.283vh) scale(.4066)}to{transform:translate(56.3608vw,100vh) scale(.4066)}}.snow:nth-child(239){opacity:1.4068;transform:translate(11.9486vw,-10px) scale(.9586);animation:fall-239 18s -17s linear infinite}@keyframes fall-239{71.368%{transform:translate(14.765vw,71.368vh) scale(.9586)}to{transform:translate(13.3568vw,100vh) scale(.9586)}}.snow:nth-child(240){opacity:1.069;transform:translate(65.6632vw,-10px) scale(.1429);animation:fall-240 19s -21s linear infinite}@keyframes fall-240{69.009%{transform:translate(62.3137vw,69.009vh) scale(.1429)}to{transform:translate(63.98845vw,100vh) scale(.1429)}}.snow:nth-child(241){opacity:.7382;transform:translate(47.8723vw,-10px) scale(.1964);animation:fall-241 22s -27s linear infinite}@keyframes fall-241{47.031%{transform:translate(44.5341vw,47.031vh) scale(.1964)}to{transform:translate(46.2032vw,100vh) scale(.1964)}}.snow:nth-child(242){opacity:1.0558;transform:translate(52.2595vw,-10px) scale(.1859);animation:fall-242 14s -29s linear infinite}@keyframes fall-242{77.396%{transform:translate(45.1252vw,77.396vh) scale(.1859)}to{transform:translate(48.69235vw,100vh) scale(.1859)}}.snow:nth-child(243){opacity:.5112;transform:translate(46.98vw,-10px) scale(.9334);animation:fall-243 23s -21s linear infinite}@keyframes fall-243{43.19%{transform:translate(56.9214vw,43.19vh) scale(.9334)}to{transform:translate(51.9507vw,100vh) scale(.9334)}}.snow:nth-child(244){opacity:.818;transform:translate(88.5582vw,-10px) scale(.1492);animation:fall-244 29s -15s linear infinite}@keyframes fall-244{71.521%{transform:translate(97.7016vw,71.521vh) scale(.1492)}to{transform:translate(93.1299vw,100vh) scale(.1492)}}.snow:nth-child(245){opacity:1.2008;transform:translate(42.1603vw,-10px) scale(.4905);animation:fall-245 14s -27s linear infinite}@keyframes fall-245{39.603%{transform:translate(46.8956vw,39.603vh) scale(.4905)}to{transform:translate(44.52795vw,100vh) scale(.4905)}}.snow:nth-child(246){opacity:1.0884;transform:translate(27.0095vw,-10px) scale(.8055);animation:fall-246 30s -27s linear infinite}@keyframes fall-246{62.436%{transform:translate(25.9068vw,62.436vh) scale(.8055)}to{transform:translate(26.45815vw,100vh) scale(.8055)}}.snow:nth-child(247){opacity:1.3546;transform:translate(11.0756vw,-10px) scale(.4036);animation:fall-247 25s -2s linear infinite}@keyframes fall-247{55.264%{transform:translate(14.9042vw,55.264vh) scale(.4036)}to{transform:translate(12.9899vw,100vh) scale(.4036)}}.snow:nth-child(248){opacity:.4064;transform:translate(32.0202vw,-10px) scale(.5048);animation:fall-248 17s -10s linear infinite}@keyframes fall-248{63.396%{transform:translate(22.2366vw,63.396vh) scale(.5048)}to{transform:translate(27.1284vw,100vh) scale(.5048)}}.snow:nth-child(249){opacity:.814;transform:translate(49.8201vw,-10px) scale(.9293);animation:fall-249 30s -7s linear infinite}@keyframes fall-249{60.437%{transform:translate(47.4876vw,60.437vh) scale(.9293)}to{transform:translate(48.65385vw,100vh) scale(.9293)}}.snow:nth-child(250){opacity:.3222;transform:translate(2.3822vw,-10px) scale(.1942);animation:fall-250 19s -19s linear infinite}@keyframes fall-250{34.036%{transform:translate(5.5971vw,34.036vh) scale(.1942)}to{transform:translate(3.98965vw,100vh) scale(.1942)}}.snow:nth-child(251){opacity:.3328;transform:translate(39.6663vw,-10px) scale(.5955);animation:fall-251 13s -19s linear infinite}@keyframes fall-251{65.85%{transform:translate(31.8784vw,65.85vh) scale(.5955)}to{transform:translate(35.77235vw,100vh) scale(.5955)}}.snow:nth-child(252){opacity:1.8988;transform:translate(98.0985vw,-10px) scale(.0549);animation:fall-252 14s -26s linear infinite}@keyframes fall-252{44.722%{transform:translate(93.4314vw,44.722vh) scale(.0549)}to{transform:translate(95.76495vw,100vh) scale(.0549)}}.snow:nth-child(253){opacity:.3628;transform:translate(95.8028vw,-10px) scale(.9471);animation:fall-253 11s -11s linear infinite}@keyframes fall-253{72.571%{transform:translate(96.0162vw,72.571vh) scale(.9471)}to{transform:translate(95.9095vw,100vh) scale(.9471)}}.snow:nth-child(254){opacity:1.9812;transform:translate(26.7872vw,-10px) scale(.7843);animation:fall-254 10s -16s linear infinite}@keyframes fall-254{60.671%{transform:translate(17.4113vw,60.671vh) scale(.7843)}to{transform:translate(22.09925vw,100vh) scale(.7843)}}.snow:nth-child(255){opacity:1.2996;transform:translate(80.8152vw,-10px) scale(.5435);animation:fall-255 10s -29s linear infinite}@keyframes fall-255{73.168%{transform:translate(71.3106vw,73.168vh) scale(.5435)}to{transform:translate(76.0629vw,100vh) scale(.5435)}}.snow:nth-child(256){opacity:1.542;transform:translate(73.4013vw,-10px) scale(.8126);animation:fall-256 22s -27s linear infinite}@keyframes fall-256{70.808%{transform:translate(73.9428vw,70.808vh) scale(.8126)}to{transform:translate(73.67205vw,100vh) scale(.8126)}}.snow:nth-child(257){opacity:1.2698;transform:translate(24.3898vw,-10px) scale(.7835);animation:fall-257 15s -20s linear infinite}@keyframes fall-257{61.527%{transform:translate(14.5222vw,61.527vh) scale(.7835)}to{transform:translate(19.456vw,100vh) scale(.7835)}}.snow:nth-child(258){opacity:.407;transform:translate(28.1974vw,-10px) scale(.046);animation:fall-258 20s -11s linear infinite}@keyframes fall-258{60.288%{transform:translate(34.4326vw,60.288vh) scale(.046)}to{transform:translate(31.315vw,100vh) scale(.046)}}.snow:nth-child(259){opacity:.5108;transform:translate(15.1158vw,-10px) scale(.1473);animation:fall-259 10s -8s linear infinite}@keyframes fall-259{58.481%{transform:translate(10.7185vw,58.481vh) scale(.1473)}to{transform:translate(12.91715vw,100vh) scale(.1473)}}.snow:nth-child(260){opacity:1.1964;transform:translate(13.3812vw,-10px) scale(.5365);animation:fall-260 12s -6s linear infinite}@keyframes fall-260{60.305%{transform:translate(11.5066vw,60.305vh) scale(.5365)}to{transform:translate(12.4439vw,100vh) scale(.5365)}}.snow:nth-child(261){opacity:1.97;transform:translate(93.6957vw,-10px) scale(.1948);animation:fall-261 19s -2s linear infinite}@keyframes fall-261{40.675%{transform:translate(98.2369vw,40.675vh) scale(.1948)}to{transform:translate(95.9663vw,100vh) scale(.1948)}}.snow:nth-child(262){opacity:.4422;transform:translate(35.1798vw,-10px) scale(.799);animation:fall-262 24s -30s linear infinite}@keyframes fall-262{39.53%{transform:translate(30.1589vw,39.53vh) scale(.799)}to{transform:translate(32.66935vw,100vh) scale(.799)}}.snow:nth-child(263){opacity:1.946;transform:translate(91.3991vw,-10px) scale(.7542);animation:fall-263 17s -5s linear infinite}@keyframes fall-263{30.886%{transform:translate(94.4352vw,30.886vh) scale(.7542)}to{transform:translate(92.91715vw,100vh) scale(.7542)}}.snow:nth-child(264){opacity:1.2;transform:translate(43.5527vw,-10px) scale(.0275);animation:fall-264 11s -23s linear infinite}@keyframes fall-264{47.803%{transform:translate(48.5682vw,47.803vh) scale(.0275)}to{transform:translate(46.06045vw,100vh) scale(.0275)}}.snow:nth-child(265){opacity:1.8526;transform:translate(15.3362vw,-10px) scale(.7509);animation:fall-265 18s -8s linear infinite}@keyframes fall-265{43.455%{transform:translate(10.1903vw,43.455vh) scale(.7509)}to{transform:translate(12.76325vw,100vh) scale(.7509)}}.snow:nth-child(266){opacity:1.8842;transform:translate(96.9689vw,-10px) scale(.192);animation:fall-266 13s -26s linear infinite}@keyframes fall-266{66.177%{transform:translate(102.7531vw,66.177vh) scale(.192)}to{transform:translate(99.861vw,100vh) scale(.192)}}.snow:nth-child(267){opacity:1.9578;transform:translate(36.796vw,-10px) scale(.0777);animation:fall-267 24s -6s linear infinite}@keyframes fall-267{44.292%{transform:translate(33.5913vw,44.292vh) scale(.0777)}to{transform:translate(35.19365vw,100vh) scale(.0777)}}.snow:nth-child(268){opacity:.5446;transform:translate(46.9323vw,-10px) scale(.9958);animation:fall-268 18s -30s linear infinite}@keyframes fall-268{31.566%{transform:translate(44.6651vw,31.566vh) scale(.9958)}to{transform:translate(45.7987vw,100vh) scale(.9958)}}.snow:nth-child(269){opacity:.3654;transform:translate(64.1174vw,-10px) scale(.8369);animation:fall-269 26s -22s linear infinite}@keyframes fall-269{41.604%{transform:translate(73.0509vw,41.604vh) scale(.8369)}to{transform:translate(68.58415vw,100vh) scale(.8369)}}.snow:nth-child(270){opacity:.6214;transform:translate(92.051vw,-10px) scale(.5292);animation:fall-270 10s -18s linear infinite}@keyframes fall-270{62.944%{transform:translate(84.9725vw,62.944vh) scale(.5292)}to{transform:translate(88.51175vw,100vh) scale(.5292)}}.snow:nth-child(271){opacity:.288;transform:translate(91.2793vw,-10px) scale(.6197);animation:fall-271 17s -18s linear infinite}@keyframes fall-271{42.268%{transform:translate(90.7842vw,42.268vh) scale(.6197)}to{transform:translate(91.03175vw,100vh) scale(.6197)}}.snow:nth-child(272){opacity:1.7942;transform:translate(92.6741vw,-10px) scale(.8034);animation:fall-272 10s -30s linear infinite}@keyframes fall-272{58.176%{transform:translate(87.8656vw,58.176vh) scale(.8034)}to{transform:translate(90.26985vw,100vh) scale(.8034)}}.snow:nth-child(273){opacity:.1612;transform:translate(91.4034vw,-10px) scale(.1668);animation:fall-273 20s -7s linear infinite}@keyframes fall-273{68.787%{transform:translate(83.6666vw,68.787vh) scale(.1668)}to{transform:translate(87.535vw,100vh) scale(.1668)}}.snow:nth-child(274){opacity:.2922;transform:translate(68.3518vw,-10px) scale(.3672);animation:fall-274 26s -19s linear infinite}@keyframes fall-274{55.008%{transform:translate(77.0658vw,55.008vh) scale(.3672)}to{transform:translate(72.7088vw,100vh) scale(.3672)}}.snow:nth-child(275){opacity:1.3648;transform:translate(2.1605vw,-10px) scale(.1786);animation:fall-275 27s -21s linear infinite}@keyframes fall-275{49.316%{transform:translate(-6.6466vw,49.316vh) scale(.1786)}to{transform:translate(-2.24305vw,100vh) scale(.1786)}}.snow:nth-child(276){opacity:1.607;transform:translate(17.0693vw,-10px) scale(.0224);animation:fall-276 28s -3s linear infinite}@keyframes fall-276{68.954%{transform:translate(24.0874vw,68.954vh) scale(.0224)}to{transform:translate(20.57835vw,100vh) scale(.0224)}}.snow:nth-child(277){opacity:.6944;transform:translate(43.3644vw,-10px) scale(.3344);animation:fall-277 19s -18s linear infinite}@keyframes fall-277{42.361%{transform:translate(33.5978vw,42.361vh) scale(.3344)}to{transform:translate(38.4811vw,100vh) scale(.3344)}}.snow:nth-child(278){opacity:.9766;transform:translate(66.8854vw,-10px) scale(.5675);animation:fall-278 10s -10s linear infinite}@keyframes fall-278{44.776%{transform:translate(73.5294vw,44.776vh) scale(.5675)}to{transform:translate(70.2074vw,100vh) scale(.5675)}}.snow:nth-child(279){opacity:1.9572;transform:translate(10.6983vw,-10px) scale(.6667);animation:fall-279 26s -15s linear infinite}@keyframes fall-279{48.731%{transform:translate(5.6137vw,48.731vh) scale(.6667)}to{transform:translate(8.156vw,100vh) scale(.6667)}}.snow:nth-child(280){opacity:.8202;transform:translate(23.7015vw,-10px) scale(.8473);animation:fall-280 24s -30s linear infinite}@keyframes fall-280{32.427%{transform:translate(26.0094vw,32.427vh) scale(.8473)}to{transform:translate(24.85545vw,100vh) scale(.8473)}}.snow:nth-child(281){opacity:1.7202;transform:translate(47.4539vw,-10px) scale(.8966);animation:fall-281 15s -17s linear infinite}@keyframes fall-281{44.525%{transform:translate(56.908vw,44.525vh) scale(.8966)}to{transform:translate(52.18095vw,100vh) scale(.8966)}}.snow:nth-child(282){opacity:1.7552;transform:translate(13.3239vw,-10px) scale(.6448);animation:fall-282 23s -15s linear infinite}@keyframes fall-282{39.106%{transform:translate(22.258vw,39.106vh) scale(.6448)}to{transform:translate(17.79095vw,100vh) scale(.6448)}}.snow:nth-child(283){opacity:1.1492;transform:translate(26.774vw,-10px) scale(.8649);animation:fall-283 21s -11s linear infinite}@keyframes fall-283{59.132%{transform:translate(25.1654vw,59.132vh) scale(.8649)}to{transform:translate(25.9697vw,100vh) scale(.8649)}}.snow:nth-child(284){opacity:.7386;transform:translate(17.1895vw,-10px) scale(.0941);animation:fall-284 20s -23s linear infinite}@keyframes fall-284{34.977%{transform:translate(16.6183vw,34.977vh) scale(.0941)}to{transform:translate(16.9039vw,100vh) scale(.0941)}}.snow:nth-child(285){opacity:.5714;transform:translate(25.6714vw,-10px) scale(.7941);animation:fall-285 16s -5s linear infinite}@keyframes fall-285{31.632%{transform:translate(27.3058vw,31.632vh) scale(.7941)}to{transform:translate(26.4886vw,100vh) scale(.7941)}}.snow:nth-child(286){opacity:1.145;transform:translate(36.6429vw,-10px) scale(.9142);animation:fall-286 22s -16s linear infinite}@keyframes fall-286{79.015%{transform:translate(44.8138vw,79.015vh) scale(.9142)}to{transform:translate(40.72835vw,100vh) scale(.9142)}}.snow:nth-child(287){opacity:.8266;transform:translate(74.1991vw,-10px) scale(.1547);animation:fall-287 21s -9s linear infinite}@keyframes fall-287{63.305%{transform:translate(68.3112vw,63.305vh) scale(.1547)}to{transform:translate(71.25515vw,100vh) scale(.1547)}}.snow:nth-child(288){opacity:1.9832;transform:translate(99.7176vw,-10px) scale(.9405);animation:fall-288 12s -27s linear infinite}@keyframes fall-288{35.26%{transform:translate(105.1454vw,35.26vh) scale(.9405)}to{transform:translate(102.4315vw,100vh) scale(.9405)}}.snow:nth-child(289){opacity:1.0218;transform:translate(46.154vw,-10px) scale(.1361);animation:fall-289 17s -23s linear infinite}@keyframes fall-289{56.11%{transform:translate(38.7682vw,56.11vh) scale(.1361)}to{transform:translate(42.4611vw,100vh) scale(.1361)}}.snow:nth-child(290){opacity:1.102;transform:translate(64.1352vw,-10px) scale(.6639);animation:fall-290 19s -23s linear infinite}@keyframes fall-290{39.112%{transform:translate(71.171vw,39.112vh) scale(.6639)}to{transform:translate(67.6531vw,100vh) scale(.6639)}}.snow:nth-child(291){opacity:1.3346;transform:translate(11.0456vw,-10px) scale(.0735);animation:fall-291 23s -19s linear infinite}@keyframes fall-291{63.006%{transform:translate(11.2572vw,63.006vh) scale(.0735)}to{transform:translate(11.1514vw,100vh) scale(.0735)}}.snow:nth-child(292){opacity:1.0458;transform:translate(65.3732vw,-10px) scale(.5225);animation:fall-292 29s -27s linear infinite}@keyframes fall-292{38.267%{transform:translate(65.2409vw,38.267vh) scale(.5225)}to{transform:translate(65.30705vw,100vh) scale(.5225)}}.snow:nth-child(293){opacity:1.4106;transform:translate(48.8223vw,-10px) scale(.0752);animation:fall-293 24s -19s linear infinite}@keyframes fall-293{41.907%{transform:translate(43.1782vw,41.907vh) scale(.0752)}to{transform:translate(46.00025vw,100vh) scale(.0752)}}.snow:nth-child(294){opacity:.1608;transform:translate(48.6214vw,-10px) scale(.2999);animation:fall-294 18s -15s linear infinite}@keyframes fall-294{79.497%{transform:translate(42.4219vw,79.497vh) scale(.2999)}to{transform:translate(45.52165vw,100vh) scale(.2999)}}.snow:nth-child(295){opacity:.996;transform:translate(54.0172vw,-10px) scale(.9541);animation:fall-295 16s -11s linear infinite}@keyframes fall-295{57.058%{transform:translate(52.7717vw,57.058vh) scale(.9541)}to{transform:translate(53.39445vw,100vh) scale(.9541)}}.snow:nth-child(296){opacity:1.788;transform:translate(41.3054vw,-10px) scale(.6645);animation:fall-296 16s -30s linear infinite}@keyframes fall-296{48.747%{transform:translate(43.6586vw,48.747vh) scale(.6645)}to{transform:translate(42.482vw,100vh) scale(.6645)}}.snow:nth-child(297){opacity:.885;transform:translate(2.4153vw,-10px) scale(.477);animation:fall-297 27s -18s linear infinite}@keyframes fall-297{33.434%{transform:translate(2.806vw,33.434vh) scale(.477)}to{transform:translate(2.61065vw,100vh) scale(.477)}}.snow:nth-child(298){opacity:.0652;transform:translate(99.3991vw,-10px) scale(.4539);animation:fall-298 14s -22s linear infinite}@keyframes fall-298{34.586%{transform:translate(98.9167vw,34.586vh) scale(.4539)}to{transform:translate(99.1579vw,100vh) scale(.4539)}}.snow:nth-child(299){opacity:.2698;transform:translate(36.4371vw,-10px) scale(.4706);animation:fall-299 20s -17s linear infinite}@keyframes fall-299{36.409%{transform:translate(34.6236vw,36.409vh) scale(.4706)}to{transform:translate(35.53035vw,100vh) scale(.4706)}}.snow:nth-child(300){opacity:.185;transform:translate(35.891vw,-10px) scale(.7441);animation:fall-300 11s -28s linear infinite}@keyframes fall-300{58.346%{transform:translate(30.4911vw,58.346vh) scale(.7441)}to{transform:translate(33.19105vw,100vh) scale(.7441)}}.snow:nth-child(301){opacity:.7824;transform:translate(50.8503vw,-10px) scale(.0495);animation:fall-301 19s -6s linear infinite}@keyframes fall-301{64.957%{transform:translate(56.5633vw,64.957vh) scale(.0495)}to{transform:translate(53.7068vw,100vh) scale(.0495)}}.snow:nth-child(302){opacity:1.7458;transform:translate(97.8714vw,-10px) scale(.5746);animation:fall-302 28s -12s linear infinite}@keyframes fall-302{79.121%{transform:translate(96.8148vw,79.121vh) scale(.5746)}to{transform:translate(97.3431vw,100vh) scale(.5746)}}.snow:nth-child(303){opacity:1.0374;transform:translate(33.1464vw,-10px) scale(.0132);animation:fall-303 30s -24s linear infinite}@keyframes fall-303{30.472%{transform:translate(32.0283vw,30.472vh) scale(.0132)}to{transform:translate(32.58735vw,100vh) scale(.0132)}}.snow:nth-child(304){opacity:1.2114;transform:translate(38.6191vw,-10px) scale(.2261);animation:fall-304 29s -25s linear infinite}@keyframes fall-304{34.416%{transform:translate(41.8535vw,34.416vh) scale(.2261)}to{transform:translate(40.2363vw,100vh) scale(.2261)}}.snow:nth-child(305){opacity:1.6296;transform:translate(23.3196vw,-10px) scale(.0436);animation:fall-305 26s -23s linear infinite}@keyframes fall-305{53.834%{transform:translate(18.4767vw,53.834vh) scale(.0436)}to{transform:translate(20.89815vw,100vh) scale(.0436)}}.snow:nth-child(306){opacity:1.919;transform:translate(32.8199vw,-10px) scale(.5021);animation:fall-306 15s -3s linear infinite}@keyframes fall-306{62.866%{transform:translate(27.403vw,62.866vh) scale(.5021)}to{transform:translate(30.11145vw,100vh) scale(.5021)}}.snow:nth-child(307){opacity:.2522;transform:translate(43.3148vw,-10px) scale(.3481);animation:fall-307 18s -19s linear infinite}@keyframes fall-307{50.064%{transform:translate(52.8616vw,50.064vh) scale(.3481)}to{transform:translate(48.0882vw,100vh) scale(.3481)}}.snow:nth-child(308){opacity:.1396;transform:translate(.6169vw,-10px) scale(.4555);animation:fall-308 13s -12s linear infinite}@keyframes fall-308{71.479%{transform:translate(7.2495vw,71.479vh) scale(.4555)}to{transform:translate(3.9332vw,100vh) scale(.4555)}}.snow:nth-child(309){opacity:.1734;transform:translate(59.6546vw,-10px) scale(.8361);animation:fall-309 24s -10s linear infinite}@keyframes fall-309{79.791%{transform:translate(65.2476vw,79.791vh) scale(.8361)}to{transform:translate(62.4511vw,100vh) scale(.8361)}}.snow:nth-child(310){opacity:1.3738;transform:translate(13.2385vw,-10px) scale(.5246);animation:fall-310 16s -14s linear infinite}@keyframes fall-310{69.775%{transform:translate(14.2382vw,69.775vh) scale(.5246)}to{transform:translate(13.73835vw,100vh) scale(.5246)}}.snow:nth-child(311){opacity:1.5816;transform:translate(18.2933vw,-10px) scale(.8602);animation:fall-311 14s -4s linear infinite}@keyframes fall-311{72.645%{transform:translate(15.2301vw,72.645vh) scale(.8602)}to{transform:translate(16.7617vw,100vh) scale(.8602)}}.snow:nth-child(312){opacity:.5026;transform:translate(78.0505vw,-10px) scale(.013);animation:fall-312 10s -10s linear infinite}@keyframes fall-312{47.842%{transform:translate(71.0533vw,47.842vh) scale(.013)}to{transform:translate(74.5519vw,100vh) scale(.013)}}.snow:nth-child(313){opacity:1.2184;transform:translate(65.0636vw,-10px) scale(.0624);animation:fall-313 15s -17s linear infinite}@keyframes fall-313{32.644%{transform:translate(56.7616vw,32.644vh) scale(.0624)}to{transform:translate(60.9126vw,100vh) scale(.0624)}}.snow:nth-child(314){opacity:.258;transform:translate(93.7445vw,-10px) scale(.6905);animation:fall-314 28s -6s linear infinite}@keyframes fall-314{65.463%{transform:translate(84.2271vw,65.463vh) scale(.6905)}to{transform:translate(88.9858vw,100vh) scale(.6905)}}.snow:nth-child(315){opacity:.7652;transform:translate(76.2463vw,-10px) scale(.6905);animation:fall-315 26s -9s linear infinite}@keyframes fall-315{74.509%{transform:translate(69.8612vw,74.509vh) scale(.6905)}to{transform:translate(73.05375vw,100vh) scale(.6905)}}.snow:nth-child(316){opacity:.4632;transform:translate(51.6774vw,-10px) scale(.561);animation:fall-316 13s -21s linear infinite}@keyframes fall-316{49.179%{transform:translate(42.2686vw,49.179vh) scale(.561)}to{transform:translate(46.973vw,100vh) scale(.561)}}.snow:nth-child(317){opacity:.6564;transform:translate(44.6877vw,-10px) scale(.9109);animation:fall-317 17s -17s linear infinite}@keyframes fall-317{46.209%{transform:translate(48.2807vw,46.209vh) scale(.9109)}to{transform:translate(46.4842vw,100vh) scale(.9109)}}.snow:nth-child(318){opacity:.1238;transform:translate(10.9719vw,-10px) scale(.1709);animation:fall-318 22s -19s linear infinite}@keyframes fall-318{34.895%{transform:translate(4.1447vw,34.895vh) scale(.1709)}to{transform:translate(7.5583vw,100vh) scale(.1709)}}.snow:nth-child(319){opacity:.0332;transform:translate(66.1396vw,-10px) scale(.3133);animation:fall-319 22s -10s linear infinite}@keyframes fall-319{56.896%{transform:translate(56.5197vw,56.896vh) scale(.3133)}to{transform:translate(61.32965vw,100vh) scale(.3133)}}.snow:nth-child(320){opacity:.4748;transform:translate(16.0907vw,-10px) scale(.7638);animation:fall-320 13s -17s linear infinite}@keyframes fall-320{54.351%{transform:translate(19.5463vw,54.351vh) scale(.7638)}to{transform:translate(17.8185vw,100vh) scale(.7638)}}.snow:nth-child(321){opacity:.9634;transform:translate(34.0184vw,-10px) scale(.5855);animation:fall-321 20s -21s linear infinite}@keyframes fall-321{62.702%{transform:translate(26.0141vw,62.702vh) scale(.5855)}to{transform:translate(30.01625vw,100vh) scale(.5855)}}.snow:nth-child(322){opacity:.4986;transform:translate(93.7738vw,-10px) scale(.0561);animation:fall-322 15s -23s linear infinite}@keyframes fall-322{68.55%{transform:translate(86.053vw,68.55vh) scale(.0561)}to{transform:translate(89.9134vw,100vh) scale(.0561)}}.snow:nth-child(323){opacity:1.2794;transform:translate(3.2091vw,-10px) scale(.4968);animation:fall-323 11s -22s linear infinite}@keyframes fall-323{30.156%{transform:translate(3.7436vw,30.156vh) scale(.4968)}to{transform:translate(3.47635vw,100vh) scale(.4968)}}.snow:nth-child(324){opacity:1.3554;transform:translate(7.1731vw,-10px) scale(.4339);animation:fall-324 27s -24s linear infinite}@keyframes fall-324{42.956%{transform:translate(14.7296vw,42.956vh) scale(.4339)}to{transform:translate(10.95135vw,100vh) scale(.4339)}}.snow:nth-child(325){opacity:.6054;transform:translate(90.9411vw,-10px) scale(.216);animation:fall-325 10s -6s linear infinite}@keyframes fall-325{73.362%{transform:translate(96.3578vw,73.362vh) scale(.216)}to{transform:translate(93.64945vw,100vh) scale(.216)}}.snow:nth-child(326){opacity:1.86;transform:translate(23.5949vw,-10px) scale(.2568);animation:fall-326 28s -3s linear infinite}@keyframes fall-326{77.382%{transform:translate(16.6141vw,77.382vh) scale(.2568)}to{transform:translate(20.1045vw,100vh) scale(.2568)}}.snow:nth-child(327){opacity:.8672;transform:translate(64.7716vw,-10px) scale(.5472);animation:fall-327 14s -4s linear infinite}@keyframes fall-327{57.228%{transform:translate(66.6534vw,57.228vh) scale(.5472)}to{transform:translate(65.7125vw,100vh) scale(.5472)}}.snow:nth-child(328){opacity:1.4244;transform:translate(26.7894vw,-10px) scale(.3289);animation:fall-328 28s -12s linear infinite}@keyframes fall-328{49.84%{transform:translate(26.508vw,49.84vh) scale(.3289)}to{transform:translate(26.6487vw,100vh) scale(.3289)}}.snow:nth-child(329){opacity:1.2258;transform:translate(42.9512vw,-10px) scale(.1423);animation:fall-329 29s -19s linear infinite}@keyframes fall-329{55.779%{transform:translate(41.5375vw,55.779vh) scale(.1423)}to{transform:translate(42.24435vw,100vh) scale(.1423)}}.snow:nth-child(330){opacity:.3158;transform:translate(45.5952vw,-10px) scale(.2554);animation:fall-330 24s -30s linear infinite}@keyframes fall-330{75.73%{transform:translate(49.538vw,75.73vh) scale(.2554)}to{transform:translate(47.5666vw,100vh) scale(.2554)}}.snow:nth-child(331){opacity:1.3556;transform:translate(70.7052vw,-10px) scale(.3249);animation:fall-331 16s -3s linear infinite}@keyframes fall-331{68.359%{transform:translate(79.4184vw,68.359vh) scale(.3249)}to{transform:translate(75.0618vw,100vh) scale(.3249)}}.snow:nth-child(332){opacity:1.1306;transform:translate(49.1098vw,-10px) scale(.1294);animation:fall-332 12s -10s linear infinite}@keyframes fall-332{53.472%{transform:translate(41.6001vw,53.472vh) scale(.1294)}to{transform:translate(45.35495vw,100vh) scale(.1294)}}.snow:nth-child(333){opacity:.5564;transform:translate(56.2054vw,-10px) scale(.3123);animation:fall-333 23s -9s linear infinite}@keyframes fall-333{69.623%{transform:translate(53.1208vw,69.623vh) scale(.3123)}to{transform:translate(54.6631vw,100vh) scale(.3123)}}.snow:nth-child(334){opacity:1.1468;transform:translate(18.4425vw,-10px) scale(.9036);animation:fall-334 15s -16s linear infinite}@keyframes fall-334{64.601%{transform:translate(8.4894vw,64.601vh) scale(.9036)}to{transform:translate(13.46595vw,100vh) scale(.9036)}}.snow:nth-child(335){opacity:1.9372;transform:translate(48.513vw,-10px) scale(.9068);animation:fall-335 20s -8s linear infinite}@keyframes fall-335{60.177%{transform:translate(39.1377vw,60.177vh) scale(.9068)}to{transform:translate(43.82535vw,100vh) scale(.9068)}}.snow:nth-child(336){opacity:1.8182;transform:translate(22.9608vw,-10px) scale(.6151);animation:fall-336 24s -30s linear infinite}@keyframes fall-336{45.946%{transform:translate(28.2668vw,45.946vh) scale(.6151)}to{transform:translate(25.6138vw,100vh) scale(.6151)}}.snow:nth-child(337){opacity:1.32;transform:translate(12.2985vw,-10px) scale(.9272);animation:fall-337 26s -5s linear infinite}@keyframes fall-337{60.907%{transform:translate(3.4203vw,60.907vh) scale(.9272)}to{transform:translate(7.8594vw,100vh) scale(.9272)}}.snow:nth-child(338){opacity:.1664;transform:translate(68.7706vw,-10px) scale(.3242);animation:fall-338 28s -4s linear infinite}@keyframes fall-338{43.843%{transform:translate(59.7459vw,43.843vh) scale(.3242)}to{transform:translate(64.25825vw,100vh) scale(.3242)}}.snow:nth-child(339){opacity:1.4686;transform:translate(57.7896vw,-10px) scale(.8438);animation:fall-339 19s -28s linear infinite}@keyframes fall-339{42.089%{transform:translate(63.189vw,42.089vh) scale(.8438)}to{transform:translate(60.4893vw,100vh) scale(.8438)}}.snow:nth-child(340){opacity:.2826;transform:translate(24.65vw,-10px) scale(.2184);animation:fall-340 17s -8s linear infinite}@keyframes fall-340{64.088%{transform:translate(21.4394vw,64.088vh) scale(.2184)}to{transform:translate(23.0447vw,100vh) scale(.2184)}}.snow:nth-child(341){opacity:1.0528;transform:translate(78.7936vw,-10px) scale(.014);animation:fall-341 24s -28s linear infinite}@keyframes fall-341{79.691%{transform:translate(83.9813vw,79.691vh) scale(.014)}to{transform:translate(81.38745vw,100vh) scale(.014)}}.snow:nth-child(342){opacity:1.1824;transform:translate(67.5443vw,-10px) scale(.9508);animation:fall-342 11s -4s linear infinite}@keyframes fall-342{64.957%{transform:translate(66.2565vw,64.957vh) scale(.9508)}to{transform:translate(66.9004vw,100vh) scale(.9508)}}.snow:nth-child(343){opacity:1.3836;transform:translate(45.1969vw,-10px) scale(.5976);animation:fall-343 14s -21s linear infinite}@keyframes fall-343{52.152%{transform:translate(45.5502vw,52.152vh) scale(.5976)}to{transform:translate(45.37355vw,100vh) scale(.5976)}}.snow:nth-child(344){opacity:.2816;transform:translate(2.8838vw,-10px) scale(.0271);animation:fall-344 22s -9s linear infinite}@keyframes fall-344{78.445%{transform:translate(12.3505vw,78.445vh) scale(.0271)}to{transform:translate(7.61715vw,100vh) scale(.0271)}}.snow:nth-child(345){opacity:.4104;transform:translate(38.6758vw,-10px) scale(.1795);animation:fall-345 20s -3s linear infinite}@keyframes fall-345{64.081%{transform:translate(33.2717vw,64.081vh) scale(.1795)}to{transform:translate(35.97375vw,100vh) scale(.1795)}}.snow:nth-child(346){opacity:.6816;transform:translate(46.3918vw,-10px) scale(.7028);animation:fall-346 18s -3s linear infinite}@keyframes fall-346{37.723%{transform:translate(36.5483vw,37.723vh) scale(.7028)}to{transform:translate(41.47005vw,100vh) scale(.7028)}}.snow:nth-child(347){opacity:1.6804;transform:translate(79.2599vw,-10px) scale(.1056);animation:fall-347 23s -8s linear infinite}@keyframes fall-347{62.282%{transform:translate(80.0503vw,62.282vh) scale(.1056)}to{transform:translate(79.6551vw,100vh) scale(.1056)}}.snow:nth-child(348){opacity:1.341;transform:translate(58.2707vw,-10px) scale(.5076);animation:fall-348 25s -24s linear infinite}@keyframes fall-348{51.157%{transform:translate(67.951vw,51.157vh) scale(.5076)}to{transform:translate(63.11085vw,100vh) scale(.5076)}}.snow:nth-child(349){opacity:.3986;transform:translate(37.9565vw,-10px) scale(.4578);animation:fall-349 21s -3s linear infinite}@keyframes fall-349{33.878%{transform:translate(41.6762vw,33.878vh) scale(.4578)}to{transform:translate(39.81635vw,100vh) scale(.4578)}}.snow:nth-child(350){opacity:.6414;transform:translate(25.7509vw,-10px) scale(.4263);animation:fall-350 26s -1s linear infinite}@keyframes fall-350{69.971%{transform:translate(24.7485vw,69.971vh) scale(.4263)}to{transform:translate(25.2497vw,100vh) scale(.4263)}}.snow:nth-child(351){opacity:.4378;transform:translate(38.7372vw,-10px) scale(.059);animation:fall-351 28s -2s linear infinite}@keyframes fall-351{67.628%{transform:translate(40.6727vw,67.628vh) scale(.059)}to{transform:translate(39.70495vw,100vh) scale(.059)}}.snow:nth-child(352){opacity:.4766;transform:translate(89.9193vw,-10px) scale(.1622);animation:fall-352 12s -26s linear infinite}@keyframes fall-352{64.766%{transform:translate(81.5569vw,64.766vh) scale(.1622)}to{transform:translate(85.7381vw,100vh) scale(.1622)}}.snow:nth-child(353){opacity:.2658;transform:translate(25.1504vw,-10px) scale(.7811);animation:fall-353 14s -4s linear infinite}@keyframes fall-353{48.157%{transform:translate(25.8511vw,48.157vh) scale(.7811)}to{transform:translate(25.50075vw,100vh) scale(.7811)}}.snow:nth-child(354){opacity:.37;transform:translate(19.6472vw,-10px) scale(.0641);animation:fall-354 19s -23s linear infinite}@keyframes fall-354{41.822%{transform:translate(20.1843vw,41.822vh) scale(.0641)}to{transform:translate(19.91575vw,100vh) scale(.0641)}}.snow:nth-child(355){opacity:.5672;transform:translate(80.0156vw,-10px) scale(.6799);animation:fall-355 23s -15s linear infinite}@keyframes fall-355{44.344%{transform:translate(80.0569vw,44.344vh) scale(.6799)}to{transform:translate(80.03625vw,100vh) scale(.6799)}}.snow:nth-child(356){opacity:.4952;transform:translate(88.3268vw,-10px) scale(.2306);animation:fall-356 16s -8s linear infinite}@keyframes fall-356{39.879%{transform:translate(82.409vw,39.879vh) scale(.2306)}to{transform:translate(85.3679vw,100vh) scale(.2306)}}.snow:nth-child(357){opacity:1.3374;transform:translate(10.3274vw,-10px) scale(.0591);animation:fall-357 13s -13s linear infinite}@keyframes fall-357{69.825%{transform:translate(.7532vw,69.825vh) scale(.0591)}to{transform:translate(5.5403vw,100vh) scale(.0591)}}.snow:nth-child(358){opacity:.0072;transform:translate(67.5855vw,-10px) scale(.8451);animation:fall-358 25s -1s linear infinite}@keyframes fall-358{40.905%{transform:translate(75.6614vw,40.905vh) scale(.8451)}to{transform:translate(71.62345vw,100vh) scale(.8451)}}.snow:nth-child(359){opacity:.1302;transform:translate(97.0096vw,-10px) scale(.2382);animation:fall-359 26s -3s linear infinite}@keyframes fall-359{79.184%{transform:translate(98.7983vw,79.184vh) scale(.2382)}to{transform:translate(97.90395vw,100vh) scale(.2382)}}.snow:nth-child(360){opacity:1.8164;transform:translate(3.5356vw,-10px) scale(.2017);animation:fall-360 26s -22s linear infinite}@keyframes fall-360{35.188%{transform:translate(1.8299vw,35.188vh) scale(.2017)}to{transform:translate(2.68275vw,100vh) scale(.2017)}}.snow:nth-child(361){opacity:1.8618;transform:translate(65.6882vw,-10px) scale(.3251);animation:fall-361 25s -12s linear infinite}@keyframes fall-361{31.323%{transform:translate(71.7513vw,31.323vh) scale(.3251)}to{transform:translate(68.71975vw,100vh) scale(.3251)}}.snow:nth-child(362){opacity:.7738;transform:translate(23.2727vw,-10px) scale(.9646);animation:fall-362 18s -14s linear infinite}@keyframes fall-362{51.003%{transform:translate(15.2769vw,51.003vh) scale(.9646)}to{transform:translate(19.2748vw,100vh) scale(.9646)}}.snow:nth-child(363){opacity:.7044;transform:translate(7.9769vw,-10px) scale(.9082);animation:fall-363 26s -12s linear infinite}@keyframes fall-363{36.425%{transform:translate(-2.0031vw,36.425vh) scale(.9082)}to{transform:translate(2.9869vw,100vh) scale(.9082)}}.snow:nth-child(364){opacity:.3722;transform:translate(16.7314vw,-10px) scale(.7238);animation:fall-364 10s -21s linear infinite}@keyframes fall-364{76.226%{transform:translate(15.6844vw,76.226vh) scale(.7238)}to{transform:translate(16.2079vw,100vh) scale(.7238)}}.snow:nth-child(365){opacity:1.5996;transform:translate(85.8786vw,-10px) scale(.4354);animation:fall-365 12s -9s linear infinite}@keyframes fall-365{56.331%{transform:translate(90.5431vw,56.331vh) scale(.4354)}to{transform:translate(88.21085vw,100vh) scale(.4354)}}.snow:nth-child(366){opacity:1.7572;transform:translate(89.4142vw,-10px) scale(.8143);animation:fall-366 26s -9s linear infinite}@keyframes fall-366{75.982%{transform:translate(86.1848vw,75.982vh) scale(.8143)}to{transform:translate(87.7995vw,100vh) scale(.8143)}}.snow:nth-child(367){opacity:1.3902;transform:translate(47.7302vw,-10px) scale(.8375);animation:fall-367 22s -3s linear infinite}@keyframes fall-367{31.665%{transform:translate(42.1767vw,31.665vh) scale(.8375)}to{transform:translate(44.95345vw,100vh) scale(.8375)}}.snow:nth-child(368){opacity:1.4528;transform:translate(94.5509vw,-10px) scale(.4026);animation:fall-368 20s -16s linear infinite}@keyframes fall-368{50.812%{transform:translate(101.8024vw,50.812vh) scale(.4026)}to{transform:translate(98.17665vw,100vh) scale(.4026)}}.snow:nth-child(369){opacity:.262;transform:translate(45.1923vw,-10px) scale(.5179);animation:fall-369 26s -10s linear infinite}@keyframes fall-369{60.124%{transform:translate(35.8343vw,60.124vh) scale(.5179)}to{transform:translate(40.5133vw,100vh) scale(.5179)}}.snow:nth-child(370){opacity:.495;transform:translate(48.4844vw,-10px) scale(.7328);animation:fall-370 11s -3s linear infinite}@keyframes fall-370{79.332%{transform:translate(55.1748vw,79.332vh) scale(.7328)}to{transform:translate(51.8296vw,100vh) scale(.7328)}}.snow:nth-child(371){opacity:1.2642;transform:translate(76.5988vw,-10px) scale(.007);animation:fall-371 25s -6s linear infinite}@keyframes fall-371{38.205%{transform:translate(78.4134vw,38.205vh) scale(.007)}to{transform:translate(77.5061vw,100vh) scale(.007)}}.snow:nth-child(372){opacity:1.4228;transform:translate(26.5436vw,-10px) scale(.5808);animation:fall-372 20s -13s linear infinite}@keyframes fall-372{38.342%{transform:translate(19.679vw,38.342vh) scale(.5808)}to{transform:translate(23.1113vw,100vh) scale(.5808)}}.snow:nth-child(373){opacity:1.976;transform:translate(73.0721vw,-10px) scale(.9826);animation:fall-373 17s -22s linear infinite}@keyframes fall-373{52.562%{transform:translate(71.887vw,52.562vh) scale(.9826)}to{transform:translate(72.47955vw,100vh) scale(.9826)}}.snow:nth-child(374){opacity:.2384;transform:translate(87.2998vw,-10px) scale(.8628);animation:fall-374 17s -27s linear infinite}@keyframes fall-374{62.565%{transform:translate(80.861vw,62.565vh) scale(.8628)}to{transform:translate(84.0804vw,100vh) scale(.8628)}}.snow:nth-child(375){opacity:.996;transform:translate(68.1079vw,-10px) scale(.548);animation:fall-375 29s -14s linear infinite}@keyframes fall-375{36.484%{transform:translate(69.6388vw,36.484vh) scale(.548)}to{transform:translate(68.87335vw,100vh) scale(.548)}}.snow:nth-child(376){opacity:.984;transform:translate(16.8511vw,-10px) scale(.4359);animation:fall-376 13s -2s linear infinite}@keyframes fall-376{38.476%{transform:translate(25.7796vw,38.476vh) scale(.4359)}to{transform:translate(21.31535vw,100vh) scale(.4359)}}.snow:nth-child(377){opacity:1.483;transform:translate(67.3763vw,-10px) scale(.3457);animation:fall-377 29s -21s linear infinite}@keyframes fall-377{59.551%{transform:translate(68.1913vw,59.551vh) scale(.3457)}to{transform:translate(67.7838vw,100vh) scale(.3457)}}.snow:nth-child(378){opacity:.6282;transform:translate(20.9519vw,-10px) scale(.9223);animation:fall-378 19s -23s linear infinite}@keyframes fall-378{39.948%{transform:translate(24.414vw,39.948vh) scale(.9223)}to{transform:translate(22.68295vw,100vh) scale(.9223)}}.snow:nth-child(379){opacity:1.1274;transform:translate(40.4894vw,-10px) scale(.3549);animation:fall-379 22s -13s linear infinite}@keyframes fall-379{72.319%{transform:translate(34.6957vw,72.319vh) scale(.3549)}to{transform:translate(37.59255vw,100vh) scale(.3549)}}.snow:nth-child(380){opacity:.9202;transform:translate(54.9487vw,-10px) scale(.0333);animation:fall-380 11s -28s linear infinite}@keyframes fall-380{57.228%{transform:translate(60.3636vw,57.228vh) scale(.0333)}to{transform:translate(57.65615vw,100vh) scale(.0333)}}.snow:nth-child(381){opacity:.6784;transform:translate(21.6808vw,-10px) scale(.8543);animation:fall-381 18s -23s linear infinite}@keyframes fall-381{37.62%{transform:translate(16.3345vw,37.62vh) scale(.8543)}to{transform:translate(19.00765vw,100vh) scale(.8543)}}.snow:nth-child(382){opacity:.1292;transform:translate(41.7167vw,-10px) scale(.212);animation:fall-382 10s -6s linear infinite}@keyframes fall-382{55.478%{transform:translate(47.1481vw,55.478vh) scale(.212)}to{transform:translate(44.4324vw,100vh) scale(.212)}}.snow:nth-child(383){opacity:.2684;transform:translate(15.2507vw,-10px) scale(.5504);animation:fall-383 23s -19s linear infinite}@keyframes fall-383{60.375%{transform:translate(17.1293vw,60.375vh) scale(.5504)}to{transform:translate(16.19vw,100vh) scale(.5504)}}.snow:nth-child(384){opacity:.7956;transform:translate(89.6209vw,-10px) scale(.3787);animation:fall-384 29s -28s linear infinite}@keyframes fall-384{78.868%{transform:translate(81.8013vw,78.868vh) scale(.3787)}to{transform:translate(85.7111vw,100vh) scale(.3787)}}.snow:nth-child(385){opacity:.629;transform:translate(9.1019vw,-10px) scale(.9866);animation:fall-385 30s -1s linear infinite}@keyframes fall-385{67.09%{transform:translate(12.6827vw,67.09vh) scale(.9866)}to{transform:translate(10.8923vw,100vh) scale(.9866)}}.snow:nth-child(386){opacity:.1802;transform:translate(70.9482vw,-10px) scale(.1638);animation:fall-386 29s -16s linear infinite}@keyframes fall-386{54.713%{transform:translate(72.7349vw,54.713vh) scale(.1638)}to{transform:translate(71.84155vw,100vh) scale(.1638)}}.snow:nth-child(387){opacity:1.9624;transform:translate(17.6315vw,-10px) scale(.9399);animation:fall-387 14s -9s linear infinite}@keyframes fall-387{40.675%{transform:translate(24.7233vw,40.675vh) scale(.9399)}to{transform:translate(21.1774vw,100vh) scale(.9399)}}.snow:nth-child(388){opacity:.763;transform:translate(35.8775vw,-10px) scale(.4961);animation:fall-388 29s -6s linear infinite}@keyframes fall-388{79.104%{transform:translate(35.9036vw,79.104vh) scale(.4961)}to{transform:translate(35.89055vw,100vh) scale(.4961)}}.snow:nth-child(389){opacity:.534;transform:translate(11.371vw,-10px) scale(.2374);animation:fall-389 12s -21s linear infinite}@keyframes fall-389{60.646%{transform:translate(18.0303vw,60.646vh) scale(.2374)}to{transform:translate(14.70065vw,100vh) scale(.2374)}}.snow:nth-child(390){opacity:1.5468;transform:translate(96.4161vw,-10px) scale(.6678);animation:fall-390 22s -19s linear infinite}@keyframes fall-390{68.432%{transform:translate(99.6891vw,68.432vh) scale(.6678)}to{transform:translate(98.0526vw,100vh) scale(.6678)}}.snow:nth-child(391){opacity:1.354;transform:translate(.3865vw,-10px) scale(.7186);animation:fall-391 29s -14s linear infinite}@keyframes fall-391{60.246%{transform:translate(-.909vw,60.246vh) scale(.7186)}to{transform:translate(-.26125vw,100vh) scale(.7186)}}.snow:nth-child(392){opacity:1.4618;transform:translate(34.0203vw,-10px) scale(.4016);animation:fall-392 19s -21s linear infinite}@keyframes fall-392{64.533%{transform:translate(31.89vw,64.533vh) scale(.4016)}to{transform:translate(32.95515vw,100vh) scale(.4016)}}.snow:nth-child(393){opacity:.3298;transform:translate(79.3933vw,-10px) scale(.5668);animation:fall-393 28s -5s linear infinite}@keyframes fall-393{73.322%{transform:translate(70.3138vw,73.322vh) scale(.5668)}to{transform:translate(74.85355vw,100vh) scale(.5668)}}.snow:nth-child(394){opacity:.6128;transform:translate(71.1268vw,-10px) scale(.1295);animation:fall-394 29s -22s linear infinite}@keyframes fall-394{69.091%{transform:translate(68.7551vw,69.091vh) scale(.1295)}to{transform:translate(69.94095vw,100vh) scale(.1295)}}.snow:nth-child(395){opacity:.9546;transform:translate(3.1202vw,-10px) scale(.3335);animation:fall-395 24s -23s linear infinite}@keyframes fall-395{37.882%{transform:translate(9.0238vw,37.882vh) scale(.3335)}to{transform:translate(6.072vw,100vh) scale(.3335)}}.snow:nth-child(396){opacity:.961;transform:translate(32.846vw,-10px) scale(.5231);animation:fall-396 23s -1s linear infinite}@keyframes fall-396{69.454%{transform:translate(29.6333vw,69.454vh) scale(.5231)}to{transform:translate(31.23965vw,100vh) scale(.5231)}}.snow:nth-child(397){opacity:1.7326;transform:translate(2.6965vw,-10px) scale(.7658);animation:fall-397 24s -17s linear infinite}@keyframes fall-397{60.119%{transform:translate(10.2622vw,60.119vh) scale(.7658)}to{transform:translate(6.47935vw,100vh) scale(.7658)}}.snow:nth-child(398){opacity:1.5096;transform:translate(75.8695vw,-10px) scale(.1929);animation:fall-398 11s -25s linear infinite}@keyframes fall-398{73.574%{transform:translate(78.5697vw,73.574vh) scale(.1929)}to{transform:translate(77.2196vw,100vh) scale(.1929)}}.snow:nth-child(399){opacity:1.4992;transform:translate(48.94vw,-10px) scale(.4448);animation:fall-399 24s -11s linear infinite}@keyframes fall-399{70.524%{transform:translate(44.3429vw,70.524vh) scale(.4448)}to{transform:translate(46.64145vw,100vh) scale(.4448)}}.snow:nth-child(400){opacity:.2242;transform:translate(21.5315vw,-10px) scale(.9005);animation:fall-400 29s -24s linear infinite}@keyframes fall-400{57.387%{transform:translate(28.4994vw,57.387vh) scale(.9005)}to{transform:translate(25.01545vw,100vh) scale(.9005)}}\n"] }]
|
|
85
|
+
}], ctorParameters: function () { return [{ type: i1.TokenService }, { type: i1.AppState }, { type: i2.Router }]; } });
|
|
86
|
+
|
|
87
|
+
// Angular
|
|
88
|
+
// Repositories
|
|
89
|
+
const GET_Jace_GetAccountScope = "/api/Jace/GetAccountScope";
|
|
90
|
+
const GET_AppConfig_GetAppConfig = "/api/AppConfig/GetAppConfig";
|
|
91
|
+
const baseAppRoutes = [
|
|
92
|
+
{ path: "", redirectTo: "pages/{emptyRouteRedirect}", pathMatch: "full" },
|
|
93
|
+
{ path: "pages_ext", component: ExternalPagesComponent },
|
|
94
|
+
{ path: "pages", component: PagesComponent },
|
|
95
|
+
{ path: "rd", component: RedirecterComponent },
|
|
96
|
+
{ path: "login", component: JaceLoginComponent },
|
|
97
|
+
{ path: "iserr", component: ServerErrorComponent },
|
|
98
|
+
{ path: "anerr", component: AngularErrorComponent },
|
|
99
|
+
{ path: "**", component: PageNotFoundComponent }
|
|
100
|
+
];
|
|
101
|
+
const MODULES = [
|
|
102
|
+
BrowserAnimationsModule,
|
|
103
|
+
HttpClientModule,
|
|
104
|
+
TemplateCommon,
|
|
105
|
+
ComponentsModule,
|
|
106
|
+
RouterModule.forRoot([], { useHash: true, preloadingStrategy: NoPreloading, onSameUrlNavigation: "reload" }),
|
|
107
|
+
// ES
|
|
108
|
+
EsTableModule.forRoot(),
|
|
109
|
+
FormsAndValidationsModule.forRoot({ acocustom: "O" }),
|
|
110
|
+
ExtensionsModule.forRoot(),
|
|
111
|
+
LocalizationModule.forRoot({ localizationMissingPolicy: LocalizationMissingPolicy.PrintSource }),
|
|
112
|
+
AccessControlModule.forRoot({ contextAwareKey: "O", defaultCondition: '(R:Jace Admin || R:Jace Support)' }),
|
|
113
|
+
HttpserviceModule.forRoot(),
|
|
114
|
+
SignalrNotificationsModule.forRoot({ endpointUrl: 'notify', useMessagePack: true }),
|
|
115
|
+
PreferencesModule.forRoot({ retrieveAllAtStart: true, sessionRetriever: SessionRetriever, preferencePersistor: ApplicationPreferencesPersistor, cachePersistor: ApplicationCachePersistor }),
|
|
116
|
+
EsChartsModule.forRoot(),
|
|
117
|
+
// Bootstrap
|
|
118
|
+
TooltipModule.forRoot(),
|
|
119
|
+
ModalModule.forRoot(),
|
|
120
|
+
ProgressbarModule.forRoot(),
|
|
121
|
+
BsDropdownModule.forRoot(),
|
|
122
|
+
ToastrModule.forRoot(),
|
|
123
|
+
TimepickerModule.forRoot(),
|
|
124
|
+
ContextMenuModule.forRoot(),
|
|
125
|
+
DragulaModule.forRoot()
|
|
126
|
+
];
|
|
127
|
+
// Generatore dei formati data
|
|
128
|
+
var formats = (style) => {
|
|
129
|
+
return {
|
|
130
|
+
parse: { dateInput: 'DD/MM/YYYY' + (style === 'long' ? ' HH:mm:ss' : '') },
|
|
131
|
+
display: {
|
|
132
|
+
dateInput: 'DD/MM/YYYY' + (style === 'long' ? ' HH:mm:ss' : ''),
|
|
133
|
+
monthYearLabel: 'MM YYYY',
|
|
134
|
+
dateA11yLabel: 'DD/MM/YYYY' + (style === 'long' ? ' HH:mm:ss' : ''),
|
|
135
|
+
monthYearA11yLabel: 'MM YYYY',
|
|
136
|
+
}
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
const localeFactory = (loc) => loc.SmallLocale;
|
|
140
|
+
const PROVIDERS = [
|
|
141
|
+
// Providers applicativi
|
|
142
|
+
{ provide: EVENT_MANAGER_PLUGINS, useExisting: OutZoneEventPlugin, multi: true },
|
|
143
|
+
{ provide: HttpServiceExtensions, useClass: HTTPServiceExtensions },
|
|
144
|
+
// Locale e gestioni delle date
|
|
145
|
+
{ provide: LOCALE_ID, useFactory: localeFactory, deps: [LocalizationService] },
|
|
146
|
+
{ provide: MAT_DATE_LOCALE, useFactory: localeFactory, deps: [LocalizationService] },
|
|
147
|
+
{ provide: MAT_DATE_FORMATS, useValue: formats('short') },
|
|
148
|
+
// Questi due sono providati dal FormsAndValidationModule stesso, però quest'ultimo è definito in forRoot solo lato componenti shared,
|
|
149
|
+
// quindi per rendere questi provider disponibili anche a moduli esterni devo riprovidarli anche qui
|
|
150
|
+
{ provide: NGX_MAT_DATE_FORMATS, useValue: formats('long') },
|
|
151
|
+
{ provide: NgxMatDateAdapter, useClass: NgxExpandedDayJsDateAdapter }
|
|
152
|
+
];
|
|
153
|
+
const COMMON_ROOT_MODULES = [ /* Per ora vuoto ma non si sa mai... */];
|
|
154
|
+
class EsFaenzaCoreModule {
|
|
155
|
+
static forRoot(config) {
|
|
156
|
+
if (config.routes) {
|
|
157
|
+
baseAppRoutes[0].redirectTo = `pages/${config.emptyRouteRedirect || 'dashboard'}`;
|
|
158
|
+
baseAppRoutes.filter(t => ["pages", "pages_ext"].includes(t.path)).forEach(path => { path.children = config.routes; });
|
|
159
|
+
}
|
|
160
|
+
config.debugMode = (config.env.production && !config.forceDebugModeForProdBuilds) ? DebugFlags.None : (config.debugMode || DebugFlags.All);
|
|
161
|
+
let mergedAppInitializer = (http, bts, aac) => {
|
|
162
|
+
return () => {
|
|
163
|
+
console.log("%c[APP_INITIALIZER] Loading AppConfig and Account Scope...", "background-color: yellow");
|
|
164
|
+
return forkJoin({
|
|
165
|
+
appConfig: http.get(GET_AppConfig_GetAppConfig, null, null, false).pipe(catchError(_ => of({}))),
|
|
166
|
+
scope: http.get(GET_Jace_GetAccountScope, null, null, false).pipe(catchError(_ => of(null)))
|
|
167
|
+
}).pipe(tap((res) => {
|
|
168
|
+
myconfig = res.appConfig;
|
|
169
|
+
bts.accountScope = res.scope;
|
|
170
|
+
console.log("%c[APP_INITIALIZER] appConfig and scope registered", "background-color: yellow");
|
|
171
|
+
if (bts.accountScope)
|
|
172
|
+
aac.initializeIdentity(bts.getJaceIdentity());
|
|
173
|
+
}), switchMap(_ => {
|
|
174
|
+
console.log("%c[APP_INITIALIZER] Loading custom application initialization", "background-color: yellow");
|
|
175
|
+
return config.initializerFunction(http, /*bts,*/ aac)().pipe(tap(_ => {
|
|
176
|
+
console.log("%c[APP_INITIALIZER] Initialization is over", "background-color: yellow");
|
|
177
|
+
}));
|
|
178
|
+
}));
|
|
179
|
+
};
|
|
180
|
+
};
|
|
181
|
+
return {
|
|
182
|
+
ngModule: EsFaenzaCoreModule,
|
|
183
|
+
providers: [
|
|
184
|
+
// *************************** Provider statici ***************************
|
|
185
|
+
...PROVIDERS,
|
|
186
|
+
// ************************ Provider customizzabili ************************
|
|
187
|
+
...(!config.redirectionMap ? [] : [{ provide: REDIRECT_MAP, useValue: config.redirectionMap }]),
|
|
188
|
+
{ provide: APP_INITIALIZER, useFactory: mergedAppInitializer, deps: [HTTPService, TokenService, AccessControlService], multi: true },
|
|
189
|
+
{ provide: ROUTES, useValue: baseAppRoutes, multi: true },
|
|
190
|
+
{ provide: LOC_DEBUG_MODE, useValue: config.debugMode ? (config.debugMode & DebugFlags.Localizations) == DebugFlags.Localizations : false },
|
|
191
|
+
{ provide: EXT_DEBUG_MODE, useValue: config.debugMode ? (config.debugMode & DebugFlags.Extensions) == DebugFlags.Extensions : false },
|
|
192
|
+
{ provide: ACC_DEBUG_MODE, useValue: config.debugMode ? (config.debugMode & DebugFlags.AccessControl) == DebugFlags.AccessControl : false },
|
|
193
|
+
{ provide: HTTP_DEBUG_MODE, useValue: config.debugMode ? (config.debugMode & DebugFlags.Http) == DebugFlags.Http : false },
|
|
194
|
+
{ provide: HTTP_INVALIDATION, useValue: config?.httpInvalidationCache },
|
|
195
|
+
{ provide: SGR_DEBUG_MODE, useValue: config.debugMode ? (config.debugMode & DebugFlags.SignalR) == DebugFlags.SignalR : false },
|
|
196
|
+
{ provide: PREF_DEBUG_MODE, useValue: config.debugMode ? (config.debugMode & DebugFlags.Preferences) == DebugFlags.Preferences : false },
|
|
197
|
+
{ provide: ESC_DEBUG_MODE, useValue: config.debugMode ? (config.debugMode & DebugFlags.Charts) == DebugFlags.Charts : false },
|
|
198
|
+
{ provide: BaseAdapter, useClass: config?.chartsAdapter || BaseAdapter },
|
|
199
|
+
{ provide: BaseMessageService, useClass: config?.messageService || BaseMessageService },
|
|
200
|
+
{ provide: MENU_LOCALIZATION, useValue: config.menuLoc || null },
|
|
201
|
+
{ provide: MENU, useValue: config.menu }
|
|
202
|
+
]
|
|
203
|
+
};
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
// Mettendoli come funzione si lamenta il compilatore che i moduli devono essere staticamente analizzabili
|
|
207
|
+
// Moduli "ROOT" -> app.browser.component
|
|
208
|
+
// Moduli "SHARED" -> shared.module (N.B: Il TemplateCommon è lato "Core")
|
|
209
|
+
EsFaenzaCoreModule.PROD_ROOT_MODULES = [ServiceWorkerModule.register('ngsw-worker.js', { enabled: true }), ...COMMON_ROOT_MODULES];
|
|
210
|
+
EsFaenzaCoreModule.ROOT_MODULES = [ServiceWorkerModule.register('ngsw-worker.js', { enabled: false }), ...COMMON_ROOT_MODULES];
|
|
211
|
+
EsFaenzaCoreModule.SHARED_MODULES = [TemplateCommon, ContextMenuModule, TimepickerModule, BsDropdownModule, TooltipModule, ProgressbarModule, DragulaModule, LocalizationModule, ExtensionsModule, AccessControlModule, EsChartsModule,
|
|
212
|
+
EsWizardModule, EsCronModule, EsGertrudeModule, EsMatrixValuesModule, EsTagChooserModule, EsQueryBuilderModule, EsParametersModule, CurrencyMaskModule, FormsAndValidationsModule, EsTableModule
|
|
213
|
+
];
|
|
214
|
+
// Lasciandolo come export secco e non come funzione si spacca tutto al primo export
|
|
215
|
+
EsFaenzaCoreModule.ROOT_PROVIDERS = () => [
|
|
216
|
+
CookieService, { provide: ErrorHandler, useClass: APPErrorHandler }
|
|
217
|
+
];
|
|
218
|
+
EsFaenzaCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EsFaenzaCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
219
|
+
EsFaenzaCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: EsFaenzaCoreModule, declarations: [AppComponent], imports: [BrowserAnimationsModule,
|
|
220
|
+
HttpClientModule,
|
|
221
|
+
TemplateCommon,
|
|
222
|
+
ComponentsModule, i2.RouterModule, i2$1.EsTableModule, i3$1.FormsAndValidationsModule, i4.ExtensionsModule, i5.LocalizationModule, i6.AccessControlModule, i7.HttpserviceModule, i8.SignalrNotificationsModule, i9.PreferencesModule, i10.EsChartsModule, i11.TooltipModule, i12.ModalModule, i13.ProgressbarModule, i14.BsDropdownModule, i15.ToastrModule, i16.TimepickerModule, i17.ContextMenuModule, i18.DragulaModule] });
|
|
223
|
+
EsFaenzaCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EsFaenzaCoreModule, imports: [MODULES] });
|
|
224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EsFaenzaCoreModule, decorators: [{
|
|
225
|
+
type: NgModule,
|
|
226
|
+
args: [{
|
|
227
|
+
imports: [...MODULES],
|
|
228
|
+
declarations: [AppComponent],
|
|
229
|
+
}]
|
|
230
|
+
}] });
|
|
231
|
+
class EsFaenzaCoreModuleConfig {
|
|
232
|
+
}
|
|
233
|
+
var DebugFlags;
|
|
234
|
+
(function (DebugFlags) {
|
|
235
|
+
DebugFlags[DebugFlags["None"] = 0] = "None";
|
|
236
|
+
DebugFlags[DebugFlags["Localizations"] = 1] = "Localizations";
|
|
237
|
+
DebugFlags[DebugFlags["Extensions"] = 2] = "Extensions";
|
|
238
|
+
DebugFlags[DebugFlags["AccessControl"] = 4] = "AccessControl";
|
|
239
|
+
DebugFlags[DebugFlags["Http"] = 8] = "Http";
|
|
240
|
+
DebugFlags[DebugFlags["SignalR"] = 16] = "SignalR";
|
|
241
|
+
DebugFlags[DebugFlags["Preferences"] = 32] = "Preferences";
|
|
242
|
+
DebugFlags[DebugFlags["Charts"] = 64] = "Charts";
|
|
243
|
+
DebugFlags[DebugFlags["All"] = 127] = "All";
|
|
244
|
+
})(DebugFlags || (DebugFlags = {}));
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* Generated bundle index. Do not edit.
|
|
248
|
+
*/
|
|
249
|
+
|
|
250
|
+
export { AppComponent, COMMON_ROOT_MODULES, DebugFlags, EsFaenzaCoreModule, EsFaenzaCoreModuleConfig };
|
|
251
|
+
//# sourceMappingURL=esfaenza-core.mjs.map
|