@esfaenza/core 19.2.19 → 19.2.23
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/directives/es-modal/es-modal.directive.d.ts +5 -7
- package/fesm2022/esfaenza-core-directives.mjs +13 -16
- package/fesm2022/esfaenza-core-directives.mjs.map +1 -1
- package/fesm2022/esfaenza-core-modules.mjs +5 -4
- package/fesm2022/esfaenza-core-modules.mjs.map +1 -1
- package/fesm2022/esfaenza-core-services.mjs +0 -20
- package/fesm2022/esfaenza-core-services.mjs.map +1 -1
- package/fesm2022/esfaenza-core.mjs +100 -26
- package/fesm2022/esfaenza-core.mjs.map +1 -1
- package/lib/core.module.d.ts +26 -19
- package/modules/classes/_shared.module.d.ts +18 -17
- package/package.json +7 -7
- package/services/classes/app.state.d.ts +0 -1
|
@@ -6,53 +6,68 @@ import { ApplicationCachePersistor, ApplicationPreferencesPersistor, SessionRetr
|
|
|
6
6
|
import * as i2 from '@angular/router';
|
|
7
7
|
import { RouterModule, NoPreloading, ROUTES } from '@angular/router';
|
|
8
8
|
import * as i3 from '@angular/common';
|
|
9
|
+
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
|
|
9
10
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
10
11
|
import { EVENT_MANAGER_PLUGINS } from '@angular/platform-browser';
|
|
11
|
-
import * as
|
|
12
|
+
import * as i4 from '@angular/service-worker';
|
|
12
13
|
import { ServiceWorkerModule } from '@angular/service-worker';
|
|
13
14
|
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
14
15
|
import '@angular/common/locales/global/it';
|
|
15
16
|
import { CookieService } from 'ngx-cookie-service';
|
|
16
|
-
import * as
|
|
17
|
+
import * as i17 from 'ngx-toastr';
|
|
17
18
|
import { ToastrModule } from 'ngx-toastr';
|
|
18
19
|
import 'widgster/widgster.js';
|
|
19
|
-
import * as
|
|
20
|
+
import * as i11 from '@esfaenza/preferences';
|
|
20
21
|
import { PreferencesModule, PREF_DEBUG_MODE, LocalStoragePreferencesPersistor, PreferencesPersistor, LocalStorageCachePersistor, CachePersistor } from '@esfaenza/preferences';
|
|
21
|
-
import * as
|
|
22
|
+
import * as i1$1 from '@esfaenza/localizations';
|
|
22
23
|
import { LocalizationModule, LocalizationMissingPolicy, BaseLocalization, LOC_DEBUG_MODE } from '@esfaenza/localizations';
|
|
23
|
-
import * as
|
|
24
|
+
import * as i9 from '@esfaenza/httpservice';
|
|
24
25
|
import { HttpserviceModule, HttpServiceExtensions, HTTPService, HTTP_DEBUG_MODE, HTTP_INVALIDATION } from '@esfaenza/httpservice';
|
|
25
|
-
import * as
|
|
26
|
+
import * as i10 from '@esfaenza/signalr-notifications';
|
|
26
27
|
import { SignalrNotificationsModule, SGR_DEBUG_MODE, BaseMessageService } from '@esfaenza/signalr-notifications';
|
|
27
|
-
import * as
|
|
28
|
+
import * as i7 from '@esfaenza/forms-and-validations';
|
|
28
29
|
import { FormsAndValidationsModule } from '@esfaenza/forms-and-validations';
|
|
29
|
-
import * as
|
|
30
|
+
import * as i8 from '@esfaenza/access-control';
|
|
30
31
|
import { AccessControlModule, AccessControlService, ACC_DEBUG_MODE } from '@esfaenza/access-control';
|
|
31
|
-
import * as
|
|
32
|
+
import * as i12 from '@esfaenza/es-charts';
|
|
32
33
|
import { EsChartsModule, ESC_DEBUG_MODE, BaseAdapter } from '@esfaenza/es-charts';
|
|
33
|
-
import * as
|
|
34
|
+
import * as i3$1 from '@esfaenza/extensions';
|
|
34
35
|
import { ExtensionsModule, EXT_DEBUG_MODE } from '@esfaenza/extensions';
|
|
35
|
-
import * as
|
|
36
|
+
import * as i19 from '@esfaenza/ngx-contextmenu';
|
|
36
37
|
import { ContextMenuModule } from '@esfaenza/ngx-contextmenu';
|
|
37
|
-
import * as
|
|
38
|
+
import * as i20 from '@esfaenza/ngx-dragula';
|
|
38
39
|
import { DragulaModule } from '@esfaenza/ngx-dragula';
|
|
39
|
-
import * as
|
|
40
|
+
import * as i6 from '@esfaenza/es-table';
|
|
40
41
|
import { EsTableModule } from '@esfaenza/es-table';
|
|
41
42
|
import { TAB_DEBUG_MODE } from '@esfaenza/tabber';
|
|
42
43
|
import { ExternalPagesComponent, PagesComponent, RedirecterComponent, JaceLoginComponent, ServerErrorComponent, AngularErrorComponent, PageNotFoundComponent, ComponentsModule, UserInfosComponent } from '@esfaenza/core/components';
|
|
43
44
|
import { TemplateCommon } from '@esfaenza/core/modules';
|
|
44
|
-
import { catchError, tap, switchMap
|
|
45
|
+
import { take, catchError, tap, switchMap } from 'rxjs/operators';
|
|
45
46
|
import { of, forkJoin } from 'rxjs';
|
|
46
|
-
import * as
|
|
47
|
+
import * as i15 from 'ngx-bootstrap/progressbar';
|
|
47
48
|
import { ProgressbarModule } from 'ngx-bootstrap/progressbar';
|
|
48
|
-
import * as
|
|
49
|
+
import * as i18 from 'ngx-bootstrap/timepicker';
|
|
49
50
|
import { TimepickerModule } from 'ngx-bootstrap/timepicker';
|
|
50
|
-
import * as
|
|
51
|
+
import * as i16 from 'ngx-bootstrap/dropdown';
|
|
51
52
|
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
|
|
52
|
-
import * as
|
|
53
|
-
import { TooltipModule } from 'ngx-bootstrap/tooltip';
|
|
54
|
-
import * as
|
|
53
|
+
import * as i13 from 'ngx-bootstrap/tooltip';
|
|
54
|
+
import { TooltipModule as TooltipModule$1 } from 'ngx-bootstrap/tooltip';
|
|
55
|
+
import * as i14 from 'ngx-bootstrap/modal';
|
|
55
56
|
import { ModalModule } from 'ngx-bootstrap/modal';
|
|
57
|
+
import { TooltipModule } from 'primeng/tooltip';
|
|
58
|
+
import * as i2$1 from 'primeng/config';
|
|
59
|
+
import { providePrimeNG } from 'primeng/config';
|
|
60
|
+
import Theme from '@primeng/themes/lara';
|
|
61
|
+
import { definePreset } from '@primeng/themes';
|
|
62
|
+
import { it } from 'primelocale/js/it.js';
|
|
63
|
+
import { en } from 'primelocale/js/en.js';
|
|
64
|
+
import * as customParseFormat from 'dayjs/plugin/customParseFormat';
|
|
65
|
+
import * as isSameOrBefore from 'dayjs/plugin/isSameOrBefore';
|
|
66
|
+
import * as isSameOrAfter from 'dayjs/plugin/isSameOrAfter';
|
|
67
|
+
import * as isBetween from 'dayjs/plugin/isBetween';
|
|
68
|
+
import * as duration from 'dayjs/plugin/duration';
|
|
69
|
+
import * as minMax from 'dayjs/plugin/minMax';
|
|
70
|
+
import * as utc from 'dayjs/plugin/utc';
|
|
56
71
|
|
|
57
72
|
// Angular
|
|
58
73
|
/* N.B: Questo componente non può diventare standalone. È il punto di ingresso per il bootstrap dei moduli di Frontend, che NON si basano sui componenti standalone a meno di rare funzionalità */
|
|
@@ -72,11 +87,11 @@ class AppComponent {
|
|
|
72
87
|
}
|
|
73
88
|
}
|
|
74
89
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AppComponent, deps: [{ token: i1.TokenService }, { token: i1.AppState }, { token: i2.Router }, { token: ANONYMOUS_MODE }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
75
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: AppComponent, isStandalone: false, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows; trackBy: snowTrackBy\" 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{-webkit-animation:progress-bar-stripes 1s linear infinite;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;-webkit-box-shadow:1px 1px 5px 0px rgba(0,0,0,.25);-moz-box-shadow:1px 1px 5px 0px rgba(0,0,0,.25);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:#024a8880}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:#2d922d80}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:#248dad80}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:#f79a1780}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:#bf172580}.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:#0006}.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:#0003}.card.overlay .card-img{border-radius:0;-webkit-filter:brightness(100%);-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-webkit-filter:brightness(80%);-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{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);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:#024a88cc!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:#024a8880;border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:#024a88f2!important;border-color:#024a88f2!important}.btn-success{background:#2d922dcc;border-color:#2d922dcc}.btn-success.medium-opacity{background:#2d922d80;border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:#2d922df2!important;border-color:#2d922df2!important}.btn-info{background:#248dadcc;border-color:#248dadcc}.btn-info.medium-opacity{background:#248dad80;border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:#248dadf2!important;border-color:#248dadf2!important}.btn-warning{background:#f79a17cc;border-color:#f79a17cc}.btn-warning.medium-opacity{background:#f79a1780;border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:#f79a17f2!important;border-color:#f79a17f2!important}.btn-danger{background:#bf1725cc;border-color:#bf1725cc}.btn-danger.medium-opacity{background:#bf172580;border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:#bf1725f2!important;border-color:#bf1725f2!important}.btn-dark{background:#000c;border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:#00000080;border-color:#0000001a}.btn-dark:hover{background:#000;border-color:#000}.btn-dark:active{background:#000000f2!important;border-color:#000000f2!important}.btn-main{background:#242d3acc;border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:#242d3a80;border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:#242d3af2!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:#2d922d80;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:#555555b3}.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:#555555b3}.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:#ffffff1a 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:#024a8880!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:#2d922d80!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:#f79a1780!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:#bf172580!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:#242d3a80!important}.bg-dark{background:#000!important}.bg-dark.medium-opacity{background:#00000080!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: 1800px){.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}::-webkit-input-placeholder{color:#aaa!important}:-moz-placeholder{color:#aaa!important;opacity:1!important}::-moz-placeholder{color:#aaa!important;opacity:1!important}:-ms-input-placeholder{color:#aaa!important}::-ms-input-placeholder{color:#aaa!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{-moz-transform:scale(1,-1);-webkit-transform:scale(1,-1);-o-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scaleY(-1)}.app-flip-x{-moz-transform:scale(-1,1);-webkit-transform:scale(-1,1);-o-transform:scale(-1,1);-ms-transform:scale(-1,1);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-600{max-height:600px;overflow-x:hidden;overflow-y:auto}.list-area{position:relative!important}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:#ff323233;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:#fff;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}.wizard-step-container{background-color:#fff;box-shadow:#63636333 0 2px 8px;padding:10px}.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}.m-b-min-1{margin-bottom:-1px}.m-b-min-2{margin-bottom:-2px}.m-b-min-3{margin-bottom:-3px}.m-b-min-5{margin-bottom:-5px}.m-b-min-6{margin-bottom:-6px}.m-b-min-10{margin-bottom:-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:#00000080 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:#ededed;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{margin-top:20px;padding-left:0!important}.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}.app-search-background{z-index:9999;margin-top:60px;padding:0;background-color:#0000004d;width:100vw;height:calc(100vh - 60px)}.app-search-result-box{height:calc(100% - 35px);overflow:hidden;margin:20px}.app-search-card{margin-top:2px;margin-bottom:10px;padding:15px;background-color:#fff;box-shadow:#06182c66 0 0 0 2px,#06182ca6 0 4px 6px -1px,#ffffff14 0 1px inset}.pull-left{float:left}.pull-right{float:right}.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;-moz-user-select:none!important;-ms-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:#ccc}::-webkit-scrollbar-thumb:active{background:#888}::-webkit-scrollbar-track{background:#666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666}::-webkit-scrollbar-track:active{background:#333}::-webkit-scrollbar-corner{background:transparent}.transition{-webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;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%}}.snow{position:absolute;width:10px;height:10px;background:#fff;border-radius:50%}.snow:nth-child(1){opacity:.8934;transform:translate(23.2709vw,-10px) scale(.5622);animation:fall-1 10s -5s linear infinite}@keyframes fall-1{49.779%{transform:translate(22.0586vw,49.779vh) scale(.5622)}to{transform:translate(22.66475vw,99vh) scale(.5622)}}.snow:nth-child(2){opacity:1.29;transform:translate(91.8996vw,-10px) scale(.3701);animation:fall-2 23s -20s linear infinite}@keyframes fall-2{30.605%{transform:translate(82.0006vw,30.605vh) scale(.3701)}to{transform:translate(86.9501vw,99vh) scale(.3701)}}.snow:nth-child(3){opacity:1.5432;transform:translate(70.0027vw,-10px) scale(.7854);animation:fall-3 24s -26s linear infinite}@keyframes fall-3{49.447%{transform:translate(77.852vw,49.447vh) scale(.7854)}to{transform:translate(73.92735vw,99vh) scale(.7854)}}.snow:nth-child(4){opacity:.5256;transform:translate(18.9173vw,-10px) scale(.82);animation:fall-4 14s -25s linear infinite}@keyframes fall-4{40.525%{transform:translate(24.3612vw,40.525vh) scale(.82)}to{transform:translate(21.63925vw,99vh) scale(.82)}}.snow:nth-child(5){opacity:1.8972;transform:translate(68.2049vw,-10px) scale(.7357);animation:fall-5 10s -25s linear infinite}@keyframes fall-5{65.977%{transform:translate(59.5655vw,65.977vh) scale(.7357)}to{transform:translate(63.8852vw,99vh) scale(.7357)}}.snow:nth-child(6){opacity:1.2828;transform:translate(68.1748vw,-10px) scale(.2839);animation:fall-6 29s -8s linear infinite}@keyframes fall-6{46.564%{transform:translate(65.5391vw,46.564vh) scale(.2839)}to{transform:translate(66.85695vw,99vh) scale(.2839)}}.snow:nth-child(7){opacity:1.2402;transform:translate(58.6712vw,-10px) scale(.1863);animation:fall-7 28s -22s linear infinite}@keyframes fall-7{30.513%{transform:translate(66.0447vw,30.513vh) scale(.1863)}to{transform:translate(62.35795vw,99vh) scale(.1863)}}.snow:nth-child(8){opacity:.3788;transform:translate(75.8256vw,-10px) scale(.1255);animation:fall-8 20s -21s linear infinite}@keyframes fall-8{65.969%{transform:translate(83.6556vw,65.969vh) scale(.1255)}to{transform:translate(79.7406vw,99vh) scale(.1255)}}.snow:nth-child(9){opacity:.3364;transform:translate(84.2309vw,-10px) scale(.175);animation:fall-9 18s -18s linear infinite}@keyframes fall-9{76.162%{transform:translate(88.983vw,76.162vh) scale(.175)}to{transform:translate(86.60695vw,99vh) scale(.175)}}.snow:nth-child(10){opacity:.731;transform:translate(39.8093vw,-10px) scale(.2429);animation:fall-10 28s -15s linear infinite}@keyframes fall-10{42.936%{transform:translate(46.57vw,42.936vh) scale(.2429)}to{transform:translate(43.18965vw,99vh) scale(.2429)}}.snow:nth-child(11){opacity:1.099;transform:translate(81.9708vw,-10px) scale(.3822);animation:fall-11 19s -23s linear infinite}@keyframes fall-11{44.681%{transform:translate(78.1297vw,44.681vh) scale(.3822)}to{transform:translate(80.05025vw,99vh) scale(.3822)}}.snow:nth-child(12){opacity:.1778;transform:translate(49.3213vw,-10px) scale(.7268);animation:fall-12 13s -23s linear infinite}@keyframes fall-12{75.24%{transform:translate(55.1312vw,75.24vh) scale(.7268)}to{transform:translate(52.22625vw,99vh) scale(.7268)}}.snow:nth-child(13){opacity:1.4342;transform:translate(31.4526vw,-10px) scale(.7468);animation:fall-13 25s -18s linear infinite}@keyframes fall-13{65.995%{transform:translate(33.3362vw,65.995vh) scale(.7468)}to{transform:translate(32.3944vw,99vh) scale(.7468)}}.snow:nth-child(14){opacity:.9302;transform:translate(41.8308vw,-10px) scale(.3498);animation:fall-14 10s -20s linear infinite}@keyframes fall-14{38.185%{transform:translate(32.8701vw,38.185vh) scale(.3498)}to{transform:translate(37.35045vw,99vh) scale(.3498)}}.snow:nth-child(15){opacity:1.1412;transform:translate(12.6021vw,-10px) scale(.8871);animation:fall-15 27s -30s linear infinite}@keyframes fall-15{41.3%{transform:translate(18.1655vw,41.3vh) scale(.8871)}to{transform:translate(15.3838vw,99vh) scale(.8871)}}.snow:nth-child(16){opacity:.3298;transform:translate(23.7119vw,-10px) scale(.2397);animation:fall-16 14s -9s linear infinite}@keyframes fall-16{42.493%{transform:translate(19.0236vw,42.493vh) scale(.2397)}to{transform:translate(21.36775vw,99vh) scale(.2397)}}.snow:nth-child(17){opacity:1.518;transform:translate(96.5786vw,-10px) scale(.8563);animation:fall-17 26s -12s linear infinite}@keyframes fall-17{64.025%{transform:translate(100.7826vw,64.025vh) scale(.8563)}to{transform:translate(98.6806vw,99vh) scale(.8563)}}.snow:nth-child(18){opacity:.8496;transform:translate(23.4905vw,-10px) scale(.0461);animation:fall-18 11s -29s linear infinite}@keyframes fall-18{69.928%{transform:translate(19.6791vw,69.928vh) scale(.0461)}to{transform:translate(21.5848vw,99vh) scale(.0461)}}.snow:nth-child(19){opacity:.9644;transform:translate(65.5712vw,-10px) scale(.7548);animation:fall-19 11s -7s linear infinite}@keyframes fall-19{65.463%{transform:translate(62.5497vw,65.463vh) scale(.7548)}to{transform:translate(64.06045vw,99vh) scale(.7548)}}.snow:nth-child(20){opacity:.503;transform:translate(53.4854vw,-10px) scale(.7142);animation:fall-20 14s -20s linear infinite}@keyframes fall-20{37.62%{transform:translate(52.8315vw,37.62vh) scale(.7142)}to{transform:translate(53.15845vw,99vh) scale(.7142)}}.snow:nth-child(21){opacity:1.9662;transform:translate(14.0273vw,-10px) scale(.6052);animation:fall-21 30s -15s linear infinite}@keyframes fall-21{41.768%{transform:translate(21.8075vw,41.768vh) scale(.6052)}to{transform:translate(17.9174vw,99vh) scale(.6052)}}.snow:nth-child(22){opacity:.0238;transform:translate(81.4049vw,-10px) scale(.9021);animation:fall-22 13s -23s linear infinite}@keyframes fall-22{57.71%{transform:translate(83.9134vw,57.71vh) scale(.9021)}to{transform:translate(82.65915vw,99vh) scale(.9021)}}.snow:nth-child(23){opacity:1.7616;transform:translate(26.4743vw,-10px) scale(.2069);animation:fall-23 12s -5s linear infinite}@keyframes fall-23{30.59%{transform:translate(34.4431vw,30.59vh) scale(.2069)}to{transform:translate(30.4587vw,99vh) scale(.2069)}}.snow:nth-child(24){opacity:1.6144;transform:translate(11.8464vw,-10px) scale(.4953);animation:fall-24 27s -4s linear infinite}@keyframes fall-24{59.452%{transform:translate(17.4804vw,59.452vh) scale(.4953)}to{transform:translate(14.6634vw,99vh) scale(.4953)}}.snow:nth-child(25){opacity:.7312;transform:translate(10.0429vw,-10px) scale(.6547);animation:fall-25 12s -9s linear infinite}@keyframes fall-25{79.089%{transform:translate(16.6281vw,79.089vh) scale(.6547)}to{transform:translate(13.3355vw,99vh) scale(.6547)}}.snow:nth-child(26){opacity:1.7638;transform:translate(61.1895vw,-10px) scale(.9222);animation:fall-26 10s -21s linear infinite}@keyframes fall-26{40.387%{transform:translate(57.1295vw,40.387vh) scale(.9222)}to{transform:translate(59.1595vw,99vh) scale(.9222)}}.snow:nth-child(27){opacity:1.0524;transform:translate(90.3vw,-10px) scale(.6322);animation:fall-27 21s -11s linear infinite}@keyframes fall-27{73.257%{transform:translate(95.739vw,73.257vh) scale(.6322)}to{transform:translate(93.0195vw,99vh) scale(.6322)}}.snow:nth-child(28){opacity:.663;transform:translate(9.5078vw,-10px) scale(.5314);animation:fall-28 27s -4s linear infinite}@keyframes fall-28{42.172%{transform:translate(.5451vw,42.172vh) scale(.5314)}to{transform:translate(5.02645vw,99vh) scale(.5314)}}.snow:nth-child(29){opacity:1.2516;transform:translate(47.7206vw,-10px) scale(.4111);animation:fall-29 25s -9s linear infinite}@keyframes fall-29{78.384%{transform:translate(47.1408vw,78.384vh) scale(.4111)}to{transform:translate(47.4307vw,99vh) scale(.4111)}}.snow:nth-child(30){opacity:1.0204;transform:translate(32.724vw,-10px) scale(.0546);animation:fall-30 16s -22s linear infinite}@keyframes fall-30{56.708%{transform:translate(37.2414vw,56.708vh) scale(.0546)}to{transform:translate(34.9827vw,99vh) scale(.0546)}}.snow:nth-child(31){opacity:.4898;transform:translate(76.9768vw,-10px) scale(.815);animation:fall-31 29s -22s linear infinite}@keyframes fall-31{49.281%{transform:translate(76.3926vw,49.281vh) scale(.815)}to{transform:translate(76.6847vw,99vh) scale(.815)}}.snow:nth-child(32){opacity:.6454;transform:translate(22.8395vw,-10px) scale(.9848);animation:fall-32 14s -29s linear infinite}@keyframes fall-32{71.083%{transform:translate(24.5447vw,71.083vh) scale(.9848)}to{transform:translate(23.6921vw,99vh) scale(.9848)}}.snow:nth-child(33){opacity:1.636;transform:translate(87.8727vw,-10px) scale(.268);animation:fall-33 20s -5s linear infinite}@keyframes fall-33{63.814%{transform:translate(94.226vw,63.814vh) scale(.268)}to{transform:translate(91.04935vw,99vh) scale(.268)}}.snow:nth-child(34){opacity:.4944;transform:translate(23.0086vw,-10px) scale(.8002);animation:fall-34 22s -26s linear infinite}@keyframes fall-34{44.744%{transform:translate(13.9131vw,44.744vh) scale(.8002)}to{transform:translate(18.46085vw,99vh) scale(.8002)}}.snow:nth-child(35){opacity:1.3424;transform:translate(34.7764vw,-10px) scale(.3519);animation:fall-35 22s -12s linear infinite}@keyframes fall-35{58.398%{transform:translate(37.4689vw,58.398vh) scale(.3519)}to{transform:translate(36.12265vw,99vh) scale(.3519)}}.snow:nth-child(36){opacity:.3426;transform:translate(88.5009vw,-10px) scale(.3672);animation:fall-36 17s -17s linear infinite}@keyframes fall-36{50.995%{transform:translate(95.3667vw,50.995vh) scale(.3672)}to{transform:translate(91.9338vw,99vh) scale(.3672)}}.snow:nth-child(37){opacity:1.082;transform:translate(61.2983vw,-10px) scale(.9698);animation:fall-37 21s -17s linear infinite}@keyframes fall-37{48.619%{transform:translate(65.6582vw,48.619vh) scale(.9698)}to{transform:translate(63.47825vw,99vh) scale(.9698)}}.snow:nth-child(38){opacity:.267;transform:translate(41.503vw,-10px) scale(.4571);animation:fall-38 26s -28s linear infinite}@keyframes fall-38{68.687%{transform:translate(34.0066vw,68.687vh) scale(.4571)}to{transform:translate(37.7548vw,99vh) scale(.4571)}}.snow:nth-child(39){opacity:.6146;transform:translate(38.2626vw,-10px) scale(.7577);animation:fall-39 14s -9s linear infinite}@keyframes fall-39{63.432%{transform:translate(46.1044vw,63.432vh) scale(.7577)}to{transform:translate(42.1835vw,99vh) scale(.7577)}}.snow:nth-child(40){opacity:.0858;transform:translate(68.8362vw,-10px) scale(.528);animation:fall-40 29s -11s linear infinite}@keyframes fall-40{41.898%{transform:translate(78.1864vw,41.898vh) scale(.528)}to{transform:translate(73.5113vw,99vh) scale(.528)}}.snow:nth-child(41){opacity:1.8398;transform:translate(58.222vw,-10px) scale(.6158);animation:fall-41 13s -16s linear infinite}@keyframes fall-41{44.365%{transform:translate(52.2848vw,44.365vh) scale(.6158)}to{transform:translate(55.2534vw,99vh) scale(.6158)}}.snow:nth-child(42){opacity:.7528;transform:translate(88.8293vw,-10px) scale(.3767);animation:fall-42 22s -4s linear infinite}@keyframes fall-42{64.893%{transform:translate(93.5799vw,64.893vh) scale(.3767)}to{transform:translate(91.2046vw,99vh) scale(.3767)}}.snow:nth-child(43){opacity:1.7344;transform:translate(65.104vw,-10px) scale(.1432);animation:fall-43 15s -4s linear infinite}@keyframes fall-43{54.298%{transform:translate(74.6903vw,54.298vh) scale(.1432)}to{transform:translate(69.89715vw,99vh) scale(.1432)}}.snow:nth-child(44){opacity:.0072;transform:translate(48.2826vw,-10px) scale(.6322);animation:fall-44 25s -16s linear infinite}@keyframes fall-44{50.065%{transform:translate(45.8319vw,50.065vh) scale(.6322)}to{transform:translate(47.05725vw,99vh) scale(.6322)}}.snow:nth-child(45){opacity:.4002;transform:translate(43.9518vw,-10px) scale(.4729);animation:fall-45 20s -29s linear infinite}@keyframes fall-45{46.562%{transform:translate(40.3946vw,46.562vh) scale(.4729)}to{transform:translate(42.1732vw,99vh) scale(.4729)}}.snow:nth-child(46){opacity:1.321;transform:translate(78.7659vw,-10px) scale(.0846);animation:fall-46 13s -5s linear infinite}@keyframes fall-46{30.785%{transform:translate(82.5725vw,30.785vh) scale(.0846)}to{transform:translate(80.6692vw,99vh) scale(.0846)}}.snow:nth-child(47){opacity:.936;transform:translate(76.9812vw,-10px) scale(.6012);animation:fall-47 25s -25s linear infinite}@keyframes fall-47{72.541%{transform:translate(82.9828vw,72.541vh) scale(.6012)}to{transform:translate(79.982vw,99vh) scale(.6012)}}.snow:nth-child(48){opacity:.3498;transform:translate(72.0271vw,-10px) scale(.6144);animation:fall-48 26s -17s linear infinite}@keyframes fall-48{38.905%{transform:translate(71.4998vw,38.905vh) scale(.6144)}to{transform:translate(71.76345vw,99vh) scale(.6144)}}.snow:nth-child(49){opacity:.1282;transform:translate(11.2418vw,-10px) scale(.9263);animation:fall-49 23s -8s linear infinite}@keyframes fall-49{72.115%{transform:translate(7.8682vw,72.115vh) scale(.9263)}to{transform:translate(9.555vw,99vh) scale(.9263)}}.snow:nth-child(50){opacity:1.5332;transform:translate(38.5857vw,-10px) scale(.867);animation:fall-50 15s -18s linear infinite}@keyframes fall-50{77.78%{transform:translate(41.3463vw,77.78vh) scale(.867)}to{transform:translate(39.966vw,99vh) scale(.867)}}.snow:nth-child(51){opacity:.7068;transform:translate(24.8244vw,-10px) scale(.7731);animation:fall-51 29s -23s linear infinite}@keyframes fall-51{76.941%{transform:translate(33.0699vw,76.941vh) scale(.7731)}to{transform:translate(28.94715vw,99vh) scale(.7731)}}.snow:nth-child(52){opacity:1.3172;transform:translate(11.4738vw,-10px) scale(.8777);animation:fall-52 25s -6s linear infinite}@keyframes fall-52{65.201%{transform:translate(16.8992vw,65.201vh) scale(.8777)}to{transform:translate(14.1865vw,99vh) scale(.8777)}}.snow:nth-child(53){opacity:.9852;transform:translate(18.1826vw,-10px) scale(.6219);animation:fall-53 17s -2s linear infinite}@keyframes fall-53{30.261%{transform:translate(26.402vw,30.261vh) scale(.6219)}to{transform:translate(22.2923vw,99vh) scale(.6219)}}.snow:nth-child(54){opacity:1.405;transform:translate(81.0163vw,-10px) scale(.0986);animation:fall-54 24s -29s linear infinite}@keyframes fall-54{66.982%{transform:translate(87.8764vw,66.982vh) scale(.0986)}to{transform:translate(84.44635vw,99vh) scale(.0986)}}.snow:nth-child(55){opacity:.2418;transform:translate(99.3087vw,-10px) scale(.428);animation:fall-55 27s -4s linear infinite}@keyframes fall-55{59.475%{transform:translate(99.6666vw,59.475vh) scale(.428)}to{transform:translate(99.48765vw,99vh) scale(.428)}}.snow:nth-child(56){opacity:.5608;transform:translate(26.5782vw,-10px) scale(.1474);animation:fall-56 28s -20s linear infinite}@keyframes fall-56{47.042%{transform:translate(18.2032vw,47.042vh) scale(.1474)}to{transform:translate(22.3907vw,99vh) scale(.1474)}}.snow:nth-child(57){opacity:1.8108;transform:translate(60.2967vw,-10px) scale(.0682);animation:fall-57 25s -11s linear infinite}@keyframes fall-57{58.372%{transform:translate(56.2807vw,58.372vh) scale(.0682)}to{transform:translate(58.2887vw,99vh) scale(.0682)}}.snow:nth-child(58){opacity:.7278;transform:translate(93.9021vw,-10px) scale(.7478);animation:fall-58 19s -18s linear infinite}@keyframes fall-58{48.053%{transform:translate(95.0298vw,48.053vh) scale(.7478)}to{transform:translate(94.46595vw,99vh) scale(.7478)}}.snow:nth-child(59){opacity:.0028;transform:translate(59.168vw,-10px) scale(.8662);animation:fall-59 20s -26s linear infinite}@keyframes fall-59{66.707%{transform:translate(61.8269vw,66.707vh) scale(.8662)}to{transform:translate(60.49745vw,99vh) scale(.8662)}}.snow:nth-child(60){opacity:.6454;transform:translate(88.1395vw,-10px) scale(.7279);animation:fall-60 14s -29s linear infinite}@keyframes fall-60{39.754%{transform:translate(95.9079vw,39.754vh) scale(.7279)}to{transform:translate(92.0237vw,99vh) scale(.7279)}}.snow:nth-child(61){opacity:.5818;transform:translate(66.5254vw,-10px) scale(.4333);animation:fall-61 18s -23s linear infinite}@keyframes fall-61{33.098%{transform:translate(66.0782vw,33.098vh) scale(.4333)}to{transform:translate(66.3018vw,99vh) scale(.4333)}}.snow:nth-child(62){opacity:.1676;transform:translate(.3016vw,-10px) scale(.8604);animation:fall-62 11s -27s linear infinite}@keyframes fall-62{67.797%{transform:translate(9.8546vw,67.797vh) scale(.8604)}to{transform:translate(5.0781vw,99vh) scale(.8604)}}.snow:nth-child(63){opacity:.7278;transform:translate(32.9367vw,-10px) scale(.9718);animation:fall-63 10s -16s linear infinite}@keyframes fall-63{37.821%{transform:translate(31.0431vw,37.821vh) scale(.9718)}to{transform:translate(31.9899vw,99vh) scale(.9718)}}.snow:nth-child(64){opacity:1.118;transform:translate(83.2969vw,-10px) scale(.0348);animation:fall-64 23s -24s linear infinite}@keyframes fall-64{57.893%{transform:translate(91.3837vw,57.893vh) scale(.0348)}to{transform:translate(87.3403vw,99vh) scale(.0348)}}.snow:nth-child(65){opacity:.0518;transform:translate(16.6951vw,-10px) scale(.4525);animation:fall-65 12s -2s linear infinite}@keyframes fall-65{68.188%{transform:translate(10.3vw,68.188vh) scale(.4525)}to{transform:translate(13.49755vw,99vh) scale(.4525)}}.snow:nth-child(66){opacity:.9564;transform:translate(75.6158vw,-10px) scale(.4987);animation:fall-66 20s -8s linear infinite}@keyframes fall-66{61.325%{transform:translate(66.1395vw,61.325vh) scale(.4987)}to{transform:translate(70.87765vw,99vh) scale(.4987)}}.snow:nth-child(67){opacity:.6314;transform:translate(4.5313vw,-10px) scale(.3653);animation:fall-67 18s -23s linear infinite}@keyframes fall-67{75.679%{transform:translate(5.0972vw,75.679vh) scale(.3653)}to{transform:translate(4.81425vw,99vh) scale(.3653)}}.snow:nth-child(68){opacity:.7712;transform:translate(76.603vw,-10px) scale(.2105);animation:fall-68 13s -18s linear infinite}@keyframes fall-68{61.571%{transform:translate(82.2085vw,61.571vh) scale(.2105)}to{transform:translate(79.40575vw,99vh) scale(.2105)}}.snow:nth-child(69){opacity:1.6478;transform:translate(42.5428vw,-10px) scale(.1386);animation:fall-69 18s -7s linear infinite}@keyframes fall-69{38.647%{transform:translate(46.7562vw,38.647vh) scale(.1386)}to{transform:translate(44.6495vw,99vh) scale(.1386)}}.snow:nth-child(70){opacity:.3106;transform:translate(82.8012vw,-10px) scale(.572);animation:fall-70 10s -17s linear infinite}@keyframes fall-70{42.024%{transform:translate(88.9823vw,42.024vh) scale(.572)}to{transform:translate(85.89175vw,99vh) scale(.572)}}.snow:nth-child(71){opacity:.786;transform:translate(19.2239vw,-10px) scale(.8045);animation:fall-71 21s -13s linear infinite}@keyframes fall-71{39.392%{transform:translate(20.4992vw,39.392vh) scale(.8045)}to{transform:translate(19.86155vw,99vh) scale(.8045)}}.snow:nth-child(72){opacity:.5522;transform:translate(1.7567vw,-10px) scale(.5367);animation:fall-72 29s -7s linear infinite}@keyframes fall-72{55.528%{transform:translate(-4.3635vw,55.528vh) scale(.5367)}to{transform:translate(-1.3034vw,99vh) scale(.5367)}}.snow:nth-child(73){opacity:1.5734;transform:translate(42.11vw,-10px) scale(.3835);animation:fall-73 19s -14s linear infinite}@keyframes fall-73{69.357%{transform:translate(44.5844vw,69.357vh) scale(.3835)}to{transform:translate(43.3472vw,99vh) scale(.3835)}}.snow:nth-child(74){opacity:.5504;transform:translate(34.3208vw,-10px) scale(.8682);animation:fall-74 24s -18s linear infinite}@keyframes fall-74{75.57%{transform:translate(43.0913vw,75.57vh) scale(.8682)}to{transform:translate(38.70605vw,99vh) scale(.8682)}}.snow:nth-child(75){opacity:.978;transform:translate(17.9359vw,-10px) scale(.3287);animation:fall-75 20s -8s linear infinite}@keyframes fall-75{61.006%{transform:translate(18.0763vw,61.006vh) scale(.3287)}to{transform:translate(18.0061vw,99vh) scale(.3287)}}.snow:nth-child(76){opacity:1.8486;transform:translate(18.033vw,-10px) scale(.939);animation:fall-76 26s -2s linear infinite}@keyframes fall-76{44.31%{transform:translate(22.1267vw,44.31vh) scale(.939)}to{transform:translate(20.07985vw,99vh) scale(.939)}}.snow:nth-child(77){opacity:.7888;transform:translate(47.0648vw,-10px) scale(.1469);animation:fall-77 17s -6s linear infinite}@keyframes fall-77{71.853%{transform:translate(41.8326vw,71.853vh) scale(.1469)}to{transform:translate(44.4487vw,99vh) scale(.1469)}}.snow:nth-child(78){opacity:1.4148;transform:translate(59.0491vw,-10px) scale(.7177);animation:fall-78 24s -6s linear infinite}@keyframes fall-78{77.382%{transform:translate(57.2528vw,77.382vh) scale(.7177)}to{transform:translate(58.15095vw,99vh) scale(.7177)}}.snow:nth-child(79){opacity:1.4582;transform:translate(80.7734vw,-10px) scale(.4503);animation:fall-79 21s -23s linear infinite}@keyframes fall-79{67.67%{transform:translate(84.7155vw,67.67vh) scale(.4503)}to{transform:translate(82.74445vw,99vh) scale(.4503)}}.snow:nth-child(80){opacity:.9836;transform:translate(4.6246vw,-10px) scale(.5288);animation:fall-80 27s -11s linear infinite}@keyframes fall-80{78.243%{transform:translate(-1.8375vw,78.243vh) scale(.5288)}to{transform:translate(1.39355vw,99vh) scale(.5288)}}.snow:nth-child(81){opacity:1.3734;transform:translate(83.646vw,-10px) scale(.5925);animation:fall-81 24s -10s linear infinite}@keyframes fall-81{71.792%{transform:translate(87.8249vw,71.792vh) scale(.5925)}to{transform:translate(85.73545vw,99vh) scale(.5925)}}.snow:nth-child(82){opacity:1.8744;transform:translate(68.8999vw,-10px) scale(.9021);animation:fall-82 27s -14s linear infinite}@keyframes fall-82{31.851%{transform:translate(60.186vw,31.851vh) scale(.9021)}to{transform:translate(64.54295vw,99vh) scale(.9021)}}.snow:nth-child(83){opacity:1.0958;transform:translate(39.8153vw,-10px) scale(.0394);animation:fall-83 20s -1s linear infinite}@keyframes fall-83{45.725%{transform:translate(33.3242vw,45.725vh) scale(.0394)}to{transform:translate(36.56975vw,99vh) scale(.0394)}}.snow:nth-child(84){opacity:1.4178;transform:translate(42.8455vw,-10px) scale(.2798);animation:fall-84 29s -13s linear infinite}@keyframes fall-84{37.513%{transform:translate(41.3692vw,37.513vh) scale(.2798)}to{transform:translate(42.10735vw,99vh) scale(.2798)}}.snow:nth-child(85){opacity:.6516;transform:translate(79.1094vw,-10px) scale(.125);animation:fall-85 27s -6s linear infinite}@keyframes fall-85{49.774%{transform:translate(88.5783vw,49.774vh) scale(.125)}to{transform:translate(83.84385vw,99vh) scale(.125)}}.snow:nth-child(86){opacity:.2594;transform:translate(62.7096vw,-10px) scale(.2212);animation:fall-86 19s -13s linear infinite}@keyframes fall-86{44.702%{transform:translate(55.0648vw,44.702vh) scale(.2212)}to{transform:translate(58.8872vw,99vh) scale(.2212)}}.snow:nth-child(87){opacity:1.0566;transform:translate(91.984vw,-10px) scale(.5438);animation:fall-87 25s -29s linear infinite}@keyframes fall-87{50.785%{transform:translate(92.1289vw,50.785vh) scale(.5438)}to{transform:translate(92.05645vw,99vh) scale(.5438)}}.snow:nth-child(88){opacity:.43;transform:translate(60.3221vw,-10px) scale(.2322);animation:fall-88 19s -6s linear infinite}@keyframes fall-88{30.123%{transform:translate(59.5311vw,30.123vh) scale(.2322)}to{transform:translate(59.9266vw,99vh) scale(.2322)}}.snow:nth-child(89){opacity:.8626;transform:translate(66.1313vw,-10px) scale(.2137);animation:fall-89 25s -15s linear infinite}@keyframes fall-89{34.79%{transform:translate(57.7208vw,34.79vh) scale(.2137)}to{transform:translate(61.92605vw,99vh) scale(.2137)}}.snow:nth-child(90){opacity:.5606;transform:translate(47.0104vw,-10px) scale(.6196);animation:fall-90 26s -13s linear infinite}@keyframes fall-90{72.976%{transform:translate(55.497vw,72.976vh) scale(.6196)}to{transform:translate(51.2537vw,99vh) scale(.6196)}}.snow:nth-child(91){opacity:1.506;transform:translate(39.4391vw,-10px) scale(.1734);animation:fall-91 20s -16s linear infinite}@keyframes fall-91{40.171%{transform:translate(46.0235vw,40.171vh) scale(.1734)}to{transform:translate(42.7313vw,99vh) scale(.1734)}}.snow:nth-child(92){opacity:1.0546;transform:translate(42.0213vw,-10px) scale(.5722);animation:fall-92 19s -19s linear infinite}@keyframes fall-92{53.257%{transform:translate(38.0414vw,53.257vh) scale(.5722)}to{transform:translate(40.03135vw,99vh) scale(.5722)}}.snow:nth-child(93){opacity:1.5856;transform:translate(68.8144vw,-10px) scale(.848);animation:fall-93 12s -8s linear infinite}@keyframes fall-93{62.774%{transform:translate(70.4959vw,62.774vh) scale(.848)}to{transform:translate(69.65515vw,99vh) scale(.848)}}.snow:nth-child(94){opacity:1.9384;transform:translate(1.0036vw,-10px) scale(.0721);animation:fall-94 11s -24s linear infinite}@keyframes fall-94{38.045%{transform:translate(-4.8354vw,38.045vh) scale(.0721)}to{transform:translate(-1.9159vw,99vh) scale(.0721)}}.snow:nth-child(95){opacity:1.1624;transform:translate(75.4092vw,-10px) scale(.9657);animation:fall-95 21s -23s linear infinite}@keyframes fall-95{59.017%{transform:translate(70.7288vw,59.017vh) scale(.9657)}to{transform:translate(73.069vw,99vh) scale(.9657)}}.snow:nth-child(96){opacity:1.9328;transform:translate(92.8548vw,-10px) scale(.7568);animation:fall-96 28s -20s linear infinite}@keyframes fall-96{49.15%{transform:translate(102.1839vw,49.15vh) scale(.7568)}to{transform:translate(97.51935vw,99vh) scale(.7568)}}.snow:nth-child(97){opacity:.5544;transform:translate(38.1272vw,-10px) scale(.9201);animation:fall-97 14s -10s linear infinite}@keyframes fall-97{45.747%{transform:translate(40.3904vw,45.747vh) scale(.9201)}to{transform:translate(39.2588vw,99vh) scale(.9201)}}.snow:nth-child(98){opacity:.902;transform:translate(64.2038vw,-10px) scale(.2318);animation:fall-98 17s -24s linear infinite}@keyframes fall-98{36.319%{transform:translate(57.735vw,36.319vh) scale(.2318)}to{transform:translate(60.9694vw,99vh) scale(.2318)}}.snow:nth-child(99){opacity:.74;transform:translate(41.591vw,-10px) scale(.7332);animation:fall-99 17s -19s linear infinite}@keyframes fall-99{36.046%{transform:translate(34.306vw,36.046vh) scale(.7332)}to{transform:translate(37.9485vw,99vh) scale(.7332)}}.snow:nth-child(100){opacity:1.1524;transform:translate(5.3366vw,-10px) scale(.654);animation:fall-100 14s -24s linear infinite}@keyframes fall-100{71.818%{transform:translate(6.0867vw,71.818vh) scale(.654)}to{transform:translate(5.71165vw,99vh) scale(.654)}}.snow:nth-child(101){opacity:1.6546;transform:translate(77.1191vw,-10px) scale(.974);animation:fall-101 21s -27s linear infinite}@keyframes fall-101{32.479%{transform:translate(86.3745vw,32.479vh) scale(.974)}to{transform:translate(81.7468vw,99vh) scale(.974)}}.snow:nth-child(102){opacity:1.653;transform:translate(14.273vw,-10px) scale(.0969);animation:fall-102 20s -11s linear infinite}@keyframes fall-102{35.608%{transform:translate(17.1638vw,35.608vh) scale(.0969)}to{transform:translate(15.7184vw,99vh) scale(.0969)}}.snow:nth-child(103){opacity:1.1346;transform:translate(58.2843vw,-10px) scale(.804);animation:fall-103 30s -27s linear infinite}@keyframes fall-103{49.732%{transform:translate(50.8856vw,49.732vh) scale(.804)}to{transform:translate(54.58495vw,99vh) scale(.804)}}.snow:nth-child(104){opacity:.7462;transform:translate(6.2589vw,-10px) scale(.0753);animation:fall-104 21s -18s linear infinite}@keyframes fall-104{75.171%{transform:translate(11.982vw,75.171vh) scale(.0753)}to{transform:translate(9.12045vw,99vh) scale(.0753)}}.snow:nth-child(105){opacity:1.5534;transform:translate(63.9328vw,-10px) scale(.9677);animation:fall-105 13s -23s linear infinite}@keyframes fall-105{74.976%{transform:translate(71.0324vw,74.976vh) scale(.9677)}to{transform:translate(67.4826vw,99vh) scale(.9677)}}.snow:nth-child(106){opacity:1.1306;transform:translate(83.7402vw,-10px) scale(.6801);animation:fall-106 26s -13s linear infinite}@keyframes fall-106{39.772%{transform:translate(81.6161vw,39.772vh) scale(.6801)}to{transform:translate(82.67815vw,99vh) scale(.6801)}}.snow:nth-child(107){opacity:1.674;transform:translate(36.8167vw,-10px) scale(.2838);animation:fall-107 30s -7s linear infinite}@keyframes fall-107{68.658%{transform:translate(37.8015vw,68.658vh) scale(.2838)}to{transform:translate(37.3091vw,99vh) scale(.2838)}}.snow:nth-child(108){opacity:.3806;transform:translate(34.7062vw,-10px) scale(.1369);animation:fall-108 28s -18s linear infinite}@keyframes fall-108{66.537%{transform:translate(28.7601vw,66.537vh) scale(.1369)}to{transform:translate(31.73315vw,99vh) scale(.1369)}}.snow:nth-child(109){opacity:1.1858;transform:translate(34.6829vw,-10px) scale(.276);animation:fall-109 21s -25s linear infinite}@keyframes fall-109{72.92%{transform:translate(42.9366vw,72.92vh) scale(.276)}to{transform:translate(38.80975vw,99vh) scale(.276)}}.snow:nth-child(110){opacity:.8438;transform:translate(42.5871vw,-10px) scale(.2505);animation:fall-110 23s -28s linear infinite}@keyframes fall-110{34.307%{transform:translate(46.9329vw,34.307vh) scale(.2505)}to{transform:translate(44.76vw,99vh) scale(.2505)}}.snow:nth-child(111){opacity:1.1756;transform:translate(20.7618vw,-10px) scale(.8028);animation:fall-111 30s -10s linear infinite}@keyframes fall-111{32.623%{transform:translate(16.4763vw,32.623vh) scale(.8028)}to{transform:translate(18.61905vw,99vh) scale(.8028)}}.snow:nth-child(112){opacity:1.923;transform:translate(72.3804vw,-10px) scale(.0496);animation:fall-112 15s -21s linear infinite}@keyframes fall-112{64.212%{transform:translate(65.0874vw,64.212vh) scale(.0496)}to{transform:translate(68.7339vw,99vh) scale(.0496)}}.snow:nth-child(113){opacity:.7786;transform:translate(68.4528vw,-10px) scale(.0432);animation:fall-113 18s -30s linear infinite}@keyframes fall-113{35.445%{transform:translate(60.4033vw,35.445vh) scale(.0432)}to{transform:translate(64.42805vw,99vh) scale(.0432)}}.snow:nth-child(114){opacity:1.3248;transform:translate(54.0626vw,-10px) scale(.9161);animation:fall-114 25s -21s linear infinite}@keyframes fall-114{68.446%{transform:translate(54.359vw,68.446vh) scale(.9161)}to{transform:translate(54.2108vw,99vh) scale(.9161)}}.snow:nth-child(115){opacity:.0088;transform:translate(18.6916vw,-10px) scale(.652);animation:fall-115 27s -13s linear infinite}@keyframes fall-115{67.645%{transform:translate(27.9834vw,67.645vh) scale(.652)}to{transform:translate(23.3375vw,99vh) scale(.652)}}.snow:nth-child(116){opacity:1.1322;transform:translate(55.0334vw,-10px) scale(.4122);animation:fall-116 27s -30s linear infinite}@keyframes fall-116{56.524%{transform:translate(46.7893vw,56.524vh) scale(.4122)}to{transform:translate(50.91135vw,99vh) scale(.4122)}}.snow:nth-child(117){opacity:1.8754;transform:translate(56.7665vw,-10px) scale(.1395);animation:fall-117 11s -3s linear infinite}@keyframes fall-117{54.95%{transform:translate(62.3983vw,54.95vh) scale(.1395)}to{transform:translate(59.5824vw,99vh) scale(.1395)}}.snow:nth-child(118){opacity:1.4212;transform:translate(31.4421vw,-10px) scale(.3183);animation:fall-118 27s -20s linear infinite}@keyframes fall-118{48.989%{transform:translate(27.3701vw,48.989vh) scale(.3183)}to{transform:translate(29.4061vw,99vh) scale(.3183)}}.snow:nth-child(119){opacity:.2978;transform:translate(80.1829vw,-10px) scale(.7121);animation:fall-119 23s -4s linear infinite}@keyframes fall-119{50.922%{transform:translate(76.9115vw,50.922vh) scale(.7121)}to{transform:translate(78.5472vw,99vh) scale(.7121)}}.snow:nth-child(120){opacity:1.2414;transform:translate(40.7906vw,-10px) scale(.6573);animation:fall-120 23s -7s linear infinite}@keyframes fall-120{41.228%{transform:translate(33.889vw,41.228vh) scale(.6573)}to{transform:translate(37.3398vw,99vh) scale(.6573)}}.snow:nth-child(121){opacity:1.2766;transform:translate(41.6752vw,-10px) scale(.2648);animation:fall-121 12s -13s linear infinite}@keyframes fall-121{67.616%{transform:translate(45.3594vw,67.616vh) scale(.2648)}to{transform:translate(43.5173vw,99vh) scale(.2648)}}.snow:nth-child(122){opacity:.4198;transform:translate(88.9406vw,-10px) scale(.258);animation:fall-122 20s -16s linear infinite}@keyframes fall-122{43.075%{transform:translate(95.8834vw,43.075vh) scale(.258)}to{transform:translate(92.412vw,99vh) scale(.258)}}.snow:nth-child(123){opacity:.7124;transform:translate(83.1536vw,-10px) scale(.5079);animation:fall-123 11s -2s linear infinite}@keyframes fall-123{34.072%{transform:translate(84.2381vw,34.072vh) scale(.5079)}to{transform:translate(83.69585vw,99vh) scale(.5079)}}.snow:nth-child(124){opacity:1.7652;transform:translate(31.9469vw,-10px) scale(.822);animation:fall-124 14s -9s linear infinite}@keyframes fall-124{66.493%{transform:translate(36.9271vw,66.493vh) scale(.822)}to{transform:translate(34.437vw,99vh) scale(.822)}}.snow:nth-child(125){opacity:.9638;transform:translate(42.2679vw,-10px) scale(.3012);animation:fall-125 20s -17s linear infinite}@keyframes fall-125{76.467%{transform:translate(43.5435vw,76.467vh) scale(.3012)}to{transform:translate(42.9057vw,99vh) scale(.3012)}}.snow:nth-child(126){opacity:.4954;transform:translate(78.3345vw,-10px) scale(.9522);animation:fall-126 15s -16s linear infinite}@keyframes fall-126{75.433%{transform:translate(81.4488vw,75.433vh) scale(.9522)}to{transform:translate(79.89165vw,99vh) scale(.9522)}}.snow:nth-child(127){opacity:1.9982;transform:translate(37.3128vw,-10px) scale(.1231);animation:fall-127 21s -10s linear infinite}@keyframes fall-127{43.356%{transform:translate(33.7848vw,43.356vh) scale(.1231)}to{transform:translate(35.5488vw,99vh) scale(.1231)}}.snow:nth-child(128){opacity:.0292;transform:translate(62.0181vw,-10px) scale(.9446);animation:fall-128 15s -11s linear infinite}@keyframes fall-128{39.665%{transform:translate(55.7327vw,39.665vh) scale(.9446)}to{transform:translate(58.8754vw,99vh) scale(.9446)}}.snow:nth-child(129){opacity:1.0816;transform:translate(51.0733vw,-10px) scale(.0352);animation:fall-129 25s -29s linear infinite}@keyframes fall-129{63.861%{transform:translate(48.9824vw,63.861vh) scale(.0352)}to{transform:translate(50.02785vw,99vh) scale(.0352)}}.snow:nth-child(130){opacity:.0786;transform:translate(83.0942vw,-10px) scale(.2912);animation:fall-130 30s -10s linear infinite}@keyframes fall-130{51.475%{transform:translate(91.077vw,51.475vh) scale(.2912)}to{transform:translate(87.0856vw,99vh) scale(.2912)}}.snow:nth-child(131){opacity:.02;transform:translate(46.833vw,-10px) scale(.766);animation:fall-131 20s -28s linear infinite}@keyframes fall-131{51.436%{transform:translate(53.6999vw,51.436vh) scale(.766)}to{transform:translate(50.26645vw,99vh) scale(.766)}}.snow:nth-child(132){opacity:.0326;transform:translate(22.9576vw,-10px) scale(.845);animation:fall-132 13s -26s linear infinite}@keyframes fall-132{57.101%{transform:translate(16.0865vw,57.101vh) scale(.845)}to{transform:translate(19.52205vw,99vh) scale(.845)}}.snow:nth-child(133){opacity:1.3978;transform:translate(74.9292vw,-10px) scale(.3367);animation:fall-133 21s -23s linear infinite}@keyframes fall-133{37.15%{transform:translate(67.3766vw,37.15vh) scale(.3367)}to{transform:translate(71.1529vw,99vh) scale(.3367)}}.snow:nth-child(134){opacity:1.7914;transform:translate(96.8068vw,-10px) scale(.2535);animation:fall-134 23s -15s linear infinite}@keyframes fall-134{30.399%{transform:translate(89.1602vw,30.399vh) scale(.2535)}to{transform:translate(92.9835vw,99vh) scale(.2535)}}.snow:nth-child(135){opacity:1.402;transform:translate(29.7414vw,-10px) scale(.5605);animation:fall-135 11s -17s linear infinite}@keyframes fall-135{58.802%{transform:translate(25.7955vw,58.802vh) scale(.5605)}to{transform:translate(27.76845vw,99vh) scale(.5605)}}.snow:nth-child(136){opacity:.7118;transform:translate(21.8828vw,-10px) scale(.8323);animation:fall-136 19s -4s linear infinite}@keyframes fall-136{63.268%{transform:translate(15.6686vw,63.268vh) scale(.8323)}to{transform:translate(18.7757vw,99vh) scale(.8323)}}.snow:nth-child(137){opacity:.9858;transform:translate(20.0581vw,-10px) scale(.2869);animation:fall-137 17s -25s linear infinite}@keyframes fall-137{43.61%{transform:translate(29.2817vw,43.61vh) scale(.2869)}to{transform:translate(24.6699vw,99vh) scale(.2869)}}.snow:nth-child(138){opacity:1.5808;transform:translate(73.0459vw,-10px) scale(.6673);animation:fall-138 17s -1s linear infinite}@keyframes fall-138{46.256%{transform:translate(75.376vw,46.256vh) scale(.6673)}to{transform:translate(74.21095vw,99vh) scale(.6673)}}.snow:nth-child(139){opacity:.4112;transform:translate(86.7296vw,-10px) scale(.1345);animation:fall-139 17s -13s linear infinite}@keyframes fall-139{45.295%{transform:translate(91.5016vw,45.295vh) scale(.1345)}to{transform:translate(89.1156vw,99vh) scale(.1345)}}.snow:nth-child(140){opacity:1.449;transform:translate(62.9533vw,-10px) scale(.2268);animation:fall-140 12s -26s linear infinite}@keyframes fall-140{42.838%{transform:translate(70.8473vw,42.838vh) scale(.2268)}to{transform:translate(66.9003vw,99vh) scale(.2268)}}.snow:nth-child(141){opacity:.8714;transform:translate(54.8529vw,-10px) scale(.7158);animation:fall-141 27s -15s linear infinite}@keyframes fall-141{51.008%{transform:translate(53.0291vw,51.008vh) scale(.7158)}to{transform:translate(53.941vw,99vh) scale(.7158)}}.snow:nth-child(142){opacity:1.369;transform:translate(52.5428vw,-10px) scale(.1146);animation:fall-142 19s -24s linear infinite}@keyframes fall-142{74.954%{transform:translate(43.216vw,74.954vh) scale(.1146)}to{transform:translate(47.8794vw,99vh) scale(.1146)}}.snow:nth-child(143){opacity:1.045;transform:translate(36.021vw,-10px) scale(.2564);animation:fall-143 24s -18s linear infinite}@keyframes fall-143{51.109%{transform:translate(40.7064vw,51.109vh) scale(.2564)}to{transform:translate(38.3637vw,99vh) scale(.2564)}}.snow:nth-child(144){opacity:1.0276;transform:translate(26.1142vw,-10px) scale(.4306);animation:fall-144 22s -1s linear infinite}@keyframes fall-144{56.926%{transform:translate(21.0942vw,56.926vh) scale(.4306)}to{transform:translate(23.6042vw,99vh) scale(.4306)}}.snow:nth-child(145){opacity:.9908;transform:translate(30.3395vw,-10px) scale(.0495);animation:fall-145 20s -9s linear infinite}@keyframes fall-145{36.786%{transform:translate(37.7647vw,36.786vh) scale(.0495)}to{transform:translate(34.0521vw,99vh) scale(.0495)}}.snow:nth-child(146){opacity:.6794;transform:translate(90.8662vw,-10px) scale(.0084);animation:fall-146 30s -26s linear infinite}@keyframes fall-146{74.899%{transform:translate(98.1211vw,74.899vh) scale(.0084)}to{transform:translate(94.49365vw,99vh) scale(.0084)}}.snow:nth-child(147){opacity:.6224;transform:translate(83.7256vw,-10px) scale(.5768);animation:fall-147 24s -14s linear infinite}@keyframes fall-147{56.4%{transform:translate(86.1289vw,56.4vh) scale(.5768)}to{transform:translate(84.92725vw,99vh) scale(.5768)}}.snow:nth-child(148){opacity:.6526;transform:translate(94.6917vw,-10px) scale(.7805);animation:fall-148 25s -6s linear infinite}@keyframes fall-148{46.479%{transform:translate(94.0079vw,46.479vh) scale(.7805)}to{transform:translate(94.3498vw,99vh) scale(.7805)}}.snow:nth-child(149){opacity:.0748;transform:translate(78.562vw,-10px) scale(.1711);animation:fall-149 23s -30s linear infinite}@keyframes fall-149{62.987%{transform:translate(77.2012vw,62.987vh) scale(.1711)}to{transform:translate(77.8816vw,99vh) scale(.1711)}}.snow:nth-child(150){opacity:1.9016;transform:translate(54.772vw,-10px) scale(.0593);animation:fall-150 28s -25s linear infinite}@keyframes fall-150{73.353%{transform:translate(54.2648vw,73.353vh) scale(.0593)}to{transform:translate(54.5184vw,99vh) scale(.0593)}}.snow:nth-child(151){opacity:1.33;transform:translate(.3005vw,-10px) scale(.0345);animation:fall-151 12s -3s linear infinite}@keyframes fall-151{33.563%{transform:translate(2.1218vw,33.563vh) scale(.0345)}to{transform:translate(1.21115vw,99vh) scale(.0345)}}.snow:nth-child(152){opacity:.2664;transform:translate(66.7598vw,-10px) scale(.0032);animation:fall-152 29s -25s linear infinite}@keyframes fall-152{68.679%{transform:translate(58.1801vw,68.679vh) scale(.0032)}to{transform:translate(62.46995vw,99vh) scale(.0032)}}.snow:nth-child(153){opacity:.4782;transform:translate(29.4609vw,-10px) scale(.8986);animation:fall-153 20s -4s linear infinite}@keyframes fall-153{42.803%{transform:translate(28.7713vw,42.803vh) scale(.8986)}to{transform:translate(29.1161vw,99vh) scale(.8986)}}.snow:nth-child(154){opacity:.068;transform:translate(58.3533vw,-10px) scale(.3554);animation:fall-154 17s -15s linear infinite}@keyframes fall-154{58.263%{transform:translate(66.0392vw,58.263vh) scale(.3554)}to{transform:translate(62.19625vw,99vh) scale(.3554)}}.snow:nth-child(155){opacity:1.8472;transform:translate(57.1857vw,-10px) scale(.9542);animation:fall-155 23s -6s linear infinite}@keyframes fall-155{35.451%{transform:translate(47.1922vw,35.451vh) scale(.9542)}to{transform:translate(52.18895vw,99vh) scale(.9542)}}.snow:nth-child(156){opacity:1.8468;transform:translate(73.3167vw,-10px) scale(.8542);animation:fall-156 20s -4s linear infinite}@keyframes fall-156{49.117%{transform:translate(67.7747vw,49.117vh) scale(.8542)}to{transform:translate(70.5457vw,99vh) scale(.8542)}}.snow:nth-child(157){opacity:.6976;transform:translate(91.4717vw,-10px) scale(.8248);animation:fall-157 10s -3s linear infinite}@keyframes fall-157{57.903%{transform:translate(95.2828vw,57.903vh) scale(.8248)}to{transform:translate(93.37725vw,99vh) scale(.8248)}}.snow:nth-child(158){opacity:.2544;transform:translate(46.9231vw,-10px) scale(.666);animation:fall-158 20s -16s linear infinite}@keyframes fall-158{63.955%{transform:translate(53.5106vw,63.955vh) scale(.666)}to{transform:translate(50.21685vw,99vh) scale(.666)}}.snow:nth-child(159){opacity:.0738;transform:translate(8.3323vw,-10px) scale(.9069);animation:fall-159 24s -13s linear infinite}@keyframes fall-159{64.152%{transform:translate(17.9558vw,64.152vh) scale(.9069)}to{transform:translate(13.14405vw,99vh) scale(.9069)}}.snow:nth-child(160){opacity:1.646;transform:translate(66.699vw,-10px) scale(.0768);animation:fall-160 17s -3s linear infinite}@keyframes fall-160{73.757%{transform:translate(71.8452vw,73.757vh) scale(.0768)}to{transform:translate(69.2721vw,99vh) scale(.0768)}}.snow:nth-child(161){opacity:.817;transform:translate(48.944vw,-10px) scale(.3256);animation:fall-161 19s -25s linear infinite}@keyframes fall-161{70.958%{transform:translate(51.1409vw,70.958vh) scale(.3256)}to{transform:translate(50.04245vw,99vh) scale(.3256)}}.snow:nth-child(162){opacity:1.7866;transform:translate(57.736vw,-10px) scale(.5396);animation:fall-162 27s -2s linear infinite}@keyframes fall-162{30.622%{transform:translate(56.2639vw,30.622vh) scale(.5396)}to{transform:translate(56.99995vw,99vh) scale(.5396)}}.snow:nth-child(163){opacity:1.5196;transform:translate(95.8385vw,-10px) scale(.2765);animation:fall-163 24s -23s linear infinite}@keyframes fall-163{51.407%{transform:translate(105.1005vw,51.407vh) scale(.2765)}to{transform:translate(100.4695vw,99vh) scale(.2765)}}.snow:nth-child(164){opacity:1.7428;transform:translate(96.1096vw,-10px) scale(.3539);animation:fall-164 11s -15s linear infinite}@keyframes fall-164{38.308%{transform:translate(91.4171vw,38.308vh) scale(.3539)}to{transform:translate(93.76335vw,99vh) scale(.3539)}}.snow:nth-child(165){opacity:.053;transform:translate(8.6263vw,-10px) scale(.2379);animation:fall-165 15s -9s linear infinite}@keyframes fall-165{31.901%{transform:translate(17.2985vw,31.901vh) scale(.2379)}to{transform:translate(12.9624vw,99vh) scale(.2379)}}.snow:nth-child(166){opacity:.5684;transform:translate(73.309vw,-10px) scale(.6475);animation:fall-166 22s -23s linear infinite}@keyframes fall-166{61.921%{transform:translate(80.7084vw,61.921vh) scale(.6475)}to{transform:translate(77.0087vw,99vh) scale(.6475)}}.snow:nth-child(167){opacity:1.6252;transform:translate(82.1136vw,-10px) scale(.5619);animation:fall-167 28s -11s linear infinite}@keyframes fall-167{49.663%{transform:translate(89.9493vw,49.663vh) scale(.5619)}to{transform:translate(86.03145vw,99vh) scale(.5619)}}.snow:nth-child(168){opacity:1.2226;transform:translate(24.4188vw,-10px) scale(.001);animation:fall-168 17s -12s linear infinite}@keyframes fall-168{37.318%{transform:translate(31.9692vw,37.318vh) scale(.001)}to{transform:translate(28.194vw,99vh) scale(.001)}}.snow:nth-child(169){opacity:.272;transform:translate(18.3756vw,-10px) scale(.1695);animation:fall-169 15s -4s linear infinite}@keyframes fall-169{65.564%{transform:translate(16.4346vw,65.564vh) scale(.1695)}to{transform:translate(17.4051vw,99vh) scale(.1695)}}.snow:nth-child(170){opacity:1.8062;transform:translate(50.8899vw,-10px) scale(.6306);animation:fall-170 19s -22s linear infinite}@keyframes fall-170{59.555%{transform:translate(56.7026vw,59.555vh) scale(.6306)}to{transform:translate(53.79625vw,99vh) scale(.6306)}}.snow:nth-child(171){opacity:.9126;transform:translate(24.0266vw,-10px) scale(.8393);animation:fall-171 12s -6s linear infinite}@keyframes fall-171{32.27%{transform:translate(33.5525vw,32.27vh) scale(.8393)}to{transform:translate(28.78955vw,99vh) scale(.8393)}}.snow:nth-child(172){opacity:1.981;transform:translate(11.453vw,-10px) scale(.1911);animation:fall-172 16s -27s linear infinite}@keyframes fall-172{39.368%{transform:translate(16.4844vw,39.368vh) scale(.1911)}to{transform:translate(13.9687vw,99vh) scale(.1911)}}.snow:nth-child(173){opacity:.7486;transform:translate(10.2033vw,-10px) scale(.8948);animation:fall-173 26s -7s linear infinite}@keyframes fall-173{74.651%{transform:translate(3.2813vw,74.651vh) scale(.8948)}to{transform:translate(6.7423vw,99vh) scale(.8948)}}.snow:nth-child(174){opacity:1.8846;transform:translate(77.7718vw,-10px) scale(.091);animation:fall-174 18s -22s linear infinite}@keyframes fall-174{42.352%{transform:translate(76.7626vw,42.352vh) scale(.091)}to{transform:translate(77.2672vw,99vh) scale(.091)}}.snow:nth-child(175){opacity:.1938;transform:translate(6.523vw,-10px) scale(.0721);animation:fall-175 15s -4s linear infinite}@keyframes fall-175{50.41%{transform:translate(-.7825vw,50.41vh) scale(.0721)}to{transform:translate(2.87025vw,99vh) scale(.0721)}}.snow:nth-child(176){opacity:.8318;transform:translate(19.8167vw,-10px) scale(.7187);animation:fall-176 19s -7s linear infinite}@keyframes fall-176{74.985%{transform:translate(18.3858vw,74.985vh) scale(.7187)}to{transform:translate(19.10125vw,99vh) scale(.7187)}}.snow:nth-child(177){opacity:.5088;transform:translate(14.2964vw,-10px) scale(.359);animation:fall-177 24s -10s linear infinite}@keyframes fall-177{36.872%{transform:translate(18.4504vw,36.872vh) scale(.359)}to{transform:translate(16.3734vw,99vh) scale(.359)}}.snow:nth-child(178){opacity:.4664;transform:translate(86.7576vw,-10px) scale(.7654);animation:fall-178 17s -20s linear infinite}@keyframes fall-178{30.93%{transform:translate(79.9625vw,30.93vh) scale(.7654)}to{transform:translate(83.36005vw,99vh) scale(.7654)}}.snow:nth-child(179){opacity:1.5042;transform:translate(70.7707vw,-10px) scale(.6818);animation:fall-179 12s -10s linear infinite}@keyframes fall-179{54.891%{transform:translate(62.3595vw,54.891vh) scale(.6818)}to{transform:translate(66.5651vw,99vh) scale(.6818)}}.snow:nth-child(180){opacity:1.5492;transform:translate(3.5052vw,-10px) scale(.7517);animation:fall-180 16s -5s linear infinite}@keyframes fall-180{43.128%{transform:translate(-4.4965vw,43.128vh) scale(.7517)}to{transform:translate(-.49565vw,99vh) scale(.7517)}}.snow:nth-child(181){opacity:1.0796;transform:translate(17.4455vw,-10px) scale(.8902);animation:fall-181 25s -27s linear infinite}@keyframes fall-181{50.066%{transform:translate(14.2564vw,50.066vh) scale(.8902)}to{transform:translate(15.85095vw,99vh) scale(.8902)}}.snow:nth-child(182){opacity:1.3834;transform:translate(27.4942vw,-10px) scale(.5042);animation:fall-182 30s -25s linear infinite}@keyframes fall-182{35.533%{transform:translate(27.7109vw,35.533vh) scale(.5042)}to{transform:translate(27.60255vw,99vh) scale(.5042)}}.snow:nth-child(183){opacity:.0884;transform:translate(99.022vw,-10px) scale(.8681);animation:fall-183 11s -3s linear infinite}@keyframes fall-183{39.38%{transform:translate(89.4288vw,39.38vh) scale(.8681)}to{transform:translate(94.2254vw,99vh) scale(.8681)}}.snow:nth-child(184){opacity:1.5374;transform:translate(36.6247vw,-10px) scale(.1724);animation:fall-184 23s -29s linear infinite}@keyframes fall-184{73.567%{transform:translate(42.4556vw,73.567vh) scale(.1724)}to{transform:translate(39.54015vw,99vh) scale(.1724)}}.snow:nth-child(185){opacity:.468;transform:translate(59.008vw,-10px) scale(.2676);animation:fall-185 28s -10s linear infinite}@keyframes fall-185{65.108%{transform:translate(49.28vw,65.108vh) scale(.2676)}to{transform:translate(54.144vw,99vh) scale(.2676)}}.snow:nth-child(186){opacity:.7356;transform:translate(71.8686vw,-10px) scale(.8895);animation:fall-186 17s -16s linear infinite}@keyframes fall-186{42.759%{transform:translate(68.4387vw,42.759vh) scale(.8895)}to{transform:translate(70.15365vw,99vh) scale(.8895)}}.snow:nth-child(187){opacity:.2278;transform:translate(33.6155vw,-10px) scale(.3593);animation:fall-187 26s -3s linear infinite}@keyframes fall-187{67.691%{transform:translate(30.0174vw,67.691vh) scale(.3593)}to{transform:translate(31.81645vw,99vh) scale(.3593)}}.snow:nth-child(188){opacity:.039;transform:translate(33.146vw,-10px) scale(.6059);animation:fall-188 25s -22s linear infinite}@keyframes fall-188{33.212%{transform:translate(34.0165vw,33.212vh) scale(.6059)}to{transform:translate(33.58125vw,99vh) scale(.6059)}}.snow:nth-child(189){opacity:1.0354;transform:translate(97.8738vw,-10px) scale(.2355);animation:fall-189 22s -14s linear infinite}@keyframes fall-189{54.086%{transform:translate(93.6209vw,54.086vh) scale(.2355)}to{transform:translate(95.74735vw,99vh) scale(.2355)}}.snow:nth-child(190){opacity:1.135;transform:translate(1.7861vw,-10px) scale(.6524);animation:fall-190 30s -17s linear infinite}@keyframes fall-190{55.065%{transform:translate(-2.1138vw,55.065vh) scale(.6524)}to{transform:translate(-.16385vw,99vh) scale(.6524)}}.snow:nth-child(191){opacity:1.7266;transform:translate(54.2634vw,-10px) scale(.5502);animation:fall-191 25s -7s linear infinite}@keyframes fall-191{78.779%{transform:translate(50.9447vw,78.779vh) scale(.5502)}to{transform:translate(52.60405vw,99vh) scale(.5502)}}.snow:nth-child(192){opacity:.6356;transform:translate(51.3514vw,-10px) scale(.7029);animation:fall-192 21s -19s linear infinite}@keyframes fall-192{78.929%{transform:translate(45.2041vw,78.929vh) scale(.7029)}to{transform:translate(48.27775vw,99vh) scale(.7029)}}.snow:nth-child(193){opacity:1.2832;transform:translate(61.577vw,-10px) scale(.6345);animation:fall-193 23s -16s linear infinite}@keyframes fall-193{69.092%{transform:translate(59.0518vw,69.092vh) scale(.6345)}to{transform:translate(60.3144vw,99vh) scale(.6345)}}.snow:nth-child(194){opacity:1.7328;transform:translate(94.9481vw,-10px) scale(.8046);animation:fall-194 20s -7s linear infinite}@keyframes fall-194{71.428%{transform:translate(99.7398vw,71.428vh) scale(.8046)}to{transform:translate(97.34395vw,99vh) scale(.8046)}}.snow:nth-child(195){opacity:.7218;transform:translate(43.2197vw,-10px) scale(.9324);animation:fall-195 13s -2s linear infinite}@keyframes fall-195{61.575%{transform:translate(35.5695vw,61.575vh) scale(.9324)}to{transform:translate(39.3946vw,99vh) scale(.9324)}}.snow:nth-child(196){opacity:.5306;transform:translate(27.039vw,-10px) scale(.9091);animation:fall-196 15s -9s linear infinite}@keyframes fall-196{54.895%{transform:translate(27.3525vw,54.895vh) scale(.9091)}to{transform:translate(27.19575vw,99vh) scale(.9091)}}.snow:nth-child(197){opacity:1.8756;transform:translate(67.9101vw,-10px) scale(.9512);animation:fall-197 10s -16s linear infinite}@keyframes fall-197{72.685%{transform:translate(66.2812vw,72.685vh) scale(.9512)}to{transform:translate(67.09565vw,99vh) scale(.9512)}}.snow:nth-child(198){opacity:1.6182;transform:translate(65.5519vw,-10px) scale(.721);animation:fall-198 28s -22s linear infinite}@keyframes fall-198{52.028%{transform:translate(61.9695vw,52.028vh) scale(.721)}to{transform:translate(63.7607vw,99vh) scale(.721)}}.snow:nth-child(199){opacity:1.703;transform:translate(24.9633vw,-10px) scale(.1479);animation:fall-199 29s -10s linear infinite}@keyframes fall-199{37.467%{transform:translate(26.9552vw,37.467vh) scale(.1479)}to{transform:translate(25.95925vw,99vh) scale(.1479)}}.snow:nth-child(200){opacity:1.5102;transform:translate(1.9789vw,-10px) scale(.7818);animation:fall-200 21s -2s linear infinite}@keyframes fall-200{37.469%{transform:translate(-1.479vw,37.469vh) scale(.7818)}to{transform:translate(.24995vw,99vh) scale(.7818)}}.snow:nth-child(201){opacity:1.3622;transform:translate(81.7555vw,-10px) scale(.3757);animation:fall-201 15s -5s linear infinite}@keyframes fall-201{72.178%{transform:translate(90.9216vw,72.178vh) scale(.3757)}to{transform:translate(86.33855vw,99vh) scale(.3757)}}.snow:nth-child(202){opacity:.605;transform:translate(38.8858vw,-10px) scale(.8795);animation:fall-202 24s -14s linear infinite}@keyframes fall-202{60.534%{transform:translate(43.9756vw,60.534vh) scale(.8795)}to{transform:translate(41.4307vw,99vh) scale(.8795)}}.snow:nth-child(203){opacity:1.972;transform:translate(99.9903vw,-10px) scale(.9163);animation:fall-203 16s -21s linear infinite}@keyframes fall-203{67.481%{transform:translate(108.5621vw,67.481vh) scale(.9163)}to{transform:translate(104.2762vw,99vh) scale(.9163)}}.snow:nth-child(204){opacity:1.0936;transform:translate(84.4329vw,-10px) scale(.9088);animation:fall-204 20s -20s linear infinite}@keyframes fall-204{62.427%{transform:translate(92.4573vw,62.427vh) scale(.9088)}to{transform:translate(88.4451vw,99vh) scale(.9088)}}.snow:nth-child(205){opacity:.8288;transform:translate(53.6452vw,-10px) scale(.5773);animation:fall-205 27s -18s linear infinite}@keyframes fall-205{74.059%{transform:translate(48.7447vw,74.059vh) scale(.5773)}to{transform:translate(51.19495vw,99vh) scale(.5773)}}.snow:nth-child(206){opacity:.8784;transform:translate(17.382vw,-10px) scale(.8515);animation:fall-206 22s -11s linear infinite}@keyframes fall-206{35.89%{transform:translate(8.0042vw,35.89vh) scale(.8515)}to{transform:translate(12.6931vw,99vh) scale(.8515)}}.snow:nth-child(207){opacity:1.6768;transform:translate(93.6664vw,-10px) scale(.7767);animation:fall-207 10s -28s linear infinite}@keyframes fall-207{64.169%{transform:translate(94.0003vw,64.169vh) scale(.7767)}to{transform:translate(93.83335vw,99vh) scale(.7767)}}.snow:nth-child(208){opacity:1.3022;transform:translate(75.8937vw,-10px) scale(.919);animation:fall-208 14s -30s linear infinite}@keyframes fall-208{79.275%{transform:translate(76.2459vw,79.275vh) scale(.919)}to{transform:translate(76.0698vw,99vh) scale(.919)}}.snow:nth-child(209){opacity:1.918;transform:translate(27.7235vw,-10px) scale(.5966);animation:fall-209 19s -6s linear infinite}@keyframes fall-209{53.489%{transform:translate(24.6069vw,53.489vh) scale(.5966)}to{transform:translate(26.1652vw,99vh) scale(.5966)}}.snow:nth-child(210){opacity:.1556;transform:translate(20.0607vw,-10px) scale(.6578);animation:fall-210 11s -21s linear infinite}@keyframes fall-210{74.589%{transform:translate(10.2775vw,74.589vh) scale(.6578)}to{transform:translate(15.1691vw,99vh) scale(.6578)}}.snow:nth-child(211){opacity:1.9836;transform:translate(79.0262vw,-10px) scale(.99);animation:fall-211 11s -20s linear infinite}@keyframes fall-211{33.992%{transform:translate(74.6929vw,33.992vh) scale(.99)}to{transform:translate(76.85955vw,99vh) scale(.99)}}.snow:nth-child(212){opacity:.3176;transform:translate(66.0528vw,-10px) scale(.0672);animation:fall-212 20s -24s linear infinite}@keyframes fall-212{42.457%{transform:translate(56.9261vw,42.457vh) scale(.0672)}to{transform:translate(61.48945vw,99vh) scale(.0672)}}.snow:nth-child(213){opacity:.551;transform:translate(97.9979vw,-10px) scale(.2725);animation:fall-213 15s -12s linear infinite}@keyframes fall-213{79.272%{transform:translate(96.7181vw,79.272vh) scale(.2725)}to{transform:translate(97.358vw,99vh) scale(.2725)}}.snow:nth-child(214){opacity:.5678;transform:translate(61.2296vw,-10px) scale(.0114);animation:fall-214 23s -24s linear infinite}@keyframes fall-214{33.146%{transform:translate(64.3004vw,33.146vh) scale(.0114)}to{transform:translate(62.765vw,99vh) scale(.0114)}}.snow:nth-child(215){opacity:.2928;transform:translate(68.6421vw,-10px) scale(.2578);animation:fall-215 24s -5s linear infinite}@keyframes fall-215{69.492%{transform:translate(69.6323vw,69.492vh) scale(.2578)}to{transform:translate(69.1372vw,99vh) scale(.2578)}}.snow:nth-child(216){opacity:1.1858;transform:translate(22.8531vw,-10px) scale(.2796);animation:fall-216 23s -2s linear infinite}@keyframes fall-216{69.695%{transform:translate(28.8522vw,69.695vh) scale(.2796)}to{transform:translate(25.85265vw,99vh) scale(.2796)}}.snow:nth-child(217){opacity:1.6372;transform:translate(60.8144vw,-10px) scale(.1918);animation:fall-217 30s -13s linear infinite}@keyframes fall-217{46.992%{transform:translate(58.7039vw,46.992vh) scale(.1918)}to{transform:translate(59.75915vw,99vh) scale(.1918)}}.snow:nth-child(218){opacity:.1502;transform:translate(46.4421vw,-10px) scale(.7517);animation:fall-218 17s -29s linear infinite}@keyframes fall-218{31.048%{transform:translate(51.7042vw,31.048vh) scale(.7517)}to{transform:translate(49.07315vw,99vh) scale(.7517)}}.snow:nth-child(219){opacity:.333;transform:translate(59.2917vw,-10px) scale(.5322);animation:fall-219 10s -5s linear infinite}@keyframes fall-219{53.775%{transform:translate(68.646vw,53.775vh) scale(.5322)}to{transform:translate(63.96885vw,99vh) scale(.5322)}}.snow:nth-child(220){opacity:.9598;transform:translate(93.1106vw,-10px) scale(.2185);animation:fall-220 21s -22s linear infinite}@keyframes fall-220{60.884%{transform:translate(102.9541vw,60.884vh) scale(.2185)}to{transform:translate(98.03235vw,99vh) scale(.2185)}}.snow:nth-child(221){opacity:.9964;transform:translate(31.4077vw,-10px) scale(.8054);animation:fall-221 21s -30s linear infinite}@keyframes fall-221{60.995%{transform:translate(27.3233vw,60.995vh) scale(.8054)}to{transform:translate(29.3655vw,99vh) scale(.8054)}}.snow:nth-child(222){opacity:.6984;transform:translate(6.3336vw,-10px) scale(.102);animation:fall-222 28s -24s linear infinite}@keyframes fall-222{38.917%{transform:translate(12.2222vw,38.917vh) scale(.102)}to{transform:translate(9.2779vw,99vh) scale(.102)}}.snow:nth-child(223){opacity:1.9738;transform:translate(4.4609vw,-10px) scale(.1183);animation:fall-223 17s -5s linear infinite}@keyframes fall-223{32.74%{transform:translate(9.8848vw,32.74vh) scale(.1183)}to{transform:translate(7.17285vw,99vh) scale(.1183)}}.snow:nth-child(224){opacity:1.0986;transform:translate(63.8765vw,-10px) scale(.1659);animation:fall-224 22s -21s linear infinite}@keyframes fall-224{68.489%{transform:translate(68.8008vw,68.489vh) scale(.1659)}to{transform:translate(66.33865vw,99vh) scale(.1659)}}.snow:nth-child(225){opacity:.63;transform:translate(49.0059vw,-10px) scale(.9036);animation:fall-225 25s -25s linear infinite}@keyframes fall-225{62.098%{transform:translate(44.1283vw,62.098vh) scale(.9036)}to{transform:translate(46.5671vw,99vh) scale(.9036)}}.snow:nth-child(226){opacity:1.7514;transform:translate(45.6916vw,-10px) scale(.4496);animation:fall-226 14s -4s linear infinite}@keyframes fall-226{71.833%{transform:translate(42.1301vw,71.833vh) scale(.4496)}to{transform:translate(43.91085vw,99vh) scale(.4496)}}.snow:nth-child(227){opacity:.6294;transform:translate(22.2735vw,-10px) scale(.1052);animation:fall-227 14s -8s linear infinite}@keyframes fall-227{52.878%{transform:translate(24.5026vw,52.878vh) scale(.1052)}to{transform:translate(23.38805vw,99vh) scale(.1052)}}.snow:nth-child(228){opacity:1.787;transform:translate(75.8699vw,-10px) scale(.701);animation:fall-228 22s -6s linear infinite}@keyframes fall-228{75.193%{transform:translate(70.82vw,75.193vh) scale(.701)}to{transform:translate(73.34495vw,99vh) scale(.701)}}.snow:nth-child(229){opacity:1.916;transform:translate(92.3443vw,-10px) scale(.6249);animation:fall-229 17s -18s linear infinite}@keyframes fall-229{57.562%{transform:translate(90.5363vw,57.562vh) scale(.6249)}to{transform:translate(91.4403vw,99vh) scale(.6249)}}.snow:nth-child(230){opacity:1.4948;transform:translate(51.3963vw,-10px) scale(.0911);animation:fall-230 25s -16s linear infinite}@keyframes fall-230{32.609%{transform:translate(54.051vw,32.609vh) scale(.0911)}to{transform:translate(52.72365vw,99vh) scale(.0911)}}.snow:nth-child(231){opacity:.4274;transform:translate(27.2971vw,-10px) scale(.2335);animation:fall-231 20s -18s linear infinite}@keyframes fall-231{37.87%{transform:translate(34.0979vw,37.87vh) scale(.2335)}to{transform:translate(30.6975vw,99vh) scale(.2335)}}.snow:nth-child(232){opacity:.6076;transform:translate(30.015vw,-10px) scale(.5681);animation:fall-232 23s -24s linear infinite}@keyframes fall-232{48.544%{transform:translate(34.2985vw,48.544vh) scale(.5681)}to{transform:translate(32.15675vw,99vh) scale(.5681)}}.snow:nth-child(233){opacity:1.0852;transform:translate(92.4091vw,-10px) scale(.9056);animation:fall-233 23s -12s linear infinite}@keyframes fall-233{58.226%{transform:translate(99.5347vw,58.226vh) scale(.9056)}to{transform:translate(95.9719vw,99vh) scale(.9056)}}.snow:nth-child(234){opacity:.663;transform:translate(18.7298vw,-10px) scale(.9744);animation:fall-234 15s -15s linear infinite}@keyframes fall-234{49.711%{transform:translate(22.4269vw,49.711vh) scale(.9744)}to{transform:translate(20.57835vw,99vh) scale(.9744)}}.snow:nth-child(235){opacity:.4656;transform:translate(37.4468vw,-10px) scale(.1384);animation:fall-235 29s -18s linear infinite}@keyframes fall-235{75.773%{transform:translate(38.8322vw,75.773vh) scale(.1384)}to{transform:translate(38.1395vw,99vh) scale(.1384)}}.snow:nth-child(236){opacity:.325;transform:translate(49.2284vw,-10px) scale(.3436);animation:fall-236 28s -15s linear infinite}@keyframes fall-236{58.282%{transform:translate(49.5913vw,58.282vh) scale(.3436)}to{transform:translate(49.40985vw,99vh) scale(.3436)}}.snow:nth-child(237){opacity:.1136;transform:translate(69.8056vw,-10px) scale(.943);animation:fall-237 29s -4s linear infinite}@keyframes fall-237{32.891%{transform:translate(63.2707vw,32.891vh) scale(.943)}to{transform:translate(66.53815vw,99vh) scale(.943)}}.snow:nth-child(238){opacity:1.1394;transform:translate(76.324vw,-10px) scale(.5613);animation:fall-238 11s -5s linear infinite}@keyframes fall-238{74.872%{transform:translate(67.8157vw,74.872vh) scale(.5613)}to{transform:translate(72.06985vw,99vh) scale(.5613)}}.snow:nth-child(239){opacity:.0474;transform:translate(45.4584vw,-10px) scale(.0907);animation:fall-239 17s -30s linear infinite}@keyframes fall-239{60.766%{transform:translate(38.0468vw,60.766vh) scale(.0907)}to{transform:translate(41.7526vw,99vh) scale(.0907)}}.snow:nth-child(240){opacity:.8062;transform:translate(67.8135vw,-10px) scale(.945);animation:fall-240 16s -29s linear infinite}@keyframes fall-240{75.948%{transform:translate(69.3007vw,75.948vh) scale(.945)}to{transform:translate(68.5571vw,99vh) scale(.945)}}.snow:nth-child(241){opacity:.9836;transform:translate(48.2091vw,-10px) scale(.0618);animation:fall-241 22s -25s linear infinite}@keyframes fall-241{37.615%{transform:translate(41.8731vw,37.615vh) scale(.0618)}to{transform:translate(45.0411vw,99vh) scale(.0618)}}.snow:nth-child(242){opacity:.6342;transform:translate(59.0357vw,-10px) scale(.0363);animation:fall-242 29s -9s linear infinite}@keyframes fall-242{69.406%{transform:translate(58.0904vw,69.406vh) scale(.0363)}to{transform:translate(58.56305vw,99vh) scale(.0363)}}.snow:nth-child(243){opacity:.354;transform:translate(64.2324vw,-10px) scale(.0283);animation:fall-243 15s -15s linear infinite}@keyframes fall-243{69.903%{transform:translate(56.7407vw,69.903vh) scale(.0283)}to{transform:translate(60.48655vw,99vh) scale(.0283)}}.snow:nth-child(244){opacity:.8266;transform:translate(77.3778vw,-10px) scale(.6659);animation:fall-244 29s -19s linear infinite}@keyframes fall-244{50.151%{transform:translate(74.1352vw,50.151vh) scale(.6659)}to{transform:translate(75.7565vw,99vh) scale(.6659)}}.snow:nth-child(245){opacity:1.8204;transform:translate(39.64vw,-10px) scale(.9517);animation:fall-245 15s -3s linear infinite}@keyframes fall-245{37.904%{transform:translate(42.9512vw,37.904vh) scale(.9517)}to{transform:translate(41.2956vw,99vh) scale(.9517)}}.snow:nth-child(246){opacity:1.6698;transform:translate(54.6775vw,-10px) scale(.2919);animation:fall-246 19s -30s linear infinite}@keyframes fall-246{49.09%{transform:translate(48.0699vw,49.09vh) scale(.2919)}to{transform:translate(51.3737vw,99vh) scale(.2919)}}.snow:nth-child(247){opacity:.8066;transform:translate(76.5256vw,-10px) scale(.3636);animation:fall-247 21s -5s linear infinite}@keyframes fall-247{42.194%{transform:translate(78.3266vw,42.194vh) scale(.3636)}to{transform:translate(77.4261vw,99vh) scale(.3636)}}.snow:nth-child(248){opacity:.1334;transform:translate(34.5289vw,-10px) scale(.0451);animation:fall-248 19s -5s linear infinite}@keyframes fall-248{54.808%{transform:translate(35.0728vw,54.808vh) scale(.0451)}to{transform:translate(34.80085vw,99vh) scale(.0451)}}.snow:nth-child(249){opacity:1.7782;transform:translate(34.4844vw,-10px) scale(.7737);animation:fall-249 15s -5s linear infinite}@keyframes fall-249{52.606%{transform:translate(42.759vw,52.606vh) scale(.7737)}to{transform:translate(38.6217vw,99vh) scale(.7737)}}.snow:nth-child(250){opacity:1.8442;transform:translate(74.6073vw,-10px) scale(.7481);animation:fall-250 14s -7s linear infinite}@keyframes fall-250{52.316%{transform:translate(81.1509vw,52.316vh) scale(.7481)}to{transform:translate(77.8791vw,99vh) scale(.7481)}}.snow:nth-child(251){opacity:1.3832;transform:translate(49.6706vw,-10px) scale(.6655);animation:fall-251 13s -24s linear infinite}@keyframes fall-251{44.38%{transform:translate(45.3874vw,44.38vh) scale(.6655)}to{transform:translate(47.529vw,99vh) scale(.6655)}}.snow:nth-child(252){opacity:1.9536;transform:translate(50.4659vw,-10px) scale(.7548);animation:fall-252 16s -17s linear infinite}@keyframes fall-252{33.659%{transform:translate(48.0905vw,33.659vh) scale(.7548)}to{transform:translate(49.2782vw,99vh) scale(.7548)}}.snow:nth-child(253){opacity:.1574;transform:translate(17.5062vw,-10px) scale(.7043);animation:fall-253 12s -25s linear infinite}@keyframes fall-253{63.794%{transform:translate(8.2974vw,63.794vh) scale(.7043)}to{transform:translate(12.9018vw,99vh) scale(.7043)}}.snow:nth-child(254){opacity:1.6156;transform:translate(26.0274vw,-10px) scale(.857);animation:fall-254 24s -30s linear infinite}@keyframes fall-254{68.247%{transform:translate(20.5948vw,68.247vh) scale(.857)}to{transform:translate(23.3111vw,99vh) scale(.857)}}.snow:nth-child(255){opacity:.786;transform:translate(85.0217vw,-10px) scale(.0126);animation:fall-255 11s -12s linear infinite}@keyframes fall-255{57.261%{transform:translate(77.9018vw,57.261vh) scale(.0126)}to{transform:translate(81.46175vw,99vh) scale(.0126)}}.snow:nth-child(256){opacity:1.9202;transform:translate(21.8037vw,-10px) scale(.3294);animation:fall-256 13s -23s linear infinite}@keyframes fall-256{68.644%{transform:translate(18.2711vw,68.644vh) scale(.3294)}to{transform:translate(20.0374vw,99vh) scale(.3294)}}.snow:nth-child(257){opacity:.1098;transform:translate(79.9283vw,-10px) scale(.4251);animation:fall-257 25s -10s linear infinite}@keyframes fall-257{44.957%{transform:translate(80.6573vw,44.957vh) scale(.4251)}to{transform:translate(80.2928vw,99vh) scale(.4251)}}.snow:nth-child(258){opacity:1.4636;transform:translate(79.1722vw,-10px) scale(.1828);animation:fall-258 22s -11s linear infinite}@keyframes fall-258{63.988%{transform:translate(70.9568vw,63.988vh) scale(.1828)}to{transform:translate(75.0645vw,99vh) scale(.1828)}}.snow:nth-child(259){opacity:.4848;transform:translate(85.6726vw,-10px) scale(.2941);animation:fall-259 14s -14s linear infinite}@keyframes fall-259{79.598%{transform:translate(92.9644vw,79.598vh) scale(.2941)}to{transform:translate(89.3185vw,99vh) scale(.2941)}}.snow:nth-child(260){opacity:1.8784;transform:translate(52.0861vw,-10px) scale(.9058);animation:fall-260 19s -16s linear infinite}@keyframes fall-260{38.172%{transform:translate(44.8338vw,38.172vh) scale(.9058)}to{transform:translate(48.45995vw,99vh) scale(.9058)}}.snow:nth-child(261){opacity:.0056;transform:translate(95.2538vw,-10px) scale(.5932);animation:fall-261 12s -15s linear infinite}@keyframes fall-261{75.439%{transform:translate(90.0346vw,75.439vh) scale(.5932)}to{transform:translate(92.6442vw,99vh) scale(.5932)}}.snow:nth-child(262){opacity:1.405;transform:translate(58.3408vw,-10px) scale(.0401);animation:fall-262 14s -28s linear infinite}@keyframes fall-262{51.114%{transform:translate(48.9235vw,51.114vh) scale(.0401)}to{transform:translate(53.63215vw,99vh) scale(.0401)}}.snow:nth-child(263){opacity:.9738;transform:translate(57.996vw,-10px) scale(.3846);animation:fall-263 17s -30s linear infinite}@keyframes fall-263{68.548%{transform:translate(66.2578vw,68.548vh) scale(.3846)}to{transform:translate(62.1269vw,99vh) scale(.3846)}}.snow:nth-child(264){opacity:1.6522;transform:translate(40.791vw,-10px) scale(.7746);animation:fall-264 13s -7s linear infinite}@keyframes fall-264{63.667%{transform:translate(48.2584vw,63.667vh) scale(.7746)}to{transform:translate(44.5247vw,99vh) scale(.7746)}}.snow:nth-child(265){opacity:.5482;transform:translate(15.936vw,-10px) scale(.6367);animation:fall-265 25s -25s linear infinite}@keyframes fall-265{57.895%{transform:translate(11.5604vw,57.895vh) scale(.6367)}to{transform:translate(13.7482vw,99vh) scale(.6367)}}.snow:nth-child(266){opacity:1.675;transform:translate(60.2492vw,-10px) scale(.6983);animation:fall-266 28s -21s linear infinite}@keyframes fall-266{43.985%{transform:translate(54.5185vw,43.985vh) scale(.6983)}to{transform:translate(57.38385vw,99vh) scale(.6983)}}.snow:nth-child(267){opacity:.867;transform:translate(43.5978vw,-10px) scale(.4109);animation:fall-267 13s -11s linear infinite}@keyframes fall-267{35.786%{transform:translate(35.2362vw,35.786vh) scale(.4109)}to{transform:translate(39.417vw,99vh) scale(.4109)}}.snow:nth-child(268){opacity:.325;transform:translate(19.4817vw,-10px) scale(.7597);animation:fall-268 15s -29s linear infinite}@keyframes fall-268{37.963%{transform:translate(21.7233vw,37.963vh) scale(.7597)}to{transform:translate(20.6025vw,99vh) scale(.7597)}}.snow:nth-child(269){opacity:.231;transform:translate(86.6369vw,-10px) scale(.1306);animation:fall-269 10s -21s linear infinite}@keyframes fall-269{47.173%{transform:translate(95.9981vw,47.173vh) scale(.1306)}to{transform:translate(91.3175vw,99vh) scale(.1306)}}.snow:nth-child(270){opacity:1.67;transform:translate(76.3722vw,-10px) scale(.3711);animation:fall-270 29s -1s linear infinite}@keyframes fall-270{37.948%{transform:translate(71.0236vw,37.948vh) scale(.3711)}to{transform:translate(73.6979vw,99vh) scale(.3711)}}.snow:nth-child(271){opacity:1.6136;transform:translate(98.0244vw,-10px) scale(.9281);animation:fall-271 21s -12s linear infinite}@keyframes fall-271{74.774%{transform:translate(103.6814vw,74.774vh) scale(.9281)}to{transform:translate(100.8529vw,99vh) scale(.9281)}}.snow:nth-child(272){opacity:.5236;transform:translate(67.9272vw,-10px) scale(.7997);animation:fall-272 16s -5s linear infinite}@keyframes fall-272{34.21%{transform:translate(74.6765vw,34.21vh) scale(.7997)}to{transform:translate(71.30185vw,99vh) scale(.7997)}}.snow:nth-child(273){opacity:1.2566;transform:translate(89.3944vw,-10px) scale(.2646);animation:fall-273 21s -2s linear infinite}@keyframes fall-273{51.837%{transform:translate(90.2733vw,51.837vh) scale(.2646)}to{transform:translate(89.83385vw,99vh) scale(.2646)}}.snow:nth-child(274){opacity:.3604;transform:translate(81.1838vw,-10px) scale(.1364);animation:fall-274 26s -26s linear infinite}@keyframes fall-274{32.43%{transform:translate(79.9654vw,32.43vh) scale(.1364)}to{transform:translate(80.5746vw,99vh) scale(.1364)}}.snow:nth-child(275){opacity:1.2318;transform:translate(54.2694vw,-10px) scale(.6737);animation:fall-275 30s -3s linear infinite}@keyframes fall-275{50.556%{transform:translate(54.7793vw,50.556vh) scale(.6737)}to{transform:translate(54.52435vw,99vh) scale(.6737)}}.snow:nth-child(276){opacity:.784;transform:translate(8.36vw,-10px) scale(.4608);animation:fall-276 12s -13s linear infinite}@keyframes fall-276{69.669%{transform:translate(13.4736vw,69.669vh) scale(.4608)}to{transform:translate(10.9168vw,99vh) scale(.4608)}}.snow:nth-child(277){opacity:1.1966;transform:translate(32.2674vw,-10px) scale(.8757);animation:fall-277 22s -10s linear infinite}@keyframes fall-277{36.301%{transform:translate(29.1728vw,36.301vh) scale(.8757)}to{transform:translate(30.7201vw,99vh) scale(.8757)}}.snow:nth-child(278){opacity:.9752;transform:translate(41.4846vw,-10px) scale(.8749);animation:fall-278 22s -8s linear infinite}@keyframes fall-278{41.493%{transform:translate(50.0267vw,41.493vh) scale(.8749)}to{transform:translate(45.75565vw,99vh) scale(.8749)}}.snow:nth-child(279){opacity:1.239;transform:translate(15.9297vw,-10px) scale(.5784);animation:fall-279 25s -29s linear infinite}@keyframes fall-279{63.424%{transform:translate(11.4423vw,63.424vh) scale(.5784)}to{transform:translate(13.686vw,99vh) scale(.5784)}}.snow:nth-child(280){opacity:1.671;transform:translate(4.2311vw,-10px) scale(.1057);animation:fall-280 20s -23s linear infinite}@keyframes fall-280{62.71%{transform:translate(14.0023vw,62.71vh) scale(.1057)}to{transform:translate(9.1167vw,99vh) scale(.1057)}}.snow:nth-child(281){opacity:.4588;transform:translate(69.2767vw,-10px) scale(.2255);animation:fall-281 20s -14s linear infinite}@keyframes fall-281{69.235%{transform:translate(78.1489vw,69.235vh) scale(.2255)}to{transform:translate(73.7128vw,99vh) scale(.2255)}}.snow:nth-child(282){opacity:.8506;transform:translate(91.1167vw,-10px) scale(.9676);animation:fall-282 12s -19s linear infinite}@keyframes fall-282{59.53%{transform:translate(85.9061vw,59.53vh) scale(.9676)}to{transform:translate(88.5114vw,99vh) scale(.9676)}}.snow:nth-child(283){opacity:1.1278;transform:translate(26.3166vw,-10px) scale(.8006);animation:fall-283 22s -14s linear infinite}@keyframes fall-283{34.006%{transform:translate(18.1553vw,34.006vh) scale(.8006)}to{transform:translate(22.23595vw,99vh) scale(.8006)}}.snow:nth-child(284){opacity:1.3404;transform:translate(46.0528vw,-10px) scale(.48);animation:fall-284 11s -22s linear infinite}@keyframes fall-284{61.833%{transform:translate(36.764vw,61.833vh) scale(.48)}to{transform:translate(41.4084vw,99vh) scale(.48)}}.snow:nth-child(285){opacity:1.7926;transform:translate(34.4783vw,-10px) scale(.5606);animation:fall-285 22s -26s linear infinite}@keyframes fall-285{73.152%{transform:translate(40.1325vw,73.152vh) scale(.5606)}to{transform:translate(37.3054vw,99vh) scale(.5606)}}.snow:nth-child(286){opacity:1.2392;transform:translate(55.6765vw,-10px) scale(.7731);animation:fall-286 24s -19s linear infinite}@keyframes fall-286{66.312%{transform:translate(54.2919vw,66.312vh) scale(.7731)}to{transform:translate(54.9842vw,99vh) scale(.7731)}}.snow:nth-child(287){opacity:.538;transform:translate(99.9858vw,-10px) scale(.1265);animation:fall-287 17s -5s linear infinite}@keyframes fall-287{62.15%{transform:translate(96.4288vw,62.15vh) scale(.1265)}to{transform:translate(98.2073vw,99vh) scale(.1265)}}.snow:nth-child(288){opacity:1.8358;transform:translate(1.5461vw,-10px) scale(.3573);animation:fall-288 29s -15s linear infinite}@keyframes fall-288{38.53%{transform:translate(5.4955vw,38.53vh) scale(.3573)}to{transform:translate(3.5208vw,99vh) scale(.3573)}}.snow:nth-child(289){opacity:.216;transform:translate(58.7222vw,-10px) scale(.318);animation:fall-289 25s -7s linear infinite}@keyframes fall-289{38.625%{transform:translate(67.7092vw,38.625vh) scale(.318)}to{transform:translate(63.2157vw,99vh) scale(.318)}}.snow:nth-child(290){opacity:1.8902;transform:translate(56.8557vw,-10px) scale(.9039);animation:fall-290 12s -5s linear infinite}@keyframes fall-290{33.875%{transform:translate(56.428vw,33.875vh) scale(.9039)}to{transform:translate(56.64185vw,99vh) scale(.9039)}}.snow:nth-child(291){opacity:.233;transform:translate(38.9093vw,-10px) scale(.7487);animation:fall-291 12s -24s linear infinite}@keyframes fall-291{39.85%{transform:translate(33.5088vw,39.85vh) scale(.7487)}to{transform:translate(36.20905vw,99vh) scale(.7487)}}.snow:nth-child(292){opacity:.3026;transform:translate(57.5984vw,-10px) scale(.2148);animation:fall-292 21s -23s linear infinite}@keyframes fall-292{40.695%{transform:translate(49.5471vw,40.695vh) scale(.2148)}to{transform:translate(53.57275vw,99vh) scale(.2148)}}.snow:nth-child(293){opacity:.1062;transform:translate(96.1625vw,-10px) scale(.6444);animation:fall-293 25s -4s linear infinite}@keyframes fall-293{30.766%{transform:translate(102.0136vw,30.766vh) scale(.6444)}to{transform:translate(99.08805vw,99vh) scale(.6444)}}.snow:nth-child(294){opacity:.409;transform:translate(19.2323vw,-10px) scale(.4311);animation:fall-294 30s -4s linear infinite}@keyframes fall-294{53.092%{transform:translate(19.5106vw,53.092vh) scale(.4311)}to{transform:translate(19.37145vw,99vh) scale(.4311)}}.snow:nth-child(295){opacity:.0202;transform:translate(74.0066vw,-10px) scale(.2723);animation:fall-295 17s -17s linear infinite}@keyframes fall-295{47.758%{transform:translate(64.1286vw,47.758vh) scale(.2723)}to{transform:translate(69.0676vw,99vh) scale(.2723)}}.snow:nth-child(296){opacity:1.0126;transform:translate(24.4175vw,-10px) scale(.4578);animation:fall-296 22s -29s linear infinite}@keyframes fall-296{66.676%{transform:translate(31.5713vw,66.676vh) scale(.4578)}to{transform:translate(27.9944vw,99vh) scale(.4578)}}.snow:nth-child(297){opacity:.2612;transform:translate(72.2273vw,-10px) scale(.5787);animation:fall-297 28s -7s linear infinite}@keyframes fall-297{64.999%{transform:translate(76.8733vw,64.999vh) scale(.5787)}to{transform:translate(74.5503vw,99vh) scale(.5787)}}.snow:nth-child(298){opacity:.7936;transform:translate(96.7785vw,-10px) scale(.213);animation:fall-298 10s -9s linear infinite}@keyframes fall-298{55.527%{transform:translate(104.521vw,55.527vh) scale(.213)}to{transform:translate(100.64975vw,99vh) scale(.213)}}.snow:nth-child(299){opacity:1.1296;transform:translate(20.108vw,-10px) scale(.8532);animation:fall-299 22s -21s linear infinite}@keyframes fall-299{76.463%{transform:translate(13.3866vw,76.463vh) scale(.8532)}to{transform:translate(16.7473vw,99vh) scale(.8532)}}.snow:nth-child(300){opacity:.5572;transform:translate(73.6268vw,-10px) scale(.9669);animation:fall-300 13s -26s linear infinite}@keyframes fall-300{54.052%{transform:translate(79.6997vw,54.052vh) scale(.9669)}to{transform:translate(76.66325vw,99vh) scale(.9669)}}.snow:nth-child(301){opacity:.3664;transform:translate(72.5059vw,-10px) scale(.3072);animation:fall-301 22s -14s linear infinite}@keyframes fall-301{65.749%{transform:translate(72.7201vw,65.749vh) scale(.3072)}to{transform:translate(72.613vw,99vh) scale(.3072)}}.snow:nth-child(302){opacity:.2934;transform:translate(15.0375vw,-10px) scale(.8435);animation:fall-302 12s -25s linear infinite}@keyframes fall-302{56.813%{transform:translate(13.0479vw,56.813vh) scale(.8435)}to{transform:translate(14.0427vw,99vh) scale(.8435)}}.snow:nth-child(303){opacity:1.0822;transform:translate(88.9302vw,-10px) scale(.7901);animation:fall-303 29s -27s linear infinite}@keyframes fall-303{71.137%{transform:translate(96.1737vw,71.137vh) scale(.7901)}to{transform:translate(92.55195vw,99vh) scale(.7901)}}.snow:nth-child(304){opacity:.6974;transform:translate(69.6157vw,-10px) scale(.5116);animation:fall-304 24s -23s linear infinite}@keyframes fall-304{44.815%{transform:translate(71.9289vw,44.815vh) scale(.5116)}to{transform:translate(70.7723vw,99vh) scale(.5116)}}.snow:nth-child(305){opacity:1.0084;transform:translate(49.4445vw,-10px) scale(.9473);animation:fall-305 12s -25s linear infinite}@keyframes fall-305{50.399%{transform:translate(56.9933vw,50.399vh) scale(.9473)}to{transform:translate(53.2189vw,99vh) scale(.9473)}}.snow:nth-child(306){opacity:1.1108;transform:translate(8.1798vw,-10px) scale(.6305);animation:fall-306 14s -7s linear infinite}@keyframes fall-306{38.349%{transform:translate(15.6255vw,38.349vh) scale(.6305)}to{transform:translate(11.90265vw,99vh) scale(.6305)}}.snow:nth-child(307){opacity:1.861;transform:translate(46.1966vw,-10px) scale(.0311);animation:fall-307 11s -6s linear infinite}@keyframes fall-307{42.849%{transform:translate(56.054vw,42.849vh) scale(.0311)}to{transform:translate(51.1253vw,99vh) scale(.0311)}}.snow:nth-child(308){opacity:.6272;transform:translate(1.5787vw,-10px) scale(.8308);animation:fall-308 20s -20s linear infinite}@keyframes fall-308{37.741%{transform:translate(8.94vw,37.741vh) scale(.8308)}to{transform:translate(5.25935vw,99vh) scale(.8308)}}.snow:nth-child(309){opacity:1.7488;transform:translate(37.5157vw,-10px) scale(.4182);animation:fall-309 23s -22s linear infinite}@keyframes fall-309{36.797%{transform:translate(42.1133vw,36.797vh) scale(.4182)}to{transform:translate(39.8145vw,99vh) scale(.4182)}}.snow:nth-child(310){opacity:.2936;transform:translate(18.816vw,-10px) scale(.6403);animation:fall-310 16s -6s linear infinite}@keyframes fall-310{30.26%{transform:translate(21.3576vw,30.26vh) scale(.6403)}to{transform:translate(20.0868vw,99vh) scale(.6403)}}.snow:nth-child(311){opacity:.4572;transform:translate(12.7148vw,-10px) scale(.1464);animation:fall-311 20s -25s linear infinite}@keyframes fall-311{42.305%{transform:translate(10.0086vw,42.305vh) scale(.1464)}to{transform:translate(11.3617vw,99vh) scale(.1464)}}.snow:nth-child(312){opacity:1.7302;transform:translate(95.1675vw,-10px) scale(.985);animation:fall-312 27s -2s linear infinite}@keyframes fall-312{79.694%{transform:translate(95.4733vw,79.694vh) scale(.985)}to{transform:translate(95.3204vw,99vh) scale(.985)}}.snow:nth-child(313){opacity:.1088;transform:translate(5.3802vw,-10px) scale(.2636);animation:fall-313 21s -21s linear infinite}@keyframes fall-313{75.054%{transform:translate(9.1439vw,75.054vh) scale(.2636)}to{transform:translate(7.26205vw,99vh) scale(.2636)}}.snow:nth-child(314){opacity:1.3316;transform:translate(36.5684vw,-10px) scale(.1473);animation:fall-314 14s -10s linear infinite}@keyframes fall-314{67.354%{transform:translate(39.1201vw,67.354vh) scale(.1473)}to{transform:translate(37.84425vw,99vh) scale(.1473)}}.snow:nth-child(315){opacity:.5632;transform:translate(66.6174vw,-10px) scale(.19);animation:fall-315 26s -1s linear infinite}@keyframes fall-315{32.837%{transform:translate(56.9487vw,32.837vh) scale(.19)}to{transform:translate(61.78305vw,99vh) scale(.19)}}.snow:nth-child(316){opacity:.2088;transform:translate(75.1491vw,-10px) scale(.5085);animation:fall-316 22s -15s linear infinite}@keyframes fall-316{49.762%{transform:translate(84.604vw,49.762vh) scale(.5085)}to{transform:translate(79.87655vw,99vh) scale(.5085)}}.snow:nth-child(317){opacity:.0026;transform:translate(26.2867vw,-10px) scale(.3111);animation:fall-317 28s -2s linear infinite}@keyframes fall-317{63.632%{transform:translate(32.9009vw,63.632vh) scale(.3111)}to{transform:translate(29.5938vw,99vh) scale(.3111)}}.snow:nth-child(318){opacity:1.5528;transform:translate(56.2052vw,-10px) scale(.5801);animation:fall-318 29s -6s linear infinite}@keyframes fall-318{44.097%{transform:translate(59.1427vw,44.097vh) scale(.5801)}to{transform:translate(57.67395vw,99vh) scale(.5801)}}.snow:nth-child(319){opacity:.3498;transform:translate(72.867vw,-10px) scale(.5826);animation:fall-319 23s -17s linear infinite}@keyframes fall-319{64.856%{transform:translate(67.112vw,64.856vh) scale(.5826)}to{transform:translate(69.9895vw,99vh) scale(.5826)}}.snow:nth-child(320){opacity:.1224;transform:translate(17.6404vw,-10px) scale(.1196);animation:fall-320 28s -23s linear infinite}@keyframes fall-320{42.466%{transform:translate(14.7634vw,42.466vh) scale(.1196)}to{transform:translate(16.2019vw,99vh) scale(.1196)}}.snow:nth-child(321){opacity:.7034;transform:translate(23.9211vw,-10px) scale(.3243);animation:fall-321 21s -19s linear infinite}@keyframes fall-321{59.56%{transform:translate(21.3769vw,59.56vh) scale(.3243)}to{transform:translate(22.649vw,99vh) scale(.3243)}}.snow:nth-child(322){opacity:.5232;transform:translate(20.9837vw,-10px) scale(.3864);animation:fall-322 12s -16s linear infinite}@keyframes fall-322{54.814%{transform:translate(11.4007vw,54.814vh) scale(.3864)}to{transform:translate(16.1922vw,99vh) scale(.3864)}}.snow:nth-child(323){opacity:.9928;transform:translate(16.1789vw,-10px) scale(.1366);animation:fall-323 23s -25s linear infinite}@keyframes fall-323{31.822%{transform:translate(13.9057vw,31.822vh) scale(.1366)}to{transform:translate(15.0423vw,99vh) scale(.1366)}}.snow:nth-child(324){opacity:1.8812;transform:translate(56.6548vw,-10px) scale(.289);animation:fall-324 11s -9s linear infinite}@keyframes fall-324{51.571%{transform:translate(64.169vw,51.571vh) scale(.289)}to{transform:translate(60.4119vw,99vh) scale(.289)}}.snow:nth-child(325){opacity:.3652;transform:translate(46.0289vw,-10px) scale(.1241);animation:fall-325 29s -8s linear infinite}@keyframes fall-325{57.43%{transform:translate(54.6557vw,57.43vh) scale(.1241)}to{transform:translate(50.3423vw,99vh) scale(.1241)}}.snow:nth-child(326){opacity:.3754;transform:translate(77.0011vw,-10px) scale(.2613);animation:fall-326 22s -5s linear infinite}@keyframes fall-326{71.699%{transform:translate(81.1666vw,71.699vh) scale(.2613)}to{transform:translate(79.08385vw,99vh) scale(.2613)}}.snow:nth-child(327){opacity:.5498;transform:translate(48.5832vw,-10px) scale(.563);animation:fall-327 14s -1s linear infinite}@keyframes fall-327{35.931%{transform:translate(56.7652vw,35.931vh) scale(.563)}to{transform:translate(52.6742vw,99vh) scale(.563)}}.snow:nth-child(328){opacity:.9694;transform:translate(13.2936vw,-10px) scale(.1848);animation:fall-328 29s -22s linear infinite}@keyframes fall-328{38.925%{transform:translate(22.6403vw,38.925vh) scale(.1848)}to{transform:translate(17.96695vw,99vh) scale(.1848)}}.snow:nth-child(329){opacity:1.4978;transform:translate(4.9038vw,-10px) scale(.2946);animation:fall-329 15s -1s linear infinite}@keyframes fall-329{33.79%{transform:translate(-2.4427vw,33.79vh) scale(.2946)}to{transform:translate(1.23055vw,99vh) scale(.2946)}}.snow:nth-child(330){opacity:.5952;transform:translate(58.5951vw,-10px) scale(.8756);animation:fall-330 18s -13s linear infinite}@keyframes fall-330{72.157%{transform:translate(55.3242vw,72.157vh) scale(.8756)}to{transform:translate(56.95965vw,99vh) scale(.8756)}}.snow:nth-child(331){opacity:.4904;transform:translate(93.937vw,-10px) scale(.5198);animation:fall-331 13s -11s linear infinite}@keyframes fall-331{36.453%{transform:translate(93.1072vw,36.453vh) scale(.5198)}to{transform:translate(93.5221vw,99vh) scale(.5198)}}.snow:nth-child(332){opacity:1.3224;transform:translate(49.9885vw,-10px) scale(.4825);animation:fall-332 14s -10s linear infinite}@keyframes fall-332{76.681%{transform:translate(42.8119vw,76.681vh) scale(.4825)}to{transform:translate(46.4002vw,99vh) scale(.4825)}}.snow:nth-child(333){opacity:.739;transform:translate(30.7138vw,-10px) scale(.6736);animation:fall-333 27s -20s linear infinite}@keyframes fall-333{68.31%{transform:translate(31.2364vw,68.31vh) scale(.6736)}to{transform:translate(30.9751vw,99vh) scale(.6736)}}.snow:nth-child(334){opacity:1.6002;transform:translate(74.6557vw,-10px) scale(.4407);animation:fall-334 27s -30s linear infinite}@keyframes fall-334{57.971%{transform:translate(80.5298vw,57.971vh) scale(.4407)}to{transform:translate(77.59275vw,99vh) scale(.4407)}}.snow:nth-child(335){opacity:1.7864;transform:translate(50.2778vw,-10px) scale(.6724);animation:fall-335 13s -13s linear infinite}@keyframes fall-335{44.441%{transform:translate(57.3365vw,44.441vh) scale(.6724)}to{transform:translate(53.80715vw,99vh) scale(.6724)}}.snow:nth-child(336){opacity:.7408;transform:translate(75.9045vw,-10px) scale(.4427);animation:fall-336 27s -18s linear infinite}@keyframes fall-336{71.242%{transform:translate(69.9246vw,71.242vh) scale(.4427)}to{transform:translate(72.91455vw,99vh) scale(.4427)}}.snow:nth-child(337){opacity:1.8116;transform:translate(36.5324vw,-10px) scale(.8182);animation:fall-337 27s -12s linear infinite}@keyframes fall-337{69.097%{transform:translate(32.3257vw,69.097vh) scale(.8182)}to{transform:translate(34.42905vw,99vh) scale(.8182)}}.snow:nth-child(338){opacity:.4536;transform:translate(87.3698vw,-10px) scale(.1035);animation:fall-338 29s -26s linear infinite}@keyframes fall-338{61.213%{transform:translate(89.2226vw,61.213vh) scale(.1035)}to{transform:translate(88.2962vw,99vh) scale(.1035)}}.snow:nth-child(339){opacity:.618;transform:translate(57.4956vw,-10px) scale(.9658);animation:fall-339 26s -14s linear infinite}@keyframes fall-339{74.136%{transform:translate(61.8524vw,74.136vh) scale(.9658)}to{transform:translate(59.674vw,99vh) scale(.9658)}}.snow:nth-child(340){opacity:1.2208;transform:translate(69.7829vw,-10px) scale(.4413);animation:fall-340 13s -4s linear infinite}@keyframes fall-340{41.33%{transform:translate(63.717vw,41.33vh) scale(.4413)}to{transform:translate(66.74995vw,99vh) scale(.4413)}}.snow:nth-child(341){opacity:.9324;transform:translate(26.9121vw,-10px) scale(.3996);animation:fall-341 24s -14s linear infinite}@keyframes fall-341{47.116%{transform:translate(21.7544vw,47.116vh) scale(.3996)}to{transform:translate(24.33325vw,99vh) scale(.3996)}}.snow:nth-child(342){opacity:.8036;transform:translate(4.0392vw,-10px) scale(.3362);animation:fall-342 20s -24s linear infinite}@keyframes fall-342{54.365%{transform:translate(7.8458vw,54.365vh) scale(.3362)}to{transform:translate(5.9425vw,99vh) scale(.3362)}}.snow:nth-child(343){opacity:.1004;transform:translate(87.9519vw,-10px) scale(.9769);animation:fall-343 17s -16s linear infinite}@keyframes fall-343{54.88%{transform:translate(93.8477vw,54.88vh) scale(.9769)}to{transform:translate(90.8998vw,99vh) scale(.9769)}}.snow:nth-child(344){opacity:1.6172;transform:translate(5.2211vw,-10px) scale(.2998);animation:fall-344 21s -23s linear infinite}@keyframes fall-344{79.778%{transform:translate(-.8035vw,79.778vh) scale(.2998)}to{transform:translate(2.2088vw,99vh) scale(.2998)}}.snow:nth-child(345){opacity:.5542;transform:translate(14.0503vw,-10px) scale(.8352);animation:fall-345 13s -24s linear infinite}@keyframes fall-345{54.391%{transform:translate(15.5331vw,54.391vh) scale(.8352)}to{transform:translate(14.7917vw,99vh) scale(.8352)}}.snow:nth-child(346){opacity:1.5798;transform:translate(61.4887vw,-10px) scale(.667);animation:fall-346 16s -14s linear infinite}@keyframes fall-346{41.318%{transform:translate(68.4077vw,41.318vh) scale(.667)}to{transform:translate(64.9482vw,99vh) scale(.667)}}.snow:nth-child(347){opacity:.5384;transform:translate(53.1804vw,-10px) scale(.8422);animation:fall-347 27s -25s linear infinite}@keyframes fall-347{31.621%{transform:translate(61.1199vw,31.621vh) scale(.8422)}to{transform:translate(57.15015vw,99vh) scale(.8422)}}.snow:nth-child(348){opacity:.7258;transform:translate(94.9184vw,-10px) scale(.5098);animation:fall-348 17s -14s linear infinite}@keyframes fall-348{53.536%{transform:translate(87.0071vw,53.536vh) scale(.5098)}to{transform:translate(90.96275vw,99vh) scale(.5098)}}.snow:nth-child(349){opacity:1.6122;transform:translate(72.1697vw,-10px) scale(.5527);animation:fall-349 13s -19s linear infinite}@keyframes fall-349{54.005%{transform:translate(79.0467vw,54.005vh) scale(.5527)}to{transform:translate(75.6082vw,99vh) scale(.5527)}}.snow:nth-child(350){opacity:.9044;transform:translate(30.4657vw,-10px) scale(.7886);animation:fall-350 27s -16s linear infinite}@keyframes fall-350{39.704%{transform:translate(35.2421vw,39.704vh) scale(.7886)}to{transform:translate(32.8539vw,99vh) scale(.7886)}}.snow:nth-child(351){opacity:1.5808;transform:translate(21.3679vw,-10px) scale(.0057);animation:fall-351 17s -30s linear infinite}@keyframes fall-351{32.506%{transform:translate(13.0014vw,32.506vh) scale(.0057)}to{transform:translate(17.18465vw,99vh) scale(.0057)}}.snow:nth-child(352){opacity:1.678;transform:translate(28.4101vw,-10px) scale(.7697);animation:fall-352 26s -6s linear infinite}@keyframes fall-352{53.015%{transform:translate(25.0388vw,53.015vh) scale(.7697)}to{transform:translate(26.72445vw,99vh) scale(.7697)}}.snow:nth-child(353){opacity:.4604;transform:translate(24.1313vw,-10px) scale(.6794);animation:fall-353 14s -15s linear infinite}@keyframes fall-353{37.549%{transform:translate(23.9356vw,37.549vh) scale(.6794)}to{transform:translate(24.03345vw,99vh) scale(.6794)}}.snow:nth-child(354){opacity:.6642;transform:translate(63.308vw,-10px) scale(.215);animation:fall-354 19s -22s linear infinite}@keyframes fall-354{50.105%{transform:translate(60.7105vw,50.105vh) scale(.215)}to{transform:translate(62.00925vw,99vh) scale(.215)}}.snow:nth-child(355){opacity:1.7696;transform:translate(42.7073vw,-10px) scale(.0568);animation:fall-355 29s -4s linear infinite}@keyframes fall-355{32.536%{transform:translate(50.6021vw,32.536vh) scale(.0568)}to{transform:translate(46.6547vw,99vh) scale(.0568)}}.snow:nth-child(356){opacity:.872;transform:translate(95.1423vw,-10px) scale(.5141);animation:fall-356 23s -7s linear infinite}@keyframes fall-356{73.998%{transform:translate(91.4693vw,73.998vh) scale(.5141)}to{transform:translate(93.3058vw,99vh) scale(.5141)}}.snow:nth-child(357){opacity:1.2124;transform:translate(78.4828vw,-10px) scale(.4945);animation:fall-357 22s -6s linear infinite}@keyframes fall-357{44.367%{transform:translate(78.5294vw,44.367vh) scale(.4945)}to{transform:translate(78.5061vw,99vh) scale(.4945)}}.snow:nth-child(358){opacity:.0578;transform:translate(38.8962vw,-10px) scale(.8394);animation:fall-358 10s -4s linear infinite}@keyframes fall-358{56.805%{transform:translate(48.6039vw,56.805vh) scale(.8394)}to{transform:translate(43.75005vw,99vh) scale(.8394)}}.snow:nth-child(359){opacity:1.339;transform:translate(57.0313vw,-10px) scale(.4985);animation:fall-359 26s -19s linear infinite}@keyframes fall-359{52.123%{transform:translate(59.5997vw,52.123vh) scale(.4985)}to{transform:translate(58.3155vw,99vh) scale(.4985)}}.snow:nth-child(360){opacity:1.056;transform:translate(67.8913vw,-10px) scale(.2146);animation:fall-360 12s -29s linear infinite}@keyframes fall-360{35.753%{transform:translate(69.1324vw,35.753vh) scale(.2146)}to{transform:translate(68.51185vw,99vh) scale(.2146)}}.snow:nth-child(361){opacity:1.6064;transform:translate(32.9521vw,-10px) scale(.4695);animation:fall-361 16s -25s linear infinite}@keyframes fall-361{48.475%{transform:translate(31.8401vw,48.475vh) scale(.4695)}to{transform:translate(32.3961vw,99vh) scale(.4695)}}.snow:nth-child(362){opacity:.957;transform:translate(72.777vw,-10px) scale(.7407);animation:fall-362 22s -6s linear infinite}@keyframes fall-362{44.198%{transform:translate(76.6978vw,44.198vh) scale(.7407)}to{transform:translate(74.7374vw,99vh) scale(.7407)}}.snow:nth-child(363){opacity:.402;transform:translate(52.6911vw,-10px) scale(.8642);animation:fall-363 28s -3s linear infinite}@keyframes fall-363{37.687%{transform:translate(57.9136vw,37.687vh) scale(.8642)}to{transform:translate(55.30235vw,99vh) scale(.8642)}}.snow:nth-child(364){opacity:1.069;transform:translate(71.4701vw,-10px) scale(.1296);animation:fall-364 28s -29s linear infinite}@keyframes fall-364{77.493%{transform:translate(65.5198vw,77.493vh) scale(.1296)}to{transform:translate(68.49495vw,99vh) scale(.1296)}}.snow:nth-child(365){opacity:.9534;transform:translate(5.0175vw,-10px) scale(.3473);animation:fall-365 22s -23s linear infinite}@keyframes fall-365{64.977%{transform:translate(-.907vw,64.977vh) scale(.3473)}to{transform:translate(2.05525vw,99vh) scale(.3473)}}.snow:nth-child(366){opacity:.3344;transform:translate(1.4839vw,-10px) scale(.6628);animation:fall-366 25s -27s linear infinite}@keyframes fall-366{39.837%{transform:translate(6.0633vw,39.837vh) scale(.6628)}to{transform:translate(3.7736vw,99vh) scale(.6628)}}.snow:nth-child(367){opacity:1.6578;transform:translate(10.2832vw,-10px) scale(.3321);animation:fall-367 17s -20s linear infinite}@keyframes fall-367{41.706%{transform:translate(8.7332vw,41.706vh) scale(.3321)}to{transform:translate(9.5082vw,99vh) scale(.3321)}}.snow:nth-child(368){opacity:1.688;transform:translate(29.4752vw,-10px) scale(.5541);animation:fall-368 19s -19s linear infinite}@keyframes fall-368{74.764%{transform:translate(32.9572vw,74.764vh) scale(.5541)}to{transform:translate(31.2162vw,99vh) scale(.5541)}}.snow:nth-child(369){opacity:.309;transform:translate(55.0314vw,-10px) scale(.4424);animation:fall-369 11s -12s linear infinite}@keyframes fall-369{53.239%{transform:translate(56.431vw,53.239vh) scale(.4424)}to{transform:translate(55.7312vw,99vh) scale(.4424)}}.snow:nth-child(370){opacity:.1908;transform:translate(32.2012vw,-10px) scale(.6812);animation:fall-370 28s -19s linear infinite}@keyframes fall-370{74.613%{transform:translate(26.7899vw,74.613vh) scale(.6812)}to{transform:translate(29.49555vw,99vh) scale(.6812)}}.snow:nth-child(371){opacity:1.4438;transform:translate(62.7813vw,-10px) scale(.2588);animation:fall-371 20s -29s linear infinite}@keyframes fall-371{73.4%{transform:translate(66.6815vw,73.4vh) scale(.2588)}to{transform:translate(64.7314vw,99vh) scale(.2588)}}.snow:nth-child(372){opacity:1.241;transform:translate(31.5995vw,-10px) scale(.5993);animation:fall-372 29s -29s linear infinite}@keyframes fall-372{39.139%{transform:translate(38.7939vw,39.139vh) scale(.5993)}to{transform:translate(35.1967vw,99vh) scale(.5993)}}.snow:nth-child(373){opacity:.561;transform:translate(24.6877vw,-10px) scale(.894);animation:fall-373 13s -4s linear infinite}@keyframes fall-373{60.935%{transform:translate(20.2984vw,60.935vh) scale(.894)}to{transform:translate(22.49305vw,99vh) scale(.894)}}.snow:nth-child(374){opacity:1.7032;transform:translate(85.5815vw,-10px) scale(.2123);animation:fall-374 21s -1s linear infinite}@keyframes fall-374{66.78%{transform:translate(92.4331vw,66.78vh) scale(.2123)}to{transform:translate(89.0073vw,99vh) scale(.2123)}}.snow:nth-child(375){opacity:1.5716;transform:translate(51.9618vw,-10px) scale(.4207);animation:fall-375 20s -7s linear infinite}@keyframes fall-375{58.674%{transform:translate(55.4651vw,58.674vh) scale(.4207)}to{transform:translate(53.71345vw,99vh) scale(.4207)}}.snow:nth-child(376){opacity:1.4046;transform:translate(4.1075vw,-10px) scale(.5998);animation:fall-376 26s -15s linear infinite}@keyframes fall-376{53.619%{transform:translate(-3.0482vw,53.619vh) scale(.5998)}to{transform:translate(.52965vw,99vh) scale(.5998)}}.snow:nth-child(377){opacity:.013;transform:translate(65.5851vw,-10px) scale(.716);animation:fall-377 18s -17s linear infinite}@keyframes fall-377{33.747%{transform:translate(69.727vw,33.747vh) scale(.716)}to{transform:translate(67.65605vw,99vh) scale(.716)}}.snow:nth-child(378){opacity:1.7;transform:translate(21.8627vw,-10px) scale(.1531);animation:fall-378 18s -25s linear infinite}@keyframes fall-378{54.046%{transform:translate(18.3546vw,54.046vh) scale(.1531)}to{transform:translate(20.10865vw,99vh) scale(.1531)}}.snow:nth-child(379){opacity:1.7346;transform:translate(5.5778vw,-10px) scale(.0649);animation:fall-379 30s -19s linear infinite}@keyframes fall-379{54.873%{transform:translate(-3.082vw,54.873vh) scale(.0649)}to{transform:translate(1.2479vw,99vh) scale(.0649)}}.snow:nth-child(380){opacity:.0492;transform:translate(95.2883vw,-10px) scale(.5144);animation:fall-380 20s -23s linear infinite}@keyframes fall-380{75.532%{transform:translate(87.0486vw,75.532vh) scale(.5144)}to{transform:translate(91.16845vw,99vh) scale(.5144)}}.snow:nth-child(381){opacity:1.5506;transform:translate(98.8572vw,-10px) scale(.2808);animation:fall-381 11s -11s linear infinite}@keyframes fall-381{30.982%{transform:translate(108.7416vw,30.982vh) scale(.2808)}to{transform:translate(103.7994vw,99vh) scale(.2808)}}.snow:nth-child(382){opacity:.5026;transform:translate(46.7996vw,-10px) scale(.0678);animation:fall-382 24s -4s linear infinite}@keyframes fall-382{53.414%{transform:translate(50.4837vw,53.414vh) scale(.0678)}to{transform:translate(48.64165vw,99vh) scale(.0678)}}.snow:nth-child(383){opacity:.0454;transform:translate(12.9612vw,-10px) scale(.1462);animation:fall-383 18s -29s linear infinite}@keyframes fall-383{72.409%{transform:translate(18.9443vw,72.409vh) scale(.1462)}to{transform:translate(15.95275vw,99vh) scale(.1462)}}.snow:nth-child(384){opacity:1.4602;transform:translate(46.3968vw,-10px) scale(.4556);animation:fall-384 15s -15s linear infinite}@keyframes fall-384{70.487%{transform:translate(39.5042vw,70.487vh) scale(.4556)}to{transform:translate(42.9505vw,99vh) scale(.4556)}}.snow:nth-child(385){opacity:1.7854;transform:translate(98.2161vw,-10px) scale(.1904);animation:fall-385 16s -7s linear infinite}@keyframes fall-385{67.05%{transform:translate(88.9574vw,67.05vh) scale(.1904)}to{transform:translate(93.58675vw,99vh) scale(.1904)}}.snow:nth-child(386){opacity:1.616;transform:translate(87.6611vw,-10px) scale(.4627);animation:fall-386 19s -12s linear infinite}@keyframes fall-386{56.264%{transform:translate(85.4884vw,56.264vh) scale(.4627)}to{transform:translate(86.57475vw,99vh) scale(.4627)}}.snow:nth-child(387){opacity:.5156;transform:translate(11.8897vw,-10px) scale(.135);animation:fall-387 10s -15s linear infinite}@keyframes fall-387{70.84%{transform:translate(21.0561vw,70.84vh) scale(.135)}to{transform:translate(16.4729vw,99vh) scale(.135)}}.snow:nth-child(388){opacity:.0874;transform:translate(11.5592vw,-10px) scale(.1465);animation:fall-388 23s -28s linear infinite}@keyframes fall-388{78.998%{transform:translate(2.5038vw,78.998vh) scale(.1465)}to{transform:translate(7.0315vw,99vh) scale(.1465)}}.snow:nth-child(389){opacity:1.627;transform:translate(8.8455vw,-10px) scale(.7017);animation:fall-389 20s -26s linear infinite}@keyframes fall-389{33.596%{transform:translate(3.8223vw,33.596vh) scale(.7017)}to{transform:translate(6.3339vw,99vh) scale(.7017)}}.snow:nth-child(390){opacity:1.7414;transform:translate(68.9541vw,-10px) scale(.2066);animation:fall-390 19s -3s linear infinite}@keyframes fall-390{39.658%{transform:translate(71.1171vw,39.658vh) scale(.2066)}to{transform:translate(70.0356vw,99vh) scale(.2066)}}.snow:nth-child(391){opacity:.8908;transform:translate(97.3057vw,-10px) scale(.5879);animation:fall-391 23s -28s linear infinite}@keyframes fall-391{53.852%{transform:translate(95.1017vw,53.852vh) scale(.5879)}to{transform:translate(96.2037vw,99vh) scale(.5879)}}.snow:nth-child(392){opacity:1.5204;transform:translate(97.1425vw,-10px) scale(.1096);animation:fall-392 15s -6s linear infinite}@keyframes fall-392{68.681%{transform:translate(97.7572vw,68.681vh) scale(.1096)}to{transform:translate(97.44985vw,99vh) scale(.1096)}}.snow:nth-child(393){opacity:.3038;transform:translate(17.4753vw,-10px) scale(.6367);animation:fall-393 27s -17s linear infinite}@keyframes fall-393{54.645%{transform:translate(15.7608vw,54.645vh) scale(.6367)}to{transform:translate(16.61805vw,99vh) scale(.6367)}}.snow:nth-child(394){opacity:1.8032;transform:translate(33.4946vw,-10px) scale(.3255);animation:fall-394 28s -17s linear infinite}@keyframes fall-394{71.392%{transform:translate(29.4046vw,71.392vh) scale(.3255)}to{transform:translate(31.4496vw,99vh) scale(.3255)}}.snow:nth-child(395){opacity:1.1302;transform:translate(75.8769vw,-10px) scale(.2692);animation:fall-395 24s -3s linear infinite}@keyframes fall-395{68.788%{transform:translate(80.1117vw,68.788vh) scale(.2692)}to{transform:translate(77.9943vw,99vh) scale(.2692)}}.snow:nth-child(396){opacity:.1052;transform:translate(47.5523vw,-10px) scale(.7895);animation:fall-396 17s -14s linear infinite}@keyframes fall-396{56.325%{transform:translate(45.3666vw,56.325vh) scale(.7895)}to{transform:translate(46.45945vw,99vh) scale(.7895)}}.snow:nth-child(397){opacity:.8726;transform:translate(85.1698vw,-10px) scale(.0431);animation:fall-397 22s -11s linear infinite}@keyframes fall-397{67.381%{transform:translate(76.9421vw,67.381vh) scale(.0431)}to{transform:translate(81.05595vw,99vh) scale(.0431)}}.snow:nth-child(398){opacity:.4248;transform:translate(50.335vw,-10px) scale(.8666);animation:fall-398 22s -3s linear infinite}@keyframes fall-398{50.115%{transform:translate(51.2947vw,50.115vh) scale(.8666)}to{transform:translate(50.81485vw,99vh) scale(.8666)}}.snow:nth-child(399){opacity:.4516;transform:translate(11.6786vw,-10px) scale(.495);animation:fall-399 28s -17s linear infinite}@keyframes fall-399{72.578%{transform:translate(20.8629vw,72.578vh) scale(.495)}to{transform:translate(16.27075vw,99vh) scale(.495)}}.snow:nth-child(400){opacity:1.9108;transform:translate(28.058vw,-10px) scale(.9487);animation:fall-400 13s -1s linear infinite}@keyframes fall-400{78.319%{transform:translate(26.9874vw,78.319vh) scale(.9487)}to{transform:translate(27.5227vw,99vh) scale(.9487)}}\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", "routerOutletData"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
90
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: AppComponent, isStandalone: false, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows; trackBy: snowTrackBy\" 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{-webkit-animation:progress-bar-stripes 1s linear infinite;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;-webkit-box-shadow:1px 1px 5px 0px rgba(0,0,0,.25);-moz-box-shadow:1px 1px 5px 0px rgba(0,0,0,.25);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:#024a8880}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:#2d922d80}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:#248dad80}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:#f79a1780}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:#bf172580}.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:#0006}.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:#0003}.card.overlay .card-img{border-radius:0;-webkit-filter:brightness(100%);-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-webkit-filter:brightness(80%);-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{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);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:#024a88cc!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:#024a8880;border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:#024a88f2!important;border-color:#024a88f2!important}.btn-success{background:#2d922dcc;border-color:#2d922dcc}.btn-success.medium-opacity{background:#2d922d80;border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:#2d922df2!important;border-color:#2d922df2!important}.btn-info{background:#248dadcc;border-color:#248dadcc}.btn-info.medium-opacity{background:#248dad80;border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:#248dadf2!important;border-color:#248dadf2!important}.btn-warning{background:#f79a17cc;border-color:#f79a17cc}.btn-warning.medium-opacity{background:#f79a1780;border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:#f79a17f2!important;border-color:#f79a17f2!important}.btn-danger{background:#bf1725cc;border-color:#bf1725cc}.btn-danger.medium-opacity{background:#bf172580;border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:#bf1725f2!important;border-color:#bf1725f2!important}.btn-dark{background:#000c;border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:#00000080;border-color:#0000001a}.btn-dark:hover{background:#000;border-color:#000}.btn-dark:active{background:#000000f2!important;border-color:#000000f2!important}.btn-main{background:#242d3acc;border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:#242d3a80;border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:#242d3af2!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:#2d922d80;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:#555555b3}.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:#555555b3}.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:#ffffff1a 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:#024a8880!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:#2d922d80!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:#f79a1780!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:#bf172580!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:#242d3a80!important}.bg-dark{background:#000!important}.bg-dark.medium-opacity{background:#00000080!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: 1800px){.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}::-webkit-input-placeholder{color:#aaa!important}:-moz-placeholder{color:#aaa!important;opacity:1!important}::-moz-placeholder{color:#aaa!important;opacity:1!important}:-ms-input-placeholder{color:#aaa!important}::-ms-input-placeholder{color:#aaa!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{-moz-transform:scale(1,-1);-webkit-transform:scale(1,-1);-o-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scaleY(-1)}.app-flip-x{-moz-transform:scale(-1,1);-webkit-transform:scale(-1,1);-o-transform:scale(-1,1);-ms-transform:scale(-1,1);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-600{max-height:600px;overflow-x:hidden;overflow-y:auto}.list-area{position:relative!important}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:#ff323233;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:#fff;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}.wizard-step-container{background-color:#fff;box-shadow:#63636333 0 2px 8px;padding:10px}.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}.m-b-min-1{margin-bottom:-1px}.m-b-min-2{margin-bottom:-2px}.m-b-min-3{margin-bottom:-3px}.m-b-min-5{margin-bottom:-5px}.m-b-min-6{margin-bottom:-6px}.m-b-min-10{margin-bottom:-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:#00000080 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:#ededed;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{margin-top:20px;padding-left:0!important}.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}.app-search-background{z-index:9999;margin-top:60px;padding:0;background-color:#0000004d;width:100vw;height:calc(100vh - 60px)}.app-search-result-box{height:calc(100% - 35px);overflow:hidden;margin:20px}.app-search-card{margin-top:2px;margin-bottom:10px;padding:15px;background-color:#fff;box-shadow:#06182c66 0 0 0 2px,#06182ca6 0 4px 6px -1px,#ffffff14 0 1px inset}.pull-left{float:left}.pull-right{float:right}.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;-moz-user-select:none!important;-ms-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:#ccc}::-webkit-scrollbar-thumb:active{background:#888}::-webkit-scrollbar-track{background:#666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666}::-webkit-scrollbar-track:active{background:#333}::-webkit-scrollbar-corner{background:transparent}.transition{-webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;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%}}.snow{position:absolute;width:10px;height:10px;background:#fff;border-radius:50%}.snow:nth-child(1){opacity:1.0148;transform:translate(83.9462vw,-10px) scale(.8323);animation:fall-1 10s -27s linear infinite}@keyframes fall-1{61.132%{transform:translate(82.6252vw,61.132vh) scale(.8323)}to{transform:translate(83.2857vw,99vh) scale(.8323)}}.snow:nth-child(2){opacity:1.2276;transform:translate(44.5227vw,-10px) scale(.9035);animation:fall-2 12s -25s linear infinite}@keyframes fall-2{47.921%{transform:translate(38.2703vw,47.921vh) scale(.9035)}to{transform:translate(41.3965vw,99vh) scale(.9035)}}.snow:nth-child(3){opacity:1.2548;transform:translate(58.3472vw,-10px) scale(.7587);animation:fall-3 16s -27s linear infinite}@keyframes fall-3{47.607%{transform:translate(61.6241vw,47.607vh) scale(.7587)}to{transform:translate(59.98565vw,99vh) scale(.7587)}}.snow:nth-child(4){opacity:1.3946;transform:translate(69.3003vw,-10px) scale(.1265);animation:fall-4 27s -18s linear infinite}@keyframes fall-4{37.629%{transform:translate(63.2374vw,37.629vh) scale(.1265)}to{transform:translate(66.26885vw,99vh) scale(.1265)}}.snow:nth-child(5){opacity:.1774;transform:translate(77.4844vw,-10px) scale(.3328);animation:fall-5 11s -2s linear infinite}@keyframes fall-5{32.882%{transform:translate(78.8705vw,32.882vh) scale(.3328)}to{transform:translate(78.17745vw,99vh) scale(.3328)}}.snow:nth-child(6){opacity:.2772;transform:translate(15.0907vw,-10px) scale(.5736);animation:fall-6 24s -3s linear infinite}@keyframes fall-6{68.444%{transform:translate(16.9722vw,68.444vh) scale(.5736)}to{transform:translate(16.03145vw,99vh) scale(.5736)}}.snow:nth-child(7){opacity:1.6818;transform:translate(25.8484vw,-10px) scale(.2573);animation:fall-7 12s -1s linear infinite}@keyframes fall-7{57.371%{transform:translate(32.0337vw,57.371vh) scale(.2573)}to{transform:translate(28.94105vw,99vh) scale(.2573)}}.snow:nth-child(8){opacity:.8346;transform:translate(8.697vw,-10px) scale(.3208);animation:fall-8 10s -2s linear infinite}@keyframes fall-8{79.078%{transform:translate(.8187vw,79.078vh) scale(.3208)}to{transform:translate(4.75785vw,99vh) scale(.3208)}}.snow:nth-child(9){opacity:1.5598;transform:translate(40.2825vw,-10px) scale(.0734);animation:fall-9 16s -7s linear infinite}@keyframes fall-9{64.572%{transform:translate(37.497vw,64.572vh) scale(.0734)}to{transform:translate(38.88975vw,99vh) scale(.0734)}}.snow:nth-child(10){opacity:1.7908;transform:translate(59.6304vw,-10px) scale(.9703);animation:fall-10 15s -7s linear infinite}@keyframes fall-10{50.056%{transform:translate(55.4666vw,50.056vh) scale(.9703)}to{transform:translate(57.5485vw,99vh) scale(.9703)}}.snow:nth-child(11){opacity:1.1852;transform:translate(55.1712vw,-10px) scale(.3881);animation:fall-11 19s -13s linear infinite}@keyframes fall-11{49.035%{transform:translate(47.3326vw,49.035vh) scale(.3881)}to{transform:translate(51.2519vw,99vh) scale(.3881)}}.snow:nth-child(12){opacity:.6774;transform:translate(98.9392vw,-10px) scale(.1292);animation:fall-12 26s -2s linear infinite}@keyframes fall-12{47.302%{transform:translate(91.7169vw,47.302vh) scale(.1292)}to{transform:translate(95.32805vw,99vh) scale(.1292)}}.snow:nth-child(13){opacity:.0374;transform:translate(3.7708vw,-10px) scale(.5859);animation:fall-13 14s -7s linear infinite}@keyframes fall-13{34.277%{transform:translate(.0314vw,34.277vh) scale(.5859)}to{transform:translate(1.9011vw,99vh) scale(.5859)}}.snow:nth-child(14){opacity:1.006;transform:translate(18.8431vw,-10px) scale(.0613);animation:fall-14 29s -8s linear infinite}@keyframes fall-14{70.908%{transform:translate(17.6215vw,70.908vh) scale(.0613)}to{transform:translate(18.2323vw,99vh) scale(.0613)}}.snow:nth-child(15){opacity:.4116;transform:translate(90.7023vw,-10px) scale(.2442);animation:fall-15 25s -3s linear infinite}@keyframes fall-15{78.343%{transform:translate(94.4795vw,78.343vh) scale(.2442)}to{transform:translate(92.5909vw,99vh) scale(.2442)}}.snow:nth-child(16){opacity:1.4302;transform:translate(37.483vw,-10px) scale(.5331);animation:fall-16 25s -22s linear infinite}@keyframes fall-16{52.302%{transform:translate(39.3439vw,52.302vh) scale(.5331)}to{transform:translate(38.41345vw,99vh) scale(.5331)}}.snow:nth-child(17){opacity:.592;transform:translate(23.7792vw,-10px) scale(.1745);animation:fall-17 20s -11s linear infinite}@keyframes fall-17{39.271%{transform:translate(25.166vw,39.271vh) scale(.1745)}to{transform:translate(24.4726vw,99vh) scale(.1745)}}.snow:nth-child(18){opacity:1.7758;transform:translate(80.1078vw,-10px) scale(.8446);animation:fall-18 30s -9s linear infinite}@keyframes fall-18{78.194%{transform:translate(77.2076vw,78.194vh) scale(.8446)}to{transform:translate(78.6577vw,99vh) scale(.8446)}}.snow:nth-child(19){opacity:.8778;transform:translate(48.1075vw,-10px) scale(.1709);animation:fall-19 23s -19s linear infinite}@keyframes fall-19{52.092%{transform:translate(52.679vw,52.092vh) scale(.1709)}to{transform:translate(50.39325vw,99vh) scale(.1709)}}.snow:nth-child(20){opacity:1.5172;transform:translate(10.3553vw,-10px) scale(.2568);animation:fall-20 28s -10s linear infinite}@keyframes fall-20{31.675%{transform:translate(11.6529vw,31.675vh) scale(.2568)}to{transform:translate(11.0041vw,99vh) scale(.2568)}}.snow:nth-child(21){opacity:.0272;transform:translate(96.5218vw,-10px) scale(.1306);animation:fall-21 22s -5s linear infinite}@keyframes fall-21{38.072%{transform:translate(106.3071vw,38.072vh) scale(.1306)}to{transform:translate(101.41445vw,99vh) scale(.1306)}}.snow:nth-child(22){opacity:1.5752;transform:translate(97.0697vw,-10px) scale(.1904);animation:fall-22 20s -30s linear infinite}@keyframes fall-22{79.381%{transform:translate(90.3703vw,79.381vh) scale(.1904)}to{transform:translate(93.72vw,99vh) scale(.1904)}}.snow:nth-child(23){opacity:1.5134;transform:translate(33.5426vw,-10px) scale(.2476);animation:fall-23 30s -19s linear infinite}@keyframes fall-23{79.434%{transform:translate(42.7204vw,79.434vh) scale(.2476)}to{transform:translate(38.1315vw,99vh) scale(.2476)}}.snow:nth-child(24){opacity:1.3702;transform:translate(15.9581vw,-10px) scale(.5586);animation:fall-24 29s -17s linear infinite}@keyframes fall-24{31.566%{transform:translate(23.1052vw,31.566vh) scale(.5586)}to{transform:translate(19.53165vw,99vh) scale(.5586)}}.snow:nth-child(25){opacity:1.5412;transform:translate(64.2779vw,-10px) scale(.5241);animation:fall-25 20s -23s linear infinite}@keyframes fall-25{67.899%{transform:translate(70.6989vw,67.899vh) scale(.5241)}to{transform:translate(67.4884vw,99vh) scale(.5241)}}.snow:nth-child(26){opacity:1.7258;transform:translate(44.8602vw,-10px) scale(.103);animation:fall-26 27s -10s linear infinite}@keyframes fall-26{65.612%{transform:translate(54.4843vw,65.612vh) scale(.103)}to{transform:translate(49.67225vw,99vh) scale(.103)}}.snow:nth-child(27){opacity:1.6324;transform:translate(84.4723vw,-10px) scale(.1913);animation:fall-27 14s -14s linear infinite}@keyframes fall-27{48.503%{transform:translate(94.0292vw,48.503vh) scale(.1913)}to{transform:translate(89.25075vw,99vh) scale(.1913)}}.snow:nth-child(28){opacity:1.4528;transform:translate(84.3115vw,-10px) scale(.9524);animation:fall-28 30s -5s linear infinite}@keyframes fall-28{79.285%{transform:translate(82.3791vw,79.285vh) scale(.9524)}to{transform:translate(83.3453vw,99vh) scale(.9524)}}.snow:nth-child(29){opacity:.89;transform:translate(25.3645vw,-10px) scale(.8893);animation:fall-29 30s -20s linear infinite}@keyframes fall-29{60.165%{transform:translate(33.5407vw,60.165vh) scale(.8893)}to{transform:translate(29.4526vw,99vh) scale(.8893)}}.snow:nth-child(30){opacity:.7282;transform:translate(98.8171vw,-10px) scale(.146);animation:fall-30 10s -5s linear infinite}@keyframes fall-30{57.419%{transform:translate(103.4464vw,57.419vh) scale(.146)}to{transform:translate(101.13175vw,99vh) scale(.146)}}.snow:nth-child(31){opacity:1.2084;transform:translate(19.147vw,-10px) scale(.3023);animation:fall-31 16s -25s linear infinite}@keyframes fall-31{62.596%{transform:translate(13.9669vw,62.596vh) scale(.3023)}to{transform:translate(16.55695vw,99vh) scale(.3023)}}.snow:nth-child(32){opacity:.2564;transform:translate(85.7031vw,-10px) scale(.1998);animation:fall-32 27s -28s linear infinite}@keyframes fall-32{68.443%{transform:translate(90.9127vw,68.443vh) scale(.1998)}to{transform:translate(88.3079vw,99vh) scale(.1998)}}.snow:nth-child(33){opacity:1.3436;transform:translate(81.1532vw,-10px) scale(.5985);animation:fall-33 29s -18s linear infinite}@keyframes fall-33{71.938%{transform:translate(76.3057vw,71.938vh) scale(.5985)}to{transform:translate(78.72945vw,99vh) scale(.5985)}}.snow:nth-child(34){opacity:.7046;transform:translate(24.6863vw,-10px) scale(.4582);animation:fall-34 23s -26s linear infinite}@keyframes fall-34{73.647%{transform:translate(18.3727vw,73.647vh) scale(.4582)}to{transform:translate(21.5295vw,99vh) scale(.4582)}}.snow:nth-child(35){opacity:1.004;transform:translate(81.3778vw,-10px) scale(.7494);animation:fall-35 11s -28s linear infinite}@keyframes fall-35{54.501%{transform:translate(90.0056vw,54.501vh) scale(.7494)}to{transform:translate(85.6917vw,99vh) scale(.7494)}}.snow:nth-child(36){opacity:.3758;transform:translate(61.1421vw,-10px) scale(.7321);animation:fall-36 24s -7s linear infinite}@keyframes fall-36{77.065%{transform:translate(60.3411vw,77.065vh) scale(.7321)}to{transform:translate(60.7416vw,99vh) scale(.7321)}}.snow:nth-child(37){opacity:.6336;transform:translate(52.4368vw,-10px) scale(.8414);animation:fall-37 27s -14s linear infinite}@keyframes fall-37{73.297%{transform:translate(44.8643vw,73.297vh) scale(.8414)}to{transform:translate(48.65055vw,99vh) scale(.8414)}}.snow:nth-child(38){opacity:1.6184;transform:translate(58.0051vw,-10px) scale(.3076);animation:fall-38 25s -15s linear infinite}@keyframes fall-38{67.221%{transform:translate(48.3362vw,67.221vh) scale(.3076)}to{transform:translate(53.17065vw,99vh) scale(.3076)}}.snow:nth-child(39){opacity:1.0094;transform:translate(50.2542vw,-10px) scale(.5931);animation:fall-39 27s -28s linear infinite}@keyframes fall-39{33.334%{transform:translate(44.5636vw,33.334vh) scale(.5931)}to{transform:translate(47.4089vw,99vh) scale(.5931)}}.snow:nth-child(40){opacity:1.4032;transform:translate(91.6659vw,-10px) scale(.7379);animation:fall-40 14s -16s linear infinite}@keyframes fall-40{67.652%{transform:translate(93.7659vw,67.652vh) scale(.7379)}to{transform:translate(92.7159vw,99vh) scale(.7379)}}.snow:nth-child(41){opacity:.7966;transform:translate(18.8241vw,-10px) scale(.8542);animation:fall-41 17s -24s linear infinite}@keyframes fall-41{68.422%{transform:translate(22.6454vw,68.422vh) scale(.8542)}to{transform:translate(20.73475vw,99vh) scale(.8542)}}.snow:nth-child(42){opacity:.118;transform:translate(49.4103vw,-10px) scale(.9854);animation:fall-42 28s -5s linear infinite}@keyframes fall-42{62.562%{transform:translate(41.2672vw,62.562vh) scale(.9854)}to{transform:translate(45.33875vw,99vh) scale(.9854)}}.snow:nth-child(43){opacity:1.1614;transform:translate(74.6221vw,-10px) scale(.138);animation:fall-43 26s -7s linear infinite}@keyframes fall-43{71.429%{transform:translate(66.1699vw,71.429vh) scale(.138)}to{transform:translate(70.396vw,99vh) scale(.138)}}.snow:nth-child(44){opacity:1.013;transform:translate(42.3073vw,-10px) scale(.7872);animation:fall-44 23s -15s linear infinite}@keyframes fall-44{40.211%{transform:translate(40.4711vw,40.211vh) scale(.7872)}to{transform:translate(41.3892vw,99vh) scale(.7872)}}.snow:nth-child(45){opacity:1.4094;transform:translate(79.7869vw,-10px) scale(.8623);animation:fall-45 26s -12s linear infinite}@keyframes fall-45{52.056%{transform:translate(71.5987vw,52.056vh) scale(.8623)}to{transform:translate(75.6928vw,99vh) scale(.8623)}}.snow:nth-child(46){opacity:.1478;transform:translate(43.3552vw,-10px) scale(.0765);animation:fall-46 16s -27s linear infinite}@keyframes fall-46{33.233%{transform:translate(34.7831vw,33.233vh) scale(.0765)}to{transform:translate(39.06915vw,99vh) scale(.0765)}}.snow:nth-child(47){opacity:1.1544;transform:translate(.6052vw,-10px) scale(.2685);animation:fall-47 15s -10s linear infinite}@keyframes fall-47{61.28%{transform:translate(-2.0221vw,61.28vh) scale(.2685)}to{transform:translate(-.70845vw,99vh) scale(.2685)}}.snow:nth-child(48){opacity:1.1024;transform:translate(82.5739vw,-10px) scale(.4);animation:fall-48 18s -7s linear infinite}@keyframes fall-48{77.828%{transform:translate(76.6378vw,77.828vh) scale(.4)}to{transform:translate(79.60585vw,99vh) scale(.4)}}.snow:nth-child(49){opacity:1.3906;transform:translate(80.5811vw,-10px) scale(.4972);animation:fall-49 17s -23s linear infinite}@keyframes fall-49{65.564%{transform:translate(83.1211vw,65.564vh) scale(.4972)}to{transform:translate(81.8511vw,99vh) scale(.4972)}}.snow:nth-child(50){opacity:1.5146;transform:translate(37.5204vw,-10px) scale(.8942);animation:fall-50 18s -24s linear infinite}@keyframes fall-50{32.719%{transform:translate(41.6958vw,32.719vh) scale(.8942)}to{transform:translate(39.6081vw,99vh) scale(.8942)}}.snow:nth-child(51){opacity:.5518;transform:translate(10.4892vw,-10px) scale(.9854);animation:fall-51 14s -24s linear infinite}@keyframes fall-51{54.779%{transform:translate(13.3886vw,54.779vh) scale(.9854)}to{transform:translate(11.9389vw,99vh) scale(.9854)}}.snow:nth-child(52){opacity:1.5798;transform:translate(81.1271vw,-10px) scale(.4726);animation:fall-52 19s -26s linear infinite}@keyframes fall-52{59.883%{transform:translate(73.39vw,59.883vh) scale(.4726)}to{transform:translate(77.25855vw,99vh) scale(.4726)}}.snow:nth-child(53){opacity:1.3472;transform:translate(83.6479vw,-10px) scale(.6627);animation:fall-53 14s -3s linear infinite}@keyframes fall-53{46.214%{transform:translate(82.8914vw,46.214vh) scale(.6627)}to{transform:translate(83.26965vw,99vh) scale(.6627)}}.snow:nth-child(54){opacity:1.2122;transform:translate(22.8536vw,-10px) scale(.5807);animation:fall-54 11s -28s linear infinite}@keyframes fall-54{58.705%{transform:translate(18.0382vw,58.705vh) scale(.5807)}to{transform:translate(20.4459vw,99vh) scale(.5807)}}.snow:nth-child(55){opacity:.3264;transform:translate(64.0229vw,-10px) scale(.8282);animation:fall-55 13s -11s linear infinite}@keyframes fall-55{49.395%{transform:translate(56.1682vw,49.395vh) scale(.8282)}to{transform:translate(60.09555vw,99vh) scale(.8282)}}.snow:nth-child(56){opacity:1.1202;transform:translate(73.2507vw,-10px) scale(.1983);animation:fall-56 22s -6s linear infinite}@keyframes fall-56{41.631%{transform:translate(77.1786vw,41.631vh) scale(.1983)}to{transform:translate(75.21465vw,99vh) scale(.1983)}}.snow:nth-child(57){opacity:1.6328;transform:translate(81.5841vw,-10px) scale(.3318);animation:fall-57 23s -12s linear infinite}@keyframes fall-57{37.495%{transform:translate(81.1288vw,37.495vh) scale(.3318)}to{transform:translate(81.35645vw,99vh) scale(.3318)}}.snow:nth-child(58){opacity:.0866;transform:translate(88.8016vw,-10px) scale(.5949);animation:fall-58 30s -19s linear infinite}@keyframes fall-58{74.189%{transform:translate(83.4029vw,74.189vh) scale(.5949)}to{transform:translate(86.10225vw,99vh) scale(.5949)}}.snow:nth-child(59){opacity:1.6744;transform:translate(54.2186vw,-10px) scale(.8536);animation:fall-59 16s -6s linear infinite}@keyframes fall-59{39.657%{transform:translate(63.2899vw,39.657vh) scale(.8536)}to{transform:translate(58.75425vw,99vh) scale(.8536)}}.snow:nth-child(60){opacity:1.3034;transform:translate(22.8026vw,-10px) scale(.0802);animation:fall-60 15s -5s linear infinite}@keyframes fall-60{74.218%{transform:translate(13.9069vw,74.218vh) scale(.0802)}to{transform:translate(18.35475vw,99vh) scale(.0802)}}.snow:nth-child(61){opacity:1.4294;transform:translate(59.7481vw,-10px) scale(.622);animation:fall-61 28s -13s linear infinite}@keyframes fall-61{43.796%{transform:translate(64.2379vw,43.796vh) scale(.622)}to{transform:translate(61.993vw,99vh) scale(.622)}}.snow:nth-child(62){opacity:1.8256;transform:translate(39.0276vw,-10px) scale(.3182);animation:fall-62 17s -19s linear infinite}@keyframes fall-62{38.072%{transform:translate(45.5652vw,38.072vh) scale(.3182)}to{transform:translate(42.2964vw,99vh) scale(.3182)}}.snow:nth-child(63){opacity:.259;transform:translate(66.7774vw,-10px) scale(.0449);animation:fall-63 23s -30s linear infinite}@keyframes fall-63{62.684%{transform:translate(65.9639vw,62.684vh) scale(.0449)}to{transform:translate(66.37065vw,99vh) scale(.0449)}}.snow:nth-child(64){opacity:.6566;transform:translate(58.582vw,-10px) scale(.0007);animation:fall-64 28s -18s linear infinite}@keyframes fall-64{45.701%{transform:translate(62.5929vw,45.701vh) scale(.0007)}to{transform:translate(60.58745vw,99vh) scale(.0007)}}.snow:nth-child(65){opacity:.7914;transform:translate(63.4737vw,-10px) scale(.4453);animation:fall-65 21s -22s linear infinite}@keyframes fall-65{67.889%{transform:translate(69.8943vw,67.889vh) scale(.4453)}to{transform:translate(66.684vw,99vh) scale(.4453)}}.snow:nth-child(66){opacity:.1322;transform:translate(38.1361vw,-10px) scale(.948);animation:fall-66 21s -19s linear infinite}@keyframes fall-66{51.555%{transform:translate(33.3448vw,51.555vh) scale(.948)}to{transform:translate(35.74045vw,99vh) scale(.948)}}.snow:nth-child(67){opacity:1.9822;transform:translate(3.1655vw,-10px) scale(.2819);animation:fall-67 27s -22s linear infinite}@keyframes fall-67{43.673%{transform:translate(8.1663vw,43.673vh) scale(.2819)}to{transform:translate(5.6659vw,99vh) scale(.2819)}}.snow:nth-child(68){opacity:.4282;transform:translate(74.3139vw,-10px) scale(.4324);animation:fall-68 26s -16s linear infinite}@keyframes fall-68{56.355%{transform:translate(64.6592vw,56.355vh) scale(.4324)}to{transform:translate(69.48655vw,99vh) scale(.4324)}}.snow:nth-child(69){opacity:.8464;transform:translate(76.0924vw,-10px) scale(.4279);animation:fall-69 12s -23s linear infinite}@keyframes fall-69{60.82%{transform:translate(78.2312vw,60.82vh) scale(.4279)}to{transform:translate(77.1618vw,99vh) scale(.4279)}}.snow:nth-child(70){opacity:.4632;transform:translate(71.9739vw,-10px) scale(.2427);animation:fall-70 26s -22s linear infinite}@keyframes fall-70{49.885%{transform:translate(70.8223vw,49.885vh) scale(.2427)}to{transform:translate(71.3981vw,99vh) scale(.2427)}}.snow:nth-child(71){opacity:1.8326;transform:translate(6.0911vw,-10px) scale(.8508);animation:fall-71 26s -1s linear infinite}@keyframes fall-71{42.761%{transform:translate(-2.0047vw,42.761vh) scale(.8508)}to{transform:translate(2.0432vw,99vh) scale(.8508)}}.snow:nth-child(72){opacity:.5914;transform:translate(78.4947vw,-10px) scale(.5516);animation:fall-72 14s -11s linear infinite}@keyframes fall-72{41.555%{transform:translate(79.779vw,41.555vh) scale(.5516)}to{transform:translate(79.13685vw,99vh) scale(.5516)}}.snow:nth-child(73){opacity:1.1922;transform:translate(71.6651vw,-10px) scale(.0284);animation:fall-73 28s -16s linear infinite}@keyframes fall-73{65.338%{transform:translate(76.8297vw,65.338vh) scale(.0284)}to{transform:translate(74.2474vw,99vh) scale(.0284)}}.snow:nth-child(74){opacity:.491;transform:translate(23.0366vw,-10px) scale(.0417);animation:fall-74 24s -1s linear infinite}@keyframes fall-74{36.92%{transform:translate(19.746vw,36.92vh) scale(.0417)}to{transform:translate(21.3913vw,99vh) scale(.0417)}}.snow:nth-child(75){opacity:1.8282;transform:translate(32.7621vw,-10px) scale(.4145);animation:fall-75 26s -25s linear infinite}@keyframes fall-75{61.206%{transform:translate(35.4933vw,61.206vh) scale(.4145)}to{transform:translate(34.1277vw,99vh) scale(.4145)}}.snow:nth-child(76){opacity:.9866;transform:translate(76.2642vw,-10px) scale(.9058);animation:fall-76 10s -24s linear infinite}@keyframes fall-76{43.64%{transform:translate(83.8307vw,43.64vh) scale(.9058)}to{transform:translate(80.04745vw,99vh) scale(.9058)}}.snow:nth-child(77){opacity:.3;transform:translate(21.2247vw,-10px) scale(.0602);animation:fall-77 26s -1s linear infinite}@keyframes fall-77{57.549%{transform:translate(28.6857vw,57.549vh) scale(.0602)}to{transform:translate(24.9552vw,99vh) scale(.0602)}}.snow:nth-child(78){opacity:.3614;transform:translate(92.323vw,-10px) scale(.7208);animation:fall-78 28s -5s linear infinite}@keyframes fall-78{77.655%{transform:translate(96.102vw,77.655vh) scale(.7208)}to{transform:translate(94.2125vw,99vh) scale(.7208)}}.snow:nth-child(79){opacity:.6966;transform:translate(18.0225vw,-10px) scale(.1782);animation:fall-79 27s -21s linear infinite}@keyframes fall-79{32.826%{transform:translate(24.3566vw,32.826vh) scale(.1782)}to{transform:translate(21.18955vw,99vh) scale(.1782)}}.snow:nth-child(80){opacity:1.7184;transform:translate(26.3963vw,-10px) scale(.5912);animation:fall-80 28s -3s linear infinite}@keyframes fall-80{37.678%{transform:translate(27.9288vw,37.678vh) scale(.5912)}to{transform:translate(27.16255vw,99vh) scale(.5912)}}.snow:nth-child(81){opacity:1.2874;transform:translate(70.2876vw,-10px) scale(.9818);animation:fall-81 10s -14s linear infinite}@keyframes fall-81{73.461%{transform:translate(60.767vw,73.461vh) scale(.9818)}to{transform:translate(65.5273vw,99vh) scale(.9818)}}.snow:nth-child(82){opacity:1.653;transform:translate(96.3705vw,-10px) scale(.4209);animation:fall-82 28s -21s linear infinite}@keyframes fall-82{45.109%{transform:translate(93.4228vw,45.109vh) scale(.4209)}to{transform:translate(94.89665vw,99vh) scale(.4209)}}.snow:nth-child(83){opacity:1.703;transform:translate(23.9082vw,-10px) scale(.2668);animation:fall-83 29s -8s linear infinite}@keyframes fall-83{69.719%{transform:translate(32.5658vw,69.719vh) scale(.2668)}to{transform:translate(28.237vw,99vh) scale(.2668)}}.snow:nth-child(84){opacity:.7394;transform:translate(10.9591vw,-10px) scale(.6573);animation:fall-84 26s -18s linear infinite}@keyframes fall-84{39.083%{transform:translate(1.0719vw,39.083vh) scale(.6573)}to{transform:translate(6.0155vw,99vh) scale(.6573)}}.snow:nth-child(85){opacity:1.7394;transform:translate(63.1816vw,-10px) scale(.8941);animation:fall-85 21s -13s linear infinite}@keyframes fall-85{67.8%{transform:translate(59.2272vw,67.8vh) scale(.8941)}to{transform:translate(61.2044vw,99vh) scale(.8941)}}.snow:nth-child(86){opacity:.981;transform:translate(61.8525vw,-10px) scale(.1641);animation:fall-86 26s -2s linear infinite}@keyframes fall-86{59.873%{transform:translate(59.7107vw,59.873vh) scale(.1641)}to{transform:translate(60.7816vw,99vh) scale(.1641)}}.snow:nth-child(87){opacity:1.576;transform:translate(91.0489vw,-10px) scale(.1434);animation:fall-87 24s -6s linear infinite}@keyframes fall-87{35.954%{transform:translate(95.4503vw,35.954vh) scale(.1434)}to{transform:translate(93.2496vw,99vh) scale(.1434)}}.snow:nth-child(88){opacity:1.3674;transform:translate(55.8618vw,-10px) scale(.8245);animation:fall-88 14s -19s linear infinite}@keyframes fall-88{53.265%{transform:translate(54.0284vw,53.265vh) scale(.8245)}to{transform:translate(54.9451vw,99vh) scale(.8245)}}.snow:nth-child(89){opacity:1.3868;transform:translate(58.1866vw,-10px) scale(.5509);animation:fall-89 27s -2s linear infinite}@keyframes fall-89{38.514%{transform:translate(55.575vw,38.514vh) scale(.5509)}to{transform:translate(56.8808vw,99vh) scale(.5509)}}.snow:nth-child(90){opacity:.7672;transform:translate(38.8341vw,-10px) scale(.0532);animation:fall-90 12s -5s linear infinite}@keyframes fall-90{71.822%{transform:translate(48.0606vw,71.822vh) scale(.0532)}to{transform:translate(43.44735vw,99vh) scale(.0532)}}.snow:nth-child(91){opacity:1.5722;transform:translate(87.8629vw,-10px) scale(.7461);animation:fall-91 10s -19s linear infinite}@keyframes fall-91{31.951%{transform:translate(84.9924vw,31.951vh) scale(.7461)}to{transform:translate(86.42765vw,99vh) scale(.7461)}}.snow:nth-child(92){opacity:1.118;transform:translate(98.7241vw,-10px) scale(.5287);animation:fall-92 15s -19s linear infinite}@keyframes fall-92{35.183%{transform:translate(89.9858vw,35.183vh) scale(.5287)}to{transform:translate(94.35495vw,99vh) scale(.5287)}}.snow:nth-child(93){opacity:.7564;transform:translate(2.8173vw,-10px) scale(.8163);animation:fall-93 29s -7s linear infinite}@keyframes fall-93{75.75%{transform:translate(2.2391vw,75.75vh) scale(.8163)}to{transform:translate(2.5282vw,99vh) scale(.8163)}}.snow:nth-child(94){opacity:1.9886;transform:translate(56.9224vw,-10px) scale(.9588);animation:fall-94 19s -23s linear infinite}@keyframes fall-94{73.66%{transform:translate(52.7158vw,73.66vh) scale(.9588)}to{transform:translate(54.8191vw,99vh) scale(.9588)}}.snow:nth-child(95){opacity:.9028;transform:translate(15.8343vw,-10px) scale(.3551);animation:fall-95 24s -1s linear infinite}@keyframes fall-95{55.493%{transform:translate(15.7756vw,55.493vh) scale(.3551)}to{transform:translate(15.80495vw,99vh) scale(.3551)}}.snow:nth-child(96){opacity:1.079;transform:translate(27.0108vw,-10px) scale(.3969);animation:fall-96 28s -13s linear infinite}@keyframes fall-96{40.191%{transform:translate(19.1363vw,40.191vh) scale(.3969)}to{transform:translate(23.07355vw,99vh) scale(.3969)}}.snow:nth-child(97){opacity:.665;transform:translate(11.5108vw,-10px) scale(.7275);animation:fall-97 27s -22s linear infinite}@keyframes fall-97{74.806%{transform:translate(16.1426vw,74.806vh) scale(.7275)}to{transform:translate(13.8267vw,99vh) scale(.7275)}}.snow:nth-child(98){opacity:.2732;transform:translate(43.4151vw,-10px) scale(.7705);animation:fall-98 19s -9s linear infinite}@keyframes fall-98{77.21%{transform:translate(50.7654vw,77.21vh) scale(.7705)}to{transform:translate(47.09025vw,99vh) scale(.7705)}}.snow:nth-child(99){opacity:1.6964;transform:translate(96.5482vw,-10px) scale(.1725);animation:fall-99 10s -6s linear infinite}@keyframes fall-99{74.798%{transform:translate(102.8522vw,74.798vh) scale(.1725)}to{transform:translate(99.7002vw,99vh) scale(.1725)}}.snow:nth-child(100){opacity:.3948;transform:translate(39.6185vw,-10px) scale(.2995);animation:fall-100 10s -10s linear infinite}@keyframes fall-100{33.124%{transform:translate(46.6981vw,33.124vh) scale(.2995)}to{transform:translate(43.1583vw,99vh) scale(.2995)}}.snow:nth-child(101){opacity:1.7538;transform:translate(17.0121vw,-10px) scale(.8748);animation:fall-101 29s -15s linear infinite}@keyframes fall-101{61.102%{transform:translate(15.3765vw,61.102vh) scale(.8748)}to{transform:translate(16.1943vw,99vh) scale(.8748)}}.snow:nth-child(102){opacity:.0162;transform:translate(87.6459vw,-10px) scale(.0195);animation:fall-102 21s -4s linear infinite}@keyframes fall-102{68.585%{transform:translate(87.9177vw,68.585vh) scale(.0195)}to{transform:translate(87.7818vw,99vh) scale(.0195)}}.snow:nth-child(103){opacity:.316;transform:translate(28.0887vw,-10px) scale(.4953);animation:fall-103 11s -24s linear infinite}@keyframes fall-103{64.527%{transform:translate(35.2686vw,64.527vh) scale(.4953)}to{transform:translate(31.67865vw,99vh) scale(.4953)}}.snow:nth-child(104){opacity:1.5228;transform:translate(19.1022vw,-10px) scale(.4905);animation:fall-104 18s -14s linear infinite}@keyframes fall-104{58.672%{transform:translate(19.2732vw,58.672vh) scale(.4905)}to{transform:translate(19.1877vw,99vh) scale(.4905)}}.snow:nth-child(105){opacity:.913;transform:translate(41.9666vw,-10px) scale(.6809);animation:fall-105 30s -16s linear infinite}@keyframes fall-105{68.954%{transform:translate(45.2181vw,68.954vh) scale(.6809)}to{transform:translate(43.59235vw,99vh) scale(.6809)}}.snow:nth-child(106){opacity:.8794;transform:translate(77.2628vw,-10px) scale(.4394);animation:fall-106 27s -9s linear infinite}@keyframes fall-106{61.149%{transform:translate(74.2489vw,61.149vh) scale(.4394)}to{transform:translate(75.75585vw,99vh) scale(.4394)}}.snow:nth-child(107){opacity:1.1898;transform:translate(55.6098vw,-10px) scale(.3865);animation:fall-107 18s -8s linear infinite}@keyframes fall-107{78.904%{transform:translate(63.9911vw,78.904vh) scale(.3865)}to{transform:translate(59.80045vw,99vh) scale(.3865)}}.snow:nth-child(108){opacity:.439;transform:translate(28.5991vw,-10px) scale(.0146);animation:fall-108 18s -17s linear infinite}@keyframes fall-108{46.41%{transform:translate(22.5631vw,46.41vh) scale(.0146)}to{transform:translate(25.5811vw,99vh) scale(.0146)}}.snow:nth-child(109){opacity:1.2818;transform:translate(19.3909vw,-10px) scale(.0939);animation:fall-109 24s -7s linear infinite}@keyframes fall-109{74.309%{transform:translate(28.4253vw,74.309vh) scale(.0939)}to{transform:translate(23.9081vw,99vh) scale(.0939)}}.snow:nth-child(110){opacity:1.0152;transform:translate(59.8428vw,-10px) scale(.3581);animation:fall-110 20s -8s linear infinite}@keyframes fall-110{57.336%{transform:translate(69.2105vw,57.336vh) scale(.3581)}to{transform:translate(64.52665vw,99vh) scale(.3581)}}.snow:nth-child(111){opacity:.711;transform:translate(18.8409vw,-10px) scale(.7971);animation:fall-111 13s -23s linear infinite}@keyframes fall-111{51.427%{transform:translate(16.5757vw,51.427vh) scale(.7971)}to{transform:translate(17.7083vw,99vh) scale(.7971)}}.snow:nth-child(112){opacity:1.457;transform:translate(20.5098vw,-10px) scale(.1271);animation:fall-112 29s -21s linear infinite}@keyframes fall-112{49.339%{transform:translate(28.9147vw,49.339vh) scale(.1271)}to{transform:translate(24.71225vw,99vh) scale(.1271)}}.snow:nth-child(113){opacity:.3182;transform:translate(74.9239vw,-10px) scale(.0147);animation:fall-113 18s -13s linear infinite}@keyframes fall-113{33.83%{transform:translate(66.8077vw,33.83vh) scale(.0147)}to{transform:translate(70.8658vw,99vh) scale(.0147)}}.snow:nth-child(114){opacity:.2828;transform:translate(39.5832vw,-10px) scale(.1658);animation:fall-114 25s -28s linear infinite}@keyframes fall-114{77.449%{transform:translate(32.0035vw,77.449vh) scale(.1658)}to{transform:translate(35.79335vw,99vh) scale(.1658)}}.snow:nth-child(115){opacity:.4894;transform:translate(19.4916vw,-10px) scale(.148);animation:fall-115 25s -1s linear infinite}@keyframes fall-115{46.352%{transform:translate(25.7426vw,46.352vh) scale(.148)}to{transform:translate(22.6171vw,99vh) scale(.148)}}.snow:nth-child(116){opacity:1.991;transform:translate(40.9203vw,-10px) scale(.3897);animation:fall-116 12s -8s linear infinite}@keyframes fall-116{77.159%{transform:translate(45.5321vw,77.159vh) scale(.3897)}to{transform:translate(43.2262vw,99vh) scale(.3897)}}.snow:nth-child(117){opacity:.266;transform:translate(.1477vw,-10px) scale(.9838);animation:fall-117 12s -25s linear infinite}@keyframes fall-117{79.437%{transform:translate(3.9377vw,79.437vh) scale(.9838)}to{transform:translate(2.0427vw,99vh) scale(.9838)}}.snow:nth-child(118){opacity:.6066;transform:translate(27.2408vw,-10px) scale(.5845);animation:fall-118 30s -2s linear infinite}@keyframes fall-118{54.502%{transform:translate(31.968vw,54.502vh) scale(.5845)}to{transform:translate(29.6044vw,99vh) scale(.5845)}}.snow:nth-child(119){opacity:1.8506;transform:translate(80.2161vw,-10px) scale(.407);animation:fall-119 29s -27s linear infinite}@keyframes fall-119{75.755%{transform:translate(85.8461vw,75.755vh) scale(.407)}to{transform:translate(83.0311vw,99vh) scale(.407)}}.snow:nth-child(120){opacity:.4674;transform:translate(85.0893vw,-10px) scale(.79);animation:fall-120 27s -22s linear infinite}@keyframes fall-120{63.573%{transform:translate(88.3909vw,63.573vh) scale(.79)}to{transform:translate(86.7401vw,99vh) scale(.79)}}.snow:nth-child(121){opacity:1.9578;transform:translate(53.1553vw,-10px) scale(.5897);animation:fall-121 14s -23s linear infinite}@keyframes fall-121{75.525%{transform:translate(58.5239vw,75.525vh) scale(.5897)}to{transform:translate(55.8396vw,99vh) scale(.5897)}}.snow:nth-child(122){opacity:.7754;transform:translate(94.4846vw,-10px) scale(.7166);animation:fall-122 26s -16s linear infinite}@keyframes fall-122{54.188%{transform:translate(100.2156vw,54.188vh) scale(.7166)}to{transform:translate(97.3501vw,99vh) scale(.7166)}}.snow:nth-child(123){opacity:1.5888;transform:translate(91.5856vw,-10px) scale(.2566);animation:fall-123 10s -28s linear infinite}@keyframes fall-123{78.482%{transform:translate(90.6522vw,78.482vh) scale(.2566)}to{transform:translate(91.1189vw,99vh) scale(.2566)}}.snow:nth-child(124){opacity:.0056;transform:translate(24.4144vw,-10px) scale(.8456);animation:fall-124 12s -19s linear infinite}@keyframes fall-124{65.152%{transform:translate(18.2925vw,65.152vh) scale(.8456)}to{transform:translate(21.35345vw,99vh) scale(.8456)}}.snow:nth-child(125){opacity:.9318;transform:translate(73.4473vw,-10px) scale(.2153);animation:fall-125 14s -18s linear infinite}@keyframes fall-125{41.37%{transform:translate(82.8591vw,41.37vh) scale(.2153)}to{transform:translate(78.1532vw,99vh) scale(.2153)}}.snow:nth-child(126){opacity:1.7738;transform:translate(9.3881vw,-10px) scale(.229);animation:fall-126 19s -13s linear infinite}@keyframes fall-126{60.306%{transform:translate(9.5842vw,60.306vh) scale(.229)}to{transform:translate(9.48615vw,99vh) scale(.229)}}.snow:nth-child(127){opacity:.7002;transform:translate(1.1969vw,-10px) scale(.0989);animation:fall-127 28s -28s linear infinite}@keyframes fall-127{60.754%{transform:translate(-5.3365vw,60.754vh) scale(.0989)}to{transform:translate(-2.0698vw,99vh) scale(.0989)}}.snow:nth-child(128){opacity:.8522;transform:translate(79.87vw,-10px) scale(.7399);animation:fall-128 16s -6s linear infinite}@keyframes fall-128{56.567%{transform:translate(85.2671vw,56.567vh) scale(.7399)}to{transform:translate(82.56855vw,99vh) scale(.7399)}}.snow:nth-child(129){opacity:1.261;transform:translate(96.9778vw,-10px) scale(.0938);animation:fall-129 11s -19s linear infinite}@keyframes fall-129{61.554%{transform:translate(90.3859vw,61.554vh) scale(.0938)}to{transform:translate(93.68185vw,99vh) scale(.0938)}}.snow:nth-child(130){opacity:.3316;transform:translate(50.063vw,-10px) scale(.9647);animation:fall-130 24s -20s linear infinite}@keyframes fall-130{38.723%{transform:translate(57.8351vw,38.723vh) scale(.9647)}to{transform:translate(53.94905vw,99vh) scale(.9647)}}.snow:nth-child(131){opacity:1.2962;transform:translate(85.0811vw,-10px) scale(.298);animation:fall-131 18s -1s linear infinite}@keyframes fall-131{55.127%{transform:translate(92.5508vw,55.127vh) scale(.298)}to{transform:translate(88.81595vw,99vh) scale(.298)}}.snow:nth-child(132){opacity:.9876;transform:translate(.0506vw,-10px) scale(.5247);animation:fall-132 29s -22s linear infinite}@keyframes fall-132{46.231%{transform:translate(-4.2532vw,46.231vh) scale(.5247)}to{transform:translate(-2.1013vw,99vh) scale(.5247)}}.snow:nth-child(133){opacity:1.4522;transform:translate(74.9607vw,-10px) scale(.3117);animation:fall-133 29s -27s linear infinite}@keyframes fall-133{33.069%{transform:translate(72.0944vw,33.069vh) scale(.3117)}to{transform:translate(73.52755vw,99vh) scale(.3117)}}.snow:nth-child(134){opacity:1.0746;transform:translate(61.0646vw,-10px) scale(.582);animation:fall-134 12s -7s linear infinite}@keyframes fall-134{68.609%{transform:translate(56.4109vw,68.609vh) scale(.582)}to{transform:translate(58.73775vw,99vh) scale(.582)}}.snow:nth-child(135){opacity:1.0848;transform:translate(48.2057vw,-10px) scale(.5368);animation:fall-135 19s -15s linear infinite}@keyframes fall-135{30.702%{transform:translate(46.8472vw,30.702vh) scale(.5368)}to{transform:translate(47.52645vw,99vh) scale(.5368)}}.snow:nth-child(136){opacity:1.5768;transform:translate(97.9973vw,-10px) scale(.4603);animation:fall-136 29s -19s linear infinite}@keyframes fall-136{55.613%{transform:translate(96.217vw,55.613vh) scale(.4603)}to{transform:translate(97.10715vw,99vh) scale(.4603)}}.snow:nth-child(137){opacity:1.6594;transform:translate(67.2408vw,-10px) scale(.5389);animation:fall-137 15s -22s linear infinite}@keyframes fall-137{71.884%{transform:translate(77.1427vw,71.884vh) scale(.5389)}to{transform:translate(72.19175vw,99vh) scale(.5389)}}.snow:nth-child(138){opacity:1.2006;transform:translate(68.333vw,-10px) scale(.3367);animation:fall-138 19s -29s linear infinite}@keyframes fall-138{78.78%{transform:translate(58.5052vw,78.78vh) scale(.3367)}to{transform:translate(63.4191vw,99vh) scale(.3367)}}.snow:nth-child(139){opacity:.625;transform:translate(72.8229vw,-10px) scale(.0083);animation:fall-139 22s -21s linear infinite}@keyframes fall-139{49.184%{transform:translate(71.9677vw,49.184vh) scale(.0083)}to{transform:translate(72.3953vw,99vh) scale(.0083)}}.snow:nth-child(140){opacity:1.2626;transform:translate(56.8182vw,-10px) scale(.9697);animation:fall-140 14s -7s linear infinite}@keyframes fall-140{36.939%{transform:translate(56.8076vw,36.939vh) scale(.9697)}to{transform:translate(56.8129vw,99vh) scale(.9697)}}.snow:nth-child(141){opacity:.0306;transform:translate(63.6814vw,-10px) scale(.5552);animation:fall-141 24s -5s linear infinite}@keyframes fall-141{30.833%{transform:translate(73.1993vw,30.833vh) scale(.5552)}to{transform:translate(68.44035vw,99vh) scale(.5552)}}.snow:nth-child(142){opacity:.771;transform:translate(27.7688vw,-10px) scale(.9384);animation:fall-142 26s -17s linear infinite}@keyframes fall-142{31.508%{transform:translate(19.4367vw,31.508vh) scale(.9384)}to{transform:translate(23.60275vw,99vh) scale(.9384)}}.snow:nth-child(143){opacity:1.2284;transform:translate(22.6957vw,-10px) scale(.2506);animation:fall-143 23s -2s linear infinite}@keyframes fall-143{36.233%{transform:translate(31.693vw,36.233vh) scale(.2506)}to{transform:translate(27.19435vw,99vh) scale(.2506)}}.snow:nth-child(144){opacity:1.1246;transform:translate(36.1514vw,-10px) scale(.6012);animation:fall-144 20s -14s linear infinite}@keyframes fall-144{51.708%{transform:translate(38.8495vw,51.708vh) scale(.6012)}to{transform:translate(37.50045vw,99vh) scale(.6012)}}.snow:nth-child(145){opacity:1.9502;transform:translate(93.128vw,-10px) scale(.6783);animation:fall-145 27s -27s linear infinite}@keyframes fall-145{30.175%{transform:translate(95.0588vw,30.175vh) scale(.6783)}to{transform:translate(94.0934vw,99vh) scale(.6783)}}.snow:nth-child(146){opacity:1.1982;transform:translate(31.3517vw,-10px) scale(.3126);animation:fall-146 17s -3s linear infinite}@keyframes fall-146{59.883%{transform:translate(38.7487vw,59.883vh) scale(.3126)}to{transform:translate(35.0502vw,99vh) scale(.3126)}}.snow:nth-child(147){opacity:1.2394;transform:translate(19.5842vw,-10px) scale(.8307);animation:fall-147 26s -7s linear infinite}@keyframes fall-147{38.699%{transform:translate(24.3767vw,38.699vh) scale(.8307)}to{transform:translate(21.98045vw,99vh) scale(.8307)}}.snow:nth-child(148){opacity:.1988;transform:translate(23.2885vw,-10px) scale(.7258);animation:fall-148 13s -3s linear infinite}@keyframes fall-148{44.494%{transform:translate(29.2456vw,44.494vh) scale(.7258)}to{transform:translate(26.26705vw,99vh) scale(.7258)}}.snow:nth-child(149){opacity:1.2586;transform:translate(27.5976vw,-10px) scale(.124);animation:fall-149 17s -22s linear infinite}@keyframes fall-149{70.833%{transform:translate(31.0784vw,70.833vh) scale(.124)}to{transform:translate(29.338vw,99vh) scale(.124)}}.snow:nth-child(150){opacity:1.8584;transform:translate(61.9033vw,-10px) scale(.1004);animation:fall-150 18s -9s linear infinite}@keyframes fall-150{44.652%{transform:translate(67.4715vw,44.652vh) scale(.1004)}to{transform:translate(64.6874vw,99vh) scale(.1004)}}.snow:nth-child(151){opacity:1.2158;transform:translate(84.7921vw,-10px) scale(.9096);animation:fall-151 26s -16s linear infinite}@keyframes fall-151{49.969%{transform:translate(76.2346vw,49.969vh) scale(.9096)}to{transform:translate(80.51335vw,99vh) scale(.9096)}}.snow:nth-child(152){opacity:1.3984;transform:translate(13.4335vw,-10px) scale(.0057);animation:fall-152 26s -11s linear infinite}@keyframes fall-152{59.861%{transform:translate(19.849vw,59.861vh) scale(.0057)}to{transform:translate(16.64125vw,99vh) scale(.0057)}}.snow:nth-child(153){opacity:.1788;transform:translate(23.843vw,-10px) scale(.2682);animation:fall-153 21s -21s linear infinite}@keyframes fall-153{40.96%{transform:translate(16.1133vw,40.96vh) scale(.2682)}to{transform:translate(19.97815vw,99vh) scale(.2682)}}.snow:nth-child(154){opacity:1.5966;transform:translate(29.8865vw,-10px) scale(.8796);animation:fall-154 22s -4s linear infinite}@keyframes fall-154{63.156%{transform:translate(26.9127vw,63.156vh) scale(.8796)}to{transform:translate(28.3996vw,99vh) scale(.8796)}}.snow:nth-child(155){opacity:1.2336;transform:translate(91.7186vw,-10px) scale(.775);animation:fall-155 17s -25s linear infinite}@keyframes fall-155{34.722%{transform:translate(88.4048vw,34.722vh) scale(.775)}to{transform:translate(90.0617vw,99vh) scale(.775)}}.snow:nth-child(156){opacity:1.7968;transform:translate(4.2562vw,-10px) scale(.2503);animation:fall-156 12s -26s linear infinite}@keyframes fall-156{30.532%{transform:translate(11.9332vw,30.532vh) scale(.2503)}to{transform:translate(8.0947vw,99vh) scale(.2503)}}.snow:nth-child(157){opacity:1.368;transform:translate(42.4989vw,-10px) scale(.8645);animation:fall-157 27s -10s linear infinite}@keyframes fall-157{75.042%{transform:translate(50.2336vw,75.042vh) scale(.8645)}to{transform:translate(46.36625vw,99vh) scale(.8645)}}.snow:nth-child(158){opacity:1.7624;transform:translate(39.3047vw,-10px) scale(.5101);animation:fall-158 23s -5s linear infinite}@keyframes fall-158{34.514%{transform:translate(46.6389vw,34.514vh) scale(.5101)}to{transform:translate(42.9718vw,99vh) scale(.5101)}}.snow:nth-child(159){opacity:1.119;transform:translate(76.764vw,-10px) scale(.8147);animation:fall-159 30s -5s linear infinite}@keyframes fall-159{42.57%{transform:translate(76.2911vw,42.57vh) scale(.8147)}to{transform:translate(76.52755vw,99vh) scale(.8147)}}.snow:nth-child(160){opacity:1.219;transform:translate(97.3599vw,-10px) scale(.5264);animation:fall-160 19s -28s linear infinite}@keyframes fall-160{55.015%{transform:translate(103.1369vw,55.015vh) scale(.5264)}to{transform:translate(100.2484vw,99vh) scale(.5264)}}.snow:nth-child(161){opacity:.6382;transform:translate(9.8511vw,-10px) scale(.7433);animation:fall-161 24s -1s linear infinite}@keyframes fall-161{56.64%{transform:translate(15.5249vw,56.64vh) scale(.7433)}to{transform:translate(12.688vw,99vh) scale(.7433)}}.snow:nth-child(162){opacity:1.955;transform:translate(39.5354vw,-10px) scale(.5912);animation:fall-162 14s -15s linear infinite}@keyframes fall-162{48.157%{transform:translate(45.9879vw,48.157vh) scale(.5912)}to{transform:translate(42.76165vw,99vh) scale(.5912)}}.snow:nth-child(163){opacity:.4072;transform:translate(33.8956vw,-10px) scale(.8438);animation:fall-163 30s -14s linear infinite}@keyframes fall-163{46.46%{transform:translate(31.1203vw,46.46vh) scale(.8438)}to{transform:translate(32.50795vw,99vh) scale(.8438)}}.snow:nth-child(164){opacity:.282;transform:translate(94.7624vw,-10px) scale(.3118);animation:fall-164 28s -5s linear infinite}@keyframes fall-164{64.517%{transform:translate(100.829vw,64.517vh) scale(.3118)}to{transform:translate(97.7957vw,99vh) scale(.3118)}}.snow:nth-child(165){opacity:.452;transform:translate(94.6873vw,-10px) scale(.3225);animation:fall-165 30s -26s linear infinite}@keyframes fall-165{33.985%{transform:translate(84.7606vw,33.985vh) scale(.3225)}to{transform:translate(89.72395vw,99vh) scale(.3225)}}.snow:nth-child(166){opacity:1.627;transform:translate(87.961vw,-10px) scale(.551);animation:fall-166 29s -17s linear infinite}@keyframes fall-166{54.53%{transform:translate(89.9179vw,54.53vh) scale(.551)}to{transform:translate(88.93945vw,99vh) scale(.551)}}.snow:nth-child(167){opacity:.3388;transform:translate(71.1978vw,-10px) scale(.3333);animation:fall-167 21s -21s linear infinite}@keyframes fall-167{77.612%{transform:translate(67.6195vw,77.612vh) scale(.3333)}to{transform:translate(69.40865vw,99vh) scale(.3333)}}.snow:nth-child(168){opacity:.2916;transform:translate(7.8961vw,-10px) scale(.1353);animation:fall-168 22s -4s linear infinite}@keyframes fall-168{59.287%{transform:translate(2.2922vw,59.287vh) scale(.1353)}to{transform:translate(5.09415vw,99vh) scale(.1353)}}.snow:nth-child(169){opacity:1.8118;transform:translate(89.2915vw,-10px) scale(.2957);animation:fall-169 24s -6s linear infinite}@keyframes fall-169{51.238%{transform:translate(98.2223vw,51.238vh) scale(.2957)}to{transform:translate(93.7569vw,99vh) scale(.2957)}}.snow:nth-child(170){opacity:.9638;transform:translate(17.6366vw,-10px) scale(.5325);animation:fall-170 18s -8s linear infinite}@keyframes fall-170{74.988%{transform:translate(22.5889vw,74.988vh) scale(.5325)}to{transform:translate(20.11275vw,99vh) scale(.5325)}}.snow:nth-child(171){opacity:.643;transform:translate(2.5807vw,-10px) scale(.8203);animation:fall-171 14s -16s linear infinite}@keyframes fall-171{37.901%{transform:translate(-5.8094vw,37.901vh) scale(.8203)}to{transform:translate(-1.61435vw,99vh) scale(.8203)}}.snow:nth-child(172){opacity:1.5144;transform:translate(11.9669vw,-10px) scale(.7424);animation:fall-172 23s -16s linear infinite}@keyframes fall-172{35.178%{transform:translate(5.428vw,35.178vh) scale(.7424)}to{transform:translate(8.69745vw,99vh) scale(.7424)}}.snow:nth-child(173){opacity:.4922;transform:translate(29.3371vw,-10px) scale(.5146);animation:fall-173 10s -11s linear infinite}@keyframes fall-173{72.213%{transform:translate(28.396vw,72.213vh) scale(.5146)}to{transform:translate(28.86655vw,99vh) scale(.5146)}}.snow:nth-child(174){opacity:1.8386;transform:translate(33.2768vw,-10px) scale(.3445);animation:fall-174 10s -12s linear infinite}@keyframes fall-174{77.633%{transform:translate(25.3416vw,77.633vh) scale(.3445)}to{transform:translate(29.3092vw,99vh) scale(.3445)}}.snow:nth-child(175){opacity:1.5994;transform:translate(52.8006vw,-10px) scale(.5698);animation:fall-175 19s -2s linear infinite}@keyframes fall-175{64.165%{transform:translate(59.9575vw,64.165vh) scale(.5698)}to{transform:translate(56.37905vw,99vh) scale(.5698)}}.snow:nth-child(176){opacity:.79;transform:translate(61.9916vw,-10px) scale(.0134);animation:fall-176 25s -17s linear infinite}@keyframes fall-176{65.158%{transform:translate(59.6891vw,65.158vh) scale(.0134)}to{transform:translate(60.84035vw,99vh) scale(.0134)}}.snow:nth-child(177){opacity:.8538;transform:translate(10.789vw,-10px) scale(.2677);animation:fall-177 12s -8s linear infinite}@keyframes fall-177{69.602%{transform:translate(19.6563vw,69.602vh) scale(.2677)}to{transform:translate(15.22265vw,99vh) scale(.2677)}}.snow:nth-child(178){opacity:.8704;transform:translate(26.1841vw,-10px) scale(.815);animation:fall-178 27s -5s linear infinite}@keyframes fall-178{32.029%{transform:translate(31.6727vw,32.029vh) scale(.815)}to{transform:translate(28.9284vw,99vh) scale(.815)}}.snow:nth-child(179){opacity:1.3758;transform:translate(3.9855vw,-10px) scale(.687);animation:fall-179 13s -17s linear infinite}@keyframes fall-179{33.221%{transform:translate(7.2135vw,33.221vh) scale(.687)}to{transform:translate(5.5995vw,99vh) scale(.687)}}.snow:nth-child(180){opacity:1.7064;transform:translate(62.0628vw,-10px) scale(.9367);animation:fall-180 28s -24s linear infinite}@keyframes fall-180{39.43%{transform:translate(63.3088vw,39.43vh) scale(.9367)}to{transform:translate(62.6858vw,99vh) scale(.9367)}}.snow:nth-child(181){opacity:.9294;transform:translate(36.5617vw,-10px) scale(.0341);animation:fall-181 12s -16s linear infinite}@keyframes fall-181{58.008%{transform:translate(34.1019vw,58.008vh) scale(.0341)}to{transform:translate(35.3318vw,99vh) scale(.0341)}}.snow:nth-child(182){opacity:.76;transform:translate(53.9425vw,-10px) scale(.612);animation:fall-182 12s -24s linear infinite}@keyframes fall-182{50.69%{transform:translate(50.2107vw,50.69vh) scale(.612)}to{transform:translate(52.0766vw,99vh) scale(.612)}}.snow:nth-child(183){opacity:1.707;transform:translate(82.7649vw,-10px) scale(.2901);animation:fall-183 20s -10s linear infinite}@keyframes fall-183{40.781%{transform:translate(77.0304vw,40.781vh) scale(.2901)}to{transform:translate(79.89765vw,99vh) scale(.2901)}}.snow:nth-child(184){opacity:.5698;transform:translate(53.7554vw,-10px) scale(.1207);animation:fall-184 26s -1s linear infinite}@keyframes fall-184{64.407%{transform:translate(62.256vw,64.407vh) scale(.1207)}to{transform:translate(58.0057vw,99vh) scale(.1207)}}.snow:nth-child(185){opacity:.8366;transform:translate(21.73vw,-10px) scale(.6968);animation:fall-185 18s -30s linear infinite}@keyframes fall-185{74.025%{transform:translate(28.9821vw,74.025vh) scale(.6968)}to{transform:translate(25.35605vw,99vh) scale(.6968)}}.snow:nth-child(186){opacity:.2808;transform:translate(77.3502vw,-10px) scale(.2294);animation:fall-186 15s -24s linear infinite}@keyframes fall-186{36.725%{transform:translate(75.5031vw,36.725vh) scale(.2294)}to{transform:translate(76.42665vw,99vh) scale(.2294)}}.snow:nth-child(187){opacity:1.2226;transform:translate(37.0778vw,-10px) scale(.3881);animation:fall-187 19s -2s linear infinite}@keyframes fall-187{64.32%{transform:translate(33.4725vw,64.32vh) scale(.3881)}to{transform:translate(35.27515vw,99vh) scale(.3881)}}.snow:nth-child(188){opacity:.0846;transform:translate(.1412vw,-10px) scale(.017);animation:fall-188 12s -30s linear infinite}@keyframes fall-188{67.696%{transform:translate(9.2527vw,67.696vh) scale(.017)}to{transform:translate(4.69695vw,99vh) scale(.017)}}.snow:nth-child(189){opacity:1.7798;transform:translate(32.2303vw,-10px) scale(.4516);animation:fall-189 27s -13s linear infinite}@keyframes fall-189{52.711%{transform:translate(26.0181vw,52.711vh) scale(.4516)}to{transform:translate(29.1242vw,99vh) scale(.4516)}}.snow:nth-child(190){opacity:1.6268;transform:translate(76.3205vw,-10px) scale(.5902);animation:fall-190 26s -16s linear infinite}@keyframes fall-190{72.62%{transform:translate(67.2498vw,72.62vh) scale(.5902)}to{transform:translate(71.78515vw,99vh) scale(.5902)}}.snow:nth-child(191){opacity:.868;transform:translate(61.5085vw,-10px) scale(.5333);animation:fall-191 26s -6s linear infinite}@keyframes fall-191{71.516%{transform:translate(60.3512vw,71.516vh) scale(.5333)}to{transform:translate(60.92985vw,99vh) scale(.5333)}}.snow:nth-child(192){opacity:.348;transform:translate(26.0973vw,-10px) scale(.7786);animation:fall-192 25s -11s linear infinite}@keyframes fall-192{46.981%{transform:translate(31.9744vw,46.981vh) scale(.7786)}to{transform:translate(29.03585vw,99vh) scale(.7786)}}.snow:nth-child(193){opacity:.5186;transform:translate(5.8145vw,-10px) scale(.9249);animation:fall-193 17s -2s linear infinite}@keyframes fall-193{36.819%{transform:translate(-4.0964vw,36.819vh) scale(.9249)}to{transform:translate(.85905vw,99vh) scale(.9249)}}.snow:nth-child(194){opacity:.5972;transform:translate(24.2468vw,-10px) scale(.124);animation:fall-194 29s -3s linear infinite}@keyframes fall-194{42.979%{transform:translate(32.7447vw,42.979vh) scale(.124)}to{transform:translate(28.49575vw,99vh) scale(.124)}}.snow:nth-child(195){opacity:1.1138;transform:translate(13.6358vw,-10px) scale(.1392);animation:fall-195 19s -4s linear infinite}@keyframes fall-195{75.305%{transform:translate(20.3392vw,75.305vh) scale(.1392)}to{transform:translate(16.9875vw,99vh) scale(.1392)}}.snow:nth-child(196){opacity:.3272;transform:translate(4.3159vw,-10px) scale(.6777);animation:fall-196 30s -23s linear infinite}@keyframes fall-196{43.754%{transform:translate(6.8067vw,43.754vh) scale(.6777)}to{transform:translate(5.5613vw,99vh) scale(.6777)}}.snow:nth-child(197){opacity:.6278;transform:translate(11.5791vw,-10px) scale(.308);animation:fall-197 10s -28s linear infinite}@keyframes fall-197{57.477%{transform:translate(6.1134vw,57.477vh) scale(.308)}to{transform:translate(8.84625vw,99vh) scale(.308)}}.snow:nth-child(198){opacity:1.1236;transform:translate(67.689vw,-10px) scale(.8413);animation:fall-198 17s -2s linear infinite}@keyframes fall-198{78.081%{transform:translate(72.5509vw,78.081vh) scale(.8413)}to{transform:translate(70.11995vw,99vh) scale(.8413)}}.snow:nth-child(199){opacity:.4742;transform:translate(50.1442vw,-10px) scale(.7835);animation:fall-199 12s -16s linear infinite}@keyframes fall-199{55.396%{transform:translate(60.0558vw,55.396vh) scale(.7835)}to{transform:translate(55.1vw,99vh) scale(.7835)}}.snow:nth-child(200){opacity:.3972;transform:translate(60.3109vw,-10px) scale(.9554);animation:fall-200 19s -5s linear infinite}@keyframes fall-200{76.255%{transform:translate(65.6501vw,76.255vh) scale(.9554)}to{transform:translate(62.9805vw,99vh) scale(.9554)}}.snow:nth-child(201){opacity:1.688;transform:translate(98.7182vw,-10px) scale(.5619);animation:fall-201 12s -11s linear infinite}@keyframes fall-201{56.021%{transform:translate(96.5032vw,56.021vh) scale(.5619)}to{transform:translate(97.6107vw,99vh) scale(.5619)}}.snow:nth-child(202){opacity:1.1944;transform:translate(21.8381vw,-10px) scale(.8016);animation:fall-202 10s -19s linear infinite}@keyframes fall-202{63.485%{transform:translate(28.0376vw,63.485vh) scale(.8016)}to{transform:translate(24.93785vw,99vh) scale(.8016)}}.snow:nth-child(203){opacity:.8044;transform:translate(49.6229vw,-10px) scale(.5658);animation:fall-203 16s -3s linear infinite}@keyframes fall-203{35.573%{transform:translate(42.1127vw,35.573vh) scale(.5658)}to{transform:translate(45.8678vw,99vh) scale(.5658)}}.snow:nth-child(204){opacity:.0762;transform:translate(74.0806vw,-10px) scale(.8431);animation:fall-204 21s -15s linear infinite}@keyframes fall-204{76.945%{transform:translate(71.6022vw,76.945vh) scale(.8431)}to{transform:translate(72.8414vw,99vh) scale(.8431)}}.snow:nth-child(205){opacity:1.6734;transform:translate(6.7771vw,-10px) scale(.0809);animation:fall-205 15s -27s linear infinite}@keyframes fall-205{32.315%{transform:translate(-1.6343vw,32.315vh) scale(.0809)}to{transform:translate(2.5714vw,99vh) scale(.0809)}}.snow:nth-child(206){opacity:.0952;transform:translate(93.0206vw,-10px) scale(.0965);animation:fall-206 12s -18s linear infinite}@keyframes fall-206{32.129%{transform:translate(89.6447vw,32.129vh) scale(.0965)}to{transform:translate(91.33265vw,99vh) scale(.0965)}}.snow:nth-child(207){opacity:1.4196;transform:translate(39.3686vw,-10px) scale(.0774);animation:fall-207 27s -6s linear infinite}@keyframes fall-207{53.908%{transform:translate(31.8379vw,53.908vh) scale(.0774)}to{transform:translate(35.60325vw,99vh) scale(.0774)}}.snow:nth-child(208){opacity:1.5942;transform:translate(18.657vw,-10px) scale(.9828);animation:fall-208 27s -5s linear infinite}@keyframes fall-208{30.531%{transform:translate(17.4639vw,30.531vh) scale(.9828)}to{transform:translate(18.06045vw,99vh) scale(.9828)}}.snow:nth-child(209){opacity:1.1962;transform:translate(86.077vw,-10px) scale(.7022);animation:fall-209 10s -12s linear infinite}@keyframes fall-209{50.909%{transform:translate(95.7394vw,50.909vh) scale(.7022)}to{transform:translate(90.9082vw,99vh) scale(.7022)}}.snow:nth-child(210){opacity:.7566;transform:translate(26.6499vw,-10px) scale(.027);animation:fall-210 11s -8s linear infinite}@keyframes fall-210{54.581%{transform:translate(26.4491vw,54.581vh) scale(.027)}to{transform:translate(26.5495vw,99vh) scale(.027)}}.snow:nth-child(211){opacity:1.7712;transform:translate(2.1004vw,-10px) scale(.781);animation:fall-211 15s -4s linear infinite}@keyframes fall-211{37.55%{transform:translate(5.2789vw,37.55vh) scale(.781)}to{transform:translate(3.68965vw,99vh) scale(.781)}}.snow:nth-child(212){opacity:1.7198;transform:translate(61.1378vw,-10px) scale(.3994);animation:fall-212 27s -9s linear infinite}@keyframes fall-212{46.506%{transform:translate(63.1087vw,46.506vh) scale(.3994)}to{transform:translate(62.12325vw,99vh) scale(.3994)}}.snow:nth-child(213){opacity:1.3696;transform:translate(67.2342vw,-10px) scale(.4405);animation:fall-213 25s -24s linear infinite}@keyframes fall-213{73.894%{transform:translate(58.8524vw,73.894vh) scale(.4405)}to{transform:translate(63.0433vw,99vh) scale(.4405)}}.snow:nth-child(214){opacity:1.8892;transform:translate(29.9378vw,-10px) scale(.0473);animation:fall-214 29s -5s linear infinite}@keyframes fall-214{34.616%{transform:translate(25.9485vw,34.616vh) scale(.0473)}to{transform:translate(27.94315vw,99vh) scale(.0473)}}.snow:nth-child(215){opacity:1.0488;transform:translate(46.5668vw,-10px) scale(.943);animation:fall-215 14s -2s linear infinite}@keyframes fall-215{74.91%{transform:translate(37.6062vw,74.91vh) scale(.943)}to{transform:translate(42.0865vw,99vh) scale(.943)}}.snow:nth-child(216){opacity:1.0588;transform:translate(29.016vw,-10px) scale(.1359);animation:fall-216 10s -18s linear infinite}@keyframes fall-216{44.056%{transform:translate(32.7452vw,44.056vh) scale(.1359)}to{transform:translate(30.8806vw,99vh) scale(.1359)}}.snow:nth-child(217){opacity:1.1324;transform:translate(5.3439vw,-10px) scale(.7461);animation:fall-217 13s -8s linear infinite}@keyframes fall-217{32.819%{transform:translate(-.2921vw,32.819vh) scale(.7461)}to{transform:translate(2.5259vw,99vh) scale(.7461)}}.snow:nth-child(218){opacity:1.3162;transform:translate(59.4529vw,-10px) scale(.325);animation:fall-218 25s -14s linear infinite}@keyframes fall-218{69.112%{transform:translate(51.1803vw,69.112vh) scale(.325)}to{transform:translate(55.3166vw,99vh) scale(.325)}}.snow:nth-child(219){opacity:1.549;transform:translate(48.2713vw,-10px) scale(.3659);animation:fall-219 30s -9s linear infinite}@keyframes fall-219{32.335%{transform:translate(45.5251vw,32.335vh) scale(.3659)}to{transform:translate(46.8982vw,99vh) scale(.3659)}}.snow:nth-child(220){opacity:.8328;transform:translate(65.2332vw,-10px) scale(.461);animation:fall-220 13s -29s linear infinite}@keyframes fall-220{77.665%{transform:translate(68.732vw,77.665vh) scale(.461)}to{transform:translate(66.9826vw,99vh) scale(.461)}}.snow:nth-child(221){opacity:.3272;transform:translate(59.0561vw,-10px) scale(.1637);animation:fall-221 10s -4s linear infinite}@keyframes fall-221{63.478%{transform:translate(56.5615vw,63.478vh) scale(.1637)}to{transform:translate(57.8088vw,99vh) scale(.1637)}}.snow:nth-child(222){opacity:1.3248;transform:translate(27.8011vw,-10px) scale(.8139);animation:fall-222 23s -10s linear infinite}@keyframes fall-222{65.132%{transform:translate(32.6349vw,65.132vh) scale(.8139)}to{transform:translate(30.218vw,99vh) scale(.8139)}}.snow:nth-child(223){opacity:.7618;transform:translate(93.7725vw,-10px) scale(.8488);animation:fall-223 17s -22s linear infinite}@keyframes fall-223{76.897%{transform:translate(86.2235vw,76.897vh) scale(.8488)}to{transform:translate(89.998vw,99vh) scale(.8488)}}.snow:nth-child(224){opacity:1.8998;transform:translate(54.9304vw,-10px) scale(.3525);animation:fall-224 15s -27s linear infinite}@keyframes fall-224{30.301%{transform:translate(46.1801vw,30.301vh) scale(.3525)}to{transform:translate(50.55525vw,99vh) scale(.3525)}}.snow:nth-child(225){opacity:1.83;transform:translate(22.9518vw,-10px) scale(.5006);animation:fall-225 19s -22s linear infinite}@keyframes fall-225{47.016%{transform:translate(16.8077vw,47.016vh) scale(.5006)}to{transform:translate(19.87975vw,99vh) scale(.5006)}}.snow:nth-child(226){opacity:.8474;transform:translate(71.9386vw,-10px) scale(.1266);animation:fall-226 11s -3s linear infinite}@keyframes fall-226{71.465%{transform:translate(63.1711vw,71.465vh) scale(.1266)}to{transform:translate(67.55485vw,99vh) scale(.1266)}}.snow:nth-child(227){opacity:1.8624;transform:translate(68.7809vw,-10px) scale(.5818);animation:fall-227 15s -27s linear infinite}@keyframes fall-227{78.906%{transform:translate(63.2801vw,78.906vh) scale(.5818)}to{transform:translate(66.0305vw,99vh) scale(.5818)}}.snow:nth-child(228){opacity:.6464;transform:translate(65.9021vw,-10px) scale(.7442);animation:fall-228 18s -23s linear infinite}@keyframes fall-228{33.16%{transform:translate(61.0151vw,33.16vh) scale(.7442)}to{transform:translate(63.4586vw,99vh) scale(.7442)}}.snow:nth-child(229){opacity:1.3592;transform:translate(50.0603vw,-10px) scale(.0799);animation:fall-229 15s -12s linear infinite}@keyframes fall-229{43.203%{transform:translate(43.6507vw,43.203vh) scale(.0799)}to{transform:translate(46.8555vw,99vh) scale(.0799)}}.snow:nth-child(230){opacity:.1054;transform:translate(32.5721vw,-10px) scale(.3202);animation:fall-230 27s -29s linear infinite}@keyframes fall-230{45.72%{transform:translate(25.6183vw,45.72vh) scale(.3202)}to{transform:translate(29.0952vw,99vh) scale(.3202)}}.snow:nth-child(231){opacity:.9264;transform:translate(47.0136vw,-10px) scale(.8583);animation:fall-231 25s -24s linear infinite}@keyframes fall-231{37.958%{transform:translate(43.7128vw,37.958vh) scale(.8583)}to{transform:translate(45.3632vw,99vh) scale(.8583)}}.snow:nth-child(232){opacity:1.5896;transform:translate(62.337vw,-10px) scale(.5462);animation:fall-232 22s -23s linear infinite}@keyframes fall-232{78.56%{transform:translate(63.3359vw,78.56vh) scale(.5462)}to{transform:translate(62.83645vw,99vh) scale(.5462)}}.snow:nth-child(233){opacity:1.2074;transform:translate(98.1151vw,-10px) scale(.1707);animation:fall-233 23s -13s linear infinite}@keyframes fall-233{79.224%{transform:translate(100.5299vw,79.224vh) scale(.1707)}to{transform:translate(99.3225vw,99vh) scale(.1707)}}.snow:nth-child(234){opacity:.3308;transform:translate(31.0854vw,-10px) scale(.608);animation:fall-234 12s -5s linear infinite}@keyframes fall-234{46.442%{transform:translate(21.9377vw,46.442vh) scale(.608)}to{transform:translate(26.51155vw,99vh) scale(.608)}}.snow:nth-child(235){opacity:.3418;transform:translate(26.0182vw,-10px) scale(.3856);animation:fall-235 21s -4s linear infinite}@keyframes fall-235{53.995%{transform:translate(23.5086vw,53.995vh) scale(.3856)}to{transform:translate(24.7634vw,99vh) scale(.3856)}}.snow:nth-child(236){opacity:1.2664;transform:translate(68.0027vw,-10px) scale(.4573);animation:fall-236 16s -18s linear infinite}@keyframes fall-236{70.495%{transform:translate(75.2856vw,70.495vh) scale(.4573)}to{transform:translate(71.64415vw,99vh) scale(.4573)}}.snow:nth-child(237){opacity:1.68;transform:translate(94.0842vw,-10px) scale(.137);animation:fall-237 10s -5s linear infinite}@keyframes fall-237{65.39%{transform:translate(97.1391vw,65.39vh) scale(.137)}to{transform:translate(95.61165vw,99vh) scale(.137)}}.snow:nth-child(238){opacity:.184;transform:translate(52.9766vw,-10px) scale(.873);animation:fall-238 23s -18s linear infinite}@keyframes fall-238{75.813%{transform:translate(43.8364vw,75.813vh) scale(.873)}to{transform:translate(48.4065vw,99vh) scale(.873)}}.snow:nth-child(239){opacity:.584;transform:translate(87.493vw,-10px) scale(.6452);animation:fall-239 14s -18s linear infinite}@keyframes fall-239{45.176%{transform:translate(96.8744vw,45.176vh) scale(.6452)}to{transform:translate(92.1837vw,99vh) scale(.6452)}}.snow:nth-child(240){opacity:1.9344;transform:translate(39.0954vw,-10px) scale(.3679);animation:fall-240 13s -10s linear infinite}@keyframes fall-240{69.908%{transform:translate(33.4823vw,69.908vh) scale(.3679)}to{transform:translate(36.28885vw,99vh) scale(.3679)}}.snow:nth-child(241){opacity:1.3616;transform:translate(63.8764vw,-10px) scale(.5845);animation:fall-241 17s -25s linear infinite}@keyframes fall-241{63.515%{transform:translate(64.3947vw,63.515vh) scale(.5845)}to{transform:translate(64.13555vw,99vh) scale(.5845)}}.snow:nth-child(242){opacity:.471;transform:translate(57.7763vw,-10px) scale(.9102);animation:fall-242 19s -19s linear infinite}@keyframes fall-242{67.534%{transform:translate(66.3178vw,67.534vh) scale(.9102)}to{transform:translate(62.04705vw,99vh) scale(.9102)}}.snow:nth-child(243){opacity:.0758;transform:translate(29.0667vw,-10px) scale(.6421);animation:fall-243 13s -22s linear infinite}@keyframes fall-243{40.79%{transform:translate(23.8815vw,40.79vh) scale(.6421)}to{transform:translate(26.4741vw,99vh) scale(.6421)}}.snow:nth-child(244){opacity:.2318;transform:translate(35.8406vw,-10px) scale(.3886);animation:fall-244 20s -10s linear infinite}@keyframes fall-244{46.781%{transform:translate(28.6913vw,46.781vh) scale(.3886)}to{transform:translate(32.26595vw,99vh) scale(.3886)}}.snow:nth-child(245){opacity:.4946;transform:translate(62.8823vw,-10px) scale(.5847);animation:fall-245 19s -23s linear infinite}@keyframes fall-245{74.676%{transform:translate(63.9433vw,74.676vh) scale(.5847)}to{transform:translate(63.4128vw,99vh) scale(.5847)}}.snow:nth-child(246){opacity:.287;transform:translate(3.3822vw,-10px) scale(.8978);animation:fall-246 19s -8s linear infinite}@keyframes fall-246{57.974%{transform:translate(4.1575vw,57.974vh) scale(.8978)}to{transform:translate(3.76985vw,99vh) scale(.8978)}}.snow:nth-child(247){opacity:1.3668;transform:translate(85.0402vw,-10px) scale(.6333);animation:fall-247 23s -4s linear infinite}@keyframes fall-247{70.235%{transform:translate(76.3746vw,70.235vh) scale(.6333)}to{transform:translate(80.7074vw,99vh) scale(.6333)}}.snow:nth-child(248){opacity:.6814;transform:translate(70.8558vw,-10px) scale(.473);animation:fall-248 17s -5s linear infinite}@keyframes fall-248{66.779%{transform:translate(71.3245vw,66.779vh) scale(.473)}to{transform:translate(71.09015vw,99vh) scale(.473)}}.snow:nth-child(249){opacity:.1386;transform:translate(36.1127vw,-10px) scale(.7564);animation:fall-249 16s -9s linear infinite}@keyframes fall-249{70.228%{transform:translate(42.4534vw,70.228vh) scale(.7564)}to{transform:translate(39.28305vw,99vh) scale(.7564)}}.snow:nth-child(250){opacity:.2034;transform:translate(82.8704vw,-10px) scale(.435);animation:fall-250 21s -18s linear infinite}@keyframes fall-250{47.751%{transform:translate(82.0908vw,47.751vh) scale(.435)}to{transform:translate(82.4806vw,99vh) scale(.435)}}.snow:nth-child(251){opacity:1.6658;transform:translate(80.5383vw,-10px) scale(.4127);animation:fall-251 21s -23s linear infinite}@keyframes fall-251{62.313%{transform:translate(73.6966vw,62.313vh) scale(.4127)}to{transform:translate(77.11745vw,99vh) scale(.4127)}}.snow:nth-child(252){opacity:1.9516;transform:translate(85.9641vw,-10px) scale(.57);animation:fall-252 16s -7s linear infinite}@keyframes fall-252{78.131%{transform:translate(77.7999vw,78.131vh) scale(.57)}to{transform:translate(81.882vw,99vh) scale(.57)}}.snow:nth-child(253){opacity:.9206;transform:translate(32.1822vw,-10px) scale(.6516);animation:fall-253 28s -20s linear infinite}@keyframes fall-253{68.998%{transform:translate(22.2522vw,68.998vh) scale(.6516)}to{transform:translate(27.2172vw,99vh) scale(.6516)}}.snow:nth-child(254){opacity:1.8956;transform:translate(50.5539vw,-10px) scale(.1876);animation:fall-254 19s -9s linear infinite}@keyframes fall-254{37.006%{transform:translate(48.5604vw,37.006vh) scale(.1876)}to{transform:translate(49.55715vw,99vh) scale(.1876)}}.snow:nth-child(255){opacity:1.8616;transform:translate(44.9517vw,-10px) scale(.9548);animation:fall-255 27s -19s linear infinite}@keyframes fall-255{49.88%{transform:translate(36.0597vw,49.88vh) scale(.9548)}to{transform:translate(40.5057vw,99vh) scale(.9548)}}.snow:nth-child(256){opacity:1.9988;transform:translate(46.7871vw,-10px) scale(.0097);animation:fall-256 10s -26s linear infinite}@keyframes fall-256{62.211%{transform:translate(37.3717vw,62.211vh) scale(.0097)}to{transform:translate(42.0794vw,99vh) scale(.0097)}}.snow:nth-child(257){opacity:1.4702;transform:translate(31.5805vw,-10px) scale(.5534);animation:fall-257 26s -6s linear infinite}@keyframes fall-257{68.697%{transform:translate(30.0748vw,68.697vh) scale(.5534)}to{transform:translate(30.82765vw,99vh) scale(.5534)}}.snow:nth-child(258){opacity:1.6878;transform:translate(45.1192vw,-10px) scale(.7462);animation:fall-258 27s -3s linear infinite}@keyframes fall-258{55.881%{transform:translate(50.14vw,55.881vh) scale(.7462)}to{transform:translate(47.6296vw,99vh) scale(.7462)}}.snow:nth-child(259){opacity:1.983;transform:translate(56.0101vw,-10px) scale(.8439);animation:fall-259 11s -24s linear infinite}@keyframes fall-259{67.193%{transform:translate(56.0571vw,67.193vh) scale(.8439)}to{transform:translate(56.0336vw,99vh) scale(.8439)}}.snow:nth-child(260){opacity:.23;transform:translate(12.6052vw,-10px) scale(.9434);animation:fall-260 24s -26s linear infinite}@keyframes fall-260{78.29%{transform:translate(8.5102vw,78.29vh) scale(.9434)}to{transform:translate(10.5577vw,99vh) scale(.9434)}}.snow:nth-child(261){opacity:.3098;transform:translate(81.0115vw,-10px) scale(.7883);animation:fall-261 14s -16s linear infinite}@keyframes fall-261{43.58%{transform:translate(76.6585vw,43.58vh) scale(.7883)}to{transform:translate(78.835vw,99vh) scale(.7883)}}.snow:nth-child(262){opacity:.6602;transform:translate(30.3161vw,-10px) scale(.894);animation:fall-262 16s -7s linear infinite}@keyframes fall-262{79.524%{transform:translate(28.3779vw,79.524vh) scale(.894)}to{transform:translate(29.347vw,99vh) scale(.894)}}.snow:nth-child(263){opacity:1.4102;transform:translate(68.6775vw,-10px) scale(.475);animation:fall-263 20s -2s linear infinite}@keyframes fall-263{36.912%{transform:translate(62.0004vw,36.912vh) scale(.475)}to{transform:translate(65.33895vw,99vh) scale(.475)}}.snow:nth-child(264){opacity:1.3064;transform:translate(12.6244vw,-10px) scale(.296);animation:fall-264 12s -25s linear infinite}@keyframes fall-264{63.515%{transform:translate(9.2143vw,63.515vh) scale(.296)}to{transform:translate(10.91935vw,99vh) scale(.296)}}.snow:nth-child(265){opacity:.7232;transform:translate(70.9626vw,-10px) scale(.9397);animation:fall-265 10s -1s linear infinite}@keyframes fall-265{44.821%{transform:translate(62.9399vw,44.821vh) scale(.9397)}to{transform:translate(66.95125vw,99vh) scale(.9397)}}.snow:nth-child(266){opacity:.7694;transform:translate(82.1763vw,-10px) scale(.9265);animation:fall-266 29s -4s linear infinite}@keyframes fall-266{63.127%{transform:translate(91.449vw,63.127vh) scale(.9265)}to{transform:translate(86.81265vw,99vh) scale(.9265)}}.snow:nth-child(267){opacity:1.8116;transform:translate(83.8731vw,-10px) scale(.7082);animation:fall-267 15s -5s linear infinite}@keyframes fall-267{47.385%{transform:translate(92.4414vw,47.385vh) scale(.7082)}to{transform:translate(88.15725vw,99vh) scale(.7082)}}.snow:nth-child(268){opacity:1.9034;transform:translate(34.5613vw,-10px) scale(.6658);animation:fall-268 12s -16s linear infinite}@keyframes fall-268{70.79%{transform:translate(42.0552vw,70.79vh) scale(.6658)}to{transform:translate(38.30825vw,99vh) scale(.6658)}}.snow:nth-child(269){opacity:.4738;transform:translate(24.8127vw,-10px) scale(.5758);animation:fall-269 18s -3s linear infinite}@keyframes fall-269{67.134%{transform:translate(27.6273vw,67.134vh) scale(.5758)}to{transform:translate(26.22vw,99vh) scale(.5758)}}.snow:nth-child(270){opacity:.1026;transform:translate(59.6962vw,-10px) scale(.1527);animation:fall-270 24s -22s linear infinite}@keyframes fall-270{34.294%{transform:translate(62.6392vw,34.294vh) scale(.1527)}to{transform:translate(61.1677vw,99vh) scale(.1527)}}.snow:nth-child(271){opacity:.426;transform:translate(17.9465vw,-10px) scale(.7811);animation:fall-271 29s -29s linear infinite}@keyframes fall-271{79.43%{transform:translate(21.4937vw,79.43vh) scale(.7811)}to{transform:translate(19.7201vw,99vh) scale(.7811)}}.snow:nth-child(272){opacity:.0184;transform:translate(92.6237vw,-10px) scale(.3692);animation:fall-272 27s -2s linear infinite}@keyframes fall-272{40.969%{transform:translate(88.9241vw,40.969vh) scale(.3692)}to{transform:translate(90.7739vw,99vh) scale(.3692)}}.snow:nth-child(273){opacity:1.3856;transform:translate(90.8932vw,-10px) scale(.9612);animation:fall-273 25s -6s linear infinite}@keyframes fall-273{54.916%{transform:translate(99.8679vw,54.916vh) scale(.9612)}to{transform:translate(95.38055vw,99vh) scale(.9612)}}.snow:nth-child(274){opacity:1.8898;transform:translate(22.1118vw,-10px) scale(.7402);animation:fall-274 30s -8s linear infinite}@keyframes fall-274{43.258%{transform:translate(14.7677vw,43.258vh) scale(.7402)}to{transform:translate(18.43975vw,99vh) scale(.7402)}}.snow:nth-child(275){opacity:1.1052;transform:translate(8.108vw,-10px) scale(.4689);animation:fall-275 20s -1s linear infinite}@keyframes fall-275{77.64%{transform:translate(14.108vw,77.64vh) scale(.4689)}to{transform:translate(11.108vw,99vh) scale(.4689)}}.snow:nth-child(276){opacity:.3378;transform:translate(27.1812vw,-10px) scale(.932);animation:fall-276 23s -11s linear infinite}@keyframes fall-276{79.182%{transform:translate(29.9605vw,79.182vh) scale(.932)}to{transform:translate(28.57085vw,99vh) scale(.932)}}.snow:nth-child(277){opacity:.7926;transform:translate(65.2514vw,-10px) scale(.0392);animation:fall-277 21s -8s linear infinite}@keyframes fall-277{64.714%{transform:translate(70.8424vw,64.714vh) scale(.0392)}to{transform:translate(68.0469vw,99vh) scale(.0392)}}.snow:nth-child(278){opacity:.0404;transform:translate(7.4863vw,-10px) scale(.4694);animation:fall-278 29s -22s linear infinite}@keyframes fall-278{59.998%{transform:translate(17.0979vw,59.998vh) scale(.4694)}to{transform:translate(12.2921vw,99vh) scale(.4694)}}.snow:nth-child(279){opacity:.687;transform:translate(51.7101vw,-10px) scale(.4905);animation:fall-279 18s -23s linear infinite}@keyframes fall-279{58.27%{transform:translate(58.8418vw,58.27vh) scale(.4905)}to{transform:translate(55.27595vw,99vh) scale(.4905)}}.snow:nth-child(280){opacity:1.5766;transform:translate(31.1027vw,-10px) scale(.1827);animation:fall-280 22s -12s linear infinite}@keyframes fall-280{46.043%{transform:translate(28.7842vw,46.043vh) scale(.1827)}to{transform:translate(29.94345vw,99vh) scale(.1827)}}.snow:nth-child(281){opacity:1.3822;transform:translate(9.5115vw,-10px) scale(.5887);animation:fall-281 13s -25s linear infinite}@keyframes fall-281{48.711%{transform:translate(14.5707vw,48.711vh) scale(.5887)}to{transform:translate(12.0411vw,99vh) scale(.5887)}}.snow:nth-child(282){opacity:.6506;transform:translate(89.8414vw,-10px) scale(.7776);animation:fall-282 16s -15s linear infinite}@keyframes fall-282{55.56%{transform:translate(95.7045vw,55.56vh) scale(.7776)}to{transform:translate(92.77295vw,99vh) scale(.7776)}}.snow:nth-child(283){opacity:.8408;transform:translate(41.4901vw,-10px) scale(.7991);animation:fall-283 17s -16s linear infinite}@keyframes fall-283{36.823%{transform:translate(51.416vw,36.823vh) scale(.7991)}to{transform:translate(46.45305vw,99vh) scale(.7991)}}.snow:nth-child(284){opacity:1.7614;transform:translate(33.4379vw,-10px) scale(.3299);animation:fall-284 14s -5s linear infinite}@keyframes fall-284{55.237%{transform:translate(42.0208vw,55.237vh) scale(.3299)}to{transform:translate(37.72935vw,99vh) scale(.3299)}}.snow:nth-child(285){opacity:.4358;transform:translate(.9907vw,-10px) scale(.0131);animation:fall-285 22s -29s linear infinite}@keyframes fall-285{75.629%{transform:translate(9.9966vw,75.629vh) scale(.0131)}to{transform:translate(5.49365vw,99vh) scale(.0131)}}.snow:nth-child(286){opacity:1.6538;transform:translate(74.546vw,-10px) scale(.5621);animation:fall-286 15s -19s linear infinite}@keyframes fall-286{64.969%{transform:translate(78.4917vw,64.969vh) scale(.5621)}to{transform:translate(76.51885vw,99vh) scale(.5621)}}.snow:nth-child(287){opacity:.6812;transform:translate(15.6591vw,-10px) scale(.0283);animation:fall-287 22s -25s linear infinite}@keyframes fall-287{69.434%{transform:translate(15.3177vw,69.434vh) scale(.0283)}to{transform:translate(15.4884vw,99vh) scale(.0283)}}.snow:nth-child(288){opacity:1.4718;transform:translate(12.7282vw,-10px) scale(.3793);animation:fall-288 11s -8s linear infinite}@keyframes fall-288{42.743%{transform:translate(18.0181vw,42.743vh) scale(.3793)}to{transform:translate(15.37315vw,99vh) scale(.3793)}}.snow:nth-child(289){opacity:.475;transform:translate(53.1277vw,-10px) scale(.7507);animation:fall-289 23s -13s linear infinite}@keyframes fall-289{35.967%{transform:translate(60.622vw,35.967vh) scale(.7507)}to{transform:translate(56.87485vw,99vh) scale(.7507)}}.snow:nth-child(290){opacity:1.6306;transform:translate(9.1395vw,-10px) scale(.4902);animation:fall-290 26s -13s linear infinite}@keyframes fall-290{40.247%{transform:translate(3.0583vw,40.247vh) scale(.4902)}to{transform:translate(6.0989vw,99vh) scale(.4902)}}.snow:nth-child(291){opacity:.7552;transform:translate(56.9153vw,-10px) scale(.8098);animation:fall-291 28s -26s linear infinite}@keyframes fall-291{54.129%{transform:translate(59.5487vw,54.129vh) scale(.8098)}to{transform:translate(58.232vw,99vh) scale(.8098)}}.snow:nth-child(292){opacity:1.2176;transform:translate(90.2318vw,-10px) scale(.6127);animation:fall-292 19s -27s linear infinite}@keyframes fall-292{76.999%{transform:translate(89.1283vw,76.999vh) scale(.6127)}to{transform:translate(89.68005vw,99vh) scale(.6127)}}.snow:nth-child(293){opacity:1.7692;transform:translate(47.5932vw,-10px) scale(.7824);animation:fall-293 23s -29s linear infinite}@keyframes fall-293{40.806%{transform:translate(48.2511vw,40.806vh) scale(.7824)}to{transform:translate(47.92215vw,99vh) scale(.7824)}}.snow:nth-child(294){opacity:.075;transform:translate(66.628vw,-10px) scale(.303);animation:fall-294 23s -10s linear infinite}@keyframes fall-294{44.924%{transform:translate(75.5267vw,44.924vh) scale(.303)}to{transform:translate(71.07735vw,99vh) scale(.303)}}.snow:nth-child(295){opacity:1.4224;transform:translate(90.5197vw,-10px) scale(.0991);animation:fall-295 12s -12s linear infinite}@keyframes fall-295{79.594%{transform:translate(97.9962vw,79.594vh) scale(.0991)}to{transform:translate(94.25795vw,99vh) scale(.0991)}}.snow:nth-child(296){opacity:.2412;transform:translate(90.3484vw,-10px) scale(.4619);animation:fall-296 13s -8s linear infinite}@keyframes fall-296{33.198%{transform:translate(96.2479vw,33.198vh) scale(.4619)}to{transform:translate(93.29815vw,99vh) scale(.4619)}}.snow:nth-child(297){opacity:1.6118;transform:translate(83.5952vw,-10px) scale(.8179);animation:fall-297 12s -27s linear infinite}@keyframes fall-297{41.352%{transform:translate(91.1564vw,41.352vh) scale(.8179)}to{transform:translate(87.3758vw,99vh) scale(.8179)}}.snow:nth-child(298){opacity:.1136;transform:translate(30.047vw,-10px) scale(.6929);animation:fall-298 11s -29s linear infinite}@keyframes fall-298{78.827%{transform:translate(23.8973vw,78.827vh) scale(.6929)}to{transform:translate(26.97215vw,99vh) scale(.6929)}}.snow:nth-child(299){opacity:.6176;transform:translate(72.5816vw,-10px) scale(.3781);animation:fall-299 25s -30s linear infinite}@keyframes fall-299{40.985%{transform:translate(63.3069vw,40.985vh) scale(.3781)}to{transform:translate(67.94425vw,99vh) scale(.3781)}}.snow:nth-child(300){opacity:.5328;transform:translate(56.0923vw,-10px) scale(.3589);animation:fall-300 11s -16s linear infinite}@keyframes fall-300{35.227%{transform:translate(58.8248vw,35.227vh) scale(.3589)}to{transform:translate(57.45855vw,99vh) scale(.3589)}}.snow:nth-child(301){opacity:1.0208;transform:translate(6.7349vw,-10px) scale(.3485);animation:fall-301 22s -17s linear infinite}@keyframes fall-301{62.457%{transform:translate(5.9967vw,62.457vh) scale(.3485)}to{transform:translate(6.3658vw,99vh) scale(.3485)}}.snow:nth-child(302){opacity:.7288;transform:translate(38.904vw,-10px) scale(.7961);animation:fall-302 22s -24s linear infinite}@keyframes fall-302{52.388%{transform:translate(33.2683vw,52.388vh) scale(.7961)}to{transform:translate(36.08615vw,99vh) scale(.7961)}}.snow:nth-child(303){opacity:1.8056;transform:translate(59.8858vw,-10px) scale(.126);animation:fall-303 28s -25s linear infinite}@keyframes fall-303{49.31%{transform:translate(51.4272vw,49.31vh) scale(.126)}to{transform:translate(55.6565vw,99vh) scale(.126)}}.snow:nth-child(304){opacity:.0476;transform:translate(26.5623vw,-10px) scale(.6582);animation:fall-304 14s -19s linear infinite}@keyframes fall-304{69.083%{transform:translate(17.5397vw,69.083vh) scale(.6582)}to{transform:translate(22.051vw,99vh) scale(.6582)}}.snow:nth-child(305){opacity:1.3174;transform:translate(84.2903vw,-10px) scale(.1);animation:fall-305 23s -13s linear infinite}@keyframes fall-305{35.648%{transform:translate(77.6119vw,35.648vh) scale(.1)}to{transform:translate(80.9511vw,99vh) scale(.1)}}.snow:nth-child(306){opacity:.6022;transform:translate(70.3305vw,-10px) scale(.3087);animation:fall-306 21s -30s linear infinite}@keyframes fall-306{42.517%{transform:translate(66.6741vw,42.517vh) scale(.3087)}to{transform:translate(68.5023vw,99vh) scale(.3087)}}.snow:nth-child(307){opacity:1.968;transform:translate(57.8053vw,-10px) scale(.5145);animation:fall-307 20s -3s linear infinite}@keyframes fall-307{64.468%{transform:translate(66.9638vw,64.468vh) scale(.5145)}to{transform:translate(62.38455vw,99vh) scale(.5145)}}.snow:nth-child(308){opacity:1.7166;transform:translate(17.7659vw,-10px) scale(.1228);animation:fall-308 27s -4s linear infinite}@keyframes fall-308{69.332%{transform:translate(15.5409vw,69.332vh) scale(.1228)}to{transform:translate(16.6534vw,99vh) scale(.1228)}}.snow:nth-child(309){opacity:1.374;transform:translate(3.2473vw,-10px) scale(.2563);animation:fall-309 28s -9s linear infinite}@keyframes fall-309{32.005%{transform:translate(-1.7146vw,32.005vh) scale(.2563)}to{transform:translate(.76635vw,99vh) scale(.2563)}}.snow:nth-child(310){opacity:.9224;transform:translate(18.209vw,-10px) scale(.9237);animation:fall-310 24s -24s linear infinite}@keyframes fall-310{54.532%{transform:translate(14.5154vw,54.532vh) scale(.9237)}to{transform:translate(16.3622vw,99vh) scale(.9237)}}.snow:nth-child(311){opacity:.4264;transform:translate(79.3486vw,-10px) scale(.4823);animation:fall-311 24s -11s linear infinite}@keyframes fall-311{35.563%{transform:translate(84.127vw,35.563vh) scale(.4823)}to{transform:translate(81.7378vw,99vh) scale(.4823)}}.snow:nth-child(312){opacity:1.7764;transform:translate(17.7127vw,-10px) scale(.1796);animation:fall-312 10s -5s linear infinite}@keyframes fall-312{55.61%{transform:translate(13.5338vw,55.61vh) scale(.1796)}to{transform:translate(15.62325vw,99vh) scale(.1796)}}.snow:nth-child(313){opacity:1.5666;transform:translate(61.175vw,-10px) scale(.504);animation:fall-313 21s -12s linear infinite}@keyframes fall-313{60.571%{transform:translate(53.0336vw,60.571vh) scale(.504)}to{transform:translate(57.1043vw,99vh) scale(.504)}}.snow:nth-child(314){opacity:1.886;transform:translate(39.6767vw,-10px) scale(.3114);animation:fall-314 12s -12s linear infinite}@keyframes fall-314{47.81%{transform:translate(43.8794vw,47.81vh) scale(.3114)}to{transform:translate(41.77805vw,99vh) scale(.3114)}}.snow:nth-child(315){opacity:1.1198;transform:translate(12.4165vw,-10px) scale(.39);animation:fall-315 11s -22s linear infinite}@keyframes fall-315{58.848%{transform:translate(13.7308vw,58.848vh) scale(.39)}to{transform:translate(13.07365vw,99vh) scale(.39)}}.snow:nth-child(316){opacity:.681;transform:translate(57.3265vw,-10px) scale(.2682);animation:fall-316 22s -4s linear infinite}@keyframes fall-316{70.406%{transform:translate(48.4662vw,70.406vh) scale(.2682)}to{transform:translate(52.89635vw,99vh) scale(.2682)}}.snow:nth-child(317){opacity:1.3984;transform:translate(15.855vw,-10px) scale(.3436);animation:fall-317 11s -18s linear infinite}@keyframes fall-317{51.181%{transform:translate(10.4369vw,51.181vh) scale(.3436)}to{transform:translate(13.14595vw,99vh) scale(.3436)}}.snow:nth-child(318){opacity:.254;transform:translate(46.6257vw,-10px) scale(.377);animation:fall-318 22s -18s linear infinite}@keyframes fall-318{69.472%{transform:translate(44.2847vw,69.472vh) scale(.377)}to{transform:translate(45.4552vw,99vh) scale(.377)}}.snow:nth-child(319){opacity:1.8424;transform:translate(99.6577vw,-10px) scale(.8716);animation:fall-319 26s -29s linear infinite}@keyframes fall-319{51.871%{transform:translate(95.1346vw,51.871vh) scale(.8716)}to{transform:translate(97.39615vw,99vh) scale(.8716)}}.snow:nth-child(320){opacity:1.3166;transform:translate(7.4043vw,-10px) scale(.0046);animation:fall-320 22s -7s linear infinite}@keyframes fall-320{39.371%{transform:translate(-.5846vw,39.371vh) scale(.0046)}to{transform:translate(3.40985vw,99vh) scale(.0046)}}.snow:nth-child(321){opacity:.3418;transform:translate(48.139vw,-10px) scale(.0571);animation:fall-321 26s -9s linear infinite}@keyframes fall-321{53.204%{transform:translate(40.0074vw,53.204vh) scale(.0571)}to{transform:translate(44.0732vw,99vh) scale(.0571)}}.snow:nth-child(322){opacity:1.727;transform:translate(80.1774vw,-10px) scale(.3057);animation:fall-322 24s -24s linear infinite}@keyframes fall-322{61.288%{transform:translate(81.5535vw,61.288vh) scale(.3057)}to{transform:translate(80.86545vw,99vh) scale(.3057)}}.snow:nth-child(323){opacity:.1276;transform:translate(95.8146vw,-10px) scale(.0308);animation:fall-323 22s -24s linear infinite}@keyframes fall-323{37.899%{transform:translate(101.1249vw,37.899vh) scale(.0308)}to{transform:translate(98.46975vw,99vh) scale(.0308)}}.snow:nth-child(324){opacity:.1894;transform:translate(8.4726vw,-10px) scale(.5697);animation:fall-324 28s -20s linear infinite}@keyframes fall-324{31.665%{transform:translate(11.3824vw,31.665vh) scale(.5697)}to{transform:translate(9.9275vw,99vh) scale(.5697)}}.snow:nth-child(325){opacity:1.3946;transform:translate(88.4353vw,-10px) scale(.0202);animation:fall-325 18s -22s linear infinite}@keyframes fall-325{38.26%{transform:translate(80.2128vw,38.26vh) scale(.0202)}to{transform:translate(84.32405vw,99vh) scale(.0202)}}.snow:nth-child(326){opacity:.1818;transform:translate(18.6484vw,-10px) scale(.9491);animation:fall-326 14s -24s linear infinite}@keyframes fall-326{32.589%{transform:translate(23.8155vw,32.589vh) scale(.9491)}to{transform:translate(21.23195vw,99vh) scale(.9491)}}.snow:nth-child(327){opacity:1.0872;transform:translate(50.3501vw,-10px) scale(.0923);animation:fall-327 30s -8s linear infinite}@keyframes fall-327{53.609%{transform:translate(49.0878vw,53.609vh) scale(.0923)}to{transform:translate(49.71895vw,99vh) scale(.0923)}}.snow:nth-child(328){opacity:.7352;transform:translate(60.4963vw,-10px) scale(.2418);animation:fall-328 13s -1s linear infinite}@keyframes fall-328{53.592%{transform:translate(56.7475vw,53.592vh) scale(.2418)}to{transform:translate(58.6219vw,99vh) scale(.2418)}}.snow:nth-child(329){opacity:1.7116;transform:translate(41.7479vw,-10px) scale(.3289);animation:fall-329 26s -16s linear infinite}@keyframes fall-329{79.184%{transform:translate(32.7673vw,79.184vh) scale(.3289)}to{transform:translate(37.2576vw,99vh) scale(.3289)}}.snow:nth-child(330){opacity:1.1206;transform:translate(78.6667vw,-10px) scale(.5202);animation:fall-330 21s -3s linear infinite}@keyframes fall-330{78.574%{transform:translate(81.7042vw,78.574vh) scale(.5202)}to{transform:translate(80.18545vw,99vh) scale(.5202)}}.snow:nth-child(331){opacity:1.1722;transform:translate(55.2476vw,-10px) scale(.9575);animation:fall-331 10s -18s linear infinite}@keyframes fall-331{46.351%{transform:translate(58.0564vw,46.351vh) scale(.9575)}to{transform:translate(56.652vw,99vh) scale(.9575)}}.snow:nth-child(332){opacity:.996;transform:translate(82.2219vw,-10px) scale(.4407);animation:fall-332 27s -3s linear infinite}@keyframes fall-332{41.991%{transform:translate(91.2951vw,41.991vh) scale(.4407)}to{transform:translate(86.7585vw,99vh) scale(.4407)}}.snow:nth-child(333){opacity:1.32;transform:translate(47.1724vw,-10px) scale(.3517);animation:fall-333 13s -10s linear infinite}@keyframes fall-333{42.092%{transform:translate(38.2721vw,42.092vh) scale(.3517)}to{transform:translate(42.72225vw,99vh) scale(.3517)}}.snow:nth-child(334){opacity:1.491;transform:translate(77.5377vw,-10px) scale(.7376);animation:fall-334 10s -27s linear infinite}@keyframes fall-334{34.561%{transform:translate(76.6676vw,34.561vh) scale(.7376)}to{transform:translate(77.10265vw,99vh) scale(.7376)}}.snow:nth-child(335){opacity:1.0482;transform:translate(24.8703vw,-10px) scale(.3272);animation:fall-335 18s -7s linear infinite}@keyframes fall-335{48.297%{transform:translate(19.9112vw,48.297vh) scale(.3272)}to{transform:translate(22.39075vw,99vh) scale(.3272)}}.snow:nth-child(336){opacity:1.0194;transform:translate(28.6316vw,-10px) scale(.8441);animation:fall-336 20s -5s linear infinite}@keyframes fall-336{70.411%{transform:translate(38.2712vw,70.411vh) scale(.8441)}to{transform:translate(33.4514vw,99vh) scale(.8441)}}.snow:nth-child(337){opacity:1.716;transform:translate(24.2195vw,-10px) scale(.84);animation:fall-337 16s -24s linear infinite}@keyframes fall-337{75.265%{transform:translate(21.8845vw,75.265vh) scale(.84)}to{transform:translate(23.052vw,99vh) scale(.84)}}.snow:nth-child(338){opacity:.4512;transform:translate(26.5695vw,-10px) scale(.4345);animation:fall-338 24s -17s linear infinite}@keyframes fall-338{30.486%{transform:translate(28.4353vw,30.486vh) scale(.4345)}to{transform:translate(27.5024vw,99vh) scale(.4345)}}.snow:nth-child(339){opacity:.6896;transform:translate(.0647vw,-10px) scale(.6092);animation:fall-339 17s -8s linear infinite}@keyframes fall-339{77.628%{transform:translate(6.435vw,77.628vh) scale(.6092)}to{transform:translate(3.24985vw,99vh) scale(.6092)}}.snow:nth-child(340){opacity:1.7752;transform:translate(7.2669vw,-10px) scale(.7169);animation:fall-340 30s -20s linear infinite}@keyframes fall-340{68.716%{transform:translate(4.9144vw,68.716vh) scale(.7169)}to{transform:translate(6.09065vw,99vh) scale(.7169)}}.snow:nth-child(341){opacity:.7166;transform:translate(93.2098vw,-10px) scale(.0705);animation:fall-341 23s -22s linear infinite}@keyframes fall-341{78.207%{transform:translate(91.2069vw,78.207vh) scale(.0705)}to{transform:translate(92.20835vw,99vh) scale(.0705)}}.snow:nth-child(342){opacity:1.8732;transform:translate(17.0743vw,-10px) scale(.1028);animation:fall-342 11s -3s linear infinite}@keyframes fall-342{75.311%{transform:translate(16.0518vw,75.311vh) scale(.1028)}to{transform:translate(16.56305vw,99vh) scale(.1028)}}.snow:nth-child(343){opacity:1.2238;transform:translate(5.9569vw,-10px) scale(.9181);animation:fall-343 24s -7s linear infinite}@keyframes fall-343{70.098%{transform:translate(12.2828vw,70.098vh) scale(.9181)}to{transform:translate(9.11985vw,99vh) scale(.9181)}}.snow:nth-child(344){opacity:.2012;transform:translate(13.6875vw,-10px) scale(.3533);animation:fall-344 11s -26s linear infinite}@keyframes fall-344{65.655%{transform:translate(13.4517vw,65.655vh) scale(.3533)}to{transform:translate(13.5696vw,99vh) scale(.3533)}}.snow:nth-child(345){opacity:.5986;transform:translate(74.15vw,-10px) scale(.7382);animation:fall-345 26s -1s linear infinite}@keyframes fall-345{64.242%{transform:translate(69.0809vw,64.242vh) scale(.7382)}to{transform:translate(71.61545vw,99vh) scale(.7382)}}.snow:nth-child(346){opacity:1.2932;transform:translate(90.2152vw,-10px) scale(.2371);animation:fall-346 12s -2s linear infinite}@keyframes fall-346{78.994%{transform:translate(84.322vw,78.994vh) scale(.2371)}to{transform:translate(87.2686vw,99vh) scale(.2371)}}.snow:nth-child(347){opacity:.9226;transform:translate(43.7354vw,-10px) scale(.5599);animation:fall-347 23s -26s linear infinite}@keyframes fall-347{66.669%{transform:translate(53.1065vw,66.669vh) scale(.5599)}to{transform:translate(48.42095vw,99vh) scale(.5599)}}.snow:nth-child(348){opacity:.775;transform:translate(12.0061vw,-10px) scale(.5535);animation:fall-348 22s -24s linear infinite}@keyframes fall-348{38.939%{transform:translate(18.9314vw,38.939vh) scale(.5535)}to{transform:translate(15.46875vw,99vh) scale(.5535)}}.snow:nth-child(349){opacity:.6584;transform:translate(75.4392vw,-10px) scale(.0838);animation:fall-349 22s -23s linear infinite}@keyframes fall-349{34.431%{transform:translate(77.6264vw,34.431vh) scale(.0838)}to{transform:translate(76.5328vw,99vh) scale(.0838)}}.snow:nth-child(350){opacity:1.5666;transform:translate(67.099vw,-10px) scale(.6885);animation:fall-350 21s -22s linear infinite}@keyframes fall-350{54.561%{transform:translate(66.5451vw,54.561vh) scale(.6885)}to{transform:translate(66.82205vw,99vh) scale(.6885)}}.snow:nth-child(351){opacity:1.7102;transform:translate(76.889vw,-10px) scale(.4448);animation:fall-351 26s -27s linear infinite}@keyframes fall-351{76.137%{transform:translate(73.7272vw,76.137vh) scale(.4448)}to{transform:translate(75.3081vw,99vh) scale(.4448)}}.snow:nth-child(352){opacity:.3446;transform:translate(88.911vw,-10px) scale(.7233);animation:fall-352 17s -8s linear infinite}@keyframes fall-352{41.886%{transform:translate(93.6611vw,41.886vh) scale(.7233)}to{transform:translate(91.28605vw,99vh) scale(.7233)}}.snow:nth-child(353){opacity:.7206;transform:translate(67.5989vw,-10px) scale(.4374);animation:fall-353 20s -20s linear infinite}@keyframes fall-353{65.495%{transform:translate(62.7031vw,65.495vh) scale(.4374)}to{transform:translate(65.151vw,99vh) scale(.4374)}}.snow:nth-child(354){opacity:.5516;transform:translate(42.8815vw,-10px) scale(.1144);animation:fall-354 14s -8s linear infinite}@keyframes fall-354{65.487%{transform:translate(33.0093vw,65.487vh) scale(.1144)}to{transform:translate(37.9454vw,99vh) scale(.1144)}}.snow:nth-child(355){opacity:1.5632;transform:translate(19.4821vw,-10px) scale(.7518);animation:fall-355 30s -22s linear infinite}@keyframes fall-355{45.106%{transform:translate(12.3985vw,45.106vh) scale(.7518)}to{transform:translate(15.9403vw,99vh) scale(.7518)}}.snow:nth-child(356){opacity:.7418;transform:translate(16.8988vw,-10px) scale(.206);animation:fall-356 10s -25s linear infinite}@keyframes fall-356{34.229%{transform:translate(8.104vw,34.229vh) scale(.206)}to{transform:translate(12.5014vw,99vh) scale(.206)}}.snow:nth-child(357){opacity:.7906;transform:translate(61.6892vw,-10px) scale(.5764);animation:fall-357 25s -24s linear infinite}@keyframes fall-357{53.871%{transform:translate(69.2696vw,53.871vh) scale(.5764)}to{transform:translate(65.4794vw,99vh) scale(.5764)}}.snow:nth-child(358){opacity:.6656;transform:translate(23.9084vw,-10px) scale(.0547);animation:fall-358 23s -16s linear infinite}@keyframes fall-358{57.459%{transform:translate(26.1364vw,57.459vh) scale(.0547)}to{transform:translate(25.0224vw,99vh) scale(.0547)}}.snow:nth-child(359){opacity:.516;transform:translate(56.1867vw,-10px) scale(.2433);animation:fall-359 17s -6s linear infinite}@keyframes fall-359{77.616%{transform:translate(52.3313vw,77.616vh) scale(.2433)}to{transform:translate(54.259vw,99vh) scale(.2433)}}.snow:nth-child(360){opacity:.2124;transform:translate(51.7768vw,-10px) scale(.9279);animation:fall-360 11s -19s linear infinite}@keyframes fall-360{69.96%{transform:translate(54.3246vw,69.96vh) scale(.9279)}to{transform:translate(53.0507vw,99vh) scale(.9279)}}.snow:nth-child(361){opacity:1.1202;transform:translate(66.729vw,-10px) scale(.0099);animation:fall-361 10s -12s linear infinite}@keyframes fall-361{50.176%{transform:translate(72.9892vw,50.176vh) scale(.0099)}to{transform:translate(69.8591vw,99vh) scale(.0099)}}.snow:nth-child(362){opacity:1.1816;transform:translate(80.0428vw,-10px) scale(.0482);animation:fall-362 17s -18s linear infinite}@keyframes fall-362{57.861%{transform:translate(81.6386vw,57.861vh) scale(.0482)}to{transform:translate(80.8407vw,99vh) scale(.0482)}}.snow:nth-child(363){opacity:1.679;transform:translate(26.9304vw,-10px) scale(.7566);animation:fall-363 12s -26s linear infinite}@keyframes fall-363{34.582%{transform:translate(33.1868vw,34.582vh) scale(.7566)}to{transform:translate(30.0586vw,99vh) scale(.7566)}}.snow:nth-child(364){opacity:.1618;transform:translate(27.6588vw,-10px) scale(.3045);animation:fall-364 30s -9s linear infinite}@keyframes fall-364{39.484%{transform:translate(31.8698vw,39.484vh) scale(.3045)}to{transform:translate(29.7643vw,99vh) scale(.3045)}}.snow:nth-child(365){opacity:1.4526;transform:translate(78.6116vw,-10px) scale(.5916);animation:fall-365 17s -29s linear infinite}@keyframes fall-365{47.084%{transform:translate(70.0252vw,47.084vh) scale(.5916)}to{transform:translate(74.3184vw,99vh) scale(.5916)}}.snow:nth-child(366){opacity:1.6466;transform:translate(20.434vw,-10px) scale(.8171);animation:fall-366 24s -13s linear infinite}@keyframes fall-366{68.585%{transform:translate(27.8161vw,68.585vh) scale(.8171)}to{transform:translate(24.12505vw,99vh) scale(.8171)}}.snow:nth-child(367){opacity:.2034;transform:translate(28.9368vw,-10px) scale(.2243);animation:fall-367 21s -1s linear infinite}@keyframes fall-367{68.182%{transform:translate(35.1661vw,68.182vh) scale(.2243)}to{transform:translate(32.05145vw,99vh) scale(.2243)}}.snow:nth-child(368){opacity:1.441;transform:translate(10.9162vw,-10px) scale(.2284);animation:fall-368 17s -5s linear infinite}@keyframes fall-368{62.56%{transform:translate(8.1567vw,62.56vh) scale(.2284)}to{transform:translate(9.53645vw,99vh) scale(.2284)}}.snow:nth-child(369){opacity:.378;transform:translate(78.4221vw,-10px) scale(.4529);animation:fall-369 28s -7s linear infinite}@keyframes fall-369{70.368%{transform:translate(84.6094vw,70.368vh) scale(.4529)}to{transform:translate(81.51575vw,99vh) scale(.4529)}}.snow:nth-child(370){opacity:.4998;transform:translate(14.3353vw,-10px) scale(.6968);animation:fall-370 22s -1s linear infinite}@keyframes fall-370{52.682%{transform:translate(12.5815vw,52.682vh) scale(.6968)}to{transform:translate(13.4584vw,99vh) scale(.6968)}}.snow:nth-child(371){opacity:1.7094;transform:translate(6.4697vw,-10px) scale(.8776);animation:fall-371 15s -29s linear infinite}@keyframes fall-371{32.89%{transform:translate(4.8596vw,32.89vh) scale(.8776)}to{transform:translate(5.66465vw,99vh) scale(.8776)}}.snow:nth-child(372){opacity:.9242;transform:translate(20.3003vw,-10px) scale(.7502);animation:fall-372 30s -28s linear infinite}@keyframes fall-372{67.173%{transform:translate(24.0622vw,67.173vh) scale(.7502)}to{transform:translate(22.18125vw,99vh) scale(.7502)}}.snow:nth-child(373){opacity:1.3274;transform:translate(95.8789vw,-10px) scale(.9507);animation:fall-373 14s -16s linear infinite}@keyframes fall-373{62.646%{transform:translate(88.0745vw,62.646vh) scale(.9507)}to{transform:translate(91.9767vw,99vh) scale(.9507)}}.snow:nth-child(374){opacity:1.8634;transform:translate(1.8016vw,-10px) scale(.0667);animation:fall-374 11s -6s linear infinite}@keyframes fall-374{57.495%{transform:translate(4.8208vw,57.495vh) scale(.0667)}to{transform:translate(3.3112vw,99vh) scale(.0667)}}.snow:nth-child(375){opacity:1.39;transform:translate(58.6114vw,-10px) scale(.7843);animation:fall-375 25s -1s linear infinite}@keyframes fall-375{65.34%{transform:translate(60.3623vw,65.34vh) scale(.7843)}to{transform:translate(59.48685vw,99vh) scale(.7843)}}.snow:nth-child(376){opacity:1.262;transform:translate(68.4951vw,-10px) scale(.7724);animation:fall-376 14s -3s linear infinite}@keyframes fall-376{71.771%{transform:translate(70.2821vw,71.771vh) scale(.7724)}to{transform:translate(69.3886vw,99vh) scale(.7724)}}.snow:nth-child(377){opacity:.1546;transform:translate(52.963vw,-10px) scale(.7847);animation:fall-377 19s -24s linear infinite}@keyframes fall-377{62.78%{transform:translate(56.6958vw,62.78vh) scale(.7847)}to{transform:translate(54.8294vw,99vh) scale(.7847)}}.snow:nth-child(378){opacity:.0178;transform:translate(53.8144vw,-10px) scale(.8457);animation:fall-378 29s -28s linear infinite}@keyframes fall-378{35.987%{transform:translate(54.1457vw,35.987vh) scale(.8457)}to{transform:translate(53.98005vw,99vh) scale(.8457)}}.snow:nth-child(379){opacity:1.4534;transform:translate(82.387vw,-10px) scale(.5838);animation:fall-379 22s -21s linear infinite}@keyframes fall-379{52.152%{transform:translate(72.8566vw,52.152vh) scale(.5838)}to{transform:translate(77.6218vw,99vh) scale(.5838)}}.snow:nth-child(380){opacity:.8388;transform:translate(80.6763vw,-10px) scale(.3946);animation:fall-380 15s -3s linear infinite}@keyframes fall-380{34.162%{transform:translate(86.1337vw,34.162vh) scale(.3946)}to{transform:translate(83.405vw,99vh) scale(.3946)}}.snow:nth-child(381){opacity:1.7942;transform:translate(87.7615vw,-10px) scale(.0514);animation:fall-381 19s -2s linear infinite}@keyframes fall-381{60.448%{transform:translate(82.8812vw,60.448vh) scale(.0514)}to{transform:translate(85.32135vw,99vh) scale(.0514)}}.snow:nth-child(382){opacity:.9058;transform:translate(85.486vw,-10px) scale(.0801);animation:fall-382 12s -6s linear infinite}@keyframes fall-382{63.719%{transform:translate(93.7579vw,63.719vh) scale(.0801)}to{transform:translate(89.62195vw,99vh) scale(.0801)}}.snow:nth-child(383){opacity:1.574;transform:translate(70.6059vw,-10px) scale(.1667);animation:fall-383 15s -21s linear infinite}@keyframes fall-383{39.571%{transform:translate(65.7476vw,39.571vh) scale(.1667)}to{transform:translate(68.17675vw,99vh) scale(.1667)}}.snow:nth-child(384){opacity:.5284;transform:translate(96.6553vw,-10px) scale(.7577);animation:fall-384 28s -10s linear infinite}@keyframes fall-384{71.978%{transform:translate(92.2152vw,71.978vh) scale(.7577)}to{transform:translate(94.43525vw,99vh) scale(.7577)}}.snow:nth-child(385){opacity:.299;transform:translate(46.4252vw,-10px) scale(.6569);animation:fall-385 24s -23s linear infinite}@keyframes fall-385{45.314%{transform:translate(49.6103vw,45.314vh) scale(.6569)}to{transform:translate(48.01775vw,99vh) scale(.6569)}}.snow:nth-child(386){opacity:.6174;transform:translate(67.4081vw,-10px) scale(.1259);animation:fall-386 26s -10s linear infinite}@keyframes fall-386{63.184%{transform:translate(75.4022vw,63.184vh) scale(.1259)}to{transform:translate(71.40515vw,99vh) scale(.1259)}}.snow:nth-child(387){opacity:1.294;transform:translate(90.083vw,-10px) scale(.1806);animation:fall-387 30s -15s linear infinite}@keyframes fall-387{78.856%{transform:translate(93.7493vw,78.856vh) scale(.1806)}to{transform:translate(91.91615vw,99vh) scale(.1806)}}.snow:nth-child(388){opacity:1.5248;transform:translate(44.6795vw,-10px) scale(.2083);animation:fall-388 17s -9s linear infinite}@keyframes fall-388{47.699%{transform:translate(40.1023vw,47.699vh) scale(.2083)}to{transform:translate(42.3909vw,99vh) scale(.2083)}}.snow:nth-child(389){opacity:.5154;transform:translate(35.764vw,-10px) scale(.6867);animation:fall-389 20s -20s linear infinite}@keyframes fall-389{41.785%{transform:translate(29.6482vw,41.785vh) scale(.6867)}to{transform:translate(32.7061vw,99vh) scale(.6867)}}.snow:nth-child(390){opacity:1.1348;transform:translate(23.7094vw,-10px) scale(.7402);animation:fall-390 18s -2s linear infinite}@keyframes fall-390{42.143%{transform:translate(19.7447vw,42.143vh) scale(.7402)}to{transform:translate(21.72705vw,99vh) scale(.7402)}}.snow:nth-child(391){opacity:1.0028;transform:translate(77.1263vw,-10px) scale(.9827);animation:fall-391 26s -19s linear infinite}@keyframes fall-391{69.627%{transform:translate(74.9914vw,69.627vh) scale(.9827)}to{transform:translate(76.05885vw,99vh) scale(.9827)}}.snow:nth-child(392){opacity:.6108;transform:translate(50.7178vw,-10px) scale(.363);animation:fall-392 12s -7s linear infinite}@keyframes fall-392{40.782%{transform:translate(58.7108vw,40.782vh) scale(.363)}to{transform:translate(54.7143vw,99vh) scale(.363)}}.snow:nth-child(393){opacity:.6882;transform:translate(1.7673vw,-10px) scale(.8843);animation:fall-393 12s -9s linear infinite}@keyframes fall-393{46.138%{transform:translate(7.8302vw,46.138vh) scale(.8843)}to{transform:translate(4.79875vw,99vh) scale(.8843)}}.snow:nth-child(394){opacity:1.9618;transform:translate(45.932vw,-10px) scale(.5562);animation:fall-394 11s -15s linear infinite}@keyframes fall-394{73.373%{transform:translate(41.5767vw,73.373vh) scale(.5562)}to{transform:translate(43.75435vw,99vh) scale(.5562)}}.snow:nth-child(395){opacity:1.624;transform:translate(42.9941vw,-10px) scale(.7426);animation:fall-395 26s -28s linear infinite}@keyframes fall-395{35.231%{transform:translate(40.1586vw,35.231vh) scale(.7426)}to{transform:translate(41.57635vw,99vh) scale(.7426)}}.snow:nth-child(396){opacity:.6446;transform:translate(51.4047vw,-10px) scale(.9541);animation:fall-396 29s -13s linear infinite}@keyframes fall-396{36.771%{transform:translate(49.0375vw,36.771vh) scale(.9541)}to{transform:translate(50.2211vw,99vh) scale(.9541)}}.snow:nth-child(397){opacity:.1868;transform:translate(91.7276vw,-10px) scale(.2193);animation:fall-397 27s -5s linear infinite}@keyframes fall-397{45.994%{transform:translate(86.1261vw,45.994vh) scale(.2193)}to{transform:translate(88.92685vw,99vh) scale(.2193)}}.snow:nth-child(398){opacity:1.2226;transform:translate(85.5545vw,-10px) scale(.1104);animation:fall-398 25s -21s linear infinite}@keyframes fall-398{55.591%{transform:translate(87.6662vw,55.591vh) scale(.1104)}to{transform:translate(86.61035vw,99vh) scale(.1104)}}.snow:nth-child(399){opacity:1.3374;transform:translate(63.3583vw,-10px) scale(.803);animation:fall-399 11s -9s linear infinite}@keyframes fall-399{50.349%{transform:translate(68.1576vw,50.349vh) scale(.803)}to{transform:translate(65.75795vw,99vh) scale(.803)}}.snow:nth-child(400){opacity:.8262;transform:translate(68.3263vw,-10px) scale(.8115);animation:fall-400 29s -9s linear infinite}@keyframes fall-400{75.004%{transform:translate(69.9941vw,75.004vh) scale(.8115)}to{transform:translate(69.1602vw,99vh) scale(.8115)}}\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", "routerOutletData"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
76
91
|
}
|
|
77
92
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AppComponent, decorators: [{
|
|
78
93
|
type: Component,
|
|
79
|
-
args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, standalone: false, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows; trackBy: snowTrackBy\" 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{-webkit-animation:progress-bar-stripes 1s linear infinite;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;-webkit-box-shadow:1px 1px 5px 0px rgba(0,0,0,.25);-moz-box-shadow:1px 1px 5px 0px rgba(0,0,0,.25);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:#024a8880}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:#2d922d80}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:#248dad80}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:#f79a1780}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:#bf172580}.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:#0006}.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:#0003}.card.overlay .card-img{border-radius:0;-webkit-filter:brightness(100%);-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-webkit-filter:brightness(80%);-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{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);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:#024a88cc!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:#024a8880;border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:#024a88f2!important;border-color:#024a88f2!important}.btn-success{background:#2d922dcc;border-color:#2d922dcc}.btn-success.medium-opacity{background:#2d922d80;border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:#2d922df2!important;border-color:#2d922df2!important}.btn-info{background:#248dadcc;border-color:#248dadcc}.btn-info.medium-opacity{background:#248dad80;border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:#248dadf2!important;border-color:#248dadf2!important}.btn-warning{background:#f79a17cc;border-color:#f79a17cc}.btn-warning.medium-opacity{background:#f79a1780;border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:#f79a17f2!important;border-color:#f79a17f2!important}.btn-danger{background:#bf1725cc;border-color:#bf1725cc}.btn-danger.medium-opacity{background:#bf172580;border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:#bf1725f2!important;border-color:#bf1725f2!important}.btn-dark{background:#000c;border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:#00000080;border-color:#0000001a}.btn-dark:hover{background:#000;border-color:#000}.btn-dark:active{background:#000000f2!important;border-color:#000000f2!important}.btn-main{background:#242d3acc;border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:#242d3a80;border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:#242d3af2!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:#2d922d80;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:#555555b3}.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:#555555b3}.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:#ffffff1a 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:#024a8880!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:#2d922d80!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:#f79a1780!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:#bf172580!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:#242d3a80!important}.bg-dark{background:#000!important}.bg-dark.medium-opacity{background:#00000080!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: 1800px){.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}::-webkit-input-placeholder{color:#aaa!important}:-moz-placeholder{color:#aaa!important;opacity:1!important}::-moz-placeholder{color:#aaa!important;opacity:1!important}:-ms-input-placeholder{color:#aaa!important}::-ms-input-placeholder{color:#aaa!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{-moz-transform:scale(1,-1);-webkit-transform:scale(1,-1);-o-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scaleY(-1)}.app-flip-x{-moz-transform:scale(-1,1);-webkit-transform:scale(-1,1);-o-transform:scale(-1,1);-ms-transform:scale(-1,1);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-600{max-height:600px;overflow-x:hidden;overflow-y:auto}.list-area{position:relative!important}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:#ff323233;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:#fff;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}.wizard-step-container{background-color:#fff;box-shadow:#63636333 0 2px 8px;padding:10px}.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}.m-b-min-1{margin-bottom:-1px}.m-b-min-2{margin-bottom:-2px}.m-b-min-3{margin-bottom:-3px}.m-b-min-5{margin-bottom:-5px}.m-b-min-6{margin-bottom:-6px}.m-b-min-10{margin-bottom:-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:#00000080 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:#ededed;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{margin-top:20px;padding-left:0!important}.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}.app-search-background{z-index:9999;margin-top:60px;padding:0;background-color:#0000004d;width:100vw;height:calc(100vh - 60px)}.app-search-result-box{height:calc(100% - 35px);overflow:hidden;margin:20px}.app-search-card{margin-top:2px;margin-bottom:10px;padding:15px;background-color:#fff;box-shadow:#06182c66 0 0 0 2px,#06182ca6 0 4px 6px -1px,#ffffff14 0 1px inset}.pull-left{float:left}.pull-right{float:right}.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;-moz-user-select:none!important;-ms-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:#ccc}::-webkit-scrollbar-thumb:active{background:#888}::-webkit-scrollbar-track{background:#666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666}::-webkit-scrollbar-track:active{background:#333}::-webkit-scrollbar-corner{background:transparent}.transition{-webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;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%}}.snow{position:absolute;width:10px;height:10px;background:#fff;border-radius:50%}.snow:nth-child(1){opacity:.8934;transform:translate(23.2709vw,-10px) scale(.5622);animation:fall-1 10s -5s linear infinite}@keyframes fall-1{49.779%{transform:translate(22.0586vw,49.779vh) scale(.5622)}to{transform:translate(22.66475vw,99vh) scale(.5622)}}.snow:nth-child(2){opacity:1.29;transform:translate(91.8996vw,-10px) scale(.3701);animation:fall-2 23s -20s linear infinite}@keyframes fall-2{30.605%{transform:translate(82.0006vw,30.605vh) scale(.3701)}to{transform:translate(86.9501vw,99vh) scale(.3701)}}.snow:nth-child(3){opacity:1.5432;transform:translate(70.0027vw,-10px) scale(.7854);animation:fall-3 24s -26s linear infinite}@keyframes fall-3{49.447%{transform:translate(77.852vw,49.447vh) scale(.7854)}to{transform:translate(73.92735vw,99vh) scale(.7854)}}.snow:nth-child(4){opacity:.5256;transform:translate(18.9173vw,-10px) scale(.82);animation:fall-4 14s -25s linear infinite}@keyframes fall-4{40.525%{transform:translate(24.3612vw,40.525vh) scale(.82)}to{transform:translate(21.63925vw,99vh) scale(.82)}}.snow:nth-child(5){opacity:1.8972;transform:translate(68.2049vw,-10px) scale(.7357);animation:fall-5 10s -25s linear infinite}@keyframes fall-5{65.977%{transform:translate(59.5655vw,65.977vh) scale(.7357)}to{transform:translate(63.8852vw,99vh) scale(.7357)}}.snow:nth-child(6){opacity:1.2828;transform:translate(68.1748vw,-10px) scale(.2839);animation:fall-6 29s -8s linear infinite}@keyframes fall-6{46.564%{transform:translate(65.5391vw,46.564vh) scale(.2839)}to{transform:translate(66.85695vw,99vh) scale(.2839)}}.snow:nth-child(7){opacity:1.2402;transform:translate(58.6712vw,-10px) scale(.1863);animation:fall-7 28s -22s linear infinite}@keyframes fall-7{30.513%{transform:translate(66.0447vw,30.513vh) scale(.1863)}to{transform:translate(62.35795vw,99vh) scale(.1863)}}.snow:nth-child(8){opacity:.3788;transform:translate(75.8256vw,-10px) scale(.1255);animation:fall-8 20s -21s linear infinite}@keyframes fall-8{65.969%{transform:translate(83.6556vw,65.969vh) scale(.1255)}to{transform:translate(79.7406vw,99vh) scale(.1255)}}.snow:nth-child(9){opacity:.3364;transform:translate(84.2309vw,-10px) scale(.175);animation:fall-9 18s -18s linear infinite}@keyframes fall-9{76.162%{transform:translate(88.983vw,76.162vh) scale(.175)}to{transform:translate(86.60695vw,99vh) scale(.175)}}.snow:nth-child(10){opacity:.731;transform:translate(39.8093vw,-10px) scale(.2429);animation:fall-10 28s -15s linear infinite}@keyframes fall-10{42.936%{transform:translate(46.57vw,42.936vh) scale(.2429)}to{transform:translate(43.18965vw,99vh) scale(.2429)}}.snow:nth-child(11){opacity:1.099;transform:translate(81.9708vw,-10px) scale(.3822);animation:fall-11 19s -23s linear infinite}@keyframes fall-11{44.681%{transform:translate(78.1297vw,44.681vh) scale(.3822)}to{transform:translate(80.05025vw,99vh) scale(.3822)}}.snow:nth-child(12){opacity:.1778;transform:translate(49.3213vw,-10px) scale(.7268);animation:fall-12 13s -23s linear infinite}@keyframes fall-12{75.24%{transform:translate(55.1312vw,75.24vh) scale(.7268)}to{transform:translate(52.22625vw,99vh) scale(.7268)}}.snow:nth-child(13){opacity:1.4342;transform:translate(31.4526vw,-10px) scale(.7468);animation:fall-13 25s -18s linear infinite}@keyframes fall-13{65.995%{transform:translate(33.3362vw,65.995vh) scale(.7468)}to{transform:translate(32.3944vw,99vh) scale(.7468)}}.snow:nth-child(14){opacity:.9302;transform:translate(41.8308vw,-10px) scale(.3498);animation:fall-14 10s -20s linear infinite}@keyframes fall-14{38.185%{transform:translate(32.8701vw,38.185vh) scale(.3498)}to{transform:translate(37.35045vw,99vh) scale(.3498)}}.snow:nth-child(15){opacity:1.1412;transform:translate(12.6021vw,-10px) scale(.8871);animation:fall-15 27s -30s linear infinite}@keyframes fall-15{41.3%{transform:translate(18.1655vw,41.3vh) scale(.8871)}to{transform:translate(15.3838vw,99vh) scale(.8871)}}.snow:nth-child(16){opacity:.3298;transform:translate(23.7119vw,-10px) scale(.2397);animation:fall-16 14s -9s linear infinite}@keyframes fall-16{42.493%{transform:translate(19.0236vw,42.493vh) scale(.2397)}to{transform:translate(21.36775vw,99vh) scale(.2397)}}.snow:nth-child(17){opacity:1.518;transform:translate(96.5786vw,-10px) scale(.8563);animation:fall-17 26s -12s linear infinite}@keyframes fall-17{64.025%{transform:translate(100.7826vw,64.025vh) scale(.8563)}to{transform:translate(98.6806vw,99vh) scale(.8563)}}.snow:nth-child(18){opacity:.8496;transform:translate(23.4905vw,-10px) scale(.0461);animation:fall-18 11s -29s linear infinite}@keyframes fall-18{69.928%{transform:translate(19.6791vw,69.928vh) scale(.0461)}to{transform:translate(21.5848vw,99vh) scale(.0461)}}.snow:nth-child(19){opacity:.9644;transform:translate(65.5712vw,-10px) scale(.7548);animation:fall-19 11s -7s linear infinite}@keyframes fall-19{65.463%{transform:translate(62.5497vw,65.463vh) scale(.7548)}to{transform:translate(64.06045vw,99vh) scale(.7548)}}.snow:nth-child(20){opacity:.503;transform:translate(53.4854vw,-10px) scale(.7142);animation:fall-20 14s -20s linear infinite}@keyframes fall-20{37.62%{transform:translate(52.8315vw,37.62vh) scale(.7142)}to{transform:translate(53.15845vw,99vh) scale(.7142)}}.snow:nth-child(21){opacity:1.9662;transform:translate(14.0273vw,-10px) scale(.6052);animation:fall-21 30s -15s linear infinite}@keyframes fall-21{41.768%{transform:translate(21.8075vw,41.768vh) scale(.6052)}to{transform:translate(17.9174vw,99vh) scale(.6052)}}.snow:nth-child(22){opacity:.0238;transform:translate(81.4049vw,-10px) scale(.9021);animation:fall-22 13s -23s linear infinite}@keyframes fall-22{57.71%{transform:translate(83.9134vw,57.71vh) scale(.9021)}to{transform:translate(82.65915vw,99vh) scale(.9021)}}.snow:nth-child(23){opacity:1.7616;transform:translate(26.4743vw,-10px) scale(.2069);animation:fall-23 12s -5s linear infinite}@keyframes fall-23{30.59%{transform:translate(34.4431vw,30.59vh) scale(.2069)}to{transform:translate(30.4587vw,99vh) scale(.2069)}}.snow:nth-child(24){opacity:1.6144;transform:translate(11.8464vw,-10px) scale(.4953);animation:fall-24 27s -4s linear infinite}@keyframes fall-24{59.452%{transform:translate(17.4804vw,59.452vh) scale(.4953)}to{transform:translate(14.6634vw,99vh) scale(.4953)}}.snow:nth-child(25){opacity:.7312;transform:translate(10.0429vw,-10px) scale(.6547);animation:fall-25 12s -9s linear infinite}@keyframes fall-25{79.089%{transform:translate(16.6281vw,79.089vh) scale(.6547)}to{transform:translate(13.3355vw,99vh) scale(.6547)}}.snow:nth-child(26){opacity:1.7638;transform:translate(61.1895vw,-10px) scale(.9222);animation:fall-26 10s -21s linear infinite}@keyframes fall-26{40.387%{transform:translate(57.1295vw,40.387vh) scale(.9222)}to{transform:translate(59.1595vw,99vh) scale(.9222)}}.snow:nth-child(27){opacity:1.0524;transform:translate(90.3vw,-10px) scale(.6322);animation:fall-27 21s -11s linear infinite}@keyframes fall-27{73.257%{transform:translate(95.739vw,73.257vh) scale(.6322)}to{transform:translate(93.0195vw,99vh) scale(.6322)}}.snow:nth-child(28){opacity:.663;transform:translate(9.5078vw,-10px) scale(.5314);animation:fall-28 27s -4s linear infinite}@keyframes fall-28{42.172%{transform:translate(.5451vw,42.172vh) scale(.5314)}to{transform:translate(5.02645vw,99vh) scale(.5314)}}.snow:nth-child(29){opacity:1.2516;transform:translate(47.7206vw,-10px) scale(.4111);animation:fall-29 25s -9s linear infinite}@keyframes fall-29{78.384%{transform:translate(47.1408vw,78.384vh) scale(.4111)}to{transform:translate(47.4307vw,99vh) scale(.4111)}}.snow:nth-child(30){opacity:1.0204;transform:translate(32.724vw,-10px) scale(.0546);animation:fall-30 16s -22s linear infinite}@keyframes fall-30{56.708%{transform:translate(37.2414vw,56.708vh) scale(.0546)}to{transform:translate(34.9827vw,99vh) scale(.0546)}}.snow:nth-child(31){opacity:.4898;transform:translate(76.9768vw,-10px) scale(.815);animation:fall-31 29s -22s linear infinite}@keyframes fall-31{49.281%{transform:translate(76.3926vw,49.281vh) scale(.815)}to{transform:translate(76.6847vw,99vh) scale(.815)}}.snow:nth-child(32){opacity:.6454;transform:translate(22.8395vw,-10px) scale(.9848);animation:fall-32 14s -29s linear infinite}@keyframes fall-32{71.083%{transform:translate(24.5447vw,71.083vh) scale(.9848)}to{transform:translate(23.6921vw,99vh) scale(.9848)}}.snow:nth-child(33){opacity:1.636;transform:translate(87.8727vw,-10px) scale(.268);animation:fall-33 20s -5s linear infinite}@keyframes fall-33{63.814%{transform:translate(94.226vw,63.814vh) scale(.268)}to{transform:translate(91.04935vw,99vh) scale(.268)}}.snow:nth-child(34){opacity:.4944;transform:translate(23.0086vw,-10px) scale(.8002);animation:fall-34 22s -26s linear infinite}@keyframes fall-34{44.744%{transform:translate(13.9131vw,44.744vh) scale(.8002)}to{transform:translate(18.46085vw,99vh) scale(.8002)}}.snow:nth-child(35){opacity:1.3424;transform:translate(34.7764vw,-10px) scale(.3519);animation:fall-35 22s -12s linear infinite}@keyframes fall-35{58.398%{transform:translate(37.4689vw,58.398vh) scale(.3519)}to{transform:translate(36.12265vw,99vh) scale(.3519)}}.snow:nth-child(36){opacity:.3426;transform:translate(88.5009vw,-10px) scale(.3672);animation:fall-36 17s -17s linear infinite}@keyframes fall-36{50.995%{transform:translate(95.3667vw,50.995vh) scale(.3672)}to{transform:translate(91.9338vw,99vh) scale(.3672)}}.snow:nth-child(37){opacity:1.082;transform:translate(61.2983vw,-10px) scale(.9698);animation:fall-37 21s -17s linear infinite}@keyframes fall-37{48.619%{transform:translate(65.6582vw,48.619vh) scale(.9698)}to{transform:translate(63.47825vw,99vh) scale(.9698)}}.snow:nth-child(38){opacity:.267;transform:translate(41.503vw,-10px) scale(.4571);animation:fall-38 26s -28s linear infinite}@keyframes fall-38{68.687%{transform:translate(34.0066vw,68.687vh) scale(.4571)}to{transform:translate(37.7548vw,99vh) scale(.4571)}}.snow:nth-child(39){opacity:.6146;transform:translate(38.2626vw,-10px) scale(.7577);animation:fall-39 14s -9s linear infinite}@keyframes fall-39{63.432%{transform:translate(46.1044vw,63.432vh) scale(.7577)}to{transform:translate(42.1835vw,99vh) scale(.7577)}}.snow:nth-child(40){opacity:.0858;transform:translate(68.8362vw,-10px) scale(.528);animation:fall-40 29s -11s linear infinite}@keyframes fall-40{41.898%{transform:translate(78.1864vw,41.898vh) scale(.528)}to{transform:translate(73.5113vw,99vh) scale(.528)}}.snow:nth-child(41){opacity:1.8398;transform:translate(58.222vw,-10px) scale(.6158);animation:fall-41 13s -16s linear infinite}@keyframes fall-41{44.365%{transform:translate(52.2848vw,44.365vh) scale(.6158)}to{transform:translate(55.2534vw,99vh) scale(.6158)}}.snow:nth-child(42){opacity:.7528;transform:translate(88.8293vw,-10px) scale(.3767);animation:fall-42 22s -4s linear infinite}@keyframes fall-42{64.893%{transform:translate(93.5799vw,64.893vh) scale(.3767)}to{transform:translate(91.2046vw,99vh) scale(.3767)}}.snow:nth-child(43){opacity:1.7344;transform:translate(65.104vw,-10px) scale(.1432);animation:fall-43 15s -4s linear infinite}@keyframes fall-43{54.298%{transform:translate(74.6903vw,54.298vh) scale(.1432)}to{transform:translate(69.89715vw,99vh) scale(.1432)}}.snow:nth-child(44){opacity:.0072;transform:translate(48.2826vw,-10px) scale(.6322);animation:fall-44 25s -16s linear infinite}@keyframes fall-44{50.065%{transform:translate(45.8319vw,50.065vh) scale(.6322)}to{transform:translate(47.05725vw,99vh) scale(.6322)}}.snow:nth-child(45){opacity:.4002;transform:translate(43.9518vw,-10px) scale(.4729);animation:fall-45 20s -29s linear infinite}@keyframes fall-45{46.562%{transform:translate(40.3946vw,46.562vh) scale(.4729)}to{transform:translate(42.1732vw,99vh) scale(.4729)}}.snow:nth-child(46){opacity:1.321;transform:translate(78.7659vw,-10px) scale(.0846);animation:fall-46 13s -5s linear infinite}@keyframes fall-46{30.785%{transform:translate(82.5725vw,30.785vh) scale(.0846)}to{transform:translate(80.6692vw,99vh) scale(.0846)}}.snow:nth-child(47){opacity:.936;transform:translate(76.9812vw,-10px) scale(.6012);animation:fall-47 25s -25s linear infinite}@keyframes fall-47{72.541%{transform:translate(82.9828vw,72.541vh) scale(.6012)}to{transform:translate(79.982vw,99vh) scale(.6012)}}.snow:nth-child(48){opacity:.3498;transform:translate(72.0271vw,-10px) scale(.6144);animation:fall-48 26s -17s linear infinite}@keyframes fall-48{38.905%{transform:translate(71.4998vw,38.905vh) scale(.6144)}to{transform:translate(71.76345vw,99vh) scale(.6144)}}.snow:nth-child(49){opacity:.1282;transform:translate(11.2418vw,-10px) scale(.9263);animation:fall-49 23s -8s linear infinite}@keyframes fall-49{72.115%{transform:translate(7.8682vw,72.115vh) scale(.9263)}to{transform:translate(9.555vw,99vh) scale(.9263)}}.snow:nth-child(50){opacity:1.5332;transform:translate(38.5857vw,-10px) scale(.867);animation:fall-50 15s -18s linear infinite}@keyframes fall-50{77.78%{transform:translate(41.3463vw,77.78vh) scale(.867)}to{transform:translate(39.966vw,99vh) scale(.867)}}.snow:nth-child(51){opacity:.7068;transform:translate(24.8244vw,-10px) scale(.7731);animation:fall-51 29s -23s linear infinite}@keyframes fall-51{76.941%{transform:translate(33.0699vw,76.941vh) scale(.7731)}to{transform:translate(28.94715vw,99vh) scale(.7731)}}.snow:nth-child(52){opacity:1.3172;transform:translate(11.4738vw,-10px) scale(.8777);animation:fall-52 25s -6s linear infinite}@keyframes fall-52{65.201%{transform:translate(16.8992vw,65.201vh) scale(.8777)}to{transform:translate(14.1865vw,99vh) scale(.8777)}}.snow:nth-child(53){opacity:.9852;transform:translate(18.1826vw,-10px) scale(.6219);animation:fall-53 17s -2s linear infinite}@keyframes fall-53{30.261%{transform:translate(26.402vw,30.261vh) scale(.6219)}to{transform:translate(22.2923vw,99vh) scale(.6219)}}.snow:nth-child(54){opacity:1.405;transform:translate(81.0163vw,-10px) scale(.0986);animation:fall-54 24s -29s linear infinite}@keyframes fall-54{66.982%{transform:translate(87.8764vw,66.982vh) scale(.0986)}to{transform:translate(84.44635vw,99vh) scale(.0986)}}.snow:nth-child(55){opacity:.2418;transform:translate(99.3087vw,-10px) scale(.428);animation:fall-55 27s -4s linear infinite}@keyframes fall-55{59.475%{transform:translate(99.6666vw,59.475vh) scale(.428)}to{transform:translate(99.48765vw,99vh) scale(.428)}}.snow:nth-child(56){opacity:.5608;transform:translate(26.5782vw,-10px) scale(.1474);animation:fall-56 28s -20s linear infinite}@keyframes fall-56{47.042%{transform:translate(18.2032vw,47.042vh) scale(.1474)}to{transform:translate(22.3907vw,99vh) scale(.1474)}}.snow:nth-child(57){opacity:1.8108;transform:translate(60.2967vw,-10px) scale(.0682);animation:fall-57 25s -11s linear infinite}@keyframes fall-57{58.372%{transform:translate(56.2807vw,58.372vh) scale(.0682)}to{transform:translate(58.2887vw,99vh) scale(.0682)}}.snow:nth-child(58){opacity:.7278;transform:translate(93.9021vw,-10px) scale(.7478);animation:fall-58 19s -18s linear infinite}@keyframes fall-58{48.053%{transform:translate(95.0298vw,48.053vh) scale(.7478)}to{transform:translate(94.46595vw,99vh) scale(.7478)}}.snow:nth-child(59){opacity:.0028;transform:translate(59.168vw,-10px) scale(.8662);animation:fall-59 20s -26s linear infinite}@keyframes fall-59{66.707%{transform:translate(61.8269vw,66.707vh) scale(.8662)}to{transform:translate(60.49745vw,99vh) scale(.8662)}}.snow:nth-child(60){opacity:.6454;transform:translate(88.1395vw,-10px) scale(.7279);animation:fall-60 14s -29s linear infinite}@keyframes fall-60{39.754%{transform:translate(95.9079vw,39.754vh) scale(.7279)}to{transform:translate(92.0237vw,99vh) scale(.7279)}}.snow:nth-child(61){opacity:.5818;transform:translate(66.5254vw,-10px) scale(.4333);animation:fall-61 18s -23s linear infinite}@keyframes fall-61{33.098%{transform:translate(66.0782vw,33.098vh) scale(.4333)}to{transform:translate(66.3018vw,99vh) scale(.4333)}}.snow:nth-child(62){opacity:.1676;transform:translate(.3016vw,-10px) scale(.8604);animation:fall-62 11s -27s linear infinite}@keyframes fall-62{67.797%{transform:translate(9.8546vw,67.797vh) scale(.8604)}to{transform:translate(5.0781vw,99vh) scale(.8604)}}.snow:nth-child(63){opacity:.7278;transform:translate(32.9367vw,-10px) scale(.9718);animation:fall-63 10s -16s linear infinite}@keyframes fall-63{37.821%{transform:translate(31.0431vw,37.821vh) scale(.9718)}to{transform:translate(31.9899vw,99vh) scale(.9718)}}.snow:nth-child(64){opacity:1.118;transform:translate(83.2969vw,-10px) scale(.0348);animation:fall-64 23s -24s linear infinite}@keyframes fall-64{57.893%{transform:translate(91.3837vw,57.893vh) scale(.0348)}to{transform:translate(87.3403vw,99vh) scale(.0348)}}.snow:nth-child(65){opacity:.0518;transform:translate(16.6951vw,-10px) scale(.4525);animation:fall-65 12s -2s linear infinite}@keyframes fall-65{68.188%{transform:translate(10.3vw,68.188vh) scale(.4525)}to{transform:translate(13.49755vw,99vh) scale(.4525)}}.snow:nth-child(66){opacity:.9564;transform:translate(75.6158vw,-10px) scale(.4987);animation:fall-66 20s -8s linear infinite}@keyframes fall-66{61.325%{transform:translate(66.1395vw,61.325vh) scale(.4987)}to{transform:translate(70.87765vw,99vh) scale(.4987)}}.snow:nth-child(67){opacity:.6314;transform:translate(4.5313vw,-10px) scale(.3653);animation:fall-67 18s -23s linear infinite}@keyframes fall-67{75.679%{transform:translate(5.0972vw,75.679vh) scale(.3653)}to{transform:translate(4.81425vw,99vh) scale(.3653)}}.snow:nth-child(68){opacity:.7712;transform:translate(76.603vw,-10px) scale(.2105);animation:fall-68 13s -18s linear infinite}@keyframes fall-68{61.571%{transform:translate(82.2085vw,61.571vh) scale(.2105)}to{transform:translate(79.40575vw,99vh) scale(.2105)}}.snow:nth-child(69){opacity:1.6478;transform:translate(42.5428vw,-10px) scale(.1386);animation:fall-69 18s -7s linear infinite}@keyframes fall-69{38.647%{transform:translate(46.7562vw,38.647vh) scale(.1386)}to{transform:translate(44.6495vw,99vh) scale(.1386)}}.snow:nth-child(70){opacity:.3106;transform:translate(82.8012vw,-10px) scale(.572);animation:fall-70 10s -17s linear infinite}@keyframes fall-70{42.024%{transform:translate(88.9823vw,42.024vh) scale(.572)}to{transform:translate(85.89175vw,99vh) scale(.572)}}.snow:nth-child(71){opacity:.786;transform:translate(19.2239vw,-10px) scale(.8045);animation:fall-71 21s -13s linear infinite}@keyframes fall-71{39.392%{transform:translate(20.4992vw,39.392vh) scale(.8045)}to{transform:translate(19.86155vw,99vh) scale(.8045)}}.snow:nth-child(72){opacity:.5522;transform:translate(1.7567vw,-10px) scale(.5367);animation:fall-72 29s -7s linear infinite}@keyframes fall-72{55.528%{transform:translate(-4.3635vw,55.528vh) scale(.5367)}to{transform:translate(-1.3034vw,99vh) scale(.5367)}}.snow:nth-child(73){opacity:1.5734;transform:translate(42.11vw,-10px) scale(.3835);animation:fall-73 19s -14s linear infinite}@keyframes fall-73{69.357%{transform:translate(44.5844vw,69.357vh) scale(.3835)}to{transform:translate(43.3472vw,99vh) scale(.3835)}}.snow:nth-child(74){opacity:.5504;transform:translate(34.3208vw,-10px) scale(.8682);animation:fall-74 24s -18s linear infinite}@keyframes fall-74{75.57%{transform:translate(43.0913vw,75.57vh) scale(.8682)}to{transform:translate(38.70605vw,99vh) scale(.8682)}}.snow:nth-child(75){opacity:.978;transform:translate(17.9359vw,-10px) scale(.3287);animation:fall-75 20s -8s linear infinite}@keyframes fall-75{61.006%{transform:translate(18.0763vw,61.006vh) scale(.3287)}to{transform:translate(18.0061vw,99vh) scale(.3287)}}.snow:nth-child(76){opacity:1.8486;transform:translate(18.033vw,-10px) scale(.939);animation:fall-76 26s -2s linear infinite}@keyframes fall-76{44.31%{transform:translate(22.1267vw,44.31vh) scale(.939)}to{transform:translate(20.07985vw,99vh) scale(.939)}}.snow:nth-child(77){opacity:.7888;transform:translate(47.0648vw,-10px) scale(.1469);animation:fall-77 17s -6s linear infinite}@keyframes fall-77{71.853%{transform:translate(41.8326vw,71.853vh) scale(.1469)}to{transform:translate(44.4487vw,99vh) scale(.1469)}}.snow:nth-child(78){opacity:1.4148;transform:translate(59.0491vw,-10px) scale(.7177);animation:fall-78 24s -6s linear infinite}@keyframes fall-78{77.382%{transform:translate(57.2528vw,77.382vh) scale(.7177)}to{transform:translate(58.15095vw,99vh) scale(.7177)}}.snow:nth-child(79){opacity:1.4582;transform:translate(80.7734vw,-10px) scale(.4503);animation:fall-79 21s -23s linear infinite}@keyframes fall-79{67.67%{transform:translate(84.7155vw,67.67vh) scale(.4503)}to{transform:translate(82.74445vw,99vh) scale(.4503)}}.snow:nth-child(80){opacity:.9836;transform:translate(4.6246vw,-10px) scale(.5288);animation:fall-80 27s -11s linear infinite}@keyframes fall-80{78.243%{transform:translate(-1.8375vw,78.243vh) scale(.5288)}to{transform:translate(1.39355vw,99vh) scale(.5288)}}.snow:nth-child(81){opacity:1.3734;transform:translate(83.646vw,-10px) scale(.5925);animation:fall-81 24s -10s linear infinite}@keyframes fall-81{71.792%{transform:translate(87.8249vw,71.792vh) scale(.5925)}to{transform:translate(85.73545vw,99vh) scale(.5925)}}.snow:nth-child(82){opacity:1.8744;transform:translate(68.8999vw,-10px) scale(.9021);animation:fall-82 27s -14s linear infinite}@keyframes fall-82{31.851%{transform:translate(60.186vw,31.851vh) scale(.9021)}to{transform:translate(64.54295vw,99vh) scale(.9021)}}.snow:nth-child(83){opacity:1.0958;transform:translate(39.8153vw,-10px) scale(.0394);animation:fall-83 20s -1s linear infinite}@keyframes fall-83{45.725%{transform:translate(33.3242vw,45.725vh) scale(.0394)}to{transform:translate(36.56975vw,99vh) scale(.0394)}}.snow:nth-child(84){opacity:1.4178;transform:translate(42.8455vw,-10px) scale(.2798);animation:fall-84 29s -13s linear infinite}@keyframes fall-84{37.513%{transform:translate(41.3692vw,37.513vh) scale(.2798)}to{transform:translate(42.10735vw,99vh) scale(.2798)}}.snow:nth-child(85){opacity:.6516;transform:translate(79.1094vw,-10px) scale(.125);animation:fall-85 27s -6s linear infinite}@keyframes fall-85{49.774%{transform:translate(88.5783vw,49.774vh) scale(.125)}to{transform:translate(83.84385vw,99vh) scale(.125)}}.snow:nth-child(86){opacity:.2594;transform:translate(62.7096vw,-10px) scale(.2212);animation:fall-86 19s -13s linear infinite}@keyframes fall-86{44.702%{transform:translate(55.0648vw,44.702vh) scale(.2212)}to{transform:translate(58.8872vw,99vh) scale(.2212)}}.snow:nth-child(87){opacity:1.0566;transform:translate(91.984vw,-10px) scale(.5438);animation:fall-87 25s -29s linear infinite}@keyframes fall-87{50.785%{transform:translate(92.1289vw,50.785vh) scale(.5438)}to{transform:translate(92.05645vw,99vh) scale(.5438)}}.snow:nth-child(88){opacity:.43;transform:translate(60.3221vw,-10px) scale(.2322);animation:fall-88 19s -6s linear infinite}@keyframes fall-88{30.123%{transform:translate(59.5311vw,30.123vh) scale(.2322)}to{transform:translate(59.9266vw,99vh) scale(.2322)}}.snow:nth-child(89){opacity:.8626;transform:translate(66.1313vw,-10px) scale(.2137);animation:fall-89 25s -15s linear infinite}@keyframes fall-89{34.79%{transform:translate(57.7208vw,34.79vh) scale(.2137)}to{transform:translate(61.92605vw,99vh) scale(.2137)}}.snow:nth-child(90){opacity:.5606;transform:translate(47.0104vw,-10px) scale(.6196);animation:fall-90 26s -13s linear infinite}@keyframes fall-90{72.976%{transform:translate(55.497vw,72.976vh) scale(.6196)}to{transform:translate(51.2537vw,99vh) scale(.6196)}}.snow:nth-child(91){opacity:1.506;transform:translate(39.4391vw,-10px) scale(.1734);animation:fall-91 20s -16s linear infinite}@keyframes fall-91{40.171%{transform:translate(46.0235vw,40.171vh) scale(.1734)}to{transform:translate(42.7313vw,99vh) scale(.1734)}}.snow:nth-child(92){opacity:1.0546;transform:translate(42.0213vw,-10px) scale(.5722);animation:fall-92 19s -19s linear infinite}@keyframes fall-92{53.257%{transform:translate(38.0414vw,53.257vh) scale(.5722)}to{transform:translate(40.03135vw,99vh) scale(.5722)}}.snow:nth-child(93){opacity:1.5856;transform:translate(68.8144vw,-10px) scale(.848);animation:fall-93 12s -8s linear infinite}@keyframes fall-93{62.774%{transform:translate(70.4959vw,62.774vh) scale(.848)}to{transform:translate(69.65515vw,99vh) scale(.848)}}.snow:nth-child(94){opacity:1.9384;transform:translate(1.0036vw,-10px) scale(.0721);animation:fall-94 11s -24s linear infinite}@keyframes fall-94{38.045%{transform:translate(-4.8354vw,38.045vh) scale(.0721)}to{transform:translate(-1.9159vw,99vh) scale(.0721)}}.snow:nth-child(95){opacity:1.1624;transform:translate(75.4092vw,-10px) scale(.9657);animation:fall-95 21s -23s linear infinite}@keyframes fall-95{59.017%{transform:translate(70.7288vw,59.017vh) scale(.9657)}to{transform:translate(73.069vw,99vh) scale(.9657)}}.snow:nth-child(96){opacity:1.9328;transform:translate(92.8548vw,-10px) scale(.7568);animation:fall-96 28s -20s linear infinite}@keyframes fall-96{49.15%{transform:translate(102.1839vw,49.15vh) scale(.7568)}to{transform:translate(97.51935vw,99vh) scale(.7568)}}.snow:nth-child(97){opacity:.5544;transform:translate(38.1272vw,-10px) scale(.9201);animation:fall-97 14s -10s linear infinite}@keyframes fall-97{45.747%{transform:translate(40.3904vw,45.747vh) scale(.9201)}to{transform:translate(39.2588vw,99vh) scale(.9201)}}.snow:nth-child(98){opacity:.902;transform:translate(64.2038vw,-10px) scale(.2318);animation:fall-98 17s -24s linear infinite}@keyframes fall-98{36.319%{transform:translate(57.735vw,36.319vh) scale(.2318)}to{transform:translate(60.9694vw,99vh) scale(.2318)}}.snow:nth-child(99){opacity:.74;transform:translate(41.591vw,-10px) scale(.7332);animation:fall-99 17s -19s linear infinite}@keyframes fall-99{36.046%{transform:translate(34.306vw,36.046vh) scale(.7332)}to{transform:translate(37.9485vw,99vh) scale(.7332)}}.snow:nth-child(100){opacity:1.1524;transform:translate(5.3366vw,-10px) scale(.654);animation:fall-100 14s -24s linear infinite}@keyframes fall-100{71.818%{transform:translate(6.0867vw,71.818vh) scale(.654)}to{transform:translate(5.71165vw,99vh) scale(.654)}}.snow:nth-child(101){opacity:1.6546;transform:translate(77.1191vw,-10px) scale(.974);animation:fall-101 21s -27s linear infinite}@keyframes fall-101{32.479%{transform:translate(86.3745vw,32.479vh) scale(.974)}to{transform:translate(81.7468vw,99vh) scale(.974)}}.snow:nth-child(102){opacity:1.653;transform:translate(14.273vw,-10px) scale(.0969);animation:fall-102 20s -11s linear infinite}@keyframes fall-102{35.608%{transform:translate(17.1638vw,35.608vh) scale(.0969)}to{transform:translate(15.7184vw,99vh) scale(.0969)}}.snow:nth-child(103){opacity:1.1346;transform:translate(58.2843vw,-10px) scale(.804);animation:fall-103 30s -27s linear infinite}@keyframes fall-103{49.732%{transform:translate(50.8856vw,49.732vh) scale(.804)}to{transform:translate(54.58495vw,99vh) scale(.804)}}.snow:nth-child(104){opacity:.7462;transform:translate(6.2589vw,-10px) scale(.0753);animation:fall-104 21s -18s linear infinite}@keyframes fall-104{75.171%{transform:translate(11.982vw,75.171vh) scale(.0753)}to{transform:translate(9.12045vw,99vh) scale(.0753)}}.snow:nth-child(105){opacity:1.5534;transform:translate(63.9328vw,-10px) scale(.9677);animation:fall-105 13s -23s linear infinite}@keyframes fall-105{74.976%{transform:translate(71.0324vw,74.976vh) scale(.9677)}to{transform:translate(67.4826vw,99vh) scale(.9677)}}.snow:nth-child(106){opacity:1.1306;transform:translate(83.7402vw,-10px) scale(.6801);animation:fall-106 26s -13s linear infinite}@keyframes fall-106{39.772%{transform:translate(81.6161vw,39.772vh) scale(.6801)}to{transform:translate(82.67815vw,99vh) scale(.6801)}}.snow:nth-child(107){opacity:1.674;transform:translate(36.8167vw,-10px) scale(.2838);animation:fall-107 30s -7s linear infinite}@keyframes fall-107{68.658%{transform:translate(37.8015vw,68.658vh) scale(.2838)}to{transform:translate(37.3091vw,99vh) scale(.2838)}}.snow:nth-child(108){opacity:.3806;transform:translate(34.7062vw,-10px) scale(.1369);animation:fall-108 28s -18s linear infinite}@keyframes fall-108{66.537%{transform:translate(28.7601vw,66.537vh) scale(.1369)}to{transform:translate(31.73315vw,99vh) scale(.1369)}}.snow:nth-child(109){opacity:1.1858;transform:translate(34.6829vw,-10px) scale(.276);animation:fall-109 21s -25s linear infinite}@keyframes fall-109{72.92%{transform:translate(42.9366vw,72.92vh) scale(.276)}to{transform:translate(38.80975vw,99vh) scale(.276)}}.snow:nth-child(110){opacity:.8438;transform:translate(42.5871vw,-10px) scale(.2505);animation:fall-110 23s -28s linear infinite}@keyframes fall-110{34.307%{transform:translate(46.9329vw,34.307vh) scale(.2505)}to{transform:translate(44.76vw,99vh) scale(.2505)}}.snow:nth-child(111){opacity:1.1756;transform:translate(20.7618vw,-10px) scale(.8028);animation:fall-111 30s -10s linear infinite}@keyframes fall-111{32.623%{transform:translate(16.4763vw,32.623vh) scale(.8028)}to{transform:translate(18.61905vw,99vh) scale(.8028)}}.snow:nth-child(112){opacity:1.923;transform:translate(72.3804vw,-10px) scale(.0496);animation:fall-112 15s -21s linear infinite}@keyframes fall-112{64.212%{transform:translate(65.0874vw,64.212vh) scale(.0496)}to{transform:translate(68.7339vw,99vh) scale(.0496)}}.snow:nth-child(113){opacity:.7786;transform:translate(68.4528vw,-10px) scale(.0432);animation:fall-113 18s -30s linear infinite}@keyframes fall-113{35.445%{transform:translate(60.4033vw,35.445vh) scale(.0432)}to{transform:translate(64.42805vw,99vh) scale(.0432)}}.snow:nth-child(114){opacity:1.3248;transform:translate(54.0626vw,-10px) scale(.9161);animation:fall-114 25s -21s linear infinite}@keyframes fall-114{68.446%{transform:translate(54.359vw,68.446vh) scale(.9161)}to{transform:translate(54.2108vw,99vh) scale(.9161)}}.snow:nth-child(115){opacity:.0088;transform:translate(18.6916vw,-10px) scale(.652);animation:fall-115 27s -13s linear infinite}@keyframes fall-115{67.645%{transform:translate(27.9834vw,67.645vh) scale(.652)}to{transform:translate(23.3375vw,99vh) scale(.652)}}.snow:nth-child(116){opacity:1.1322;transform:translate(55.0334vw,-10px) scale(.4122);animation:fall-116 27s -30s linear infinite}@keyframes fall-116{56.524%{transform:translate(46.7893vw,56.524vh) scale(.4122)}to{transform:translate(50.91135vw,99vh) scale(.4122)}}.snow:nth-child(117){opacity:1.8754;transform:translate(56.7665vw,-10px) scale(.1395);animation:fall-117 11s -3s linear infinite}@keyframes fall-117{54.95%{transform:translate(62.3983vw,54.95vh) scale(.1395)}to{transform:translate(59.5824vw,99vh) scale(.1395)}}.snow:nth-child(118){opacity:1.4212;transform:translate(31.4421vw,-10px) scale(.3183);animation:fall-118 27s -20s linear infinite}@keyframes fall-118{48.989%{transform:translate(27.3701vw,48.989vh) scale(.3183)}to{transform:translate(29.4061vw,99vh) scale(.3183)}}.snow:nth-child(119){opacity:.2978;transform:translate(80.1829vw,-10px) scale(.7121);animation:fall-119 23s -4s linear infinite}@keyframes fall-119{50.922%{transform:translate(76.9115vw,50.922vh) scale(.7121)}to{transform:translate(78.5472vw,99vh) scale(.7121)}}.snow:nth-child(120){opacity:1.2414;transform:translate(40.7906vw,-10px) scale(.6573);animation:fall-120 23s -7s linear infinite}@keyframes fall-120{41.228%{transform:translate(33.889vw,41.228vh) scale(.6573)}to{transform:translate(37.3398vw,99vh) scale(.6573)}}.snow:nth-child(121){opacity:1.2766;transform:translate(41.6752vw,-10px) scale(.2648);animation:fall-121 12s -13s linear infinite}@keyframes fall-121{67.616%{transform:translate(45.3594vw,67.616vh) scale(.2648)}to{transform:translate(43.5173vw,99vh) scale(.2648)}}.snow:nth-child(122){opacity:.4198;transform:translate(88.9406vw,-10px) scale(.258);animation:fall-122 20s -16s linear infinite}@keyframes fall-122{43.075%{transform:translate(95.8834vw,43.075vh) scale(.258)}to{transform:translate(92.412vw,99vh) scale(.258)}}.snow:nth-child(123){opacity:.7124;transform:translate(83.1536vw,-10px) scale(.5079);animation:fall-123 11s -2s linear infinite}@keyframes fall-123{34.072%{transform:translate(84.2381vw,34.072vh) scale(.5079)}to{transform:translate(83.69585vw,99vh) scale(.5079)}}.snow:nth-child(124){opacity:1.7652;transform:translate(31.9469vw,-10px) scale(.822);animation:fall-124 14s -9s linear infinite}@keyframes fall-124{66.493%{transform:translate(36.9271vw,66.493vh) scale(.822)}to{transform:translate(34.437vw,99vh) scale(.822)}}.snow:nth-child(125){opacity:.9638;transform:translate(42.2679vw,-10px) scale(.3012);animation:fall-125 20s -17s linear infinite}@keyframes fall-125{76.467%{transform:translate(43.5435vw,76.467vh) scale(.3012)}to{transform:translate(42.9057vw,99vh) scale(.3012)}}.snow:nth-child(126){opacity:.4954;transform:translate(78.3345vw,-10px) scale(.9522);animation:fall-126 15s -16s linear infinite}@keyframes fall-126{75.433%{transform:translate(81.4488vw,75.433vh) scale(.9522)}to{transform:translate(79.89165vw,99vh) scale(.9522)}}.snow:nth-child(127){opacity:1.9982;transform:translate(37.3128vw,-10px) scale(.1231);animation:fall-127 21s -10s linear infinite}@keyframes fall-127{43.356%{transform:translate(33.7848vw,43.356vh) scale(.1231)}to{transform:translate(35.5488vw,99vh) scale(.1231)}}.snow:nth-child(128){opacity:.0292;transform:translate(62.0181vw,-10px) scale(.9446);animation:fall-128 15s -11s linear infinite}@keyframes fall-128{39.665%{transform:translate(55.7327vw,39.665vh) scale(.9446)}to{transform:translate(58.8754vw,99vh) scale(.9446)}}.snow:nth-child(129){opacity:1.0816;transform:translate(51.0733vw,-10px) scale(.0352);animation:fall-129 25s -29s linear infinite}@keyframes fall-129{63.861%{transform:translate(48.9824vw,63.861vh) scale(.0352)}to{transform:translate(50.02785vw,99vh) scale(.0352)}}.snow:nth-child(130){opacity:.0786;transform:translate(83.0942vw,-10px) scale(.2912);animation:fall-130 30s -10s linear infinite}@keyframes fall-130{51.475%{transform:translate(91.077vw,51.475vh) scale(.2912)}to{transform:translate(87.0856vw,99vh) scale(.2912)}}.snow:nth-child(131){opacity:.02;transform:translate(46.833vw,-10px) scale(.766);animation:fall-131 20s -28s linear infinite}@keyframes fall-131{51.436%{transform:translate(53.6999vw,51.436vh) scale(.766)}to{transform:translate(50.26645vw,99vh) scale(.766)}}.snow:nth-child(132){opacity:.0326;transform:translate(22.9576vw,-10px) scale(.845);animation:fall-132 13s -26s linear infinite}@keyframes fall-132{57.101%{transform:translate(16.0865vw,57.101vh) scale(.845)}to{transform:translate(19.52205vw,99vh) scale(.845)}}.snow:nth-child(133){opacity:1.3978;transform:translate(74.9292vw,-10px) scale(.3367);animation:fall-133 21s -23s linear infinite}@keyframes fall-133{37.15%{transform:translate(67.3766vw,37.15vh) scale(.3367)}to{transform:translate(71.1529vw,99vh) scale(.3367)}}.snow:nth-child(134){opacity:1.7914;transform:translate(96.8068vw,-10px) scale(.2535);animation:fall-134 23s -15s linear infinite}@keyframes fall-134{30.399%{transform:translate(89.1602vw,30.399vh) scale(.2535)}to{transform:translate(92.9835vw,99vh) scale(.2535)}}.snow:nth-child(135){opacity:1.402;transform:translate(29.7414vw,-10px) scale(.5605);animation:fall-135 11s -17s linear infinite}@keyframes fall-135{58.802%{transform:translate(25.7955vw,58.802vh) scale(.5605)}to{transform:translate(27.76845vw,99vh) scale(.5605)}}.snow:nth-child(136){opacity:.7118;transform:translate(21.8828vw,-10px) scale(.8323);animation:fall-136 19s -4s linear infinite}@keyframes fall-136{63.268%{transform:translate(15.6686vw,63.268vh) scale(.8323)}to{transform:translate(18.7757vw,99vh) scale(.8323)}}.snow:nth-child(137){opacity:.9858;transform:translate(20.0581vw,-10px) scale(.2869);animation:fall-137 17s -25s linear infinite}@keyframes fall-137{43.61%{transform:translate(29.2817vw,43.61vh) scale(.2869)}to{transform:translate(24.6699vw,99vh) scale(.2869)}}.snow:nth-child(138){opacity:1.5808;transform:translate(73.0459vw,-10px) scale(.6673);animation:fall-138 17s -1s linear infinite}@keyframes fall-138{46.256%{transform:translate(75.376vw,46.256vh) scale(.6673)}to{transform:translate(74.21095vw,99vh) scale(.6673)}}.snow:nth-child(139){opacity:.4112;transform:translate(86.7296vw,-10px) scale(.1345);animation:fall-139 17s -13s linear infinite}@keyframes fall-139{45.295%{transform:translate(91.5016vw,45.295vh) scale(.1345)}to{transform:translate(89.1156vw,99vh) scale(.1345)}}.snow:nth-child(140){opacity:1.449;transform:translate(62.9533vw,-10px) scale(.2268);animation:fall-140 12s -26s linear infinite}@keyframes fall-140{42.838%{transform:translate(70.8473vw,42.838vh) scale(.2268)}to{transform:translate(66.9003vw,99vh) scale(.2268)}}.snow:nth-child(141){opacity:.8714;transform:translate(54.8529vw,-10px) scale(.7158);animation:fall-141 27s -15s linear infinite}@keyframes fall-141{51.008%{transform:translate(53.0291vw,51.008vh) scale(.7158)}to{transform:translate(53.941vw,99vh) scale(.7158)}}.snow:nth-child(142){opacity:1.369;transform:translate(52.5428vw,-10px) scale(.1146);animation:fall-142 19s -24s linear infinite}@keyframes fall-142{74.954%{transform:translate(43.216vw,74.954vh) scale(.1146)}to{transform:translate(47.8794vw,99vh) scale(.1146)}}.snow:nth-child(143){opacity:1.045;transform:translate(36.021vw,-10px) scale(.2564);animation:fall-143 24s -18s linear infinite}@keyframes fall-143{51.109%{transform:translate(40.7064vw,51.109vh) scale(.2564)}to{transform:translate(38.3637vw,99vh) scale(.2564)}}.snow:nth-child(144){opacity:1.0276;transform:translate(26.1142vw,-10px) scale(.4306);animation:fall-144 22s -1s linear infinite}@keyframes fall-144{56.926%{transform:translate(21.0942vw,56.926vh) scale(.4306)}to{transform:translate(23.6042vw,99vh) scale(.4306)}}.snow:nth-child(145){opacity:.9908;transform:translate(30.3395vw,-10px) scale(.0495);animation:fall-145 20s -9s linear infinite}@keyframes fall-145{36.786%{transform:translate(37.7647vw,36.786vh) scale(.0495)}to{transform:translate(34.0521vw,99vh) scale(.0495)}}.snow:nth-child(146){opacity:.6794;transform:translate(90.8662vw,-10px) scale(.0084);animation:fall-146 30s -26s linear infinite}@keyframes fall-146{74.899%{transform:translate(98.1211vw,74.899vh) scale(.0084)}to{transform:translate(94.49365vw,99vh) scale(.0084)}}.snow:nth-child(147){opacity:.6224;transform:translate(83.7256vw,-10px) scale(.5768);animation:fall-147 24s -14s linear infinite}@keyframes fall-147{56.4%{transform:translate(86.1289vw,56.4vh) scale(.5768)}to{transform:translate(84.92725vw,99vh) scale(.5768)}}.snow:nth-child(148){opacity:.6526;transform:translate(94.6917vw,-10px) scale(.7805);animation:fall-148 25s -6s linear infinite}@keyframes fall-148{46.479%{transform:translate(94.0079vw,46.479vh) scale(.7805)}to{transform:translate(94.3498vw,99vh) scale(.7805)}}.snow:nth-child(149){opacity:.0748;transform:translate(78.562vw,-10px) scale(.1711);animation:fall-149 23s -30s linear infinite}@keyframes fall-149{62.987%{transform:translate(77.2012vw,62.987vh) scale(.1711)}to{transform:translate(77.8816vw,99vh) scale(.1711)}}.snow:nth-child(150){opacity:1.9016;transform:translate(54.772vw,-10px) scale(.0593);animation:fall-150 28s -25s linear infinite}@keyframes fall-150{73.353%{transform:translate(54.2648vw,73.353vh) scale(.0593)}to{transform:translate(54.5184vw,99vh) scale(.0593)}}.snow:nth-child(151){opacity:1.33;transform:translate(.3005vw,-10px) scale(.0345);animation:fall-151 12s -3s linear infinite}@keyframes fall-151{33.563%{transform:translate(2.1218vw,33.563vh) scale(.0345)}to{transform:translate(1.21115vw,99vh) scale(.0345)}}.snow:nth-child(152){opacity:.2664;transform:translate(66.7598vw,-10px) scale(.0032);animation:fall-152 29s -25s linear infinite}@keyframes fall-152{68.679%{transform:translate(58.1801vw,68.679vh) scale(.0032)}to{transform:translate(62.46995vw,99vh) scale(.0032)}}.snow:nth-child(153){opacity:.4782;transform:translate(29.4609vw,-10px) scale(.8986);animation:fall-153 20s -4s linear infinite}@keyframes fall-153{42.803%{transform:translate(28.7713vw,42.803vh) scale(.8986)}to{transform:translate(29.1161vw,99vh) scale(.8986)}}.snow:nth-child(154){opacity:.068;transform:translate(58.3533vw,-10px) scale(.3554);animation:fall-154 17s -15s linear infinite}@keyframes fall-154{58.263%{transform:translate(66.0392vw,58.263vh) scale(.3554)}to{transform:translate(62.19625vw,99vh) scale(.3554)}}.snow:nth-child(155){opacity:1.8472;transform:translate(57.1857vw,-10px) scale(.9542);animation:fall-155 23s -6s linear infinite}@keyframes fall-155{35.451%{transform:translate(47.1922vw,35.451vh) scale(.9542)}to{transform:translate(52.18895vw,99vh) scale(.9542)}}.snow:nth-child(156){opacity:1.8468;transform:translate(73.3167vw,-10px) scale(.8542);animation:fall-156 20s -4s linear infinite}@keyframes fall-156{49.117%{transform:translate(67.7747vw,49.117vh) scale(.8542)}to{transform:translate(70.5457vw,99vh) scale(.8542)}}.snow:nth-child(157){opacity:.6976;transform:translate(91.4717vw,-10px) scale(.8248);animation:fall-157 10s -3s linear infinite}@keyframes fall-157{57.903%{transform:translate(95.2828vw,57.903vh) scale(.8248)}to{transform:translate(93.37725vw,99vh) scale(.8248)}}.snow:nth-child(158){opacity:.2544;transform:translate(46.9231vw,-10px) scale(.666);animation:fall-158 20s -16s linear infinite}@keyframes fall-158{63.955%{transform:translate(53.5106vw,63.955vh) scale(.666)}to{transform:translate(50.21685vw,99vh) scale(.666)}}.snow:nth-child(159){opacity:.0738;transform:translate(8.3323vw,-10px) scale(.9069);animation:fall-159 24s -13s linear infinite}@keyframes fall-159{64.152%{transform:translate(17.9558vw,64.152vh) scale(.9069)}to{transform:translate(13.14405vw,99vh) scale(.9069)}}.snow:nth-child(160){opacity:1.646;transform:translate(66.699vw,-10px) scale(.0768);animation:fall-160 17s -3s linear infinite}@keyframes fall-160{73.757%{transform:translate(71.8452vw,73.757vh) scale(.0768)}to{transform:translate(69.2721vw,99vh) scale(.0768)}}.snow:nth-child(161){opacity:.817;transform:translate(48.944vw,-10px) scale(.3256);animation:fall-161 19s -25s linear infinite}@keyframes fall-161{70.958%{transform:translate(51.1409vw,70.958vh) scale(.3256)}to{transform:translate(50.04245vw,99vh) scale(.3256)}}.snow:nth-child(162){opacity:1.7866;transform:translate(57.736vw,-10px) scale(.5396);animation:fall-162 27s -2s linear infinite}@keyframes fall-162{30.622%{transform:translate(56.2639vw,30.622vh) scale(.5396)}to{transform:translate(56.99995vw,99vh) scale(.5396)}}.snow:nth-child(163){opacity:1.5196;transform:translate(95.8385vw,-10px) scale(.2765);animation:fall-163 24s -23s linear infinite}@keyframes fall-163{51.407%{transform:translate(105.1005vw,51.407vh) scale(.2765)}to{transform:translate(100.4695vw,99vh) scale(.2765)}}.snow:nth-child(164){opacity:1.7428;transform:translate(96.1096vw,-10px) scale(.3539);animation:fall-164 11s -15s linear infinite}@keyframes fall-164{38.308%{transform:translate(91.4171vw,38.308vh) scale(.3539)}to{transform:translate(93.76335vw,99vh) scale(.3539)}}.snow:nth-child(165){opacity:.053;transform:translate(8.6263vw,-10px) scale(.2379);animation:fall-165 15s -9s linear infinite}@keyframes fall-165{31.901%{transform:translate(17.2985vw,31.901vh) scale(.2379)}to{transform:translate(12.9624vw,99vh) scale(.2379)}}.snow:nth-child(166){opacity:.5684;transform:translate(73.309vw,-10px) scale(.6475);animation:fall-166 22s -23s linear infinite}@keyframes fall-166{61.921%{transform:translate(80.7084vw,61.921vh) scale(.6475)}to{transform:translate(77.0087vw,99vh) scale(.6475)}}.snow:nth-child(167){opacity:1.6252;transform:translate(82.1136vw,-10px) scale(.5619);animation:fall-167 28s -11s linear infinite}@keyframes fall-167{49.663%{transform:translate(89.9493vw,49.663vh) scale(.5619)}to{transform:translate(86.03145vw,99vh) scale(.5619)}}.snow:nth-child(168){opacity:1.2226;transform:translate(24.4188vw,-10px) scale(.001);animation:fall-168 17s -12s linear infinite}@keyframes fall-168{37.318%{transform:translate(31.9692vw,37.318vh) scale(.001)}to{transform:translate(28.194vw,99vh) scale(.001)}}.snow:nth-child(169){opacity:.272;transform:translate(18.3756vw,-10px) scale(.1695);animation:fall-169 15s -4s linear infinite}@keyframes fall-169{65.564%{transform:translate(16.4346vw,65.564vh) scale(.1695)}to{transform:translate(17.4051vw,99vh) scale(.1695)}}.snow:nth-child(170){opacity:1.8062;transform:translate(50.8899vw,-10px) scale(.6306);animation:fall-170 19s -22s linear infinite}@keyframes fall-170{59.555%{transform:translate(56.7026vw,59.555vh) scale(.6306)}to{transform:translate(53.79625vw,99vh) scale(.6306)}}.snow:nth-child(171){opacity:.9126;transform:translate(24.0266vw,-10px) scale(.8393);animation:fall-171 12s -6s linear infinite}@keyframes fall-171{32.27%{transform:translate(33.5525vw,32.27vh) scale(.8393)}to{transform:translate(28.78955vw,99vh) scale(.8393)}}.snow:nth-child(172){opacity:1.981;transform:translate(11.453vw,-10px) scale(.1911);animation:fall-172 16s -27s linear infinite}@keyframes fall-172{39.368%{transform:translate(16.4844vw,39.368vh) scale(.1911)}to{transform:translate(13.9687vw,99vh) scale(.1911)}}.snow:nth-child(173){opacity:.7486;transform:translate(10.2033vw,-10px) scale(.8948);animation:fall-173 26s -7s linear infinite}@keyframes fall-173{74.651%{transform:translate(3.2813vw,74.651vh) scale(.8948)}to{transform:translate(6.7423vw,99vh) scale(.8948)}}.snow:nth-child(174){opacity:1.8846;transform:translate(77.7718vw,-10px) scale(.091);animation:fall-174 18s -22s linear infinite}@keyframes fall-174{42.352%{transform:translate(76.7626vw,42.352vh) scale(.091)}to{transform:translate(77.2672vw,99vh) scale(.091)}}.snow:nth-child(175){opacity:.1938;transform:translate(6.523vw,-10px) scale(.0721);animation:fall-175 15s -4s linear infinite}@keyframes fall-175{50.41%{transform:translate(-.7825vw,50.41vh) scale(.0721)}to{transform:translate(2.87025vw,99vh) scale(.0721)}}.snow:nth-child(176){opacity:.8318;transform:translate(19.8167vw,-10px) scale(.7187);animation:fall-176 19s -7s linear infinite}@keyframes fall-176{74.985%{transform:translate(18.3858vw,74.985vh) scale(.7187)}to{transform:translate(19.10125vw,99vh) scale(.7187)}}.snow:nth-child(177){opacity:.5088;transform:translate(14.2964vw,-10px) scale(.359);animation:fall-177 24s -10s linear infinite}@keyframes fall-177{36.872%{transform:translate(18.4504vw,36.872vh) scale(.359)}to{transform:translate(16.3734vw,99vh) scale(.359)}}.snow:nth-child(178){opacity:.4664;transform:translate(86.7576vw,-10px) scale(.7654);animation:fall-178 17s -20s linear infinite}@keyframes fall-178{30.93%{transform:translate(79.9625vw,30.93vh) scale(.7654)}to{transform:translate(83.36005vw,99vh) scale(.7654)}}.snow:nth-child(179){opacity:1.5042;transform:translate(70.7707vw,-10px) scale(.6818);animation:fall-179 12s -10s linear infinite}@keyframes fall-179{54.891%{transform:translate(62.3595vw,54.891vh) scale(.6818)}to{transform:translate(66.5651vw,99vh) scale(.6818)}}.snow:nth-child(180){opacity:1.5492;transform:translate(3.5052vw,-10px) scale(.7517);animation:fall-180 16s -5s linear infinite}@keyframes fall-180{43.128%{transform:translate(-4.4965vw,43.128vh) scale(.7517)}to{transform:translate(-.49565vw,99vh) scale(.7517)}}.snow:nth-child(181){opacity:1.0796;transform:translate(17.4455vw,-10px) scale(.8902);animation:fall-181 25s -27s linear infinite}@keyframes fall-181{50.066%{transform:translate(14.2564vw,50.066vh) scale(.8902)}to{transform:translate(15.85095vw,99vh) scale(.8902)}}.snow:nth-child(182){opacity:1.3834;transform:translate(27.4942vw,-10px) scale(.5042);animation:fall-182 30s -25s linear infinite}@keyframes fall-182{35.533%{transform:translate(27.7109vw,35.533vh) scale(.5042)}to{transform:translate(27.60255vw,99vh) scale(.5042)}}.snow:nth-child(183){opacity:.0884;transform:translate(99.022vw,-10px) scale(.8681);animation:fall-183 11s -3s linear infinite}@keyframes fall-183{39.38%{transform:translate(89.4288vw,39.38vh) scale(.8681)}to{transform:translate(94.2254vw,99vh) scale(.8681)}}.snow:nth-child(184){opacity:1.5374;transform:translate(36.6247vw,-10px) scale(.1724);animation:fall-184 23s -29s linear infinite}@keyframes fall-184{73.567%{transform:translate(42.4556vw,73.567vh) scale(.1724)}to{transform:translate(39.54015vw,99vh) scale(.1724)}}.snow:nth-child(185){opacity:.468;transform:translate(59.008vw,-10px) scale(.2676);animation:fall-185 28s -10s linear infinite}@keyframes fall-185{65.108%{transform:translate(49.28vw,65.108vh) scale(.2676)}to{transform:translate(54.144vw,99vh) scale(.2676)}}.snow:nth-child(186){opacity:.7356;transform:translate(71.8686vw,-10px) scale(.8895);animation:fall-186 17s -16s linear infinite}@keyframes fall-186{42.759%{transform:translate(68.4387vw,42.759vh) scale(.8895)}to{transform:translate(70.15365vw,99vh) scale(.8895)}}.snow:nth-child(187){opacity:.2278;transform:translate(33.6155vw,-10px) scale(.3593);animation:fall-187 26s -3s linear infinite}@keyframes fall-187{67.691%{transform:translate(30.0174vw,67.691vh) scale(.3593)}to{transform:translate(31.81645vw,99vh) scale(.3593)}}.snow:nth-child(188){opacity:.039;transform:translate(33.146vw,-10px) scale(.6059);animation:fall-188 25s -22s linear infinite}@keyframes fall-188{33.212%{transform:translate(34.0165vw,33.212vh) scale(.6059)}to{transform:translate(33.58125vw,99vh) scale(.6059)}}.snow:nth-child(189){opacity:1.0354;transform:translate(97.8738vw,-10px) scale(.2355);animation:fall-189 22s -14s linear infinite}@keyframes fall-189{54.086%{transform:translate(93.6209vw,54.086vh) scale(.2355)}to{transform:translate(95.74735vw,99vh) scale(.2355)}}.snow:nth-child(190){opacity:1.135;transform:translate(1.7861vw,-10px) scale(.6524);animation:fall-190 30s -17s linear infinite}@keyframes fall-190{55.065%{transform:translate(-2.1138vw,55.065vh) scale(.6524)}to{transform:translate(-.16385vw,99vh) scale(.6524)}}.snow:nth-child(191){opacity:1.7266;transform:translate(54.2634vw,-10px) scale(.5502);animation:fall-191 25s -7s linear infinite}@keyframes fall-191{78.779%{transform:translate(50.9447vw,78.779vh) scale(.5502)}to{transform:translate(52.60405vw,99vh) scale(.5502)}}.snow:nth-child(192){opacity:.6356;transform:translate(51.3514vw,-10px) scale(.7029);animation:fall-192 21s -19s linear infinite}@keyframes fall-192{78.929%{transform:translate(45.2041vw,78.929vh) scale(.7029)}to{transform:translate(48.27775vw,99vh) scale(.7029)}}.snow:nth-child(193){opacity:1.2832;transform:translate(61.577vw,-10px) scale(.6345);animation:fall-193 23s -16s linear infinite}@keyframes fall-193{69.092%{transform:translate(59.0518vw,69.092vh) scale(.6345)}to{transform:translate(60.3144vw,99vh) scale(.6345)}}.snow:nth-child(194){opacity:1.7328;transform:translate(94.9481vw,-10px) scale(.8046);animation:fall-194 20s -7s linear infinite}@keyframes fall-194{71.428%{transform:translate(99.7398vw,71.428vh) scale(.8046)}to{transform:translate(97.34395vw,99vh) scale(.8046)}}.snow:nth-child(195){opacity:.7218;transform:translate(43.2197vw,-10px) scale(.9324);animation:fall-195 13s -2s linear infinite}@keyframes fall-195{61.575%{transform:translate(35.5695vw,61.575vh) scale(.9324)}to{transform:translate(39.3946vw,99vh) scale(.9324)}}.snow:nth-child(196){opacity:.5306;transform:translate(27.039vw,-10px) scale(.9091);animation:fall-196 15s -9s linear infinite}@keyframes fall-196{54.895%{transform:translate(27.3525vw,54.895vh) scale(.9091)}to{transform:translate(27.19575vw,99vh) scale(.9091)}}.snow:nth-child(197){opacity:1.8756;transform:translate(67.9101vw,-10px) scale(.9512);animation:fall-197 10s -16s linear infinite}@keyframes fall-197{72.685%{transform:translate(66.2812vw,72.685vh) scale(.9512)}to{transform:translate(67.09565vw,99vh) scale(.9512)}}.snow:nth-child(198){opacity:1.6182;transform:translate(65.5519vw,-10px) scale(.721);animation:fall-198 28s -22s linear infinite}@keyframes fall-198{52.028%{transform:translate(61.9695vw,52.028vh) scale(.721)}to{transform:translate(63.7607vw,99vh) scale(.721)}}.snow:nth-child(199){opacity:1.703;transform:translate(24.9633vw,-10px) scale(.1479);animation:fall-199 29s -10s linear infinite}@keyframes fall-199{37.467%{transform:translate(26.9552vw,37.467vh) scale(.1479)}to{transform:translate(25.95925vw,99vh) scale(.1479)}}.snow:nth-child(200){opacity:1.5102;transform:translate(1.9789vw,-10px) scale(.7818);animation:fall-200 21s -2s linear infinite}@keyframes fall-200{37.469%{transform:translate(-1.479vw,37.469vh) scale(.7818)}to{transform:translate(.24995vw,99vh) scale(.7818)}}.snow:nth-child(201){opacity:1.3622;transform:translate(81.7555vw,-10px) scale(.3757);animation:fall-201 15s -5s linear infinite}@keyframes fall-201{72.178%{transform:translate(90.9216vw,72.178vh) scale(.3757)}to{transform:translate(86.33855vw,99vh) scale(.3757)}}.snow:nth-child(202){opacity:.605;transform:translate(38.8858vw,-10px) scale(.8795);animation:fall-202 24s -14s linear infinite}@keyframes fall-202{60.534%{transform:translate(43.9756vw,60.534vh) scale(.8795)}to{transform:translate(41.4307vw,99vh) scale(.8795)}}.snow:nth-child(203){opacity:1.972;transform:translate(99.9903vw,-10px) scale(.9163);animation:fall-203 16s -21s linear infinite}@keyframes fall-203{67.481%{transform:translate(108.5621vw,67.481vh) scale(.9163)}to{transform:translate(104.2762vw,99vh) scale(.9163)}}.snow:nth-child(204){opacity:1.0936;transform:translate(84.4329vw,-10px) scale(.9088);animation:fall-204 20s -20s linear infinite}@keyframes fall-204{62.427%{transform:translate(92.4573vw,62.427vh) scale(.9088)}to{transform:translate(88.4451vw,99vh) scale(.9088)}}.snow:nth-child(205){opacity:.8288;transform:translate(53.6452vw,-10px) scale(.5773);animation:fall-205 27s -18s linear infinite}@keyframes fall-205{74.059%{transform:translate(48.7447vw,74.059vh) scale(.5773)}to{transform:translate(51.19495vw,99vh) scale(.5773)}}.snow:nth-child(206){opacity:.8784;transform:translate(17.382vw,-10px) scale(.8515);animation:fall-206 22s -11s linear infinite}@keyframes fall-206{35.89%{transform:translate(8.0042vw,35.89vh) scale(.8515)}to{transform:translate(12.6931vw,99vh) scale(.8515)}}.snow:nth-child(207){opacity:1.6768;transform:translate(93.6664vw,-10px) scale(.7767);animation:fall-207 10s -28s linear infinite}@keyframes fall-207{64.169%{transform:translate(94.0003vw,64.169vh) scale(.7767)}to{transform:translate(93.83335vw,99vh) scale(.7767)}}.snow:nth-child(208){opacity:1.3022;transform:translate(75.8937vw,-10px) scale(.919);animation:fall-208 14s -30s linear infinite}@keyframes fall-208{79.275%{transform:translate(76.2459vw,79.275vh) scale(.919)}to{transform:translate(76.0698vw,99vh) scale(.919)}}.snow:nth-child(209){opacity:1.918;transform:translate(27.7235vw,-10px) scale(.5966);animation:fall-209 19s -6s linear infinite}@keyframes fall-209{53.489%{transform:translate(24.6069vw,53.489vh) scale(.5966)}to{transform:translate(26.1652vw,99vh) scale(.5966)}}.snow:nth-child(210){opacity:.1556;transform:translate(20.0607vw,-10px) scale(.6578);animation:fall-210 11s -21s linear infinite}@keyframes fall-210{74.589%{transform:translate(10.2775vw,74.589vh) scale(.6578)}to{transform:translate(15.1691vw,99vh) scale(.6578)}}.snow:nth-child(211){opacity:1.9836;transform:translate(79.0262vw,-10px) scale(.99);animation:fall-211 11s -20s linear infinite}@keyframes fall-211{33.992%{transform:translate(74.6929vw,33.992vh) scale(.99)}to{transform:translate(76.85955vw,99vh) scale(.99)}}.snow:nth-child(212){opacity:.3176;transform:translate(66.0528vw,-10px) scale(.0672);animation:fall-212 20s -24s linear infinite}@keyframes fall-212{42.457%{transform:translate(56.9261vw,42.457vh) scale(.0672)}to{transform:translate(61.48945vw,99vh) scale(.0672)}}.snow:nth-child(213){opacity:.551;transform:translate(97.9979vw,-10px) scale(.2725);animation:fall-213 15s -12s linear infinite}@keyframes fall-213{79.272%{transform:translate(96.7181vw,79.272vh) scale(.2725)}to{transform:translate(97.358vw,99vh) scale(.2725)}}.snow:nth-child(214){opacity:.5678;transform:translate(61.2296vw,-10px) scale(.0114);animation:fall-214 23s -24s linear infinite}@keyframes fall-214{33.146%{transform:translate(64.3004vw,33.146vh) scale(.0114)}to{transform:translate(62.765vw,99vh) scale(.0114)}}.snow:nth-child(215){opacity:.2928;transform:translate(68.6421vw,-10px) scale(.2578);animation:fall-215 24s -5s linear infinite}@keyframes fall-215{69.492%{transform:translate(69.6323vw,69.492vh) scale(.2578)}to{transform:translate(69.1372vw,99vh) scale(.2578)}}.snow:nth-child(216){opacity:1.1858;transform:translate(22.8531vw,-10px) scale(.2796);animation:fall-216 23s -2s linear infinite}@keyframes fall-216{69.695%{transform:translate(28.8522vw,69.695vh) scale(.2796)}to{transform:translate(25.85265vw,99vh) scale(.2796)}}.snow:nth-child(217){opacity:1.6372;transform:translate(60.8144vw,-10px) scale(.1918);animation:fall-217 30s -13s linear infinite}@keyframes fall-217{46.992%{transform:translate(58.7039vw,46.992vh) scale(.1918)}to{transform:translate(59.75915vw,99vh) scale(.1918)}}.snow:nth-child(218){opacity:.1502;transform:translate(46.4421vw,-10px) scale(.7517);animation:fall-218 17s -29s linear infinite}@keyframes fall-218{31.048%{transform:translate(51.7042vw,31.048vh) scale(.7517)}to{transform:translate(49.07315vw,99vh) scale(.7517)}}.snow:nth-child(219){opacity:.333;transform:translate(59.2917vw,-10px) scale(.5322);animation:fall-219 10s -5s linear infinite}@keyframes fall-219{53.775%{transform:translate(68.646vw,53.775vh) scale(.5322)}to{transform:translate(63.96885vw,99vh) scale(.5322)}}.snow:nth-child(220){opacity:.9598;transform:translate(93.1106vw,-10px) scale(.2185);animation:fall-220 21s -22s linear infinite}@keyframes fall-220{60.884%{transform:translate(102.9541vw,60.884vh) scale(.2185)}to{transform:translate(98.03235vw,99vh) scale(.2185)}}.snow:nth-child(221){opacity:.9964;transform:translate(31.4077vw,-10px) scale(.8054);animation:fall-221 21s -30s linear infinite}@keyframes fall-221{60.995%{transform:translate(27.3233vw,60.995vh) scale(.8054)}to{transform:translate(29.3655vw,99vh) scale(.8054)}}.snow:nth-child(222){opacity:.6984;transform:translate(6.3336vw,-10px) scale(.102);animation:fall-222 28s -24s linear infinite}@keyframes fall-222{38.917%{transform:translate(12.2222vw,38.917vh) scale(.102)}to{transform:translate(9.2779vw,99vh) scale(.102)}}.snow:nth-child(223){opacity:1.9738;transform:translate(4.4609vw,-10px) scale(.1183);animation:fall-223 17s -5s linear infinite}@keyframes fall-223{32.74%{transform:translate(9.8848vw,32.74vh) scale(.1183)}to{transform:translate(7.17285vw,99vh) scale(.1183)}}.snow:nth-child(224){opacity:1.0986;transform:translate(63.8765vw,-10px) scale(.1659);animation:fall-224 22s -21s linear infinite}@keyframes fall-224{68.489%{transform:translate(68.8008vw,68.489vh) scale(.1659)}to{transform:translate(66.33865vw,99vh) scale(.1659)}}.snow:nth-child(225){opacity:.63;transform:translate(49.0059vw,-10px) scale(.9036);animation:fall-225 25s -25s linear infinite}@keyframes fall-225{62.098%{transform:translate(44.1283vw,62.098vh) scale(.9036)}to{transform:translate(46.5671vw,99vh) scale(.9036)}}.snow:nth-child(226){opacity:1.7514;transform:translate(45.6916vw,-10px) scale(.4496);animation:fall-226 14s -4s linear infinite}@keyframes fall-226{71.833%{transform:translate(42.1301vw,71.833vh) scale(.4496)}to{transform:translate(43.91085vw,99vh) scale(.4496)}}.snow:nth-child(227){opacity:.6294;transform:translate(22.2735vw,-10px) scale(.1052);animation:fall-227 14s -8s linear infinite}@keyframes fall-227{52.878%{transform:translate(24.5026vw,52.878vh) scale(.1052)}to{transform:translate(23.38805vw,99vh) scale(.1052)}}.snow:nth-child(228){opacity:1.787;transform:translate(75.8699vw,-10px) scale(.701);animation:fall-228 22s -6s linear infinite}@keyframes fall-228{75.193%{transform:translate(70.82vw,75.193vh) scale(.701)}to{transform:translate(73.34495vw,99vh) scale(.701)}}.snow:nth-child(229){opacity:1.916;transform:translate(92.3443vw,-10px) scale(.6249);animation:fall-229 17s -18s linear infinite}@keyframes fall-229{57.562%{transform:translate(90.5363vw,57.562vh) scale(.6249)}to{transform:translate(91.4403vw,99vh) scale(.6249)}}.snow:nth-child(230){opacity:1.4948;transform:translate(51.3963vw,-10px) scale(.0911);animation:fall-230 25s -16s linear infinite}@keyframes fall-230{32.609%{transform:translate(54.051vw,32.609vh) scale(.0911)}to{transform:translate(52.72365vw,99vh) scale(.0911)}}.snow:nth-child(231){opacity:.4274;transform:translate(27.2971vw,-10px) scale(.2335);animation:fall-231 20s -18s linear infinite}@keyframes fall-231{37.87%{transform:translate(34.0979vw,37.87vh) scale(.2335)}to{transform:translate(30.6975vw,99vh) scale(.2335)}}.snow:nth-child(232){opacity:.6076;transform:translate(30.015vw,-10px) scale(.5681);animation:fall-232 23s -24s linear infinite}@keyframes fall-232{48.544%{transform:translate(34.2985vw,48.544vh) scale(.5681)}to{transform:translate(32.15675vw,99vh) scale(.5681)}}.snow:nth-child(233){opacity:1.0852;transform:translate(92.4091vw,-10px) scale(.9056);animation:fall-233 23s -12s linear infinite}@keyframes fall-233{58.226%{transform:translate(99.5347vw,58.226vh) scale(.9056)}to{transform:translate(95.9719vw,99vh) scale(.9056)}}.snow:nth-child(234){opacity:.663;transform:translate(18.7298vw,-10px) scale(.9744);animation:fall-234 15s -15s linear infinite}@keyframes fall-234{49.711%{transform:translate(22.4269vw,49.711vh) scale(.9744)}to{transform:translate(20.57835vw,99vh) scale(.9744)}}.snow:nth-child(235){opacity:.4656;transform:translate(37.4468vw,-10px) scale(.1384);animation:fall-235 29s -18s linear infinite}@keyframes fall-235{75.773%{transform:translate(38.8322vw,75.773vh) scale(.1384)}to{transform:translate(38.1395vw,99vh) scale(.1384)}}.snow:nth-child(236){opacity:.325;transform:translate(49.2284vw,-10px) scale(.3436);animation:fall-236 28s -15s linear infinite}@keyframes fall-236{58.282%{transform:translate(49.5913vw,58.282vh) scale(.3436)}to{transform:translate(49.40985vw,99vh) scale(.3436)}}.snow:nth-child(237){opacity:.1136;transform:translate(69.8056vw,-10px) scale(.943);animation:fall-237 29s -4s linear infinite}@keyframes fall-237{32.891%{transform:translate(63.2707vw,32.891vh) scale(.943)}to{transform:translate(66.53815vw,99vh) scale(.943)}}.snow:nth-child(238){opacity:1.1394;transform:translate(76.324vw,-10px) scale(.5613);animation:fall-238 11s -5s linear infinite}@keyframes fall-238{74.872%{transform:translate(67.8157vw,74.872vh) scale(.5613)}to{transform:translate(72.06985vw,99vh) scale(.5613)}}.snow:nth-child(239){opacity:.0474;transform:translate(45.4584vw,-10px) scale(.0907);animation:fall-239 17s -30s linear infinite}@keyframes fall-239{60.766%{transform:translate(38.0468vw,60.766vh) scale(.0907)}to{transform:translate(41.7526vw,99vh) scale(.0907)}}.snow:nth-child(240){opacity:.8062;transform:translate(67.8135vw,-10px) scale(.945);animation:fall-240 16s -29s linear infinite}@keyframes fall-240{75.948%{transform:translate(69.3007vw,75.948vh) scale(.945)}to{transform:translate(68.5571vw,99vh) scale(.945)}}.snow:nth-child(241){opacity:.9836;transform:translate(48.2091vw,-10px) scale(.0618);animation:fall-241 22s -25s linear infinite}@keyframes fall-241{37.615%{transform:translate(41.8731vw,37.615vh) scale(.0618)}to{transform:translate(45.0411vw,99vh) scale(.0618)}}.snow:nth-child(242){opacity:.6342;transform:translate(59.0357vw,-10px) scale(.0363);animation:fall-242 29s -9s linear infinite}@keyframes fall-242{69.406%{transform:translate(58.0904vw,69.406vh) scale(.0363)}to{transform:translate(58.56305vw,99vh) scale(.0363)}}.snow:nth-child(243){opacity:.354;transform:translate(64.2324vw,-10px) scale(.0283);animation:fall-243 15s -15s linear infinite}@keyframes fall-243{69.903%{transform:translate(56.7407vw,69.903vh) scale(.0283)}to{transform:translate(60.48655vw,99vh) scale(.0283)}}.snow:nth-child(244){opacity:.8266;transform:translate(77.3778vw,-10px) scale(.6659);animation:fall-244 29s -19s linear infinite}@keyframes fall-244{50.151%{transform:translate(74.1352vw,50.151vh) scale(.6659)}to{transform:translate(75.7565vw,99vh) scale(.6659)}}.snow:nth-child(245){opacity:1.8204;transform:translate(39.64vw,-10px) scale(.9517);animation:fall-245 15s -3s linear infinite}@keyframes fall-245{37.904%{transform:translate(42.9512vw,37.904vh) scale(.9517)}to{transform:translate(41.2956vw,99vh) scale(.9517)}}.snow:nth-child(246){opacity:1.6698;transform:translate(54.6775vw,-10px) scale(.2919);animation:fall-246 19s -30s linear infinite}@keyframes fall-246{49.09%{transform:translate(48.0699vw,49.09vh) scale(.2919)}to{transform:translate(51.3737vw,99vh) scale(.2919)}}.snow:nth-child(247){opacity:.8066;transform:translate(76.5256vw,-10px) scale(.3636);animation:fall-247 21s -5s linear infinite}@keyframes fall-247{42.194%{transform:translate(78.3266vw,42.194vh) scale(.3636)}to{transform:translate(77.4261vw,99vh) scale(.3636)}}.snow:nth-child(248){opacity:.1334;transform:translate(34.5289vw,-10px) scale(.0451);animation:fall-248 19s -5s linear infinite}@keyframes fall-248{54.808%{transform:translate(35.0728vw,54.808vh) scale(.0451)}to{transform:translate(34.80085vw,99vh) scale(.0451)}}.snow:nth-child(249){opacity:1.7782;transform:translate(34.4844vw,-10px) scale(.7737);animation:fall-249 15s -5s linear infinite}@keyframes fall-249{52.606%{transform:translate(42.759vw,52.606vh) scale(.7737)}to{transform:translate(38.6217vw,99vh) scale(.7737)}}.snow:nth-child(250){opacity:1.8442;transform:translate(74.6073vw,-10px) scale(.7481);animation:fall-250 14s -7s linear infinite}@keyframes fall-250{52.316%{transform:translate(81.1509vw,52.316vh) scale(.7481)}to{transform:translate(77.8791vw,99vh) scale(.7481)}}.snow:nth-child(251){opacity:1.3832;transform:translate(49.6706vw,-10px) scale(.6655);animation:fall-251 13s -24s linear infinite}@keyframes fall-251{44.38%{transform:translate(45.3874vw,44.38vh) scale(.6655)}to{transform:translate(47.529vw,99vh) scale(.6655)}}.snow:nth-child(252){opacity:1.9536;transform:translate(50.4659vw,-10px) scale(.7548);animation:fall-252 16s -17s linear infinite}@keyframes fall-252{33.659%{transform:translate(48.0905vw,33.659vh) scale(.7548)}to{transform:translate(49.2782vw,99vh) scale(.7548)}}.snow:nth-child(253){opacity:.1574;transform:translate(17.5062vw,-10px) scale(.7043);animation:fall-253 12s -25s linear infinite}@keyframes fall-253{63.794%{transform:translate(8.2974vw,63.794vh) scale(.7043)}to{transform:translate(12.9018vw,99vh) scale(.7043)}}.snow:nth-child(254){opacity:1.6156;transform:translate(26.0274vw,-10px) scale(.857);animation:fall-254 24s -30s linear infinite}@keyframes fall-254{68.247%{transform:translate(20.5948vw,68.247vh) scale(.857)}to{transform:translate(23.3111vw,99vh) scale(.857)}}.snow:nth-child(255){opacity:.786;transform:translate(85.0217vw,-10px) scale(.0126);animation:fall-255 11s -12s linear infinite}@keyframes fall-255{57.261%{transform:translate(77.9018vw,57.261vh) scale(.0126)}to{transform:translate(81.46175vw,99vh) scale(.0126)}}.snow:nth-child(256){opacity:1.9202;transform:translate(21.8037vw,-10px) scale(.3294);animation:fall-256 13s -23s linear infinite}@keyframes fall-256{68.644%{transform:translate(18.2711vw,68.644vh) scale(.3294)}to{transform:translate(20.0374vw,99vh) scale(.3294)}}.snow:nth-child(257){opacity:.1098;transform:translate(79.9283vw,-10px) scale(.4251);animation:fall-257 25s -10s linear infinite}@keyframes fall-257{44.957%{transform:translate(80.6573vw,44.957vh) scale(.4251)}to{transform:translate(80.2928vw,99vh) scale(.4251)}}.snow:nth-child(258){opacity:1.4636;transform:translate(79.1722vw,-10px) scale(.1828);animation:fall-258 22s -11s linear infinite}@keyframes fall-258{63.988%{transform:translate(70.9568vw,63.988vh) scale(.1828)}to{transform:translate(75.0645vw,99vh) scale(.1828)}}.snow:nth-child(259){opacity:.4848;transform:translate(85.6726vw,-10px) scale(.2941);animation:fall-259 14s -14s linear infinite}@keyframes fall-259{79.598%{transform:translate(92.9644vw,79.598vh) scale(.2941)}to{transform:translate(89.3185vw,99vh) scale(.2941)}}.snow:nth-child(260){opacity:1.8784;transform:translate(52.0861vw,-10px) scale(.9058);animation:fall-260 19s -16s linear infinite}@keyframes fall-260{38.172%{transform:translate(44.8338vw,38.172vh) scale(.9058)}to{transform:translate(48.45995vw,99vh) scale(.9058)}}.snow:nth-child(261){opacity:.0056;transform:translate(95.2538vw,-10px) scale(.5932);animation:fall-261 12s -15s linear infinite}@keyframes fall-261{75.439%{transform:translate(90.0346vw,75.439vh) scale(.5932)}to{transform:translate(92.6442vw,99vh) scale(.5932)}}.snow:nth-child(262){opacity:1.405;transform:translate(58.3408vw,-10px) scale(.0401);animation:fall-262 14s -28s linear infinite}@keyframes fall-262{51.114%{transform:translate(48.9235vw,51.114vh) scale(.0401)}to{transform:translate(53.63215vw,99vh) scale(.0401)}}.snow:nth-child(263){opacity:.9738;transform:translate(57.996vw,-10px) scale(.3846);animation:fall-263 17s -30s linear infinite}@keyframes fall-263{68.548%{transform:translate(66.2578vw,68.548vh) scale(.3846)}to{transform:translate(62.1269vw,99vh) scale(.3846)}}.snow:nth-child(264){opacity:1.6522;transform:translate(40.791vw,-10px) scale(.7746);animation:fall-264 13s -7s linear infinite}@keyframes fall-264{63.667%{transform:translate(48.2584vw,63.667vh) scale(.7746)}to{transform:translate(44.5247vw,99vh) scale(.7746)}}.snow:nth-child(265){opacity:.5482;transform:translate(15.936vw,-10px) scale(.6367);animation:fall-265 25s -25s linear infinite}@keyframes fall-265{57.895%{transform:translate(11.5604vw,57.895vh) scale(.6367)}to{transform:translate(13.7482vw,99vh) scale(.6367)}}.snow:nth-child(266){opacity:1.675;transform:translate(60.2492vw,-10px) scale(.6983);animation:fall-266 28s -21s linear infinite}@keyframes fall-266{43.985%{transform:translate(54.5185vw,43.985vh) scale(.6983)}to{transform:translate(57.38385vw,99vh) scale(.6983)}}.snow:nth-child(267){opacity:.867;transform:translate(43.5978vw,-10px) scale(.4109);animation:fall-267 13s -11s linear infinite}@keyframes fall-267{35.786%{transform:translate(35.2362vw,35.786vh) scale(.4109)}to{transform:translate(39.417vw,99vh) scale(.4109)}}.snow:nth-child(268){opacity:.325;transform:translate(19.4817vw,-10px) scale(.7597);animation:fall-268 15s -29s linear infinite}@keyframes fall-268{37.963%{transform:translate(21.7233vw,37.963vh) scale(.7597)}to{transform:translate(20.6025vw,99vh) scale(.7597)}}.snow:nth-child(269){opacity:.231;transform:translate(86.6369vw,-10px) scale(.1306);animation:fall-269 10s -21s linear infinite}@keyframes fall-269{47.173%{transform:translate(95.9981vw,47.173vh) scale(.1306)}to{transform:translate(91.3175vw,99vh) scale(.1306)}}.snow:nth-child(270){opacity:1.67;transform:translate(76.3722vw,-10px) scale(.3711);animation:fall-270 29s -1s linear infinite}@keyframes fall-270{37.948%{transform:translate(71.0236vw,37.948vh) scale(.3711)}to{transform:translate(73.6979vw,99vh) scale(.3711)}}.snow:nth-child(271){opacity:1.6136;transform:translate(98.0244vw,-10px) scale(.9281);animation:fall-271 21s -12s linear infinite}@keyframes fall-271{74.774%{transform:translate(103.6814vw,74.774vh) scale(.9281)}to{transform:translate(100.8529vw,99vh) scale(.9281)}}.snow:nth-child(272){opacity:.5236;transform:translate(67.9272vw,-10px) scale(.7997);animation:fall-272 16s -5s linear infinite}@keyframes fall-272{34.21%{transform:translate(74.6765vw,34.21vh) scale(.7997)}to{transform:translate(71.30185vw,99vh) scale(.7997)}}.snow:nth-child(273){opacity:1.2566;transform:translate(89.3944vw,-10px) scale(.2646);animation:fall-273 21s -2s linear infinite}@keyframes fall-273{51.837%{transform:translate(90.2733vw,51.837vh) scale(.2646)}to{transform:translate(89.83385vw,99vh) scale(.2646)}}.snow:nth-child(274){opacity:.3604;transform:translate(81.1838vw,-10px) scale(.1364);animation:fall-274 26s -26s linear infinite}@keyframes fall-274{32.43%{transform:translate(79.9654vw,32.43vh) scale(.1364)}to{transform:translate(80.5746vw,99vh) scale(.1364)}}.snow:nth-child(275){opacity:1.2318;transform:translate(54.2694vw,-10px) scale(.6737);animation:fall-275 30s -3s linear infinite}@keyframes fall-275{50.556%{transform:translate(54.7793vw,50.556vh) scale(.6737)}to{transform:translate(54.52435vw,99vh) scale(.6737)}}.snow:nth-child(276){opacity:.784;transform:translate(8.36vw,-10px) scale(.4608);animation:fall-276 12s -13s linear infinite}@keyframes fall-276{69.669%{transform:translate(13.4736vw,69.669vh) scale(.4608)}to{transform:translate(10.9168vw,99vh) scale(.4608)}}.snow:nth-child(277){opacity:1.1966;transform:translate(32.2674vw,-10px) scale(.8757);animation:fall-277 22s -10s linear infinite}@keyframes fall-277{36.301%{transform:translate(29.1728vw,36.301vh) scale(.8757)}to{transform:translate(30.7201vw,99vh) scale(.8757)}}.snow:nth-child(278){opacity:.9752;transform:translate(41.4846vw,-10px) scale(.8749);animation:fall-278 22s -8s linear infinite}@keyframes fall-278{41.493%{transform:translate(50.0267vw,41.493vh) scale(.8749)}to{transform:translate(45.75565vw,99vh) scale(.8749)}}.snow:nth-child(279){opacity:1.239;transform:translate(15.9297vw,-10px) scale(.5784);animation:fall-279 25s -29s linear infinite}@keyframes fall-279{63.424%{transform:translate(11.4423vw,63.424vh) scale(.5784)}to{transform:translate(13.686vw,99vh) scale(.5784)}}.snow:nth-child(280){opacity:1.671;transform:translate(4.2311vw,-10px) scale(.1057);animation:fall-280 20s -23s linear infinite}@keyframes fall-280{62.71%{transform:translate(14.0023vw,62.71vh) scale(.1057)}to{transform:translate(9.1167vw,99vh) scale(.1057)}}.snow:nth-child(281){opacity:.4588;transform:translate(69.2767vw,-10px) scale(.2255);animation:fall-281 20s -14s linear infinite}@keyframes fall-281{69.235%{transform:translate(78.1489vw,69.235vh) scale(.2255)}to{transform:translate(73.7128vw,99vh) scale(.2255)}}.snow:nth-child(282){opacity:.8506;transform:translate(91.1167vw,-10px) scale(.9676);animation:fall-282 12s -19s linear infinite}@keyframes fall-282{59.53%{transform:translate(85.9061vw,59.53vh) scale(.9676)}to{transform:translate(88.5114vw,99vh) scale(.9676)}}.snow:nth-child(283){opacity:1.1278;transform:translate(26.3166vw,-10px) scale(.8006);animation:fall-283 22s -14s linear infinite}@keyframes fall-283{34.006%{transform:translate(18.1553vw,34.006vh) scale(.8006)}to{transform:translate(22.23595vw,99vh) scale(.8006)}}.snow:nth-child(284){opacity:1.3404;transform:translate(46.0528vw,-10px) scale(.48);animation:fall-284 11s -22s linear infinite}@keyframes fall-284{61.833%{transform:translate(36.764vw,61.833vh) scale(.48)}to{transform:translate(41.4084vw,99vh) scale(.48)}}.snow:nth-child(285){opacity:1.7926;transform:translate(34.4783vw,-10px) scale(.5606);animation:fall-285 22s -26s linear infinite}@keyframes fall-285{73.152%{transform:translate(40.1325vw,73.152vh) scale(.5606)}to{transform:translate(37.3054vw,99vh) scale(.5606)}}.snow:nth-child(286){opacity:1.2392;transform:translate(55.6765vw,-10px) scale(.7731);animation:fall-286 24s -19s linear infinite}@keyframes fall-286{66.312%{transform:translate(54.2919vw,66.312vh) scale(.7731)}to{transform:translate(54.9842vw,99vh) scale(.7731)}}.snow:nth-child(287){opacity:.538;transform:translate(99.9858vw,-10px) scale(.1265);animation:fall-287 17s -5s linear infinite}@keyframes fall-287{62.15%{transform:translate(96.4288vw,62.15vh) scale(.1265)}to{transform:translate(98.2073vw,99vh) scale(.1265)}}.snow:nth-child(288){opacity:1.8358;transform:translate(1.5461vw,-10px) scale(.3573);animation:fall-288 29s -15s linear infinite}@keyframes fall-288{38.53%{transform:translate(5.4955vw,38.53vh) scale(.3573)}to{transform:translate(3.5208vw,99vh) scale(.3573)}}.snow:nth-child(289){opacity:.216;transform:translate(58.7222vw,-10px) scale(.318);animation:fall-289 25s -7s linear infinite}@keyframes fall-289{38.625%{transform:translate(67.7092vw,38.625vh) scale(.318)}to{transform:translate(63.2157vw,99vh) scale(.318)}}.snow:nth-child(290){opacity:1.8902;transform:translate(56.8557vw,-10px) scale(.9039);animation:fall-290 12s -5s linear infinite}@keyframes fall-290{33.875%{transform:translate(56.428vw,33.875vh) scale(.9039)}to{transform:translate(56.64185vw,99vh) scale(.9039)}}.snow:nth-child(291){opacity:.233;transform:translate(38.9093vw,-10px) scale(.7487);animation:fall-291 12s -24s linear infinite}@keyframes fall-291{39.85%{transform:translate(33.5088vw,39.85vh) scale(.7487)}to{transform:translate(36.20905vw,99vh) scale(.7487)}}.snow:nth-child(292){opacity:.3026;transform:translate(57.5984vw,-10px) scale(.2148);animation:fall-292 21s -23s linear infinite}@keyframes fall-292{40.695%{transform:translate(49.5471vw,40.695vh) scale(.2148)}to{transform:translate(53.57275vw,99vh) scale(.2148)}}.snow:nth-child(293){opacity:.1062;transform:translate(96.1625vw,-10px) scale(.6444);animation:fall-293 25s -4s linear infinite}@keyframes fall-293{30.766%{transform:translate(102.0136vw,30.766vh) scale(.6444)}to{transform:translate(99.08805vw,99vh) scale(.6444)}}.snow:nth-child(294){opacity:.409;transform:translate(19.2323vw,-10px) scale(.4311);animation:fall-294 30s -4s linear infinite}@keyframes fall-294{53.092%{transform:translate(19.5106vw,53.092vh) scale(.4311)}to{transform:translate(19.37145vw,99vh) scale(.4311)}}.snow:nth-child(295){opacity:.0202;transform:translate(74.0066vw,-10px) scale(.2723);animation:fall-295 17s -17s linear infinite}@keyframes fall-295{47.758%{transform:translate(64.1286vw,47.758vh) scale(.2723)}to{transform:translate(69.0676vw,99vh) scale(.2723)}}.snow:nth-child(296){opacity:1.0126;transform:translate(24.4175vw,-10px) scale(.4578);animation:fall-296 22s -29s linear infinite}@keyframes fall-296{66.676%{transform:translate(31.5713vw,66.676vh) scale(.4578)}to{transform:translate(27.9944vw,99vh) scale(.4578)}}.snow:nth-child(297){opacity:.2612;transform:translate(72.2273vw,-10px) scale(.5787);animation:fall-297 28s -7s linear infinite}@keyframes fall-297{64.999%{transform:translate(76.8733vw,64.999vh) scale(.5787)}to{transform:translate(74.5503vw,99vh) scale(.5787)}}.snow:nth-child(298){opacity:.7936;transform:translate(96.7785vw,-10px) scale(.213);animation:fall-298 10s -9s linear infinite}@keyframes fall-298{55.527%{transform:translate(104.521vw,55.527vh) scale(.213)}to{transform:translate(100.64975vw,99vh) scale(.213)}}.snow:nth-child(299){opacity:1.1296;transform:translate(20.108vw,-10px) scale(.8532);animation:fall-299 22s -21s linear infinite}@keyframes fall-299{76.463%{transform:translate(13.3866vw,76.463vh) scale(.8532)}to{transform:translate(16.7473vw,99vh) scale(.8532)}}.snow:nth-child(300){opacity:.5572;transform:translate(73.6268vw,-10px) scale(.9669);animation:fall-300 13s -26s linear infinite}@keyframes fall-300{54.052%{transform:translate(79.6997vw,54.052vh) scale(.9669)}to{transform:translate(76.66325vw,99vh) scale(.9669)}}.snow:nth-child(301){opacity:.3664;transform:translate(72.5059vw,-10px) scale(.3072);animation:fall-301 22s -14s linear infinite}@keyframes fall-301{65.749%{transform:translate(72.7201vw,65.749vh) scale(.3072)}to{transform:translate(72.613vw,99vh) scale(.3072)}}.snow:nth-child(302){opacity:.2934;transform:translate(15.0375vw,-10px) scale(.8435);animation:fall-302 12s -25s linear infinite}@keyframes fall-302{56.813%{transform:translate(13.0479vw,56.813vh) scale(.8435)}to{transform:translate(14.0427vw,99vh) scale(.8435)}}.snow:nth-child(303){opacity:1.0822;transform:translate(88.9302vw,-10px) scale(.7901);animation:fall-303 29s -27s linear infinite}@keyframes fall-303{71.137%{transform:translate(96.1737vw,71.137vh) scale(.7901)}to{transform:translate(92.55195vw,99vh) scale(.7901)}}.snow:nth-child(304){opacity:.6974;transform:translate(69.6157vw,-10px) scale(.5116);animation:fall-304 24s -23s linear infinite}@keyframes fall-304{44.815%{transform:translate(71.9289vw,44.815vh) scale(.5116)}to{transform:translate(70.7723vw,99vh) scale(.5116)}}.snow:nth-child(305){opacity:1.0084;transform:translate(49.4445vw,-10px) scale(.9473);animation:fall-305 12s -25s linear infinite}@keyframes fall-305{50.399%{transform:translate(56.9933vw,50.399vh) scale(.9473)}to{transform:translate(53.2189vw,99vh) scale(.9473)}}.snow:nth-child(306){opacity:1.1108;transform:translate(8.1798vw,-10px) scale(.6305);animation:fall-306 14s -7s linear infinite}@keyframes fall-306{38.349%{transform:translate(15.6255vw,38.349vh) scale(.6305)}to{transform:translate(11.90265vw,99vh) scale(.6305)}}.snow:nth-child(307){opacity:1.861;transform:translate(46.1966vw,-10px) scale(.0311);animation:fall-307 11s -6s linear infinite}@keyframes fall-307{42.849%{transform:translate(56.054vw,42.849vh) scale(.0311)}to{transform:translate(51.1253vw,99vh) scale(.0311)}}.snow:nth-child(308){opacity:.6272;transform:translate(1.5787vw,-10px) scale(.8308);animation:fall-308 20s -20s linear infinite}@keyframes fall-308{37.741%{transform:translate(8.94vw,37.741vh) scale(.8308)}to{transform:translate(5.25935vw,99vh) scale(.8308)}}.snow:nth-child(309){opacity:1.7488;transform:translate(37.5157vw,-10px) scale(.4182);animation:fall-309 23s -22s linear infinite}@keyframes fall-309{36.797%{transform:translate(42.1133vw,36.797vh) scale(.4182)}to{transform:translate(39.8145vw,99vh) scale(.4182)}}.snow:nth-child(310){opacity:.2936;transform:translate(18.816vw,-10px) scale(.6403);animation:fall-310 16s -6s linear infinite}@keyframes fall-310{30.26%{transform:translate(21.3576vw,30.26vh) scale(.6403)}to{transform:translate(20.0868vw,99vh) scale(.6403)}}.snow:nth-child(311){opacity:.4572;transform:translate(12.7148vw,-10px) scale(.1464);animation:fall-311 20s -25s linear infinite}@keyframes fall-311{42.305%{transform:translate(10.0086vw,42.305vh) scale(.1464)}to{transform:translate(11.3617vw,99vh) scale(.1464)}}.snow:nth-child(312){opacity:1.7302;transform:translate(95.1675vw,-10px) scale(.985);animation:fall-312 27s -2s linear infinite}@keyframes fall-312{79.694%{transform:translate(95.4733vw,79.694vh) scale(.985)}to{transform:translate(95.3204vw,99vh) scale(.985)}}.snow:nth-child(313){opacity:.1088;transform:translate(5.3802vw,-10px) scale(.2636);animation:fall-313 21s -21s linear infinite}@keyframes fall-313{75.054%{transform:translate(9.1439vw,75.054vh) scale(.2636)}to{transform:translate(7.26205vw,99vh) scale(.2636)}}.snow:nth-child(314){opacity:1.3316;transform:translate(36.5684vw,-10px) scale(.1473);animation:fall-314 14s -10s linear infinite}@keyframes fall-314{67.354%{transform:translate(39.1201vw,67.354vh) scale(.1473)}to{transform:translate(37.84425vw,99vh) scale(.1473)}}.snow:nth-child(315){opacity:.5632;transform:translate(66.6174vw,-10px) scale(.19);animation:fall-315 26s -1s linear infinite}@keyframes fall-315{32.837%{transform:translate(56.9487vw,32.837vh) scale(.19)}to{transform:translate(61.78305vw,99vh) scale(.19)}}.snow:nth-child(316){opacity:.2088;transform:translate(75.1491vw,-10px) scale(.5085);animation:fall-316 22s -15s linear infinite}@keyframes fall-316{49.762%{transform:translate(84.604vw,49.762vh) scale(.5085)}to{transform:translate(79.87655vw,99vh) scale(.5085)}}.snow:nth-child(317){opacity:.0026;transform:translate(26.2867vw,-10px) scale(.3111);animation:fall-317 28s -2s linear infinite}@keyframes fall-317{63.632%{transform:translate(32.9009vw,63.632vh) scale(.3111)}to{transform:translate(29.5938vw,99vh) scale(.3111)}}.snow:nth-child(318){opacity:1.5528;transform:translate(56.2052vw,-10px) scale(.5801);animation:fall-318 29s -6s linear infinite}@keyframes fall-318{44.097%{transform:translate(59.1427vw,44.097vh) scale(.5801)}to{transform:translate(57.67395vw,99vh) scale(.5801)}}.snow:nth-child(319){opacity:.3498;transform:translate(72.867vw,-10px) scale(.5826);animation:fall-319 23s -17s linear infinite}@keyframes fall-319{64.856%{transform:translate(67.112vw,64.856vh) scale(.5826)}to{transform:translate(69.9895vw,99vh) scale(.5826)}}.snow:nth-child(320){opacity:.1224;transform:translate(17.6404vw,-10px) scale(.1196);animation:fall-320 28s -23s linear infinite}@keyframes fall-320{42.466%{transform:translate(14.7634vw,42.466vh) scale(.1196)}to{transform:translate(16.2019vw,99vh) scale(.1196)}}.snow:nth-child(321){opacity:.7034;transform:translate(23.9211vw,-10px) scale(.3243);animation:fall-321 21s -19s linear infinite}@keyframes fall-321{59.56%{transform:translate(21.3769vw,59.56vh) scale(.3243)}to{transform:translate(22.649vw,99vh) scale(.3243)}}.snow:nth-child(322){opacity:.5232;transform:translate(20.9837vw,-10px) scale(.3864);animation:fall-322 12s -16s linear infinite}@keyframes fall-322{54.814%{transform:translate(11.4007vw,54.814vh) scale(.3864)}to{transform:translate(16.1922vw,99vh) scale(.3864)}}.snow:nth-child(323){opacity:.9928;transform:translate(16.1789vw,-10px) scale(.1366);animation:fall-323 23s -25s linear infinite}@keyframes fall-323{31.822%{transform:translate(13.9057vw,31.822vh) scale(.1366)}to{transform:translate(15.0423vw,99vh) scale(.1366)}}.snow:nth-child(324){opacity:1.8812;transform:translate(56.6548vw,-10px) scale(.289);animation:fall-324 11s -9s linear infinite}@keyframes fall-324{51.571%{transform:translate(64.169vw,51.571vh) scale(.289)}to{transform:translate(60.4119vw,99vh) scale(.289)}}.snow:nth-child(325){opacity:.3652;transform:translate(46.0289vw,-10px) scale(.1241);animation:fall-325 29s -8s linear infinite}@keyframes fall-325{57.43%{transform:translate(54.6557vw,57.43vh) scale(.1241)}to{transform:translate(50.3423vw,99vh) scale(.1241)}}.snow:nth-child(326){opacity:.3754;transform:translate(77.0011vw,-10px) scale(.2613);animation:fall-326 22s -5s linear infinite}@keyframes fall-326{71.699%{transform:translate(81.1666vw,71.699vh) scale(.2613)}to{transform:translate(79.08385vw,99vh) scale(.2613)}}.snow:nth-child(327){opacity:.5498;transform:translate(48.5832vw,-10px) scale(.563);animation:fall-327 14s -1s linear infinite}@keyframes fall-327{35.931%{transform:translate(56.7652vw,35.931vh) scale(.563)}to{transform:translate(52.6742vw,99vh) scale(.563)}}.snow:nth-child(328){opacity:.9694;transform:translate(13.2936vw,-10px) scale(.1848);animation:fall-328 29s -22s linear infinite}@keyframes fall-328{38.925%{transform:translate(22.6403vw,38.925vh) scale(.1848)}to{transform:translate(17.96695vw,99vh) scale(.1848)}}.snow:nth-child(329){opacity:1.4978;transform:translate(4.9038vw,-10px) scale(.2946);animation:fall-329 15s -1s linear infinite}@keyframes fall-329{33.79%{transform:translate(-2.4427vw,33.79vh) scale(.2946)}to{transform:translate(1.23055vw,99vh) scale(.2946)}}.snow:nth-child(330){opacity:.5952;transform:translate(58.5951vw,-10px) scale(.8756);animation:fall-330 18s -13s linear infinite}@keyframes fall-330{72.157%{transform:translate(55.3242vw,72.157vh) scale(.8756)}to{transform:translate(56.95965vw,99vh) scale(.8756)}}.snow:nth-child(331){opacity:.4904;transform:translate(93.937vw,-10px) scale(.5198);animation:fall-331 13s -11s linear infinite}@keyframes fall-331{36.453%{transform:translate(93.1072vw,36.453vh) scale(.5198)}to{transform:translate(93.5221vw,99vh) scale(.5198)}}.snow:nth-child(332){opacity:1.3224;transform:translate(49.9885vw,-10px) scale(.4825);animation:fall-332 14s -10s linear infinite}@keyframes fall-332{76.681%{transform:translate(42.8119vw,76.681vh) scale(.4825)}to{transform:translate(46.4002vw,99vh) scale(.4825)}}.snow:nth-child(333){opacity:.739;transform:translate(30.7138vw,-10px) scale(.6736);animation:fall-333 27s -20s linear infinite}@keyframes fall-333{68.31%{transform:translate(31.2364vw,68.31vh) scale(.6736)}to{transform:translate(30.9751vw,99vh) scale(.6736)}}.snow:nth-child(334){opacity:1.6002;transform:translate(74.6557vw,-10px) scale(.4407);animation:fall-334 27s -30s linear infinite}@keyframes fall-334{57.971%{transform:translate(80.5298vw,57.971vh) scale(.4407)}to{transform:translate(77.59275vw,99vh) scale(.4407)}}.snow:nth-child(335){opacity:1.7864;transform:translate(50.2778vw,-10px) scale(.6724);animation:fall-335 13s -13s linear infinite}@keyframes fall-335{44.441%{transform:translate(57.3365vw,44.441vh) scale(.6724)}to{transform:translate(53.80715vw,99vh) scale(.6724)}}.snow:nth-child(336){opacity:.7408;transform:translate(75.9045vw,-10px) scale(.4427);animation:fall-336 27s -18s linear infinite}@keyframes fall-336{71.242%{transform:translate(69.9246vw,71.242vh) scale(.4427)}to{transform:translate(72.91455vw,99vh) scale(.4427)}}.snow:nth-child(337){opacity:1.8116;transform:translate(36.5324vw,-10px) scale(.8182);animation:fall-337 27s -12s linear infinite}@keyframes fall-337{69.097%{transform:translate(32.3257vw,69.097vh) scale(.8182)}to{transform:translate(34.42905vw,99vh) scale(.8182)}}.snow:nth-child(338){opacity:.4536;transform:translate(87.3698vw,-10px) scale(.1035);animation:fall-338 29s -26s linear infinite}@keyframes fall-338{61.213%{transform:translate(89.2226vw,61.213vh) scale(.1035)}to{transform:translate(88.2962vw,99vh) scale(.1035)}}.snow:nth-child(339){opacity:.618;transform:translate(57.4956vw,-10px) scale(.9658);animation:fall-339 26s -14s linear infinite}@keyframes fall-339{74.136%{transform:translate(61.8524vw,74.136vh) scale(.9658)}to{transform:translate(59.674vw,99vh) scale(.9658)}}.snow:nth-child(340){opacity:1.2208;transform:translate(69.7829vw,-10px) scale(.4413);animation:fall-340 13s -4s linear infinite}@keyframes fall-340{41.33%{transform:translate(63.717vw,41.33vh) scale(.4413)}to{transform:translate(66.74995vw,99vh) scale(.4413)}}.snow:nth-child(341){opacity:.9324;transform:translate(26.9121vw,-10px) scale(.3996);animation:fall-341 24s -14s linear infinite}@keyframes fall-341{47.116%{transform:translate(21.7544vw,47.116vh) scale(.3996)}to{transform:translate(24.33325vw,99vh) scale(.3996)}}.snow:nth-child(342){opacity:.8036;transform:translate(4.0392vw,-10px) scale(.3362);animation:fall-342 20s -24s linear infinite}@keyframes fall-342{54.365%{transform:translate(7.8458vw,54.365vh) scale(.3362)}to{transform:translate(5.9425vw,99vh) scale(.3362)}}.snow:nth-child(343){opacity:.1004;transform:translate(87.9519vw,-10px) scale(.9769);animation:fall-343 17s -16s linear infinite}@keyframes fall-343{54.88%{transform:translate(93.8477vw,54.88vh) scale(.9769)}to{transform:translate(90.8998vw,99vh) scale(.9769)}}.snow:nth-child(344){opacity:1.6172;transform:translate(5.2211vw,-10px) scale(.2998);animation:fall-344 21s -23s linear infinite}@keyframes fall-344{79.778%{transform:translate(-.8035vw,79.778vh) scale(.2998)}to{transform:translate(2.2088vw,99vh) scale(.2998)}}.snow:nth-child(345){opacity:.5542;transform:translate(14.0503vw,-10px) scale(.8352);animation:fall-345 13s -24s linear infinite}@keyframes fall-345{54.391%{transform:translate(15.5331vw,54.391vh) scale(.8352)}to{transform:translate(14.7917vw,99vh) scale(.8352)}}.snow:nth-child(346){opacity:1.5798;transform:translate(61.4887vw,-10px) scale(.667);animation:fall-346 16s -14s linear infinite}@keyframes fall-346{41.318%{transform:translate(68.4077vw,41.318vh) scale(.667)}to{transform:translate(64.9482vw,99vh) scale(.667)}}.snow:nth-child(347){opacity:.5384;transform:translate(53.1804vw,-10px) scale(.8422);animation:fall-347 27s -25s linear infinite}@keyframes fall-347{31.621%{transform:translate(61.1199vw,31.621vh) scale(.8422)}to{transform:translate(57.15015vw,99vh) scale(.8422)}}.snow:nth-child(348){opacity:.7258;transform:translate(94.9184vw,-10px) scale(.5098);animation:fall-348 17s -14s linear infinite}@keyframes fall-348{53.536%{transform:translate(87.0071vw,53.536vh) scale(.5098)}to{transform:translate(90.96275vw,99vh) scale(.5098)}}.snow:nth-child(349){opacity:1.6122;transform:translate(72.1697vw,-10px) scale(.5527);animation:fall-349 13s -19s linear infinite}@keyframes fall-349{54.005%{transform:translate(79.0467vw,54.005vh) scale(.5527)}to{transform:translate(75.6082vw,99vh) scale(.5527)}}.snow:nth-child(350){opacity:.9044;transform:translate(30.4657vw,-10px) scale(.7886);animation:fall-350 27s -16s linear infinite}@keyframes fall-350{39.704%{transform:translate(35.2421vw,39.704vh) scale(.7886)}to{transform:translate(32.8539vw,99vh) scale(.7886)}}.snow:nth-child(351){opacity:1.5808;transform:translate(21.3679vw,-10px) scale(.0057);animation:fall-351 17s -30s linear infinite}@keyframes fall-351{32.506%{transform:translate(13.0014vw,32.506vh) scale(.0057)}to{transform:translate(17.18465vw,99vh) scale(.0057)}}.snow:nth-child(352){opacity:1.678;transform:translate(28.4101vw,-10px) scale(.7697);animation:fall-352 26s -6s linear infinite}@keyframes fall-352{53.015%{transform:translate(25.0388vw,53.015vh) scale(.7697)}to{transform:translate(26.72445vw,99vh) scale(.7697)}}.snow:nth-child(353){opacity:.4604;transform:translate(24.1313vw,-10px) scale(.6794);animation:fall-353 14s -15s linear infinite}@keyframes fall-353{37.549%{transform:translate(23.9356vw,37.549vh) scale(.6794)}to{transform:translate(24.03345vw,99vh) scale(.6794)}}.snow:nth-child(354){opacity:.6642;transform:translate(63.308vw,-10px) scale(.215);animation:fall-354 19s -22s linear infinite}@keyframes fall-354{50.105%{transform:translate(60.7105vw,50.105vh) scale(.215)}to{transform:translate(62.00925vw,99vh) scale(.215)}}.snow:nth-child(355){opacity:1.7696;transform:translate(42.7073vw,-10px) scale(.0568);animation:fall-355 29s -4s linear infinite}@keyframes fall-355{32.536%{transform:translate(50.6021vw,32.536vh) scale(.0568)}to{transform:translate(46.6547vw,99vh) scale(.0568)}}.snow:nth-child(356){opacity:.872;transform:translate(95.1423vw,-10px) scale(.5141);animation:fall-356 23s -7s linear infinite}@keyframes fall-356{73.998%{transform:translate(91.4693vw,73.998vh) scale(.5141)}to{transform:translate(93.3058vw,99vh) scale(.5141)}}.snow:nth-child(357){opacity:1.2124;transform:translate(78.4828vw,-10px) scale(.4945);animation:fall-357 22s -6s linear infinite}@keyframes fall-357{44.367%{transform:translate(78.5294vw,44.367vh) scale(.4945)}to{transform:translate(78.5061vw,99vh) scale(.4945)}}.snow:nth-child(358){opacity:.0578;transform:translate(38.8962vw,-10px) scale(.8394);animation:fall-358 10s -4s linear infinite}@keyframes fall-358{56.805%{transform:translate(48.6039vw,56.805vh) scale(.8394)}to{transform:translate(43.75005vw,99vh) scale(.8394)}}.snow:nth-child(359){opacity:1.339;transform:translate(57.0313vw,-10px) scale(.4985);animation:fall-359 26s -19s linear infinite}@keyframes fall-359{52.123%{transform:translate(59.5997vw,52.123vh) scale(.4985)}to{transform:translate(58.3155vw,99vh) scale(.4985)}}.snow:nth-child(360){opacity:1.056;transform:translate(67.8913vw,-10px) scale(.2146);animation:fall-360 12s -29s linear infinite}@keyframes fall-360{35.753%{transform:translate(69.1324vw,35.753vh) scale(.2146)}to{transform:translate(68.51185vw,99vh) scale(.2146)}}.snow:nth-child(361){opacity:1.6064;transform:translate(32.9521vw,-10px) scale(.4695);animation:fall-361 16s -25s linear infinite}@keyframes fall-361{48.475%{transform:translate(31.8401vw,48.475vh) scale(.4695)}to{transform:translate(32.3961vw,99vh) scale(.4695)}}.snow:nth-child(362){opacity:.957;transform:translate(72.777vw,-10px) scale(.7407);animation:fall-362 22s -6s linear infinite}@keyframes fall-362{44.198%{transform:translate(76.6978vw,44.198vh) scale(.7407)}to{transform:translate(74.7374vw,99vh) scale(.7407)}}.snow:nth-child(363){opacity:.402;transform:translate(52.6911vw,-10px) scale(.8642);animation:fall-363 28s -3s linear infinite}@keyframes fall-363{37.687%{transform:translate(57.9136vw,37.687vh) scale(.8642)}to{transform:translate(55.30235vw,99vh) scale(.8642)}}.snow:nth-child(364){opacity:1.069;transform:translate(71.4701vw,-10px) scale(.1296);animation:fall-364 28s -29s linear infinite}@keyframes fall-364{77.493%{transform:translate(65.5198vw,77.493vh) scale(.1296)}to{transform:translate(68.49495vw,99vh) scale(.1296)}}.snow:nth-child(365){opacity:.9534;transform:translate(5.0175vw,-10px) scale(.3473);animation:fall-365 22s -23s linear infinite}@keyframes fall-365{64.977%{transform:translate(-.907vw,64.977vh) scale(.3473)}to{transform:translate(2.05525vw,99vh) scale(.3473)}}.snow:nth-child(366){opacity:.3344;transform:translate(1.4839vw,-10px) scale(.6628);animation:fall-366 25s -27s linear infinite}@keyframes fall-366{39.837%{transform:translate(6.0633vw,39.837vh) scale(.6628)}to{transform:translate(3.7736vw,99vh) scale(.6628)}}.snow:nth-child(367){opacity:1.6578;transform:translate(10.2832vw,-10px) scale(.3321);animation:fall-367 17s -20s linear infinite}@keyframes fall-367{41.706%{transform:translate(8.7332vw,41.706vh) scale(.3321)}to{transform:translate(9.5082vw,99vh) scale(.3321)}}.snow:nth-child(368){opacity:1.688;transform:translate(29.4752vw,-10px) scale(.5541);animation:fall-368 19s -19s linear infinite}@keyframes fall-368{74.764%{transform:translate(32.9572vw,74.764vh) scale(.5541)}to{transform:translate(31.2162vw,99vh) scale(.5541)}}.snow:nth-child(369){opacity:.309;transform:translate(55.0314vw,-10px) scale(.4424);animation:fall-369 11s -12s linear infinite}@keyframes fall-369{53.239%{transform:translate(56.431vw,53.239vh) scale(.4424)}to{transform:translate(55.7312vw,99vh) scale(.4424)}}.snow:nth-child(370){opacity:.1908;transform:translate(32.2012vw,-10px) scale(.6812);animation:fall-370 28s -19s linear infinite}@keyframes fall-370{74.613%{transform:translate(26.7899vw,74.613vh) scale(.6812)}to{transform:translate(29.49555vw,99vh) scale(.6812)}}.snow:nth-child(371){opacity:1.4438;transform:translate(62.7813vw,-10px) scale(.2588);animation:fall-371 20s -29s linear infinite}@keyframes fall-371{73.4%{transform:translate(66.6815vw,73.4vh) scale(.2588)}to{transform:translate(64.7314vw,99vh) scale(.2588)}}.snow:nth-child(372){opacity:1.241;transform:translate(31.5995vw,-10px) scale(.5993);animation:fall-372 29s -29s linear infinite}@keyframes fall-372{39.139%{transform:translate(38.7939vw,39.139vh) scale(.5993)}to{transform:translate(35.1967vw,99vh) scale(.5993)}}.snow:nth-child(373){opacity:.561;transform:translate(24.6877vw,-10px) scale(.894);animation:fall-373 13s -4s linear infinite}@keyframes fall-373{60.935%{transform:translate(20.2984vw,60.935vh) scale(.894)}to{transform:translate(22.49305vw,99vh) scale(.894)}}.snow:nth-child(374){opacity:1.7032;transform:translate(85.5815vw,-10px) scale(.2123);animation:fall-374 21s -1s linear infinite}@keyframes fall-374{66.78%{transform:translate(92.4331vw,66.78vh) scale(.2123)}to{transform:translate(89.0073vw,99vh) scale(.2123)}}.snow:nth-child(375){opacity:1.5716;transform:translate(51.9618vw,-10px) scale(.4207);animation:fall-375 20s -7s linear infinite}@keyframes fall-375{58.674%{transform:translate(55.4651vw,58.674vh) scale(.4207)}to{transform:translate(53.71345vw,99vh) scale(.4207)}}.snow:nth-child(376){opacity:1.4046;transform:translate(4.1075vw,-10px) scale(.5998);animation:fall-376 26s -15s linear infinite}@keyframes fall-376{53.619%{transform:translate(-3.0482vw,53.619vh) scale(.5998)}to{transform:translate(.52965vw,99vh) scale(.5998)}}.snow:nth-child(377){opacity:.013;transform:translate(65.5851vw,-10px) scale(.716);animation:fall-377 18s -17s linear infinite}@keyframes fall-377{33.747%{transform:translate(69.727vw,33.747vh) scale(.716)}to{transform:translate(67.65605vw,99vh) scale(.716)}}.snow:nth-child(378){opacity:1.7;transform:translate(21.8627vw,-10px) scale(.1531);animation:fall-378 18s -25s linear infinite}@keyframes fall-378{54.046%{transform:translate(18.3546vw,54.046vh) scale(.1531)}to{transform:translate(20.10865vw,99vh) scale(.1531)}}.snow:nth-child(379){opacity:1.7346;transform:translate(5.5778vw,-10px) scale(.0649);animation:fall-379 30s -19s linear infinite}@keyframes fall-379{54.873%{transform:translate(-3.082vw,54.873vh) scale(.0649)}to{transform:translate(1.2479vw,99vh) scale(.0649)}}.snow:nth-child(380){opacity:.0492;transform:translate(95.2883vw,-10px) scale(.5144);animation:fall-380 20s -23s linear infinite}@keyframes fall-380{75.532%{transform:translate(87.0486vw,75.532vh) scale(.5144)}to{transform:translate(91.16845vw,99vh) scale(.5144)}}.snow:nth-child(381){opacity:1.5506;transform:translate(98.8572vw,-10px) scale(.2808);animation:fall-381 11s -11s linear infinite}@keyframes fall-381{30.982%{transform:translate(108.7416vw,30.982vh) scale(.2808)}to{transform:translate(103.7994vw,99vh) scale(.2808)}}.snow:nth-child(382){opacity:.5026;transform:translate(46.7996vw,-10px) scale(.0678);animation:fall-382 24s -4s linear infinite}@keyframes fall-382{53.414%{transform:translate(50.4837vw,53.414vh) scale(.0678)}to{transform:translate(48.64165vw,99vh) scale(.0678)}}.snow:nth-child(383){opacity:.0454;transform:translate(12.9612vw,-10px) scale(.1462);animation:fall-383 18s -29s linear infinite}@keyframes fall-383{72.409%{transform:translate(18.9443vw,72.409vh) scale(.1462)}to{transform:translate(15.95275vw,99vh) scale(.1462)}}.snow:nth-child(384){opacity:1.4602;transform:translate(46.3968vw,-10px) scale(.4556);animation:fall-384 15s -15s linear infinite}@keyframes fall-384{70.487%{transform:translate(39.5042vw,70.487vh) scale(.4556)}to{transform:translate(42.9505vw,99vh) scale(.4556)}}.snow:nth-child(385){opacity:1.7854;transform:translate(98.2161vw,-10px) scale(.1904);animation:fall-385 16s -7s linear infinite}@keyframes fall-385{67.05%{transform:translate(88.9574vw,67.05vh) scale(.1904)}to{transform:translate(93.58675vw,99vh) scale(.1904)}}.snow:nth-child(386){opacity:1.616;transform:translate(87.6611vw,-10px) scale(.4627);animation:fall-386 19s -12s linear infinite}@keyframes fall-386{56.264%{transform:translate(85.4884vw,56.264vh) scale(.4627)}to{transform:translate(86.57475vw,99vh) scale(.4627)}}.snow:nth-child(387){opacity:.5156;transform:translate(11.8897vw,-10px) scale(.135);animation:fall-387 10s -15s linear infinite}@keyframes fall-387{70.84%{transform:translate(21.0561vw,70.84vh) scale(.135)}to{transform:translate(16.4729vw,99vh) scale(.135)}}.snow:nth-child(388){opacity:.0874;transform:translate(11.5592vw,-10px) scale(.1465);animation:fall-388 23s -28s linear infinite}@keyframes fall-388{78.998%{transform:translate(2.5038vw,78.998vh) scale(.1465)}to{transform:translate(7.0315vw,99vh) scale(.1465)}}.snow:nth-child(389){opacity:1.627;transform:translate(8.8455vw,-10px) scale(.7017);animation:fall-389 20s -26s linear infinite}@keyframes fall-389{33.596%{transform:translate(3.8223vw,33.596vh) scale(.7017)}to{transform:translate(6.3339vw,99vh) scale(.7017)}}.snow:nth-child(390){opacity:1.7414;transform:translate(68.9541vw,-10px) scale(.2066);animation:fall-390 19s -3s linear infinite}@keyframes fall-390{39.658%{transform:translate(71.1171vw,39.658vh) scale(.2066)}to{transform:translate(70.0356vw,99vh) scale(.2066)}}.snow:nth-child(391){opacity:.8908;transform:translate(97.3057vw,-10px) scale(.5879);animation:fall-391 23s -28s linear infinite}@keyframes fall-391{53.852%{transform:translate(95.1017vw,53.852vh) scale(.5879)}to{transform:translate(96.2037vw,99vh) scale(.5879)}}.snow:nth-child(392){opacity:1.5204;transform:translate(97.1425vw,-10px) scale(.1096);animation:fall-392 15s -6s linear infinite}@keyframes fall-392{68.681%{transform:translate(97.7572vw,68.681vh) scale(.1096)}to{transform:translate(97.44985vw,99vh) scale(.1096)}}.snow:nth-child(393){opacity:.3038;transform:translate(17.4753vw,-10px) scale(.6367);animation:fall-393 27s -17s linear infinite}@keyframes fall-393{54.645%{transform:translate(15.7608vw,54.645vh) scale(.6367)}to{transform:translate(16.61805vw,99vh) scale(.6367)}}.snow:nth-child(394){opacity:1.8032;transform:translate(33.4946vw,-10px) scale(.3255);animation:fall-394 28s -17s linear infinite}@keyframes fall-394{71.392%{transform:translate(29.4046vw,71.392vh) scale(.3255)}to{transform:translate(31.4496vw,99vh) scale(.3255)}}.snow:nth-child(395){opacity:1.1302;transform:translate(75.8769vw,-10px) scale(.2692);animation:fall-395 24s -3s linear infinite}@keyframes fall-395{68.788%{transform:translate(80.1117vw,68.788vh) scale(.2692)}to{transform:translate(77.9943vw,99vh) scale(.2692)}}.snow:nth-child(396){opacity:.1052;transform:translate(47.5523vw,-10px) scale(.7895);animation:fall-396 17s -14s linear infinite}@keyframes fall-396{56.325%{transform:translate(45.3666vw,56.325vh) scale(.7895)}to{transform:translate(46.45945vw,99vh) scale(.7895)}}.snow:nth-child(397){opacity:.8726;transform:translate(85.1698vw,-10px) scale(.0431);animation:fall-397 22s -11s linear infinite}@keyframes fall-397{67.381%{transform:translate(76.9421vw,67.381vh) scale(.0431)}to{transform:translate(81.05595vw,99vh) scale(.0431)}}.snow:nth-child(398){opacity:.4248;transform:translate(50.335vw,-10px) scale(.8666);animation:fall-398 22s -3s linear infinite}@keyframes fall-398{50.115%{transform:translate(51.2947vw,50.115vh) scale(.8666)}to{transform:translate(50.81485vw,99vh) scale(.8666)}}.snow:nth-child(399){opacity:.4516;transform:translate(11.6786vw,-10px) scale(.495);animation:fall-399 28s -17s linear infinite}@keyframes fall-399{72.578%{transform:translate(20.8629vw,72.578vh) scale(.495)}to{transform:translate(16.27075vw,99vh) scale(.495)}}.snow:nth-child(400){opacity:1.9108;transform:translate(28.058vw,-10px) scale(.9487);animation:fall-400 13s -1s linear infinite}@keyframes fall-400{78.319%{transform:translate(26.9874vw,78.319vh) scale(.9487)}to{transform:translate(27.5227vw,99vh) scale(.9487)}}\n"] }]
|
|
94
|
+
args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, standalone: false, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows; trackBy: snowTrackBy\" 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{-webkit-animation:progress-bar-stripes 1s linear infinite;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;-webkit-box-shadow:1px 1px 5px 0px rgba(0,0,0,.25);-moz-box-shadow:1px 1px 5px 0px rgba(0,0,0,.25);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:#024a8880}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:#2d922d80}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:#248dad80}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:#f79a1780}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:#bf172580}.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:#0006}.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:#0003}.card.overlay .card-img{border-radius:0;-webkit-filter:brightness(100%);-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-webkit-filter:brightness(80%);-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{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);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:#024a88cc!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:#024a8880;border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:#024a88f2!important;border-color:#024a88f2!important}.btn-success{background:#2d922dcc;border-color:#2d922dcc}.btn-success.medium-opacity{background:#2d922d80;border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:#2d922df2!important;border-color:#2d922df2!important}.btn-info{background:#248dadcc;border-color:#248dadcc}.btn-info.medium-opacity{background:#248dad80;border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:#248dadf2!important;border-color:#248dadf2!important}.btn-warning{background:#f79a17cc;border-color:#f79a17cc}.btn-warning.medium-opacity{background:#f79a1780;border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:#f79a17f2!important;border-color:#f79a17f2!important}.btn-danger{background:#bf1725cc;border-color:#bf1725cc}.btn-danger.medium-opacity{background:#bf172580;border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:#bf1725f2!important;border-color:#bf1725f2!important}.btn-dark{background:#000c;border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:#00000080;border-color:#0000001a}.btn-dark:hover{background:#000;border-color:#000}.btn-dark:active{background:#000000f2!important;border-color:#000000f2!important}.btn-main{background:#242d3acc;border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:#242d3a80;border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:#242d3af2!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:#2d922d80;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:#555555b3}.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:#555555b3}.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:#ffffff1a 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:#024a8880!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:#2d922d80!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:#f79a1780!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:#bf172580!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:#242d3a80!important}.bg-dark{background:#000!important}.bg-dark.medium-opacity{background:#00000080!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: 1800px){.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}::-webkit-input-placeholder{color:#aaa!important}:-moz-placeholder{color:#aaa!important;opacity:1!important}::-moz-placeholder{color:#aaa!important;opacity:1!important}:-ms-input-placeholder{color:#aaa!important}::-ms-input-placeholder{color:#aaa!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{-moz-transform:scale(1,-1);-webkit-transform:scale(1,-1);-o-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scaleY(-1)}.app-flip-x{-moz-transform:scale(-1,1);-webkit-transform:scale(-1,1);-o-transform:scale(-1,1);-ms-transform:scale(-1,1);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-600{max-height:600px;overflow-x:hidden;overflow-y:auto}.list-area{position:relative!important}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:#ff323233;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:#fff;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}.wizard-step-container{background-color:#fff;box-shadow:#63636333 0 2px 8px;padding:10px}.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}.m-b-min-1{margin-bottom:-1px}.m-b-min-2{margin-bottom:-2px}.m-b-min-3{margin-bottom:-3px}.m-b-min-5{margin-bottom:-5px}.m-b-min-6{margin-bottom:-6px}.m-b-min-10{margin-bottom:-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:#00000080 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:#ededed;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{margin-top:20px;padding-left:0!important}.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}.app-search-background{z-index:9999;margin-top:60px;padding:0;background-color:#0000004d;width:100vw;height:calc(100vh - 60px)}.app-search-result-box{height:calc(100% - 35px);overflow:hidden;margin:20px}.app-search-card{margin-top:2px;margin-bottom:10px;padding:15px;background-color:#fff;box-shadow:#06182c66 0 0 0 2px,#06182ca6 0 4px 6px -1px,#ffffff14 0 1px inset}.pull-left{float:left}.pull-right{float:right}.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;-moz-user-select:none!important;-ms-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:#ccc}::-webkit-scrollbar-thumb:active{background:#888}::-webkit-scrollbar-track{background:#666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666}::-webkit-scrollbar-track:active{background:#333}::-webkit-scrollbar-corner{background:transparent}.transition{-webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;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%}}.snow{position:absolute;width:10px;height:10px;background:#fff;border-radius:50%}.snow:nth-child(1){opacity:1.0148;transform:translate(83.9462vw,-10px) scale(.8323);animation:fall-1 10s -27s linear infinite}@keyframes fall-1{61.132%{transform:translate(82.6252vw,61.132vh) scale(.8323)}to{transform:translate(83.2857vw,99vh) scale(.8323)}}.snow:nth-child(2){opacity:1.2276;transform:translate(44.5227vw,-10px) scale(.9035);animation:fall-2 12s -25s linear infinite}@keyframes fall-2{47.921%{transform:translate(38.2703vw,47.921vh) scale(.9035)}to{transform:translate(41.3965vw,99vh) scale(.9035)}}.snow:nth-child(3){opacity:1.2548;transform:translate(58.3472vw,-10px) scale(.7587);animation:fall-3 16s -27s linear infinite}@keyframes fall-3{47.607%{transform:translate(61.6241vw,47.607vh) scale(.7587)}to{transform:translate(59.98565vw,99vh) scale(.7587)}}.snow:nth-child(4){opacity:1.3946;transform:translate(69.3003vw,-10px) scale(.1265);animation:fall-4 27s -18s linear infinite}@keyframes fall-4{37.629%{transform:translate(63.2374vw,37.629vh) scale(.1265)}to{transform:translate(66.26885vw,99vh) scale(.1265)}}.snow:nth-child(5){opacity:.1774;transform:translate(77.4844vw,-10px) scale(.3328);animation:fall-5 11s -2s linear infinite}@keyframes fall-5{32.882%{transform:translate(78.8705vw,32.882vh) scale(.3328)}to{transform:translate(78.17745vw,99vh) scale(.3328)}}.snow:nth-child(6){opacity:.2772;transform:translate(15.0907vw,-10px) scale(.5736);animation:fall-6 24s -3s linear infinite}@keyframes fall-6{68.444%{transform:translate(16.9722vw,68.444vh) scale(.5736)}to{transform:translate(16.03145vw,99vh) scale(.5736)}}.snow:nth-child(7){opacity:1.6818;transform:translate(25.8484vw,-10px) scale(.2573);animation:fall-7 12s -1s linear infinite}@keyframes fall-7{57.371%{transform:translate(32.0337vw,57.371vh) scale(.2573)}to{transform:translate(28.94105vw,99vh) scale(.2573)}}.snow:nth-child(8){opacity:.8346;transform:translate(8.697vw,-10px) scale(.3208);animation:fall-8 10s -2s linear infinite}@keyframes fall-8{79.078%{transform:translate(.8187vw,79.078vh) scale(.3208)}to{transform:translate(4.75785vw,99vh) scale(.3208)}}.snow:nth-child(9){opacity:1.5598;transform:translate(40.2825vw,-10px) scale(.0734);animation:fall-9 16s -7s linear infinite}@keyframes fall-9{64.572%{transform:translate(37.497vw,64.572vh) scale(.0734)}to{transform:translate(38.88975vw,99vh) scale(.0734)}}.snow:nth-child(10){opacity:1.7908;transform:translate(59.6304vw,-10px) scale(.9703);animation:fall-10 15s -7s linear infinite}@keyframes fall-10{50.056%{transform:translate(55.4666vw,50.056vh) scale(.9703)}to{transform:translate(57.5485vw,99vh) scale(.9703)}}.snow:nth-child(11){opacity:1.1852;transform:translate(55.1712vw,-10px) scale(.3881);animation:fall-11 19s -13s linear infinite}@keyframes fall-11{49.035%{transform:translate(47.3326vw,49.035vh) scale(.3881)}to{transform:translate(51.2519vw,99vh) scale(.3881)}}.snow:nth-child(12){opacity:.6774;transform:translate(98.9392vw,-10px) scale(.1292);animation:fall-12 26s -2s linear infinite}@keyframes fall-12{47.302%{transform:translate(91.7169vw,47.302vh) scale(.1292)}to{transform:translate(95.32805vw,99vh) scale(.1292)}}.snow:nth-child(13){opacity:.0374;transform:translate(3.7708vw,-10px) scale(.5859);animation:fall-13 14s -7s linear infinite}@keyframes fall-13{34.277%{transform:translate(.0314vw,34.277vh) scale(.5859)}to{transform:translate(1.9011vw,99vh) scale(.5859)}}.snow:nth-child(14){opacity:1.006;transform:translate(18.8431vw,-10px) scale(.0613);animation:fall-14 29s -8s linear infinite}@keyframes fall-14{70.908%{transform:translate(17.6215vw,70.908vh) scale(.0613)}to{transform:translate(18.2323vw,99vh) scale(.0613)}}.snow:nth-child(15){opacity:.4116;transform:translate(90.7023vw,-10px) scale(.2442);animation:fall-15 25s -3s linear infinite}@keyframes fall-15{78.343%{transform:translate(94.4795vw,78.343vh) scale(.2442)}to{transform:translate(92.5909vw,99vh) scale(.2442)}}.snow:nth-child(16){opacity:1.4302;transform:translate(37.483vw,-10px) scale(.5331);animation:fall-16 25s -22s linear infinite}@keyframes fall-16{52.302%{transform:translate(39.3439vw,52.302vh) scale(.5331)}to{transform:translate(38.41345vw,99vh) scale(.5331)}}.snow:nth-child(17){opacity:.592;transform:translate(23.7792vw,-10px) scale(.1745);animation:fall-17 20s -11s linear infinite}@keyframes fall-17{39.271%{transform:translate(25.166vw,39.271vh) scale(.1745)}to{transform:translate(24.4726vw,99vh) scale(.1745)}}.snow:nth-child(18){opacity:1.7758;transform:translate(80.1078vw,-10px) scale(.8446);animation:fall-18 30s -9s linear infinite}@keyframes fall-18{78.194%{transform:translate(77.2076vw,78.194vh) scale(.8446)}to{transform:translate(78.6577vw,99vh) scale(.8446)}}.snow:nth-child(19){opacity:.8778;transform:translate(48.1075vw,-10px) scale(.1709);animation:fall-19 23s -19s linear infinite}@keyframes fall-19{52.092%{transform:translate(52.679vw,52.092vh) scale(.1709)}to{transform:translate(50.39325vw,99vh) scale(.1709)}}.snow:nth-child(20){opacity:1.5172;transform:translate(10.3553vw,-10px) scale(.2568);animation:fall-20 28s -10s linear infinite}@keyframes fall-20{31.675%{transform:translate(11.6529vw,31.675vh) scale(.2568)}to{transform:translate(11.0041vw,99vh) scale(.2568)}}.snow:nth-child(21){opacity:.0272;transform:translate(96.5218vw,-10px) scale(.1306);animation:fall-21 22s -5s linear infinite}@keyframes fall-21{38.072%{transform:translate(106.3071vw,38.072vh) scale(.1306)}to{transform:translate(101.41445vw,99vh) scale(.1306)}}.snow:nth-child(22){opacity:1.5752;transform:translate(97.0697vw,-10px) scale(.1904);animation:fall-22 20s -30s linear infinite}@keyframes fall-22{79.381%{transform:translate(90.3703vw,79.381vh) scale(.1904)}to{transform:translate(93.72vw,99vh) scale(.1904)}}.snow:nth-child(23){opacity:1.5134;transform:translate(33.5426vw,-10px) scale(.2476);animation:fall-23 30s -19s linear infinite}@keyframes fall-23{79.434%{transform:translate(42.7204vw,79.434vh) scale(.2476)}to{transform:translate(38.1315vw,99vh) scale(.2476)}}.snow:nth-child(24){opacity:1.3702;transform:translate(15.9581vw,-10px) scale(.5586);animation:fall-24 29s -17s linear infinite}@keyframes fall-24{31.566%{transform:translate(23.1052vw,31.566vh) scale(.5586)}to{transform:translate(19.53165vw,99vh) scale(.5586)}}.snow:nth-child(25){opacity:1.5412;transform:translate(64.2779vw,-10px) scale(.5241);animation:fall-25 20s -23s linear infinite}@keyframes fall-25{67.899%{transform:translate(70.6989vw,67.899vh) scale(.5241)}to{transform:translate(67.4884vw,99vh) scale(.5241)}}.snow:nth-child(26){opacity:1.7258;transform:translate(44.8602vw,-10px) scale(.103);animation:fall-26 27s -10s linear infinite}@keyframes fall-26{65.612%{transform:translate(54.4843vw,65.612vh) scale(.103)}to{transform:translate(49.67225vw,99vh) scale(.103)}}.snow:nth-child(27){opacity:1.6324;transform:translate(84.4723vw,-10px) scale(.1913);animation:fall-27 14s -14s linear infinite}@keyframes fall-27{48.503%{transform:translate(94.0292vw,48.503vh) scale(.1913)}to{transform:translate(89.25075vw,99vh) scale(.1913)}}.snow:nth-child(28){opacity:1.4528;transform:translate(84.3115vw,-10px) scale(.9524);animation:fall-28 30s -5s linear infinite}@keyframes fall-28{79.285%{transform:translate(82.3791vw,79.285vh) scale(.9524)}to{transform:translate(83.3453vw,99vh) scale(.9524)}}.snow:nth-child(29){opacity:.89;transform:translate(25.3645vw,-10px) scale(.8893);animation:fall-29 30s -20s linear infinite}@keyframes fall-29{60.165%{transform:translate(33.5407vw,60.165vh) scale(.8893)}to{transform:translate(29.4526vw,99vh) scale(.8893)}}.snow:nth-child(30){opacity:.7282;transform:translate(98.8171vw,-10px) scale(.146);animation:fall-30 10s -5s linear infinite}@keyframes fall-30{57.419%{transform:translate(103.4464vw,57.419vh) scale(.146)}to{transform:translate(101.13175vw,99vh) scale(.146)}}.snow:nth-child(31){opacity:1.2084;transform:translate(19.147vw,-10px) scale(.3023);animation:fall-31 16s -25s linear infinite}@keyframes fall-31{62.596%{transform:translate(13.9669vw,62.596vh) scale(.3023)}to{transform:translate(16.55695vw,99vh) scale(.3023)}}.snow:nth-child(32){opacity:.2564;transform:translate(85.7031vw,-10px) scale(.1998);animation:fall-32 27s -28s linear infinite}@keyframes fall-32{68.443%{transform:translate(90.9127vw,68.443vh) scale(.1998)}to{transform:translate(88.3079vw,99vh) scale(.1998)}}.snow:nth-child(33){opacity:1.3436;transform:translate(81.1532vw,-10px) scale(.5985);animation:fall-33 29s -18s linear infinite}@keyframes fall-33{71.938%{transform:translate(76.3057vw,71.938vh) scale(.5985)}to{transform:translate(78.72945vw,99vh) scale(.5985)}}.snow:nth-child(34){opacity:.7046;transform:translate(24.6863vw,-10px) scale(.4582);animation:fall-34 23s -26s linear infinite}@keyframes fall-34{73.647%{transform:translate(18.3727vw,73.647vh) scale(.4582)}to{transform:translate(21.5295vw,99vh) scale(.4582)}}.snow:nth-child(35){opacity:1.004;transform:translate(81.3778vw,-10px) scale(.7494);animation:fall-35 11s -28s linear infinite}@keyframes fall-35{54.501%{transform:translate(90.0056vw,54.501vh) scale(.7494)}to{transform:translate(85.6917vw,99vh) scale(.7494)}}.snow:nth-child(36){opacity:.3758;transform:translate(61.1421vw,-10px) scale(.7321);animation:fall-36 24s -7s linear infinite}@keyframes fall-36{77.065%{transform:translate(60.3411vw,77.065vh) scale(.7321)}to{transform:translate(60.7416vw,99vh) scale(.7321)}}.snow:nth-child(37){opacity:.6336;transform:translate(52.4368vw,-10px) scale(.8414);animation:fall-37 27s -14s linear infinite}@keyframes fall-37{73.297%{transform:translate(44.8643vw,73.297vh) scale(.8414)}to{transform:translate(48.65055vw,99vh) scale(.8414)}}.snow:nth-child(38){opacity:1.6184;transform:translate(58.0051vw,-10px) scale(.3076);animation:fall-38 25s -15s linear infinite}@keyframes fall-38{67.221%{transform:translate(48.3362vw,67.221vh) scale(.3076)}to{transform:translate(53.17065vw,99vh) scale(.3076)}}.snow:nth-child(39){opacity:1.0094;transform:translate(50.2542vw,-10px) scale(.5931);animation:fall-39 27s -28s linear infinite}@keyframes fall-39{33.334%{transform:translate(44.5636vw,33.334vh) scale(.5931)}to{transform:translate(47.4089vw,99vh) scale(.5931)}}.snow:nth-child(40){opacity:1.4032;transform:translate(91.6659vw,-10px) scale(.7379);animation:fall-40 14s -16s linear infinite}@keyframes fall-40{67.652%{transform:translate(93.7659vw,67.652vh) scale(.7379)}to{transform:translate(92.7159vw,99vh) scale(.7379)}}.snow:nth-child(41){opacity:.7966;transform:translate(18.8241vw,-10px) scale(.8542);animation:fall-41 17s -24s linear infinite}@keyframes fall-41{68.422%{transform:translate(22.6454vw,68.422vh) scale(.8542)}to{transform:translate(20.73475vw,99vh) scale(.8542)}}.snow:nth-child(42){opacity:.118;transform:translate(49.4103vw,-10px) scale(.9854);animation:fall-42 28s -5s linear infinite}@keyframes fall-42{62.562%{transform:translate(41.2672vw,62.562vh) scale(.9854)}to{transform:translate(45.33875vw,99vh) scale(.9854)}}.snow:nth-child(43){opacity:1.1614;transform:translate(74.6221vw,-10px) scale(.138);animation:fall-43 26s -7s linear infinite}@keyframes fall-43{71.429%{transform:translate(66.1699vw,71.429vh) scale(.138)}to{transform:translate(70.396vw,99vh) scale(.138)}}.snow:nth-child(44){opacity:1.013;transform:translate(42.3073vw,-10px) scale(.7872);animation:fall-44 23s -15s linear infinite}@keyframes fall-44{40.211%{transform:translate(40.4711vw,40.211vh) scale(.7872)}to{transform:translate(41.3892vw,99vh) scale(.7872)}}.snow:nth-child(45){opacity:1.4094;transform:translate(79.7869vw,-10px) scale(.8623);animation:fall-45 26s -12s linear infinite}@keyframes fall-45{52.056%{transform:translate(71.5987vw,52.056vh) scale(.8623)}to{transform:translate(75.6928vw,99vh) scale(.8623)}}.snow:nth-child(46){opacity:.1478;transform:translate(43.3552vw,-10px) scale(.0765);animation:fall-46 16s -27s linear infinite}@keyframes fall-46{33.233%{transform:translate(34.7831vw,33.233vh) scale(.0765)}to{transform:translate(39.06915vw,99vh) scale(.0765)}}.snow:nth-child(47){opacity:1.1544;transform:translate(.6052vw,-10px) scale(.2685);animation:fall-47 15s -10s linear infinite}@keyframes fall-47{61.28%{transform:translate(-2.0221vw,61.28vh) scale(.2685)}to{transform:translate(-.70845vw,99vh) scale(.2685)}}.snow:nth-child(48){opacity:1.1024;transform:translate(82.5739vw,-10px) scale(.4);animation:fall-48 18s -7s linear infinite}@keyframes fall-48{77.828%{transform:translate(76.6378vw,77.828vh) scale(.4)}to{transform:translate(79.60585vw,99vh) scale(.4)}}.snow:nth-child(49){opacity:1.3906;transform:translate(80.5811vw,-10px) scale(.4972);animation:fall-49 17s -23s linear infinite}@keyframes fall-49{65.564%{transform:translate(83.1211vw,65.564vh) scale(.4972)}to{transform:translate(81.8511vw,99vh) scale(.4972)}}.snow:nth-child(50){opacity:1.5146;transform:translate(37.5204vw,-10px) scale(.8942);animation:fall-50 18s -24s linear infinite}@keyframes fall-50{32.719%{transform:translate(41.6958vw,32.719vh) scale(.8942)}to{transform:translate(39.6081vw,99vh) scale(.8942)}}.snow:nth-child(51){opacity:.5518;transform:translate(10.4892vw,-10px) scale(.9854);animation:fall-51 14s -24s linear infinite}@keyframes fall-51{54.779%{transform:translate(13.3886vw,54.779vh) scale(.9854)}to{transform:translate(11.9389vw,99vh) scale(.9854)}}.snow:nth-child(52){opacity:1.5798;transform:translate(81.1271vw,-10px) scale(.4726);animation:fall-52 19s -26s linear infinite}@keyframes fall-52{59.883%{transform:translate(73.39vw,59.883vh) scale(.4726)}to{transform:translate(77.25855vw,99vh) scale(.4726)}}.snow:nth-child(53){opacity:1.3472;transform:translate(83.6479vw,-10px) scale(.6627);animation:fall-53 14s -3s linear infinite}@keyframes fall-53{46.214%{transform:translate(82.8914vw,46.214vh) scale(.6627)}to{transform:translate(83.26965vw,99vh) scale(.6627)}}.snow:nth-child(54){opacity:1.2122;transform:translate(22.8536vw,-10px) scale(.5807);animation:fall-54 11s -28s linear infinite}@keyframes fall-54{58.705%{transform:translate(18.0382vw,58.705vh) scale(.5807)}to{transform:translate(20.4459vw,99vh) scale(.5807)}}.snow:nth-child(55){opacity:.3264;transform:translate(64.0229vw,-10px) scale(.8282);animation:fall-55 13s -11s linear infinite}@keyframes fall-55{49.395%{transform:translate(56.1682vw,49.395vh) scale(.8282)}to{transform:translate(60.09555vw,99vh) scale(.8282)}}.snow:nth-child(56){opacity:1.1202;transform:translate(73.2507vw,-10px) scale(.1983);animation:fall-56 22s -6s linear infinite}@keyframes fall-56{41.631%{transform:translate(77.1786vw,41.631vh) scale(.1983)}to{transform:translate(75.21465vw,99vh) scale(.1983)}}.snow:nth-child(57){opacity:1.6328;transform:translate(81.5841vw,-10px) scale(.3318);animation:fall-57 23s -12s linear infinite}@keyframes fall-57{37.495%{transform:translate(81.1288vw,37.495vh) scale(.3318)}to{transform:translate(81.35645vw,99vh) scale(.3318)}}.snow:nth-child(58){opacity:.0866;transform:translate(88.8016vw,-10px) scale(.5949);animation:fall-58 30s -19s linear infinite}@keyframes fall-58{74.189%{transform:translate(83.4029vw,74.189vh) scale(.5949)}to{transform:translate(86.10225vw,99vh) scale(.5949)}}.snow:nth-child(59){opacity:1.6744;transform:translate(54.2186vw,-10px) scale(.8536);animation:fall-59 16s -6s linear infinite}@keyframes fall-59{39.657%{transform:translate(63.2899vw,39.657vh) scale(.8536)}to{transform:translate(58.75425vw,99vh) scale(.8536)}}.snow:nth-child(60){opacity:1.3034;transform:translate(22.8026vw,-10px) scale(.0802);animation:fall-60 15s -5s linear infinite}@keyframes fall-60{74.218%{transform:translate(13.9069vw,74.218vh) scale(.0802)}to{transform:translate(18.35475vw,99vh) scale(.0802)}}.snow:nth-child(61){opacity:1.4294;transform:translate(59.7481vw,-10px) scale(.622);animation:fall-61 28s -13s linear infinite}@keyframes fall-61{43.796%{transform:translate(64.2379vw,43.796vh) scale(.622)}to{transform:translate(61.993vw,99vh) scale(.622)}}.snow:nth-child(62){opacity:1.8256;transform:translate(39.0276vw,-10px) scale(.3182);animation:fall-62 17s -19s linear infinite}@keyframes fall-62{38.072%{transform:translate(45.5652vw,38.072vh) scale(.3182)}to{transform:translate(42.2964vw,99vh) scale(.3182)}}.snow:nth-child(63){opacity:.259;transform:translate(66.7774vw,-10px) scale(.0449);animation:fall-63 23s -30s linear infinite}@keyframes fall-63{62.684%{transform:translate(65.9639vw,62.684vh) scale(.0449)}to{transform:translate(66.37065vw,99vh) scale(.0449)}}.snow:nth-child(64){opacity:.6566;transform:translate(58.582vw,-10px) scale(.0007);animation:fall-64 28s -18s linear infinite}@keyframes fall-64{45.701%{transform:translate(62.5929vw,45.701vh) scale(.0007)}to{transform:translate(60.58745vw,99vh) scale(.0007)}}.snow:nth-child(65){opacity:.7914;transform:translate(63.4737vw,-10px) scale(.4453);animation:fall-65 21s -22s linear infinite}@keyframes fall-65{67.889%{transform:translate(69.8943vw,67.889vh) scale(.4453)}to{transform:translate(66.684vw,99vh) scale(.4453)}}.snow:nth-child(66){opacity:.1322;transform:translate(38.1361vw,-10px) scale(.948);animation:fall-66 21s -19s linear infinite}@keyframes fall-66{51.555%{transform:translate(33.3448vw,51.555vh) scale(.948)}to{transform:translate(35.74045vw,99vh) scale(.948)}}.snow:nth-child(67){opacity:1.9822;transform:translate(3.1655vw,-10px) scale(.2819);animation:fall-67 27s -22s linear infinite}@keyframes fall-67{43.673%{transform:translate(8.1663vw,43.673vh) scale(.2819)}to{transform:translate(5.6659vw,99vh) scale(.2819)}}.snow:nth-child(68){opacity:.4282;transform:translate(74.3139vw,-10px) scale(.4324);animation:fall-68 26s -16s linear infinite}@keyframes fall-68{56.355%{transform:translate(64.6592vw,56.355vh) scale(.4324)}to{transform:translate(69.48655vw,99vh) scale(.4324)}}.snow:nth-child(69){opacity:.8464;transform:translate(76.0924vw,-10px) scale(.4279);animation:fall-69 12s -23s linear infinite}@keyframes fall-69{60.82%{transform:translate(78.2312vw,60.82vh) scale(.4279)}to{transform:translate(77.1618vw,99vh) scale(.4279)}}.snow:nth-child(70){opacity:.4632;transform:translate(71.9739vw,-10px) scale(.2427);animation:fall-70 26s -22s linear infinite}@keyframes fall-70{49.885%{transform:translate(70.8223vw,49.885vh) scale(.2427)}to{transform:translate(71.3981vw,99vh) scale(.2427)}}.snow:nth-child(71){opacity:1.8326;transform:translate(6.0911vw,-10px) scale(.8508);animation:fall-71 26s -1s linear infinite}@keyframes fall-71{42.761%{transform:translate(-2.0047vw,42.761vh) scale(.8508)}to{transform:translate(2.0432vw,99vh) scale(.8508)}}.snow:nth-child(72){opacity:.5914;transform:translate(78.4947vw,-10px) scale(.5516);animation:fall-72 14s -11s linear infinite}@keyframes fall-72{41.555%{transform:translate(79.779vw,41.555vh) scale(.5516)}to{transform:translate(79.13685vw,99vh) scale(.5516)}}.snow:nth-child(73){opacity:1.1922;transform:translate(71.6651vw,-10px) scale(.0284);animation:fall-73 28s -16s linear infinite}@keyframes fall-73{65.338%{transform:translate(76.8297vw,65.338vh) scale(.0284)}to{transform:translate(74.2474vw,99vh) scale(.0284)}}.snow:nth-child(74){opacity:.491;transform:translate(23.0366vw,-10px) scale(.0417);animation:fall-74 24s -1s linear infinite}@keyframes fall-74{36.92%{transform:translate(19.746vw,36.92vh) scale(.0417)}to{transform:translate(21.3913vw,99vh) scale(.0417)}}.snow:nth-child(75){opacity:1.8282;transform:translate(32.7621vw,-10px) scale(.4145);animation:fall-75 26s -25s linear infinite}@keyframes fall-75{61.206%{transform:translate(35.4933vw,61.206vh) scale(.4145)}to{transform:translate(34.1277vw,99vh) scale(.4145)}}.snow:nth-child(76){opacity:.9866;transform:translate(76.2642vw,-10px) scale(.9058);animation:fall-76 10s -24s linear infinite}@keyframes fall-76{43.64%{transform:translate(83.8307vw,43.64vh) scale(.9058)}to{transform:translate(80.04745vw,99vh) scale(.9058)}}.snow:nth-child(77){opacity:.3;transform:translate(21.2247vw,-10px) scale(.0602);animation:fall-77 26s -1s linear infinite}@keyframes fall-77{57.549%{transform:translate(28.6857vw,57.549vh) scale(.0602)}to{transform:translate(24.9552vw,99vh) scale(.0602)}}.snow:nth-child(78){opacity:.3614;transform:translate(92.323vw,-10px) scale(.7208);animation:fall-78 28s -5s linear infinite}@keyframes fall-78{77.655%{transform:translate(96.102vw,77.655vh) scale(.7208)}to{transform:translate(94.2125vw,99vh) scale(.7208)}}.snow:nth-child(79){opacity:.6966;transform:translate(18.0225vw,-10px) scale(.1782);animation:fall-79 27s -21s linear infinite}@keyframes fall-79{32.826%{transform:translate(24.3566vw,32.826vh) scale(.1782)}to{transform:translate(21.18955vw,99vh) scale(.1782)}}.snow:nth-child(80){opacity:1.7184;transform:translate(26.3963vw,-10px) scale(.5912);animation:fall-80 28s -3s linear infinite}@keyframes fall-80{37.678%{transform:translate(27.9288vw,37.678vh) scale(.5912)}to{transform:translate(27.16255vw,99vh) scale(.5912)}}.snow:nth-child(81){opacity:1.2874;transform:translate(70.2876vw,-10px) scale(.9818);animation:fall-81 10s -14s linear infinite}@keyframes fall-81{73.461%{transform:translate(60.767vw,73.461vh) scale(.9818)}to{transform:translate(65.5273vw,99vh) scale(.9818)}}.snow:nth-child(82){opacity:1.653;transform:translate(96.3705vw,-10px) scale(.4209);animation:fall-82 28s -21s linear infinite}@keyframes fall-82{45.109%{transform:translate(93.4228vw,45.109vh) scale(.4209)}to{transform:translate(94.89665vw,99vh) scale(.4209)}}.snow:nth-child(83){opacity:1.703;transform:translate(23.9082vw,-10px) scale(.2668);animation:fall-83 29s -8s linear infinite}@keyframes fall-83{69.719%{transform:translate(32.5658vw,69.719vh) scale(.2668)}to{transform:translate(28.237vw,99vh) scale(.2668)}}.snow:nth-child(84){opacity:.7394;transform:translate(10.9591vw,-10px) scale(.6573);animation:fall-84 26s -18s linear infinite}@keyframes fall-84{39.083%{transform:translate(1.0719vw,39.083vh) scale(.6573)}to{transform:translate(6.0155vw,99vh) scale(.6573)}}.snow:nth-child(85){opacity:1.7394;transform:translate(63.1816vw,-10px) scale(.8941);animation:fall-85 21s -13s linear infinite}@keyframes fall-85{67.8%{transform:translate(59.2272vw,67.8vh) scale(.8941)}to{transform:translate(61.2044vw,99vh) scale(.8941)}}.snow:nth-child(86){opacity:.981;transform:translate(61.8525vw,-10px) scale(.1641);animation:fall-86 26s -2s linear infinite}@keyframes fall-86{59.873%{transform:translate(59.7107vw,59.873vh) scale(.1641)}to{transform:translate(60.7816vw,99vh) scale(.1641)}}.snow:nth-child(87){opacity:1.576;transform:translate(91.0489vw,-10px) scale(.1434);animation:fall-87 24s -6s linear infinite}@keyframes fall-87{35.954%{transform:translate(95.4503vw,35.954vh) scale(.1434)}to{transform:translate(93.2496vw,99vh) scale(.1434)}}.snow:nth-child(88){opacity:1.3674;transform:translate(55.8618vw,-10px) scale(.8245);animation:fall-88 14s -19s linear infinite}@keyframes fall-88{53.265%{transform:translate(54.0284vw,53.265vh) scale(.8245)}to{transform:translate(54.9451vw,99vh) scale(.8245)}}.snow:nth-child(89){opacity:1.3868;transform:translate(58.1866vw,-10px) scale(.5509);animation:fall-89 27s -2s linear infinite}@keyframes fall-89{38.514%{transform:translate(55.575vw,38.514vh) scale(.5509)}to{transform:translate(56.8808vw,99vh) scale(.5509)}}.snow:nth-child(90){opacity:.7672;transform:translate(38.8341vw,-10px) scale(.0532);animation:fall-90 12s -5s linear infinite}@keyframes fall-90{71.822%{transform:translate(48.0606vw,71.822vh) scale(.0532)}to{transform:translate(43.44735vw,99vh) scale(.0532)}}.snow:nth-child(91){opacity:1.5722;transform:translate(87.8629vw,-10px) scale(.7461);animation:fall-91 10s -19s linear infinite}@keyframes fall-91{31.951%{transform:translate(84.9924vw,31.951vh) scale(.7461)}to{transform:translate(86.42765vw,99vh) scale(.7461)}}.snow:nth-child(92){opacity:1.118;transform:translate(98.7241vw,-10px) scale(.5287);animation:fall-92 15s -19s linear infinite}@keyframes fall-92{35.183%{transform:translate(89.9858vw,35.183vh) scale(.5287)}to{transform:translate(94.35495vw,99vh) scale(.5287)}}.snow:nth-child(93){opacity:.7564;transform:translate(2.8173vw,-10px) scale(.8163);animation:fall-93 29s -7s linear infinite}@keyframes fall-93{75.75%{transform:translate(2.2391vw,75.75vh) scale(.8163)}to{transform:translate(2.5282vw,99vh) scale(.8163)}}.snow:nth-child(94){opacity:1.9886;transform:translate(56.9224vw,-10px) scale(.9588);animation:fall-94 19s -23s linear infinite}@keyframes fall-94{73.66%{transform:translate(52.7158vw,73.66vh) scale(.9588)}to{transform:translate(54.8191vw,99vh) scale(.9588)}}.snow:nth-child(95){opacity:.9028;transform:translate(15.8343vw,-10px) scale(.3551);animation:fall-95 24s -1s linear infinite}@keyframes fall-95{55.493%{transform:translate(15.7756vw,55.493vh) scale(.3551)}to{transform:translate(15.80495vw,99vh) scale(.3551)}}.snow:nth-child(96){opacity:1.079;transform:translate(27.0108vw,-10px) scale(.3969);animation:fall-96 28s -13s linear infinite}@keyframes fall-96{40.191%{transform:translate(19.1363vw,40.191vh) scale(.3969)}to{transform:translate(23.07355vw,99vh) scale(.3969)}}.snow:nth-child(97){opacity:.665;transform:translate(11.5108vw,-10px) scale(.7275);animation:fall-97 27s -22s linear infinite}@keyframes fall-97{74.806%{transform:translate(16.1426vw,74.806vh) scale(.7275)}to{transform:translate(13.8267vw,99vh) scale(.7275)}}.snow:nth-child(98){opacity:.2732;transform:translate(43.4151vw,-10px) scale(.7705);animation:fall-98 19s -9s linear infinite}@keyframes fall-98{77.21%{transform:translate(50.7654vw,77.21vh) scale(.7705)}to{transform:translate(47.09025vw,99vh) scale(.7705)}}.snow:nth-child(99){opacity:1.6964;transform:translate(96.5482vw,-10px) scale(.1725);animation:fall-99 10s -6s linear infinite}@keyframes fall-99{74.798%{transform:translate(102.8522vw,74.798vh) scale(.1725)}to{transform:translate(99.7002vw,99vh) scale(.1725)}}.snow:nth-child(100){opacity:.3948;transform:translate(39.6185vw,-10px) scale(.2995);animation:fall-100 10s -10s linear infinite}@keyframes fall-100{33.124%{transform:translate(46.6981vw,33.124vh) scale(.2995)}to{transform:translate(43.1583vw,99vh) scale(.2995)}}.snow:nth-child(101){opacity:1.7538;transform:translate(17.0121vw,-10px) scale(.8748);animation:fall-101 29s -15s linear infinite}@keyframes fall-101{61.102%{transform:translate(15.3765vw,61.102vh) scale(.8748)}to{transform:translate(16.1943vw,99vh) scale(.8748)}}.snow:nth-child(102){opacity:.0162;transform:translate(87.6459vw,-10px) scale(.0195);animation:fall-102 21s -4s linear infinite}@keyframes fall-102{68.585%{transform:translate(87.9177vw,68.585vh) scale(.0195)}to{transform:translate(87.7818vw,99vh) scale(.0195)}}.snow:nth-child(103){opacity:.316;transform:translate(28.0887vw,-10px) scale(.4953);animation:fall-103 11s -24s linear infinite}@keyframes fall-103{64.527%{transform:translate(35.2686vw,64.527vh) scale(.4953)}to{transform:translate(31.67865vw,99vh) scale(.4953)}}.snow:nth-child(104){opacity:1.5228;transform:translate(19.1022vw,-10px) scale(.4905);animation:fall-104 18s -14s linear infinite}@keyframes fall-104{58.672%{transform:translate(19.2732vw,58.672vh) scale(.4905)}to{transform:translate(19.1877vw,99vh) scale(.4905)}}.snow:nth-child(105){opacity:.913;transform:translate(41.9666vw,-10px) scale(.6809);animation:fall-105 30s -16s linear infinite}@keyframes fall-105{68.954%{transform:translate(45.2181vw,68.954vh) scale(.6809)}to{transform:translate(43.59235vw,99vh) scale(.6809)}}.snow:nth-child(106){opacity:.8794;transform:translate(77.2628vw,-10px) scale(.4394);animation:fall-106 27s -9s linear infinite}@keyframes fall-106{61.149%{transform:translate(74.2489vw,61.149vh) scale(.4394)}to{transform:translate(75.75585vw,99vh) scale(.4394)}}.snow:nth-child(107){opacity:1.1898;transform:translate(55.6098vw,-10px) scale(.3865);animation:fall-107 18s -8s linear infinite}@keyframes fall-107{78.904%{transform:translate(63.9911vw,78.904vh) scale(.3865)}to{transform:translate(59.80045vw,99vh) scale(.3865)}}.snow:nth-child(108){opacity:.439;transform:translate(28.5991vw,-10px) scale(.0146);animation:fall-108 18s -17s linear infinite}@keyframes fall-108{46.41%{transform:translate(22.5631vw,46.41vh) scale(.0146)}to{transform:translate(25.5811vw,99vh) scale(.0146)}}.snow:nth-child(109){opacity:1.2818;transform:translate(19.3909vw,-10px) scale(.0939);animation:fall-109 24s -7s linear infinite}@keyframes fall-109{74.309%{transform:translate(28.4253vw,74.309vh) scale(.0939)}to{transform:translate(23.9081vw,99vh) scale(.0939)}}.snow:nth-child(110){opacity:1.0152;transform:translate(59.8428vw,-10px) scale(.3581);animation:fall-110 20s -8s linear infinite}@keyframes fall-110{57.336%{transform:translate(69.2105vw,57.336vh) scale(.3581)}to{transform:translate(64.52665vw,99vh) scale(.3581)}}.snow:nth-child(111){opacity:.711;transform:translate(18.8409vw,-10px) scale(.7971);animation:fall-111 13s -23s linear infinite}@keyframes fall-111{51.427%{transform:translate(16.5757vw,51.427vh) scale(.7971)}to{transform:translate(17.7083vw,99vh) scale(.7971)}}.snow:nth-child(112){opacity:1.457;transform:translate(20.5098vw,-10px) scale(.1271);animation:fall-112 29s -21s linear infinite}@keyframes fall-112{49.339%{transform:translate(28.9147vw,49.339vh) scale(.1271)}to{transform:translate(24.71225vw,99vh) scale(.1271)}}.snow:nth-child(113){opacity:.3182;transform:translate(74.9239vw,-10px) scale(.0147);animation:fall-113 18s -13s linear infinite}@keyframes fall-113{33.83%{transform:translate(66.8077vw,33.83vh) scale(.0147)}to{transform:translate(70.8658vw,99vh) scale(.0147)}}.snow:nth-child(114){opacity:.2828;transform:translate(39.5832vw,-10px) scale(.1658);animation:fall-114 25s -28s linear infinite}@keyframes fall-114{77.449%{transform:translate(32.0035vw,77.449vh) scale(.1658)}to{transform:translate(35.79335vw,99vh) scale(.1658)}}.snow:nth-child(115){opacity:.4894;transform:translate(19.4916vw,-10px) scale(.148);animation:fall-115 25s -1s linear infinite}@keyframes fall-115{46.352%{transform:translate(25.7426vw,46.352vh) scale(.148)}to{transform:translate(22.6171vw,99vh) scale(.148)}}.snow:nth-child(116){opacity:1.991;transform:translate(40.9203vw,-10px) scale(.3897);animation:fall-116 12s -8s linear infinite}@keyframes fall-116{77.159%{transform:translate(45.5321vw,77.159vh) scale(.3897)}to{transform:translate(43.2262vw,99vh) scale(.3897)}}.snow:nth-child(117){opacity:.266;transform:translate(.1477vw,-10px) scale(.9838);animation:fall-117 12s -25s linear infinite}@keyframes fall-117{79.437%{transform:translate(3.9377vw,79.437vh) scale(.9838)}to{transform:translate(2.0427vw,99vh) scale(.9838)}}.snow:nth-child(118){opacity:.6066;transform:translate(27.2408vw,-10px) scale(.5845);animation:fall-118 30s -2s linear infinite}@keyframes fall-118{54.502%{transform:translate(31.968vw,54.502vh) scale(.5845)}to{transform:translate(29.6044vw,99vh) scale(.5845)}}.snow:nth-child(119){opacity:1.8506;transform:translate(80.2161vw,-10px) scale(.407);animation:fall-119 29s -27s linear infinite}@keyframes fall-119{75.755%{transform:translate(85.8461vw,75.755vh) scale(.407)}to{transform:translate(83.0311vw,99vh) scale(.407)}}.snow:nth-child(120){opacity:.4674;transform:translate(85.0893vw,-10px) scale(.79);animation:fall-120 27s -22s linear infinite}@keyframes fall-120{63.573%{transform:translate(88.3909vw,63.573vh) scale(.79)}to{transform:translate(86.7401vw,99vh) scale(.79)}}.snow:nth-child(121){opacity:1.9578;transform:translate(53.1553vw,-10px) scale(.5897);animation:fall-121 14s -23s linear infinite}@keyframes fall-121{75.525%{transform:translate(58.5239vw,75.525vh) scale(.5897)}to{transform:translate(55.8396vw,99vh) scale(.5897)}}.snow:nth-child(122){opacity:.7754;transform:translate(94.4846vw,-10px) scale(.7166);animation:fall-122 26s -16s linear infinite}@keyframes fall-122{54.188%{transform:translate(100.2156vw,54.188vh) scale(.7166)}to{transform:translate(97.3501vw,99vh) scale(.7166)}}.snow:nth-child(123){opacity:1.5888;transform:translate(91.5856vw,-10px) scale(.2566);animation:fall-123 10s -28s linear infinite}@keyframes fall-123{78.482%{transform:translate(90.6522vw,78.482vh) scale(.2566)}to{transform:translate(91.1189vw,99vh) scale(.2566)}}.snow:nth-child(124){opacity:.0056;transform:translate(24.4144vw,-10px) scale(.8456);animation:fall-124 12s -19s linear infinite}@keyframes fall-124{65.152%{transform:translate(18.2925vw,65.152vh) scale(.8456)}to{transform:translate(21.35345vw,99vh) scale(.8456)}}.snow:nth-child(125){opacity:.9318;transform:translate(73.4473vw,-10px) scale(.2153);animation:fall-125 14s -18s linear infinite}@keyframes fall-125{41.37%{transform:translate(82.8591vw,41.37vh) scale(.2153)}to{transform:translate(78.1532vw,99vh) scale(.2153)}}.snow:nth-child(126){opacity:1.7738;transform:translate(9.3881vw,-10px) scale(.229);animation:fall-126 19s -13s linear infinite}@keyframes fall-126{60.306%{transform:translate(9.5842vw,60.306vh) scale(.229)}to{transform:translate(9.48615vw,99vh) scale(.229)}}.snow:nth-child(127){opacity:.7002;transform:translate(1.1969vw,-10px) scale(.0989);animation:fall-127 28s -28s linear infinite}@keyframes fall-127{60.754%{transform:translate(-5.3365vw,60.754vh) scale(.0989)}to{transform:translate(-2.0698vw,99vh) scale(.0989)}}.snow:nth-child(128){opacity:.8522;transform:translate(79.87vw,-10px) scale(.7399);animation:fall-128 16s -6s linear infinite}@keyframes fall-128{56.567%{transform:translate(85.2671vw,56.567vh) scale(.7399)}to{transform:translate(82.56855vw,99vh) scale(.7399)}}.snow:nth-child(129){opacity:1.261;transform:translate(96.9778vw,-10px) scale(.0938);animation:fall-129 11s -19s linear infinite}@keyframes fall-129{61.554%{transform:translate(90.3859vw,61.554vh) scale(.0938)}to{transform:translate(93.68185vw,99vh) scale(.0938)}}.snow:nth-child(130){opacity:.3316;transform:translate(50.063vw,-10px) scale(.9647);animation:fall-130 24s -20s linear infinite}@keyframes fall-130{38.723%{transform:translate(57.8351vw,38.723vh) scale(.9647)}to{transform:translate(53.94905vw,99vh) scale(.9647)}}.snow:nth-child(131){opacity:1.2962;transform:translate(85.0811vw,-10px) scale(.298);animation:fall-131 18s -1s linear infinite}@keyframes fall-131{55.127%{transform:translate(92.5508vw,55.127vh) scale(.298)}to{transform:translate(88.81595vw,99vh) scale(.298)}}.snow:nth-child(132){opacity:.9876;transform:translate(.0506vw,-10px) scale(.5247);animation:fall-132 29s -22s linear infinite}@keyframes fall-132{46.231%{transform:translate(-4.2532vw,46.231vh) scale(.5247)}to{transform:translate(-2.1013vw,99vh) scale(.5247)}}.snow:nth-child(133){opacity:1.4522;transform:translate(74.9607vw,-10px) scale(.3117);animation:fall-133 29s -27s linear infinite}@keyframes fall-133{33.069%{transform:translate(72.0944vw,33.069vh) scale(.3117)}to{transform:translate(73.52755vw,99vh) scale(.3117)}}.snow:nth-child(134){opacity:1.0746;transform:translate(61.0646vw,-10px) scale(.582);animation:fall-134 12s -7s linear infinite}@keyframes fall-134{68.609%{transform:translate(56.4109vw,68.609vh) scale(.582)}to{transform:translate(58.73775vw,99vh) scale(.582)}}.snow:nth-child(135){opacity:1.0848;transform:translate(48.2057vw,-10px) scale(.5368);animation:fall-135 19s -15s linear infinite}@keyframes fall-135{30.702%{transform:translate(46.8472vw,30.702vh) scale(.5368)}to{transform:translate(47.52645vw,99vh) scale(.5368)}}.snow:nth-child(136){opacity:1.5768;transform:translate(97.9973vw,-10px) scale(.4603);animation:fall-136 29s -19s linear infinite}@keyframes fall-136{55.613%{transform:translate(96.217vw,55.613vh) scale(.4603)}to{transform:translate(97.10715vw,99vh) scale(.4603)}}.snow:nth-child(137){opacity:1.6594;transform:translate(67.2408vw,-10px) scale(.5389);animation:fall-137 15s -22s linear infinite}@keyframes fall-137{71.884%{transform:translate(77.1427vw,71.884vh) scale(.5389)}to{transform:translate(72.19175vw,99vh) scale(.5389)}}.snow:nth-child(138){opacity:1.2006;transform:translate(68.333vw,-10px) scale(.3367);animation:fall-138 19s -29s linear infinite}@keyframes fall-138{78.78%{transform:translate(58.5052vw,78.78vh) scale(.3367)}to{transform:translate(63.4191vw,99vh) scale(.3367)}}.snow:nth-child(139){opacity:.625;transform:translate(72.8229vw,-10px) scale(.0083);animation:fall-139 22s -21s linear infinite}@keyframes fall-139{49.184%{transform:translate(71.9677vw,49.184vh) scale(.0083)}to{transform:translate(72.3953vw,99vh) scale(.0083)}}.snow:nth-child(140){opacity:1.2626;transform:translate(56.8182vw,-10px) scale(.9697);animation:fall-140 14s -7s linear infinite}@keyframes fall-140{36.939%{transform:translate(56.8076vw,36.939vh) scale(.9697)}to{transform:translate(56.8129vw,99vh) scale(.9697)}}.snow:nth-child(141){opacity:.0306;transform:translate(63.6814vw,-10px) scale(.5552);animation:fall-141 24s -5s linear infinite}@keyframes fall-141{30.833%{transform:translate(73.1993vw,30.833vh) scale(.5552)}to{transform:translate(68.44035vw,99vh) scale(.5552)}}.snow:nth-child(142){opacity:.771;transform:translate(27.7688vw,-10px) scale(.9384);animation:fall-142 26s -17s linear infinite}@keyframes fall-142{31.508%{transform:translate(19.4367vw,31.508vh) scale(.9384)}to{transform:translate(23.60275vw,99vh) scale(.9384)}}.snow:nth-child(143){opacity:1.2284;transform:translate(22.6957vw,-10px) scale(.2506);animation:fall-143 23s -2s linear infinite}@keyframes fall-143{36.233%{transform:translate(31.693vw,36.233vh) scale(.2506)}to{transform:translate(27.19435vw,99vh) scale(.2506)}}.snow:nth-child(144){opacity:1.1246;transform:translate(36.1514vw,-10px) scale(.6012);animation:fall-144 20s -14s linear infinite}@keyframes fall-144{51.708%{transform:translate(38.8495vw,51.708vh) scale(.6012)}to{transform:translate(37.50045vw,99vh) scale(.6012)}}.snow:nth-child(145){opacity:1.9502;transform:translate(93.128vw,-10px) scale(.6783);animation:fall-145 27s -27s linear infinite}@keyframes fall-145{30.175%{transform:translate(95.0588vw,30.175vh) scale(.6783)}to{transform:translate(94.0934vw,99vh) scale(.6783)}}.snow:nth-child(146){opacity:1.1982;transform:translate(31.3517vw,-10px) scale(.3126);animation:fall-146 17s -3s linear infinite}@keyframes fall-146{59.883%{transform:translate(38.7487vw,59.883vh) scale(.3126)}to{transform:translate(35.0502vw,99vh) scale(.3126)}}.snow:nth-child(147){opacity:1.2394;transform:translate(19.5842vw,-10px) scale(.8307);animation:fall-147 26s -7s linear infinite}@keyframes fall-147{38.699%{transform:translate(24.3767vw,38.699vh) scale(.8307)}to{transform:translate(21.98045vw,99vh) scale(.8307)}}.snow:nth-child(148){opacity:.1988;transform:translate(23.2885vw,-10px) scale(.7258);animation:fall-148 13s -3s linear infinite}@keyframes fall-148{44.494%{transform:translate(29.2456vw,44.494vh) scale(.7258)}to{transform:translate(26.26705vw,99vh) scale(.7258)}}.snow:nth-child(149){opacity:1.2586;transform:translate(27.5976vw,-10px) scale(.124);animation:fall-149 17s -22s linear infinite}@keyframes fall-149{70.833%{transform:translate(31.0784vw,70.833vh) scale(.124)}to{transform:translate(29.338vw,99vh) scale(.124)}}.snow:nth-child(150){opacity:1.8584;transform:translate(61.9033vw,-10px) scale(.1004);animation:fall-150 18s -9s linear infinite}@keyframes fall-150{44.652%{transform:translate(67.4715vw,44.652vh) scale(.1004)}to{transform:translate(64.6874vw,99vh) scale(.1004)}}.snow:nth-child(151){opacity:1.2158;transform:translate(84.7921vw,-10px) scale(.9096);animation:fall-151 26s -16s linear infinite}@keyframes fall-151{49.969%{transform:translate(76.2346vw,49.969vh) scale(.9096)}to{transform:translate(80.51335vw,99vh) scale(.9096)}}.snow:nth-child(152){opacity:1.3984;transform:translate(13.4335vw,-10px) scale(.0057);animation:fall-152 26s -11s linear infinite}@keyframes fall-152{59.861%{transform:translate(19.849vw,59.861vh) scale(.0057)}to{transform:translate(16.64125vw,99vh) scale(.0057)}}.snow:nth-child(153){opacity:.1788;transform:translate(23.843vw,-10px) scale(.2682);animation:fall-153 21s -21s linear infinite}@keyframes fall-153{40.96%{transform:translate(16.1133vw,40.96vh) scale(.2682)}to{transform:translate(19.97815vw,99vh) scale(.2682)}}.snow:nth-child(154){opacity:1.5966;transform:translate(29.8865vw,-10px) scale(.8796);animation:fall-154 22s -4s linear infinite}@keyframes fall-154{63.156%{transform:translate(26.9127vw,63.156vh) scale(.8796)}to{transform:translate(28.3996vw,99vh) scale(.8796)}}.snow:nth-child(155){opacity:1.2336;transform:translate(91.7186vw,-10px) scale(.775);animation:fall-155 17s -25s linear infinite}@keyframes fall-155{34.722%{transform:translate(88.4048vw,34.722vh) scale(.775)}to{transform:translate(90.0617vw,99vh) scale(.775)}}.snow:nth-child(156){opacity:1.7968;transform:translate(4.2562vw,-10px) scale(.2503);animation:fall-156 12s -26s linear infinite}@keyframes fall-156{30.532%{transform:translate(11.9332vw,30.532vh) scale(.2503)}to{transform:translate(8.0947vw,99vh) scale(.2503)}}.snow:nth-child(157){opacity:1.368;transform:translate(42.4989vw,-10px) scale(.8645);animation:fall-157 27s -10s linear infinite}@keyframes fall-157{75.042%{transform:translate(50.2336vw,75.042vh) scale(.8645)}to{transform:translate(46.36625vw,99vh) scale(.8645)}}.snow:nth-child(158){opacity:1.7624;transform:translate(39.3047vw,-10px) scale(.5101);animation:fall-158 23s -5s linear infinite}@keyframes fall-158{34.514%{transform:translate(46.6389vw,34.514vh) scale(.5101)}to{transform:translate(42.9718vw,99vh) scale(.5101)}}.snow:nth-child(159){opacity:1.119;transform:translate(76.764vw,-10px) scale(.8147);animation:fall-159 30s -5s linear infinite}@keyframes fall-159{42.57%{transform:translate(76.2911vw,42.57vh) scale(.8147)}to{transform:translate(76.52755vw,99vh) scale(.8147)}}.snow:nth-child(160){opacity:1.219;transform:translate(97.3599vw,-10px) scale(.5264);animation:fall-160 19s -28s linear infinite}@keyframes fall-160{55.015%{transform:translate(103.1369vw,55.015vh) scale(.5264)}to{transform:translate(100.2484vw,99vh) scale(.5264)}}.snow:nth-child(161){opacity:.6382;transform:translate(9.8511vw,-10px) scale(.7433);animation:fall-161 24s -1s linear infinite}@keyframes fall-161{56.64%{transform:translate(15.5249vw,56.64vh) scale(.7433)}to{transform:translate(12.688vw,99vh) scale(.7433)}}.snow:nth-child(162){opacity:1.955;transform:translate(39.5354vw,-10px) scale(.5912);animation:fall-162 14s -15s linear infinite}@keyframes fall-162{48.157%{transform:translate(45.9879vw,48.157vh) scale(.5912)}to{transform:translate(42.76165vw,99vh) scale(.5912)}}.snow:nth-child(163){opacity:.4072;transform:translate(33.8956vw,-10px) scale(.8438);animation:fall-163 30s -14s linear infinite}@keyframes fall-163{46.46%{transform:translate(31.1203vw,46.46vh) scale(.8438)}to{transform:translate(32.50795vw,99vh) scale(.8438)}}.snow:nth-child(164){opacity:.282;transform:translate(94.7624vw,-10px) scale(.3118);animation:fall-164 28s -5s linear infinite}@keyframes fall-164{64.517%{transform:translate(100.829vw,64.517vh) scale(.3118)}to{transform:translate(97.7957vw,99vh) scale(.3118)}}.snow:nth-child(165){opacity:.452;transform:translate(94.6873vw,-10px) scale(.3225);animation:fall-165 30s -26s linear infinite}@keyframes fall-165{33.985%{transform:translate(84.7606vw,33.985vh) scale(.3225)}to{transform:translate(89.72395vw,99vh) scale(.3225)}}.snow:nth-child(166){opacity:1.627;transform:translate(87.961vw,-10px) scale(.551);animation:fall-166 29s -17s linear infinite}@keyframes fall-166{54.53%{transform:translate(89.9179vw,54.53vh) scale(.551)}to{transform:translate(88.93945vw,99vh) scale(.551)}}.snow:nth-child(167){opacity:.3388;transform:translate(71.1978vw,-10px) scale(.3333);animation:fall-167 21s -21s linear infinite}@keyframes fall-167{77.612%{transform:translate(67.6195vw,77.612vh) scale(.3333)}to{transform:translate(69.40865vw,99vh) scale(.3333)}}.snow:nth-child(168){opacity:.2916;transform:translate(7.8961vw,-10px) scale(.1353);animation:fall-168 22s -4s linear infinite}@keyframes fall-168{59.287%{transform:translate(2.2922vw,59.287vh) scale(.1353)}to{transform:translate(5.09415vw,99vh) scale(.1353)}}.snow:nth-child(169){opacity:1.8118;transform:translate(89.2915vw,-10px) scale(.2957);animation:fall-169 24s -6s linear infinite}@keyframes fall-169{51.238%{transform:translate(98.2223vw,51.238vh) scale(.2957)}to{transform:translate(93.7569vw,99vh) scale(.2957)}}.snow:nth-child(170){opacity:.9638;transform:translate(17.6366vw,-10px) scale(.5325);animation:fall-170 18s -8s linear infinite}@keyframes fall-170{74.988%{transform:translate(22.5889vw,74.988vh) scale(.5325)}to{transform:translate(20.11275vw,99vh) scale(.5325)}}.snow:nth-child(171){opacity:.643;transform:translate(2.5807vw,-10px) scale(.8203);animation:fall-171 14s -16s linear infinite}@keyframes fall-171{37.901%{transform:translate(-5.8094vw,37.901vh) scale(.8203)}to{transform:translate(-1.61435vw,99vh) scale(.8203)}}.snow:nth-child(172){opacity:1.5144;transform:translate(11.9669vw,-10px) scale(.7424);animation:fall-172 23s -16s linear infinite}@keyframes fall-172{35.178%{transform:translate(5.428vw,35.178vh) scale(.7424)}to{transform:translate(8.69745vw,99vh) scale(.7424)}}.snow:nth-child(173){opacity:.4922;transform:translate(29.3371vw,-10px) scale(.5146);animation:fall-173 10s -11s linear infinite}@keyframes fall-173{72.213%{transform:translate(28.396vw,72.213vh) scale(.5146)}to{transform:translate(28.86655vw,99vh) scale(.5146)}}.snow:nth-child(174){opacity:1.8386;transform:translate(33.2768vw,-10px) scale(.3445);animation:fall-174 10s -12s linear infinite}@keyframes fall-174{77.633%{transform:translate(25.3416vw,77.633vh) scale(.3445)}to{transform:translate(29.3092vw,99vh) scale(.3445)}}.snow:nth-child(175){opacity:1.5994;transform:translate(52.8006vw,-10px) scale(.5698);animation:fall-175 19s -2s linear infinite}@keyframes fall-175{64.165%{transform:translate(59.9575vw,64.165vh) scale(.5698)}to{transform:translate(56.37905vw,99vh) scale(.5698)}}.snow:nth-child(176){opacity:.79;transform:translate(61.9916vw,-10px) scale(.0134);animation:fall-176 25s -17s linear infinite}@keyframes fall-176{65.158%{transform:translate(59.6891vw,65.158vh) scale(.0134)}to{transform:translate(60.84035vw,99vh) scale(.0134)}}.snow:nth-child(177){opacity:.8538;transform:translate(10.789vw,-10px) scale(.2677);animation:fall-177 12s -8s linear infinite}@keyframes fall-177{69.602%{transform:translate(19.6563vw,69.602vh) scale(.2677)}to{transform:translate(15.22265vw,99vh) scale(.2677)}}.snow:nth-child(178){opacity:.8704;transform:translate(26.1841vw,-10px) scale(.815);animation:fall-178 27s -5s linear infinite}@keyframes fall-178{32.029%{transform:translate(31.6727vw,32.029vh) scale(.815)}to{transform:translate(28.9284vw,99vh) scale(.815)}}.snow:nth-child(179){opacity:1.3758;transform:translate(3.9855vw,-10px) scale(.687);animation:fall-179 13s -17s linear infinite}@keyframes fall-179{33.221%{transform:translate(7.2135vw,33.221vh) scale(.687)}to{transform:translate(5.5995vw,99vh) scale(.687)}}.snow:nth-child(180){opacity:1.7064;transform:translate(62.0628vw,-10px) scale(.9367);animation:fall-180 28s -24s linear infinite}@keyframes fall-180{39.43%{transform:translate(63.3088vw,39.43vh) scale(.9367)}to{transform:translate(62.6858vw,99vh) scale(.9367)}}.snow:nth-child(181){opacity:.9294;transform:translate(36.5617vw,-10px) scale(.0341);animation:fall-181 12s -16s linear infinite}@keyframes fall-181{58.008%{transform:translate(34.1019vw,58.008vh) scale(.0341)}to{transform:translate(35.3318vw,99vh) scale(.0341)}}.snow:nth-child(182){opacity:.76;transform:translate(53.9425vw,-10px) scale(.612);animation:fall-182 12s -24s linear infinite}@keyframes fall-182{50.69%{transform:translate(50.2107vw,50.69vh) scale(.612)}to{transform:translate(52.0766vw,99vh) scale(.612)}}.snow:nth-child(183){opacity:1.707;transform:translate(82.7649vw,-10px) scale(.2901);animation:fall-183 20s -10s linear infinite}@keyframes fall-183{40.781%{transform:translate(77.0304vw,40.781vh) scale(.2901)}to{transform:translate(79.89765vw,99vh) scale(.2901)}}.snow:nth-child(184){opacity:.5698;transform:translate(53.7554vw,-10px) scale(.1207);animation:fall-184 26s -1s linear infinite}@keyframes fall-184{64.407%{transform:translate(62.256vw,64.407vh) scale(.1207)}to{transform:translate(58.0057vw,99vh) scale(.1207)}}.snow:nth-child(185){opacity:.8366;transform:translate(21.73vw,-10px) scale(.6968);animation:fall-185 18s -30s linear infinite}@keyframes fall-185{74.025%{transform:translate(28.9821vw,74.025vh) scale(.6968)}to{transform:translate(25.35605vw,99vh) scale(.6968)}}.snow:nth-child(186){opacity:.2808;transform:translate(77.3502vw,-10px) scale(.2294);animation:fall-186 15s -24s linear infinite}@keyframes fall-186{36.725%{transform:translate(75.5031vw,36.725vh) scale(.2294)}to{transform:translate(76.42665vw,99vh) scale(.2294)}}.snow:nth-child(187){opacity:1.2226;transform:translate(37.0778vw,-10px) scale(.3881);animation:fall-187 19s -2s linear infinite}@keyframes fall-187{64.32%{transform:translate(33.4725vw,64.32vh) scale(.3881)}to{transform:translate(35.27515vw,99vh) scale(.3881)}}.snow:nth-child(188){opacity:.0846;transform:translate(.1412vw,-10px) scale(.017);animation:fall-188 12s -30s linear infinite}@keyframes fall-188{67.696%{transform:translate(9.2527vw,67.696vh) scale(.017)}to{transform:translate(4.69695vw,99vh) scale(.017)}}.snow:nth-child(189){opacity:1.7798;transform:translate(32.2303vw,-10px) scale(.4516);animation:fall-189 27s -13s linear infinite}@keyframes fall-189{52.711%{transform:translate(26.0181vw,52.711vh) scale(.4516)}to{transform:translate(29.1242vw,99vh) scale(.4516)}}.snow:nth-child(190){opacity:1.6268;transform:translate(76.3205vw,-10px) scale(.5902);animation:fall-190 26s -16s linear infinite}@keyframes fall-190{72.62%{transform:translate(67.2498vw,72.62vh) scale(.5902)}to{transform:translate(71.78515vw,99vh) scale(.5902)}}.snow:nth-child(191){opacity:.868;transform:translate(61.5085vw,-10px) scale(.5333);animation:fall-191 26s -6s linear infinite}@keyframes fall-191{71.516%{transform:translate(60.3512vw,71.516vh) scale(.5333)}to{transform:translate(60.92985vw,99vh) scale(.5333)}}.snow:nth-child(192){opacity:.348;transform:translate(26.0973vw,-10px) scale(.7786);animation:fall-192 25s -11s linear infinite}@keyframes fall-192{46.981%{transform:translate(31.9744vw,46.981vh) scale(.7786)}to{transform:translate(29.03585vw,99vh) scale(.7786)}}.snow:nth-child(193){opacity:.5186;transform:translate(5.8145vw,-10px) scale(.9249);animation:fall-193 17s -2s linear infinite}@keyframes fall-193{36.819%{transform:translate(-4.0964vw,36.819vh) scale(.9249)}to{transform:translate(.85905vw,99vh) scale(.9249)}}.snow:nth-child(194){opacity:.5972;transform:translate(24.2468vw,-10px) scale(.124);animation:fall-194 29s -3s linear infinite}@keyframes fall-194{42.979%{transform:translate(32.7447vw,42.979vh) scale(.124)}to{transform:translate(28.49575vw,99vh) scale(.124)}}.snow:nth-child(195){opacity:1.1138;transform:translate(13.6358vw,-10px) scale(.1392);animation:fall-195 19s -4s linear infinite}@keyframes fall-195{75.305%{transform:translate(20.3392vw,75.305vh) scale(.1392)}to{transform:translate(16.9875vw,99vh) scale(.1392)}}.snow:nth-child(196){opacity:.3272;transform:translate(4.3159vw,-10px) scale(.6777);animation:fall-196 30s -23s linear infinite}@keyframes fall-196{43.754%{transform:translate(6.8067vw,43.754vh) scale(.6777)}to{transform:translate(5.5613vw,99vh) scale(.6777)}}.snow:nth-child(197){opacity:.6278;transform:translate(11.5791vw,-10px) scale(.308);animation:fall-197 10s -28s linear infinite}@keyframes fall-197{57.477%{transform:translate(6.1134vw,57.477vh) scale(.308)}to{transform:translate(8.84625vw,99vh) scale(.308)}}.snow:nth-child(198){opacity:1.1236;transform:translate(67.689vw,-10px) scale(.8413);animation:fall-198 17s -2s linear infinite}@keyframes fall-198{78.081%{transform:translate(72.5509vw,78.081vh) scale(.8413)}to{transform:translate(70.11995vw,99vh) scale(.8413)}}.snow:nth-child(199){opacity:.4742;transform:translate(50.1442vw,-10px) scale(.7835);animation:fall-199 12s -16s linear infinite}@keyframes fall-199{55.396%{transform:translate(60.0558vw,55.396vh) scale(.7835)}to{transform:translate(55.1vw,99vh) scale(.7835)}}.snow:nth-child(200){opacity:.3972;transform:translate(60.3109vw,-10px) scale(.9554);animation:fall-200 19s -5s linear infinite}@keyframes fall-200{76.255%{transform:translate(65.6501vw,76.255vh) scale(.9554)}to{transform:translate(62.9805vw,99vh) scale(.9554)}}.snow:nth-child(201){opacity:1.688;transform:translate(98.7182vw,-10px) scale(.5619);animation:fall-201 12s -11s linear infinite}@keyframes fall-201{56.021%{transform:translate(96.5032vw,56.021vh) scale(.5619)}to{transform:translate(97.6107vw,99vh) scale(.5619)}}.snow:nth-child(202){opacity:1.1944;transform:translate(21.8381vw,-10px) scale(.8016);animation:fall-202 10s -19s linear infinite}@keyframes fall-202{63.485%{transform:translate(28.0376vw,63.485vh) scale(.8016)}to{transform:translate(24.93785vw,99vh) scale(.8016)}}.snow:nth-child(203){opacity:.8044;transform:translate(49.6229vw,-10px) scale(.5658);animation:fall-203 16s -3s linear infinite}@keyframes fall-203{35.573%{transform:translate(42.1127vw,35.573vh) scale(.5658)}to{transform:translate(45.8678vw,99vh) scale(.5658)}}.snow:nth-child(204){opacity:.0762;transform:translate(74.0806vw,-10px) scale(.8431);animation:fall-204 21s -15s linear infinite}@keyframes fall-204{76.945%{transform:translate(71.6022vw,76.945vh) scale(.8431)}to{transform:translate(72.8414vw,99vh) scale(.8431)}}.snow:nth-child(205){opacity:1.6734;transform:translate(6.7771vw,-10px) scale(.0809);animation:fall-205 15s -27s linear infinite}@keyframes fall-205{32.315%{transform:translate(-1.6343vw,32.315vh) scale(.0809)}to{transform:translate(2.5714vw,99vh) scale(.0809)}}.snow:nth-child(206){opacity:.0952;transform:translate(93.0206vw,-10px) scale(.0965);animation:fall-206 12s -18s linear infinite}@keyframes fall-206{32.129%{transform:translate(89.6447vw,32.129vh) scale(.0965)}to{transform:translate(91.33265vw,99vh) scale(.0965)}}.snow:nth-child(207){opacity:1.4196;transform:translate(39.3686vw,-10px) scale(.0774);animation:fall-207 27s -6s linear infinite}@keyframes fall-207{53.908%{transform:translate(31.8379vw,53.908vh) scale(.0774)}to{transform:translate(35.60325vw,99vh) scale(.0774)}}.snow:nth-child(208){opacity:1.5942;transform:translate(18.657vw,-10px) scale(.9828);animation:fall-208 27s -5s linear infinite}@keyframes fall-208{30.531%{transform:translate(17.4639vw,30.531vh) scale(.9828)}to{transform:translate(18.06045vw,99vh) scale(.9828)}}.snow:nth-child(209){opacity:1.1962;transform:translate(86.077vw,-10px) scale(.7022);animation:fall-209 10s -12s linear infinite}@keyframes fall-209{50.909%{transform:translate(95.7394vw,50.909vh) scale(.7022)}to{transform:translate(90.9082vw,99vh) scale(.7022)}}.snow:nth-child(210){opacity:.7566;transform:translate(26.6499vw,-10px) scale(.027);animation:fall-210 11s -8s linear infinite}@keyframes fall-210{54.581%{transform:translate(26.4491vw,54.581vh) scale(.027)}to{transform:translate(26.5495vw,99vh) scale(.027)}}.snow:nth-child(211){opacity:1.7712;transform:translate(2.1004vw,-10px) scale(.781);animation:fall-211 15s -4s linear infinite}@keyframes fall-211{37.55%{transform:translate(5.2789vw,37.55vh) scale(.781)}to{transform:translate(3.68965vw,99vh) scale(.781)}}.snow:nth-child(212){opacity:1.7198;transform:translate(61.1378vw,-10px) scale(.3994);animation:fall-212 27s -9s linear infinite}@keyframes fall-212{46.506%{transform:translate(63.1087vw,46.506vh) scale(.3994)}to{transform:translate(62.12325vw,99vh) scale(.3994)}}.snow:nth-child(213){opacity:1.3696;transform:translate(67.2342vw,-10px) scale(.4405);animation:fall-213 25s -24s linear infinite}@keyframes fall-213{73.894%{transform:translate(58.8524vw,73.894vh) scale(.4405)}to{transform:translate(63.0433vw,99vh) scale(.4405)}}.snow:nth-child(214){opacity:1.8892;transform:translate(29.9378vw,-10px) scale(.0473);animation:fall-214 29s -5s linear infinite}@keyframes fall-214{34.616%{transform:translate(25.9485vw,34.616vh) scale(.0473)}to{transform:translate(27.94315vw,99vh) scale(.0473)}}.snow:nth-child(215){opacity:1.0488;transform:translate(46.5668vw,-10px) scale(.943);animation:fall-215 14s -2s linear infinite}@keyframes fall-215{74.91%{transform:translate(37.6062vw,74.91vh) scale(.943)}to{transform:translate(42.0865vw,99vh) scale(.943)}}.snow:nth-child(216){opacity:1.0588;transform:translate(29.016vw,-10px) scale(.1359);animation:fall-216 10s -18s linear infinite}@keyframes fall-216{44.056%{transform:translate(32.7452vw,44.056vh) scale(.1359)}to{transform:translate(30.8806vw,99vh) scale(.1359)}}.snow:nth-child(217){opacity:1.1324;transform:translate(5.3439vw,-10px) scale(.7461);animation:fall-217 13s -8s linear infinite}@keyframes fall-217{32.819%{transform:translate(-.2921vw,32.819vh) scale(.7461)}to{transform:translate(2.5259vw,99vh) scale(.7461)}}.snow:nth-child(218){opacity:1.3162;transform:translate(59.4529vw,-10px) scale(.325);animation:fall-218 25s -14s linear infinite}@keyframes fall-218{69.112%{transform:translate(51.1803vw,69.112vh) scale(.325)}to{transform:translate(55.3166vw,99vh) scale(.325)}}.snow:nth-child(219){opacity:1.549;transform:translate(48.2713vw,-10px) scale(.3659);animation:fall-219 30s -9s linear infinite}@keyframes fall-219{32.335%{transform:translate(45.5251vw,32.335vh) scale(.3659)}to{transform:translate(46.8982vw,99vh) scale(.3659)}}.snow:nth-child(220){opacity:.8328;transform:translate(65.2332vw,-10px) scale(.461);animation:fall-220 13s -29s linear infinite}@keyframes fall-220{77.665%{transform:translate(68.732vw,77.665vh) scale(.461)}to{transform:translate(66.9826vw,99vh) scale(.461)}}.snow:nth-child(221){opacity:.3272;transform:translate(59.0561vw,-10px) scale(.1637);animation:fall-221 10s -4s linear infinite}@keyframes fall-221{63.478%{transform:translate(56.5615vw,63.478vh) scale(.1637)}to{transform:translate(57.8088vw,99vh) scale(.1637)}}.snow:nth-child(222){opacity:1.3248;transform:translate(27.8011vw,-10px) scale(.8139);animation:fall-222 23s -10s linear infinite}@keyframes fall-222{65.132%{transform:translate(32.6349vw,65.132vh) scale(.8139)}to{transform:translate(30.218vw,99vh) scale(.8139)}}.snow:nth-child(223){opacity:.7618;transform:translate(93.7725vw,-10px) scale(.8488);animation:fall-223 17s -22s linear infinite}@keyframes fall-223{76.897%{transform:translate(86.2235vw,76.897vh) scale(.8488)}to{transform:translate(89.998vw,99vh) scale(.8488)}}.snow:nth-child(224){opacity:1.8998;transform:translate(54.9304vw,-10px) scale(.3525);animation:fall-224 15s -27s linear infinite}@keyframes fall-224{30.301%{transform:translate(46.1801vw,30.301vh) scale(.3525)}to{transform:translate(50.55525vw,99vh) scale(.3525)}}.snow:nth-child(225){opacity:1.83;transform:translate(22.9518vw,-10px) scale(.5006);animation:fall-225 19s -22s linear infinite}@keyframes fall-225{47.016%{transform:translate(16.8077vw,47.016vh) scale(.5006)}to{transform:translate(19.87975vw,99vh) scale(.5006)}}.snow:nth-child(226){opacity:.8474;transform:translate(71.9386vw,-10px) scale(.1266);animation:fall-226 11s -3s linear infinite}@keyframes fall-226{71.465%{transform:translate(63.1711vw,71.465vh) scale(.1266)}to{transform:translate(67.55485vw,99vh) scale(.1266)}}.snow:nth-child(227){opacity:1.8624;transform:translate(68.7809vw,-10px) scale(.5818);animation:fall-227 15s -27s linear infinite}@keyframes fall-227{78.906%{transform:translate(63.2801vw,78.906vh) scale(.5818)}to{transform:translate(66.0305vw,99vh) scale(.5818)}}.snow:nth-child(228){opacity:.6464;transform:translate(65.9021vw,-10px) scale(.7442);animation:fall-228 18s -23s linear infinite}@keyframes fall-228{33.16%{transform:translate(61.0151vw,33.16vh) scale(.7442)}to{transform:translate(63.4586vw,99vh) scale(.7442)}}.snow:nth-child(229){opacity:1.3592;transform:translate(50.0603vw,-10px) scale(.0799);animation:fall-229 15s -12s linear infinite}@keyframes fall-229{43.203%{transform:translate(43.6507vw,43.203vh) scale(.0799)}to{transform:translate(46.8555vw,99vh) scale(.0799)}}.snow:nth-child(230){opacity:.1054;transform:translate(32.5721vw,-10px) scale(.3202);animation:fall-230 27s -29s linear infinite}@keyframes fall-230{45.72%{transform:translate(25.6183vw,45.72vh) scale(.3202)}to{transform:translate(29.0952vw,99vh) scale(.3202)}}.snow:nth-child(231){opacity:.9264;transform:translate(47.0136vw,-10px) scale(.8583);animation:fall-231 25s -24s linear infinite}@keyframes fall-231{37.958%{transform:translate(43.7128vw,37.958vh) scale(.8583)}to{transform:translate(45.3632vw,99vh) scale(.8583)}}.snow:nth-child(232){opacity:1.5896;transform:translate(62.337vw,-10px) scale(.5462);animation:fall-232 22s -23s linear infinite}@keyframes fall-232{78.56%{transform:translate(63.3359vw,78.56vh) scale(.5462)}to{transform:translate(62.83645vw,99vh) scale(.5462)}}.snow:nth-child(233){opacity:1.2074;transform:translate(98.1151vw,-10px) scale(.1707);animation:fall-233 23s -13s linear infinite}@keyframes fall-233{79.224%{transform:translate(100.5299vw,79.224vh) scale(.1707)}to{transform:translate(99.3225vw,99vh) scale(.1707)}}.snow:nth-child(234){opacity:.3308;transform:translate(31.0854vw,-10px) scale(.608);animation:fall-234 12s -5s linear infinite}@keyframes fall-234{46.442%{transform:translate(21.9377vw,46.442vh) scale(.608)}to{transform:translate(26.51155vw,99vh) scale(.608)}}.snow:nth-child(235){opacity:.3418;transform:translate(26.0182vw,-10px) scale(.3856);animation:fall-235 21s -4s linear infinite}@keyframes fall-235{53.995%{transform:translate(23.5086vw,53.995vh) scale(.3856)}to{transform:translate(24.7634vw,99vh) scale(.3856)}}.snow:nth-child(236){opacity:1.2664;transform:translate(68.0027vw,-10px) scale(.4573);animation:fall-236 16s -18s linear infinite}@keyframes fall-236{70.495%{transform:translate(75.2856vw,70.495vh) scale(.4573)}to{transform:translate(71.64415vw,99vh) scale(.4573)}}.snow:nth-child(237){opacity:1.68;transform:translate(94.0842vw,-10px) scale(.137);animation:fall-237 10s -5s linear infinite}@keyframes fall-237{65.39%{transform:translate(97.1391vw,65.39vh) scale(.137)}to{transform:translate(95.61165vw,99vh) scale(.137)}}.snow:nth-child(238){opacity:.184;transform:translate(52.9766vw,-10px) scale(.873);animation:fall-238 23s -18s linear infinite}@keyframes fall-238{75.813%{transform:translate(43.8364vw,75.813vh) scale(.873)}to{transform:translate(48.4065vw,99vh) scale(.873)}}.snow:nth-child(239){opacity:.584;transform:translate(87.493vw,-10px) scale(.6452);animation:fall-239 14s -18s linear infinite}@keyframes fall-239{45.176%{transform:translate(96.8744vw,45.176vh) scale(.6452)}to{transform:translate(92.1837vw,99vh) scale(.6452)}}.snow:nth-child(240){opacity:1.9344;transform:translate(39.0954vw,-10px) scale(.3679);animation:fall-240 13s -10s linear infinite}@keyframes fall-240{69.908%{transform:translate(33.4823vw,69.908vh) scale(.3679)}to{transform:translate(36.28885vw,99vh) scale(.3679)}}.snow:nth-child(241){opacity:1.3616;transform:translate(63.8764vw,-10px) scale(.5845);animation:fall-241 17s -25s linear infinite}@keyframes fall-241{63.515%{transform:translate(64.3947vw,63.515vh) scale(.5845)}to{transform:translate(64.13555vw,99vh) scale(.5845)}}.snow:nth-child(242){opacity:.471;transform:translate(57.7763vw,-10px) scale(.9102);animation:fall-242 19s -19s linear infinite}@keyframes fall-242{67.534%{transform:translate(66.3178vw,67.534vh) scale(.9102)}to{transform:translate(62.04705vw,99vh) scale(.9102)}}.snow:nth-child(243){opacity:.0758;transform:translate(29.0667vw,-10px) scale(.6421);animation:fall-243 13s -22s linear infinite}@keyframes fall-243{40.79%{transform:translate(23.8815vw,40.79vh) scale(.6421)}to{transform:translate(26.4741vw,99vh) scale(.6421)}}.snow:nth-child(244){opacity:.2318;transform:translate(35.8406vw,-10px) scale(.3886);animation:fall-244 20s -10s linear infinite}@keyframes fall-244{46.781%{transform:translate(28.6913vw,46.781vh) scale(.3886)}to{transform:translate(32.26595vw,99vh) scale(.3886)}}.snow:nth-child(245){opacity:.4946;transform:translate(62.8823vw,-10px) scale(.5847);animation:fall-245 19s -23s linear infinite}@keyframes fall-245{74.676%{transform:translate(63.9433vw,74.676vh) scale(.5847)}to{transform:translate(63.4128vw,99vh) scale(.5847)}}.snow:nth-child(246){opacity:.287;transform:translate(3.3822vw,-10px) scale(.8978);animation:fall-246 19s -8s linear infinite}@keyframes fall-246{57.974%{transform:translate(4.1575vw,57.974vh) scale(.8978)}to{transform:translate(3.76985vw,99vh) scale(.8978)}}.snow:nth-child(247){opacity:1.3668;transform:translate(85.0402vw,-10px) scale(.6333);animation:fall-247 23s -4s linear infinite}@keyframes fall-247{70.235%{transform:translate(76.3746vw,70.235vh) scale(.6333)}to{transform:translate(80.7074vw,99vh) scale(.6333)}}.snow:nth-child(248){opacity:.6814;transform:translate(70.8558vw,-10px) scale(.473);animation:fall-248 17s -5s linear infinite}@keyframes fall-248{66.779%{transform:translate(71.3245vw,66.779vh) scale(.473)}to{transform:translate(71.09015vw,99vh) scale(.473)}}.snow:nth-child(249){opacity:.1386;transform:translate(36.1127vw,-10px) scale(.7564);animation:fall-249 16s -9s linear infinite}@keyframes fall-249{70.228%{transform:translate(42.4534vw,70.228vh) scale(.7564)}to{transform:translate(39.28305vw,99vh) scale(.7564)}}.snow:nth-child(250){opacity:.2034;transform:translate(82.8704vw,-10px) scale(.435);animation:fall-250 21s -18s linear infinite}@keyframes fall-250{47.751%{transform:translate(82.0908vw,47.751vh) scale(.435)}to{transform:translate(82.4806vw,99vh) scale(.435)}}.snow:nth-child(251){opacity:1.6658;transform:translate(80.5383vw,-10px) scale(.4127);animation:fall-251 21s -23s linear infinite}@keyframes fall-251{62.313%{transform:translate(73.6966vw,62.313vh) scale(.4127)}to{transform:translate(77.11745vw,99vh) scale(.4127)}}.snow:nth-child(252){opacity:1.9516;transform:translate(85.9641vw,-10px) scale(.57);animation:fall-252 16s -7s linear infinite}@keyframes fall-252{78.131%{transform:translate(77.7999vw,78.131vh) scale(.57)}to{transform:translate(81.882vw,99vh) scale(.57)}}.snow:nth-child(253){opacity:.9206;transform:translate(32.1822vw,-10px) scale(.6516);animation:fall-253 28s -20s linear infinite}@keyframes fall-253{68.998%{transform:translate(22.2522vw,68.998vh) scale(.6516)}to{transform:translate(27.2172vw,99vh) scale(.6516)}}.snow:nth-child(254){opacity:1.8956;transform:translate(50.5539vw,-10px) scale(.1876);animation:fall-254 19s -9s linear infinite}@keyframes fall-254{37.006%{transform:translate(48.5604vw,37.006vh) scale(.1876)}to{transform:translate(49.55715vw,99vh) scale(.1876)}}.snow:nth-child(255){opacity:1.8616;transform:translate(44.9517vw,-10px) scale(.9548);animation:fall-255 27s -19s linear infinite}@keyframes fall-255{49.88%{transform:translate(36.0597vw,49.88vh) scale(.9548)}to{transform:translate(40.5057vw,99vh) scale(.9548)}}.snow:nth-child(256){opacity:1.9988;transform:translate(46.7871vw,-10px) scale(.0097);animation:fall-256 10s -26s linear infinite}@keyframes fall-256{62.211%{transform:translate(37.3717vw,62.211vh) scale(.0097)}to{transform:translate(42.0794vw,99vh) scale(.0097)}}.snow:nth-child(257){opacity:1.4702;transform:translate(31.5805vw,-10px) scale(.5534);animation:fall-257 26s -6s linear infinite}@keyframes fall-257{68.697%{transform:translate(30.0748vw,68.697vh) scale(.5534)}to{transform:translate(30.82765vw,99vh) scale(.5534)}}.snow:nth-child(258){opacity:1.6878;transform:translate(45.1192vw,-10px) scale(.7462);animation:fall-258 27s -3s linear infinite}@keyframes fall-258{55.881%{transform:translate(50.14vw,55.881vh) scale(.7462)}to{transform:translate(47.6296vw,99vh) scale(.7462)}}.snow:nth-child(259){opacity:1.983;transform:translate(56.0101vw,-10px) scale(.8439);animation:fall-259 11s -24s linear infinite}@keyframes fall-259{67.193%{transform:translate(56.0571vw,67.193vh) scale(.8439)}to{transform:translate(56.0336vw,99vh) scale(.8439)}}.snow:nth-child(260){opacity:.23;transform:translate(12.6052vw,-10px) scale(.9434);animation:fall-260 24s -26s linear infinite}@keyframes fall-260{78.29%{transform:translate(8.5102vw,78.29vh) scale(.9434)}to{transform:translate(10.5577vw,99vh) scale(.9434)}}.snow:nth-child(261){opacity:.3098;transform:translate(81.0115vw,-10px) scale(.7883);animation:fall-261 14s -16s linear infinite}@keyframes fall-261{43.58%{transform:translate(76.6585vw,43.58vh) scale(.7883)}to{transform:translate(78.835vw,99vh) scale(.7883)}}.snow:nth-child(262){opacity:.6602;transform:translate(30.3161vw,-10px) scale(.894);animation:fall-262 16s -7s linear infinite}@keyframes fall-262{79.524%{transform:translate(28.3779vw,79.524vh) scale(.894)}to{transform:translate(29.347vw,99vh) scale(.894)}}.snow:nth-child(263){opacity:1.4102;transform:translate(68.6775vw,-10px) scale(.475);animation:fall-263 20s -2s linear infinite}@keyframes fall-263{36.912%{transform:translate(62.0004vw,36.912vh) scale(.475)}to{transform:translate(65.33895vw,99vh) scale(.475)}}.snow:nth-child(264){opacity:1.3064;transform:translate(12.6244vw,-10px) scale(.296);animation:fall-264 12s -25s linear infinite}@keyframes fall-264{63.515%{transform:translate(9.2143vw,63.515vh) scale(.296)}to{transform:translate(10.91935vw,99vh) scale(.296)}}.snow:nth-child(265){opacity:.7232;transform:translate(70.9626vw,-10px) scale(.9397);animation:fall-265 10s -1s linear infinite}@keyframes fall-265{44.821%{transform:translate(62.9399vw,44.821vh) scale(.9397)}to{transform:translate(66.95125vw,99vh) scale(.9397)}}.snow:nth-child(266){opacity:.7694;transform:translate(82.1763vw,-10px) scale(.9265);animation:fall-266 29s -4s linear infinite}@keyframes fall-266{63.127%{transform:translate(91.449vw,63.127vh) scale(.9265)}to{transform:translate(86.81265vw,99vh) scale(.9265)}}.snow:nth-child(267){opacity:1.8116;transform:translate(83.8731vw,-10px) scale(.7082);animation:fall-267 15s -5s linear infinite}@keyframes fall-267{47.385%{transform:translate(92.4414vw,47.385vh) scale(.7082)}to{transform:translate(88.15725vw,99vh) scale(.7082)}}.snow:nth-child(268){opacity:1.9034;transform:translate(34.5613vw,-10px) scale(.6658);animation:fall-268 12s -16s linear infinite}@keyframes fall-268{70.79%{transform:translate(42.0552vw,70.79vh) scale(.6658)}to{transform:translate(38.30825vw,99vh) scale(.6658)}}.snow:nth-child(269){opacity:.4738;transform:translate(24.8127vw,-10px) scale(.5758);animation:fall-269 18s -3s linear infinite}@keyframes fall-269{67.134%{transform:translate(27.6273vw,67.134vh) scale(.5758)}to{transform:translate(26.22vw,99vh) scale(.5758)}}.snow:nth-child(270){opacity:.1026;transform:translate(59.6962vw,-10px) scale(.1527);animation:fall-270 24s -22s linear infinite}@keyframes fall-270{34.294%{transform:translate(62.6392vw,34.294vh) scale(.1527)}to{transform:translate(61.1677vw,99vh) scale(.1527)}}.snow:nth-child(271){opacity:.426;transform:translate(17.9465vw,-10px) scale(.7811);animation:fall-271 29s -29s linear infinite}@keyframes fall-271{79.43%{transform:translate(21.4937vw,79.43vh) scale(.7811)}to{transform:translate(19.7201vw,99vh) scale(.7811)}}.snow:nth-child(272){opacity:.0184;transform:translate(92.6237vw,-10px) scale(.3692);animation:fall-272 27s -2s linear infinite}@keyframes fall-272{40.969%{transform:translate(88.9241vw,40.969vh) scale(.3692)}to{transform:translate(90.7739vw,99vh) scale(.3692)}}.snow:nth-child(273){opacity:1.3856;transform:translate(90.8932vw,-10px) scale(.9612);animation:fall-273 25s -6s linear infinite}@keyframes fall-273{54.916%{transform:translate(99.8679vw,54.916vh) scale(.9612)}to{transform:translate(95.38055vw,99vh) scale(.9612)}}.snow:nth-child(274){opacity:1.8898;transform:translate(22.1118vw,-10px) scale(.7402);animation:fall-274 30s -8s linear infinite}@keyframes fall-274{43.258%{transform:translate(14.7677vw,43.258vh) scale(.7402)}to{transform:translate(18.43975vw,99vh) scale(.7402)}}.snow:nth-child(275){opacity:1.1052;transform:translate(8.108vw,-10px) scale(.4689);animation:fall-275 20s -1s linear infinite}@keyframes fall-275{77.64%{transform:translate(14.108vw,77.64vh) scale(.4689)}to{transform:translate(11.108vw,99vh) scale(.4689)}}.snow:nth-child(276){opacity:.3378;transform:translate(27.1812vw,-10px) scale(.932);animation:fall-276 23s -11s linear infinite}@keyframes fall-276{79.182%{transform:translate(29.9605vw,79.182vh) scale(.932)}to{transform:translate(28.57085vw,99vh) scale(.932)}}.snow:nth-child(277){opacity:.7926;transform:translate(65.2514vw,-10px) scale(.0392);animation:fall-277 21s -8s linear infinite}@keyframes fall-277{64.714%{transform:translate(70.8424vw,64.714vh) scale(.0392)}to{transform:translate(68.0469vw,99vh) scale(.0392)}}.snow:nth-child(278){opacity:.0404;transform:translate(7.4863vw,-10px) scale(.4694);animation:fall-278 29s -22s linear infinite}@keyframes fall-278{59.998%{transform:translate(17.0979vw,59.998vh) scale(.4694)}to{transform:translate(12.2921vw,99vh) scale(.4694)}}.snow:nth-child(279){opacity:.687;transform:translate(51.7101vw,-10px) scale(.4905);animation:fall-279 18s -23s linear infinite}@keyframes fall-279{58.27%{transform:translate(58.8418vw,58.27vh) scale(.4905)}to{transform:translate(55.27595vw,99vh) scale(.4905)}}.snow:nth-child(280){opacity:1.5766;transform:translate(31.1027vw,-10px) scale(.1827);animation:fall-280 22s -12s linear infinite}@keyframes fall-280{46.043%{transform:translate(28.7842vw,46.043vh) scale(.1827)}to{transform:translate(29.94345vw,99vh) scale(.1827)}}.snow:nth-child(281){opacity:1.3822;transform:translate(9.5115vw,-10px) scale(.5887);animation:fall-281 13s -25s linear infinite}@keyframes fall-281{48.711%{transform:translate(14.5707vw,48.711vh) scale(.5887)}to{transform:translate(12.0411vw,99vh) scale(.5887)}}.snow:nth-child(282){opacity:.6506;transform:translate(89.8414vw,-10px) scale(.7776);animation:fall-282 16s -15s linear infinite}@keyframes fall-282{55.56%{transform:translate(95.7045vw,55.56vh) scale(.7776)}to{transform:translate(92.77295vw,99vh) scale(.7776)}}.snow:nth-child(283){opacity:.8408;transform:translate(41.4901vw,-10px) scale(.7991);animation:fall-283 17s -16s linear infinite}@keyframes fall-283{36.823%{transform:translate(51.416vw,36.823vh) scale(.7991)}to{transform:translate(46.45305vw,99vh) scale(.7991)}}.snow:nth-child(284){opacity:1.7614;transform:translate(33.4379vw,-10px) scale(.3299);animation:fall-284 14s -5s linear infinite}@keyframes fall-284{55.237%{transform:translate(42.0208vw,55.237vh) scale(.3299)}to{transform:translate(37.72935vw,99vh) scale(.3299)}}.snow:nth-child(285){opacity:.4358;transform:translate(.9907vw,-10px) scale(.0131);animation:fall-285 22s -29s linear infinite}@keyframes fall-285{75.629%{transform:translate(9.9966vw,75.629vh) scale(.0131)}to{transform:translate(5.49365vw,99vh) scale(.0131)}}.snow:nth-child(286){opacity:1.6538;transform:translate(74.546vw,-10px) scale(.5621);animation:fall-286 15s -19s linear infinite}@keyframes fall-286{64.969%{transform:translate(78.4917vw,64.969vh) scale(.5621)}to{transform:translate(76.51885vw,99vh) scale(.5621)}}.snow:nth-child(287){opacity:.6812;transform:translate(15.6591vw,-10px) scale(.0283);animation:fall-287 22s -25s linear infinite}@keyframes fall-287{69.434%{transform:translate(15.3177vw,69.434vh) scale(.0283)}to{transform:translate(15.4884vw,99vh) scale(.0283)}}.snow:nth-child(288){opacity:1.4718;transform:translate(12.7282vw,-10px) scale(.3793);animation:fall-288 11s -8s linear infinite}@keyframes fall-288{42.743%{transform:translate(18.0181vw,42.743vh) scale(.3793)}to{transform:translate(15.37315vw,99vh) scale(.3793)}}.snow:nth-child(289){opacity:.475;transform:translate(53.1277vw,-10px) scale(.7507);animation:fall-289 23s -13s linear infinite}@keyframes fall-289{35.967%{transform:translate(60.622vw,35.967vh) scale(.7507)}to{transform:translate(56.87485vw,99vh) scale(.7507)}}.snow:nth-child(290){opacity:1.6306;transform:translate(9.1395vw,-10px) scale(.4902);animation:fall-290 26s -13s linear infinite}@keyframes fall-290{40.247%{transform:translate(3.0583vw,40.247vh) scale(.4902)}to{transform:translate(6.0989vw,99vh) scale(.4902)}}.snow:nth-child(291){opacity:.7552;transform:translate(56.9153vw,-10px) scale(.8098);animation:fall-291 28s -26s linear infinite}@keyframes fall-291{54.129%{transform:translate(59.5487vw,54.129vh) scale(.8098)}to{transform:translate(58.232vw,99vh) scale(.8098)}}.snow:nth-child(292){opacity:1.2176;transform:translate(90.2318vw,-10px) scale(.6127);animation:fall-292 19s -27s linear infinite}@keyframes fall-292{76.999%{transform:translate(89.1283vw,76.999vh) scale(.6127)}to{transform:translate(89.68005vw,99vh) scale(.6127)}}.snow:nth-child(293){opacity:1.7692;transform:translate(47.5932vw,-10px) scale(.7824);animation:fall-293 23s -29s linear infinite}@keyframes fall-293{40.806%{transform:translate(48.2511vw,40.806vh) scale(.7824)}to{transform:translate(47.92215vw,99vh) scale(.7824)}}.snow:nth-child(294){opacity:.075;transform:translate(66.628vw,-10px) scale(.303);animation:fall-294 23s -10s linear infinite}@keyframes fall-294{44.924%{transform:translate(75.5267vw,44.924vh) scale(.303)}to{transform:translate(71.07735vw,99vh) scale(.303)}}.snow:nth-child(295){opacity:1.4224;transform:translate(90.5197vw,-10px) scale(.0991);animation:fall-295 12s -12s linear infinite}@keyframes fall-295{79.594%{transform:translate(97.9962vw,79.594vh) scale(.0991)}to{transform:translate(94.25795vw,99vh) scale(.0991)}}.snow:nth-child(296){opacity:.2412;transform:translate(90.3484vw,-10px) scale(.4619);animation:fall-296 13s -8s linear infinite}@keyframes fall-296{33.198%{transform:translate(96.2479vw,33.198vh) scale(.4619)}to{transform:translate(93.29815vw,99vh) scale(.4619)}}.snow:nth-child(297){opacity:1.6118;transform:translate(83.5952vw,-10px) scale(.8179);animation:fall-297 12s -27s linear infinite}@keyframes fall-297{41.352%{transform:translate(91.1564vw,41.352vh) scale(.8179)}to{transform:translate(87.3758vw,99vh) scale(.8179)}}.snow:nth-child(298){opacity:.1136;transform:translate(30.047vw,-10px) scale(.6929);animation:fall-298 11s -29s linear infinite}@keyframes fall-298{78.827%{transform:translate(23.8973vw,78.827vh) scale(.6929)}to{transform:translate(26.97215vw,99vh) scale(.6929)}}.snow:nth-child(299){opacity:.6176;transform:translate(72.5816vw,-10px) scale(.3781);animation:fall-299 25s -30s linear infinite}@keyframes fall-299{40.985%{transform:translate(63.3069vw,40.985vh) scale(.3781)}to{transform:translate(67.94425vw,99vh) scale(.3781)}}.snow:nth-child(300){opacity:.5328;transform:translate(56.0923vw,-10px) scale(.3589);animation:fall-300 11s -16s linear infinite}@keyframes fall-300{35.227%{transform:translate(58.8248vw,35.227vh) scale(.3589)}to{transform:translate(57.45855vw,99vh) scale(.3589)}}.snow:nth-child(301){opacity:1.0208;transform:translate(6.7349vw,-10px) scale(.3485);animation:fall-301 22s -17s linear infinite}@keyframes fall-301{62.457%{transform:translate(5.9967vw,62.457vh) scale(.3485)}to{transform:translate(6.3658vw,99vh) scale(.3485)}}.snow:nth-child(302){opacity:.7288;transform:translate(38.904vw,-10px) scale(.7961);animation:fall-302 22s -24s linear infinite}@keyframes fall-302{52.388%{transform:translate(33.2683vw,52.388vh) scale(.7961)}to{transform:translate(36.08615vw,99vh) scale(.7961)}}.snow:nth-child(303){opacity:1.8056;transform:translate(59.8858vw,-10px) scale(.126);animation:fall-303 28s -25s linear infinite}@keyframes fall-303{49.31%{transform:translate(51.4272vw,49.31vh) scale(.126)}to{transform:translate(55.6565vw,99vh) scale(.126)}}.snow:nth-child(304){opacity:.0476;transform:translate(26.5623vw,-10px) scale(.6582);animation:fall-304 14s -19s linear infinite}@keyframes fall-304{69.083%{transform:translate(17.5397vw,69.083vh) scale(.6582)}to{transform:translate(22.051vw,99vh) scale(.6582)}}.snow:nth-child(305){opacity:1.3174;transform:translate(84.2903vw,-10px) scale(.1);animation:fall-305 23s -13s linear infinite}@keyframes fall-305{35.648%{transform:translate(77.6119vw,35.648vh) scale(.1)}to{transform:translate(80.9511vw,99vh) scale(.1)}}.snow:nth-child(306){opacity:.6022;transform:translate(70.3305vw,-10px) scale(.3087);animation:fall-306 21s -30s linear infinite}@keyframes fall-306{42.517%{transform:translate(66.6741vw,42.517vh) scale(.3087)}to{transform:translate(68.5023vw,99vh) scale(.3087)}}.snow:nth-child(307){opacity:1.968;transform:translate(57.8053vw,-10px) scale(.5145);animation:fall-307 20s -3s linear infinite}@keyframes fall-307{64.468%{transform:translate(66.9638vw,64.468vh) scale(.5145)}to{transform:translate(62.38455vw,99vh) scale(.5145)}}.snow:nth-child(308){opacity:1.7166;transform:translate(17.7659vw,-10px) scale(.1228);animation:fall-308 27s -4s linear infinite}@keyframes fall-308{69.332%{transform:translate(15.5409vw,69.332vh) scale(.1228)}to{transform:translate(16.6534vw,99vh) scale(.1228)}}.snow:nth-child(309){opacity:1.374;transform:translate(3.2473vw,-10px) scale(.2563);animation:fall-309 28s -9s linear infinite}@keyframes fall-309{32.005%{transform:translate(-1.7146vw,32.005vh) scale(.2563)}to{transform:translate(.76635vw,99vh) scale(.2563)}}.snow:nth-child(310){opacity:.9224;transform:translate(18.209vw,-10px) scale(.9237);animation:fall-310 24s -24s linear infinite}@keyframes fall-310{54.532%{transform:translate(14.5154vw,54.532vh) scale(.9237)}to{transform:translate(16.3622vw,99vh) scale(.9237)}}.snow:nth-child(311){opacity:.4264;transform:translate(79.3486vw,-10px) scale(.4823);animation:fall-311 24s -11s linear infinite}@keyframes fall-311{35.563%{transform:translate(84.127vw,35.563vh) scale(.4823)}to{transform:translate(81.7378vw,99vh) scale(.4823)}}.snow:nth-child(312){opacity:1.7764;transform:translate(17.7127vw,-10px) scale(.1796);animation:fall-312 10s -5s linear infinite}@keyframes fall-312{55.61%{transform:translate(13.5338vw,55.61vh) scale(.1796)}to{transform:translate(15.62325vw,99vh) scale(.1796)}}.snow:nth-child(313){opacity:1.5666;transform:translate(61.175vw,-10px) scale(.504);animation:fall-313 21s -12s linear infinite}@keyframes fall-313{60.571%{transform:translate(53.0336vw,60.571vh) scale(.504)}to{transform:translate(57.1043vw,99vh) scale(.504)}}.snow:nth-child(314){opacity:1.886;transform:translate(39.6767vw,-10px) scale(.3114);animation:fall-314 12s -12s linear infinite}@keyframes fall-314{47.81%{transform:translate(43.8794vw,47.81vh) scale(.3114)}to{transform:translate(41.77805vw,99vh) scale(.3114)}}.snow:nth-child(315){opacity:1.1198;transform:translate(12.4165vw,-10px) scale(.39);animation:fall-315 11s -22s linear infinite}@keyframes fall-315{58.848%{transform:translate(13.7308vw,58.848vh) scale(.39)}to{transform:translate(13.07365vw,99vh) scale(.39)}}.snow:nth-child(316){opacity:.681;transform:translate(57.3265vw,-10px) scale(.2682);animation:fall-316 22s -4s linear infinite}@keyframes fall-316{70.406%{transform:translate(48.4662vw,70.406vh) scale(.2682)}to{transform:translate(52.89635vw,99vh) scale(.2682)}}.snow:nth-child(317){opacity:1.3984;transform:translate(15.855vw,-10px) scale(.3436);animation:fall-317 11s -18s linear infinite}@keyframes fall-317{51.181%{transform:translate(10.4369vw,51.181vh) scale(.3436)}to{transform:translate(13.14595vw,99vh) scale(.3436)}}.snow:nth-child(318){opacity:.254;transform:translate(46.6257vw,-10px) scale(.377);animation:fall-318 22s -18s linear infinite}@keyframes fall-318{69.472%{transform:translate(44.2847vw,69.472vh) scale(.377)}to{transform:translate(45.4552vw,99vh) scale(.377)}}.snow:nth-child(319){opacity:1.8424;transform:translate(99.6577vw,-10px) scale(.8716);animation:fall-319 26s -29s linear infinite}@keyframes fall-319{51.871%{transform:translate(95.1346vw,51.871vh) scale(.8716)}to{transform:translate(97.39615vw,99vh) scale(.8716)}}.snow:nth-child(320){opacity:1.3166;transform:translate(7.4043vw,-10px) scale(.0046);animation:fall-320 22s -7s linear infinite}@keyframes fall-320{39.371%{transform:translate(-.5846vw,39.371vh) scale(.0046)}to{transform:translate(3.40985vw,99vh) scale(.0046)}}.snow:nth-child(321){opacity:.3418;transform:translate(48.139vw,-10px) scale(.0571);animation:fall-321 26s -9s linear infinite}@keyframes fall-321{53.204%{transform:translate(40.0074vw,53.204vh) scale(.0571)}to{transform:translate(44.0732vw,99vh) scale(.0571)}}.snow:nth-child(322){opacity:1.727;transform:translate(80.1774vw,-10px) scale(.3057);animation:fall-322 24s -24s linear infinite}@keyframes fall-322{61.288%{transform:translate(81.5535vw,61.288vh) scale(.3057)}to{transform:translate(80.86545vw,99vh) scale(.3057)}}.snow:nth-child(323){opacity:.1276;transform:translate(95.8146vw,-10px) scale(.0308);animation:fall-323 22s -24s linear infinite}@keyframes fall-323{37.899%{transform:translate(101.1249vw,37.899vh) scale(.0308)}to{transform:translate(98.46975vw,99vh) scale(.0308)}}.snow:nth-child(324){opacity:.1894;transform:translate(8.4726vw,-10px) scale(.5697);animation:fall-324 28s -20s linear infinite}@keyframes fall-324{31.665%{transform:translate(11.3824vw,31.665vh) scale(.5697)}to{transform:translate(9.9275vw,99vh) scale(.5697)}}.snow:nth-child(325){opacity:1.3946;transform:translate(88.4353vw,-10px) scale(.0202);animation:fall-325 18s -22s linear infinite}@keyframes fall-325{38.26%{transform:translate(80.2128vw,38.26vh) scale(.0202)}to{transform:translate(84.32405vw,99vh) scale(.0202)}}.snow:nth-child(326){opacity:.1818;transform:translate(18.6484vw,-10px) scale(.9491);animation:fall-326 14s -24s linear infinite}@keyframes fall-326{32.589%{transform:translate(23.8155vw,32.589vh) scale(.9491)}to{transform:translate(21.23195vw,99vh) scale(.9491)}}.snow:nth-child(327){opacity:1.0872;transform:translate(50.3501vw,-10px) scale(.0923);animation:fall-327 30s -8s linear infinite}@keyframes fall-327{53.609%{transform:translate(49.0878vw,53.609vh) scale(.0923)}to{transform:translate(49.71895vw,99vh) scale(.0923)}}.snow:nth-child(328){opacity:.7352;transform:translate(60.4963vw,-10px) scale(.2418);animation:fall-328 13s -1s linear infinite}@keyframes fall-328{53.592%{transform:translate(56.7475vw,53.592vh) scale(.2418)}to{transform:translate(58.6219vw,99vh) scale(.2418)}}.snow:nth-child(329){opacity:1.7116;transform:translate(41.7479vw,-10px) scale(.3289);animation:fall-329 26s -16s linear infinite}@keyframes fall-329{79.184%{transform:translate(32.7673vw,79.184vh) scale(.3289)}to{transform:translate(37.2576vw,99vh) scale(.3289)}}.snow:nth-child(330){opacity:1.1206;transform:translate(78.6667vw,-10px) scale(.5202);animation:fall-330 21s -3s linear infinite}@keyframes fall-330{78.574%{transform:translate(81.7042vw,78.574vh) scale(.5202)}to{transform:translate(80.18545vw,99vh) scale(.5202)}}.snow:nth-child(331){opacity:1.1722;transform:translate(55.2476vw,-10px) scale(.9575);animation:fall-331 10s -18s linear infinite}@keyframes fall-331{46.351%{transform:translate(58.0564vw,46.351vh) scale(.9575)}to{transform:translate(56.652vw,99vh) scale(.9575)}}.snow:nth-child(332){opacity:.996;transform:translate(82.2219vw,-10px) scale(.4407);animation:fall-332 27s -3s linear infinite}@keyframes fall-332{41.991%{transform:translate(91.2951vw,41.991vh) scale(.4407)}to{transform:translate(86.7585vw,99vh) scale(.4407)}}.snow:nth-child(333){opacity:1.32;transform:translate(47.1724vw,-10px) scale(.3517);animation:fall-333 13s -10s linear infinite}@keyframes fall-333{42.092%{transform:translate(38.2721vw,42.092vh) scale(.3517)}to{transform:translate(42.72225vw,99vh) scale(.3517)}}.snow:nth-child(334){opacity:1.491;transform:translate(77.5377vw,-10px) scale(.7376);animation:fall-334 10s -27s linear infinite}@keyframes fall-334{34.561%{transform:translate(76.6676vw,34.561vh) scale(.7376)}to{transform:translate(77.10265vw,99vh) scale(.7376)}}.snow:nth-child(335){opacity:1.0482;transform:translate(24.8703vw,-10px) scale(.3272);animation:fall-335 18s -7s linear infinite}@keyframes fall-335{48.297%{transform:translate(19.9112vw,48.297vh) scale(.3272)}to{transform:translate(22.39075vw,99vh) scale(.3272)}}.snow:nth-child(336){opacity:1.0194;transform:translate(28.6316vw,-10px) scale(.8441);animation:fall-336 20s -5s linear infinite}@keyframes fall-336{70.411%{transform:translate(38.2712vw,70.411vh) scale(.8441)}to{transform:translate(33.4514vw,99vh) scale(.8441)}}.snow:nth-child(337){opacity:1.716;transform:translate(24.2195vw,-10px) scale(.84);animation:fall-337 16s -24s linear infinite}@keyframes fall-337{75.265%{transform:translate(21.8845vw,75.265vh) scale(.84)}to{transform:translate(23.052vw,99vh) scale(.84)}}.snow:nth-child(338){opacity:.4512;transform:translate(26.5695vw,-10px) scale(.4345);animation:fall-338 24s -17s linear infinite}@keyframes fall-338{30.486%{transform:translate(28.4353vw,30.486vh) scale(.4345)}to{transform:translate(27.5024vw,99vh) scale(.4345)}}.snow:nth-child(339){opacity:.6896;transform:translate(.0647vw,-10px) scale(.6092);animation:fall-339 17s -8s linear infinite}@keyframes fall-339{77.628%{transform:translate(6.435vw,77.628vh) scale(.6092)}to{transform:translate(3.24985vw,99vh) scale(.6092)}}.snow:nth-child(340){opacity:1.7752;transform:translate(7.2669vw,-10px) scale(.7169);animation:fall-340 30s -20s linear infinite}@keyframes fall-340{68.716%{transform:translate(4.9144vw,68.716vh) scale(.7169)}to{transform:translate(6.09065vw,99vh) scale(.7169)}}.snow:nth-child(341){opacity:.7166;transform:translate(93.2098vw,-10px) scale(.0705);animation:fall-341 23s -22s linear infinite}@keyframes fall-341{78.207%{transform:translate(91.2069vw,78.207vh) scale(.0705)}to{transform:translate(92.20835vw,99vh) scale(.0705)}}.snow:nth-child(342){opacity:1.8732;transform:translate(17.0743vw,-10px) scale(.1028);animation:fall-342 11s -3s linear infinite}@keyframes fall-342{75.311%{transform:translate(16.0518vw,75.311vh) scale(.1028)}to{transform:translate(16.56305vw,99vh) scale(.1028)}}.snow:nth-child(343){opacity:1.2238;transform:translate(5.9569vw,-10px) scale(.9181);animation:fall-343 24s -7s linear infinite}@keyframes fall-343{70.098%{transform:translate(12.2828vw,70.098vh) scale(.9181)}to{transform:translate(9.11985vw,99vh) scale(.9181)}}.snow:nth-child(344){opacity:.2012;transform:translate(13.6875vw,-10px) scale(.3533);animation:fall-344 11s -26s linear infinite}@keyframes fall-344{65.655%{transform:translate(13.4517vw,65.655vh) scale(.3533)}to{transform:translate(13.5696vw,99vh) scale(.3533)}}.snow:nth-child(345){opacity:.5986;transform:translate(74.15vw,-10px) scale(.7382);animation:fall-345 26s -1s linear infinite}@keyframes fall-345{64.242%{transform:translate(69.0809vw,64.242vh) scale(.7382)}to{transform:translate(71.61545vw,99vh) scale(.7382)}}.snow:nth-child(346){opacity:1.2932;transform:translate(90.2152vw,-10px) scale(.2371);animation:fall-346 12s -2s linear infinite}@keyframes fall-346{78.994%{transform:translate(84.322vw,78.994vh) scale(.2371)}to{transform:translate(87.2686vw,99vh) scale(.2371)}}.snow:nth-child(347){opacity:.9226;transform:translate(43.7354vw,-10px) scale(.5599);animation:fall-347 23s -26s linear infinite}@keyframes fall-347{66.669%{transform:translate(53.1065vw,66.669vh) scale(.5599)}to{transform:translate(48.42095vw,99vh) scale(.5599)}}.snow:nth-child(348){opacity:.775;transform:translate(12.0061vw,-10px) scale(.5535);animation:fall-348 22s -24s linear infinite}@keyframes fall-348{38.939%{transform:translate(18.9314vw,38.939vh) scale(.5535)}to{transform:translate(15.46875vw,99vh) scale(.5535)}}.snow:nth-child(349){opacity:.6584;transform:translate(75.4392vw,-10px) scale(.0838);animation:fall-349 22s -23s linear infinite}@keyframes fall-349{34.431%{transform:translate(77.6264vw,34.431vh) scale(.0838)}to{transform:translate(76.5328vw,99vh) scale(.0838)}}.snow:nth-child(350){opacity:1.5666;transform:translate(67.099vw,-10px) scale(.6885);animation:fall-350 21s -22s linear infinite}@keyframes fall-350{54.561%{transform:translate(66.5451vw,54.561vh) scale(.6885)}to{transform:translate(66.82205vw,99vh) scale(.6885)}}.snow:nth-child(351){opacity:1.7102;transform:translate(76.889vw,-10px) scale(.4448);animation:fall-351 26s -27s linear infinite}@keyframes fall-351{76.137%{transform:translate(73.7272vw,76.137vh) scale(.4448)}to{transform:translate(75.3081vw,99vh) scale(.4448)}}.snow:nth-child(352){opacity:.3446;transform:translate(88.911vw,-10px) scale(.7233);animation:fall-352 17s -8s linear infinite}@keyframes fall-352{41.886%{transform:translate(93.6611vw,41.886vh) scale(.7233)}to{transform:translate(91.28605vw,99vh) scale(.7233)}}.snow:nth-child(353){opacity:.7206;transform:translate(67.5989vw,-10px) scale(.4374);animation:fall-353 20s -20s linear infinite}@keyframes fall-353{65.495%{transform:translate(62.7031vw,65.495vh) scale(.4374)}to{transform:translate(65.151vw,99vh) scale(.4374)}}.snow:nth-child(354){opacity:.5516;transform:translate(42.8815vw,-10px) scale(.1144);animation:fall-354 14s -8s linear infinite}@keyframes fall-354{65.487%{transform:translate(33.0093vw,65.487vh) scale(.1144)}to{transform:translate(37.9454vw,99vh) scale(.1144)}}.snow:nth-child(355){opacity:1.5632;transform:translate(19.4821vw,-10px) scale(.7518);animation:fall-355 30s -22s linear infinite}@keyframes fall-355{45.106%{transform:translate(12.3985vw,45.106vh) scale(.7518)}to{transform:translate(15.9403vw,99vh) scale(.7518)}}.snow:nth-child(356){opacity:.7418;transform:translate(16.8988vw,-10px) scale(.206);animation:fall-356 10s -25s linear infinite}@keyframes fall-356{34.229%{transform:translate(8.104vw,34.229vh) scale(.206)}to{transform:translate(12.5014vw,99vh) scale(.206)}}.snow:nth-child(357){opacity:.7906;transform:translate(61.6892vw,-10px) scale(.5764);animation:fall-357 25s -24s linear infinite}@keyframes fall-357{53.871%{transform:translate(69.2696vw,53.871vh) scale(.5764)}to{transform:translate(65.4794vw,99vh) scale(.5764)}}.snow:nth-child(358){opacity:.6656;transform:translate(23.9084vw,-10px) scale(.0547);animation:fall-358 23s -16s linear infinite}@keyframes fall-358{57.459%{transform:translate(26.1364vw,57.459vh) scale(.0547)}to{transform:translate(25.0224vw,99vh) scale(.0547)}}.snow:nth-child(359){opacity:.516;transform:translate(56.1867vw,-10px) scale(.2433);animation:fall-359 17s -6s linear infinite}@keyframes fall-359{77.616%{transform:translate(52.3313vw,77.616vh) scale(.2433)}to{transform:translate(54.259vw,99vh) scale(.2433)}}.snow:nth-child(360){opacity:.2124;transform:translate(51.7768vw,-10px) scale(.9279);animation:fall-360 11s -19s linear infinite}@keyframes fall-360{69.96%{transform:translate(54.3246vw,69.96vh) scale(.9279)}to{transform:translate(53.0507vw,99vh) scale(.9279)}}.snow:nth-child(361){opacity:1.1202;transform:translate(66.729vw,-10px) scale(.0099);animation:fall-361 10s -12s linear infinite}@keyframes fall-361{50.176%{transform:translate(72.9892vw,50.176vh) scale(.0099)}to{transform:translate(69.8591vw,99vh) scale(.0099)}}.snow:nth-child(362){opacity:1.1816;transform:translate(80.0428vw,-10px) scale(.0482);animation:fall-362 17s -18s linear infinite}@keyframes fall-362{57.861%{transform:translate(81.6386vw,57.861vh) scale(.0482)}to{transform:translate(80.8407vw,99vh) scale(.0482)}}.snow:nth-child(363){opacity:1.679;transform:translate(26.9304vw,-10px) scale(.7566);animation:fall-363 12s -26s linear infinite}@keyframes fall-363{34.582%{transform:translate(33.1868vw,34.582vh) scale(.7566)}to{transform:translate(30.0586vw,99vh) scale(.7566)}}.snow:nth-child(364){opacity:.1618;transform:translate(27.6588vw,-10px) scale(.3045);animation:fall-364 30s -9s linear infinite}@keyframes fall-364{39.484%{transform:translate(31.8698vw,39.484vh) scale(.3045)}to{transform:translate(29.7643vw,99vh) scale(.3045)}}.snow:nth-child(365){opacity:1.4526;transform:translate(78.6116vw,-10px) scale(.5916);animation:fall-365 17s -29s linear infinite}@keyframes fall-365{47.084%{transform:translate(70.0252vw,47.084vh) scale(.5916)}to{transform:translate(74.3184vw,99vh) scale(.5916)}}.snow:nth-child(366){opacity:1.6466;transform:translate(20.434vw,-10px) scale(.8171);animation:fall-366 24s -13s linear infinite}@keyframes fall-366{68.585%{transform:translate(27.8161vw,68.585vh) scale(.8171)}to{transform:translate(24.12505vw,99vh) scale(.8171)}}.snow:nth-child(367){opacity:.2034;transform:translate(28.9368vw,-10px) scale(.2243);animation:fall-367 21s -1s linear infinite}@keyframes fall-367{68.182%{transform:translate(35.1661vw,68.182vh) scale(.2243)}to{transform:translate(32.05145vw,99vh) scale(.2243)}}.snow:nth-child(368){opacity:1.441;transform:translate(10.9162vw,-10px) scale(.2284);animation:fall-368 17s -5s linear infinite}@keyframes fall-368{62.56%{transform:translate(8.1567vw,62.56vh) scale(.2284)}to{transform:translate(9.53645vw,99vh) scale(.2284)}}.snow:nth-child(369){opacity:.378;transform:translate(78.4221vw,-10px) scale(.4529);animation:fall-369 28s -7s linear infinite}@keyframes fall-369{70.368%{transform:translate(84.6094vw,70.368vh) scale(.4529)}to{transform:translate(81.51575vw,99vh) scale(.4529)}}.snow:nth-child(370){opacity:.4998;transform:translate(14.3353vw,-10px) scale(.6968);animation:fall-370 22s -1s linear infinite}@keyframes fall-370{52.682%{transform:translate(12.5815vw,52.682vh) scale(.6968)}to{transform:translate(13.4584vw,99vh) scale(.6968)}}.snow:nth-child(371){opacity:1.7094;transform:translate(6.4697vw,-10px) scale(.8776);animation:fall-371 15s -29s linear infinite}@keyframes fall-371{32.89%{transform:translate(4.8596vw,32.89vh) scale(.8776)}to{transform:translate(5.66465vw,99vh) scale(.8776)}}.snow:nth-child(372){opacity:.9242;transform:translate(20.3003vw,-10px) scale(.7502);animation:fall-372 30s -28s linear infinite}@keyframes fall-372{67.173%{transform:translate(24.0622vw,67.173vh) scale(.7502)}to{transform:translate(22.18125vw,99vh) scale(.7502)}}.snow:nth-child(373){opacity:1.3274;transform:translate(95.8789vw,-10px) scale(.9507);animation:fall-373 14s -16s linear infinite}@keyframes fall-373{62.646%{transform:translate(88.0745vw,62.646vh) scale(.9507)}to{transform:translate(91.9767vw,99vh) scale(.9507)}}.snow:nth-child(374){opacity:1.8634;transform:translate(1.8016vw,-10px) scale(.0667);animation:fall-374 11s -6s linear infinite}@keyframes fall-374{57.495%{transform:translate(4.8208vw,57.495vh) scale(.0667)}to{transform:translate(3.3112vw,99vh) scale(.0667)}}.snow:nth-child(375){opacity:1.39;transform:translate(58.6114vw,-10px) scale(.7843);animation:fall-375 25s -1s linear infinite}@keyframes fall-375{65.34%{transform:translate(60.3623vw,65.34vh) scale(.7843)}to{transform:translate(59.48685vw,99vh) scale(.7843)}}.snow:nth-child(376){opacity:1.262;transform:translate(68.4951vw,-10px) scale(.7724);animation:fall-376 14s -3s linear infinite}@keyframes fall-376{71.771%{transform:translate(70.2821vw,71.771vh) scale(.7724)}to{transform:translate(69.3886vw,99vh) scale(.7724)}}.snow:nth-child(377){opacity:.1546;transform:translate(52.963vw,-10px) scale(.7847);animation:fall-377 19s -24s linear infinite}@keyframes fall-377{62.78%{transform:translate(56.6958vw,62.78vh) scale(.7847)}to{transform:translate(54.8294vw,99vh) scale(.7847)}}.snow:nth-child(378){opacity:.0178;transform:translate(53.8144vw,-10px) scale(.8457);animation:fall-378 29s -28s linear infinite}@keyframes fall-378{35.987%{transform:translate(54.1457vw,35.987vh) scale(.8457)}to{transform:translate(53.98005vw,99vh) scale(.8457)}}.snow:nth-child(379){opacity:1.4534;transform:translate(82.387vw,-10px) scale(.5838);animation:fall-379 22s -21s linear infinite}@keyframes fall-379{52.152%{transform:translate(72.8566vw,52.152vh) scale(.5838)}to{transform:translate(77.6218vw,99vh) scale(.5838)}}.snow:nth-child(380){opacity:.8388;transform:translate(80.6763vw,-10px) scale(.3946);animation:fall-380 15s -3s linear infinite}@keyframes fall-380{34.162%{transform:translate(86.1337vw,34.162vh) scale(.3946)}to{transform:translate(83.405vw,99vh) scale(.3946)}}.snow:nth-child(381){opacity:1.7942;transform:translate(87.7615vw,-10px) scale(.0514);animation:fall-381 19s -2s linear infinite}@keyframes fall-381{60.448%{transform:translate(82.8812vw,60.448vh) scale(.0514)}to{transform:translate(85.32135vw,99vh) scale(.0514)}}.snow:nth-child(382){opacity:.9058;transform:translate(85.486vw,-10px) scale(.0801);animation:fall-382 12s -6s linear infinite}@keyframes fall-382{63.719%{transform:translate(93.7579vw,63.719vh) scale(.0801)}to{transform:translate(89.62195vw,99vh) scale(.0801)}}.snow:nth-child(383){opacity:1.574;transform:translate(70.6059vw,-10px) scale(.1667);animation:fall-383 15s -21s linear infinite}@keyframes fall-383{39.571%{transform:translate(65.7476vw,39.571vh) scale(.1667)}to{transform:translate(68.17675vw,99vh) scale(.1667)}}.snow:nth-child(384){opacity:.5284;transform:translate(96.6553vw,-10px) scale(.7577);animation:fall-384 28s -10s linear infinite}@keyframes fall-384{71.978%{transform:translate(92.2152vw,71.978vh) scale(.7577)}to{transform:translate(94.43525vw,99vh) scale(.7577)}}.snow:nth-child(385){opacity:.299;transform:translate(46.4252vw,-10px) scale(.6569);animation:fall-385 24s -23s linear infinite}@keyframes fall-385{45.314%{transform:translate(49.6103vw,45.314vh) scale(.6569)}to{transform:translate(48.01775vw,99vh) scale(.6569)}}.snow:nth-child(386){opacity:.6174;transform:translate(67.4081vw,-10px) scale(.1259);animation:fall-386 26s -10s linear infinite}@keyframes fall-386{63.184%{transform:translate(75.4022vw,63.184vh) scale(.1259)}to{transform:translate(71.40515vw,99vh) scale(.1259)}}.snow:nth-child(387){opacity:1.294;transform:translate(90.083vw,-10px) scale(.1806);animation:fall-387 30s -15s linear infinite}@keyframes fall-387{78.856%{transform:translate(93.7493vw,78.856vh) scale(.1806)}to{transform:translate(91.91615vw,99vh) scale(.1806)}}.snow:nth-child(388){opacity:1.5248;transform:translate(44.6795vw,-10px) scale(.2083);animation:fall-388 17s -9s linear infinite}@keyframes fall-388{47.699%{transform:translate(40.1023vw,47.699vh) scale(.2083)}to{transform:translate(42.3909vw,99vh) scale(.2083)}}.snow:nth-child(389){opacity:.5154;transform:translate(35.764vw,-10px) scale(.6867);animation:fall-389 20s -20s linear infinite}@keyframes fall-389{41.785%{transform:translate(29.6482vw,41.785vh) scale(.6867)}to{transform:translate(32.7061vw,99vh) scale(.6867)}}.snow:nth-child(390){opacity:1.1348;transform:translate(23.7094vw,-10px) scale(.7402);animation:fall-390 18s -2s linear infinite}@keyframes fall-390{42.143%{transform:translate(19.7447vw,42.143vh) scale(.7402)}to{transform:translate(21.72705vw,99vh) scale(.7402)}}.snow:nth-child(391){opacity:1.0028;transform:translate(77.1263vw,-10px) scale(.9827);animation:fall-391 26s -19s linear infinite}@keyframes fall-391{69.627%{transform:translate(74.9914vw,69.627vh) scale(.9827)}to{transform:translate(76.05885vw,99vh) scale(.9827)}}.snow:nth-child(392){opacity:.6108;transform:translate(50.7178vw,-10px) scale(.363);animation:fall-392 12s -7s linear infinite}@keyframes fall-392{40.782%{transform:translate(58.7108vw,40.782vh) scale(.363)}to{transform:translate(54.7143vw,99vh) scale(.363)}}.snow:nth-child(393){opacity:.6882;transform:translate(1.7673vw,-10px) scale(.8843);animation:fall-393 12s -9s linear infinite}@keyframes fall-393{46.138%{transform:translate(7.8302vw,46.138vh) scale(.8843)}to{transform:translate(4.79875vw,99vh) scale(.8843)}}.snow:nth-child(394){opacity:1.9618;transform:translate(45.932vw,-10px) scale(.5562);animation:fall-394 11s -15s linear infinite}@keyframes fall-394{73.373%{transform:translate(41.5767vw,73.373vh) scale(.5562)}to{transform:translate(43.75435vw,99vh) scale(.5562)}}.snow:nth-child(395){opacity:1.624;transform:translate(42.9941vw,-10px) scale(.7426);animation:fall-395 26s -28s linear infinite}@keyframes fall-395{35.231%{transform:translate(40.1586vw,35.231vh) scale(.7426)}to{transform:translate(41.57635vw,99vh) scale(.7426)}}.snow:nth-child(396){opacity:.6446;transform:translate(51.4047vw,-10px) scale(.9541);animation:fall-396 29s -13s linear infinite}@keyframes fall-396{36.771%{transform:translate(49.0375vw,36.771vh) scale(.9541)}to{transform:translate(50.2211vw,99vh) scale(.9541)}}.snow:nth-child(397){opacity:.1868;transform:translate(91.7276vw,-10px) scale(.2193);animation:fall-397 27s -5s linear infinite}@keyframes fall-397{45.994%{transform:translate(86.1261vw,45.994vh) scale(.2193)}to{transform:translate(88.92685vw,99vh) scale(.2193)}}.snow:nth-child(398){opacity:1.2226;transform:translate(85.5545vw,-10px) scale(.1104);animation:fall-398 25s -21s linear infinite}@keyframes fall-398{55.591%{transform:translate(87.6662vw,55.591vh) scale(.1104)}to{transform:translate(86.61035vw,99vh) scale(.1104)}}.snow:nth-child(399){opacity:1.3374;transform:translate(63.3583vw,-10px) scale(.803);animation:fall-399 11s -9s linear infinite}@keyframes fall-399{50.349%{transform:translate(68.1576vw,50.349vh) scale(.803)}to{transform:translate(65.75795vw,99vh) scale(.803)}}.snow:nth-child(400){opacity:.8262;transform:translate(68.3263vw,-10px) scale(.8115);animation:fall-400 29s -9s linear infinite}@keyframes fall-400{75.004%{transform:translate(69.9941vw,75.004vh) scale(.8115)}to{transform:translate(69.1602vw,99vh) scale(.8115)}}\n"] }]
|
|
80
95
|
}], ctorParameters: () => [{ type: i1.TokenService }, { type: i1.AppState }, { type: i2.Router }, { type: undefined, decorators: [{
|
|
81
96
|
type: Inject,
|
|
82
97
|
args: [ANONYMOUS_MODE]
|
|
@@ -104,6 +119,8 @@ const MODULES = [
|
|
|
104
119
|
// Attenzione a lasciarlo attivo in ng serve: https://github.com/angular/angular/issues/47455
|
|
105
120
|
ServiceWorkerModule.register('ngsw-worker.js', { enabled: !isDevMode() }),
|
|
106
121
|
RouterModule.forRoot([], { useHash: true, preloadingStrategy: NoPreloading, onSameUrlNavigation: "reload" }),
|
|
122
|
+
// NgPrime
|
|
123
|
+
TooltipModule,
|
|
107
124
|
// ES
|
|
108
125
|
EsTableModule.forRoot(),
|
|
109
126
|
FormsAndValidationsModule.forRoot(),
|
|
@@ -115,7 +132,7 @@ const MODULES = [
|
|
|
115
132
|
PreferencesModule.forRoot({ retrieveAllAtStart: true, sessionRetriever: SessionRetriever, preferencePersistor: ApplicationPreferencesPersistor, cachePersistor: ApplicationCachePersistor }),
|
|
116
133
|
EsChartsModule.forRoot(),
|
|
117
134
|
// Bootstrap
|
|
118
|
-
TooltipModule.forRoot(),
|
|
135
|
+
TooltipModule$1.forRoot(),
|
|
119
136
|
ModalModule.forRoot(),
|
|
120
137
|
ProgressbarModule.forRoot(),
|
|
121
138
|
BsDropdownModule.forRoot(),
|
|
@@ -132,7 +149,60 @@ const PROVIDERS = [
|
|
|
132
149
|
{ provide: EVENT_MANAGER_PLUGINS, useExisting: OutZoneEventPlugin, multi: true },
|
|
133
150
|
{ provide: HttpServiceExtensions, useClass: HTTPServiceExtensions }
|
|
134
151
|
];
|
|
152
|
+
const MyPreset = definePreset(Theme, {
|
|
153
|
+
semantic: {
|
|
154
|
+
primary: {
|
|
155
|
+
50: '{indigo.50}',
|
|
156
|
+
100: '{indigo.100}',
|
|
157
|
+
200: '{indigo.200}',
|
|
158
|
+
300: '{indigo.300}',
|
|
159
|
+
400: '{indigo.400}',
|
|
160
|
+
500: '{indigo.500}',
|
|
161
|
+
600: '{indigo.600}',
|
|
162
|
+
700: '{indigo.700}',
|
|
163
|
+
800: '{indigo.800}',
|
|
164
|
+
900: '{indigo.900}',
|
|
165
|
+
950: '{indigo.950}'
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
});
|
|
135
169
|
class EsFaenzaCoreModule {
|
|
170
|
+
constructor(lc, primeng, dates) {
|
|
171
|
+
this.lc = lc;
|
|
172
|
+
this.primeng = primeng;
|
|
173
|
+
this.dates = dates;
|
|
174
|
+
this.lc.Locale.pipe(take(1)).subscribe(l => {
|
|
175
|
+
console.log("Setting locale for primeNG input system: " + l);
|
|
176
|
+
switch (l) {
|
|
177
|
+
case "it-IT":
|
|
178
|
+
this.primeng.setTranslation(it);
|
|
179
|
+
break;
|
|
180
|
+
case "en-US":
|
|
181
|
+
this.primeng.setTranslation(en);
|
|
182
|
+
break;
|
|
183
|
+
}
|
|
184
|
+
dayjs.extend(customParseFormat.default || customParseFormat);
|
|
185
|
+
dayjs.extend(minMax.default || minMax);
|
|
186
|
+
dayjs.extend(isBetween.default || isBetween);
|
|
187
|
+
dayjs.extend(isSameOrBefore.default || isSameOrBefore);
|
|
188
|
+
dayjs.extend(isSameOrAfter.default || isSameOrAfter);
|
|
189
|
+
dayjs.extend(duration.default || duration);
|
|
190
|
+
dayjs.extend(utc.default || utc);
|
|
191
|
+
// Il locale inglese è già installato e di default. Mi occupo di sto cambio solo se il locale è l'italiano
|
|
192
|
+
if (l === "it-IT")
|
|
193
|
+
import('dayjs/locale/it.js').then(locale => {
|
|
194
|
+
dayjs.locale(locale);
|
|
195
|
+
console.log("[@esfaenza/core] Loaded date locale: " + l);
|
|
196
|
+
var dt = this.dates.getDateConvertion(new Date());
|
|
197
|
+
var formatted = dt.format("DD MMMM YYYY");
|
|
198
|
+
console.log("[@esfaenza/core] Today is: " + formatted);
|
|
199
|
+
});
|
|
200
|
+
});
|
|
201
|
+
// Serve anche per caricare sneaky il servizio delle date, wink wink wink
|
|
202
|
+
this.dates.Initialized.pipe(take(1)).subscribe(_ => {
|
|
203
|
+
console.log("[@esfaenza/core] Application started at: " + this.dates.getFormatted(new Date(), false, true));
|
|
204
|
+
});
|
|
205
|
+
}
|
|
136
206
|
static forRoot(config) {
|
|
137
207
|
if (config.routes) {
|
|
138
208
|
// Aggiunta della route di embedding se non dichiarata, lato aggiunta faccio in modo che l'embedding sia disponibile solo da route interne (pages OK, pages_ext NON OK)
|
|
@@ -195,6 +265,8 @@ class EsFaenzaCoreModule {
|
|
|
195
265
|
ngModule: EsFaenzaCoreModule,
|
|
196
266
|
providers: [
|
|
197
267
|
// *************************** Provider statici ***************************
|
|
268
|
+
provideAnimationsAsync(),
|
|
269
|
+
providePrimeNG({ theme: { preset: MyPreset } }),
|
|
198
270
|
...PROVIDERS,
|
|
199
271
|
// ************************ Provider customizzabili ************************
|
|
200
272
|
...(!config.redirectionMap ? [] : [{ provide: REDIRECT_MAP, useValue: config.redirectionMap }]),
|
|
@@ -226,10 +298,12 @@ class EsFaenzaCoreModule {
|
|
|
226
298
|
]
|
|
227
299
|
};
|
|
228
300
|
}
|
|
229
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: EsFaenzaCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
301
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: EsFaenzaCoreModule, deps: [{ token: i1$1.BaseLocalization }, { token: i2$1.PrimeNG }, { token: i3$1.DateService }], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
230
302
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.14", ngImport: i0, type: EsFaenzaCoreModule, declarations: [AppComponent], imports: [BrowserAnimationsModule,
|
|
231
303
|
TemplateCommon,
|
|
232
|
-
ComponentsModule,
|
|
304
|
+
ComponentsModule, i4.ServiceWorkerModule, i2.RouterModule,
|
|
305
|
+
// NgPrime
|
|
306
|
+
TooltipModule, i6.EsTableModule, i7.FormsAndValidationsModule, i3$1.ExtensionsModule, i1$1.LocalizationModule, i8.AccessControlModule, i9.HttpserviceModule, i10.SignalrNotificationsModule, i11.PreferencesModule, i12.EsChartsModule, i13.TooltipModule, i14.ModalModule, i15.ProgressbarModule, i16.BsDropdownModule, i17.ToastrModule, i18.TimepickerModule, i19.ContextMenuModule, i20.DragulaModule] }); }
|
|
233
307
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: EsFaenzaCoreModule, imports: [MODULES] }); }
|
|
234
308
|
}
|
|
235
309
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: EsFaenzaCoreModule, decorators: [{
|
|
@@ -238,7 +312,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
238
312
|
declarations: [AppComponent],
|
|
239
313
|
imports: [...MODULES]
|
|
240
314
|
}]
|
|
241
|
-
}] });
|
|
315
|
+
}], ctorParameters: () => [{ type: i1$1.BaseLocalization }, { type: i2$1.PrimeNG }, { type: i3$1.DateService }] });
|
|
242
316
|
class EsFaenzaCoreModuleConfig {
|
|
243
317
|
}
|
|
244
318
|
var DebugFlags;
|