@esfaenza/core 15.2.179 → 15.2.180-beta2
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/assets/fontawesome/css/all.css +27093 -0
- package/assets/fontawesome/css/all.min.css +9 -0
- package/assets/fontawesome/css/brands.css +1522 -0
- package/assets/fontawesome/css/brands.min.css +6 -0
- package/assets/fontawesome/css/duotone.css +12491 -0
- package/assets/fontawesome/css/duotone.min.css +6 -0
- package/assets/fontawesome/css/fontawesome.css +12984 -0
- package/assets/fontawesome/css/fontawesome.min.css +9 -0
- package/assets/fontawesome/css/light.css +19 -0
- package/assets/fontawesome/css/light.min.css +6 -0
- package/assets/fontawesome/css/regular.css +19 -0
- package/assets/fontawesome/css/regular.min.css +6 -0
- package/assets/fontawesome/css/sharp-regular.css +19 -0
- package/assets/fontawesome/css/sharp-regular.min.css +6 -0
- package/assets/fontawesome/css/sharp-solid.css +19 -0
- package/assets/fontawesome/css/sharp-solid.min.css +6 -0
- package/assets/fontawesome/css/solid.css +19 -0
- package/assets/fontawesome/css/solid.min.css +6 -0
- package/assets/fontawesome/css/svg-with-js.css +638 -0
- package/assets/fontawesome/css/svg-with-js.min.css +6 -0
- package/assets/fontawesome/css/thin.css +19 -0
- package/assets/fontawesome/css/thin.min.css +6 -0
- package/assets/fontawesome/css/v4-font-face.css +26 -0
- package/assets/fontawesome/css/v4-font-face.min.css +6 -0
- package/assets/fontawesome/css/v4-shims.css +2194 -0
- package/assets/fontawesome/css/v4-shims.min.css +6 -0
- package/assets/fontawesome/css/v5-font-face.css +34 -0
- package/assets/fontawesome/css/v5-font-face.min.css +6 -0
- package/assets/fontawesome/webfonts/fa-brands-400.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-duotone-900.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-duotone-900.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-light-300.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-light-300.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-regular-400.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-regular-400.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-regular-400.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-solid-900.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-solid-900.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-solid-900.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-thin-100.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-thin-100.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
- package/components/breadcrumb/breadcrumb.component.d.ts +12 -8
- package/components/components.module.d.ts +2 -1
- package/components/labeled-span/labeled-span.component.d.ts +11 -0
- package/components/navbar/navbar.component.d.ts +4 -14
- package/components/public-api.d.ts +2 -0
- package/components/sidebar/sidebar.component.d.ts +25 -5
- package/components/sidebar/sidebar.component.loc.d.ts +8 -0
- package/components/user_infos/user_infos.component.d.ts +48 -0
- package/components/user_infos/user_infos.component.loc.d.ts +8 -0
- package/domain/models/user/UpdateAccountRecoverySettingsDto.d.ts +5 -0
- package/domain/models/user/UpdatePasswordDto.d.ts +9 -0
- package/domain/models/user/UpdateProfilePictureDto.d.ts +4 -0
- package/domain/models/user/UserAccount.d.ts +14 -0
- package/domain/public-api.d.ts +4 -0
- package/esm2020/components/breadcrumb/breadcrumb.component.mjs +51 -42
- package/esm2020/components/components.module.mjs +8 -4
- package/esm2020/components/labeled-span/labeled-span.component.mjs +25 -0
- package/esm2020/components/navbar/navbar.component.mjs +12 -64
- package/esm2020/components/page/pages.component.mjs +3 -3
- package/esm2020/components/public-api.mjs +3 -1
- package/esm2020/components/sidebar/sidebar.component.loc.mjs +39 -0
- package/esm2020/components/sidebar/sidebar.component.mjs +101 -14
- package/esm2020/components/user_infos/user_infos.component.loc.mjs +43 -0
- package/esm2020/components/user_infos/user_infos.component.mjs +141 -0
- package/esm2020/domain/models/user/UpdateAccountRecoverySettingsDto.mjs +7 -0
- package/esm2020/domain/models/user/UpdatePasswordDto.mjs +11 -0
- package/esm2020/domain/models/user/UpdateProfilePictureDto.mjs +6 -0
- package/esm2020/domain/models/user/UserAccount.mjs +3 -0
- package/esm2020/domain/public-api.mjs +5 -1
- package/esm2020/lib/app.component.mjs +2 -2
- package/esm2020/lib/core.module.mjs +11 -5
- package/esm2020/services/classes/preferences/user/app.userpreferences.base.mjs +74 -0
- package/esm2020/services/public-api.mjs +2 -1
- package/fesm2015/esfaenza-core-components.mjs +429 -157
- package/fesm2015/esfaenza-core-components.mjs.map +1 -1
- package/fesm2015/esfaenza-core-domain.mjs +28 -1
- package/fesm2015/esfaenza-core-domain.mjs.map +1 -1
- package/fesm2015/esfaenza-core-services.mjs +85 -5
- package/fesm2015/esfaenza-core-services.mjs.map +1 -1
- package/fesm2015/esfaenza-core.mjs +12 -6
- package/fesm2015/esfaenza-core.mjs.map +1 -1
- package/fesm2020/esfaenza-core-components.mjs +416 -156
- package/fesm2020/esfaenza-core-components.mjs.map +1 -1
- package/fesm2020/esfaenza-core-domain.mjs +28 -1
- package/fesm2020/esfaenza-core-domain.mjs.map +1 -1
- package/fesm2020/esfaenza-core-services.mjs +70 -5
- package/fesm2020/esfaenza-core-services.mjs.map +1 -1
- package/fesm2020/esfaenza-core.mjs +12 -6
- package/fesm2020/esfaenza-core.mjs.map +1 -1
- package/lib/core.module.d.ts +2 -1
- package/package.json +1 -1
- package/services/classes/preferences/user/app.userpreferences.base.d.ts +25 -0
- package/services/public-api.d.ts +1 -0
- package/theme/styles/_variables.scss +1 -0
- package/theme/styles/skins/enuma.scss +61 -0
- package/theme/styles/skins/jace.scss +63 -0
- package/assets/fonts/fontawesome/FontAwesome.otf +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.eot +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.svg +0 -2671
- package/assets/fonts/fontawesome/fontawesome-webfont.ttf +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.woff +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.woff2 +0 -0
- package/assets/styles/font-awesome.min.css +0 -2929
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Component, ViewEncapsulation, isDevMode, ErrorHandler, LOCALE_ID, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
3
|
import * as i1 from '@esfaenza/core/services';
|
|
4
|
-
import { SessionRetriever, ApplicationPreferencesPersistor, ApplicationCachePersistor, APPErrorHandler, OutZoneEventPlugin, HTTPServiceExtensions, TokenService, GlobalSearchService, CompletedJobRedirectionService, MenuFilteringService } from '@esfaenza/core/services';
|
|
4
|
+
import { SessionRetriever, ApplicationPreferencesPersistor, ApplicationCachePersistor, APPErrorHandler, OutZoneEventPlugin, HTTPServiceExtensions, TokenService, GlobalSearchService, CompletedJobRedirectionService, MenuFilteringService, UserPreferencesService } from '@esfaenza/core/services';
|
|
5
5
|
import * as i2 from '@angular/router';
|
|
6
6
|
import { RouterModule, NoPreloading, ROUTES } from '@angular/router';
|
|
7
7
|
import * as i3 from '@angular/common';
|
|
@@ -40,7 +40,7 @@ import { DragulaModule } from '@esfaenza/ngx-dragula';
|
|
|
40
40
|
import * as i3$1 from '@esfaenza/es-table';
|
|
41
41
|
import { EsTableModule } from '@esfaenza/es-table';
|
|
42
42
|
import { TAB_DEBUG_MODE } from '@esfaenza/tabber';
|
|
43
|
-
import { ExternalPagesComponent, PagesComponent, RedirecterComponent, JaceLoginComponent, ServerErrorComponent, AngularErrorComponent, PageNotFoundComponent, ComponentsModule } from '@esfaenza/core/components';
|
|
43
|
+
import { ExternalPagesComponent, PagesComponent, RedirecterComponent, JaceLoginComponent, ServerErrorComponent, AngularErrorComponent, PageNotFoundComponent, ComponentsModule, UserInfosComponent } from '@esfaenza/core/components';
|
|
44
44
|
import { EMBEDDED_ROUTE, ROUTE, REDIRECT_MAP, LOGIN_URL_LEGACY, NAVBAR_EXTENSIONS, MENU_LOCALIZATION, MENU, USE_FAKE_ACCESS_TOKEN } from '@esfaenza/core/domain';
|
|
45
45
|
import { TemplateCommon } from '@esfaenza/core/modules';
|
|
46
46
|
import { catchError, take, tap, switchMap } from 'rxjs/operators';
|
|
@@ -75,10 +75,10 @@ class AppComponent {
|
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
AppComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AppComponent, deps: [{ token: i1.TokenService }, { token: i1.AppState }, { token: i2.Router }], target: i0.ɵɵFactoryTarget.Component });
|
|
78
|
-
AppComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AppComponent, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows; 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{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 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}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.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}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.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}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.mat-chip-list-wrapper input.mat-input-element,.mat-chip-list-wrapper .mat-standard-chip{margin:1px 4px 4px!important;padding-top:0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.6968;transform:translate(13.5845vw,-10px) scale(.6467);animation:fall-1 16s -14s linear infinite}@keyframes fall-1{64.78%{transform:translate(17.3714vw,64.78vh) scale(.6467)}to{transform:translate(15.47795vw,99vh) scale(.6467)}}.snow:nth-child(2){opacity:1.3246;transform:translate(62.6323vw,-10px) scale(.6645);animation:fall-2 11s -25s linear infinite}@keyframes fall-2{55.87%{transform:translate(54.4042vw,55.87vh) scale(.6645)}to{transform:translate(58.51825vw,99vh) scale(.6645)}}.snow:nth-child(3){opacity:1.132;transform:translate(76.4303vw,-10px) scale(.0702);animation:fall-3 23s -10s linear infinite}@keyframes fall-3{38.778%{transform:translate(82.4356vw,38.778vh) scale(.0702)}to{transform:translate(79.43295vw,99vh) scale(.0702)}}.snow:nth-child(4){opacity:.048;transform:translate(49.9706vw,-10px) scale(.5855);animation:fall-4 28s -30s linear infinite}@keyframes fall-4{34.682%{transform:translate(45.2738vw,34.682vh) scale(.5855)}to{transform:translate(47.6222vw,99vh) scale(.5855)}}.snow:nth-child(5){opacity:1.8232;transform:translate(17.59vw,-10px) scale(.615);animation:fall-5 19s -9s linear infinite}@keyframes fall-5{71.815%{transform:translate(27.5634vw,71.815vh) scale(.615)}to{transform:translate(22.5767vw,99vh) scale(.615)}}.snow:nth-child(6){opacity:.168;transform:translate(34.1141vw,-10px) scale(.8216);animation:fall-6 22s -12s linear infinite}@keyframes fall-6{69.29%{transform:translate(39.9698vw,69.29vh) scale(.8216)}to{transform:translate(37.04195vw,99vh) scale(.8216)}}.snow:nth-child(7){opacity:.29;transform:translate(24.9806vw,-10px) scale(.1074);animation:fall-7 11s -11s linear infinite}@keyframes fall-7{78.161%{transform:translate(19.0729vw,78.161vh) scale(.1074)}to{transform:translate(22.02675vw,99vh) scale(.1074)}}.snow:nth-child(8){opacity:1.3008;transform:translate(28.0172vw,-10px) scale(.297);animation:fall-8 25s -13s linear infinite}@keyframes fall-8{44.012%{transform:translate(28.1409vw,44.012vh) scale(.297)}to{transform:translate(28.07905vw,99vh) scale(.297)}}.snow:nth-child(9){opacity:.249;transform:translate(84.5947vw,-10px) scale(.0589);animation:fall-9 26s -8s linear infinite}@keyframes fall-9{53.871%{transform:translate(92.8717vw,53.871vh) scale(.0589)}to{transform:translate(88.7332vw,99vh) scale(.0589)}}.snow:nth-child(10){opacity:1.7042;transform:translate(18.3675vw,-10px) scale(.8403);animation:fall-10 27s -2s linear infinite}@keyframes fall-10{65.562%{transform:translate(13.1769vw,65.562vh) scale(.8403)}to{transform:translate(15.7722vw,99vh) scale(.8403)}}.snow:nth-child(11){opacity:.071;transform:translate(20.1311vw,-10px) scale(.9465);animation:fall-11 16s -9s linear infinite}@keyframes fall-11{64.028%{transform:translate(27.6678vw,64.028vh) scale(.9465)}to{transform:translate(23.89945vw,99vh) scale(.9465)}}.snow:nth-child(12){opacity:.0832;transform:translate(27.364vw,-10px) scale(.5522);animation:fall-12 17s -3s linear infinite}@keyframes fall-12{37.933%{transform:translate(30.3428vw,37.933vh) scale(.5522)}to{transform:translate(28.8534vw,99vh) scale(.5522)}}.snow:nth-child(13){opacity:1.2528;transform:translate(26.8098vw,-10px) scale(.9227);animation:fall-13 10s -13s linear infinite}@keyframes fall-13{61.225%{transform:translate(32.6882vw,61.225vh) scale(.9227)}to{transform:translate(29.749vw,99vh) scale(.9227)}}.snow:nth-child(14){opacity:1.5174;transform:translate(92.9808vw,-10px) scale(.4972);animation:fall-14 26s -13s linear infinite}@keyframes fall-14{34.87%{transform:translate(88.5261vw,34.87vh) scale(.4972)}to{transform:translate(90.75345vw,99vh) scale(.4972)}}.snow:nth-child(15){opacity:1.3674;transform:translate(56.0867vw,-10px) scale(.7331);animation:fall-15 20s -23s linear infinite}@keyframes fall-15{77.023%{transform:translate(65.1613vw,77.023vh) scale(.7331)}to{transform:translate(60.624vw,99vh) scale(.7331)}}.snow:nth-child(16){opacity:.7814;transform:translate(93.6692vw,-10px) scale(.4234);animation:fall-16 26s -14s linear infinite}@keyframes fall-16{54.829%{transform:translate(96.6347vw,54.829vh) scale(.4234)}to{transform:translate(95.15195vw,99vh) scale(.4234)}}.snow:nth-child(17){opacity:.4058;transform:translate(90.1491vw,-10px) scale(.5422);animation:fall-17 21s -14s linear infinite}@keyframes fall-17{45.903%{transform:translate(80.8895vw,45.903vh) scale(.5422)}to{transform:translate(85.5193vw,99vh) scale(.5422)}}.snow:nth-child(18){opacity:1.3284;transform:translate(79.3685vw,-10px) scale(.6435);animation:fall-18 28s -30s linear infinite}@keyframes fall-18{50.919%{transform:translate(75.4211vw,50.919vh) scale(.6435)}to{transform:translate(77.3948vw,99vh) scale(.6435)}}.snow:nth-child(19){opacity:1.0042;transform:translate(54.195vw,-10px) scale(.6887);animation:fall-19 20s -18s linear infinite}@keyframes fall-19{45.151%{transform:translate(55.7586vw,45.151vh) scale(.6887)}to{transform:translate(54.9768vw,99vh) scale(.6887)}}.snow:nth-child(20){opacity:.5892;transform:translate(25.8044vw,-10px) scale(.8442);animation:fall-20 17s -6s linear infinite}@keyframes fall-20{65.453%{transform:translate(21.498vw,65.453vh) scale(.8442)}to{transform:translate(23.6512vw,99vh) scale(.8442)}}.snow:nth-child(21){opacity:.4888;transform:translate(27.8648vw,-10px) scale(.5719);animation:fall-21 16s -2s linear infinite}@keyframes fall-21{67.61%{transform:translate(33.8598vw,67.61vh) scale(.5719)}to{transform:translate(30.8623vw,99vh) scale(.5719)}}.snow:nth-child(22){opacity:.9926;transform:translate(87.4285vw,-10px) scale(.6379);animation:fall-22 28s -2s linear infinite}@keyframes fall-22{36.79%{transform:translate(78.3056vw,36.79vh) scale(.6379)}to{transform:translate(82.86705vw,99vh) scale(.6379)}}.snow:nth-child(23){opacity:.121;transform:translate(12.6756vw,-10px) scale(.9581);animation:fall-23 11s -25s linear infinite}@keyframes fall-23{79.357%{transform:translate(5.3657vw,79.357vh) scale(.9581)}to{transform:translate(9.02065vw,99vh) scale(.9581)}}.snow:nth-child(24){opacity:1.751;transform:translate(41.5522vw,-10px) scale(.5163);animation:fall-24 19s -17s linear infinite}@keyframes fall-24{48.382%{transform:translate(33.6412vw,48.382vh) scale(.5163)}to{transform:translate(37.5967vw,99vh) scale(.5163)}}.snow:nth-child(25){opacity:.5834;transform:translate(16.8731vw,-10px) scale(.0117);animation:fall-25 27s -18s linear infinite}@keyframes fall-25{48.458%{transform:translate(24.1818vw,48.458vh) scale(.0117)}to{transform:translate(20.52745vw,99vh) scale(.0117)}}.snow:nth-child(26){opacity:1.1994;transform:translate(56.6191vw,-10px) scale(.1235);animation:fall-26 11s -9s linear infinite}@keyframes fall-26{60.739%{transform:translate(62.9983vw,60.739vh) scale(.1235)}to{transform:translate(59.8087vw,99vh) scale(.1235)}}.snow:nth-child(27){opacity:.177;transform:translate(34.7977vw,-10px) scale(.7533);animation:fall-27 15s -10s linear infinite}@keyframes fall-27{48.044%{transform:translate(35.3201vw,48.044vh) scale(.7533)}to{transform:translate(35.0589vw,99vh) scale(.7533)}}.snow:nth-child(28){opacity:1.0572;transform:translate(87.0741vw,-10px) scale(.5614);animation:fall-28 15s -14s linear infinite}@keyframes fall-28{77.911%{transform:translate(90.6701vw,77.911vh) scale(.5614)}to{transform:translate(88.8721vw,99vh) scale(.5614)}}.snow:nth-child(29){opacity:.1256;transform:translate(66.8082vw,-10px) scale(.0992);animation:fall-29 24s -29s linear infinite}@keyframes fall-29{75.019%{transform:translate(61.4508vw,75.019vh) scale(.0992)}to{transform:translate(64.1295vw,99vh) scale(.0992)}}.snow:nth-child(30){opacity:1.7276;transform:translate(43.9118vw,-10px) scale(.3217);animation:fall-30 19s -30s linear infinite}@keyframes fall-30{52.882%{transform:translate(41.4663vw,52.882vh) scale(.3217)}to{transform:translate(42.68905vw,99vh) scale(.3217)}}.snow:nth-child(31){opacity:.2428;transform:translate(74.7976vw,-10px) scale(.4634);animation:fall-31 17s -1s linear infinite}@keyframes fall-31{48.595%{transform:translate(70.895vw,48.595vh) scale(.4634)}to{transform:translate(72.8463vw,99vh) scale(.4634)}}.snow:nth-child(32){opacity:1.7138;transform:translate(40.4073vw,-10px) scale(.5154);animation:fall-32 19s -16s linear infinite}@keyframes fall-32{53.735%{transform:translate(32.2906vw,53.735vh) scale(.5154)}to{transform:translate(36.34895vw,99vh) scale(.5154)}}.snow:nth-child(33){opacity:.5282;transform:translate(43.5807vw,-10px) scale(.3024);animation:fall-33 22s -21s linear infinite}@keyframes fall-33{71.745%{transform:translate(45.0659vw,71.745vh) scale(.3024)}to{transform:translate(44.3233vw,99vh) scale(.3024)}}.snow:nth-child(34){opacity:.8614;transform:translate(44.3516vw,-10px) scale(.1765);animation:fall-34 25s -27s linear infinite}@keyframes fall-34{37.382%{transform:translate(50.5079vw,37.382vh) scale(.1765)}to{transform:translate(47.42975vw,99vh) scale(.1765)}}.snow:nth-child(35){opacity:1.7464;transform:translate(70.773vw,-10px) scale(.8542);animation:fall-35 25s -20s linear infinite}@keyframes fall-35{50.885%{transform:translate(66.0822vw,50.885vh) scale(.8542)}to{transform:translate(68.4276vw,99vh) scale(.8542)}}.snow:nth-child(36){opacity:.0656;transform:translate(23.9542vw,-10px) scale(.2115);animation:fall-36 28s -20s linear infinite}@keyframes fall-36{66.736%{transform:translate(16.1031vw,66.736vh) scale(.2115)}to{transform:translate(20.02865vw,99vh) scale(.2115)}}.snow:nth-child(37){opacity:1.1188;transform:translate(72.247vw,-10px) scale(.9537);animation:fall-37 27s -8s linear infinite}@keyframes fall-37{37.607%{transform:translate(68.3477vw,37.607vh) scale(.9537)}to{transform:translate(70.29735vw,99vh) scale(.9537)}}.snow:nth-child(38){opacity:.7588;transform:translate(44.3786vw,-10px) scale(.9009);animation:fall-38 18s -25s linear infinite}@keyframes fall-38{34.792%{transform:translate(44.494vw,34.792vh) scale(.9009)}to{transform:translate(44.4363vw,99vh) scale(.9009)}}.snow:nth-child(39){opacity:.5478;transform:translate(6.812vw,-10px) scale(.2646);animation:fall-39 13s -11s linear infinite}@keyframes fall-39{41.536%{transform:translate(5.6046vw,41.536vh) scale(.2646)}to{transform:translate(6.2083vw,99vh) scale(.2646)}}.snow:nth-child(40){opacity:.2856;transform:translate(32.3807vw,-10px) scale(.7319);animation:fall-40 27s -13s linear infinite}@keyframes fall-40{54.682%{transform:translate(28.6781vw,54.682vh) scale(.7319)}to{transform:translate(30.5294vw,99vh) scale(.7319)}}.snow:nth-child(41){opacity:.8946;transform:translate(8.1978vw,-10px) scale(.5347);animation:fall-41 12s -5s linear infinite}@keyframes fall-41{64.422%{transform:translate(1.6893vw,64.422vh) scale(.5347)}to{transform:translate(4.94355vw,99vh) scale(.5347)}}.snow:nth-child(42){opacity:1.1864;transform:translate(8.9976vw,-10px) scale(.0643);animation:fall-42 25s -7s linear infinite}@keyframes fall-42{63.781%{transform:translate(17.2171vw,63.781vh) scale(.0643)}to{transform:translate(13.10735vw,99vh) scale(.0643)}}.snow:nth-child(43){opacity:1.1066;transform:translate(56.3815vw,-10px) scale(.461);animation:fall-43 17s -6s linear infinite}@keyframes fall-43{71.15%{transform:translate(52.1051vw,71.15vh) scale(.461)}to{transform:translate(54.2433vw,99vh) scale(.461)}}.snow:nth-child(44){opacity:1.3702;transform:translate(75.7034vw,-10px) scale(.2546);animation:fall-44 24s -18s linear infinite}@keyframes fall-44{68.904%{transform:translate(77.1795vw,68.904vh) scale(.2546)}to{transform:translate(76.44145vw,99vh) scale(.2546)}}.snow:nth-child(45){opacity:.8184;transform:translate(47.604vw,-10px) scale(.9984);animation:fall-45 28s -13s linear infinite}@keyframes fall-45{71.999%{transform:translate(46.602vw,71.999vh) scale(.9984)}to{transform:translate(47.103vw,99vh) scale(.9984)}}.snow:nth-child(46){opacity:.4838;transform:translate(21.2334vw,-10px) scale(.0679);animation:fall-46 25s -13s linear infinite}@keyframes fall-46{73.404%{transform:translate(16.3286vw,73.404vh) scale(.0679)}to{transform:translate(18.781vw,99vh) scale(.0679)}}.snow:nth-child(47){opacity:.1336;transform:translate(2.7611vw,-10px) scale(.0505);animation:fall-47 11s -16s linear infinite}@keyframes fall-47{60.66%{transform:translate(-.3007vw,60.66vh) scale(.0505)}to{transform:translate(1.2302vw,99vh) scale(.0505)}}.snow:nth-child(48){opacity:.9382;transform:translate(63.9518vw,-10px) scale(.8223);animation:fall-48 15s -10s linear infinite}@keyframes fall-48{61.555%{transform:translate(54.7668vw,61.555vh) scale(.8223)}to{transform:translate(59.3593vw,99vh) scale(.8223)}}.snow:nth-child(49){opacity:.5402;transform:translate(93.2435vw,-10px) scale(.6117);animation:fall-49 21s -22s linear infinite}@keyframes fall-49{44.027%{transform:translate(86.8146vw,44.027vh) scale(.6117)}to{transform:translate(90.02905vw,99vh) scale(.6117)}}.snow:nth-child(50){opacity:1.085;transform:translate(57.3661vw,-10px) scale(.3513);animation:fall-50 14s -2s linear infinite}@keyframes fall-50{58.105%{transform:translate(60.9944vw,58.105vh) scale(.3513)}to{transform:translate(59.18025vw,99vh) scale(.3513)}}.snow:nth-child(51){opacity:.9134;transform:translate(8.4792vw,-10px) scale(.7982);animation:fall-51 18s -6s linear infinite}@keyframes fall-51{73.631%{transform:translate(12.5118vw,73.631vh) scale(.7982)}to{transform:translate(10.4955vw,99vh) scale(.7982)}}.snow:nth-child(52){opacity:.0558;transform:translate(4.8458vw,-10px) scale(.8631);animation:fall-52 10s -25s linear infinite}@keyframes fall-52{65.094%{transform:translate(4.897vw,65.094vh) scale(.8631)}to{transform:translate(4.8714vw,99vh) scale(.8631)}}.snow:nth-child(53){opacity:1.558;transform:translate(24.228vw,-10px) scale(.8047);animation:fall-53 23s -20s linear infinite}@keyframes fall-53{54.21%{transform:translate(33.09vw,54.21vh) scale(.8047)}to{transform:translate(28.659vw,99vh) scale(.8047)}}.snow:nth-child(54){opacity:1.6478;transform:translate(72.6168vw,-10px) scale(.5259);animation:fall-54 25s -9s linear infinite}@keyframes fall-54{37.526%{transform:translate(73.3841vw,37.526vh) scale(.5259)}to{transform:translate(73.00045vw,99vh) scale(.5259)}}.snow:nth-child(55){opacity:1.3544;transform:translate(89.508vw,-10px) scale(.6);animation:fall-55 17s -23s linear infinite}@keyframes fall-55{79.633%{transform:translate(81.1333vw,79.633vh) scale(.6)}to{transform:translate(85.32065vw,99vh) scale(.6)}}.snow:nth-child(56){opacity:.4738;transform:translate(20.7847vw,-10px) scale(.2104);animation:fall-56 25s -21s linear infinite}@keyframes fall-56{69.269%{transform:translate(29.3303vw,69.269vh) scale(.2104)}to{transform:translate(25.0575vw,99vh) scale(.2104)}}.snow:nth-child(57){opacity:.9134;transform:translate(73.7479vw,-10px) scale(.0523);animation:fall-57 29s -30s linear infinite}@keyframes fall-57{39.841%{transform:translate(77.5448vw,39.841vh) scale(.0523)}to{transform:translate(75.64635vw,99vh) scale(.0523)}}.snow:nth-child(58){opacity:.8476;transform:translate(9.4801vw,-10px) scale(.4975);animation:fall-58 18s -27s linear infinite}@keyframes fall-58{47.967%{transform:translate(11.6218vw,47.967vh) scale(.4975)}to{transform:translate(10.55095vw,99vh) scale(.4975)}}.snow:nth-child(59){opacity:1.6858;transform:translate(19.5654vw,-10px) scale(.0915);animation:fall-59 28s -14s linear infinite}@keyframes fall-59{37.391%{transform:translate(24.9881vw,37.391vh) scale(.0915)}to{transform:translate(22.27675vw,99vh) scale(.0915)}}.snow:nth-child(60){opacity:.0742;transform:translate(26.8306vw,-10px) scale(.523);animation:fall-60 21s -9s linear infinite}@keyframes fall-60{74.243%{transform:translate(29.4035vw,74.243vh) scale(.523)}to{transform:translate(28.11705vw,99vh) scale(.523)}}.snow:nth-child(61){opacity:.39;transform:translate(51.5949vw,-10px) scale(.2437);animation:fall-61 15s -12s linear infinite}@keyframes fall-61{43.354%{transform:translate(60.2077vw,43.354vh) scale(.2437)}to{transform:translate(55.9013vw,99vh) scale(.2437)}}.snow:nth-child(62){opacity:1.594;transform:translate(23.1717vw,-10px) scale(.639);animation:fall-62 18s -9s linear infinite}@keyframes fall-62{47.463%{transform:translate(15.1459vw,47.463vh) scale(.639)}to{transform:translate(19.1588vw,99vh) scale(.639)}}.snow:nth-child(63){opacity:.9114;transform:translate(16.0413vw,-10px) scale(.4681);animation:fall-63 25s -13s linear infinite}@keyframes fall-63{31.858%{transform:translate(14.2152vw,31.858vh) scale(.4681)}to{transform:translate(15.12825vw,99vh) scale(.4681)}}.snow:nth-child(64){opacity:.1038;transform:translate(10.1818vw,-10px) scale(.2646);animation:fall-64 24s -20s linear infinite}@keyframes fall-64{60.035%{transform:translate(6.5673vw,60.035vh) scale(.2646)}to{transform:translate(8.37455vw,99vh) scale(.2646)}}.snow:nth-child(65){opacity:.9988;transform:translate(9.4147vw,-10px) scale(.9362);animation:fall-65 12s -21s linear infinite}@keyframes fall-65{30.967%{transform:translate(.1501vw,30.967vh) scale(.9362)}to{transform:translate(4.7824vw,99vh) scale(.9362)}}.snow:nth-child(66){opacity:.847;transform:translate(62.8403vw,-10px) scale(.9565);animation:fall-66 28s -23s linear infinite}@keyframes fall-66{59.581%{transform:translate(64.919vw,59.581vh) scale(.9565)}to{transform:translate(63.87965vw,99vh) scale(.9565)}}.snow:nth-child(67){opacity:.3282;transform:translate(90.1045vw,-10px) scale(.484);animation:fall-67 17s -17s linear infinite}@keyframes fall-67{74.849%{transform:translate(88.1069vw,74.849vh) scale(.484)}to{transform:translate(89.1057vw,99vh) scale(.484)}}.snow:nth-child(68){opacity:1.6266;transform:translate(63.6773vw,-10px) scale(.9511);animation:fall-68 21s -27s linear infinite}@keyframes fall-68{61.722%{transform:translate(72.5579vw,61.722vh) scale(.9511)}to{transform:translate(68.1176vw,99vh) scale(.9511)}}.snow:nth-child(69){opacity:1.6836;transform:translate(88.4063vw,-10px) scale(.0498);animation:fall-69 15s -17s linear infinite}@keyframes fall-69{54.754%{transform:translate(80.9914vw,54.754vh) scale(.0498)}to{transform:translate(84.69885vw,99vh) scale(.0498)}}.snow:nth-child(70){opacity:1.3174;transform:translate(55.1406vw,-10px) scale(.9001);animation:fall-70 11s -11s linear infinite}@keyframes fall-70{39.62%{transform:translate(61.86vw,39.62vh) scale(.9001)}to{transform:translate(58.5003vw,99vh) scale(.9001)}}.snow:nth-child(71){opacity:1.7056;transform:translate(55.3653vw,-10px) scale(.6733);animation:fall-71 14s -5s linear infinite}@keyframes fall-71{69.612%{transform:translate(51.694vw,69.612vh) scale(.6733)}to{transform:translate(53.52965vw,99vh) scale(.6733)}}.snow:nth-child(72){opacity:.4364;transform:translate(3.6688vw,-10px) scale(.8177);animation:fall-72 15s -1s linear infinite}@keyframes fall-72{59.682%{transform:translate(-1.9261vw,59.682vh) scale(.8177)}to{transform:translate(.87135vw,99vh) scale(.8177)}}.snow:nth-child(73){opacity:.4422;transform:translate(3.1095vw,-10px) scale(.6718);animation:fall-73 17s -27s linear infinite}@keyframes fall-73{37.724%{transform:translate(-5.5899vw,37.724vh) scale(.6718)}to{transform:translate(-1.2402vw,99vh) scale(.6718)}}.snow:nth-child(74){opacity:1.4976;transform:translate(21.6073vw,-10px) scale(.3492);animation:fall-74 20s -18s linear infinite}@keyframes fall-74{38.837%{transform:translate(16.2752vw,38.837vh) scale(.3492)}to{transform:translate(18.94125vw,99vh) scale(.3492)}}.snow:nth-child(75){opacity:.4468;transform:translate(39.681vw,-10px) scale(.8954);animation:fall-75 16s -4s linear infinite}@keyframes fall-75{79.38%{transform:translate(38.6374vw,79.38vh) scale(.8954)}to{transform:translate(39.1592vw,99vh) scale(.8954)}}.snow:nth-child(76){opacity:1.0012;transform:translate(98.3131vw,-10px) scale(.7833);animation:fall-76 20s -12s linear infinite}@keyframes fall-76{69.314%{transform:translate(104.0914vw,69.314vh) scale(.7833)}to{transform:translate(101.20225vw,99vh) scale(.7833)}}.snow:nth-child(77){opacity:.0494;transform:translate(77.3978vw,-10px) scale(.5201);animation:fall-77 16s -24s linear infinite}@keyframes fall-77{79.388%{transform:translate(69.1914vw,79.388vh) scale(.5201)}to{transform:translate(73.2946vw,99vh) scale(.5201)}}.snow:nth-child(78){opacity:.3586;transform:translate(78.7529vw,-10px) scale(.7654);animation:fall-78 29s -15s linear infinite}@keyframes fall-78{51.321%{transform:translate(70.9308vw,51.321vh) scale(.7654)}to{transform:translate(74.84185vw,99vh) scale(.7654)}}.snow:nth-child(79){opacity:1.2684;transform:translate(60.3043vw,-10px) scale(.2198);animation:fall-79 22s -18s linear infinite}@keyframes fall-79{69.394%{transform:translate(67.4182vw,69.394vh) scale(.2198)}to{transform:translate(63.86125vw,99vh) scale(.2198)}}.snow:nth-child(80){opacity:1.6424;transform:translate(94.9082vw,-10px) scale(.4725);animation:fall-80 25s -18s linear infinite}@keyframes fall-80{58.855%{transform:translate(88.7725vw,58.855vh) scale(.4725)}to{transform:translate(91.84035vw,99vh) scale(.4725)}}.snow:nth-child(81){opacity:.0574;transform:translate(96.0408vw,-10px) scale(.1584);animation:fall-81 11s -24s linear infinite}@keyframes fall-81{79.813%{transform:translate(86.6559vw,79.813vh) scale(.1584)}to{transform:translate(91.34835vw,99vh) scale(.1584)}}.snow:nth-child(82){opacity:.3842;transform:translate(78.6873vw,-10px) scale(.351);animation:fall-82 11s -6s linear infinite}@keyframes fall-82{33.604%{transform:translate(73.2107vw,33.604vh) scale(.351)}to{transform:translate(75.949vw,99vh) scale(.351)}}.snow:nth-child(83){opacity:1.5822;transform:translate(33.5478vw,-10px) scale(.4);animation:fall-83 16s -14s linear infinite}@keyframes fall-83{74.319%{transform:translate(26.0902vw,74.319vh) scale(.4)}to{transform:translate(29.819vw,99vh) scale(.4)}}.snow:nth-child(84){opacity:1.8786;transform:translate(43.0871vw,-10px) scale(.7299);animation:fall-84 10s -6s linear infinite}@keyframes fall-84{47.691%{transform:translate(52.0594vw,47.691vh) scale(.7299)}to{transform:translate(47.57325vw,99vh) scale(.7299)}}.snow:nth-child(85){opacity:1.2384;transform:translate(85.5524vw,-10px) scale(.6284);animation:fall-85 12s -4s linear infinite}@keyframes fall-85{66.477%{transform:translate(91.1969vw,66.477vh) scale(.6284)}to{transform:translate(88.37465vw,99vh) scale(.6284)}}.snow:nth-child(86){opacity:1.1968;transform:translate(2.0998vw,-10px) scale(.9456);animation:fall-86 12s -17s linear infinite}@keyframes fall-86{31.287%{transform:translate(7.9849vw,31.287vh) scale(.9456)}to{transform:translate(5.04235vw,99vh) scale(.9456)}}.snow:nth-child(87){opacity:1.3358;transform:translate(23.3714vw,-10px) scale(.8623);animation:fall-87 30s -7s linear infinite}@keyframes fall-87{75.589%{transform:translate(32.152vw,75.589vh) scale(.8623)}to{transform:translate(27.7617vw,99vh) scale(.8623)}}.snow:nth-child(88){opacity:1.533;transform:translate(57.2281vw,-10px) scale(.4201);animation:fall-88 18s -20s linear infinite}@keyframes fall-88{31.885%{transform:translate(66.0954vw,31.885vh) scale(.4201)}to{transform:translate(61.66175vw,99vh) scale(.4201)}}.snow:nth-child(89){opacity:1.3008;transform:translate(62.4719vw,-10px) scale(.0271);animation:fall-89 24s -28s linear infinite}@keyframes fall-89{51.143%{transform:translate(52.7111vw,51.143vh) scale(.0271)}to{transform:translate(57.5915vw,99vh) scale(.0271)}}.snow:nth-child(90){opacity:1.5018;transform:translate(39.5471vw,-10px) scale(.1965);animation:fall-90 26s -18s linear infinite}@keyframes fall-90{76.62%{transform:translate(38.9249vw,76.62vh) scale(.1965)}to{transform:translate(39.236vw,99vh) scale(.1965)}}.snow:nth-child(91){opacity:.1028;transform:translate(71.3703vw,-10px) scale(.1238);animation:fall-91 30s -14s linear infinite}@keyframes fall-91{51.681%{transform:translate(73.9733vw,51.681vh) scale(.1238)}to{transform:translate(72.6718vw,99vh) scale(.1238)}}.snow:nth-child(92){opacity:.7606;transform:translate(34.907vw,-10px) scale(.3771);animation:fall-92 25s -20s linear infinite}@keyframes fall-92{35.348%{transform:translate(43.4936vw,35.348vh) scale(.3771)}to{transform:translate(39.2003vw,99vh) scale(.3771)}}.snow:nth-child(93){opacity:1.3486;transform:translate(38.5746vw,-10px) scale(.2819);animation:fall-93 21s -5s linear infinite}@keyframes fall-93{33.349%{transform:translate(34.2846vw,33.349vh) scale(.2819)}to{transform:translate(36.4296vw,99vh) scale(.2819)}}.snow:nth-child(94){opacity:.8372;transform:translate(76.1612vw,-10px) scale(.6166);animation:fall-94 11s -28s linear infinite}@keyframes fall-94{75.547%{transform:translate(69.6623vw,75.547vh) scale(.6166)}to{transform:translate(72.91175vw,99vh) scale(.6166)}}.snow:nth-child(95){opacity:.3552;transform:translate(42.4038vw,-10px) scale(.6726);animation:fall-95 10s -23s linear infinite}@keyframes fall-95{64.781%{transform:translate(51.6022vw,64.781vh) scale(.6726)}to{transform:translate(47.003vw,99vh) scale(.6726)}}.snow:nth-child(96){opacity:1.8054;transform:translate(15.5214vw,-10px) scale(.1646);animation:fall-96 30s -1s linear infinite}@keyframes fall-96{62.33%{transform:translate(22.0466vw,62.33vh) scale(.1646)}to{transform:translate(18.784vw,99vh) scale(.1646)}}.snow:nth-child(97){opacity:.9588;transform:translate(10.4235vw,-10px) scale(.4233);animation:fall-97 18s -8s linear infinite}@keyframes fall-97{62.488%{transform:translate(7.2465vw,62.488vh) scale(.4233)}to{transform:translate(8.835vw,99vh) scale(.4233)}}.snow:nth-child(98){opacity:.6718;transform:translate(25.1193vw,-10px) scale(.0238);animation:fall-98 13s -17s linear infinite}@keyframes fall-98{71.743%{transform:translate(17.0649vw,71.743vh) scale(.0238)}to{transform:translate(21.0921vw,99vh) scale(.0238)}}.snow:nth-child(99){opacity:.3988;transform:translate(32.5354vw,-10px) scale(.6978);animation:fall-99 21s -12s linear infinite}@keyframes fall-99{30.121%{transform:translate(31.753vw,30.121vh) scale(.6978)}to{transform:translate(32.1442vw,99vh) scale(.6978)}}.snow:nth-child(100){opacity:.447;transform:translate(87.3195vw,-10px) scale(.5423);animation:fall-100 29s -20s linear infinite}@keyframes fall-100{54.503%{transform:translate(84.3807vw,54.503vh) scale(.5423)}to{transform:translate(85.8501vw,99vh) scale(.5423)}}.snow:nth-child(101){opacity:1.0738;transform:translate(3.8601vw,-10px) scale(.5009);animation:fall-101 27s -25s linear infinite}@keyframes fall-101{55.502%{transform:translate(-.1556vw,55.502vh) scale(.5009)}to{transform:translate(1.85225vw,99vh) scale(.5009)}}.snow:nth-child(102){opacity:.2854;transform:translate(45.8192vw,-10px) scale(.0407);animation:fall-102 21s -20s linear infinite}@keyframes fall-102{35.821%{transform:translate(44.9578vw,35.821vh) scale(.0407)}to{transform:translate(45.3885vw,99vh) scale(.0407)}}.snow:nth-child(103){opacity:1.344;transform:translate(60.874vw,-10px) scale(.5005);animation:fall-103 21s -4s linear infinite}@keyframes fall-103{56.277%{transform:translate(67.7733vw,56.277vh) scale(.5005)}to{transform:translate(64.32365vw,99vh) scale(.5005)}}.snow:nth-child(104){opacity:1.6838;transform:translate(92.7386vw,-10px) scale(.9238);animation:fall-104 11s -19s linear infinite}@keyframes fall-104{46.136%{transform:translate(87.6939vw,46.136vh) scale(.9238)}to{transform:translate(90.21625vw,99vh) scale(.9238)}}.snow:nth-child(105){opacity:1.42;transform:translate(73.7377vw,-10px) scale(.6538);animation:fall-105 29s -25s linear infinite}@keyframes fall-105{66.903%{transform:translate(68.2495vw,66.903vh) scale(.6538)}to{transform:translate(70.9936vw,99vh) scale(.6538)}}.snow:nth-child(106){opacity:1.5684;transform:translate(44.711vw,-10px) scale(.6488);animation:fall-106 20s -15s linear infinite}@keyframes fall-106{63.667%{transform:translate(45.1881vw,63.667vh) scale(.6488)}to{transform:translate(44.94955vw,99vh) scale(.6488)}}.snow:nth-child(107){opacity:1.8928;transform:translate(68.5314vw,-10px) scale(.2808);animation:fall-107 15s -13s linear infinite}@keyframes fall-107{52.781%{transform:translate(70.1435vw,52.781vh) scale(.2808)}to{transform:translate(69.33745vw,99vh) scale(.2808)}}.snow:nth-child(108){opacity:1.9612;transform:translate(62.7105vw,-10px) scale(.7826);animation:fall-108 27s -12s linear infinite}@keyframes fall-108{76.511%{transform:translate(60.6661vw,76.511vh) scale(.7826)}to{transform:translate(61.6883vw,99vh) scale(.7826)}}.snow:nth-child(109){opacity:.3224;transform:translate(18.5265vw,-10px) scale(.2588);animation:fall-109 11s -23s linear infinite}@keyframes fall-109{31.066%{transform:translate(17.218vw,31.066vh) scale(.2588)}to{transform:translate(17.87225vw,99vh) scale(.2588)}}.snow:nth-child(110){opacity:.866;transform:translate(76.2442vw,-10px) scale(.0981);animation:fall-110 20s -27s linear infinite}@keyframes fall-110{55.058%{transform:translate(79.3582vw,55.058vh) scale(.0981)}to{transform:translate(77.8012vw,99vh) scale(.0981)}}.snow:nth-child(111){opacity:.2478;transform:translate(82.8183vw,-10px) scale(.6062);animation:fall-111 19s -28s linear infinite}@keyframes fall-111{53.115%{transform:translate(83.7706vw,53.115vh) scale(.6062)}to{transform:translate(83.29445vw,99vh) scale(.6062)}}.snow:nth-child(112){opacity:1.365;transform:translate(29.7512vw,-10px) scale(.0006);animation:fall-112 15s -27s linear infinite}@keyframes fall-112{39.459%{transform:translate(32.3463vw,39.459vh) scale(.0006)}to{transform:translate(31.04875vw,99vh) scale(.0006)}}.snow:nth-child(113){opacity:1.7174;transform:translate(10.9988vw,-10px) scale(.3277);animation:fall-113 22s -11s linear infinite}@keyframes fall-113{50.662%{transform:translate(20.6037vw,50.662vh) scale(.3277)}to{transform:translate(15.80125vw,99vh) scale(.3277)}}.snow:nth-child(114){opacity:.0898;transform:translate(6.0345vw,-10px) scale(.6413);animation:fall-114 15s -18s linear infinite}@keyframes fall-114{64.812%{transform:translate(12.123vw,64.812vh) scale(.6413)}to{transform:translate(9.07875vw,99vh) scale(.6413)}}.snow:nth-child(115){opacity:1.4152;transform:translate(91.4048vw,-10px) scale(.5561);animation:fall-115 19s -14s linear infinite}@keyframes fall-115{48.279%{transform:translate(89.6178vw,48.279vh) scale(.5561)}to{transform:translate(90.5113vw,99vh) scale(.5561)}}.snow:nth-child(116){opacity:.6332;transform:translate(35.5204vw,-10px) scale(.7836);animation:fall-116 10s -16s linear infinite}@keyframes fall-116{51.656%{transform:translate(44.0579vw,51.656vh) scale(.7836)}to{transform:translate(39.78915vw,99vh) scale(.7836)}}.snow:nth-child(117){opacity:1.6896;transform:translate(73.5651vw,-10px) scale(.7844);animation:fall-117 20s -24s linear infinite}@keyframes fall-117{72.147%{transform:translate(69.4643vw,72.147vh) scale(.7844)}to{transform:translate(71.5147vw,99vh) scale(.7844)}}.snow:nth-child(118){opacity:.0352;transform:translate(26.2246vw,-10px) scale(.2331);animation:fall-118 28s -10s linear infinite}@keyframes fall-118{73.064%{transform:translate(17.9213vw,73.064vh) scale(.2331)}to{transform:translate(22.07295vw,99vh) scale(.2331)}}.snow:nth-child(119){opacity:.462;transform:translate(38.2002vw,-10px) scale(.0962);animation:fall-119 12s -16s linear infinite}@keyframes fall-119{41.899%{transform:translate(41.6286vw,41.899vh) scale(.0962)}to{transform:translate(39.9144vw,99vh) scale(.0962)}}.snow:nth-child(120){opacity:.546;transform:translate(6.7185vw,-10px) scale(.338);animation:fall-120 15s -2s linear infinite}@keyframes fall-120{31.309%{transform:translate(3.8186vw,31.309vh) scale(.338)}to{transform:translate(5.26855vw,99vh) scale(.338)}}.snow:nth-child(121){opacity:.5348;transform:translate(74.1573vw,-10px) scale(.4482);animation:fall-121 14s -17s linear infinite}@keyframes fall-121{75.529%{transform:translate(78.0726vw,75.529vh) scale(.4482)}to{transform:translate(76.11495vw,99vh) scale(.4482)}}.snow:nth-child(122){opacity:1.5968;transform:translate(87.6335vw,-10px) scale(.8699);animation:fall-122 12s -29s linear infinite}@keyframes fall-122{77.182%{transform:translate(83.4675vw,77.182vh) scale(.8699)}to{transform:translate(85.5505vw,99vh) scale(.8699)}}.snow:nth-child(123){opacity:1.2526;transform:translate(83.4252vw,-10px) scale(.441);animation:fall-123 23s -28s linear infinite}@keyframes fall-123{59.511%{transform:translate(91.5402vw,59.511vh) scale(.441)}to{transform:translate(87.4827vw,99vh) scale(.441)}}.snow:nth-child(124){opacity:1.8692;transform:translate(46.9132vw,-10px) scale(.1348);animation:fall-124 24s -6s linear infinite}@keyframes fall-124{45.779%{transform:translate(51.7497vw,45.779vh) scale(.1348)}to{transform:translate(49.33145vw,99vh) scale(.1348)}}.snow:nth-child(125){opacity:.534;transform:translate(70.3185vw,-10px) scale(.7902);animation:fall-125 23s -1s linear infinite}@keyframes fall-125{62.578%{transform:translate(71.3804vw,62.578vh) scale(.7902)}to{transform:translate(70.84945vw,99vh) scale(.7902)}}.snow:nth-child(126){opacity:.4348;transform:translate(27.4552vw,-10px) scale(.9392);animation:fall-126 10s -20s linear infinite}@keyframes fall-126{71.828%{transform:translate(18.0123vw,71.828vh) scale(.9392)}to{transform:translate(22.73375vw,99vh) scale(.9392)}}.snow:nth-child(127){opacity:1.338;transform:translate(76.4813vw,-10px) scale(.5934);animation:fall-127 10s -22s linear infinite}@keyframes fall-127{30.266%{transform:translate(82.773vw,30.266vh) scale(.5934)}to{transform:translate(79.62715vw,99vh) scale(.5934)}}.snow:nth-child(128){opacity:1.9358;transform:translate(98.6575vw,-10px) scale(.0984);animation:fall-128 13s -12s linear infinite}@keyframes fall-128{43.56%{transform:translate(97.134vw,43.56vh) scale(.0984)}to{transform:translate(97.89575vw,99vh) scale(.0984)}}.snow:nth-child(129){opacity:.1604;transform:translate(8.9991vw,-10px) scale(.8355);animation:fall-129 14s -25s linear infinite}@keyframes fall-129{42.881%{transform:translate(14.2364vw,42.881vh) scale(.8355)}to{transform:translate(11.61775vw,99vh) scale(.8355)}}.snow:nth-child(130){opacity:.1338;transform:translate(56.0659vw,-10px) scale(.7805);animation:fall-130 22s -18s linear infinite}@keyframes fall-130{79.747%{transform:translate(63.8896vw,79.747vh) scale(.7805)}to{transform:translate(59.97775vw,99vh) scale(.7805)}}.snow:nth-child(131){opacity:1.4484;transform:translate(47.32vw,-10px) scale(.1924);animation:fall-131 25s -20s linear infinite}@keyframes fall-131{76.566%{transform:translate(46.7814vw,76.566vh) scale(.1924)}to{transform:translate(47.0507vw,99vh) scale(.1924)}}.snow:nth-child(132){opacity:1.0146;transform:translate(84.5978vw,-10px) scale(.0353);animation:fall-132 20s -4s linear infinite}@keyframes fall-132{57.165%{transform:translate(85.5608vw,57.165vh) scale(.0353)}to{transform:translate(85.0793vw,99vh) scale(.0353)}}.snow:nth-child(133){opacity:1.4054;transform:translate(35.5628vw,-10px) scale(.781);animation:fall-133 20s -24s linear infinite}@keyframes fall-133{33.554%{transform:translate(30.2036vw,33.554vh) scale(.781)}to{transform:translate(32.8832vw,99vh) scale(.781)}}.snow:nth-child(134){opacity:.0198;transform:translate(45.5275vw,-10px) scale(.3355);animation:fall-134 21s -27s linear infinite}@keyframes fall-134{34.769%{transform:translate(53.9455vw,34.769vh) scale(.3355)}to{transform:translate(49.7365vw,99vh) scale(.3355)}}.snow:nth-child(135){opacity:1.0194;transform:translate(63.4617vw,-10px) scale(.3516);animation:fall-135 20s -9s linear infinite}@keyframes fall-135{49.427%{transform:translate(68.5134vw,49.427vh) scale(.3516)}to{transform:translate(65.98755vw,99vh) scale(.3516)}}.snow:nth-child(136){opacity:.3834;transform:translate(65.0021vw,-10px) scale(.3121);animation:fall-136 22s -28s linear infinite}@keyframes fall-136{57.209%{transform:translate(71.4221vw,57.209vh) scale(.3121)}to{transform:translate(68.2121vw,99vh) scale(.3121)}}.snow:nth-child(137){opacity:1.936;transform:translate(79.688vw,-10px) scale(.1784);animation:fall-137 14s -23s linear infinite}@keyframes fall-137{78.702%{transform:translate(82.1062vw,78.702vh) scale(.1784)}to{transform:translate(80.8971vw,99vh) scale(.1784)}}.snow:nth-child(138){opacity:1.227;transform:translate(84.128vw,-10px) scale(.2219);animation:fall-138 15s -30s linear infinite}@keyframes fall-138{56.328%{transform:translate(91.3078vw,56.328vh) scale(.2219)}to{transform:translate(87.7179vw,99vh) scale(.2219)}}.snow:nth-child(139){opacity:.291;transform:translate(96.9724vw,-10px) scale(.1119);animation:fall-139 22s -7s linear infinite}@keyframes fall-139{66.604%{transform:translate(102.23vw,66.604vh) scale(.1119)}to{transform:translate(99.6012vw,99vh) scale(.1119)}}.snow:nth-child(140){opacity:1.0926;transform:translate(53.7785vw,-10px) scale(.4923);animation:fall-140 17s -12s linear infinite}@keyframes fall-140{37.154%{transform:translate(63.6145vw,37.154vh) scale(.4923)}to{transform:translate(58.6965vw,99vh) scale(.4923)}}.snow:nth-child(141){opacity:.073;transform:translate(16.2408vw,-10px) scale(.9633);animation:fall-141 24s -23s linear infinite}@keyframes fall-141{68.483%{transform:translate(23.5162vw,68.483vh) scale(.9633)}to{transform:translate(19.8785vw,99vh) scale(.9633)}}.snow:nth-child(142){opacity:1.3294;transform:translate(45.7637vw,-10px) scale(.1278);animation:fall-142 23s -8s linear infinite}@keyframes fall-142{68.564%{transform:translate(38.1241vw,68.564vh) scale(.1278)}to{transform:translate(41.9439vw,99vh) scale(.1278)}}.snow:nth-child(143){opacity:.0594;transform:translate(78.245vw,-10px) scale(.8776);animation:fall-143 19s -18s linear infinite}@keyframes fall-143{34.465%{transform:translate(74.6723vw,34.465vh) scale(.8776)}to{transform:translate(76.45865vw,99vh) scale(.8776)}}.snow:nth-child(144){opacity:.6522;transform:translate(92.5988vw,-10px) scale(.8904);animation:fall-144 30s -20s linear infinite}@keyframes fall-144{70.787%{transform:translate(84.6394vw,70.787vh) scale(.8904)}to{transform:translate(88.6191vw,99vh) scale(.8904)}}.snow:nth-child(145){opacity:.6914;transform:translate(66.4521vw,-10px) scale(.0698);animation:fall-145 18s -7s linear infinite}@keyframes fall-145{47.585%{transform:translate(67.9885vw,47.585vh) scale(.0698)}to{transform:translate(67.2203vw,99vh) scale(.0698)}}.snow:nth-child(146){opacity:.149;transform:translate(27.8146vw,-10px) scale(.7773);animation:fall-146 30s -20s linear infinite}@keyframes fall-146{31.347%{transform:translate(19.8692vw,31.347vh) scale(.7773)}to{transform:translate(23.8419vw,99vh) scale(.7773)}}.snow:nth-child(147){opacity:.1636;transform:translate(64.861vw,-10px) scale(.1596);animation:fall-147 20s -19s linear infinite}@keyframes fall-147{78.853%{transform:translate(65.746vw,78.853vh) scale(.1596)}to{transform:translate(65.3035vw,99vh) scale(.1596)}}.snow:nth-child(148){opacity:.2522;transform:translate(56.8343vw,-10px) scale(.6441);animation:fall-148 20s -5s linear infinite}@keyframes fall-148{55.039%{transform:translate(48.8102vw,55.039vh) scale(.6441)}to{transform:translate(52.82225vw,99vh) scale(.6441)}}.snow:nth-child(149){opacity:.7636;transform:translate(8.8347vw,-10px) scale(.1766);animation:fall-149 12s -15s linear infinite}@keyframes fall-149{65.183%{transform:translate(13.0398vw,65.183vh) scale(.1766)}to{transform:translate(10.93725vw,99vh) scale(.1766)}}.snow:nth-child(150){opacity:.5968;transform:translate(67.2048vw,-10px) scale(.5911);animation:fall-150 10s -1s linear infinite}@keyframes fall-150{67.357%{transform:translate(59.5729vw,67.357vh) scale(.5911)}to{transform:translate(63.38885vw,99vh) scale(.5911)}}.snow:nth-child(151){opacity:.799;transform:translate(26.6169vw,-10px) scale(.3325);animation:fall-151 17s -11s linear infinite}@keyframes fall-151{51.847%{transform:translate(27.7068vw,51.847vh) scale(.3325)}to{transform:translate(27.16185vw,99vh) scale(.3325)}}.snow:nth-child(152){opacity:1.2026;transform:translate(65.1575vw,-10px) scale(.2551);animation:fall-152 29s -13s linear infinite}@keyframes fall-152{40.833%{transform:translate(74.4877vw,40.833vh) scale(.2551)}to{transform:translate(69.8226vw,99vh) scale(.2551)}}.snow:nth-child(153){opacity:.9236;transform:translate(58.2045vw,-10px) scale(.5141);animation:fall-153 29s -1s linear infinite}@keyframes fall-153{64.45%{transform:translate(66.8818vw,64.45vh) scale(.5141)}to{transform:translate(62.54315vw,99vh) scale(.5141)}}.snow:nth-child(154){opacity:.8204;transform:translate(35.5827vw,-10px) scale(.6636);animation:fall-154 23s -4s linear infinite}@keyframes fall-154{36.096%{transform:translate(26.5398vw,36.096vh) scale(.6636)}to{transform:translate(31.06125vw,99vh) scale(.6636)}}.snow:nth-child(155){opacity:1.7584;transform:translate(33.8678vw,-10px) scale(.8887);animation:fall-155 18s -19s linear infinite}@keyframes fall-155{34.234%{transform:translate(30.6597vw,34.234vh) scale(.8887)}to{transform:translate(32.26375vw,99vh) scale(.8887)}}.snow:nth-child(156){opacity:1.995;transform:translate(4.4753vw,-10px) scale(.5145);animation:fall-156 14s -9s linear infinite}@keyframes fall-156{53.654%{transform:translate(5.8286vw,53.654vh) scale(.5145)}to{transform:translate(5.15195vw,99vh) scale(.5145)}}.snow:nth-child(157){opacity:.4618;transform:translate(.0238vw,-10px) scale(.6382);animation:fall-157 21s -13s linear infinite}@keyframes fall-157{31.011%{transform:translate(-7.125vw,31.011vh) scale(.6382)}to{transform:translate(-3.5506vw,99vh) scale(.6382)}}.snow:nth-child(158){opacity:1.863;transform:translate(44.4334vw,-10px) scale(.7419);animation:fall-158 25s -15s linear infinite}@keyframes fall-158{35.452%{transform:translate(51.8009vw,35.452vh) scale(.7419)}to{transform:translate(48.11715vw,99vh) scale(.7419)}}.snow:nth-child(159){opacity:1.5576;transform:translate(24.4812vw,-10px) scale(.5861);animation:fall-159 21s -6s linear infinite}@keyframes fall-159{66.464%{transform:translate(24.1022vw,66.464vh) scale(.5861)}to{transform:translate(24.2917vw,99vh) scale(.5861)}}.snow:nth-child(160){opacity:.0408;transform:translate(97.4285vw,-10px) scale(.9407);animation:fall-160 10s -8s linear infinite}@keyframes fall-160{45.165%{transform:translate(101.0891vw,45.165vh) scale(.9407)}to{transform:translate(99.2588vw,99vh) scale(.9407)}}.snow:nth-child(161){opacity:1.069;transform:translate(22.739vw,-10px) scale(.7882);animation:fall-161 11s -11s linear infinite}@keyframes fall-161{61.646%{transform:translate(17.3763vw,61.646vh) scale(.7882)}to{transform:translate(20.05765vw,99vh) scale(.7882)}}.snow:nth-child(162){opacity:1.805;transform:translate(80.8678vw,-10px) scale(.0567);animation:fall-162 29s -17s linear infinite}@keyframes fall-162{75.524%{transform:translate(77.3124vw,75.524vh) scale(.0567)}to{transform:translate(79.0901vw,99vh) scale(.0567)}}.snow:nth-child(163){opacity:1.4014;transform:translate(30.1196vw,-10px) scale(.3569);animation:fall-163 15s -29s linear infinite}@keyframes fall-163{62.002%{transform:translate(28.4333vw,62.002vh) scale(.3569)}to{transform:translate(29.27645vw,99vh) scale(.3569)}}.snow:nth-child(164){opacity:.4348;transform:translate(68.8342vw,-10px) scale(.283);animation:fall-164 15s -8s linear infinite}@keyframes fall-164{64.763%{transform:translate(78.7339vw,64.763vh) scale(.283)}to{transform:translate(73.78405vw,99vh) scale(.283)}}.snow:nth-child(165){opacity:.15;transform:translate(19.7461vw,-10px) scale(.5979);animation:fall-165 14s -28s linear infinite}@keyframes fall-165{78.346%{transform:translate(11.5024vw,78.346vh) scale(.5979)}to{transform:translate(15.62425vw,99vh) scale(.5979)}}.snow:nth-child(166){opacity:1.6188;transform:translate(97.1302vw,-10px) scale(.2487);animation:fall-166 28s -23s linear infinite}@keyframes fall-166{43.341%{transform:translate(96.1844vw,43.341vh) scale(.2487)}to{transform:translate(96.6573vw,99vh) scale(.2487)}}.snow:nth-child(167){opacity:1.0122;transform:translate(98.9679vw,-10px) scale(.9323);animation:fall-167 16s -7s linear infinite}@keyframes fall-167{71.96%{transform:translate(105.9018vw,71.96vh) scale(.9323)}to{transform:translate(102.43485vw,99vh) scale(.9323)}}.snow:nth-child(168){opacity:1.1684;transform:translate(63.6251vw,-10px) scale(.5456);animation:fall-168 14s -21s linear infinite}@keyframes fall-168{33.162%{transform:translate(65.1112vw,33.162vh) scale(.5456)}to{transform:translate(64.36815vw,99vh) scale(.5456)}}.snow:nth-child(169){opacity:.4756;transform:translate(12.4444vw,-10px) scale(.562);animation:fall-169 16s -26s linear infinite}@keyframes fall-169{64.497%{transform:translate(10.0288vw,64.497vh) scale(.562)}to{transform:translate(11.2366vw,99vh) scale(.562)}}.snow:nth-child(170){opacity:1.4506;transform:translate(46.7274vw,-10px) scale(.8427);animation:fall-170 19s -13s linear infinite}@keyframes fall-170{78.211%{transform:translate(56.0015vw,78.211vh) scale(.8427)}to{transform:translate(51.36445vw,99vh) scale(.8427)}}.snow:nth-child(171){opacity:.3672;transform:translate(54.8495vw,-10px) scale(.1872);animation:fall-171 21s -11s linear infinite}@keyframes fall-171{46.647%{transform:translate(53.8582vw,46.647vh) scale(.1872)}to{transform:translate(54.35385vw,99vh) scale(.1872)}}.snow:nth-child(172){opacity:.5252;transform:translate(22.1056vw,-10px) scale(.7675);animation:fall-172 16s -25s linear infinite}@keyframes fall-172{31.22%{transform:translate(15.2955vw,31.22vh) scale(.7675)}to{transform:translate(18.70055vw,99vh) scale(.7675)}}.snow:nth-child(173){opacity:.3144;transform:translate(71.8835vw,-10px) scale(.9903);animation:fall-173 30s -2s linear infinite}@keyframes fall-173{37.536%{transform:translate(79.613vw,37.536vh) scale(.9903)}to{transform:translate(75.74825vw,99vh) scale(.9903)}}.snow:nth-child(174){opacity:.981;transform:translate(15.0891vw,-10px) scale(.0345);animation:fall-174 22s -15s linear infinite}@keyframes fall-174{47.675%{transform:translate(8.9336vw,47.675vh) scale(.0345)}to{transform:translate(12.01135vw,99vh) scale(.0345)}}.snow:nth-child(175){opacity:1.9504;transform:translate(75.2325vw,-10px) scale(.3883);animation:fall-175 10s -27s linear infinite}@keyframes fall-175{52.727%{transform:translate(67.8772vw,52.727vh) scale(.3883)}to{transform:translate(71.55485vw,99vh) scale(.3883)}}.snow:nth-child(176){opacity:1.6394;transform:translate(27.4562vw,-10px) scale(.4101);animation:fall-176 23s -26s linear infinite}@keyframes fall-176{31.617%{transform:translate(34.0739vw,31.617vh) scale(.4101)}to{transform:translate(30.76505vw,99vh) scale(.4101)}}.snow:nth-child(177){opacity:.78;transform:translate(93.2811vw,-10px) scale(.6767);animation:fall-177 17s -24s linear infinite}@keyframes fall-177{39.446%{transform:translate(89.8221vw,39.446vh) scale(.6767)}to{transform:translate(91.5516vw,99vh) scale(.6767)}}.snow:nth-child(178){opacity:.4296;transform:translate(97.0506vw,-10px) scale(.8768);animation:fall-178 28s -11s linear infinite}@keyframes fall-178{35.455%{transform:translate(104.7617vw,35.455vh) scale(.8768)}to{transform:translate(100.90615vw,99vh) scale(.8768)}}.snow:nth-child(179){opacity:.8174;transform:translate(69.4139vw,-10px) scale(.7236);animation:fall-179 24s -21s linear infinite}@keyframes fall-179{38.251%{transform:translate(69.4779vw,38.251vh) scale(.7236)}to{transform:translate(69.4459vw,99vh) scale(.7236)}}.snow:nth-child(180){opacity:1.1406;transform:translate(54.3002vw,-10px) scale(.1366);animation:fall-180 23s -27s linear infinite}@keyframes fall-180{56.813%{transform:translate(63.6101vw,56.813vh) scale(.1366)}to{transform:translate(58.95515vw,99vh) scale(.1366)}}.snow:nth-child(181){opacity:1.4982;transform:translate(50.717vw,-10px) scale(.0465);animation:fall-181 15s -15s linear infinite}@keyframes fall-181{74.398%{transform:translate(48.8266vw,74.398vh) scale(.0465)}to{transform:translate(49.7718vw,99vh) scale(.0465)}}.snow:nth-child(182){opacity:.5924;transform:translate(71.4471vw,-10px) scale(.4583);animation:fall-182 25s -26s linear infinite}@keyframes fall-182{42.901%{transform:translate(66.8421vw,42.901vh) scale(.4583)}to{transform:translate(69.1446vw,99vh) scale(.4583)}}.snow:nth-child(183){opacity:.5592;transform:translate(93.4955vw,-10px) scale(.8711);animation:fall-183 24s -21s linear infinite}@keyframes fall-183{68.508%{transform:translate(99.7508vw,68.508vh) scale(.8711)}to{transform:translate(96.62315vw,99vh) scale(.8711)}}.snow:nth-child(184){opacity:1.0282;transform:translate(12.667vw,-10px) scale(.9656);animation:fall-184 26s -7s linear infinite}@keyframes fall-184{38.219%{transform:translate(22.1243vw,38.219vh) scale(.9656)}to{transform:translate(17.39565vw,99vh) scale(.9656)}}.snow:nth-child(185){opacity:.0448;transform:translate(62.9599vw,-10px) scale(.359);animation:fall-185 24s -4s linear infinite}@keyframes fall-185{72.966%{transform:translate(67.7338vw,72.966vh) scale(.359)}to{transform:translate(65.34685vw,99vh) scale(.359)}}.snow:nth-child(186){opacity:.3238;transform:translate(37.8175vw,-10px) scale(.5842);animation:fall-186 14s -26s linear infinite}@keyframes fall-186{55.014%{transform:translate(39.5215vw,55.014vh) scale(.5842)}to{transform:translate(38.6695vw,99vh) scale(.5842)}}.snow:nth-child(187){opacity:1.4726;transform:translate(10.5368vw,-10px) scale(.3006);animation:fall-187 30s -23s linear infinite}@keyframes fall-187{40.083%{transform:translate(8.518vw,40.083vh) scale(.3006)}to{transform:translate(9.5274vw,99vh) scale(.3006)}}.snow:nth-child(188){opacity:.8308;transform:translate(4.4519vw,-10px) scale(.4376);animation:fall-188 23s -16s linear infinite}@keyframes fall-188{38.609%{transform:translate(-2.2255vw,38.609vh) scale(.4376)}to{transform:translate(1.1132vw,99vh) scale(.4376)}}.snow:nth-child(189){opacity:.7156;transform:translate(31.7223vw,-10px) scale(.7076);animation:fall-189 16s -3s linear infinite}@keyframes fall-189{71.879%{transform:translate(25.3132vw,71.879vh) scale(.7076)}to{transform:translate(28.51775vw,99vh) scale(.7076)}}.snow:nth-child(190){opacity:1.5564;transform:translate(23.9865vw,-10px) scale(.3045);animation:fall-190 28s -27s linear infinite}@keyframes fall-190{75.382%{transform:translate(16.9433vw,75.382vh) scale(.3045)}to{transform:translate(20.4649vw,99vh) scale(.3045)}}.snow:nth-child(191){opacity:1.8492;transform:translate(49.598vw,-10px) scale(.4747);animation:fall-191 20s -2s linear infinite}@keyframes fall-191{62.035%{transform:translate(49.2797vw,62.035vh) scale(.4747)}to{transform:translate(49.43885vw,99vh) scale(.4747)}}.snow:nth-child(192){opacity:1.588;transform:translate(48.0489vw,-10px) scale(.1395);animation:fall-192 28s -5s linear infinite}@keyframes fall-192{63.405%{transform:translate(39.8119vw,63.405vh) scale(.1395)}to{transform:translate(43.9304vw,99vh) scale(.1395)}}.snow:nth-child(193){opacity:.1676;transform:translate(30.1888vw,-10px) scale(.7519);animation:fall-193 26s -30s linear infinite}@keyframes fall-193{53.634%{transform:translate(21.5363vw,53.634vh) scale(.7519)}to{transform:translate(25.86255vw,99vh) scale(.7519)}}.snow:nth-child(194){opacity:.9738;transform:translate(61.3381vw,-10px) scale(.0103);animation:fall-194 24s -19s linear infinite}@keyframes fall-194{76.12%{transform:translate(54.833vw,76.12vh) scale(.0103)}to{transform:translate(58.08555vw,99vh) scale(.0103)}}.snow:nth-child(195){opacity:.4132;transform:translate(61.7474vw,-10px) scale(.5155);animation:fall-195 26s -10s linear infinite}@keyframes fall-195{79.778%{transform:translate(64.8958vw,79.778vh) scale(.5155)}to{transform:translate(63.3216vw,99vh) scale(.5155)}}.snow:nth-child(196){opacity:1.2436;transform:translate(75.3784vw,-10px) scale(.2139);animation:fall-196 11s -19s linear infinite}@keyframes fall-196{55.726%{transform:translate(85.0358vw,55.726vh) scale(.2139)}to{transform:translate(80.2071vw,99vh) scale(.2139)}}.snow:nth-child(197){opacity:1.8022;transform:translate(76.4522vw,-10px) scale(.7168);animation:fall-197 11s -16s linear infinite}@keyframes fall-197{38.434%{transform:translate(73.862vw,38.434vh) scale(.7168)}to{transform:translate(75.1571vw,99vh) scale(.7168)}}.snow:nth-child(198){opacity:1.3454;transform:translate(31.077vw,-10px) scale(.8562);animation:fall-198 23s -29s linear infinite}@keyframes fall-198{61.643%{transform:translate(33.1928vw,61.643vh) scale(.8562)}to{transform:translate(32.1349vw,99vh) scale(.8562)}}.snow:nth-child(199){opacity:.5856;transform:translate(47.5252vw,-10px) scale(.3087);animation:fall-199 17s -10s linear infinite}@keyframes fall-199{76.859%{transform:translate(48.1052vw,76.859vh) scale(.3087)}to{transform:translate(47.8152vw,99vh) scale(.3087)}}.snow:nth-child(200){opacity:1.851;transform:translate(12.1478vw,-10px) scale(.0326);animation:fall-200 19s -12s linear infinite}@keyframes fall-200{54.54%{transform:translate(4.0212vw,54.54vh) scale(.0326)}to{transform:translate(8.0845vw,99vh) scale(.0326)}}.snow:nth-child(201){opacity:1.8136;transform:translate(40.2018vw,-10px) scale(.9234);animation:fall-201 23s -21s linear infinite}@keyframes fall-201{59.367%{transform:translate(33.8471vw,59.367vh) scale(.9234)}to{transform:translate(37.02445vw,99vh) scale(.9234)}}.snow:nth-child(202){opacity:.5094;transform:translate(96.2997vw,-10px) scale(.4166);animation:fall-202 27s -18s linear infinite}@keyframes fall-202{71.532%{transform:translate(102.2357vw,71.532vh) scale(.4166)}to{transform:translate(99.2677vw,99vh) scale(.4166)}}.snow:nth-child(203){opacity:.3578;transform:translate(74.5744vw,-10px) scale(.0559);animation:fall-203 21s -13s linear infinite}@keyframes fall-203{63.129%{transform:translate(77.5729vw,63.129vh) scale(.0559)}to{transform:translate(76.07365vw,99vh) scale(.0559)}}.snow:nth-child(204){opacity:.821;transform:translate(57.8817vw,-10px) scale(.6223);animation:fall-204 26s -6s linear infinite}@keyframes fall-204{52.428%{transform:translate(56.9918vw,52.428vh) scale(.6223)}to{transform:translate(57.43675vw,99vh) scale(.6223)}}.snow:nth-child(205){opacity:1.3344;transform:translate(86.7067vw,-10px) scale(.3793);animation:fall-205 10s -3s linear infinite}@keyframes fall-205{58.872%{transform:translate(95.8726vw,58.872vh) scale(.3793)}to{transform:translate(91.28965vw,99vh) scale(.3793)}}.snow:nth-child(206){opacity:1.2872;transform:translate(73.3545vw,-10px) scale(.9235);animation:fall-206 11s -1s linear infinite}@keyframes fall-206{64.129%{transform:translate(75.4761vw,64.129vh) scale(.9235)}to{transform:translate(74.4153vw,99vh) scale(.9235)}}.snow:nth-child(207){opacity:.7476;transform:translate(26.8118vw,-10px) scale(.3662);animation:fall-207 14s -26s linear infinite}@keyframes fall-207{53.708%{transform:translate(28.0926vw,53.708vh) scale(.3662)}to{transform:translate(27.4522vw,99vh) scale(.3662)}}.snow:nth-child(208){opacity:.242;transform:translate(45.4247vw,-10px) scale(.4287);animation:fall-208 23s -12s linear infinite}@keyframes fall-208{66.481%{transform:translate(41.7029vw,66.481vh) scale(.4287)}to{transform:translate(43.5638vw,99vh) scale(.4287)}}.snow:nth-child(209){opacity:1.4584;transform:translate(22.8706vw,-10px) scale(.9841);animation:fall-209 26s -24s linear infinite}@keyframes fall-209{37.523%{transform:translate(18.8397vw,37.523vh) scale(.9841)}to{transform:translate(20.85515vw,99vh) scale(.9841)}}.snow:nth-child(210){opacity:.023;transform:translate(29.0897vw,-10px) scale(.8506);animation:fall-210 12s -19s linear infinite}@keyframes fall-210{69.749%{transform:translate(19.4059vw,69.749vh) scale(.8506)}to{transform:translate(24.2478vw,99vh) scale(.8506)}}.snow:nth-child(211){opacity:1.8904;transform:translate(96.601vw,-10px) scale(.0838);animation:fall-211 25s -29s linear infinite}@keyframes fall-211{50.387%{transform:translate(101.8671vw,50.387vh) scale(.0838)}to{transform:translate(99.23405vw,99vh) scale(.0838)}}.snow:nth-child(212){opacity:.9336;transform:translate(65.6649vw,-10px) scale(.7006);animation:fall-212 21s -19s linear infinite}@keyframes fall-212{63.231%{transform:translate(57.4798vw,63.231vh) scale(.7006)}to{transform:translate(61.57235vw,99vh) scale(.7006)}}.snow:nth-child(213){opacity:.0618;transform:translate(35.8705vw,-10px) scale(.219);animation:fall-213 23s -3s linear infinite}@keyframes fall-213{58.728%{transform:translate(33.2555vw,58.728vh) scale(.219)}to{transform:translate(34.563vw,99vh) scale(.219)}}.snow:nth-child(214){opacity:1.8218;transform:translate(37.1566vw,-10px) scale(.3424);animation:fall-214 12s -24s linear infinite}@keyframes fall-214{69.991%{transform:translate(44.4626vw,69.991vh) scale(.3424)}to{transform:translate(40.8096vw,99vh) scale(.3424)}}.snow:nth-child(215){opacity:1.8328;transform:translate(34.4037vw,-10px) scale(.4872);animation:fall-215 22s -10s linear infinite}@keyframes fall-215{70.908%{transform:translate(41.0564vw,70.908vh) scale(.4872)}to{transform:translate(37.73005vw,99vh) scale(.4872)}}.snow:nth-child(216){opacity:.0562;transform:translate(68.2348vw,-10px) scale(.9918);animation:fall-216 17s -20s linear infinite}@keyframes fall-216{36.867%{transform:translate(66.4738vw,36.867vh) scale(.9918)}to{transform:translate(67.3543vw,99vh) scale(.9918)}}.snow:nth-child(217){opacity:1.2974;transform:translate(9.5372vw,-10px) scale(.6871);animation:fall-217 15s -18s linear infinite}@keyframes fall-217{68.389%{transform:translate(10.118vw,68.389vh) scale(.6871)}to{transform:translate(9.8276vw,99vh) scale(.6871)}}.snow:nth-child(218){opacity:.9302;transform:translate(7.9013vw,-10px) scale(.0632);animation:fall-218 29s -19s linear infinite}@keyframes fall-218{74.727%{transform:translate(10.9417vw,74.727vh) scale(.0632)}to{transform:translate(9.4215vw,99vh) scale(.0632)}}.snow:nth-child(219){opacity:.249;transform:translate(69.2913vw,-10px) scale(.4423);animation:fall-219 16s -16s linear infinite}@keyframes fall-219{39.81%{transform:translate(76.4436vw,39.81vh) scale(.4423)}to{transform:translate(72.86745vw,99vh) scale(.4423)}}.snow:nth-child(220){opacity:.6988;transform:translate(53.76vw,-10px) scale(.9167);animation:fall-220 13s -11s linear infinite}@keyframes fall-220{59.814%{transform:translate(53.5693vw,59.814vh) scale(.9167)}to{transform:translate(53.66465vw,99vh) scale(.9167)}}.snow:nth-child(221){opacity:.0746;transform:translate(69.2715vw,-10px) scale(.5974);animation:fall-221 16s -29s linear infinite}@keyframes fall-221{69.758%{transform:translate(64.2748vw,69.758vh) scale(.5974)}to{transform:translate(66.77315vw,99vh) scale(.5974)}}.snow:nth-child(222){opacity:1.0058;transform:translate(62.3363vw,-10px) scale(.3772);animation:fall-222 23s -5s linear infinite}@keyframes fall-222{62.569%{transform:translate(61.358vw,62.569vh) scale(.3772)}to{transform:translate(61.84715vw,99vh) scale(.3772)}}.snow:nth-child(223){opacity:.477;transform:translate(54.4817vw,-10px) scale(.0235);animation:fall-223 15s -30s linear infinite}@keyframes fall-223{35.457%{transform:translate(51.2964vw,35.457vh) scale(.0235)}to{transform:translate(52.88905vw,99vh) scale(.0235)}}.snow:nth-child(224){opacity:1.5956;transform:translate(32.9657vw,-10px) scale(.2986);animation:fall-224 17s -25s linear infinite}@keyframes fall-224{36.247%{transform:translate(26.5215vw,36.247vh) scale(.2986)}to{transform:translate(29.7436vw,99vh) scale(.2986)}}.snow:nth-child(225){opacity:1.3198;transform:translate(25.5899vw,-10px) scale(.8595);animation:fall-225 24s -17s linear infinite}@keyframes fall-225{32.007%{transform:translate(22.1077vw,32.007vh) scale(.8595)}to{transform:translate(23.8488vw,99vh) scale(.8595)}}.snow:nth-child(226){opacity:1.8412;transform:translate(26.1657vw,-10px) scale(.8268);animation:fall-226 18s -1s linear infinite}@keyframes fall-226{77.663%{transform:translate(22.3422vw,77.663vh) scale(.8268)}to{transform:translate(24.25395vw,99vh) scale(.8268)}}.snow:nth-child(227){opacity:.6002;transform:translate(20.9137vw,-10px) scale(.9774);animation:fall-227 30s -27s linear infinite}@keyframes fall-227{45.891%{transform:translate(13.097vw,45.891vh) scale(.9774)}to{transform:translate(17.00535vw,99vh) scale(.9774)}}.snow:nth-child(228){opacity:1.1768;transform:translate(38.1977vw,-10px) scale(.5847);animation:fall-228 22s -3s linear infinite}@keyframes fall-228{41.453%{transform:translate(28.5861vw,41.453vh) scale(.5847)}to{transform:translate(33.3919vw,99vh) scale(.5847)}}.snow:nth-child(229){opacity:1.6206;transform:translate(63.878vw,-10px) scale(.9627);animation:fall-229 22s -29s linear infinite}@keyframes fall-229{39.572%{transform:translate(55.3413vw,39.572vh) scale(.9627)}to{transform:translate(59.60965vw,99vh) scale(.9627)}}.snow:nth-child(230){opacity:.809;transform:translate(15.2939vw,-10px) scale(.2018);animation:fall-230 12s -13s linear infinite}@keyframes fall-230{52.694%{transform:translate(22.3567vw,52.694vh) scale(.2018)}to{transform:translate(18.8253vw,99vh) scale(.2018)}}.snow:nth-child(231){opacity:.5974;transform:translate(20.8246vw,-10px) scale(.2624);animation:fall-231 21s -25s linear infinite}@keyframes fall-231{61.958%{transform:translate(17.9065vw,61.958vh) scale(.2624)}to{transform:translate(19.36555vw,99vh) scale(.2624)}}.snow:nth-child(232){opacity:.419;transform:translate(81.7384vw,-10px) scale(.5541);animation:fall-232 16s -7s linear infinite}@keyframes fall-232{48.434%{transform:translate(87.3963vw,48.434vh) scale(.5541)}to{transform:translate(84.56735vw,99vh) scale(.5541)}}.snow:nth-child(233){opacity:.2298;transform:translate(21.5153vw,-10px) scale(.2174);animation:fall-233 29s -3s linear infinite}@keyframes fall-233{58.37%{transform:translate(29.9732vw,58.37vh) scale(.2174)}to{transform:translate(25.74425vw,99vh) scale(.2174)}}.snow:nth-child(234){opacity:.016;transform:translate(99.9246vw,-10px) scale(.4369);animation:fall-234 15s -19s linear infinite}@keyframes fall-234{51.305%{transform:translate(98.0119vw,51.305vh) scale(.4369)}to{transform:translate(98.96825vw,99vh) scale(.4369)}}.snow:nth-child(235){opacity:1.1786;transform:translate(37.5964vw,-10px) scale(.2417);animation:fall-235 26s -8s linear infinite}@keyframes fall-235{51.962%{transform:translate(33.3028vw,51.962vh) scale(.2417)}to{transform:translate(35.4496vw,99vh) scale(.2417)}}.snow:nth-child(236){opacity:.008;transform:translate(39.9325vw,-10px) scale(.0617);animation:fall-236 20s -12s linear infinite}@keyframes fall-236{65.279%{transform:translate(33.5603vw,65.279vh) scale(.0617)}to{transform:translate(36.7464vw,99vh) scale(.0617)}}.snow:nth-child(237){opacity:1.8078;transform:translate(88.2541vw,-10px) scale(.7779);animation:fall-237 29s -29s linear infinite}@keyframes fall-237{40.679%{transform:translate(98.1069vw,40.679vh) scale(.7779)}to{transform:translate(93.1805vw,99vh) scale(.7779)}}.snow:nth-child(238){opacity:.3724;transform:translate(42.9783vw,-10px) scale(.2568);animation:fall-238 18s -12s linear infinite}@keyframes fall-238{38.361%{transform:translate(41.2157vw,38.361vh) scale(.2568)}to{transform:translate(42.097vw,99vh) scale(.2568)}}.snow:nth-child(239){opacity:.1748;transform:translate(86.2055vw,-10px) scale(.1584);animation:fall-239 18s -4s linear infinite}@keyframes fall-239{60.222%{transform:translate(77.8522vw,60.222vh) scale(.1584)}to{transform:translate(82.02885vw,99vh) scale(.1584)}}.snow:nth-child(240){opacity:.3032;transform:translate(61.1642vw,-10px) scale(.5696);animation:fall-240 12s -17s linear infinite}@keyframes fall-240{58.021%{transform:translate(52.945vw,58.021vh) scale(.5696)}to{transform:translate(57.0546vw,99vh) scale(.5696)}}.snow:nth-child(241){opacity:1.9258;transform:translate(10.2262vw,-10px) scale(.6964);animation:fall-241 13s -20s linear infinite}@keyframes fall-241{31.777%{transform:translate(1.0935vw,31.777vh) scale(.6964)}to{transform:translate(5.65985vw,99vh) scale(.6964)}}.snow:nth-child(242){opacity:.97;transform:translate(74.9402vw,-10px) scale(.7609);animation:fall-242 18s -4s linear infinite}@keyframes fall-242{75.071%{transform:translate(69.7253vw,75.071vh) scale(.7609)}to{transform:translate(72.33275vw,99vh) scale(.7609)}}.snow:nth-child(243){opacity:.88;transform:translate(29.1834vw,-10px) scale(.0502);animation:fall-243 30s -23s linear infinite}@keyframes fall-243{63.063%{transform:translate(28.8284vw,63.063vh) scale(.0502)}to{transform:translate(29.0059vw,99vh) scale(.0502)}}.snow:nth-child(244){opacity:1.5816;transform:translate(19.1057vw,-10px) scale(.3019);animation:fall-244 22s -22s linear infinite}@keyframes fall-244{33.998%{transform:translate(16.1231vw,33.998vh) scale(.3019)}to{transform:translate(17.6144vw,99vh) scale(.3019)}}.snow:nth-child(245){opacity:.373;transform:translate(95.6341vw,-10px) scale(.3312);animation:fall-245 17s -15s linear infinite}@keyframes fall-245{55.932%{transform:translate(89.7223vw,55.932vh) scale(.3312)}to{transform:translate(92.6782vw,99vh) scale(.3312)}}.snow:nth-child(246){opacity:1.0128;transform:translate(88.2018vw,-10px) scale(.4991);animation:fall-246 11s -16s linear infinite}@keyframes fall-246{44.2%{transform:translate(90.0345vw,44.2vh) scale(.4991)}to{transform:translate(89.11815vw,99vh) scale(.4991)}}.snow:nth-child(247){opacity:.16;transform:translate(56.9243vw,-10px) scale(.3367);animation:fall-247 13s -17s linear infinite}@keyframes fall-247{57.473%{transform:translate(53.5283vw,57.473vh) scale(.3367)}to{transform:translate(55.2263vw,99vh) scale(.3367)}}.snow:nth-child(248){opacity:1.5454;transform:translate(84.4026vw,-10px) scale(.3131);animation:fall-248 26s -9s linear infinite}@keyframes fall-248{72.986%{transform:translate(82.1408vw,72.986vh) scale(.3131)}to{transform:translate(83.2717vw,99vh) scale(.3131)}}.snow:nth-child(249){opacity:.4088;transform:translate(55.3388vw,-10px) scale(.3768);animation:fall-249 11s -23s linear infinite}@keyframes fall-249{54.109%{transform:translate(60.7594vw,54.109vh) scale(.3768)}to{transform:translate(58.0491vw,99vh) scale(.3768)}}.snow:nth-child(250){opacity:1.796;transform:translate(12.5734vw,-10px) scale(.8152);animation:fall-250 10s -1s linear infinite}@keyframes fall-250{61.251%{transform:translate(10.4615vw,61.251vh) scale(.8152)}to{transform:translate(11.51745vw,99vh) scale(.8152)}}.snow:nth-child(251){opacity:.034;transform:translate(93.4709vw,-10px) scale(.5687);animation:fall-251 18s -21s linear infinite}@keyframes fall-251{43.756%{transform:translate(88.0629vw,43.756vh) scale(.5687)}to{transform:translate(90.7669vw,99vh) scale(.5687)}}.snow:nth-child(252){opacity:.6676;transform:translate(58.0089vw,-10px) scale(.2751);animation:fall-252 17s -20s linear infinite}@keyframes fall-252{71.551%{transform:translate(48.2877vw,71.551vh) scale(.2751)}to{transform:translate(53.1483vw,99vh) scale(.2751)}}.snow:nth-child(253){opacity:1.5846;transform:translate(22.6623vw,-10px) scale(.3276);animation:fall-253 23s -4s linear infinite}@keyframes fall-253{41.578%{transform:translate(30.7601vw,41.578vh) scale(.3276)}to{transform:translate(26.7112vw,99vh) scale(.3276)}}.snow:nth-child(254){opacity:1.376;transform:translate(17.0571vw,-10px) scale(.2685);animation:fall-254 18s -11s linear infinite}@keyframes fall-254{57.344%{transform:translate(14.7193vw,57.344vh) scale(.2685)}to{transform:translate(15.8882vw,99vh) scale(.2685)}}.snow:nth-child(255){opacity:1.3112;transform:translate(25.7634vw,-10px) scale(.8681);animation:fall-255 23s -25s linear infinite}@keyframes fall-255{59.397%{transform:translate(35.573vw,59.397vh) scale(.8681)}to{transform:translate(30.6682vw,99vh) scale(.8681)}}.snow:nth-child(256){opacity:1.6562;transform:translate(20.1035vw,-10px) scale(.8527);animation:fall-256 15s -23s linear infinite}@keyframes fall-256{52.423%{transform:translate(29.1292vw,52.423vh) scale(.8527)}to{transform:translate(24.61635vw,99vh) scale(.8527)}}.snow:nth-child(257){opacity:1.5668;transform:translate(12.3857vw,-10px) scale(.1272);animation:fall-257 15s -16s linear infinite}@keyframes fall-257{34.072%{transform:translate(5.7018vw,34.072vh) scale(.1272)}to{transform:translate(9.04375vw,99vh) scale(.1272)}}.snow:nth-child(258){opacity:1.9072;transform:translate(43.3152vw,-10px) scale(.342);animation:fall-258 11s -2s linear infinite}@keyframes fall-258{35.892%{transform:translate(49.0511vw,35.892vh) scale(.342)}to{transform:translate(46.18315vw,99vh) scale(.342)}}.snow:nth-child(259){opacity:1.3326;transform:translate(79.1647vw,-10px) scale(.2205);animation:fall-259 20s -17s linear infinite}@keyframes fall-259{65.42%{transform:translate(71.5194vw,65.42vh) scale(.2205)}to{transform:translate(75.34205vw,99vh) scale(.2205)}}.snow:nth-child(260){opacity:.8226;transform:translate(99.2537vw,-10px) scale(.3237);animation:fall-260 29s -21s linear infinite}@keyframes fall-260{73.07%{transform:translate(93.4539vw,73.07vh) scale(.3237)}to{transform:translate(96.3538vw,99vh) scale(.3237)}}.snow:nth-child(261){opacity:.9962;transform:translate(21.8934vw,-10px) scale(.287);animation:fall-261 13s -15s linear infinite}@keyframes fall-261{67.907%{transform:translate(13.5384vw,67.907vh) scale(.287)}to{transform:translate(17.7159vw,99vh) scale(.287)}}.snow:nth-child(262){opacity:.8408;transform:translate(8.9539vw,-10px) scale(.0251);animation:fall-262 26s -12s linear infinite}@keyframes fall-262{58.146%{transform:translate(12.2893vw,58.146vh) scale(.0251)}to{transform:translate(10.6216vw,99vh) scale(.0251)}}.snow:nth-child(263){opacity:.3222;transform:translate(35.0806vw,-10px) scale(.8172);animation:fall-263 20s -8s linear infinite}@keyframes fall-263{38.676%{transform:translate(40.1099vw,38.676vh) scale(.8172)}to{transform:translate(37.59525vw,99vh) scale(.8172)}}.snow:nth-child(264){opacity:1.736;transform:translate(16.4608vw,-10px) scale(.4229);animation:fall-264 30s -13s linear infinite}@keyframes fall-264{54.558%{transform:translate(9.2198vw,54.558vh) scale(.4229)}to{transform:translate(12.8403vw,99vh) scale(.4229)}}.snow:nth-child(265){opacity:1.6096;transform:translate(.7646vw,-10px) scale(.627);animation:fall-265 13s -29s linear infinite}@keyframes fall-265{72.55%{transform:translate(8.4802vw,72.55vh) scale(.627)}to{transform:translate(4.6224vw,99vh) scale(.627)}}.snow:nth-child(266){opacity:.5186;transform:translate(26.7049vw,-10px) scale(.8963);animation:fall-266 27s -17s linear infinite}@keyframes fall-266{45.896%{transform:translate(34.2973vw,45.896vh) scale(.8963)}to{transform:translate(30.5011vw,99vh) scale(.8963)}}.snow:nth-child(267){opacity:.3826;transform:translate(35.4686vw,-10px) scale(.3753);animation:fall-267 10s -1s linear infinite}@keyframes fall-267{66.777%{transform:translate(26.9539vw,66.777vh) scale(.3753)}to{transform:translate(31.21125vw,99vh) scale(.3753)}}.snow:nth-child(268){opacity:1.5526;transform:translate(13.8863vw,-10px) scale(.6476);animation:fall-268 28s -12s linear infinite}@keyframes fall-268{67.644%{transform:translate(3.9332vw,67.644vh) scale(.6476)}to{transform:translate(8.90975vw,99vh) scale(.6476)}}.snow:nth-child(269){opacity:1.0784;transform:translate(33.5846vw,-10px) scale(.2585);animation:fall-269 18s -24s linear infinite}@keyframes fall-269{56.126%{transform:translate(30.8268vw,56.126vh) scale(.2585)}to{transform:translate(32.2057vw,99vh) scale(.2585)}}.snow:nth-child(270){opacity:1.9338;transform:translate(44.474vw,-10px) scale(.6155);animation:fall-270 21s -25s linear infinite}@keyframes fall-270{31.591%{transform:translate(40.8873vw,31.591vh) scale(.6155)}to{transform:translate(42.68065vw,99vh) scale(.6155)}}.snow:nth-child(271){opacity:.1718;transform:translate(70.2916vw,-10px) scale(.9114);animation:fall-271 26s -4s linear infinite}@keyframes fall-271{55.062%{transform:translate(70.2278vw,55.062vh) scale(.9114)}to{transform:translate(70.2597vw,99vh) scale(.9114)}}.snow:nth-child(272){opacity:.4656;transform:translate(42.4095vw,-10px) scale(.1058);animation:fall-272 19s -6s linear infinite}@keyframes fall-272{38.936%{transform:translate(47.5972vw,38.936vh) scale(.1058)}to{transform:translate(45.00335vw,99vh) scale(.1058)}}.snow:nth-child(273){opacity:1.6192;transform:translate(70.6473vw,-10px) scale(.9937);animation:fall-273 12s -1s linear infinite}@keyframes fall-273{39.115%{transform:translate(79.9581vw,39.115vh) scale(.9937)}to{transform:translate(75.3027vw,99vh) scale(.9937)}}.snow:nth-child(274){opacity:.247;transform:translate(61.2654vw,-10px) scale(.8371);animation:fall-274 26s -11s linear infinite}@keyframes fall-274{34.654%{transform:translate(65.1037vw,34.654vh) scale(.8371)}to{transform:translate(63.18455vw,99vh) scale(.8371)}}.snow:nth-child(275){opacity:1.2924;transform:translate(27.1668vw,-10px) scale(.5367);animation:fall-275 30s -15s linear infinite}@keyframes fall-275{57.944%{transform:translate(35.2893vw,57.944vh) scale(.5367)}to{transform:translate(31.22805vw,99vh) scale(.5367)}}.snow:nth-child(276){opacity:.5;transform:translate(69.6529vw,-10px) scale(.5187);animation:fall-276 30s -17s linear infinite}@keyframes fall-276{57.244%{transform:translate(70.4539vw,57.244vh) scale(.5187)}to{transform:translate(70.0534vw,99vh) scale(.5187)}}.snow:nth-child(277){opacity:.0254;transform:translate(40.2589vw,-10px) scale(.06);animation:fall-277 30s -27s linear infinite}@keyframes fall-277{61.533%{transform:translate(40.1847vw,61.533vh) scale(.06)}to{transform:translate(40.2218vw,99vh) scale(.06)}}.snow:nth-child(278){opacity:.8232;transform:translate(20.6113vw,-10px) scale(.9339);animation:fall-278 16s -23s linear infinite}@keyframes fall-278{54.34%{transform:translate(28.5786vw,54.34vh) scale(.9339)}to{transform:translate(24.59495vw,99vh) scale(.9339)}}.snow:nth-child(279){opacity:1.0064;transform:translate(91.3713vw,-10px) scale(.9018);animation:fall-279 10s -1s linear infinite}@keyframes fall-279{36.625%{transform:translate(95.4625vw,36.625vh) scale(.9018)}to{transform:translate(93.4169vw,99vh) scale(.9018)}}.snow:nth-child(280){opacity:1.968;transform:translate(52.976vw,-10px) scale(.0814);animation:fall-280 30s -2s linear infinite}@keyframes fall-280{41.299%{transform:translate(53.9114vw,41.299vh) scale(.0814)}to{transform:translate(53.4437vw,99vh) scale(.0814)}}.snow:nth-child(281){opacity:1.6554;transform:translate(2.5742vw,-10px) scale(.7712);animation:fall-281 20s -5s linear infinite}@keyframes fall-281{53.337%{transform:translate(3.2722vw,53.337vh) scale(.7712)}to{transform:translate(2.9232vw,99vh) scale(.7712)}}.snow:nth-child(282){opacity:1.9152;transform:translate(36.7021vw,-10px) scale(.7637);animation:fall-282 17s -13s linear infinite}@keyframes fall-282{71.019%{transform:translate(35.9798vw,71.019vh) scale(.7637)}to{transform:translate(36.34095vw,99vh) scale(.7637)}}.snow:nth-child(283){opacity:.2164;transform:translate(61.6375vw,-10px) scale(.1977);animation:fall-283 14s -24s linear infinite}@keyframes fall-283{78.5%{transform:translate(54.6529vw,78.5vh) scale(.1977)}to{transform:translate(58.1452vw,99vh) scale(.1977)}}.snow:nth-child(284){opacity:.503;transform:translate(80.8826vw,-10px) scale(.9031);animation:fall-284 14s -25s linear infinite}@keyframes fall-284{61.355%{transform:translate(76.6953vw,61.355vh) scale(.9031)}to{transform:translate(78.78895vw,99vh) scale(.9031)}}.snow:nth-child(285){opacity:.4804;transform:translate(20.5474vw,-10px) scale(.3139);animation:fall-285 16s -2s linear infinite}@keyframes fall-285{70.684%{transform:translate(27.0036vw,70.684vh) scale(.3139)}to{transform:translate(23.7755vw,99vh) scale(.3139)}}.snow:nth-child(286){opacity:1.061;transform:translate(65.8827vw,-10px) scale(.0726);animation:fall-286 23s -29s linear infinite}@keyframes fall-286{73.495%{transform:translate(69.0933vw,73.495vh) scale(.0726)}to{transform:translate(67.488vw,99vh) scale(.0726)}}.snow:nth-child(287){opacity:.1684;transform:translate(69.6878vw,-10px) scale(.4749);animation:fall-287 28s -29s linear infinite}@keyframes fall-287{71.405%{transform:translate(71.9024vw,71.405vh) scale(.4749)}to{transform:translate(70.7951vw,99vh) scale(.4749)}}.snow:nth-child(288){opacity:.8162;transform:translate(96.1025vw,-10px) scale(.0254);animation:fall-288 25s -24s linear infinite}@keyframes fall-288{48.398%{transform:translate(94.7926vw,48.398vh) scale(.0254)}to{transform:translate(95.44755vw,99vh) scale(.0254)}}.snow:nth-child(289){opacity:.0314;transform:translate(72.1345vw,-10px) scale(.9217);animation:fall-289 22s -12s linear infinite}@keyframes fall-289{68.232%{transform:translate(78.9831vw,68.232vh) scale(.9217)}to{transform:translate(75.5588vw,99vh) scale(.9217)}}.snow:nth-child(290){opacity:1.6316;transform:translate(.5294vw,-10px) scale(.9006);animation:fall-290 18s -2s linear infinite}@keyframes fall-290{48.11%{transform:translate(-1.1573vw,48.11vh) scale(.9006)}to{transform:translate(-.31395vw,99vh) scale(.9006)}}.snow:nth-child(291){opacity:1.2598;transform:translate(9.2913vw,-10px) scale(.3859);animation:fall-291 29s -30s linear infinite}@keyframes fall-291{50.595%{transform:translate(17.7729vw,50.595vh) scale(.3859)}to{transform:translate(13.5321vw,99vh) scale(.3859)}}.snow:nth-child(292){opacity:.504;transform:translate(17.0163vw,-10px) scale(.5869);animation:fall-292 26s -6s linear infinite}@keyframes fall-292{49.409%{transform:translate(19.205vw,49.409vh) scale(.5869)}to{transform:translate(18.11065vw,99vh) scale(.5869)}}.snow:nth-child(293){opacity:1.2798;transform:translate(81.9527vw,-10px) scale(.8212);animation:fall-293 16s -16s linear infinite}@keyframes fall-293{35.574%{transform:translate(82.1786vw,35.574vh) scale(.8212)}to{transform:translate(82.06565vw,99vh) scale(.8212)}}.snow:nth-child(294){opacity:1.1656;transform:translate(18.507vw,-10px) scale(.8507);animation:fall-294 23s -26s linear infinite}@keyframes fall-294{57.674%{transform:translate(21.0199vw,57.674vh) scale(.8507)}to{transform:translate(19.76345vw,99vh) scale(.8507)}}.snow:nth-child(295){opacity:1.4138;transform:translate(12.1935vw,-10px) scale(.0545);animation:fall-295 18s -3s linear infinite}@keyframes fall-295{50.197%{transform:translate(2.3598vw,50.197vh) scale(.0545)}to{transform:translate(7.27665vw,99vh) scale(.0545)}}.snow:nth-child(296){opacity:.2916;transform:translate(47.4308vw,-10px) scale(.6943);animation:fall-296 22s -12s linear infinite}@keyframes fall-296{58.655%{transform:translate(45.1701vw,58.655vh) scale(.6943)}to{transform:translate(46.30045vw,99vh) scale(.6943)}}.snow:nth-child(297){opacity:1.9938;transform:translate(98.8824vw,-10px) scale(.5293);animation:fall-297 15s -29s linear infinite}@keyframes fall-297{42.297%{transform:translate(108.0386vw,42.297vh) scale(.5293)}to{transform:translate(103.4605vw,99vh) scale(.5293)}}.snow:nth-child(298){opacity:.2012;transform:translate(31.9733vw,-10px) scale(.4019);animation:fall-298 13s -21s linear infinite}@keyframes fall-298{36.409%{transform:translate(27.5797vw,36.409vh) scale(.4019)}to{transform:translate(29.7765vw,99vh) scale(.4019)}}.snow:nth-child(299){opacity:1.7464;transform:translate(77.3606vw,-10px) scale(.6682);animation:fall-299 30s -7s linear infinite}@keyframes fall-299{66.323%{transform:translate(76.7913vw,66.323vh) scale(.6682)}to{transform:translate(77.07595vw,99vh) scale(.6682)}}.snow:nth-child(300){opacity:1.6036;transform:translate(62.8462vw,-10px) scale(.802);animation:fall-300 26s -22s linear infinite}@keyframes fall-300{54.113%{transform:translate(61.2469vw,54.113vh) scale(.802)}to{transform:translate(62.04655vw,99vh) scale(.802)}}.snow:nth-child(301){opacity:1.3092;transform:translate(15.0716vw,-10px) scale(.2426);animation:fall-301 23s -11s linear infinite}@keyframes fall-301{36.176%{transform:translate(24.7336vw,36.176vh) scale(.2426)}to{transform:translate(19.9026vw,99vh) scale(.2426)}}.snow:nth-child(302){opacity:.5344;transform:translate(47.3189vw,-10px) scale(.0498);animation:fall-302 11s -24s linear infinite}@keyframes fall-302{72.571%{transform:translate(57.1213vw,72.571vh) scale(.0498)}to{transform:translate(52.2201vw,99vh) scale(.0498)}}.snow:nth-child(303){opacity:1.39;transform:translate(40.5358vw,-10px) scale(.3528);animation:fall-303 18s -7s linear infinite}@keyframes fall-303{31.009%{transform:translate(31.0671vw,31.009vh) scale(.3528)}to{transform:translate(35.80145vw,99vh) scale(.3528)}}.snow:nth-child(304){opacity:1.993;transform:translate(83.7741vw,-10px) scale(.9398);animation:fall-304 16s -30s linear infinite}@keyframes fall-304{33.811%{transform:translate(88.0813vw,33.811vh) scale(.9398)}to{transform:translate(85.9277vw,99vh) scale(.9398)}}.snow:nth-child(305){opacity:.551;transform:translate(31.9874vw,-10px) scale(.3917);animation:fall-305 27s -2s linear infinite}@keyframes fall-305{54.992%{transform:translate(29.9826vw,54.992vh) scale(.3917)}to{transform:translate(30.985vw,99vh) scale(.3917)}}.snow:nth-child(306){opacity:.8644;transform:translate(21.857vw,-10px) scale(.295);animation:fall-306 25s -11s linear infinite}@keyframes fall-306{59.58%{transform:translate(26.0081vw,59.58vh) scale(.295)}to{transform:translate(23.93255vw,99vh) scale(.295)}}.snow:nth-child(307){opacity:.2194;transform:translate(37.8422vw,-10px) scale(.8266);animation:fall-307 23s -13s linear infinite}@keyframes fall-307{47.107%{transform:translate(46.3737vw,47.107vh) scale(.8266)}to{transform:translate(42.10795vw,99vh) scale(.8266)}}.snow:nth-child(308){opacity:.8348;transform:translate(52.4899vw,-10px) scale(.8455);animation:fall-308 25s -17s linear infinite}@keyframes fall-308{59.309%{transform:translate(53.0135vw,59.309vh) scale(.8455)}to{transform:translate(52.7517vw,99vh) scale(.8455)}}.snow:nth-child(309){opacity:.0494;transform:translate(72.5015vw,-10px) scale(.8815);animation:fall-309 12s -7s linear infinite}@keyframes fall-309{39.909%{transform:translate(63.3717vw,39.909vh) scale(.8815)}to{transform:translate(67.9366vw,99vh) scale(.8815)}}.snow:nth-child(310){opacity:.203;transform:translate(62.9614vw,-10px) scale(.551);animation:fall-310 24s -7s linear infinite}@keyframes fall-310{74.672%{transform:translate(59.2428vw,74.672vh) scale(.551)}to{transform:translate(61.1021vw,99vh) scale(.551)}}.snow:nth-child(311){opacity:1.4262;transform:translate(74.223vw,-10px) scale(.6946);animation:fall-311 17s -11s linear infinite}@keyframes fall-311{40.157%{transform:translate(70.3415vw,40.157vh) scale(.6946)}to{transform:translate(72.28225vw,99vh) scale(.6946)}}.snow:nth-child(312){opacity:.6322;transform:translate(26.5569vw,-10px) scale(.4248);animation:fall-312 26s -5s linear infinite}@keyframes fall-312{42.979%{transform:translate(28.2614vw,42.979vh) scale(.4248)}to{transform:translate(27.40915vw,99vh) scale(.4248)}}.snow:nth-child(313){opacity:1.402;transform:translate(12.1603vw,-10px) scale(.4914);animation:fall-313 18s -30s linear infinite}@keyframes fall-313{30.554%{transform:translate(2.27vw,30.554vh) scale(.4914)}to{transform:translate(7.21515vw,99vh) scale(.4914)}}.snow:nth-child(314){opacity:1.2118;transform:translate(75.7402vw,-10px) scale(.9235);animation:fall-314 26s -12s linear infinite}@keyframes fall-314{37.995%{transform:translate(70.6983vw,37.995vh) scale(.9235)}to{transform:translate(73.21925vw,99vh) scale(.9235)}}.snow:nth-child(315){opacity:1.2556;transform:translate(7.0657vw,-10px) scale(.9713);animation:fall-315 20s -21s linear infinite}@keyframes fall-315{56.919%{transform:translate(2.0496vw,56.919vh) scale(.9713)}to{transform:translate(4.55765vw,99vh) scale(.9713)}}.snow:nth-child(316){opacity:.1834;transform:translate(55.031vw,-10px) scale(.0631);animation:fall-316 21s -17s linear infinite}@keyframes fall-316{55.263%{transform:translate(56.4643vw,55.263vh) scale(.0631)}to{transform:translate(55.74765vw,99vh) scale(.0631)}}.snow:nth-child(317){opacity:.3962;transform:translate(90.7831vw,-10px) scale(.336);animation:fall-317 27s -18s linear infinite}@keyframes fall-317{56.806%{transform:translate(89.2352vw,56.806vh) scale(.336)}to{transform:translate(90.00915vw,99vh) scale(.336)}}.snow:nth-child(318){opacity:.3602;transform:translate(10.4828vw,-10px) scale(.9358);animation:fall-318 19s -1s linear infinite}@keyframes fall-318{45.885%{transform:translate(19.1792vw,45.885vh) scale(.9358)}to{transform:translate(14.831vw,99vh) scale(.9358)}}.snow:nth-child(319){opacity:.0906;transform:translate(56.3726vw,-10px) scale(.8961);animation:fall-319 29s -19s linear infinite}@keyframes fall-319{40.65%{transform:translate(49.7287vw,40.65vh) scale(.8961)}to{transform:translate(53.05065vw,99vh) scale(.8961)}}.snow:nth-child(320){opacity:1.5688;transform:translate(44.0567vw,-10px) scale(.0203);animation:fall-320 27s -14s linear infinite}@keyframes fall-320{40.773%{transform:translate(52.2114vw,40.773vh) scale(.0203)}to{transform:translate(48.13405vw,99vh) scale(.0203)}}.snow:nth-child(321){opacity:1.535;transform:translate(11.0706vw,-10px) scale(.9603);animation:fall-321 24s -12s linear infinite}@keyframes fall-321{47.888%{transform:translate(6.863vw,47.888vh) scale(.9603)}to{transform:translate(8.9668vw,99vh) scale(.9603)}}.snow:nth-child(322){opacity:1.2152;transform:translate(48.1654vw,-10px) scale(.409);animation:fall-322 27s -7s linear infinite}@keyframes fall-322{38.058%{transform:translate(46.1901vw,38.058vh) scale(.409)}to{transform:translate(47.17775vw,99vh) scale(.409)}}.snow:nth-child(323){opacity:1.0218;transform:translate(67.5984vw,-10px) scale(.817);animation:fall-323 10s -6s linear infinite}@keyframes fall-323{74.433%{transform:translate(64.12vw,74.433vh) scale(.817)}to{transform:translate(65.8592vw,99vh) scale(.817)}}.snow:nth-child(324){opacity:1.4432;transform:translate(87.2955vw,-10px) scale(.7179);animation:fall-324 11s -3s linear infinite}@keyframes fall-324{42.923%{transform:translate(84.3059vw,42.923vh) scale(.7179)}to{transform:translate(85.8007vw,99vh) scale(.7179)}}.snow:nth-child(325){opacity:.2652;transform:translate(79.2461vw,-10px) scale(.373);animation:fall-325 30s -1s linear infinite}@keyframes fall-325{71.79%{transform:translate(88.9059vw,71.79vh) scale(.373)}to{transform:translate(84.076vw,99vh) scale(.373)}}.snow:nth-child(326){opacity:1.967;transform:translate(47.8538vw,-10px) scale(.8059);animation:fall-326 21s -13s linear infinite}@keyframes fall-326{51.378%{transform:translate(49.7736vw,51.378vh) scale(.8059)}to{transform:translate(48.8137vw,99vh) scale(.8059)}}.snow:nth-child(327){opacity:.8178;transform:translate(16.1426vw,-10px) scale(.2157);animation:fall-327 26s -15s linear infinite}@keyframes fall-327{63.168%{transform:translate(22.6957vw,63.168vh) scale(.2157)}to{transform:translate(19.41915vw,99vh) scale(.2157)}}.snow:nth-child(328){opacity:1.1266;transform:translate(24.6654vw,-10px) scale(.3469);animation:fall-328 13s -6s linear infinite}@keyframes fall-328{56.8%{transform:translate(16.2959vw,56.8vh) scale(.3469)}to{transform:translate(20.48065vw,99vh) scale(.3469)}}.snow:nth-child(329){opacity:.2868;transform:translate(58.4195vw,-10px) scale(.0632);animation:fall-329 21s -7s linear infinite}@keyframes fall-329{46.726%{transform:translate(49.5883vw,46.726vh) scale(.0632)}to{transform:translate(54.0039vw,99vh) scale(.0632)}}.snow:nth-child(330){opacity:.0054;transform:translate(99.3244vw,-10px) scale(.801);animation:fall-330 22s -13s linear infinite}@keyframes fall-330{61.823%{transform:translate(95.4274vw,61.823vh) scale(.801)}to{transform:translate(97.3759vw,99vh) scale(.801)}}.snow:nth-child(331){opacity:1.0224;transform:translate(42.4537vw,-10px) scale(.6115);animation:fall-331 15s -25s linear infinite}@keyframes fall-331{39.64%{transform:translate(51.6565vw,39.64vh) scale(.6115)}to{transform:translate(47.0551vw,99vh) scale(.6115)}}.snow:nth-child(332){opacity:1.518;transform:translate(82.3719vw,-10px) scale(.8178);animation:fall-332 26s -22s linear infinite}@keyframes fall-332{46.169%{transform:translate(90.989vw,46.169vh) scale(.8178)}to{transform:translate(86.68045vw,99vh) scale(.8178)}}.snow:nth-child(333){opacity:1.2604;transform:translate(92.5821vw,-10px) scale(.2264);animation:fall-333 10s -8s linear infinite}@keyframes fall-333{77.138%{transform:translate(98.3579vw,77.138vh) scale(.2264)}to{transform:translate(95.47vw,99vh) scale(.2264)}}.snow:nth-child(334){opacity:.7128;transform:translate(53.173vw,-10px) scale(.1437);animation:fall-334 23s -27s linear infinite}@keyframes fall-334{79.834%{transform:translate(56.145vw,79.834vh) scale(.1437)}to{transform:translate(54.659vw,99vh) scale(.1437)}}.snow:nth-child(335){opacity:1.4576;transform:translate(75.1967vw,-10px) scale(.4073);animation:fall-335 28s -22s linear infinite}@keyframes fall-335{41.882%{transform:translate(74.9224vw,41.882vh) scale(.4073)}to{transform:translate(75.05955vw,99vh) scale(.4073)}}.snow:nth-child(336){opacity:1.8838;transform:translate(94.5746vw,-10px) scale(.2699);animation:fall-336 15s -5s linear infinite}@keyframes fall-336{33.163%{transform:translate(90.6959vw,33.163vh) scale(.2699)}to{transform:translate(92.63525vw,99vh) scale(.2699)}}.snow:nth-child(337){opacity:1.653;transform:translate(26.4564vw,-10px) scale(.1081);animation:fall-337 10s -1s linear infinite}@keyframes fall-337{75.831%{transform:translate(18.3442vw,75.831vh) scale(.1081)}to{transform:translate(22.4003vw,99vh) scale(.1081)}}.snow:nth-child(338){opacity:.4212;transform:translate(60.1857vw,-10px) scale(.9205);animation:fall-338 28s -13s linear infinite}@keyframes fall-338{33.823%{transform:translate(53.3724vw,33.823vh) scale(.9205)}to{transform:translate(56.77905vw,99vh) scale(.9205)}}.snow:nth-child(339){opacity:1.348;transform:translate(11.3761vw,-10px) scale(.8849);animation:fall-339 30s -9s linear infinite}@keyframes fall-339{69.677%{transform:translate(15.8858vw,69.677vh) scale(.8849)}to{transform:translate(13.63095vw,99vh) scale(.8849)}}.snow:nth-child(340){opacity:.0986;transform:translate(23.7866vw,-10px) scale(.1468);animation:fall-340 22s -15s linear infinite}@keyframes fall-340{63.79%{transform:translate(23.4757vw,63.79vh) scale(.1468)}to{transform:translate(23.63115vw,99vh) scale(.1468)}}.snow:nth-child(341){opacity:.2004;transform:translate(5.5231vw,-10px) scale(.1982);animation:fall-341 25s -12s linear infinite}@keyframes fall-341{40.456%{transform:translate(6.3449vw,40.456vh) scale(.1982)}to{transform:translate(5.934vw,99vh) scale(.1982)}}.snow:nth-child(342){opacity:.8978;transform:translate(52.5082vw,-10px) scale(.4035);animation:fall-342 21s -17s linear infinite}@keyframes fall-342{77.818%{transform:translate(43.873vw,77.818vh) scale(.4035)}to{transform:translate(48.1906vw,99vh) scale(.4035)}}.snow:nth-child(343){opacity:.7704;transform:translate(52.9758vw,-10px) scale(.5333);animation:fall-343 29s -18s linear infinite}@keyframes fall-343{58.413%{transform:translate(44.8447vw,58.413vh) scale(.5333)}to{transform:translate(48.91025vw,99vh) scale(.5333)}}.snow:nth-child(344){opacity:.955;transform:translate(69.9978vw,-10px) scale(.8026);animation:fall-344 14s -23s linear infinite}@keyframes fall-344{72.438%{transform:translate(67.2735vw,72.438vh) scale(.8026)}to{transform:translate(68.63565vw,99vh) scale(.8026)}}.snow:nth-child(345){opacity:.0978;transform:translate(98.4547vw,-10px) scale(.6616);animation:fall-345 28s -29s linear infinite}@keyframes fall-345{78.546%{transform:translate(107.2281vw,78.546vh) scale(.6616)}to{transform:translate(102.8414vw,99vh) scale(.6616)}}.snow:nth-child(346){opacity:1.7518;transform:translate(88.1159vw,-10px) scale(.0403);animation:fall-346 21s -26s linear infinite}@keyframes fall-346{72.093%{transform:translate(97.3397vw,72.093vh) scale(.0403)}to{transform:translate(92.7278vw,99vh) scale(.0403)}}.snow:nth-child(347){opacity:1.7682;transform:translate(47.2689vw,-10px) scale(.2598);animation:fall-347 23s -4s linear infinite}@keyframes fall-347{52.95%{transform:translate(38.5046vw,52.95vh) scale(.2598)}to{transform:translate(42.88675vw,99vh) scale(.2598)}}.snow:nth-child(348){opacity:1.2848;transform:translate(45.1949vw,-10px) scale(.6484);animation:fall-348 18s -6s linear infinite}@keyframes fall-348{48.143%{transform:translate(35.4492vw,48.143vh) scale(.6484)}to{transform:translate(40.32205vw,99vh) scale(.6484)}}.snow:nth-child(349){opacity:1.2746;transform:translate(68.3568vw,-10px) scale(.5376);animation:fall-349 23s -26s linear infinite}@keyframes fall-349{31.068%{transform:translate(70.9874vw,31.068vh) scale(.5376)}to{transform:translate(69.6721vw,99vh) scale(.5376)}}.snow:nth-child(350){opacity:.8036;transform:translate(43.0699vw,-10px) scale(.479);animation:fall-350 26s -14s linear infinite}@keyframes fall-350{76.507%{transform:translate(52.6719vw,76.507vh) scale(.479)}to{transform:translate(47.8709vw,99vh) scale(.479)}}.snow:nth-child(351){opacity:1.7652;transform:translate(27.8743vw,-10px) scale(.2818);animation:fall-351 25s -26s linear infinite}@keyframes fall-351{73.68%{transform:translate(26.9703vw,73.68vh) scale(.2818)}to{transform:translate(27.4223vw,99vh) scale(.2818)}}.snow:nth-child(352){opacity:.8816;transform:translate(54.7831vw,-10px) scale(.7693);animation:fall-352 30s -22s linear infinite}@keyframes fall-352{44.046%{transform:translate(47.4849vw,44.046vh) scale(.7693)}to{transform:translate(51.134vw,99vh) scale(.7693)}}.snow:nth-child(353){opacity:.465;transform:translate(98.9481vw,-10px) scale(.8641);animation:fall-353 20s -24s linear infinite}@keyframes fall-353{60.409%{transform:translate(101.0351vw,60.409vh) scale(.8641)}to{transform:translate(99.9916vw,99vh) scale(.8641)}}.snow:nth-child(354){opacity:.0332;transform:translate(13.5909vw,-10px) scale(.0368);animation:fall-354 20s -16s linear infinite}@keyframes fall-354{43.268%{transform:translate(20.9294vw,43.268vh) scale(.0368)}to{transform:translate(17.26015vw,99vh) scale(.0368)}}.snow:nth-child(355){opacity:1.7204;transform:translate(1.4571vw,-10px) scale(.1955);animation:fall-355 11s -10s linear infinite}@keyframes fall-355{61.829%{transform:translate(-5.5571vw,61.829vh) scale(.1955)}to{transform:translate(-2.05vw,99vh) scale(.1955)}}.snow:nth-child(356){opacity:.5046;transform:translate(68.3559vw,-10px) scale(.3638);animation:fall-356 30s -19s linear infinite}@keyframes fall-356{61.796%{transform:translate(71.8662vw,61.796vh) scale(.3638)}to{transform:translate(70.11105vw,99vh) scale(.3638)}}.snow:nth-child(357){opacity:.4144;transform:translate(77.7828vw,-10px) scale(.4133);animation:fall-357 29s -6s linear infinite}@keyframes fall-357{69.641%{transform:translate(74.7199vw,69.641vh) scale(.4133)}to{transform:translate(76.25135vw,99vh) scale(.4133)}}.snow:nth-child(358){opacity:1.5568;transform:translate(26.9213vw,-10px) scale(.9536);animation:fall-358 13s -22s linear infinite}@keyframes fall-358{49.005%{transform:translate(20.2702vw,49.005vh) scale(.9536)}to{transform:translate(23.59575vw,99vh) scale(.9536)}}.snow:nth-child(359){opacity:.9058;transform:translate(78.4982vw,-10px) scale(.0489);animation:fall-359 20s -30s linear infinite}@keyframes fall-359{58.116%{transform:translate(83.3048vw,58.116vh) scale(.0489)}to{transform:translate(80.9015vw,99vh) scale(.0489)}}.snow:nth-child(360){opacity:.1456;transform:translate(50.2406vw,-10px) scale(.4192);animation:fall-360 22s -1s linear infinite}@keyframes fall-360{61.435%{transform:translate(52.7842vw,61.435vh) scale(.4192)}to{transform:translate(51.5124vw,99vh) scale(.4192)}}.snow:nth-child(361){opacity:1.8234;transform:translate(2.5027vw,-10px) scale(.4514);animation:fall-361 10s -1s linear infinite}@keyframes fall-361{40.98%{transform:translate(6.6071vw,40.98vh) scale(.4514)}to{transform:translate(4.5549vw,99vh) scale(.4514)}}.snow:nth-child(362){opacity:.8168;transform:translate(72.5808vw,-10px) scale(.6512);animation:fall-362 30s -25s linear infinite}@keyframes fall-362{34.474%{transform:translate(79.357vw,34.474vh) scale(.6512)}to{transform:translate(75.9689vw,99vh) scale(.6512)}}.snow:nth-child(363){opacity:.0172;transform:translate(72.9265vw,-10px) scale(.6551);animation:fall-363 10s -24s linear infinite}@keyframes fall-363{65.577%{transform:translate(80.6561vw,65.577vh) scale(.6551)}to{transform:translate(76.7913vw,99vh) scale(.6551)}}.snow:nth-child(364){opacity:1.3524;transform:translate(72.5223vw,-10px) scale(.2863);animation:fall-364 12s -15s linear infinite}@keyframes fall-364{62.239%{transform:translate(74.6418vw,62.239vh) scale(.2863)}to{transform:translate(73.58205vw,99vh) scale(.2863)}}.snow:nth-child(365){opacity:1.4458;transform:translate(9.5493vw,-10px) scale(.9763);animation:fall-365 29s -17s linear infinite}@keyframes fall-365{69.691%{transform:translate(14.117vw,69.691vh) scale(.9763)}to{transform:translate(11.83315vw,99vh) scale(.9763)}}.snow:nth-child(366){opacity:.1258;transform:translate(47.7651vw,-10px) scale(.8692);animation:fall-366 14s -2s linear infinite}@keyframes fall-366{62.72%{transform:translate(55.0331vw,62.72vh) scale(.8692)}to{transform:translate(51.3991vw,99vh) scale(.8692)}}.snow:nth-child(367){opacity:1.7126;transform:translate(73.9369vw,-10px) scale(.9896);animation:fall-367 13s -9s linear infinite}@keyframes fall-367{72.711%{transform:translate(80.4856vw,72.711vh) scale(.9896)}to{transform:translate(77.21125vw,99vh) scale(.9896)}}.snow:nth-child(368){opacity:.215;transform:translate(24.9898vw,-10px) scale(.0095);animation:fall-368 24s -18s linear infinite}@keyframes fall-368{47.245%{transform:translate(17.8817vw,47.245vh) scale(.0095)}to{transform:translate(21.43575vw,99vh) scale(.0095)}}.snow:nth-child(369){opacity:.0372;transform:translate(89.0703vw,-10px) scale(.1479);animation:fall-369 20s -26s linear infinite}@keyframes fall-369{32.155%{transform:translate(89.0864vw,32.155vh) scale(.1479)}to{transform:translate(89.07835vw,99vh) scale(.1479)}}.snow:nth-child(370){opacity:1.0626;transform:translate(28.7444vw,-10px) scale(.8918);animation:fall-370 28s -16s linear infinite}@keyframes fall-370{39.013%{transform:translate(25.0331vw,39.013vh) scale(.8918)}to{transform:translate(26.88875vw,99vh) scale(.8918)}}.snow:nth-child(371){opacity:.3928;transform:translate(58.5963vw,-10px) scale(.6837);animation:fall-371 30s -22s linear infinite}@keyframes fall-371{58.708%{transform:translate(62.5695vw,58.708vh) scale(.6837)}to{transform:translate(60.5829vw,99vh) scale(.6837)}}.snow:nth-child(372){opacity:1.6448;transform:translate(7.1377vw,-10px) scale(.6221);animation:fall-372 28s -23s linear infinite}@keyframes fall-372{35.753%{transform:translate(8.6278vw,35.753vh) scale(.6221)}to{transform:translate(7.88275vw,99vh) scale(.6221)}}.snow:nth-child(373){opacity:.3662;transform:translate(79.793vw,-10px) scale(.0748);animation:fall-373 27s -21s linear infinite}@keyframes fall-373{68.745%{transform:translate(82.5804vw,68.745vh) scale(.0748)}to{transform:translate(81.1867vw,99vh) scale(.0748)}}.snow:nth-child(374){opacity:1.527;transform:translate(.6443vw,-10px) scale(.0394);animation:fall-374 14s -20s linear infinite}@keyframes fall-374{71.132%{transform:translate(6.6558vw,71.132vh) scale(.0394)}to{transform:translate(3.65005vw,99vh) scale(.0394)}}.snow:nth-child(375){opacity:1.1446;transform:translate(26.3028vw,-10px) scale(.0571);animation:fall-375 18s -16s linear infinite}@keyframes fall-375{50.087%{transform:translate(16.4876vw,50.087vh) scale(.0571)}to{transform:translate(21.3952vw,99vh) scale(.0571)}}.snow:nth-child(376){opacity:.6432;transform:translate(35.8147vw,-10px) scale(.0036);animation:fall-376 15s -29s linear infinite}@keyframes fall-376{34.39%{transform:translate(34.6985vw,34.39vh) scale(.0036)}to{transform:translate(35.2566vw,99vh) scale(.0036)}}.snow:nth-child(377){opacity:.8738;transform:translate(99.2792vw,-10px) scale(.7441);animation:fall-377 10s -18s linear infinite}@keyframes fall-377{41.821%{transform:translate(99.2086vw,41.821vh) scale(.7441)}to{transform:translate(99.2439vw,99vh) scale(.7441)}}.snow:nth-child(378){opacity:1.7208;transform:translate(17.5842vw,-10px) scale(.6246);animation:fall-378 28s -19s linear infinite}@keyframes fall-378{71.623%{transform:translate(23.1639vw,71.623vh) scale(.6246)}to{transform:translate(20.37405vw,99vh) scale(.6246)}}.snow:nth-child(379){opacity:1.6146;transform:translate(2.1574vw,-10px) scale(.5594);animation:fall-379 29s -18s linear infinite}@keyframes fall-379{30.772%{transform:translate(2.282vw,30.772vh) scale(.5594)}to{transform:translate(2.2197vw,99vh) scale(.5594)}}.snow:nth-child(380){opacity:.7898;transform:translate(67.3027vw,-10px) scale(.9536);animation:fall-380 28s -22s linear infinite}@keyframes fall-380{57.44%{transform:translate(73.103vw,57.44vh) scale(.9536)}to{transform:translate(70.20285vw,99vh) scale(.9536)}}.snow:nth-child(381){opacity:1.995;transform:translate(24.0274vw,-10px) scale(.8407);animation:fall-381 11s -2s linear infinite}@keyframes fall-381{35.324%{transform:translate(23.9874vw,35.324vh) scale(.8407)}to{transform:translate(24.0074vw,99vh) scale(.8407)}}.snow:nth-child(382){opacity:.2454;transform:translate(66.2949vw,-10px) scale(.857);animation:fall-382 13s -12s linear infinite}@keyframes fall-382{67.355%{transform:translate(64.7615vw,67.355vh) scale(.857)}to{transform:translate(65.5282vw,99vh) scale(.857)}}.snow:nth-child(383){opacity:1.282;transform:translate(30.826vw,-10px) scale(.8388);animation:fall-383 29s -19s linear infinite}@keyframes fall-383{67.634%{transform:translate(40.5vw,67.634vh) scale(.8388)}to{transform:translate(35.663vw,99vh) scale(.8388)}}.snow:nth-child(384){opacity:.284;transform:translate(72.911vw,-10px) scale(.9243);animation:fall-384 25s -2s linear infinite}@keyframes fall-384{79.37%{transform:translate(63.7725vw,79.37vh) scale(.9243)}to{transform:translate(68.34175vw,99vh) scale(.9243)}}.snow:nth-child(385){opacity:.3594;transform:translate(29.0725vw,-10px) scale(.2575);animation:fall-385 26s -22s linear infinite}@keyframes fall-385{55.392%{transform:translate(37.6868vw,55.392vh) scale(.2575)}to{transform:translate(33.37965vw,99vh) scale(.2575)}}.snow:nth-child(386){opacity:1.561;transform:translate(32.1547vw,-10px) scale(.5287);animation:fall-386 27s -14s linear infinite}@keyframes fall-386{74.83%{transform:translate(26.0775vw,74.83vh) scale(.5287)}to{transform:translate(29.1161vw,99vh) scale(.5287)}}.snow:nth-child(387){opacity:1.232;transform:translate(5.5747vw,-10px) scale(.9556);animation:fall-387 15s -10s linear infinite}@keyframes fall-387{49.548%{transform:translate(3.1506vw,49.548vh) scale(.9556)}to{transform:translate(4.36265vw,99vh) scale(.9556)}}.snow:nth-child(388){opacity:1.9826;transform:translate(38.3548vw,-10px) scale(.147);animation:fall-388 29s -12s linear infinite}@keyframes fall-388{70.161%{transform:translate(34.1358vw,70.161vh) scale(.147)}to{transform:translate(36.2453vw,99vh) scale(.147)}}.snow:nth-child(389){opacity:1.0608;transform:translate(82.936vw,-10px) scale(.1257);animation:fall-389 30s -5s linear infinite}@keyframes fall-389{79.647%{transform:translate(88.6383vw,79.647vh) scale(.1257)}to{transform:translate(85.78715vw,99vh) scale(.1257)}}.snow:nth-child(390){opacity:1.4846;transform:translate(44.3734vw,-10px) scale(.9847);animation:fall-390 17s -11s linear infinite}@keyframes fall-390{52.35%{transform:translate(45.5019vw,52.35vh) scale(.9847)}to{transform:translate(44.93765vw,99vh) scale(.9847)}}.snow:nth-child(391){opacity:1.8636;transform:translate(75.5395vw,-10px) scale(.2704);animation:fall-391 14s -5s linear infinite}@keyframes fall-391{56.147%{transform:translate(74.5728vw,56.147vh) scale(.2704)}to{transform:translate(75.05615vw,99vh) scale(.2704)}}.snow:nth-child(392){opacity:.6968;transform:translate(10.1254vw,-10px) scale(.9576);animation:fall-392 19s -25s linear infinite}@keyframes fall-392{56.239%{transform:translate(4.2178vw,56.239vh) scale(.9576)}to{transform:translate(7.1716vw,99vh) scale(.9576)}}.snow:nth-child(393){opacity:.1802;transform:translate(20.8067vw,-10px) scale(.7936);animation:fall-393 16s -12s linear infinite}@keyframes fall-393{62.642%{transform:translate(23.8264vw,62.642vh) scale(.7936)}to{transform:translate(22.31655vw,99vh) scale(.7936)}}.snow:nth-child(394){opacity:.7826;transform:translate(58.3598vw,-10px) scale(.448);animation:fall-394 22s -10s linear infinite}@keyframes fall-394{34.072%{transform:translate(48.6147vw,34.072vh) scale(.448)}to{transform:translate(53.48725vw,99vh) scale(.448)}}.snow:nth-child(395){opacity:1.7322;transform:translate(19.8725vw,-10px) scale(.9905);animation:fall-395 30s -25s linear infinite}@keyframes fall-395{79.503%{transform:translate(16.868vw,79.503vh) scale(.9905)}to{transform:translate(18.37025vw,99vh) scale(.9905)}}.snow:nth-child(396){opacity:1.007;transform:translate(5.922vw,-10px) scale(.3694);animation:fall-396 24s -9s linear infinite}@keyframes fall-396{38.389%{transform:translate(1.0165vw,38.389vh) scale(.3694)}to{transform:translate(3.46925vw,99vh) scale(.3694)}}.snow:nth-child(397){opacity:.0826;transform:translate(37.4116vw,-10px) scale(.3365);animation:fall-397 22s -15s linear infinite}@keyframes fall-397{76.405%{transform:translate(42.3017vw,76.405vh) scale(.3365)}to{transform:translate(39.85665vw,99vh) scale(.3365)}}.snow:nth-child(398){opacity:.7914;transform:translate(82.9271vw,-10px) scale(.3373);animation:fall-398 27s -8s linear infinite}@keyframes fall-398{77.695%{transform:translate(81.2975vw,77.695vh) scale(.3373)}to{transform:translate(82.1123vw,99vh) scale(.3373)}}.snow:nth-child(399){opacity:1.5076;transform:translate(50.6487vw,-10px) scale(.3909);animation:fall-399 20s -9s linear infinite}@keyframes fall-399{64.036%{transform:translate(44.2496vw,64.036vh) scale(.3909)}to{transform:translate(47.44915vw,99vh) scale(.3909)}}.snow:nth-child(400){opacity:.2018;transform:translate(96.0418vw,-10px) scale(.6752);animation:fall-400 12s -17s linear infinite}@keyframes fall-400{77.306%{transform:translate(94.0061vw,77.306vh) scale(.6752)}to{transform:translate(95.02395vw,99vh) scale(.6752)}}\n"], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
78
|
+
AppComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AppComponent, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows; 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{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 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}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.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}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.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}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.mat-chip-list-wrapper input.mat-input-element,.mat-chip-list-wrapper .mat-standard-chip{margin:1px 4px 4px!important;padding-top:0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:1.146;transform:translate(47.3923vw,-10px) scale(.7874);animation:fall-1 30s -23s linear infinite}@keyframes fall-1{79.746%{transform:translate(55.7759vw,79.746vh) scale(.7874)}to{transform:translate(51.5841vw,99vh) scale(.7874)}}.snow:nth-child(2){opacity:.3356;transform:translate(62.0664vw,-10px) scale(.1889);animation:fall-2 20s -19s linear infinite}@keyframes fall-2{66.96%{transform:translate(54.1915vw,66.96vh) scale(.1889)}to{transform:translate(58.12895vw,99vh) scale(.1889)}}.snow:nth-child(3){opacity:1.566;transform:translate(87.2706vw,-10px) scale(.614);animation:fall-3 17s -3s linear infinite}@keyframes fall-3{53.855%{transform:translate(90.8094vw,53.855vh) scale(.614)}to{transform:translate(89.04vw,99vh) scale(.614)}}.snow:nth-child(4){opacity:1.4538;transform:translate(.409vw,-10px) scale(.4918);animation:fall-4 29s -12s linear infinite}@keyframes fall-4{69.159%{transform:translate(9.4201vw,69.159vh) scale(.4918)}to{transform:translate(4.91455vw,99vh) scale(.4918)}}.snow:nth-child(5){opacity:1.4262;transform:translate(13.5601vw,-10px) scale(.4737);animation:fall-5 16s -9s linear infinite}@keyframes fall-5{33.98%{transform:translate(16.8422vw,33.98vh) scale(.4737)}to{transform:translate(15.20115vw,99vh) scale(.4737)}}.snow:nth-child(6){opacity:.4798;transform:translate(95.879vw,-10px) scale(.613);animation:fall-6 13s -16s linear infinite}@keyframes fall-6{33.611%{transform:translate(87.2265vw,33.611vh) scale(.613)}to{transform:translate(91.55275vw,99vh) scale(.613)}}.snow:nth-child(7){opacity:.1998;transform:translate(25.8014vw,-10px) scale(.4785);animation:fall-7 30s -18s linear infinite}@keyframes fall-7{76.736%{transform:translate(16.8338vw,76.736vh) scale(.4785)}to{transform:translate(21.3176vw,99vh) scale(.4785)}}.snow:nth-child(8){opacity:.2694;transform:translate(44.9219vw,-10px) scale(.5548);animation:fall-8 23s -27s linear infinite}@keyframes fall-8{38.877%{transform:translate(52.8vw,38.877vh) scale(.5548)}to{transform:translate(48.86095vw,99vh) scale(.5548)}}.snow:nth-child(9){opacity:1.8384;transform:translate(89.3292vw,-10px) scale(.7264);animation:fall-9 26s -18s linear infinite}@keyframes fall-9{64.412%{transform:translate(98.6346vw,64.412vh) scale(.7264)}to{transform:translate(93.9819vw,99vh) scale(.7264)}}.snow:nth-child(10){opacity:.058;transform:translate(68.1707vw,-10px) scale(.9756);animation:fall-10 21s -28s linear infinite}@keyframes fall-10{61.598%{transform:translate(69.7131vw,61.598vh) scale(.9756)}to{transform:translate(68.9419vw,99vh) scale(.9756)}}.snow:nth-child(11){opacity:1.4454;transform:translate(67.7965vw,-10px) scale(.5711);animation:fall-11 18s -9s linear infinite}@keyframes fall-11{57.687%{transform:translate(61.5708vw,57.687vh) scale(.5711)}to{transform:translate(64.68365vw,99vh) scale(.5711)}}.snow:nth-child(12){opacity:1.6922;transform:translate(88.4917vw,-10px) scale(.8691);animation:fall-12 18s -23s linear infinite}@keyframes fall-12{68.002%{transform:translate(97.0499vw,68.002vh) scale(.8691)}to{transform:translate(92.7708vw,99vh) scale(.8691)}}.snow:nth-child(13){opacity:1.3418;transform:translate(62.7745vw,-10px) scale(.0865);animation:fall-13 24s -23s linear infinite}@keyframes fall-13{60.181%{transform:translate(56.6086vw,60.181vh) scale(.0865)}to{transform:translate(59.69155vw,99vh) scale(.0865)}}.snow:nth-child(14){opacity:.604;transform:translate(70.0834vw,-10px) scale(.683);animation:fall-14 25s -18s linear infinite}@keyframes fall-14{47.754%{transform:translate(75.4439vw,47.754vh) scale(.683)}to{transform:translate(72.76365vw,99vh) scale(.683)}}.snow:nth-child(15){opacity:1.1486;transform:translate(34.5671vw,-10px) scale(.2034);animation:fall-15 21s -25s linear infinite}@keyframes fall-15{40.045%{transform:translate(38.831vw,40.045vh) scale(.2034)}to{transform:translate(36.69905vw,99vh) scale(.2034)}}.snow:nth-child(16){opacity:1.385;transform:translate(40.7788vw,-10px) scale(.3655);animation:fall-16 25s -4s linear infinite}@keyframes fall-16{38.937%{transform:translate(37.385vw,38.937vh) scale(.3655)}to{transform:translate(39.0819vw,99vh) scale(.3655)}}.snow:nth-child(17){opacity:.8982;transform:translate(30.2846vw,-10px) scale(.4582);animation:fall-17 26s -21s linear infinite}@keyframes fall-17{74.465%{transform:translate(25.7831vw,74.465vh) scale(.4582)}to{transform:translate(28.03385vw,99vh) scale(.4582)}}.snow:nth-child(18){opacity:1.6484;transform:translate(88.9707vw,-10px) scale(.4474);animation:fall-18 24s -23s linear infinite}@keyframes fall-18{35.509%{transform:translate(96.2076vw,35.509vh) scale(.4474)}to{transform:translate(92.58915vw,99vh) scale(.4474)}}.snow:nth-child(19){opacity:.1414;transform:translate(38.0215vw,-10px) scale(.1149);animation:fall-19 23s -30s linear infinite}@keyframes fall-19{50.65%{transform:translate(35.0643vw,50.65vh) scale(.1149)}to{transform:translate(36.5429vw,99vh) scale(.1149)}}.snow:nth-child(20){opacity:1.4702;transform:translate(33.3485vw,-10px) scale(.6025);animation:fall-20 23s -14s linear infinite}@keyframes fall-20{55.69%{transform:translate(28.6867vw,55.69vh) scale(.6025)}to{transform:translate(31.0176vw,99vh) scale(.6025)}}.snow:nth-child(21){opacity:1.9512;transform:translate(43.8157vw,-10px) scale(.2815);animation:fall-21 25s -16s linear infinite}@keyframes fall-21{42.207%{transform:translate(35.4563vw,42.207vh) scale(.2815)}to{transform:translate(39.636vw,99vh) scale(.2815)}}.snow:nth-child(22){opacity:.362;transform:translate(80.6085vw,-10px) scale(.1656);animation:fall-22 11s -29s linear infinite}@keyframes fall-22{62.62%{transform:translate(80.437vw,62.62vh) scale(.1656)}to{transform:translate(80.52275vw,99vh) scale(.1656)}}.snow:nth-child(23){opacity:1.5732;transform:translate(61.7636vw,-10px) scale(.9608);animation:fall-23 30s -28s linear infinite}@keyframes fall-23{33.827%{transform:translate(54.9502vw,33.827vh) scale(.9608)}to{transform:translate(58.3569vw,99vh) scale(.9608)}}.snow:nth-child(24){opacity:1.2614;transform:translate(45.2628vw,-10px) scale(.3841);animation:fall-24 22s -22s linear infinite}@keyframes fall-24{49.208%{transform:translate(50.3066vw,49.208vh) scale(.3841)}to{transform:translate(47.7847vw,99vh) scale(.3841)}}.snow:nth-child(25){opacity:.6548;transform:translate(.7625vw,-10px) scale(.8232);animation:fall-25 18s -6s linear infinite}@keyframes fall-25{43.584%{transform:translate(2.2758vw,43.584vh) scale(.8232)}to{transform:translate(1.51915vw,99vh) scale(.8232)}}.snow:nth-child(26){opacity:.0874;transform:translate(2.5268vw,-10px) scale(.7803);animation:fall-26 15s -12s linear infinite}@keyframes fall-26{55.078%{transform:translate(2.621vw,55.078vh) scale(.7803)}to{transform:translate(2.5739vw,99vh) scale(.7803)}}.snow:nth-child(27){opacity:.8338;transform:translate(2.2588vw,-10px) scale(.2941);animation:fall-27 21s -2s linear infinite}@keyframes fall-27{59.172%{transform:translate(.3814vw,59.172vh) scale(.2941)}to{transform:translate(1.3201vw,99vh) scale(.2941)}}.snow:nth-child(28){opacity:.4916;transform:translate(19.5878vw,-10px) scale(.0674);animation:fall-28 15s -17s linear infinite}@keyframes fall-28{40.351%{transform:translate(9.7874vw,40.351vh) scale(.0674)}to{transform:translate(14.6876vw,99vh) scale(.0674)}}.snow:nth-child(29){opacity:.8536;transform:translate(14.6229vw,-10px) scale(.5846);animation:fall-29 16s -5s linear infinite}@keyframes fall-29{32.59%{transform:translate(13.2535vw,32.59vh) scale(.5846)}to{transform:translate(13.9382vw,99vh) scale(.5846)}}.snow:nth-child(30){opacity:1.7636;transform:translate(28.9059vw,-10px) scale(.6101);animation:fall-30 13s -27s linear infinite}@keyframes fall-30{32.127%{transform:translate(19.22vw,32.127vh) scale(.6101)}to{transform:translate(24.06295vw,99vh) scale(.6101)}}.snow:nth-child(31){opacity:1.636;transform:translate(47.121vw,-10px) scale(.6101);animation:fall-31 29s -5s linear infinite}@keyframes fall-31{41.231%{transform:translate(40.6268vw,41.231vh) scale(.6101)}to{transform:translate(43.8739vw,99vh) scale(.6101)}}.snow:nth-child(32){opacity:1.3438;transform:translate(43.1202vw,-10px) scale(.7861);animation:fall-32 21s -22s linear infinite}@keyframes fall-32{33.712%{transform:translate(49.8666vw,33.712vh) scale(.7861)}to{transform:translate(46.4934vw,99vh) scale(.7861)}}.snow:nth-child(33){opacity:.7906;transform:translate(43.1143vw,-10px) scale(.7578);animation:fall-33 22s -19s linear infinite}@keyframes fall-33{55.527%{transform:translate(52.9545vw,55.527vh) scale(.7578)}to{transform:translate(48.0344vw,99vh) scale(.7578)}}.snow:nth-child(34){opacity:.816;transform:translate(87.8185vw,-10px) scale(.9864);animation:fall-34 13s -26s linear infinite}@keyframes fall-34{61.813%{transform:translate(85.5485vw,61.813vh) scale(.9864)}to{transform:translate(86.6835vw,99vh) scale(.9864)}}.snow:nth-child(35){opacity:1.8526;transform:translate(69.5763vw,-10px) scale(.4035);animation:fall-35 13s -8s linear infinite}@keyframes fall-35{56.245%{transform:translate(68.4764vw,56.245vh) scale(.4035)}to{transform:translate(69.02635vw,99vh) scale(.4035)}}.snow:nth-child(36){opacity:.4266;transform:translate(43.6593vw,-10px) scale(.2991);animation:fall-36 11s -17s linear infinite}@keyframes fall-36{67.15%{transform:translate(42.0484vw,67.15vh) scale(.2991)}to{transform:translate(42.85385vw,99vh) scale(.2991)}}.snow:nth-child(37){opacity:1.128;transform:translate(94.1022vw,-10px) scale(.0698);animation:fall-37 24s -26s linear infinite}@keyframes fall-37{37.834%{transform:translate(88.875vw,37.834vh) scale(.0698)}to{transform:translate(91.4886vw,99vh) scale(.0698)}}.snow:nth-child(38){opacity:.5874;transform:translate(76.0974vw,-10px) scale(.1726);animation:fall-38 15s -29s linear infinite}@keyframes fall-38{62.469%{transform:translate(74.7597vw,62.469vh) scale(.1726)}to{transform:translate(75.42855vw,99vh) scale(.1726)}}.snow:nth-child(39){opacity:.519;transform:translate(34.5393vw,-10px) scale(.2227);animation:fall-39 18s -10s linear infinite}@keyframes fall-39{52.572%{transform:translate(39.4372vw,52.572vh) scale(.2227)}to{transform:translate(36.98825vw,99vh) scale(.2227)}}.snow:nth-child(40){opacity:.0558;transform:translate(52.1347vw,-10px) scale(.1709);animation:fall-40 21s -7s linear infinite}@keyframes fall-40{60.025%{transform:translate(46.5787vw,60.025vh) scale(.1709)}to{transform:translate(49.3567vw,99vh) scale(.1709)}}.snow:nth-child(41){opacity:1.555;transform:translate(19.5821vw,-10px) scale(.8812);animation:fall-41 16s -4s linear infinite}@keyframes fall-41{79.573%{transform:translate(18.9369vw,79.573vh) scale(.8812)}to{transform:translate(19.2595vw,99vh) scale(.8812)}}.snow:nth-child(42){opacity:1.4166;transform:translate(16.9601vw,-10px) scale(.8013);animation:fall-42 20s -25s linear infinite}@keyframes fall-42{49.536%{transform:translate(21.7024vw,49.536vh) scale(.8013)}to{transform:translate(19.33125vw,99vh) scale(.8013)}}.snow:nth-child(43){opacity:.8452;transform:translate(3.1187vw,-10px) scale(.4784);animation:fall-43 21s -21s linear infinite}@keyframes fall-43{62.12%{transform:translate(-6.1945vw,62.12vh) scale(.4784)}to{transform:translate(-1.5379vw,99vh) scale(.4784)}}.snow:nth-child(44){opacity:.0812;transform:translate(74.0074vw,-10px) scale(.1133);animation:fall-44 17s -1s linear infinite}@keyframes fall-44{79.281%{transform:translate(77.2052vw,79.281vh) scale(.1133)}to{transform:translate(75.6063vw,99vh) scale(.1133)}}.snow:nth-child(45){opacity:1.9676;transform:translate(1.1538vw,-10px) scale(.3252);animation:fall-45 15s -18s linear infinite}@keyframes fall-45{70.675%{transform:translate(9.0204vw,70.675vh) scale(.3252)}to{transform:translate(5.0871vw,99vh) scale(.3252)}}.snow:nth-child(46){opacity:.1876;transform:translate(89.5892vw,-10px) scale(.7251);animation:fall-46 24s -22s linear infinite}@keyframes fall-46{74.543%{transform:translate(94.0047vw,74.543vh) scale(.7251)}to{transform:translate(91.79695vw,99vh) scale(.7251)}}.snow:nth-child(47){opacity:.6354;transform:translate(40.6886vw,-10px) scale(.8741);animation:fall-47 10s -12s linear infinite}@keyframes fall-47{36.774%{transform:translate(36.45vw,36.774vh) scale(.8741)}to{transform:translate(38.5693vw,99vh) scale(.8741)}}.snow:nth-child(48){opacity:.3188;transform:translate(41.3005vw,-10px) scale(.7872);animation:fall-48 13s -11s linear infinite}@keyframes fall-48{59.381%{transform:translate(48.3214vw,59.381vh) scale(.7872)}to{transform:translate(44.81095vw,99vh) scale(.7872)}}.snow:nth-child(49){opacity:1.9408;transform:translate(96.056vw,-10px) scale(.8235);animation:fall-49 24s -22s linear infinite}@keyframes fall-49{61.889%{transform:translate(100.6755vw,61.889vh) scale(.8235)}to{transform:translate(98.36575vw,99vh) scale(.8235)}}.snow:nth-child(50){opacity:1.656;transform:translate(61.6735vw,-10px) scale(.9967);animation:fall-50 17s -8s linear infinite}@keyframes fall-50{56.697%{transform:translate(61.7592vw,56.697vh) scale(.9967)}to{transform:translate(61.71635vw,99vh) scale(.9967)}}.snow:nth-child(51){opacity:1.7522;transform:translate(56.8998vw,-10px) scale(.0315);animation:fall-51 28s -9s linear infinite}@keyframes fall-51{64.098%{transform:translate(54.495vw,64.098vh) scale(.0315)}to{transform:translate(55.6974vw,99vh) scale(.0315)}}.snow:nth-child(52){opacity:1.5368;transform:translate(36.8545vw,-10px) scale(.1981);animation:fall-52 10s -18s linear infinite}@keyframes fall-52{59.346%{transform:translate(34.1469vw,59.346vh) scale(.1981)}to{transform:translate(35.5007vw,99vh) scale(.1981)}}.snow:nth-child(53){opacity:.7978;transform:translate(35.7177vw,-10px) scale(.4151);animation:fall-53 29s -15s linear infinite}@keyframes fall-53{57.695%{transform:translate(28.3313vw,57.695vh) scale(.4151)}to{transform:translate(32.0245vw,99vh) scale(.4151)}}.snow:nth-child(54){opacity:.1316;transform:translate(.3751vw,-10px) scale(.96);animation:fall-54 17s -16s linear infinite}@keyframes fall-54{32.919%{transform:translate(.4523vw,32.919vh) scale(.96)}to{transform:translate(.4137vw,99vh) scale(.96)}}.snow:nth-child(55){opacity:1.1102;transform:translate(24.1156vw,-10px) scale(.0657);animation:fall-55 11s -2s linear infinite}@keyframes fall-55{45.44%{transform:translate(24.001vw,45.44vh) scale(.0657)}to{transform:translate(24.0583vw,99vh) scale(.0657)}}.snow:nth-child(56){opacity:1.2994;transform:translate(7.0105vw,-10px) scale(.8198);animation:fall-56 25s -19s linear infinite}@keyframes fall-56{78.613%{transform:translate(16.248vw,78.613vh) scale(.8198)}to{transform:translate(11.62925vw,99vh) scale(.8198)}}.snow:nth-child(57){opacity:1.1408;transform:translate(12.6304vw,-10px) scale(.9767);animation:fall-57 25s -27s linear infinite}@keyframes fall-57{41.631%{transform:translate(14.7302vw,41.631vh) scale(.9767)}to{transform:translate(13.6803vw,99vh) scale(.9767)}}.snow:nth-child(58){opacity:.7492;transform:translate(63.845vw,-10px) scale(.6153);animation:fall-58 28s -11s linear infinite}@keyframes fall-58{42.413%{transform:translate(58.8917vw,42.413vh) scale(.6153)}to{transform:translate(61.36835vw,99vh) scale(.6153)}}.snow:nth-child(59){opacity:1.6978;transform:translate(74.747vw,-10px) scale(.7455);animation:fall-59 23s -4s linear infinite}@keyframes fall-59{43.412%{transform:translate(78.0219vw,43.412vh) scale(.7455)}to{transform:translate(76.38445vw,99vh) scale(.7455)}}.snow:nth-child(60){opacity:.0448;transform:translate(63.4596vw,-10px) scale(.5031);animation:fall-60 20s -10s linear infinite}@keyframes fall-60{64.186%{transform:translate(62.8873vw,64.186vh) scale(.5031)}to{transform:translate(63.17345vw,99vh) scale(.5031)}}.snow:nth-child(61){opacity:.236;transform:translate(54.8758vw,-10px) scale(.5685);animation:fall-61 30s -25s linear infinite}@keyframes fall-61{58.043%{transform:translate(62.2563vw,58.043vh) scale(.5685)}to{transform:translate(58.56605vw,99vh) scale(.5685)}}.snow:nth-child(62){opacity:1.311;transform:translate(28.522vw,-10px) scale(.2663);animation:fall-62 15s -9s linear infinite}@keyframes fall-62{59.43%{transform:translate(31.5621vw,59.43vh) scale(.2663)}to{transform:translate(30.04205vw,99vh) scale(.2663)}}.snow:nth-child(63){opacity:.5466;transform:translate(57.7177vw,-10px) scale(.3554);animation:fall-63 14s -4s linear infinite}@keyframes fall-63{37.359%{transform:translate(51.1056vw,37.359vh) scale(.3554)}to{transform:translate(54.41165vw,99vh) scale(.3554)}}.snow:nth-child(64){opacity:.774;transform:translate(60.5792vw,-10px) scale(.069);animation:fall-64 26s -5s linear infinite}@keyframes fall-64{44.232%{transform:translate(65.2329vw,44.232vh) scale(.069)}to{transform:translate(62.90605vw,99vh) scale(.069)}}.snow:nth-child(65){opacity:1.407;transform:translate(35.6385vw,-10px) scale(.7243);animation:fall-65 30s -27s linear infinite}@keyframes fall-65{38.288%{transform:translate(34.4776vw,38.288vh) scale(.7243)}to{transform:translate(35.05805vw,99vh) scale(.7243)}}.snow:nth-child(66){opacity:.981;transform:translate(24.3081vw,-10px) scale(.8236);animation:fall-66 25s -24s linear infinite}@keyframes fall-66{61.907%{transform:translate(29.0193vw,61.907vh) scale(.8236)}to{transform:translate(26.6637vw,99vh) scale(.8236)}}.snow:nth-child(67){opacity:1.8818;transform:translate(28.1162vw,-10px) scale(.3189);animation:fall-67 21s -12s linear infinite}@keyframes fall-67{48.612%{transform:translate(20.5983vw,48.612vh) scale(.3189)}to{transform:translate(24.35725vw,99vh) scale(.3189)}}.snow:nth-child(68){opacity:1.9488;transform:translate(58.4041vw,-10px) scale(.2422);animation:fall-68 18s -8s linear infinite}@keyframes fall-68{65.856%{transform:translate(59.2791vw,65.856vh) scale(.2422)}to{transform:translate(58.8416vw,99vh) scale(.2422)}}.snow:nth-child(69){opacity:.683;transform:translate(13.8661vw,-10px) scale(.7362);animation:fall-69 25s -1s linear infinite}@keyframes fall-69{56.854%{transform:translate(11.0763vw,56.854vh) scale(.7362)}to{transform:translate(12.4712vw,99vh) scale(.7362)}}.snow:nth-child(70){opacity:1.6532;transform:translate(60.107vw,-10px) scale(.3496);animation:fall-70 19s -27s linear infinite}@keyframes fall-70{43.262%{transform:translate(52.227vw,43.262vh) scale(.3496)}to{transform:translate(56.167vw,99vh) scale(.3496)}}.snow:nth-child(71){opacity:1.4742;transform:translate(44.7413vw,-10px) scale(.9246);animation:fall-71 25s -5s linear infinite}@keyframes fall-71{66.801%{transform:translate(44.1277vw,66.801vh) scale(.9246)}to{transform:translate(44.4345vw,99vh) scale(.9246)}}.snow:nth-child(72){opacity:1.4948;transform:translate(67.0887vw,-10px) scale(.2365);animation:fall-72 25s -29s linear infinite}@keyframes fall-72{76.507%{transform:translate(59.2307vw,76.507vh) scale(.2365)}to{transform:translate(63.1597vw,99vh) scale(.2365)}}.snow:nth-child(73){opacity:.9884;transform:translate(30.4592vw,-10px) scale(.051);animation:fall-73 18s -25s linear infinite}@keyframes fall-73{66.531%{transform:translate(20.8186vw,66.531vh) scale(.051)}to{transform:translate(25.6389vw,99vh) scale(.051)}}.snow:nth-child(74){opacity:.5156;transform:translate(.7132vw,-10px) scale(.1028);animation:fall-74 17s -10s linear infinite}@keyframes fall-74{63.053%{transform:translate(-7.3351vw,63.053vh) scale(.1028)}to{transform:translate(-3.31095vw,99vh) scale(.1028)}}.snow:nth-child(75){opacity:1.799;transform:translate(6.7882vw,-10px) scale(.7993);animation:fall-75 27s -2s linear infinite}@keyframes fall-75{42.621%{transform:translate(4.6929vw,42.621vh) scale(.7993)}to{transform:translate(5.74055vw,99vh) scale(.7993)}}.snow:nth-child(76){opacity:1.439;transform:translate(42.9263vw,-10px) scale(.926);animation:fall-76 19s -6s linear infinite}@keyframes fall-76{77.705%{transform:translate(46.6828vw,77.705vh) scale(.926)}to{transform:translate(44.80455vw,99vh) scale(.926)}}.snow:nth-child(77){opacity:.7618;transform:translate(19.0476vw,-10px) scale(.5492);animation:fall-77 20s -2s linear infinite}@keyframes fall-77{32.055%{transform:translate(21.3589vw,32.055vh) scale(.5492)}to{transform:translate(20.20325vw,99vh) scale(.5492)}}.snow:nth-child(78){opacity:1.5934;transform:translate(79.6005vw,-10px) scale(.7237);animation:fall-78 17s -22s linear infinite}@keyframes fall-78{74.061%{transform:translate(71.6961vw,74.061vh) scale(.7237)}to{transform:translate(75.6483vw,99vh) scale(.7237)}}.snow:nth-child(79){opacity:1.1994;transform:translate(61.4658vw,-10px) scale(.2011);animation:fall-79 13s -26s linear infinite}@keyframes fall-79{71.557%{transform:translate(51.751vw,71.557vh) scale(.2011)}to{transform:translate(56.6084vw,99vh) scale(.2011)}}.snow:nth-child(80){opacity:.4586;transform:translate(37.0133vw,-10px) scale(.6103);animation:fall-80 13s -3s linear infinite}@keyframes fall-80{75.222%{transform:translate(43.4709vw,75.222vh) scale(.6103)}to{transform:translate(40.2421vw,99vh) scale(.6103)}}.snow:nth-child(81){opacity:.602;transform:translate(9.1613vw,-10px) scale(.7061);animation:fall-81 23s -8s linear infinite}@keyframes fall-81{77.262%{transform:translate(.621vw,77.262vh) scale(.7061)}to{transform:translate(4.89115vw,99vh) scale(.7061)}}.snow:nth-child(82){opacity:1.2874;transform:translate(89.9062vw,-10px) scale(.8933);animation:fall-82 25s -8s linear infinite}@keyframes fall-82{79.966%{transform:translate(96.1807vw,79.966vh) scale(.8933)}to{transform:translate(93.04345vw,99vh) scale(.8933)}}.snow:nth-child(83){opacity:.671;transform:translate(82.604vw,-10px) scale(.577);animation:fall-83 13s -21s linear infinite}@keyframes fall-83{42.517%{transform:translate(74.7251vw,42.517vh) scale(.577)}to{transform:translate(78.66455vw,99vh) scale(.577)}}.snow:nth-child(84){opacity:.2634;transform:translate(43.9444vw,-10px) scale(.1472);animation:fall-84 30s -12s linear infinite}@keyframes fall-84{59.524%{transform:translate(47.4383vw,59.524vh) scale(.1472)}to{transform:translate(45.69135vw,99vh) scale(.1472)}}.snow:nth-child(85){opacity:1.2798;transform:translate(45.844vw,-10px) scale(.5176);animation:fall-85 11s -4s linear infinite}@keyframes fall-85{34.051%{transform:translate(39.7325vw,34.051vh) scale(.5176)}to{transform:translate(42.78825vw,99vh) scale(.5176)}}.snow:nth-child(86){opacity:.8878;transform:translate(63.7448vw,-10px) scale(.2249);animation:fall-86 19s -7s linear infinite}@keyframes fall-86{46.708%{transform:translate(73.6066vw,46.708vh) scale(.2249)}to{transform:translate(68.6757vw,99vh) scale(.2249)}}.snow:nth-child(87){opacity:1.1006;transform:translate(86.3962vw,-10px) scale(.0042);animation:fall-87 23s -3s linear infinite}@keyframes fall-87{58.913%{transform:translate(81.8549vw,58.913vh) scale(.0042)}to{transform:translate(84.12555vw,99vh) scale(.0042)}}.snow:nth-child(88){opacity:1.29;transform:translate(27.2986vw,-10px) scale(.3619);animation:fall-88 25s -16s linear infinite}@keyframes fall-88{50.821%{transform:translate(22.7654vw,50.821vh) scale(.3619)}to{transform:translate(25.032vw,99vh) scale(.3619)}}.snow:nth-child(89){opacity:.4784;transform:translate(62.0905vw,-10px) scale(.8923);animation:fall-89 29s -7s linear infinite}@keyframes fall-89{30.304%{transform:translate(61.1324vw,30.304vh) scale(.8923)}to{transform:translate(61.61145vw,99vh) scale(.8923)}}.snow:nth-child(90){opacity:1.9762;transform:translate(42.7012vw,-10px) scale(.1239);animation:fall-90 16s -14s linear infinite}@keyframes fall-90{69.918%{transform:translate(46.7385vw,69.918vh) scale(.1239)}to{transform:translate(44.71985vw,99vh) scale(.1239)}}.snow:nth-child(91){opacity:1.4038;transform:translate(94.5999vw,-10px) scale(.9431);animation:fall-91 12s -22s linear infinite}@keyframes fall-91{58.751%{transform:translate(101.0733vw,58.751vh) scale(.9431)}to{transform:translate(97.8366vw,99vh) scale(.9431)}}.snow:nth-child(92){opacity:.1586;transform:translate(27.677vw,-10px) scale(.7113);animation:fall-92 20s -15s linear infinite}@keyframes fall-92{62.429%{transform:translate(19.5432vw,62.429vh) scale(.7113)}to{transform:translate(23.6101vw,99vh) scale(.7113)}}.snow:nth-child(93){opacity:1.8616;transform:translate(99.3677vw,-10px) scale(.8768);animation:fall-93 24s -1s linear infinite}@keyframes fall-93{35.291%{transform:translate(108.6179vw,35.291vh) scale(.8768)}to{transform:translate(103.9928vw,99vh) scale(.8768)}}.snow:nth-child(94){opacity:1.8566;transform:translate(60.9271vw,-10px) scale(.8664);animation:fall-94 22s -25s linear infinite}@keyframes fall-94{37.499%{transform:translate(65.2564vw,37.499vh) scale(.8664)}to{transform:translate(63.09175vw,99vh) scale(.8664)}}.snow:nth-child(95){opacity:.2796;transform:translate(27.1426vw,-10px) scale(.8829);animation:fall-95 14s -16s linear infinite}@keyframes fall-95{69.666%{transform:translate(19.3112vw,69.666vh) scale(.8829)}to{transform:translate(23.2269vw,99vh) scale(.8829)}}.snow:nth-child(96){opacity:.5228;transform:translate(74.6373vw,-10px) scale(.1548);animation:fall-96 10s -14s linear infinite}@keyframes fall-96{65.436%{transform:translate(84.3037vw,65.436vh) scale(.1548)}to{transform:translate(79.4705vw,99vh) scale(.1548)}}.snow:nth-child(97){opacity:1.4898;transform:translate(28.2607vw,-10px) scale(.3378);animation:fall-97 25s -17s linear infinite}@keyframes fall-97{46.43%{transform:translate(28.9597vw,46.43vh) scale(.3378)}to{transform:translate(28.6102vw,99vh) scale(.3378)}}.snow:nth-child(98){opacity:1.3456;transform:translate(29.5641vw,-10px) scale(.9737);animation:fall-98 28s -15s linear infinite}@keyframes fall-98{48.913%{transform:translate(31.6731vw,48.913vh) scale(.9737)}to{transform:translate(30.6186vw,99vh) scale(.9737)}}.snow:nth-child(99){opacity:1.8308;transform:translate(39.9052vw,-10px) scale(.0484);animation:fall-99 25s -20s linear infinite}@keyframes fall-99{62.717%{transform:translate(44.2953vw,62.717vh) scale(.0484)}to{transform:translate(42.10025vw,99vh) scale(.0484)}}.snow:nth-child(100){opacity:1.7164;transform:translate(27.5252vw,-10px) scale(.5625);animation:fall-100 19s -12s linear infinite}@keyframes fall-100{77.278%{transform:translate(19.8055vw,77.278vh) scale(.5625)}to{transform:translate(23.66535vw,99vh) scale(.5625)}}.snow:nth-child(101){opacity:.4328;transform:translate(26.6959vw,-10px) scale(.0973);animation:fall-101 14s -15s linear infinite}@keyframes fall-101{47.853%{transform:translate(32.3803vw,47.853vh) scale(.0973)}to{transform:translate(29.5381vw,99vh) scale(.0973)}}.snow:nth-child(102){opacity:1.4338;transform:translate(11.6658vw,-10px) scale(.1319);animation:fall-102 17s -16s linear infinite}@keyframes fall-102{65.391%{transform:translate(3.1045vw,65.391vh) scale(.1319)}to{transform:translate(7.38515vw,99vh) scale(.1319)}}.snow:nth-child(103){opacity:.1466;transform:translate(99.1662vw,-10px) scale(.7389);animation:fall-103 15s -29s linear infinite}@keyframes fall-103{52.326%{transform:translate(103.7424vw,52.326vh) scale(.7389)}to{transform:translate(101.4543vw,99vh) scale(.7389)}}.snow:nth-child(104){opacity:.8972;transform:translate(72.6178vw,-10px) scale(.7049);animation:fall-104 27s -10s linear infinite}@keyframes fall-104{64.693%{transform:translate(69.6893vw,64.693vh) scale(.7049)}to{transform:translate(71.15355vw,99vh) scale(.7049)}}.snow:nth-child(105){opacity:1.0528;transform:translate(97.1272vw,-10px) scale(.9249);animation:fall-105 27s -12s linear infinite}@keyframes fall-105{75.019%{transform:translate(93.9183vw,75.019vh) scale(.9249)}to{transform:translate(95.52275vw,99vh) scale(.9249)}}.snow:nth-child(106){opacity:.4946;transform:translate(81.6121vw,-10px) scale(.8241);animation:fall-106 30s -7s linear infinite}@keyframes fall-106{78.222%{transform:translate(81.9832vw,78.222vh) scale(.8241)}to{transform:translate(81.79765vw,99vh) scale(.8241)}}.snow:nth-child(107){opacity:1.0042;transform:translate(19.9764vw,-10px) scale(.3533);animation:fall-107 16s -29s linear infinite}@keyframes fall-107{75.934%{transform:translate(24.3631vw,75.934vh) scale(.3533)}to{transform:translate(22.16975vw,99vh) scale(.3533)}}.snow:nth-child(108){opacity:.9024;transform:translate(48.1231vw,-10px) scale(.8809);animation:fall-108 13s -24s linear infinite}@keyframes fall-108{70.824%{transform:translate(48.0719vw,70.824vh) scale(.8809)}to{transform:translate(48.0975vw,99vh) scale(.8809)}}.snow:nth-child(109){opacity:.6272;transform:translate(77.9489vw,-10px) scale(.8889);animation:fall-109 19s -10s linear infinite}@keyframes fall-109{75.539%{transform:translate(85.3658vw,75.539vh) scale(.8889)}to{transform:translate(81.65735vw,99vh) scale(.8889)}}.snow:nth-child(110){opacity:.2762;transform:translate(78.2205vw,-10px) scale(.0524);animation:fall-110 21s -30s linear infinite}@keyframes fall-110{69.133%{transform:translate(70.3699vw,69.133vh) scale(.0524)}to{transform:translate(74.2952vw,99vh) scale(.0524)}}.snow:nth-child(111){opacity:1.05;transform:translate(24.4739vw,-10px) scale(.4252);animation:fall-111 19s -14s linear infinite}@keyframes fall-111{51.107%{transform:translate(17.1721vw,51.107vh) scale(.4252)}to{transform:translate(20.823vw,99vh) scale(.4252)}}.snow:nth-child(112){opacity:1.9122;transform:translate(8.6537vw,-10px) scale(.7225);animation:fall-112 16s -15s linear infinite}@keyframes fall-112{73.098%{transform:translate(18.4161vw,73.098vh) scale(.7225)}to{transform:translate(13.5349vw,99vh) scale(.7225)}}.snow:nth-child(113){opacity:.0952;transform:translate(50.4232vw,-10px) scale(.7682);animation:fall-113 25s -28s linear infinite}@keyframes fall-113{71.504%{transform:translate(53.532vw,71.504vh) scale(.7682)}to{transform:translate(51.9776vw,99vh) scale(.7682)}}.snow:nth-child(114){opacity:1.3144;transform:translate(60.2446vw,-10px) scale(.3205);animation:fall-114 13s -17s linear infinite}@keyframes fall-114{62.34%{transform:translate(69.1469vw,62.34vh) scale(.3205)}to{transform:translate(64.69575vw,99vh) scale(.3205)}}.snow:nth-child(115){opacity:1.0926;transform:translate(20.6889vw,-10px) scale(.4645);animation:fall-115 30s -28s linear infinite}@keyframes fall-115{51.86%{transform:translate(18.8122vw,51.86vh) scale(.4645)}to{transform:translate(19.75055vw,99vh) scale(.4645)}}.snow:nth-child(116){opacity:.2826;transform:translate(52.6328vw,-10px) scale(.9876);animation:fall-116 27s -17s linear infinite}@keyframes fall-116{76.26%{transform:translate(60.1152vw,76.26vh) scale(.9876)}to{transform:translate(56.374vw,99vh) scale(.9876)}}.snow:nth-child(117){opacity:.5524;transform:translate(84.1378vw,-10px) scale(.8688);animation:fall-117 11s -16s linear infinite}@keyframes fall-117{51.618%{transform:translate(76.1549vw,51.618vh) scale(.8688)}to{transform:translate(80.14635vw,99vh) scale(.8688)}}.snow:nth-child(118){opacity:.897;transform:translate(87.6587vw,-10px) scale(.9391);animation:fall-118 18s -1s linear infinite}@keyframes fall-118{32.826%{transform:translate(83.3068vw,32.826vh) scale(.9391)}to{transform:translate(85.48275vw,99vh) scale(.9391)}}.snow:nth-child(119){opacity:1.1312;transform:translate(79.4561vw,-10px) scale(.299);animation:fall-119 27s -20s linear infinite}@keyframes fall-119{49.522%{transform:translate(89.2018vw,49.522vh) scale(.299)}to{transform:translate(84.32895vw,99vh) scale(.299)}}.snow:nth-child(120){opacity:1.7848;transform:translate(80.747vw,-10px) scale(.441);animation:fall-120 27s -30s linear infinite}@keyframes fall-120{52.982%{transform:translate(72.0516vw,52.982vh) scale(.441)}to{transform:translate(76.3993vw,99vh) scale(.441)}}.snow:nth-child(121){opacity:.1016;transform:translate(44.2151vw,-10px) scale(.8288);animation:fall-121 15s -1s linear infinite}@keyframes fall-121{36.768%{transform:translate(47.7487vw,36.768vh) scale(.8288)}to{transform:translate(45.9819vw,99vh) scale(.8288)}}.snow:nth-child(122){opacity:1.426;transform:translate(21.7275vw,-10px) scale(.205);animation:fall-122 20s -25s linear infinite}@keyframes fall-122{32.363%{transform:translate(13.46vw,32.363vh) scale(.205)}to{transform:translate(17.59375vw,99vh) scale(.205)}}.snow:nth-child(123){opacity:.3246;transform:translate(89.6038vw,-10px) scale(.505);animation:fall-123 24s -5s linear infinite}@keyframes fall-123{32.889%{transform:translate(81.6104vw,32.889vh) scale(.505)}to{transform:translate(85.6071vw,99vh) scale(.505)}}.snow:nth-child(124){opacity:1.5594;transform:translate(64.2749vw,-10px) scale(.9001);animation:fall-124 22s -5s linear infinite}@keyframes fall-124{48.942%{transform:translate(66.721vw,48.942vh) scale(.9001)}to{transform:translate(65.49795vw,99vh) scale(.9001)}}.snow:nth-child(125){opacity:1.3966;transform:translate(52.5308vw,-10px) scale(.5521);animation:fall-125 24s -2s linear infinite}@keyframes fall-125{33.684%{transform:translate(46.3988vw,33.684vh) scale(.5521)}to{transform:translate(49.4648vw,99vh) scale(.5521)}}.snow:nth-child(126){opacity:.5288;transform:translate(6.0402vw,-10px) scale(.8623);animation:fall-126 29s -18s linear infinite}@keyframes fall-126{67.465%{transform:translate(3.7452vw,67.465vh) scale(.8623)}to{transform:translate(4.8927vw,99vh) scale(.8623)}}.snow:nth-child(127){opacity:.878;transform:translate(87.8915vw,-10px) scale(.8056);animation:fall-127 29s -27s linear infinite}@keyframes fall-127{41.452%{transform:translate(87.4702vw,41.452vh) scale(.8056)}to{transform:translate(87.68085vw,99vh) scale(.8056)}}.snow:nth-child(128){opacity:1.3578;transform:translate(32.5545vw,-10px) scale(.0675);animation:fall-128 15s -23s linear infinite}@keyframes fall-128{43.978%{transform:translate(31.4299vw,43.978vh) scale(.0675)}to{transform:translate(31.9922vw,99vh) scale(.0675)}}.snow:nth-child(129){opacity:1.1742;transform:translate(65.6769vw,-10px) scale(.6747);animation:fall-129 16s -6s linear infinite}@keyframes fall-129{45.833%{transform:translate(74.5572vw,45.833vh) scale(.6747)}to{transform:translate(70.11705vw,99vh) scale(.6747)}}.snow:nth-child(130){opacity:.5432;transform:translate(93.9418vw,-10px) scale(.9998);animation:fall-130 14s -28s linear infinite}@keyframes fall-130{43.029%{transform:translate(94.6123vw,43.029vh) scale(.9998)}to{transform:translate(94.27705vw,99vh) scale(.9998)}}.snow:nth-child(131){opacity:1.6182;transform:translate(87.7963vw,-10px) scale(.7431);animation:fall-131 28s -26s linear infinite}@keyframes fall-131{37.568%{transform:translate(85.7674vw,37.568vh) scale(.7431)}to{transform:translate(86.78185vw,99vh) scale(.7431)}}.snow:nth-child(132){opacity:1.3418;transform:translate(37.7151vw,-10px) scale(.7265);animation:fall-132 27s -17s linear infinite}@keyframes fall-132{45.152%{transform:translate(37.3967vw,45.152vh) scale(.7265)}to{transform:translate(37.5559vw,99vh) scale(.7265)}}.snow:nth-child(133){opacity:1.1242;transform:translate(14.646vw,-10px) scale(.6966);animation:fall-133 11s -30s linear infinite}@keyframes fall-133{74.267%{transform:translate(15.4087vw,74.267vh) scale(.6966)}to{transform:translate(15.02735vw,99vh) scale(.6966)}}.snow:nth-child(134){opacity:1.899;transform:translate(31.9707vw,-10px) scale(.7905);animation:fall-134 12s -17s linear infinite}@keyframes fall-134{33.976%{transform:translate(22.4803vw,33.976vh) scale(.7905)}to{transform:translate(27.2255vw,99vh) scale(.7905)}}.snow:nth-child(135){opacity:1.8428;transform:translate(32.9559vw,-10px) scale(.7646);animation:fall-135 29s -5s linear infinite}@keyframes fall-135{31.716%{transform:translate(24.7675vw,31.716vh) scale(.7646)}to{transform:translate(28.8617vw,99vh) scale(.7646)}}.snow:nth-child(136){opacity:.0754;transform:translate(64.0529vw,-10px) scale(.7944);animation:fall-136 22s -25s linear infinite}@keyframes fall-136{67.328%{transform:translate(65.1636vw,67.328vh) scale(.7944)}to{transform:translate(64.60825vw,99vh) scale(.7944)}}.snow:nth-child(137){opacity:1.4662;transform:translate(.1987vw,-10px) scale(.8252);animation:fall-137 27s -29s linear infinite}@keyframes fall-137{71.729%{transform:translate(-2.1496vw,71.729vh) scale(.8252)}to{transform:translate(-.97545vw,99vh) scale(.8252)}}.snow:nth-child(138){opacity:.773;transform:translate(1.6464vw,-10px) scale(.1388);animation:fall-138 19s -12s linear infinite}@keyframes fall-138{62.292%{transform:translate(4.9477vw,62.292vh) scale(.1388)}to{transform:translate(3.29705vw,99vh) scale(.1388)}}.snow:nth-child(139){opacity:1.5832;transform:translate(62.1306vw,-10px) scale(.0902);animation:fall-139 23s -11s linear infinite}@keyframes fall-139{60.396%{transform:translate(69.2452vw,60.396vh) scale(.0902)}to{transform:translate(65.6879vw,99vh) scale(.0902)}}.snow:nth-child(140){opacity:1.3236;transform:translate(41.4933vw,-10px) scale(.066);animation:fall-140 14s -29s linear infinite}@keyframes fall-140{59.524%{transform:translate(34.4931vw,59.524vh) scale(.066)}to{transform:translate(37.9932vw,99vh) scale(.066)}}.snow:nth-child(141){opacity:1.902;transform:translate(96.2268vw,-10px) scale(.8556);animation:fall-141 13s -28s linear infinite}@keyframes fall-141{54.631%{transform:translate(106.1539vw,54.631vh) scale(.8556)}to{transform:translate(101.19035vw,99vh) scale(.8556)}}.snow:nth-child(142){opacity:1.5002;transform:translate(49.0653vw,-10px) scale(.9424);animation:fall-142 11s -19s linear infinite}@keyframes fall-142{37.213%{transform:translate(44.4779vw,37.213vh) scale(.9424)}to{transform:translate(46.7716vw,99vh) scale(.9424)}}.snow:nth-child(143){opacity:1.679;transform:translate(39.0599vw,-10px) scale(.4178);animation:fall-143 20s -24s linear infinite}@keyframes fall-143{62.558%{transform:translate(40.18vw,62.558vh) scale(.4178)}to{transform:translate(39.61995vw,99vh) scale(.4178)}}.snow:nth-child(144){opacity:1.6396;transform:translate(40.8366vw,-10px) scale(.5155);animation:fall-144 11s -2s linear infinite}@keyframes fall-144{72.696%{transform:translate(48.6258vw,72.696vh) scale(.5155)}to{transform:translate(44.7312vw,99vh) scale(.5155)}}.snow:nth-child(145){opacity:1.9802;transform:translate(6.4091vw,-10px) scale(.2043);animation:fall-145 28s -2s linear infinite}@keyframes fall-145{65.23%{transform:translate(1.9991vw,65.23vh) scale(.2043)}to{transform:translate(4.2041vw,99vh) scale(.2043)}}.snow:nth-child(146){opacity:.9818;transform:translate(83.6064vw,-10px) scale(.3026);animation:fall-146 22s -20s linear infinite}@keyframes fall-146{75.939%{transform:translate(91.6798vw,75.939vh) scale(.3026)}to{transform:translate(87.6431vw,99vh) scale(.3026)}}.snow:nth-child(147){opacity:.861;transform:translate(46.191vw,-10px) scale(.424);animation:fall-147 25s -23s linear infinite}@keyframes fall-147{31.973%{transform:translate(42.3585vw,31.973vh) scale(.424)}to{transform:translate(44.27475vw,99vh) scale(.424)}}.snow:nth-child(148){opacity:.186;transform:translate(31.4934vw,-10px) scale(.0021);animation:fall-148 11s -19s linear infinite}@keyframes fall-148{60.781%{transform:translate(34.6087vw,60.781vh) scale(.0021)}to{transform:translate(33.05105vw,99vh) scale(.0021)}}.snow:nth-child(149){opacity:.0738;transform:translate(87.7359vw,-10px) scale(.7185);animation:fall-149 28s -22s linear infinite}@keyframes fall-149{46.911%{transform:translate(86.3146vw,46.911vh) scale(.7185)}to{transform:translate(87.02525vw,99vh) scale(.7185)}}.snow:nth-child(150){opacity:1.6004;transform:translate(20.6279vw,-10px) scale(.8687);animation:fall-150 17s -6s linear infinite}@keyframes fall-150{79.041%{transform:translate(24.6369vw,79.041vh) scale(.8687)}to{transform:translate(22.6324vw,99vh) scale(.8687)}}.snow:nth-child(151){opacity:1.7018;transform:translate(67.4728vw,-10px) scale(.553);animation:fall-151 22s -11s linear infinite}@keyframes fall-151{63.849%{transform:translate(66.5754vw,63.849vh) scale(.553)}to{transform:translate(67.0241vw,99vh) scale(.553)}}.snow:nth-child(152){opacity:.6266;transform:translate(33.681vw,-10px) scale(.2397);animation:fall-152 13s -25s linear infinite}@keyframes fall-152{36.301%{transform:translate(32.9443vw,36.301vh) scale(.2397)}to{transform:translate(33.31265vw,99vh) scale(.2397)}}.snow:nth-child(153){opacity:.0032;transform:translate(43.0526vw,-10px) scale(.8167);animation:fall-153 29s -8s linear infinite}@keyframes fall-153{61.099%{transform:translate(36.0129vw,61.099vh) scale(.8167)}to{transform:translate(39.53275vw,99vh) scale(.8167)}}.snow:nth-child(154){opacity:.6756;transform:translate(25.1953vw,-10px) scale(.7519);animation:fall-154 15s -20s linear infinite}@keyframes fall-154{72.809%{transform:translate(16.1849vw,72.809vh) scale(.7519)}to{transform:translate(20.6901vw,99vh) scale(.7519)}}.snow:nth-child(155){opacity:1.9778;transform:translate(67.1052vw,-10px) scale(.7519);animation:fall-155 20s -7s linear infinite}@keyframes fall-155{73.61%{transform:translate(74.0074vw,73.61vh) scale(.7519)}to{transform:translate(70.5563vw,99vh) scale(.7519)}}.snow:nth-child(156){opacity:1.4374;transform:translate(53.2926vw,-10px) scale(.599);animation:fall-156 25s -8s linear infinite}@keyframes fall-156{51.17%{transform:translate(46.4149vw,51.17vh) scale(.599)}to{transform:translate(49.85375vw,99vh) scale(.599)}}.snow:nth-child(157){opacity:1.847;transform:translate(56.5085vw,-10px) scale(.5738);animation:fall-157 19s -1s linear infinite}@keyframes fall-157{64.631%{transform:translate(61.9209vw,64.631vh) scale(.5738)}to{transform:translate(59.2147vw,99vh) scale(.5738)}}.snow:nth-child(158){opacity:.2892;transform:translate(1.385vw,-10px) scale(.9926);animation:fall-158 24s -9s linear infinite}@keyframes fall-158{33.009%{transform:translate(7.9216vw,33.009vh) scale(.9926)}to{transform:translate(4.6533vw,99vh) scale(.9926)}}.snow:nth-child(159){opacity:1.2072;transform:translate(11.2912vw,-10px) scale(.6805);animation:fall-159 18s -29s linear infinite}@keyframes fall-159{73.072%{transform:translate(10.3836vw,73.072vh) scale(.6805)}to{transform:translate(10.8374vw,99vh) scale(.6805)}}.snow:nth-child(160){opacity:1.29;transform:translate(72.1592vw,-10px) scale(.2789);animation:fall-160 19s -10s linear infinite}@keyframes fall-160{76.383%{transform:translate(79.1848vw,76.383vh) scale(.2789)}to{transform:translate(75.672vw,99vh) scale(.2789)}}.snow:nth-child(161){opacity:.2514;transform:translate(76.0486vw,-10px) scale(.4909);animation:fall-161 28s -17s linear infinite}@keyframes fall-161{34.877%{transform:translate(72.1vw,34.877vh) scale(.4909)}to{transform:translate(74.0743vw,99vh) scale(.4909)}}.snow:nth-child(162){opacity:.9614;transform:translate(86.2088vw,-10px) scale(.2531);animation:fall-162 20s -2s linear infinite}@keyframes fall-162{68.5%{transform:translate(83.3211vw,68.5vh) scale(.2531)}to{transform:translate(84.76495vw,99vh) scale(.2531)}}.snow:nth-child(163){opacity:1.7746;transform:translate(19.6083vw,-10px) scale(.1921);animation:fall-163 20s -22s linear infinite}@keyframes fall-163{66.27%{transform:translate(15.6876vw,66.27vh) scale(.1921)}to{transform:translate(17.64795vw,99vh) scale(.1921)}}.snow:nth-child(164){opacity:.1706;transform:translate(99.9647vw,-10px) scale(.3448);animation:fall-164 29s -20s linear infinite}@keyframes fall-164{42.877%{transform:translate(95.6893vw,42.877vh) scale(.3448)}to{transform:translate(97.827vw,99vh) scale(.3448)}}.snow:nth-child(165){opacity:1.128;transform:translate(91.2788vw,-10px) scale(.9389);animation:fall-165 12s -22s linear infinite}@keyframes fall-165{78.291%{transform:translate(85.8145vw,78.291vh) scale(.9389)}to{transform:translate(88.54665vw,99vh) scale(.9389)}}.snow:nth-child(166){opacity:.9876;transform:translate(24.2863vw,-10px) scale(.6689);animation:fall-166 28s -13s linear infinite}@keyframes fall-166{69.606%{transform:translate(25.6349vw,69.606vh) scale(.6689)}to{transform:translate(24.9606vw,99vh) scale(.6689)}}.snow:nth-child(167){opacity:1.9428;transform:translate(3.5645vw,-10px) scale(.0439);animation:fall-167 16s -27s linear infinite}@keyframes fall-167{68.323%{transform:translate(-1.4498vw,68.323vh) scale(.0439)}to{transform:translate(1.05735vw,99vh) scale(.0439)}}.snow:nth-child(168){opacity:1.465;transform:translate(95.8371vw,-10px) scale(.0786);animation:fall-168 12s -26s linear infinite}@keyframes fall-168{60.96%{transform:translate(104.7488vw,60.96vh) scale(.0786)}to{transform:translate(100.29295vw,99vh) scale(.0786)}}.snow:nth-child(169){opacity:.804;transform:translate(27.4275vw,-10px) scale(.4772);animation:fall-169 14s -2s linear infinite}@keyframes fall-169{55.083%{transform:translate(22.1604vw,55.083vh) scale(.4772)}to{transform:translate(24.79395vw,99vh) scale(.4772)}}.snow:nth-child(170){opacity:.0672;transform:translate(5.3465vw,-10px) scale(.4681);animation:fall-170 16s -24s linear infinite}@keyframes fall-170{37.203%{transform:translate(-3.5428vw,37.203vh) scale(.4681)}to{transform:translate(.90185vw,99vh) scale(.4681)}}.snow:nth-child(171){opacity:1.2498;transform:translate(73.9812vw,-10px) scale(.386);animation:fall-171 23s -11s linear infinite}@keyframes fall-171{58.576%{transform:translate(77.8876vw,58.576vh) scale(.386)}to{transform:translate(75.9344vw,99vh) scale(.386)}}.snow:nth-child(172){opacity:1.2044;transform:translate(14.7691vw,-10px) scale(.9622);animation:fall-172 20s -3s linear infinite}@keyframes fall-172{34.206%{transform:translate(10.0454vw,34.206vh) scale(.9622)}to{transform:translate(12.40725vw,99vh) scale(.9622)}}.snow:nth-child(173){opacity:1.0708;transform:translate(39.6113vw,-10px) scale(.5488);animation:fall-173 17s -2s linear infinite}@keyframes fall-173{43.055%{transform:translate(49.1037vw,43.055vh) scale(.5488)}to{transform:translate(44.3575vw,99vh) scale(.5488)}}.snow:nth-child(174){opacity:1.0942;transform:translate(3.2225vw,-10px) scale(.8644);animation:fall-174 17s -23s linear infinite}@keyframes fall-174{73.362%{transform:translate(12.1196vw,73.362vh) scale(.8644)}to{transform:translate(7.67105vw,99vh) scale(.8644)}}.snow:nth-child(175){opacity:1.2084;transform:translate(65.0394vw,-10px) scale(.9708);animation:fall-175 12s -6s linear infinite}@keyframes fall-175{39.579%{transform:translate(58.028vw,39.579vh) scale(.9708)}to{transform:translate(61.5337vw,99vh) scale(.9708)}}.snow:nth-child(176){opacity:1.7526;transform:translate(91.3522vw,-10px) scale(.6678);animation:fall-176 27s -29s linear infinite}@keyframes fall-176{79.261%{transform:translate(95.1573vw,79.261vh) scale(.6678)}to{transform:translate(93.25475vw,99vh) scale(.6678)}}.snow:nth-child(177){opacity:1.9838;transform:translate(98.5778vw,-10px) scale(.8522);animation:fall-177 24s -25s linear infinite}@keyframes fall-177{69.949%{transform:translate(94.0415vw,69.949vh) scale(.8522)}to{transform:translate(96.30965vw,99vh) scale(.8522)}}.snow:nth-child(178){opacity:1.8112;transform:translate(19.0679vw,-10px) scale(.3117);animation:fall-178 19s -30s linear infinite}@keyframes fall-178{57.276%{transform:translate(27.608vw,57.276vh) scale(.3117)}to{transform:translate(23.33795vw,99vh) scale(.3117)}}.snow:nth-child(179){opacity:.9966;transform:translate(54.5772vw,-10px) scale(.8828);animation:fall-179 17s -4s linear infinite}@keyframes fall-179{64.242%{transform:translate(61.1715vw,64.242vh) scale(.8828)}to{transform:translate(57.87435vw,99vh) scale(.8828)}}.snow:nth-child(180){opacity:.6072;transform:translate(47.0152vw,-10px) scale(.4945);animation:fall-180 19s -27s linear infinite}@keyframes fall-180{40.749%{transform:translate(54.0083vw,40.749vh) scale(.4945)}to{transform:translate(50.51175vw,99vh) scale(.4945)}}.snow:nth-child(181){opacity:1.8738;transform:translate(1.9584vw,-10px) scale(.0374);animation:fall-181 17s -17s linear infinite}@keyframes fall-181{35.81%{transform:translate(.4591vw,35.81vh) scale(.0374)}to{transform:translate(1.20875vw,99vh) scale(.0374)}}.snow:nth-child(182){opacity:1.5666;transform:translate(86.2865vw,-10px) scale(.9147);animation:fall-182 19s -19s linear infinite}@keyframes fall-182{62.067%{transform:translate(89.5827vw,62.067vh) scale(.9147)}to{transform:translate(87.9346vw,99vh) scale(.9147)}}.snow:nth-child(183){opacity:1.757;transform:translate(82.738vw,-10px) scale(.9452);animation:fall-183 10s -9s linear infinite}@keyframes fall-183{32.427%{transform:translate(77.0804vw,32.427vh) scale(.9452)}to{transform:translate(79.9092vw,99vh) scale(.9452)}}.snow:nth-child(184){opacity:.1178;transform:translate(21.5862vw,-10px) scale(.1726);animation:fall-184 30s -6s linear infinite}@keyframes fall-184{64.864%{transform:translate(20.4187vw,64.864vh) scale(.1726)}to{transform:translate(21.00245vw,99vh) scale(.1726)}}.snow:nth-child(185){opacity:.005;transform:translate(54.708vw,-10px) scale(.9493);animation:fall-185 30s -26s linear infinite}@keyframes fall-185{56.745%{transform:translate(45.6686vw,56.745vh) scale(.9493)}to{transform:translate(50.1883vw,99vh) scale(.9493)}}.snow:nth-child(186){opacity:.6672;transform:translate(42.5227vw,-10px) scale(.1123);animation:fall-186 23s -29s linear infinite}@keyframes fall-186{63.106%{transform:translate(33.0973vw,63.106vh) scale(.1123)}to{transform:translate(37.81vw,99vh) scale(.1123)}}.snow:nth-child(187){opacity:1.497;transform:translate(33.2548vw,-10px) scale(.1747);animation:fall-187 14s -12s linear infinite}@keyframes fall-187{46.052%{transform:translate(24.1031vw,46.052vh) scale(.1747)}to{transform:translate(28.67895vw,99vh) scale(.1747)}}.snow:nth-child(188){opacity:.181;transform:translate(23.0338vw,-10px) scale(.0982);animation:fall-188 15s -23s linear infinite}@keyframes fall-188{36.739%{transform:translate(24.9258vw,36.739vh) scale(.0982)}to{transform:translate(23.9798vw,99vh) scale(.0982)}}.snow:nth-child(189){opacity:.1998;transform:translate(80.8489vw,-10px) scale(.0264);animation:fall-189 14s -9s linear infinite}@keyframes fall-189{49.49%{transform:translate(90.4732vw,49.49vh) scale(.0264)}to{transform:translate(85.66105vw,99vh) scale(.0264)}}.snow:nth-child(190){opacity:1.9328;transform:translate(46.1123vw,-10px) scale(.1962);animation:fall-190 26s -27s linear infinite}@keyframes fall-190{76.762%{transform:translate(39.8342vw,76.762vh) scale(.1962)}to{transform:translate(42.97325vw,99vh) scale(.1962)}}.snow:nth-child(191){opacity:.7818;transform:translate(87.4796vw,-10px) scale(.4891);animation:fall-191 12s -5s linear infinite}@keyframes fall-191{33.411%{transform:translate(94.4868vw,33.411vh) scale(.4891)}to{transform:translate(90.9832vw,99vh) scale(.4891)}}.snow:nth-child(192){opacity:1.8426;transform:translate(95.0394vw,-10px) scale(.9313);animation:fall-192 18s -20s linear infinite}@keyframes fall-192{78.88%{transform:translate(99.4804vw,78.88vh) scale(.9313)}to{transform:translate(97.2599vw,99vh) scale(.9313)}}.snow:nth-child(193){opacity:.4164;transform:translate(21.6667vw,-10px) scale(.7568);animation:fall-193 12s -20s linear infinite}@keyframes fall-193{35.267%{transform:translate(14.7178vw,35.267vh) scale(.7568)}to{transform:translate(18.19225vw,99vh) scale(.7568)}}.snow:nth-child(194){opacity:1.7392;transform:translate(22.0705vw,-10px) scale(.5661);animation:fall-194 24s -24s linear infinite}@keyframes fall-194{67.956%{transform:translate(13.1288vw,67.956vh) scale(.5661)}to{transform:translate(17.59965vw,99vh) scale(.5661)}}.snow:nth-child(195){opacity:1.8326;transform:translate(64.4579vw,-10px) scale(.0011);animation:fall-195 21s -30s linear infinite}@keyframes fall-195{31.757%{transform:translate(62.2999vw,31.757vh) scale(.0011)}to{transform:translate(63.3789vw,99vh) scale(.0011)}}.snow:nth-child(196){opacity:.3436;transform:translate(17.2vw,-10px) scale(.7214);animation:fall-196 23s -28s linear infinite}@keyframes fall-196{67.015%{transform:translate(8.9524vw,67.015vh) scale(.7214)}to{transform:translate(13.0762vw,99vh) scale(.7214)}}.snow:nth-child(197){opacity:1.28;transform:translate(49.7704vw,-10px) scale(.3345);animation:fall-197 11s -26s linear infinite}@keyframes fall-197{41.82%{transform:translate(58.3212vw,41.82vh) scale(.3345)}to{transform:translate(54.0458vw,99vh) scale(.3345)}}.snow:nth-child(198){opacity:.5866;transform:translate(5.7121vw,-10px) scale(.4754);animation:fall-198 18s -28s linear infinite}@keyframes fall-198{31.811%{transform:translate(10.9943vw,31.811vh) scale(.4754)}to{transform:translate(8.3532vw,99vh) scale(.4754)}}.snow:nth-child(199){opacity:1.3582;transform:translate(44.7369vw,-10px) scale(.0249);animation:fall-199 16s -22s linear infinite}@keyframes fall-199{39.573%{transform:translate(39.0066vw,39.573vh) scale(.0249)}to{transform:translate(41.87175vw,99vh) scale(.0249)}}.snow:nth-child(200){opacity:1.8464;transform:translate(82.005vw,-10px) scale(.349);animation:fall-200 19s -17s linear infinite}@keyframes fall-200{69.578%{transform:translate(88.9749vw,69.578vh) scale(.349)}to{transform:translate(85.48995vw,99vh) scale(.349)}}.snow:nth-child(201){opacity:1.206;transform:translate(1.4353vw,-10px) scale(.9468);animation:fall-201 12s -29s linear infinite}@keyframes fall-201{57.618%{transform:translate(9.3879vw,57.618vh) scale(.9468)}to{transform:translate(5.4116vw,99vh) scale(.9468)}}.snow:nth-child(202){opacity:.7634;transform:translate(20.5066vw,-10px) scale(.4353);animation:fall-202 30s -14s linear infinite}@keyframes fall-202{74.138%{transform:translate(23.3705vw,74.138vh) scale(.4353)}to{transform:translate(21.93855vw,99vh) scale(.4353)}}.snow:nth-child(203){opacity:1.1954;transform:translate(34.0164vw,-10px) scale(.3175);animation:fall-203 27s -28s linear infinite}@keyframes fall-203{39.049%{transform:translate(24.8108vw,39.049vh) scale(.3175)}to{transform:translate(29.4136vw,99vh) scale(.3175)}}.snow:nth-child(204){opacity:1.8268;transform:translate(99.6165vw,-10px) scale(.1433);animation:fall-204 13s -6s linear infinite}@keyframes fall-204{48.03%{transform:translate(92.811vw,48.03vh) scale(.1433)}to{transform:translate(96.21375vw,99vh) scale(.1433)}}.snow:nth-child(205){opacity:1.5072;transform:translate(44.3872vw,-10px) scale(.2688);animation:fall-205 23s -15s linear infinite}@keyframes fall-205{40.007%{transform:translate(53.5866vw,40.007vh) scale(.2688)}to{transform:translate(48.9869vw,99vh) scale(.2688)}}.snow:nth-child(206){opacity:.9052;transform:translate(50.6517vw,-10px) scale(.5418);animation:fall-206 24s -20s linear infinite}@keyframes fall-206{34.058%{transform:translate(60.0974vw,34.058vh) scale(.5418)}to{transform:translate(55.37455vw,99vh) scale(.5418)}}.snow:nth-child(207){opacity:.8096;transform:translate(12.9365vw,-10px) scale(.18);animation:fall-207 13s -13s linear infinite}@keyframes fall-207{77.594%{transform:translate(13.486vw,77.594vh) scale(.18)}to{transform:translate(13.21125vw,99vh) scale(.18)}}.snow:nth-child(208){opacity:.2014;transform:translate(70.7132vw,-10px) scale(.2567);animation:fall-208 12s -12s linear infinite}@keyframes fall-208{60.792%{transform:translate(79.6019vw,60.792vh) scale(.2567)}to{transform:translate(75.15755vw,99vh) scale(.2567)}}.snow:nth-child(209){opacity:.3246;transform:translate(73.7781vw,-10px) scale(.11);animation:fall-209 15s -28s linear infinite}@keyframes fall-209{37.164%{transform:translate(82.4335vw,37.164vh) scale(.11)}to{transform:translate(78.1058vw,99vh) scale(.11)}}.snow:nth-child(210){opacity:.9746;transform:translate(61.6645vw,-10px) scale(.142);animation:fall-210 11s -11s linear infinite}@keyframes fall-210{69.969%{transform:translate(54.6712vw,69.969vh) scale(.142)}to{transform:translate(58.16785vw,99vh) scale(.142)}}.snow:nth-child(211){opacity:.981;transform:translate(94.907vw,-10px) scale(.9975);animation:fall-211 20s -23s linear infinite}@keyframes fall-211{55.938%{transform:translate(96.724vw,55.938vh) scale(.9975)}to{transform:translate(95.8155vw,99vh) scale(.9975)}}.snow:nth-child(212){opacity:1.4946;transform:translate(66.1248vw,-10px) scale(.7783);animation:fall-212 22s -6s linear infinite}@keyframes fall-212{55.408%{transform:translate(58.9236vw,55.408vh) scale(.7783)}to{transform:translate(62.5242vw,99vh) scale(.7783)}}.snow:nth-child(213){opacity:1.7138;transform:translate(76.4881vw,-10px) scale(.9803);animation:fall-213 13s -1s linear infinite}@keyframes fall-213{55.21%{transform:translate(85.1739vw,55.21vh) scale(.9803)}to{transform:translate(80.831vw,99vh) scale(.9803)}}.snow:nth-child(214){opacity:1.0784;transform:translate(52.8678vw,-10px) scale(.237);animation:fall-214 10s -20s linear infinite}@keyframes fall-214{44.372%{transform:translate(56.7283vw,44.372vh) scale(.237)}to{transform:translate(54.79805vw,99vh) scale(.237)}}.snow:nth-child(215){opacity:.9602;transform:translate(.2368vw,-10px) scale(.3274);animation:fall-215 11s -3s linear infinite}@keyframes fall-215{42.093%{transform:translate(4.1207vw,42.093vh) scale(.3274)}to{transform:translate(2.17875vw,99vh) scale(.3274)}}.snow:nth-child(216){opacity:.3366;transform:translate(57.8816vw,-10px) scale(.9736);animation:fall-216 21s -4s linear infinite}@keyframes fall-216{74.551%{transform:translate(59.6654vw,74.551vh) scale(.9736)}to{transform:translate(58.7735vw,99vh) scale(.9736)}}.snow:nth-child(217){opacity:.2388;transform:translate(2.2268vw,-10px) scale(.1063);animation:fall-217 25s -28s linear infinite}@keyframes fall-217{43.921%{transform:translate(9.5213vw,43.921vh) scale(.1063)}to{transform:translate(5.87405vw,99vh) scale(.1063)}}.snow:nth-child(218){opacity:1.142;transform:translate(84.7895vw,-10px) scale(.7741);animation:fall-218 14s -12s linear infinite}@keyframes fall-218{43.124%{transform:translate(94.661vw,43.124vh) scale(.7741)}to{transform:translate(89.72525vw,99vh) scale(.7741)}}.snow:nth-child(219){opacity:1.5238;transform:translate(66.9867vw,-10px) scale(.1103);animation:fall-219 29s -14s linear infinite}@keyframes fall-219{47.053%{transform:translate(59.9875vw,47.053vh) scale(.1103)}to{transform:translate(63.4871vw,99vh) scale(.1103)}}.snow:nth-child(220){opacity:1.966;transform:translate(25.0518vw,-10px) scale(.2426);animation:fall-220 18s -25s linear infinite}@keyframes fall-220{51.919%{transform:translate(33.2612vw,51.919vh) scale(.2426)}to{transform:translate(29.1565vw,99vh) scale(.2426)}}.snow:nth-child(221){opacity:1.2076;transform:translate(34.5861vw,-10px) scale(.2824);animation:fall-221 16s -22s linear infinite}@keyframes fall-221{75.601%{transform:translate(37.6695vw,75.601vh) scale(.2824)}to{transform:translate(36.1278vw,99vh) scale(.2824)}}.snow:nth-child(222){opacity:1.1838;transform:translate(87.0767vw,-10px) scale(.1423);animation:fall-222 14s -12s linear infinite}@keyframes fall-222{31.891%{transform:translate(93.7185vw,31.891vh) scale(.1423)}to{transform:translate(90.3976vw,99vh) scale(.1423)}}.snow:nth-child(223){opacity:.4218;transform:translate(7.5423vw,-10px) scale(.0916);animation:fall-223 10s -25s linear infinite}@keyframes fall-223{74.122%{transform:translate(6.1035vw,74.122vh) scale(.0916)}to{transform:translate(6.8229vw,99vh) scale(.0916)}}.snow:nth-child(224){opacity:1.9808;transform:translate(37.8739vw,-10px) scale(.6228);animation:fall-224 17s -16s linear infinite}@keyframes fall-224{63.107%{transform:translate(45.6053vw,63.107vh) scale(.6228)}to{transform:translate(41.7396vw,99vh) scale(.6228)}}.snow:nth-child(225){opacity:.8946;transform:translate(85.858vw,-10px) scale(.1);animation:fall-225 10s -11s linear infinite}@keyframes fall-225{71.041%{transform:translate(78.2193vw,71.041vh) scale(.1)}to{transform:translate(82.03865vw,99vh) scale(.1)}}.snow:nth-child(226){opacity:.7586;transform:translate(53.9797vw,-10px) scale(.5354);animation:fall-226 18s -5s linear infinite}@keyframes fall-226{32.058%{transform:translate(62.2923vw,32.058vh) scale(.5354)}to{transform:translate(58.136vw,99vh) scale(.5354)}}.snow:nth-child(227){opacity:.6376;transform:translate(87.2421vw,-10px) scale(.7422);animation:fall-227 28s -13s linear infinite}@keyframes fall-227{33.581%{transform:translate(86.4087vw,33.581vh) scale(.7422)}to{transform:translate(86.8254vw,99vh) scale(.7422)}}.snow:nth-child(228){opacity:1.3256;transform:translate(93.0166vw,-10px) scale(.2953);animation:fall-228 10s -13s linear infinite}@keyframes fall-228{54.848%{transform:translate(84.2031vw,54.848vh) scale(.2953)}to{transform:translate(88.60985vw,99vh) scale(.2953)}}.snow:nth-child(229){opacity:.0374;transform:translate(85.5322vw,-10px) scale(.9482);animation:fall-229 13s -14s linear infinite}@keyframes fall-229{40.768%{transform:translate(83.9092vw,40.768vh) scale(.9482)}to{transform:translate(84.7207vw,99vh) scale(.9482)}}.snow:nth-child(230){opacity:.4456;transform:translate(2.3653vw,-10px) scale(.4559);animation:fall-230 27s -20s linear infinite}@keyframes fall-230{78.186%{transform:translate(9.1946vw,78.186vh) scale(.4559)}to{transform:translate(5.77995vw,99vh) scale(.4559)}}.snow:nth-child(231){opacity:.4458;transform:translate(7.0532vw,-10px) scale(.7957);animation:fall-231 11s -29s linear infinite}@keyframes fall-231{40.434%{transform:translate(12.9062vw,40.434vh) scale(.7957)}to{transform:translate(9.9797vw,99vh) scale(.7957)}}.snow:nth-child(232){opacity:.5756;transform:translate(45.5589vw,-10px) scale(.843);animation:fall-232 15s -14s linear infinite}@keyframes fall-232{77.381%{transform:translate(48.1814vw,77.381vh) scale(.843)}to{transform:translate(46.87015vw,99vh) scale(.843)}}.snow:nth-child(233){opacity:.9512;transform:translate(7.0863vw,-10px) scale(.3191);animation:fall-233 28s -19s linear infinite}@keyframes fall-233{67.682%{transform:translate(2.6223vw,67.682vh) scale(.3191)}to{transform:translate(4.8543vw,99vh) scale(.3191)}}.snow:nth-child(234){opacity:.1446;transform:translate(41.0545vw,-10px) scale(.6653);animation:fall-234 14s -12s linear infinite}@keyframes fall-234{75.39%{transform:translate(38.4648vw,75.39vh) scale(.6653)}to{transform:translate(39.75965vw,99vh) scale(.6653)}}.snow:nth-child(235){opacity:.493;transform:translate(93.2853vw,-10px) scale(.7163);animation:fall-235 16s -13s linear infinite}@keyframes fall-235{77.945%{transform:translate(101.3116vw,77.945vh) scale(.7163)}to{transform:translate(97.29845vw,99vh) scale(.7163)}}.snow:nth-child(236){opacity:1.1558;transform:translate(88.413vw,-10px) scale(.1115);animation:fall-236 27s -27s linear infinite}@keyframes fall-236{37.246%{transform:translate(81.0825vw,37.246vh) scale(.1115)}to{transform:translate(84.74775vw,99vh) scale(.1115)}}.snow:nth-child(237){opacity:1.979;transform:translate(3.609vw,-10px) scale(.8941);animation:fall-237 18s -7s linear infinite}@keyframes fall-237{53.795%{transform:translate(5.2792vw,53.795vh) scale(.8941)}to{transform:translate(4.4441vw,99vh) scale(.8941)}}.snow:nth-child(238){opacity:.0456;transform:translate(32.8823vw,-10px) scale(.1653);animation:fall-238 24s -5s linear infinite}@keyframes fall-238{33.676%{transform:translate(36.7179vw,33.676vh) scale(.1653)}to{transform:translate(34.8001vw,99vh) scale(.1653)}}.snow:nth-child(239){opacity:1.5478;transform:translate(34.0167vw,-10px) scale(.3481);animation:fall-239 29s -15s linear infinite}@keyframes fall-239{43.445%{transform:translate(41.557vw,43.445vh) scale(.3481)}to{transform:translate(37.78685vw,99vh) scale(.3481)}}.snow:nth-child(240){opacity:1.3224;transform:translate(34.0582vw,-10px) scale(.0604);animation:fall-240 10s -24s linear infinite}@keyframes fall-240{63.974%{transform:translate(29.169vw,63.974vh) scale(.0604)}to{transform:translate(31.6136vw,99vh) scale(.0604)}}.snow:nth-child(241){opacity:1.3746;transform:translate(74.1828vw,-10px) scale(.5783);animation:fall-241 11s -21s linear infinite}@keyframes fall-241{44.069%{transform:translate(69.9591vw,44.069vh) scale(.5783)}to{transform:translate(72.07095vw,99vh) scale(.5783)}}.snow:nth-child(242){opacity:1.5878;transform:translate(76.5532vw,-10px) scale(.8728);animation:fall-242 15s -26s linear infinite}@keyframes fall-242{67.13%{transform:translate(67.7809vw,67.13vh) scale(.8728)}to{transform:translate(72.16705vw,99vh) scale(.8728)}}.snow:nth-child(243){opacity:1.333;transform:translate(33.8136vw,-10px) scale(.9591);animation:fall-243 18s -12s linear infinite}@keyframes fall-243{73.081%{transform:translate(28.3958vw,73.081vh) scale(.9591)}to{transform:translate(31.1047vw,99vh) scale(.9591)}}.snow:nth-child(244){opacity:1.7814;transform:translate(7.2015vw,-10px) scale(.3404);animation:fall-244 12s -21s linear infinite}@keyframes fall-244{78.187%{transform:translate(10.2289vw,78.187vh) scale(.3404)}to{transform:translate(8.7152vw,99vh) scale(.3404)}}.snow:nth-child(245){opacity:.323;transform:translate(1.8944vw,-10px) scale(.8567);animation:fall-245 28s -8s linear infinite}@keyframes fall-245{67.623%{transform:translate(.4304vw,67.623vh) scale(.8567)}to{transform:translate(1.1624vw,99vh) scale(.8567)}}.snow:nth-child(246){opacity:1.703;transform:translate(82.5164vw,-10px) scale(.17);animation:fall-246 27s -28s linear infinite}@keyframes fall-246{55.999%{transform:translate(75.7252vw,55.999vh) scale(.17)}to{transform:translate(79.1208vw,99vh) scale(.17)}}.snow:nth-child(247){opacity:1.6066;transform:translate(55.7617vw,-10px) scale(.7087);animation:fall-247 12s -13s linear infinite}@keyframes fall-247{55.834%{transform:translate(56.1461vw,55.834vh) scale(.7087)}to{transform:translate(55.9539vw,99vh) scale(.7087)}}.snow:nth-child(248){opacity:.8556;transform:translate(83.4779vw,-10px) scale(.2816);animation:fall-248 27s -13s linear infinite}@keyframes fall-248{64.998%{transform:translate(75.145vw,64.998vh) scale(.2816)}to{transform:translate(79.31145vw,99vh) scale(.2816)}}.snow:nth-child(249){opacity:1.4738;transform:translate(31.1961vw,-10px) scale(.9509);animation:fall-249 19s -9s linear infinite}@keyframes fall-249{64.548%{transform:translate(26.3103vw,64.548vh) scale(.9509)}to{transform:translate(28.7532vw,99vh) scale(.9509)}}.snow:nth-child(250){opacity:1.771;transform:translate(81.4445vw,-10px) scale(.4169);animation:fall-250 28s -20s linear infinite}@keyframes fall-250{39.381%{transform:translate(80.9402vw,39.381vh) scale(.4169)}to{transform:translate(81.19235vw,99vh) scale(.4169)}}.snow:nth-child(251){opacity:.4918;transform:translate(90.1788vw,-10px) scale(.7707);animation:fall-251 17s -10s linear infinite}@keyframes fall-251{62.208%{transform:translate(97.4481vw,62.208vh) scale(.7707)}to{transform:translate(93.81345vw,99vh) scale(.7707)}}.snow:nth-child(252){opacity:.5204;transform:translate(36.4704vw,-10px) scale(.1903);animation:fall-252 13s -28s linear infinite}@keyframes fall-252{63.219%{transform:translate(39.3523vw,63.219vh) scale(.1903)}to{transform:translate(37.91135vw,99vh) scale(.1903)}}.snow:nth-child(253){opacity:1.1204;transform:translate(34.9673vw,-10px) scale(.8391);animation:fall-253 16s -15s linear infinite}@keyframes fall-253{43.773%{transform:translate(38.1281vw,43.773vh) scale(.8391)}to{transform:translate(36.5477vw,99vh) scale(.8391)}}.snow:nth-child(254){opacity:1.6468;transform:translate(19.2951vw,-10px) scale(.4097);animation:fall-254 27s -7s linear infinite}@keyframes fall-254{68.355%{transform:translate(13.1053vw,68.355vh) scale(.4097)}to{transform:translate(16.2002vw,99vh) scale(.4097)}}.snow:nth-child(255){opacity:.8212;transform:translate(1.9279vw,-10px) scale(.4099);animation:fall-255 23s -22s linear infinite}@keyframes fall-255{77.359%{transform:translate(-1.6321vw,77.359vh) scale(.4099)}to{transform:translate(.1479vw,99vh) scale(.4099)}}.snow:nth-child(256){opacity:.9568;transform:translate(53.7747vw,-10px) scale(.3031);animation:fall-256 16s -18s linear infinite}@keyframes fall-256{38.514%{transform:translate(56.6201vw,38.514vh) scale(.3031)}to{transform:translate(55.1974vw,99vh) scale(.3031)}}.snow:nth-child(257){opacity:1.7658;transform:translate(74.1944vw,-10px) scale(.0214);animation:fall-257 30s -8s linear infinite}@keyframes fall-257{73.429%{transform:translate(67.6648vw,73.429vh) scale(.0214)}to{transform:translate(70.9296vw,99vh) scale(.0214)}}.snow:nth-child(258){opacity:1.9388;transform:translate(48.3975vw,-10px) scale(.3128);animation:fall-258 10s -23s linear infinite}@keyframes fall-258{59.994%{transform:translate(43.9049vw,59.994vh) scale(.3128)}to{transform:translate(46.1512vw,99vh) scale(.3128)}}.snow:nth-child(259){opacity:1.9322;transform:translate(22.1825vw,-10px) scale(.0686);animation:fall-259 13s -10s linear infinite}@keyframes fall-259{73.271%{transform:translate(31.8235vw,73.271vh) scale(.0686)}to{transform:translate(27.003vw,99vh) scale(.0686)}}.snow:nth-child(260){opacity:.515;transform:translate(53.2472vw,-10px) scale(.0484);animation:fall-260 12s -8s linear infinite}@keyframes fall-260{62.278%{transform:translate(49.2766vw,62.278vh) scale(.0484)}to{transform:translate(51.2619vw,99vh) scale(.0484)}}.snow:nth-child(261){opacity:1.1414;transform:translate(88.989vw,-10px) scale(.7658);animation:fall-261 23s -15s linear infinite}@keyframes fall-261{74.061%{transform:translate(92.8572vw,74.061vh) scale(.7658)}to{transform:translate(90.9231vw,99vh) scale(.7658)}}.snow:nth-child(262){opacity:1.9564;transform:translate(10.6497vw,-10px) scale(.0064);animation:fall-262 26s -5s linear infinite}@keyframes fall-262{69.694%{transform:translate(3.7848vw,69.694vh) scale(.0064)}to{transform:translate(7.21725vw,99vh) scale(.0064)}}.snow:nth-child(263){opacity:1.138;transform:translate(75.4664vw,-10px) scale(.3366);animation:fall-263 13s -30s linear infinite}@keyframes fall-263{69.946%{transform:translate(84.9942vw,69.946vh) scale(.3366)}to{transform:translate(80.2303vw,99vh) scale(.3366)}}.snow:nth-child(264){opacity:.9804;transform:translate(53.7989vw,-10px) scale(.7779);animation:fall-264 22s -6s linear infinite}@keyframes fall-264{33.717%{transform:translate(50.5582vw,33.717vh) scale(.7779)}to{transform:translate(52.17855vw,99vh) scale(.7779)}}.snow:nth-child(265){opacity:.0562;transform:translate(2.586vw,-10px) scale(.6886);animation:fall-265 16s -29s linear infinite}@keyframes fall-265{34.756%{transform:translate(12.15vw,34.756vh) scale(.6886)}to{transform:translate(7.368vw,99vh) scale(.6886)}}.snow:nth-child(266){opacity:1.7204;transform:translate(56.2466vw,-10px) scale(.7017);animation:fall-266 19s -5s linear infinite}@keyframes fall-266{75.511%{transform:translate(48.8963vw,75.511vh) scale(.7017)}to{transform:translate(52.57145vw,99vh) scale(.7017)}}.snow:nth-child(267){opacity:1.349;transform:translate(80.6316vw,-10px) scale(.4217);animation:fall-267 30s -21s linear infinite}@keyframes fall-267{74.723%{transform:translate(88.7577vw,74.723vh) scale(.4217)}to{transform:translate(84.69465vw,99vh) scale(.4217)}}.snow:nth-child(268){opacity:1.0798;transform:translate(64.6828vw,-10px) scale(.5927);animation:fall-268 23s -26s linear infinite}@keyframes fall-268{35.73%{transform:translate(68.425vw,35.73vh) scale(.5927)}to{transform:translate(66.5539vw,99vh) scale(.5927)}}.snow:nth-child(269){opacity:1.1764;transform:translate(25.8775vw,-10px) scale(.876);animation:fall-269 25s -9s linear infinite}@keyframes fall-269{71.964%{transform:translate(22.8315vw,71.964vh) scale(.876)}to{transform:translate(24.3545vw,99vh) scale(.876)}}.snow:nth-child(270){opacity:.6194;transform:translate(75.9834vw,-10px) scale(.5688);animation:fall-270 17s -22s linear infinite}@keyframes fall-270{77.59%{transform:translate(82.8845vw,77.59vh) scale(.5688)}to{transform:translate(79.43395vw,99vh) scale(.5688)}}.snow:nth-child(271){opacity:.9452;transform:translate(75.7608vw,-10px) scale(.8127);animation:fall-271 18s -27s linear infinite}@keyframes fall-271{51.006%{transform:translate(73.6454vw,51.006vh) scale(.8127)}to{transform:translate(74.7031vw,99vh) scale(.8127)}}.snow:nth-child(272){opacity:.7748;transform:translate(43.4005vw,-10px) scale(.6324);animation:fall-272 18s -27s linear infinite}@keyframes fall-272{69.136%{transform:translate(34.0716vw,69.136vh) scale(.6324)}to{transform:translate(38.73605vw,99vh) scale(.6324)}}.snow:nth-child(273){opacity:.773;transform:translate(59.9784vw,-10px) scale(.5737);animation:fall-273 11s -16s linear infinite}@keyframes fall-273{52.614%{transform:translate(67.6648vw,52.614vh) scale(.5737)}to{transform:translate(63.8216vw,99vh) scale(.5737)}}.snow:nth-child(274){opacity:1.9958;transform:translate(72.9427vw,-10px) scale(.4362);animation:fall-274 11s -18s linear infinite}@keyframes fall-274{56.061%{transform:translate(78.6566vw,56.061vh) scale(.4362)}to{transform:translate(75.79965vw,99vh) scale(.4362)}}.snow:nth-child(275){opacity:.4276;transform:translate(48.4821vw,-10px) scale(.8653);animation:fall-275 20s -6s linear infinite}@keyframes fall-275{62.168%{transform:translate(49.0906vw,62.168vh) scale(.8653)}to{transform:translate(48.78635vw,99vh) scale(.8653)}}.snow:nth-child(276){opacity:.5962;transform:translate(77.24vw,-10px) scale(.2173);animation:fall-276 22s -29s linear infinite}@keyframes fall-276{79.76%{transform:translate(82.0462vw,79.76vh) scale(.2173)}to{transform:translate(79.6431vw,99vh) scale(.2173)}}.snow:nth-child(277){opacity:1.8918;transform:translate(13.3892vw,-10px) scale(.106);animation:fall-277 28s -23s linear infinite}@keyframes fall-277{50.442%{transform:translate(20.0285vw,50.442vh) scale(.106)}to{transform:translate(16.70885vw,99vh) scale(.106)}}.snow:nth-child(278){opacity:1.534;transform:translate(72.9756vw,-10px) scale(.3294);animation:fall-278 26s -24s linear infinite}@keyframes fall-278{35.419%{transform:translate(79.7137vw,35.419vh) scale(.3294)}to{transform:translate(76.34465vw,99vh) scale(.3294)}}.snow:nth-child(279){opacity:.5582;transform:translate(81.9461vw,-10px) scale(.3496);animation:fall-279 13s -24s linear infinite}@keyframes fall-279{59.818%{transform:translate(90.8738vw,59.818vh) scale(.3496)}to{transform:translate(86.40995vw,99vh) scale(.3496)}}.snow:nth-child(280){opacity:.0748;transform:translate(15.0449vw,-10px) scale(.1342);animation:fall-280 18s -7s linear infinite}@keyframes fall-280{35.039%{transform:translate(17.0087vw,35.039vh) scale(.1342)}to{transform:translate(16.0268vw,99vh) scale(.1342)}}.snow:nth-child(281){opacity:1.4868;transform:translate(38.1489vw,-10px) scale(.4598);animation:fall-281 24s -10s linear infinite}@keyframes fall-281{34.977%{transform:translate(32.3699vw,34.977vh) scale(.4598)}to{transform:translate(35.2594vw,99vh) scale(.4598)}}.snow:nth-child(282){opacity:.189;transform:translate(98.2771vw,-10px) scale(.4766);animation:fall-282 29s -11s linear infinite}@keyframes fall-282{43.544%{transform:translate(95.0428vw,43.544vh) scale(.4766)}to{transform:translate(96.65995vw,99vh) scale(.4766)}}.snow:nth-child(283){opacity:1.1198;transform:translate(84.0084vw,-10px) scale(.1511);animation:fall-283 21s -28s linear infinite}@keyframes fall-283{34.868%{transform:translate(78.6733vw,34.868vh) scale(.1511)}to{transform:translate(81.34085vw,99vh) scale(.1511)}}.snow:nth-child(284){opacity:.7782;transform:translate(21.3542vw,-10px) scale(.7252);animation:fall-284 21s -30s linear infinite}@keyframes fall-284{59.126%{transform:translate(29.911vw,59.126vh) scale(.7252)}to{transform:translate(25.6326vw,99vh) scale(.7252)}}.snow:nth-child(285){opacity:1.2384;transform:translate(44.1907vw,-10px) scale(.5483);animation:fall-285 24s -30s linear infinite}@keyframes fall-285{36.98%{transform:translate(48.3179vw,36.98vh) scale(.5483)}to{transform:translate(46.2543vw,99vh) scale(.5483)}}.snow:nth-child(286){opacity:1.6226;transform:translate(86.2797vw,-10px) scale(.3278);animation:fall-286 13s -13s linear infinite}@keyframes fall-286{31.123%{transform:translate(79.8503vw,31.123vh) scale(.3278)}to{transform:translate(83.065vw,99vh) scale(.3278)}}.snow:nth-child(287){opacity:.3992;transform:translate(16.9386vw,-10px) scale(.1745);animation:fall-287 12s -17s linear infinite}@keyframes fall-287{37.46%{transform:translate(14.6713vw,37.46vh) scale(.1745)}to{transform:translate(15.80495vw,99vh) scale(.1745)}}.snow:nth-child(288){opacity:1.883;transform:translate(71.308vw,-10px) scale(.0839);animation:fall-288 30s -21s linear infinite}@keyframes fall-288{33.992%{transform:translate(77.89vw,33.992vh) scale(.0839)}to{transform:translate(74.599vw,99vh) scale(.0839)}}.snow:nth-child(289){opacity:.4798;transform:translate(43.8403vw,-10px) scale(.2715);animation:fall-289 25s -14s linear infinite}@keyframes fall-289{45.473%{transform:translate(51.5714vw,45.473vh) scale(.2715)}to{transform:translate(47.70585vw,99vh) scale(.2715)}}.snow:nth-child(290){opacity:1.2776;transform:translate(31.7287vw,-10px) scale(.6011);animation:fall-290 13s -21s linear infinite}@keyframes fall-290{39.254%{transform:translate(22.6359vw,39.254vh) scale(.6011)}to{transform:translate(27.1823vw,99vh) scale(.6011)}}.snow:nth-child(291){opacity:.6148;transform:translate(63.6759vw,-10px) scale(.735);animation:fall-291 27s -15s linear infinite}@keyframes fall-291{77.036%{transform:translate(60.6549vw,77.036vh) scale(.735)}to{transform:translate(62.1654vw,99vh) scale(.735)}}.snow:nth-child(292){opacity:.1188;transform:translate(30.3102vw,-10px) scale(.9641);animation:fall-292 28s -15s linear infinite}@keyframes fall-292{74.78%{transform:translate(21.7917vw,74.78vh) scale(.9641)}to{transform:translate(26.05095vw,99vh) scale(.9641)}}.snow:nth-child(293){opacity:1.8892;transform:translate(96.4242vw,-10px) scale(.5679);animation:fall-293 21s -3s linear infinite}@keyframes fall-293{40.899%{transform:translate(98.85vw,40.899vh) scale(.5679)}to{transform:translate(97.6371vw,99vh) scale(.5679)}}.snow:nth-child(294){opacity:.2536;transform:translate(76.0997vw,-10px) scale(.3867);animation:fall-294 29s -23s linear infinite}@keyframes fall-294{67.471%{transform:translate(77.2059vw,67.471vh) scale(.3867)}to{transform:translate(76.6528vw,99vh) scale(.3867)}}.snow:nth-child(295){opacity:.3308;transform:translate(.3871vw,-10px) scale(.3296);animation:fall-295 25s -4s linear infinite}@keyframes fall-295{37.994%{transform:translate(4.3384vw,37.994vh) scale(.3296)}to{transform:translate(2.36275vw,99vh) scale(.3296)}}.snow:nth-child(296){opacity:.908;transform:translate(71.9304vw,-10px) scale(.6659);animation:fall-296 19s -15s linear infinite}@keyframes fall-296{66.442%{transform:translate(73.8922vw,66.442vh) scale(.6659)}to{transform:translate(72.9113vw,99vh) scale(.6659)}}.snow:nth-child(297){opacity:.6546;transform:translate(89.7988vw,-10px) scale(.1725);animation:fall-297 29s -1s linear infinite}@keyframes fall-297{32.959%{transform:translate(92.8057vw,32.959vh) scale(.1725)}to{transform:translate(91.30225vw,99vh) scale(.1725)}}.snow:nth-child(298){opacity:.2978;transform:translate(74.4711vw,-10px) scale(.4717);animation:fall-298 30s -17s linear infinite}@keyframes fall-298{44.268%{transform:translate(82.0535vw,44.268vh) scale(.4717)}to{transform:translate(78.2623vw,99vh) scale(.4717)}}.snow:nth-child(299){opacity:1.899;transform:translate(25.2157vw,-10px) scale(.5304);animation:fall-299 13s -9s linear infinite}@keyframes fall-299{53.911%{transform:translate(21.7957vw,53.911vh) scale(.5304)}to{transform:translate(23.5057vw,99vh) scale(.5304)}}.snow:nth-child(300){opacity:1.542;transform:translate(76.3418vw,-10px) scale(.7052);animation:fall-300 12s -24s linear infinite}@keyframes fall-300{56.216%{transform:translate(75.4187vw,56.216vh) scale(.7052)}to{transform:translate(75.88025vw,99vh) scale(.7052)}}.snow:nth-child(301){opacity:.6044;transform:translate(83.2031vw,-10px) scale(.2191);animation:fall-301 20s -2s linear infinite}@keyframes fall-301{48.28%{transform:translate(87.9953vw,48.28vh) scale(.2191)}to{transform:translate(85.5992vw,99vh) scale(.2191)}}.snow:nth-child(302){opacity:1.9766;transform:translate(60.1965vw,-10px) scale(.2638);animation:fall-302 27s -1s linear infinite}@keyframes fall-302{67.004%{transform:translate(62.3552vw,67.004vh) scale(.2638)}to{transform:translate(61.27585vw,99vh) scale(.2638)}}.snow:nth-child(303){opacity:1.5524;transform:translate(54.7335vw,-10px) scale(.5761);animation:fall-303 17s -7s linear infinite}@keyframes fall-303{69.084%{transform:translate(60.7441vw,69.084vh) scale(.5761)}to{transform:translate(57.7388vw,99vh) scale(.5761)}}.snow:nth-child(304){opacity:.0212;transform:translate(12.2455vw,-10px) scale(.2365);animation:fall-304 26s -23s linear infinite}@keyframes fall-304{71.697%{transform:translate(13.7558vw,71.697vh) scale(.2365)}to{transform:translate(13.00065vw,99vh) scale(.2365)}}.snow:nth-child(305){opacity:1.4598;transform:translate(34.6249vw,-10px) scale(.94);animation:fall-305 27s -5s linear infinite}@keyframes fall-305{52.967%{transform:translate(43.2567vw,52.967vh) scale(.94)}to{transform:translate(38.9408vw,99vh) scale(.94)}}.snow:nth-child(306){opacity:1.1872;transform:translate(40.6696vw,-10px) scale(.1418);animation:fall-306 20s -15s linear infinite}@keyframes fall-306{49.328%{transform:translate(47.9421vw,49.328vh) scale(.1418)}to{transform:translate(44.30585vw,99vh) scale(.1418)}}.snow:nth-child(307){opacity:1.5768;transform:translate(24.7624vw,-10px) scale(.4966);animation:fall-307 14s -4s linear infinite}@keyframes fall-307{78.912%{transform:translate(27.7233vw,78.912vh) scale(.4966)}to{transform:translate(26.24285vw,99vh) scale(.4966)}}.snow:nth-child(308){opacity:1.3302;transform:translate(13.7252vw,-10px) scale(.1155);animation:fall-308 14s -12s linear infinite}@keyframes fall-308{65.617%{transform:translate(20.1084vw,65.617vh) scale(.1155)}to{transform:translate(16.9168vw,99vh) scale(.1155)}}.snow:nth-child(309){opacity:1.5722;transform:translate(33.9174vw,-10px) scale(.4594);animation:fall-309 23s -27s linear infinite}@keyframes fall-309{42.034%{transform:translate(36.9533vw,42.034vh) scale(.4594)}to{transform:translate(35.43535vw,99vh) scale(.4594)}}.snow:nth-child(310){opacity:.536;transform:translate(55.0283vw,-10px) scale(.9938);animation:fall-310 15s -15s linear infinite}@keyframes fall-310{38.005%{transform:translate(54.9435vw,38.005vh) scale(.9938)}to{transform:translate(54.9859vw,99vh) scale(.9938)}}.snow:nth-child(311){opacity:.6614;transform:translate(66.3872vw,-10px) scale(.4983);animation:fall-311 14s -29s linear infinite}@keyframes fall-311{39.54%{transform:translate(71.7499vw,39.54vh) scale(.4983)}to{transform:translate(69.06855vw,99vh) scale(.4983)}}.snow:nth-child(312){opacity:1.2558;transform:translate(16.2751vw,-10px) scale(.8087);animation:fall-312 25s -20s linear infinite}@keyframes fall-312{51.09%{transform:translate(14.2778vw,51.09vh) scale(.8087)}to{transform:translate(15.27645vw,99vh) scale(.8087)}}.snow:nth-child(313){opacity:.564;transform:translate(34.7513vw,-10px) scale(.8393);animation:fall-313 15s -18s linear infinite}@keyframes fall-313{70.096%{transform:translate(38.8994vw,70.096vh) scale(.8393)}to{transform:translate(36.82535vw,99vh) scale(.8393)}}.snow:nth-child(314){opacity:.8222;transform:translate(50.9265vw,-10px) scale(.7523);animation:fall-314 22s -30s linear infinite}@keyframes fall-314{48.697%{transform:translate(49.0609vw,48.697vh) scale(.7523)}to{transform:translate(49.9937vw,99vh) scale(.7523)}}.snow:nth-child(315){opacity:1.5668;transform:translate(52.3757vw,-10px) scale(.2472);animation:fall-315 29s -3s linear infinite}@keyframes fall-315{42.877%{transform:translate(45.3303vw,42.877vh) scale(.2472)}to{transform:translate(48.853vw,99vh) scale(.2472)}}.snow:nth-child(316){opacity:1.0924;transform:translate(66.3472vw,-10px) scale(.4796);animation:fall-316 10s -12s linear infinite}@keyframes fall-316{62.805%{transform:translate(57.8518vw,62.805vh) scale(.4796)}to{transform:translate(62.0995vw,99vh) scale(.4796)}}.snow:nth-child(317){opacity:1.9252;transform:translate(78.7043vw,-10px) scale(.3499);animation:fall-317 16s -27s linear infinite}@keyframes fall-317{46.307%{transform:translate(78.3447vw,46.307vh) scale(.3499)}to{transform:translate(78.5245vw,99vh) scale(.3499)}}.snow:nth-child(318){opacity:1.7134;transform:translate(64.6441vw,-10px) scale(.0721);animation:fall-318 10s -9s linear infinite}@keyframes fall-318{78.516%{transform:translate(58.7912vw,78.516vh) scale(.0721)}to{transform:translate(61.71765vw,99vh) scale(.0721)}}.snow:nth-child(319){opacity:1.6684;transform:translate(75.2217vw,-10px) scale(.3056);animation:fall-319 16s -6s linear infinite}@keyframes fall-319{48.71%{transform:translate(74.202vw,48.71vh) scale(.3056)}to{transform:translate(74.71185vw,99vh) scale(.3056)}}.snow:nth-child(320){opacity:.443;transform:translate(19.9296vw,-10px) scale(.8999);animation:fall-320 28s -28s linear infinite}@keyframes fall-320{42.153%{transform:translate(11.2464vw,42.153vh) scale(.8999)}to{transform:translate(15.588vw,99vh) scale(.8999)}}.snow:nth-child(321){opacity:.1622;transform:translate(27.8397vw,-10px) scale(.397);animation:fall-321 14s -9s linear infinite}@keyframes fall-321{68.337%{transform:translate(27.0088vw,68.337vh) scale(.397)}to{transform:translate(27.42425vw,99vh) scale(.397)}}.snow:nth-child(322){opacity:.6362;transform:translate(12.1386vw,-10px) scale(.0424);animation:fall-322 24s -22s linear infinite}@keyframes fall-322{32.617%{transform:translate(18.4893vw,32.617vh) scale(.0424)}to{transform:translate(15.31395vw,99vh) scale(.0424)}}.snow:nth-child(323){opacity:.615;transform:translate(28.9098vw,-10px) scale(.7791);animation:fall-323 14s -14s linear infinite}@keyframes fall-323{60.709%{transform:translate(29.2474vw,60.709vh) scale(.7791)}to{transform:translate(29.0786vw,99vh) scale(.7791)}}.snow:nth-child(324){opacity:1.7938;transform:translate(48.6937vw,-10px) scale(.4976);animation:fall-324 17s -29s linear infinite}@keyframes fall-324{46.255%{transform:translate(52.249vw,46.255vh) scale(.4976)}to{transform:translate(50.47135vw,99vh) scale(.4976)}}.snow:nth-child(325){opacity:1.5604;transform:translate(25.746vw,-10px) scale(.1425);animation:fall-325 26s -16s linear infinite}@keyframes fall-325{50.657%{transform:translate(20.6373vw,50.657vh) scale(.1425)}to{transform:translate(23.19165vw,99vh) scale(.1425)}}.snow:nth-child(326){opacity:.6116;transform:translate(5.8661vw,-10px) scale(.9787);animation:fall-326 24s -22s linear infinite}@keyframes fall-326{43.717%{transform:translate(3.6703vw,43.717vh) scale(.9787)}to{transform:translate(4.7682vw,99vh) scale(.9787)}}.snow:nth-child(327){opacity:.5882;transform:translate(6.9427vw,-10px) scale(.4475);animation:fall-327 24s -23s linear infinite}@keyframes fall-327{34.317%{transform:translate(4.7316vw,34.317vh) scale(.4475)}to{transform:translate(5.83715vw,99vh) scale(.4475)}}.snow:nth-child(328){opacity:.0822;transform:translate(88.5967vw,-10px) scale(.6799);animation:fall-328 17s -19s linear infinite}@keyframes fall-328{37.483%{transform:translate(87.7469vw,37.483vh) scale(.6799)}to{transform:translate(88.1718vw,99vh) scale(.6799)}}.snow:nth-child(329){opacity:1.689;transform:translate(55.0885vw,-10px) scale(.6027);animation:fall-329 18s -25s linear infinite}@keyframes fall-329{67.789%{transform:translate(45.6857vw,67.789vh) scale(.6027)}to{transform:translate(50.3871vw,99vh) scale(.6027)}}.snow:nth-child(330){opacity:.5518;transform:translate(.4177vw,-10px) scale(.9172);animation:fall-330 21s -27s linear infinite}@keyframes fall-330{33.909%{transform:translate(7.0513vw,33.909vh) scale(.9172)}to{transform:translate(3.7345vw,99vh) scale(.9172)}}.snow:nth-child(331){opacity:.0974;transform:translate(15.614vw,-10px) scale(.7766);animation:fall-331 28s -29s linear infinite}@keyframes fall-331{58.173%{transform:translate(23.7267vw,58.173vh) scale(.7766)}to{transform:translate(19.67035vw,99vh) scale(.7766)}}.snow:nth-child(332){opacity:.7508;transform:translate(13.2826vw,-10px) scale(.1095);animation:fall-332 10s -5s linear infinite}@keyframes fall-332{76.759%{transform:translate(13.259vw,76.759vh) scale(.1095)}to{transform:translate(13.2708vw,99vh) scale(.1095)}}.snow:nth-child(333){opacity:1.097;transform:translate(64.6065vw,-10px) scale(.3916);animation:fall-333 10s -16s linear infinite}@keyframes fall-333{44.028%{transform:translate(59.723vw,44.028vh) scale(.3916)}to{transform:translate(62.16475vw,99vh) scale(.3916)}}.snow:nth-child(334){opacity:1.6548;transform:translate(71.4915vw,-10px) scale(.386);animation:fall-334 18s -1s linear infinite}@keyframes fall-334{57.807%{transform:translate(77.818vw,57.807vh) scale(.386)}to{transform:translate(74.65475vw,99vh) scale(.386)}}.snow:nth-child(335){opacity:.053;transform:translate(84.6098vw,-10px) scale(.7699);animation:fall-335 16s -16s linear infinite}@keyframes fall-335{49.706%{transform:translate(79.7324vw,49.706vh) scale(.7699)}to{transform:translate(82.1711vw,99vh) scale(.7699)}}.snow:nth-child(336){opacity:1.091;transform:translate(39.2798vw,-10px) scale(.2147);animation:fall-336 21s -10s linear infinite}@keyframes fall-336{76.101%{transform:translate(39.9991vw,76.101vh) scale(.2147)}to{transform:translate(39.63945vw,99vh) scale(.2147)}}.snow:nth-child(337){opacity:1.01;transform:translate(69.9445vw,-10px) scale(.4084);animation:fall-337 17s -20s linear infinite}@keyframes fall-337{59.108%{transform:translate(64.0995vw,59.108vh) scale(.4084)}to{transform:translate(67.022vw,99vh) scale(.4084)}}.snow:nth-child(338){opacity:1.6204;transform:translate(32.4191vw,-10px) scale(.1566);animation:fall-338 22s -2s linear infinite}@keyframes fall-338{62.264%{transform:translate(22.9488vw,62.264vh) scale(.1566)}to{transform:translate(27.68395vw,99vh) scale(.1566)}}.snow:nth-child(339){opacity:.6976;transform:translate(38.7919vw,-10px) scale(.9522);animation:fall-339 14s -18s linear infinite}@keyframes fall-339{52.222%{transform:translate(29.1629vw,52.222vh) scale(.9522)}to{transform:translate(33.9774vw,99vh) scale(.9522)}}.snow:nth-child(340){opacity:.083;transform:translate(52.4341vw,-10px) scale(.7994);animation:fall-340 11s -15s linear infinite}@keyframes fall-340{61.259%{transform:translate(62.4139vw,61.259vh) scale(.7994)}to{transform:translate(57.424vw,99vh) scale(.7994)}}.snow:nth-child(341){opacity:1.1634;transform:translate(89.4589vw,-10px) scale(.0509);animation:fall-341 17s -14s linear infinite}@keyframes fall-341{57.836%{transform:translate(90.2713vw,57.836vh) scale(.0509)}to{transform:translate(89.8651vw,99vh) scale(.0509)}}.snow:nth-child(342){opacity:.7386;transform:translate(2.2671vw,-10px) scale(.3175);animation:fall-342 27s -5s linear infinite}@keyframes fall-342{47.606%{transform:translate(9.2444vw,47.606vh) scale(.3175)}to{transform:translate(5.75575vw,99vh) scale(.3175)}}.snow:nth-child(343){opacity:1.8834;transform:translate(87.8983vw,-10px) scale(.7501);animation:fall-343 12s -21s linear infinite}@keyframes fall-343{36.876%{transform:translate(93.0923vw,36.876vh) scale(.7501)}to{transform:translate(90.4953vw,99vh) scale(.7501)}}.snow:nth-child(344){opacity:1.9426;transform:translate(90.2741vw,-10px) scale(.0244);animation:fall-344 17s -20s linear infinite}@keyframes fall-344{51.941%{transform:translate(83.3628vw,51.941vh) scale(.0244)}to{transform:translate(86.81845vw,99vh) scale(.0244)}}.snow:nth-child(345){opacity:.4322;transform:translate(20.8679vw,-10px) scale(.9207);animation:fall-345 23s -20s linear infinite}@keyframes fall-345{60.569%{transform:translate(30.4568vw,60.569vh) scale(.9207)}to{transform:translate(25.66235vw,99vh) scale(.9207)}}.snow:nth-child(346){opacity:.3636;transform:translate(10.3532vw,-10px) scale(.1618);animation:fall-346 26s -1s linear infinite}@keyframes fall-346{71.917%{transform:translate(6.6256vw,71.917vh) scale(.1618)}to{transform:translate(8.4894vw,99vh) scale(.1618)}}.snow:nth-child(347){opacity:1.3988;transform:translate(66.9533vw,-10px) scale(.7527);animation:fall-347 26s -16s linear infinite}@keyframes fall-347{35.039%{transform:translate(66.8364vw,35.039vh) scale(.7527)}to{transform:translate(66.89485vw,99vh) scale(.7527)}}.snow:nth-child(348){opacity:.8682;transform:translate(93.5864vw,-10px) scale(.7998);animation:fall-348 25s -12s linear infinite}@keyframes fall-348{38.997%{transform:translate(93.0285vw,38.997vh) scale(.7998)}to{transform:translate(93.30745vw,99vh) scale(.7998)}}.snow:nth-child(349){opacity:1.235;transform:translate(51.7094vw,-10px) scale(.2472);animation:fall-349 19s -26s linear infinite}@keyframes fall-349{53.603%{transform:translate(53.701vw,53.603vh) scale(.2472)}to{transform:translate(52.7052vw,99vh) scale(.2472)}}.snow:nth-child(350){opacity:1.9976;transform:translate(54.9922vw,-10px) scale(.3814);animation:fall-350 24s -18s linear infinite}@keyframes fall-350{53.384%{transform:translate(48.8615vw,53.384vh) scale(.3814)}to{transform:translate(51.92685vw,99vh) scale(.3814)}}.snow:nth-child(351){opacity:.437;transform:translate(28.5165vw,-10px) scale(.1433);animation:fall-351 26s -19s linear infinite}@keyframes fall-351{52.398%{transform:translate(35.2669vw,52.398vh) scale(.1433)}to{transform:translate(31.8917vw,99vh) scale(.1433)}}.snow:nth-child(352){opacity:1.4022;transform:translate(88.1677vw,-10px) scale(.4546);animation:fall-352 17s -19s linear infinite}@keyframes fall-352{36.732%{transform:translate(93.5772vw,36.732vh) scale(.4546)}to{transform:translate(90.87245vw,99vh) scale(.4546)}}.snow:nth-child(353){opacity:1.8684;transform:translate(65.6981vw,-10px) scale(.7339);animation:fall-353 14s -15s linear infinite}@keyframes fall-353{60.458%{transform:translate(70.4187vw,60.458vh) scale(.7339)}to{transform:translate(68.0584vw,99vh) scale(.7339)}}.snow:nth-child(354){opacity:.7862;transform:translate(39.0829vw,-10px) scale(.9044);animation:fall-354 13s -16s linear infinite}@keyframes fall-354{56.226%{transform:translate(43.337vw,56.226vh) scale(.9044)}to{transform:translate(41.20995vw,99vh) scale(.9044)}}.snow:nth-child(355){opacity:1.4774;transform:translate(82.3511vw,-10px) scale(.2653);animation:fall-355 15s -13s linear infinite}@keyframes fall-355{52.223%{transform:translate(79.8802vw,52.223vh) scale(.2653)}to{transform:translate(81.11565vw,99vh) scale(.2653)}}.snow:nth-child(356){opacity:.9686;transform:translate(93.5967vw,-10px) scale(.2375);animation:fall-356 26s -17s linear infinite}@keyframes fall-356{54.855%{transform:translate(94.7583vw,54.855vh) scale(.2375)}to{transform:translate(94.1775vw,99vh) scale(.2375)}}.snow:nth-child(357){opacity:1.1642;transform:translate(52.0457vw,-10px) scale(.6613);animation:fall-357 13s -3s linear infinite}@keyframes fall-357{38.403%{transform:translate(61.1497vw,38.403vh) scale(.6613)}to{transform:translate(56.5977vw,99vh) scale(.6613)}}.snow:nth-child(358){opacity:1.9466;transform:translate(52.6956vw,-10px) scale(.9488);animation:fall-358 24s -11s linear infinite}@keyframes fall-358{79.437%{transform:translate(53.8505vw,79.437vh) scale(.9488)}to{transform:translate(53.27305vw,99vh) scale(.9488)}}.snow:nth-child(359){opacity:.0472;transform:translate(75.953vw,-10px) scale(.3053);animation:fall-359 10s -21s linear infinite}@keyframes fall-359{73.251%{transform:translate(83.0121vw,73.251vh) scale(.3053)}to{transform:translate(79.48255vw,99vh) scale(.3053)}}.snow:nth-child(360){opacity:.5988;transform:translate(19.7925vw,-10px) scale(.6808);animation:fall-360 27s -2s linear infinite}@keyframes fall-360{55.769%{transform:translate(28.7833vw,55.769vh) scale(.6808)}to{transform:translate(24.2879vw,99vh) scale(.6808)}}.snow:nth-child(361){opacity:1.8036;transform:translate(97.9712vw,-10px) scale(.7537);animation:fall-361 14s -6s linear infinite}@keyframes fall-361{67.052%{transform:translate(101.3807vw,67.052vh) scale(.7537)}to{transform:translate(99.67595vw,99vh) scale(.7537)}}.snow:nth-child(362){opacity:.4378;transform:translate(14.7923vw,-10px) scale(.8514);animation:fall-362 19s -22s linear infinite}@keyframes fall-362{75.12%{transform:translate(20.1639vw,75.12vh) scale(.8514)}to{transform:translate(17.4781vw,99vh) scale(.8514)}}.snow:nth-child(363){opacity:.8036;transform:translate(8.6051vw,-10px) scale(.1386);animation:fall-363 22s -25s linear infinite}@keyframes fall-363{75.311%{transform:translate(11.8712vw,75.311vh) scale(.1386)}to{transform:translate(10.23815vw,99vh) scale(.1386)}}.snow:nth-child(364){opacity:.567;transform:translate(60.5321vw,-10px) scale(.044);animation:fall-364 25s -13s linear infinite}@keyframes fall-364{44.511%{transform:translate(66.1388vw,44.511vh) scale(.044)}to{transform:translate(63.33545vw,99vh) scale(.044)}}.snow:nth-child(365){opacity:1.581;transform:translate(9.5125vw,-10px) scale(.0223);animation:fall-365 16s -30s linear infinite}@keyframes fall-365{65.74%{transform:translate(.8928vw,65.74vh) scale(.0223)}to{transform:translate(5.20265vw,99vh) scale(.0223)}}.snow:nth-child(366){opacity:.1622;transform:translate(76.3269vw,-10px) scale(.9902);animation:fall-366 10s -5s linear infinite}@keyframes fall-366{61.5%{transform:translate(75.0221vw,61.5vh) scale(.9902)}to{transform:translate(75.6745vw,99vh) scale(.9902)}}.snow:nth-child(367){opacity:.8448;transform:translate(86.4845vw,-10px) scale(.8393);animation:fall-367 10s -7s linear infinite}@keyframes fall-367{32.363%{transform:translate(77.5883vw,32.363vh) scale(.8393)}to{transform:translate(82.0364vw,99vh) scale(.8393)}}.snow:nth-child(368){opacity:1.7304;transform:translate(52.7137vw,-10px) scale(.9591);animation:fall-368 25s -9s linear infinite}@keyframes fall-368{74.069%{transform:translate(45.4286vw,74.069vh) scale(.9591)}to{transform:translate(49.07115vw,99vh) scale(.9591)}}.snow:nth-child(369){opacity:.458;transform:translate(59.306vw,-10px) scale(.2776);animation:fall-369 16s -29s linear infinite}@keyframes fall-369{45.016%{transform:translate(60.3986vw,45.016vh) scale(.2776)}to{transform:translate(59.8523vw,99vh) scale(.2776)}}.snow:nth-child(370){opacity:.2738;transform:translate(13.7029vw,-10px) scale(.8272);animation:fall-370 14s -1s linear infinite}@keyframes fall-370{44.542%{transform:translate(6.4392vw,44.542vh) scale(.8272)}to{transform:translate(10.07105vw,99vh) scale(.8272)}}.snow:nth-child(371){opacity:1.4096;transform:translate(67.8005vw,-10px) scale(.6597);animation:fall-371 30s -28s linear infinite}@keyframes fall-371{75.494%{transform:translate(58.7466vw,75.494vh) scale(.6597)}to{transform:translate(63.27355vw,99vh) scale(.6597)}}.snow:nth-child(372){opacity:1.374;transform:translate(30.1521vw,-10px) scale(.3387);animation:fall-372 26s -6s linear infinite}@keyframes fall-372{48.455%{transform:translate(32.3787vw,48.455vh) scale(.3387)}to{transform:translate(31.2654vw,99vh) scale(.3387)}}.snow:nth-child(373){opacity:1.1218;transform:translate(98.401vw,-10px) scale(.8359);animation:fall-373 15s -23s linear infinite}@keyframes fall-373{74.478%{transform:translate(102.3652vw,74.478vh) scale(.8359)}to{transform:translate(100.3831vw,99vh) scale(.8359)}}.snow:nth-child(374){opacity:.697;transform:translate(87.9592vw,-10px) scale(.5573);animation:fall-374 22s -8s linear infinite}@keyframes fall-374{67.82%{transform:translate(78.7848vw,67.82vh) scale(.5573)}to{transform:translate(83.372vw,99vh) scale(.5573)}}.snow:nth-child(375){opacity:1.5164;transform:translate(91.4853vw,-10px) scale(.3874);animation:fall-375 29s -21s linear infinite}@keyframes fall-375{61.331%{transform:translate(98.0004vw,61.331vh) scale(.3874)}to{transform:translate(94.74285vw,99vh) scale(.3874)}}.snow:nth-child(376){opacity:.255;transform:translate(41.7253vw,-10px) scale(.3814);animation:fall-376 22s -27s linear infinite}@keyframes fall-376{46.147%{transform:translate(42.3455vw,46.147vh) scale(.3814)}to{transform:translate(42.0354vw,99vh) scale(.3814)}}.snow:nth-child(377){opacity:.1392;transform:translate(77.3284vw,-10px) scale(.822);animation:fall-377 24s -4s linear infinite}@keyframes fall-377{48.814%{transform:translate(84.6671vw,48.814vh) scale(.822)}to{transform:translate(80.99775vw,99vh) scale(.822)}}.snow:nth-child(378){opacity:1.493;transform:translate(90.8215vw,-10px) scale(.498);animation:fall-378 21s -12s linear infinite}@keyframes fall-378{73.111%{transform:translate(87.9504vw,73.111vh) scale(.498)}to{transform:translate(89.38595vw,99vh) scale(.498)}}.snow:nth-child(379){opacity:1.7282;transform:translate(9.9539vw,-10px) scale(.2369);animation:fall-379 21s -15s linear infinite}@keyframes fall-379{55.138%{transform:translate(11.8188vw,55.138vh) scale(.2369)}to{transform:translate(10.88635vw,99vh) scale(.2369)}}.snow:nth-child(380){opacity:.4988;transform:translate(91.4765vw,-10px) scale(.8422);animation:fall-380 21s -15s linear infinite}@keyframes fall-380{53.794%{transform:translate(95.5393vw,53.794vh) scale(.8422)}to{transform:translate(93.5079vw,99vh) scale(.8422)}}.snow:nth-child(381){opacity:.8322;transform:translate(96.5033vw,-10px) scale(.1486);animation:fall-381 27s -30s linear infinite}@keyframes fall-381{61.211%{transform:translate(87.3507vw,61.211vh) scale(.1486)}to{transform:translate(91.927vw,99vh) scale(.1486)}}.snow:nth-child(382){opacity:.1694;transform:translate(77.3158vw,-10px) scale(.4538);animation:fall-382 28s -28s linear infinite}@keyframes fall-382{47.89%{transform:translate(69.2272vw,47.89vh) scale(.4538)}to{transform:translate(73.2715vw,99vh) scale(.4538)}}.snow:nth-child(383){opacity:.4388;transform:translate(91.3871vw,-10px) scale(.2394);animation:fall-383 19s -29s linear infinite}@keyframes fall-383{35.197%{transform:translate(86.4108vw,35.197vh) scale(.2394)}to{transform:translate(88.89895vw,99vh) scale(.2394)}}.snow:nth-child(384){opacity:.722;transform:translate(76.0902vw,-10px) scale(.179);animation:fall-384 26s -18s linear infinite}@keyframes fall-384{56.166%{transform:translate(67.5968vw,56.166vh) scale(.179)}to{transform:translate(71.8435vw,99vh) scale(.179)}}.snow:nth-child(385){opacity:1.3088;transform:translate(23.096vw,-10px) scale(.6725);animation:fall-385 28s -11s linear infinite}@keyframes fall-385{76.87%{transform:translate(31.7008vw,76.87vh) scale(.6725)}to{transform:translate(27.3984vw,99vh) scale(.6725)}}.snow:nth-child(386){opacity:1.9428;transform:translate(67.499vw,-10px) scale(.2289);animation:fall-386 17s -28s linear infinite}@keyframes fall-386{72.269%{transform:translate(74.118vw,72.269vh) scale(.2289)}to{transform:translate(70.8085vw,99vh) scale(.2289)}}.snow:nth-child(387){opacity:.642;transform:translate(9.5409vw,-10px) scale(.9412);animation:fall-387 15s -18s linear infinite}@keyframes fall-387{67.636%{transform:translate(17.8246vw,67.636vh) scale(.9412)}to{transform:translate(13.68275vw,99vh) scale(.9412)}}.snow:nth-child(388){opacity:.0432;transform:translate(29.8152vw,-10px) scale(.1732);animation:fall-388 24s -13s linear infinite}@keyframes fall-388{40.944%{transform:translate(22.3155vw,40.944vh) scale(.1732)}to{transform:translate(26.06535vw,99vh) scale(.1732)}}.snow:nth-child(389){opacity:1.889;transform:translate(60.5104vw,-10px) scale(.0205);animation:fall-389 12s -24s linear infinite}@keyframes fall-389{47.459%{transform:translate(55.9874vw,47.459vh) scale(.0205)}to{transform:translate(58.2489vw,99vh) scale(.0205)}}.snow:nth-child(390){opacity:1.2998;transform:translate(37.3258vw,-10px) scale(.01);animation:fall-390 19s -7s linear infinite}@keyframes fall-390{65.935%{transform:translate(40.0974vw,65.935vh) scale(.01)}to{transform:translate(38.7116vw,99vh) scale(.01)}}.snow:nth-child(391){opacity:.4558;transform:translate(78.6378vw,-10px) scale(.2166);animation:fall-391 10s -1s linear infinite}@keyframes fall-391{34.508%{transform:translate(82.9623vw,34.508vh) scale(.2166)}to{transform:translate(80.80005vw,99vh) scale(.2166)}}.snow:nth-child(392){opacity:.4204;transform:translate(68.7806vw,-10px) scale(.2429);animation:fall-392 14s -25s linear infinite}@keyframes fall-392{45.388%{transform:translate(60.1017vw,45.388vh) scale(.2429)}to{transform:translate(64.44115vw,99vh) scale(.2429)}}.snow:nth-child(393){opacity:1.4338;transform:translate(30.2899vw,-10px) scale(.3099);animation:fall-393 28s -2s linear infinite}@keyframes fall-393{46.598%{transform:translate(21.4977vw,46.598vh) scale(.3099)}to{transform:translate(25.8938vw,99vh) scale(.3099)}}.snow:nth-child(394){opacity:1.1034;transform:translate(29.7202vw,-10px) scale(.2706);animation:fall-394 29s -7s linear infinite}@keyframes fall-394{55.584%{transform:translate(31.7207vw,55.584vh) scale(.2706)}to{transform:translate(30.72045vw,99vh) scale(.2706)}}.snow:nth-child(395){opacity:1.3318;transform:translate(69.5807vw,-10px) scale(.9069);animation:fall-395 17s -27s linear infinite}@keyframes fall-395{41.547%{transform:translate(64.4287vw,41.547vh) scale(.9069)}to{transform:translate(67.0047vw,99vh) scale(.9069)}}.snow:nth-child(396){opacity:.9354;transform:translate(30.1106vw,-10px) scale(.7684);animation:fall-396 22s -20s linear infinite}@keyframes fall-396{53.091%{transform:translate(38.8459vw,53.091vh) scale(.7684)}to{transform:translate(34.47825vw,99vh) scale(.7684)}}.snow:nth-child(397){opacity:1.0058;transform:translate(65.2209vw,-10px) scale(.1485);animation:fall-397 29s -26s linear infinite}@keyframes fall-397{66.427%{transform:translate(63.0889vw,66.427vh) scale(.1485)}to{transform:translate(64.1549vw,99vh) scale(.1485)}}.snow:nth-child(398){opacity:1.4806;transform:translate(71.2764vw,-10px) scale(.4214);animation:fall-398 20s -11s linear infinite}@keyframes fall-398{47.494%{transform:translate(64.1331vw,47.494vh) scale(.4214)}to{transform:translate(67.70475vw,99vh) scale(.4214)}}.snow:nth-child(399){opacity:1.0856;transform:translate(14.427vw,-10px) scale(.3627);animation:fall-399 18s -21s linear infinite}@keyframes fall-399{33.023%{transform:translate(16.0199vw,33.023vh) scale(.3627)}to{transform:translate(15.22345vw,99vh) scale(.3627)}}.snow:nth-child(400){opacity:1.4226;transform:translate(14.7426vw,-10px) scale(.0907);animation:fall-400 10s -1s linear infinite}@keyframes fall-400{42.674%{transform:translate(24.0418vw,42.674vh) scale(.0907)}to{transform:translate(19.3922vw,99vh) scale(.0907)}}\n"], dependencies: [{ kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
79
79
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AppComponent, decorators: [{
|
|
80
80
|
type: Component,
|
|
81
|
-
args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, 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{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 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}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.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}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.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}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.mat-chip-list-wrapper input.mat-input-element,.mat-chip-list-wrapper .mat-standard-chip{margin:1px 4px 4px!important;padding-top:0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.6968;transform:translate(13.5845vw,-10px) scale(.6467);animation:fall-1 16s -14s linear infinite}@keyframes fall-1{64.78%{transform:translate(17.3714vw,64.78vh) scale(.6467)}to{transform:translate(15.47795vw,99vh) scale(.6467)}}.snow:nth-child(2){opacity:1.3246;transform:translate(62.6323vw,-10px) scale(.6645);animation:fall-2 11s -25s linear infinite}@keyframes fall-2{55.87%{transform:translate(54.4042vw,55.87vh) scale(.6645)}to{transform:translate(58.51825vw,99vh) scale(.6645)}}.snow:nth-child(3){opacity:1.132;transform:translate(76.4303vw,-10px) scale(.0702);animation:fall-3 23s -10s linear infinite}@keyframes fall-3{38.778%{transform:translate(82.4356vw,38.778vh) scale(.0702)}to{transform:translate(79.43295vw,99vh) scale(.0702)}}.snow:nth-child(4){opacity:.048;transform:translate(49.9706vw,-10px) scale(.5855);animation:fall-4 28s -30s linear infinite}@keyframes fall-4{34.682%{transform:translate(45.2738vw,34.682vh) scale(.5855)}to{transform:translate(47.6222vw,99vh) scale(.5855)}}.snow:nth-child(5){opacity:1.8232;transform:translate(17.59vw,-10px) scale(.615);animation:fall-5 19s -9s linear infinite}@keyframes fall-5{71.815%{transform:translate(27.5634vw,71.815vh) scale(.615)}to{transform:translate(22.5767vw,99vh) scale(.615)}}.snow:nth-child(6){opacity:.168;transform:translate(34.1141vw,-10px) scale(.8216);animation:fall-6 22s -12s linear infinite}@keyframes fall-6{69.29%{transform:translate(39.9698vw,69.29vh) scale(.8216)}to{transform:translate(37.04195vw,99vh) scale(.8216)}}.snow:nth-child(7){opacity:.29;transform:translate(24.9806vw,-10px) scale(.1074);animation:fall-7 11s -11s linear infinite}@keyframes fall-7{78.161%{transform:translate(19.0729vw,78.161vh) scale(.1074)}to{transform:translate(22.02675vw,99vh) scale(.1074)}}.snow:nth-child(8){opacity:1.3008;transform:translate(28.0172vw,-10px) scale(.297);animation:fall-8 25s -13s linear infinite}@keyframes fall-8{44.012%{transform:translate(28.1409vw,44.012vh) scale(.297)}to{transform:translate(28.07905vw,99vh) scale(.297)}}.snow:nth-child(9){opacity:.249;transform:translate(84.5947vw,-10px) scale(.0589);animation:fall-9 26s -8s linear infinite}@keyframes fall-9{53.871%{transform:translate(92.8717vw,53.871vh) scale(.0589)}to{transform:translate(88.7332vw,99vh) scale(.0589)}}.snow:nth-child(10){opacity:1.7042;transform:translate(18.3675vw,-10px) scale(.8403);animation:fall-10 27s -2s linear infinite}@keyframes fall-10{65.562%{transform:translate(13.1769vw,65.562vh) scale(.8403)}to{transform:translate(15.7722vw,99vh) scale(.8403)}}.snow:nth-child(11){opacity:.071;transform:translate(20.1311vw,-10px) scale(.9465);animation:fall-11 16s -9s linear infinite}@keyframes fall-11{64.028%{transform:translate(27.6678vw,64.028vh) scale(.9465)}to{transform:translate(23.89945vw,99vh) scale(.9465)}}.snow:nth-child(12){opacity:.0832;transform:translate(27.364vw,-10px) scale(.5522);animation:fall-12 17s -3s linear infinite}@keyframes fall-12{37.933%{transform:translate(30.3428vw,37.933vh) scale(.5522)}to{transform:translate(28.8534vw,99vh) scale(.5522)}}.snow:nth-child(13){opacity:1.2528;transform:translate(26.8098vw,-10px) scale(.9227);animation:fall-13 10s -13s linear infinite}@keyframes fall-13{61.225%{transform:translate(32.6882vw,61.225vh) scale(.9227)}to{transform:translate(29.749vw,99vh) scale(.9227)}}.snow:nth-child(14){opacity:1.5174;transform:translate(92.9808vw,-10px) scale(.4972);animation:fall-14 26s -13s linear infinite}@keyframes fall-14{34.87%{transform:translate(88.5261vw,34.87vh) scale(.4972)}to{transform:translate(90.75345vw,99vh) scale(.4972)}}.snow:nth-child(15){opacity:1.3674;transform:translate(56.0867vw,-10px) scale(.7331);animation:fall-15 20s -23s linear infinite}@keyframes fall-15{77.023%{transform:translate(65.1613vw,77.023vh) scale(.7331)}to{transform:translate(60.624vw,99vh) scale(.7331)}}.snow:nth-child(16){opacity:.7814;transform:translate(93.6692vw,-10px) scale(.4234);animation:fall-16 26s -14s linear infinite}@keyframes fall-16{54.829%{transform:translate(96.6347vw,54.829vh) scale(.4234)}to{transform:translate(95.15195vw,99vh) scale(.4234)}}.snow:nth-child(17){opacity:.4058;transform:translate(90.1491vw,-10px) scale(.5422);animation:fall-17 21s -14s linear infinite}@keyframes fall-17{45.903%{transform:translate(80.8895vw,45.903vh) scale(.5422)}to{transform:translate(85.5193vw,99vh) scale(.5422)}}.snow:nth-child(18){opacity:1.3284;transform:translate(79.3685vw,-10px) scale(.6435);animation:fall-18 28s -30s linear infinite}@keyframes fall-18{50.919%{transform:translate(75.4211vw,50.919vh) scale(.6435)}to{transform:translate(77.3948vw,99vh) scale(.6435)}}.snow:nth-child(19){opacity:1.0042;transform:translate(54.195vw,-10px) scale(.6887);animation:fall-19 20s -18s linear infinite}@keyframes fall-19{45.151%{transform:translate(55.7586vw,45.151vh) scale(.6887)}to{transform:translate(54.9768vw,99vh) scale(.6887)}}.snow:nth-child(20){opacity:.5892;transform:translate(25.8044vw,-10px) scale(.8442);animation:fall-20 17s -6s linear infinite}@keyframes fall-20{65.453%{transform:translate(21.498vw,65.453vh) scale(.8442)}to{transform:translate(23.6512vw,99vh) scale(.8442)}}.snow:nth-child(21){opacity:.4888;transform:translate(27.8648vw,-10px) scale(.5719);animation:fall-21 16s -2s linear infinite}@keyframes fall-21{67.61%{transform:translate(33.8598vw,67.61vh) scale(.5719)}to{transform:translate(30.8623vw,99vh) scale(.5719)}}.snow:nth-child(22){opacity:.9926;transform:translate(87.4285vw,-10px) scale(.6379);animation:fall-22 28s -2s linear infinite}@keyframes fall-22{36.79%{transform:translate(78.3056vw,36.79vh) scale(.6379)}to{transform:translate(82.86705vw,99vh) scale(.6379)}}.snow:nth-child(23){opacity:.121;transform:translate(12.6756vw,-10px) scale(.9581);animation:fall-23 11s -25s linear infinite}@keyframes fall-23{79.357%{transform:translate(5.3657vw,79.357vh) scale(.9581)}to{transform:translate(9.02065vw,99vh) scale(.9581)}}.snow:nth-child(24){opacity:1.751;transform:translate(41.5522vw,-10px) scale(.5163);animation:fall-24 19s -17s linear infinite}@keyframes fall-24{48.382%{transform:translate(33.6412vw,48.382vh) scale(.5163)}to{transform:translate(37.5967vw,99vh) scale(.5163)}}.snow:nth-child(25){opacity:.5834;transform:translate(16.8731vw,-10px) scale(.0117);animation:fall-25 27s -18s linear infinite}@keyframes fall-25{48.458%{transform:translate(24.1818vw,48.458vh) scale(.0117)}to{transform:translate(20.52745vw,99vh) scale(.0117)}}.snow:nth-child(26){opacity:1.1994;transform:translate(56.6191vw,-10px) scale(.1235);animation:fall-26 11s -9s linear infinite}@keyframes fall-26{60.739%{transform:translate(62.9983vw,60.739vh) scale(.1235)}to{transform:translate(59.8087vw,99vh) scale(.1235)}}.snow:nth-child(27){opacity:.177;transform:translate(34.7977vw,-10px) scale(.7533);animation:fall-27 15s -10s linear infinite}@keyframes fall-27{48.044%{transform:translate(35.3201vw,48.044vh) scale(.7533)}to{transform:translate(35.0589vw,99vh) scale(.7533)}}.snow:nth-child(28){opacity:1.0572;transform:translate(87.0741vw,-10px) scale(.5614);animation:fall-28 15s -14s linear infinite}@keyframes fall-28{77.911%{transform:translate(90.6701vw,77.911vh) scale(.5614)}to{transform:translate(88.8721vw,99vh) scale(.5614)}}.snow:nth-child(29){opacity:.1256;transform:translate(66.8082vw,-10px) scale(.0992);animation:fall-29 24s -29s linear infinite}@keyframes fall-29{75.019%{transform:translate(61.4508vw,75.019vh) scale(.0992)}to{transform:translate(64.1295vw,99vh) scale(.0992)}}.snow:nth-child(30){opacity:1.7276;transform:translate(43.9118vw,-10px) scale(.3217);animation:fall-30 19s -30s linear infinite}@keyframes fall-30{52.882%{transform:translate(41.4663vw,52.882vh) scale(.3217)}to{transform:translate(42.68905vw,99vh) scale(.3217)}}.snow:nth-child(31){opacity:.2428;transform:translate(74.7976vw,-10px) scale(.4634);animation:fall-31 17s -1s linear infinite}@keyframes fall-31{48.595%{transform:translate(70.895vw,48.595vh) scale(.4634)}to{transform:translate(72.8463vw,99vh) scale(.4634)}}.snow:nth-child(32){opacity:1.7138;transform:translate(40.4073vw,-10px) scale(.5154);animation:fall-32 19s -16s linear infinite}@keyframes fall-32{53.735%{transform:translate(32.2906vw,53.735vh) scale(.5154)}to{transform:translate(36.34895vw,99vh) scale(.5154)}}.snow:nth-child(33){opacity:.5282;transform:translate(43.5807vw,-10px) scale(.3024);animation:fall-33 22s -21s linear infinite}@keyframes fall-33{71.745%{transform:translate(45.0659vw,71.745vh) scale(.3024)}to{transform:translate(44.3233vw,99vh) scale(.3024)}}.snow:nth-child(34){opacity:.8614;transform:translate(44.3516vw,-10px) scale(.1765);animation:fall-34 25s -27s linear infinite}@keyframes fall-34{37.382%{transform:translate(50.5079vw,37.382vh) scale(.1765)}to{transform:translate(47.42975vw,99vh) scale(.1765)}}.snow:nth-child(35){opacity:1.7464;transform:translate(70.773vw,-10px) scale(.8542);animation:fall-35 25s -20s linear infinite}@keyframes fall-35{50.885%{transform:translate(66.0822vw,50.885vh) scale(.8542)}to{transform:translate(68.4276vw,99vh) scale(.8542)}}.snow:nth-child(36){opacity:.0656;transform:translate(23.9542vw,-10px) scale(.2115);animation:fall-36 28s -20s linear infinite}@keyframes fall-36{66.736%{transform:translate(16.1031vw,66.736vh) scale(.2115)}to{transform:translate(20.02865vw,99vh) scale(.2115)}}.snow:nth-child(37){opacity:1.1188;transform:translate(72.247vw,-10px) scale(.9537);animation:fall-37 27s -8s linear infinite}@keyframes fall-37{37.607%{transform:translate(68.3477vw,37.607vh) scale(.9537)}to{transform:translate(70.29735vw,99vh) scale(.9537)}}.snow:nth-child(38){opacity:.7588;transform:translate(44.3786vw,-10px) scale(.9009);animation:fall-38 18s -25s linear infinite}@keyframes fall-38{34.792%{transform:translate(44.494vw,34.792vh) scale(.9009)}to{transform:translate(44.4363vw,99vh) scale(.9009)}}.snow:nth-child(39){opacity:.5478;transform:translate(6.812vw,-10px) scale(.2646);animation:fall-39 13s -11s linear infinite}@keyframes fall-39{41.536%{transform:translate(5.6046vw,41.536vh) scale(.2646)}to{transform:translate(6.2083vw,99vh) scale(.2646)}}.snow:nth-child(40){opacity:.2856;transform:translate(32.3807vw,-10px) scale(.7319);animation:fall-40 27s -13s linear infinite}@keyframes fall-40{54.682%{transform:translate(28.6781vw,54.682vh) scale(.7319)}to{transform:translate(30.5294vw,99vh) scale(.7319)}}.snow:nth-child(41){opacity:.8946;transform:translate(8.1978vw,-10px) scale(.5347);animation:fall-41 12s -5s linear infinite}@keyframes fall-41{64.422%{transform:translate(1.6893vw,64.422vh) scale(.5347)}to{transform:translate(4.94355vw,99vh) scale(.5347)}}.snow:nth-child(42){opacity:1.1864;transform:translate(8.9976vw,-10px) scale(.0643);animation:fall-42 25s -7s linear infinite}@keyframes fall-42{63.781%{transform:translate(17.2171vw,63.781vh) scale(.0643)}to{transform:translate(13.10735vw,99vh) scale(.0643)}}.snow:nth-child(43){opacity:1.1066;transform:translate(56.3815vw,-10px) scale(.461);animation:fall-43 17s -6s linear infinite}@keyframes fall-43{71.15%{transform:translate(52.1051vw,71.15vh) scale(.461)}to{transform:translate(54.2433vw,99vh) scale(.461)}}.snow:nth-child(44){opacity:1.3702;transform:translate(75.7034vw,-10px) scale(.2546);animation:fall-44 24s -18s linear infinite}@keyframes fall-44{68.904%{transform:translate(77.1795vw,68.904vh) scale(.2546)}to{transform:translate(76.44145vw,99vh) scale(.2546)}}.snow:nth-child(45){opacity:.8184;transform:translate(47.604vw,-10px) scale(.9984);animation:fall-45 28s -13s linear infinite}@keyframes fall-45{71.999%{transform:translate(46.602vw,71.999vh) scale(.9984)}to{transform:translate(47.103vw,99vh) scale(.9984)}}.snow:nth-child(46){opacity:.4838;transform:translate(21.2334vw,-10px) scale(.0679);animation:fall-46 25s -13s linear infinite}@keyframes fall-46{73.404%{transform:translate(16.3286vw,73.404vh) scale(.0679)}to{transform:translate(18.781vw,99vh) scale(.0679)}}.snow:nth-child(47){opacity:.1336;transform:translate(2.7611vw,-10px) scale(.0505);animation:fall-47 11s -16s linear infinite}@keyframes fall-47{60.66%{transform:translate(-.3007vw,60.66vh) scale(.0505)}to{transform:translate(1.2302vw,99vh) scale(.0505)}}.snow:nth-child(48){opacity:.9382;transform:translate(63.9518vw,-10px) scale(.8223);animation:fall-48 15s -10s linear infinite}@keyframes fall-48{61.555%{transform:translate(54.7668vw,61.555vh) scale(.8223)}to{transform:translate(59.3593vw,99vh) scale(.8223)}}.snow:nth-child(49){opacity:.5402;transform:translate(93.2435vw,-10px) scale(.6117);animation:fall-49 21s -22s linear infinite}@keyframes fall-49{44.027%{transform:translate(86.8146vw,44.027vh) scale(.6117)}to{transform:translate(90.02905vw,99vh) scale(.6117)}}.snow:nth-child(50){opacity:1.085;transform:translate(57.3661vw,-10px) scale(.3513);animation:fall-50 14s -2s linear infinite}@keyframes fall-50{58.105%{transform:translate(60.9944vw,58.105vh) scale(.3513)}to{transform:translate(59.18025vw,99vh) scale(.3513)}}.snow:nth-child(51){opacity:.9134;transform:translate(8.4792vw,-10px) scale(.7982);animation:fall-51 18s -6s linear infinite}@keyframes fall-51{73.631%{transform:translate(12.5118vw,73.631vh) scale(.7982)}to{transform:translate(10.4955vw,99vh) scale(.7982)}}.snow:nth-child(52){opacity:.0558;transform:translate(4.8458vw,-10px) scale(.8631);animation:fall-52 10s -25s linear infinite}@keyframes fall-52{65.094%{transform:translate(4.897vw,65.094vh) scale(.8631)}to{transform:translate(4.8714vw,99vh) scale(.8631)}}.snow:nth-child(53){opacity:1.558;transform:translate(24.228vw,-10px) scale(.8047);animation:fall-53 23s -20s linear infinite}@keyframes fall-53{54.21%{transform:translate(33.09vw,54.21vh) scale(.8047)}to{transform:translate(28.659vw,99vh) scale(.8047)}}.snow:nth-child(54){opacity:1.6478;transform:translate(72.6168vw,-10px) scale(.5259);animation:fall-54 25s -9s linear infinite}@keyframes fall-54{37.526%{transform:translate(73.3841vw,37.526vh) scale(.5259)}to{transform:translate(73.00045vw,99vh) scale(.5259)}}.snow:nth-child(55){opacity:1.3544;transform:translate(89.508vw,-10px) scale(.6);animation:fall-55 17s -23s linear infinite}@keyframes fall-55{79.633%{transform:translate(81.1333vw,79.633vh) scale(.6)}to{transform:translate(85.32065vw,99vh) scale(.6)}}.snow:nth-child(56){opacity:.4738;transform:translate(20.7847vw,-10px) scale(.2104);animation:fall-56 25s -21s linear infinite}@keyframes fall-56{69.269%{transform:translate(29.3303vw,69.269vh) scale(.2104)}to{transform:translate(25.0575vw,99vh) scale(.2104)}}.snow:nth-child(57){opacity:.9134;transform:translate(73.7479vw,-10px) scale(.0523);animation:fall-57 29s -30s linear infinite}@keyframes fall-57{39.841%{transform:translate(77.5448vw,39.841vh) scale(.0523)}to{transform:translate(75.64635vw,99vh) scale(.0523)}}.snow:nth-child(58){opacity:.8476;transform:translate(9.4801vw,-10px) scale(.4975);animation:fall-58 18s -27s linear infinite}@keyframes fall-58{47.967%{transform:translate(11.6218vw,47.967vh) scale(.4975)}to{transform:translate(10.55095vw,99vh) scale(.4975)}}.snow:nth-child(59){opacity:1.6858;transform:translate(19.5654vw,-10px) scale(.0915);animation:fall-59 28s -14s linear infinite}@keyframes fall-59{37.391%{transform:translate(24.9881vw,37.391vh) scale(.0915)}to{transform:translate(22.27675vw,99vh) scale(.0915)}}.snow:nth-child(60){opacity:.0742;transform:translate(26.8306vw,-10px) scale(.523);animation:fall-60 21s -9s linear infinite}@keyframes fall-60{74.243%{transform:translate(29.4035vw,74.243vh) scale(.523)}to{transform:translate(28.11705vw,99vh) scale(.523)}}.snow:nth-child(61){opacity:.39;transform:translate(51.5949vw,-10px) scale(.2437);animation:fall-61 15s -12s linear infinite}@keyframes fall-61{43.354%{transform:translate(60.2077vw,43.354vh) scale(.2437)}to{transform:translate(55.9013vw,99vh) scale(.2437)}}.snow:nth-child(62){opacity:1.594;transform:translate(23.1717vw,-10px) scale(.639);animation:fall-62 18s -9s linear infinite}@keyframes fall-62{47.463%{transform:translate(15.1459vw,47.463vh) scale(.639)}to{transform:translate(19.1588vw,99vh) scale(.639)}}.snow:nth-child(63){opacity:.9114;transform:translate(16.0413vw,-10px) scale(.4681);animation:fall-63 25s -13s linear infinite}@keyframes fall-63{31.858%{transform:translate(14.2152vw,31.858vh) scale(.4681)}to{transform:translate(15.12825vw,99vh) scale(.4681)}}.snow:nth-child(64){opacity:.1038;transform:translate(10.1818vw,-10px) scale(.2646);animation:fall-64 24s -20s linear infinite}@keyframes fall-64{60.035%{transform:translate(6.5673vw,60.035vh) scale(.2646)}to{transform:translate(8.37455vw,99vh) scale(.2646)}}.snow:nth-child(65){opacity:.9988;transform:translate(9.4147vw,-10px) scale(.9362);animation:fall-65 12s -21s linear infinite}@keyframes fall-65{30.967%{transform:translate(.1501vw,30.967vh) scale(.9362)}to{transform:translate(4.7824vw,99vh) scale(.9362)}}.snow:nth-child(66){opacity:.847;transform:translate(62.8403vw,-10px) scale(.9565);animation:fall-66 28s -23s linear infinite}@keyframes fall-66{59.581%{transform:translate(64.919vw,59.581vh) scale(.9565)}to{transform:translate(63.87965vw,99vh) scale(.9565)}}.snow:nth-child(67){opacity:.3282;transform:translate(90.1045vw,-10px) scale(.484);animation:fall-67 17s -17s linear infinite}@keyframes fall-67{74.849%{transform:translate(88.1069vw,74.849vh) scale(.484)}to{transform:translate(89.1057vw,99vh) scale(.484)}}.snow:nth-child(68){opacity:1.6266;transform:translate(63.6773vw,-10px) scale(.9511);animation:fall-68 21s -27s linear infinite}@keyframes fall-68{61.722%{transform:translate(72.5579vw,61.722vh) scale(.9511)}to{transform:translate(68.1176vw,99vh) scale(.9511)}}.snow:nth-child(69){opacity:1.6836;transform:translate(88.4063vw,-10px) scale(.0498);animation:fall-69 15s -17s linear infinite}@keyframes fall-69{54.754%{transform:translate(80.9914vw,54.754vh) scale(.0498)}to{transform:translate(84.69885vw,99vh) scale(.0498)}}.snow:nth-child(70){opacity:1.3174;transform:translate(55.1406vw,-10px) scale(.9001);animation:fall-70 11s -11s linear infinite}@keyframes fall-70{39.62%{transform:translate(61.86vw,39.62vh) scale(.9001)}to{transform:translate(58.5003vw,99vh) scale(.9001)}}.snow:nth-child(71){opacity:1.7056;transform:translate(55.3653vw,-10px) scale(.6733);animation:fall-71 14s -5s linear infinite}@keyframes fall-71{69.612%{transform:translate(51.694vw,69.612vh) scale(.6733)}to{transform:translate(53.52965vw,99vh) scale(.6733)}}.snow:nth-child(72){opacity:.4364;transform:translate(3.6688vw,-10px) scale(.8177);animation:fall-72 15s -1s linear infinite}@keyframes fall-72{59.682%{transform:translate(-1.9261vw,59.682vh) scale(.8177)}to{transform:translate(.87135vw,99vh) scale(.8177)}}.snow:nth-child(73){opacity:.4422;transform:translate(3.1095vw,-10px) scale(.6718);animation:fall-73 17s -27s linear infinite}@keyframes fall-73{37.724%{transform:translate(-5.5899vw,37.724vh) scale(.6718)}to{transform:translate(-1.2402vw,99vh) scale(.6718)}}.snow:nth-child(74){opacity:1.4976;transform:translate(21.6073vw,-10px) scale(.3492);animation:fall-74 20s -18s linear infinite}@keyframes fall-74{38.837%{transform:translate(16.2752vw,38.837vh) scale(.3492)}to{transform:translate(18.94125vw,99vh) scale(.3492)}}.snow:nth-child(75){opacity:.4468;transform:translate(39.681vw,-10px) scale(.8954);animation:fall-75 16s -4s linear infinite}@keyframes fall-75{79.38%{transform:translate(38.6374vw,79.38vh) scale(.8954)}to{transform:translate(39.1592vw,99vh) scale(.8954)}}.snow:nth-child(76){opacity:1.0012;transform:translate(98.3131vw,-10px) scale(.7833);animation:fall-76 20s -12s linear infinite}@keyframes fall-76{69.314%{transform:translate(104.0914vw,69.314vh) scale(.7833)}to{transform:translate(101.20225vw,99vh) scale(.7833)}}.snow:nth-child(77){opacity:.0494;transform:translate(77.3978vw,-10px) scale(.5201);animation:fall-77 16s -24s linear infinite}@keyframes fall-77{79.388%{transform:translate(69.1914vw,79.388vh) scale(.5201)}to{transform:translate(73.2946vw,99vh) scale(.5201)}}.snow:nth-child(78){opacity:.3586;transform:translate(78.7529vw,-10px) scale(.7654);animation:fall-78 29s -15s linear infinite}@keyframes fall-78{51.321%{transform:translate(70.9308vw,51.321vh) scale(.7654)}to{transform:translate(74.84185vw,99vh) scale(.7654)}}.snow:nth-child(79){opacity:1.2684;transform:translate(60.3043vw,-10px) scale(.2198);animation:fall-79 22s -18s linear infinite}@keyframes fall-79{69.394%{transform:translate(67.4182vw,69.394vh) scale(.2198)}to{transform:translate(63.86125vw,99vh) scale(.2198)}}.snow:nth-child(80){opacity:1.6424;transform:translate(94.9082vw,-10px) scale(.4725);animation:fall-80 25s -18s linear infinite}@keyframes fall-80{58.855%{transform:translate(88.7725vw,58.855vh) scale(.4725)}to{transform:translate(91.84035vw,99vh) scale(.4725)}}.snow:nth-child(81){opacity:.0574;transform:translate(96.0408vw,-10px) scale(.1584);animation:fall-81 11s -24s linear infinite}@keyframes fall-81{79.813%{transform:translate(86.6559vw,79.813vh) scale(.1584)}to{transform:translate(91.34835vw,99vh) scale(.1584)}}.snow:nth-child(82){opacity:.3842;transform:translate(78.6873vw,-10px) scale(.351);animation:fall-82 11s -6s linear infinite}@keyframes fall-82{33.604%{transform:translate(73.2107vw,33.604vh) scale(.351)}to{transform:translate(75.949vw,99vh) scale(.351)}}.snow:nth-child(83){opacity:1.5822;transform:translate(33.5478vw,-10px) scale(.4);animation:fall-83 16s -14s linear infinite}@keyframes fall-83{74.319%{transform:translate(26.0902vw,74.319vh) scale(.4)}to{transform:translate(29.819vw,99vh) scale(.4)}}.snow:nth-child(84){opacity:1.8786;transform:translate(43.0871vw,-10px) scale(.7299);animation:fall-84 10s -6s linear infinite}@keyframes fall-84{47.691%{transform:translate(52.0594vw,47.691vh) scale(.7299)}to{transform:translate(47.57325vw,99vh) scale(.7299)}}.snow:nth-child(85){opacity:1.2384;transform:translate(85.5524vw,-10px) scale(.6284);animation:fall-85 12s -4s linear infinite}@keyframes fall-85{66.477%{transform:translate(91.1969vw,66.477vh) scale(.6284)}to{transform:translate(88.37465vw,99vh) scale(.6284)}}.snow:nth-child(86){opacity:1.1968;transform:translate(2.0998vw,-10px) scale(.9456);animation:fall-86 12s -17s linear infinite}@keyframes fall-86{31.287%{transform:translate(7.9849vw,31.287vh) scale(.9456)}to{transform:translate(5.04235vw,99vh) scale(.9456)}}.snow:nth-child(87){opacity:1.3358;transform:translate(23.3714vw,-10px) scale(.8623);animation:fall-87 30s -7s linear infinite}@keyframes fall-87{75.589%{transform:translate(32.152vw,75.589vh) scale(.8623)}to{transform:translate(27.7617vw,99vh) scale(.8623)}}.snow:nth-child(88){opacity:1.533;transform:translate(57.2281vw,-10px) scale(.4201);animation:fall-88 18s -20s linear infinite}@keyframes fall-88{31.885%{transform:translate(66.0954vw,31.885vh) scale(.4201)}to{transform:translate(61.66175vw,99vh) scale(.4201)}}.snow:nth-child(89){opacity:1.3008;transform:translate(62.4719vw,-10px) scale(.0271);animation:fall-89 24s -28s linear infinite}@keyframes fall-89{51.143%{transform:translate(52.7111vw,51.143vh) scale(.0271)}to{transform:translate(57.5915vw,99vh) scale(.0271)}}.snow:nth-child(90){opacity:1.5018;transform:translate(39.5471vw,-10px) scale(.1965);animation:fall-90 26s -18s linear infinite}@keyframes fall-90{76.62%{transform:translate(38.9249vw,76.62vh) scale(.1965)}to{transform:translate(39.236vw,99vh) scale(.1965)}}.snow:nth-child(91){opacity:.1028;transform:translate(71.3703vw,-10px) scale(.1238);animation:fall-91 30s -14s linear infinite}@keyframes fall-91{51.681%{transform:translate(73.9733vw,51.681vh) scale(.1238)}to{transform:translate(72.6718vw,99vh) scale(.1238)}}.snow:nth-child(92){opacity:.7606;transform:translate(34.907vw,-10px) scale(.3771);animation:fall-92 25s -20s linear infinite}@keyframes fall-92{35.348%{transform:translate(43.4936vw,35.348vh) scale(.3771)}to{transform:translate(39.2003vw,99vh) scale(.3771)}}.snow:nth-child(93){opacity:1.3486;transform:translate(38.5746vw,-10px) scale(.2819);animation:fall-93 21s -5s linear infinite}@keyframes fall-93{33.349%{transform:translate(34.2846vw,33.349vh) scale(.2819)}to{transform:translate(36.4296vw,99vh) scale(.2819)}}.snow:nth-child(94){opacity:.8372;transform:translate(76.1612vw,-10px) scale(.6166);animation:fall-94 11s -28s linear infinite}@keyframes fall-94{75.547%{transform:translate(69.6623vw,75.547vh) scale(.6166)}to{transform:translate(72.91175vw,99vh) scale(.6166)}}.snow:nth-child(95){opacity:.3552;transform:translate(42.4038vw,-10px) scale(.6726);animation:fall-95 10s -23s linear infinite}@keyframes fall-95{64.781%{transform:translate(51.6022vw,64.781vh) scale(.6726)}to{transform:translate(47.003vw,99vh) scale(.6726)}}.snow:nth-child(96){opacity:1.8054;transform:translate(15.5214vw,-10px) scale(.1646);animation:fall-96 30s -1s linear infinite}@keyframes fall-96{62.33%{transform:translate(22.0466vw,62.33vh) scale(.1646)}to{transform:translate(18.784vw,99vh) scale(.1646)}}.snow:nth-child(97){opacity:.9588;transform:translate(10.4235vw,-10px) scale(.4233);animation:fall-97 18s -8s linear infinite}@keyframes fall-97{62.488%{transform:translate(7.2465vw,62.488vh) scale(.4233)}to{transform:translate(8.835vw,99vh) scale(.4233)}}.snow:nth-child(98){opacity:.6718;transform:translate(25.1193vw,-10px) scale(.0238);animation:fall-98 13s -17s linear infinite}@keyframes fall-98{71.743%{transform:translate(17.0649vw,71.743vh) scale(.0238)}to{transform:translate(21.0921vw,99vh) scale(.0238)}}.snow:nth-child(99){opacity:.3988;transform:translate(32.5354vw,-10px) scale(.6978);animation:fall-99 21s -12s linear infinite}@keyframes fall-99{30.121%{transform:translate(31.753vw,30.121vh) scale(.6978)}to{transform:translate(32.1442vw,99vh) scale(.6978)}}.snow:nth-child(100){opacity:.447;transform:translate(87.3195vw,-10px) scale(.5423);animation:fall-100 29s -20s linear infinite}@keyframes fall-100{54.503%{transform:translate(84.3807vw,54.503vh) scale(.5423)}to{transform:translate(85.8501vw,99vh) scale(.5423)}}.snow:nth-child(101){opacity:1.0738;transform:translate(3.8601vw,-10px) scale(.5009);animation:fall-101 27s -25s linear infinite}@keyframes fall-101{55.502%{transform:translate(-.1556vw,55.502vh) scale(.5009)}to{transform:translate(1.85225vw,99vh) scale(.5009)}}.snow:nth-child(102){opacity:.2854;transform:translate(45.8192vw,-10px) scale(.0407);animation:fall-102 21s -20s linear infinite}@keyframes fall-102{35.821%{transform:translate(44.9578vw,35.821vh) scale(.0407)}to{transform:translate(45.3885vw,99vh) scale(.0407)}}.snow:nth-child(103){opacity:1.344;transform:translate(60.874vw,-10px) scale(.5005);animation:fall-103 21s -4s linear infinite}@keyframes fall-103{56.277%{transform:translate(67.7733vw,56.277vh) scale(.5005)}to{transform:translate(64.32365vw,99vh) scale(.5005)}}.snow:nth-child(104){opacity:1.6838;transform:translate(92.7386vw,-10px) scale(.9238);animation:fall-104 11s -19s linear infinite}@keyframes fall-104{46.136%{transform:translate(87.6939vw,46.136vh) scale(.9238)}to{transform:translate(90.21625vw,99vh) scale(.9238)}}.snow:nth-child(105){opacity:1.42;transform:translate(73.7377vw,-10px) scale(.6538);animation:fall-105 29s -25s linear infinite}@keyframes fall-105{66.903%{transform:translate(68.2495vw,66.903vh) scale(.6538)}to{transform:translate(70.9936vw,99vh) scale(.6538)}}.snow:nth-child(106){opacity:1.5684;transform:translate(44.711vw,-10px) scale(.6488);animation:fall-106 20s -15s linear infinite}@keyframes fall-106{63.667%{transform:translate(45.1881vw,63.667vh) scale(.6488)}to{transform:translate(44.94955vw,99vh) scale(.6488)}}.snow:nth-child(107){opacity:1.8928;transform:translate(68.5314vw,-10px) scale(.2808);animation:fall-107 15s -13s linear infinite}@keyframes fall-107{52.781%{transform:translate(70.1435vw,52.781vh) scale(.2808)}to{transform:translate(69.33745vw,99vh) scale(.2808)}}.snow:nth-child(108){opacity:1.9612;transform:translate(62.7105vw,-10px) scale(.7826);animation:fall-108 27s -12s linear infinite}@keyframes fall-108{76.511%{transform:translate(60.6661vw,76.511vh) scale(.7826)}to{transform:translate(61.6883vw,99vh) scale(.7826)}}.snow:nth-child(109){opacity:.3224;transform:translate(18.5265vw,-10px) scale(.2588);animation:fall-109 11s -23s linear infinite}@keyframes fall-109{31.066%{transform:translate(17.218vw,31.066vh) scale(.2588)}to{transform:translate(17.87225vw,99vh) scale(.2588)}}.snow:nth-child(110){opacity:.866;transform:translate(76.2442vw,-10px) scale(.0981);animation:fall-110 20s -27s linear infinite}@keyframes fall-110{55.058%{transform:translate(79.3582vw,55.058vh) scale(.0981)}to{transform:translate(77.8012vw,99vh) scale(.0981)}}.snow:nth-child(111){opacity:.2478;transform:translate(82.8183vw,-10px) scale(.6062);animation:fall-111 19s -28s linear infinite}@keyframes fall-111{53.115%{transform:translate(83.7706vw,53.115vh) scale(.6062)}to{transform:translate(83.29445vw,99vh) scale(.6062)}}.snow:nth-child(112){opacity:1.365;transform:translate(29.7512vw,-10px) scale(.0006);animation:fall-112 15s -27s linear infinite}@keyframes fall-112{39.459%{transform:translate(32.3463vw,39.459vh) scale(.0006)}to{transform:translate(31.04875vw,99vh) scale(.0006)}}.snow:nth-child(113){opacity:1.7174;transform:translate(10.9988vw,-10px) scale(.3277);animation:fall-113 22s -11s linear infinite}@keyframes fall-113{50.662%{transform:translate(20.6037vw,50.662vh) scale(.3277)}to{transform:translate(15.80125vw,99vh) scale(.3277)}}.snow:nth-child(114){opacity:.0898;transform:translate(6.0345vw,-10px) scale(.6413);animation:fall-114 15s -18s linear infinite}@keyframes fall-114{64.812%{transform:translate(12.123vw,64.812vh) scale(.6413)}to{transform:translate(9.07875vw,99vh) scale(.6413)}}.snow:nth-child(115){opacity:1.4152;transform:translate(91.4048vw,-10px) scale(.5561);animation:fall-115 19s -14s linear infinite}@keyframes fall-115{48.279%{transform:translate(89.6178vw,48.279vh) scale(.5561)}to{transform:translate(90.5113vw,99vh) scale(.5561)}}.snow:nth-child(116){opacity:.6332;transform:translate(35.5204vw,-10px) scale(.7836);animation:fall-116 10s -16s linear infinite}@keyframes fall-116{51.656%{transform:translate(44.0579vw,51.656vh) scale(.7836)}to{transform:translate(39.78915vw,99vh) scale(.7836)}}.snow:nth-child(117){opacity:1.6896;transform:translate(73.5651vw,-10px) scale(.7844);animation:fall-117 20s -24s linear infinite}@keyframes fall-117{72.147%{transform:translate(69.4643vw,72.147vh) scale(.7844)}to{transform:translate(71.5147vw,99vh) scale(.7844)}}.snow:nth-child(118){opacity:.0352;transform:translate(26.2246vw,-10px) scale(.2331);animation:fall-118 28s -10s linear infinite}@keyframes fall-118{73.064%{transform:translate(17.9213vw,73.064vh) scale(.2331)}to{transform:translate(22.07295vw,99vh) scale(.2331)}}.snow:nth-child(119){opacity:.462;transform:translate(38.2002vw,-10px) scale(.0962);animation:fall-119 12s -16s linear infinite}@keyframes fall-119{41.899%{transform:translate(41.6286vw,41.899vh) scale(.0962)}to{transform:translate(39.9144vw,99vh) scale(.0962)}}.snow:nth-child(120){opacity:.546;transform:translate(6.7185vw,-10px) scale(.338);animation:fall-120 15s -2s linear infinite}@keyframes fall-120{31.309%{transform:translate(3.8186vw,31.309vh) scale(.338)}to{transform:translate(5.26855vw,99vh) scale(.338)}}.snow:nth-child(121){opacity:.5348;transform:translate(74.1573vw,-10px) scale(.4482);animation:fall-121 14s -17s linear infinite}@keyframes fall-121{75.529%{transform:translate(78.0726vw,75.529vh) scale(.4482)}to{transform:translate(76.11495vw,99vh) scale(.4482)}}.snow:nth-child(122){opacity:1.5968;transform:translate(87.6335vw,-10px) scale(.8699);animation:fall-122 12s -29s linear infinite}@keyframes fall-122{77.182%{transform:translate(83.4675vw,77.182vh) scale(.8699)}to{transform:translate(85.5505vw,99vh) scale(.8699)}}.snow:nth-child(123){opacity:1.2526;transform:translate(83.4252vw,-10px) scale(.441);animation:fall-123 23s -28s linear infinite}@keyframes fall-123{59.511%{transform:translate(91.5402vw,59.511vh) scale(.441)}to{transform:translate(87.4827vw,99vh) scale(.441)}}.snow:nth-child(124){opacity:1.8692;transform:translate(46.9132vw,-10px) scale(.1348);animation:fall-124 24s -6s linear infinite}@keyframes fall-124{45.779%{transform:translate(51.7497vw,45.779vh) scale(.1348)}to{transform:translate(49.33145vw,99vh) scale(.1348)}}.snow:nth-child(125){opacity:.534;transform:translate(70.3185vw,-10px) scale(.7902);animation:fall-125 23s -1s linear infinite}@keyframes fall-125{62.578%{transform:translate(71.3804vw,62.578vh) scale(.7902)}to{transform:translate(70.84945vw,99vh) scale(.7902)}}.snow:nth-child(126){opacity:.4348;transform:translate(27.4552vw,-10px) scale(.9392);animation:fall-126 10s -20s linear infinite}@keyframes fall-126{71.828%{transform:translate(18.0123vw,71.828vh) scale(.9392)}to{transform:translate(22.73375vw,99vh) scale(.9392)}}.snow:nth-child(127){opacity:1.338;transform:translate(76.4813vw,-10px) scale(.5934);animation:fall-127 10s -22s linear infinite}@keyframes fall-127{30.266%{transform:translate(82.773vw,30.266vh) scale(.5934)}to{transform:translate(79.62715vw,99vh) scale(.5934)}}.snow:nth-child(128){opacity:1.9358;transform:translate(98.6575vw,-10px) scale(.0984);animation:fall-128 13s -12s linear infinite}@keyframes fall-128{43.56%{transform:translate(97.134vw,43.56vh) scale(.0984)}to{transform:translate(97.89575vw,99vh) scale(.0984)}}.snow:nth-child(129){opacity:.1604;transform:translate(8.9991vw,-10px) scale(.8355);animation:fall-129 14s -25s linear infinite}@keyframes fall-129{42.881%{transform:translate(14.2364vw,42.881vh) scale(.8355)}to{transform:translate(11.61775vw,99vh) scale(.8355)}}.snow:nth-child(130){opacity:.1338;transform:translate(56.0659vw,-10px) scale(.7805);animation:fall-130 22s -18s linear infinite}@keyframes fall-130{79.747%{transform:translate(63.8896vw,79.747vh) scale(.7805)}to{transform:translate(59.97775vw,99vh) scale(.7805)}}.snow:nth-child(131){opacity:1.4484;transform:translate(47.32vw,-10px) scale(.1924);animation:fall-131 25s -20s linear infinite}@keyframes fall-131{76.566%{transform:translate(46.7814vw,76.566vh) scale(.1924)}to{transform:translate(47.0507vw,99vh) scale(.1924)}}.snow:nth-child(132){opacity:1.0146;transform:translate(84.5978vw,-10px) scale(.0353);animation:fall-132 20s -4s linear infinite}@keyframes fall-132{57.165%{transform:translate(85.5608vw,57.165vh) scale(.0353)}to{transform:translate(85.0793vw,99vh) scale(.0353)}}.snow:nth-child(133){opacity:1.4054;transform:translate(35.5628vw,-10px) scale(.781);animation:fall-133 20s -24s linear infinite}@keyframes fall-133{33.554%{transform:translate(30.2036vw,33.554vh) scale(.781)}to{transform:translate(32.8832vw,99vh) scale(.781)}}.snow:nth-child(134){opacity:.0198;transform:translate(45.5275vw,-10px) scale(.3355);animation:fall-134 21s -27s linear infinite}@keyframes fall-134{34.769%{transform:translate(53.9455vw,34.769vh) scale(.3355)}to{transform:translate(49.7365vw,99vh) scale(.3355)}}.snow:nth-child(135){opacity:1.0194;transform:translate(63.4617vw,-10px) scale(.3516);animation:fall-135 20s -9s linear infinite}@keyframes fall-135{49.427%{transform:translate(68.5134vw,49.427vh) scale(.3516)}to{transform:translate(65.98755vw,99vh) scale(.3516)}}.snow:nth-child(136){opacity:.3834;transform:translate(65.0021vw,-10px) scale(.3121);animation:fall-136 22s -28s linear infinite}@keyframes fall-136{57.209%{transform:translate(71.4221vw,57.209vh) scale(.3121)}to{transform:translate(68.2121vw,99vh) scale(.3121)}}.snow:nth-child(137){opacity:1.936;transform:translate(79.688vw,-10px) scale(.1784);animation:fall-137 14s -23s linear infinite}@keyframes fall-137{78.702%{transform:translate(82.1062vw,78.702vh) scale(.1784)}to{transform:translate(80.8971vw,99vh) scale(.1784)}}.snow:nth-child(138){opacity:1.227;transform:translate(84.128vw,-10px) scale(.2219);animation:fall-138 15s -30s linear infinite}@keyframes fall-138{56.328%{transform:translate(91.3078vw,56.328vh) scale(.2219)}to{transform:translate(87.7179vw,99vh) scale(.2219)}}.snow:nth-child(139){opacity:.291;transform:translate(96.9724vw,-10px) scale(.1119);animation:fall-139 22s -7s linear infinite}@keyframes fall-139{66.604%{transform:translate(102.23vw,66.604vh) scale(.1119)}to{transform:translate(99.6012vw,99vh) scale(.1119)}}.snow:nth-child(140){opacity:1.0926;transform:translate(53.7785vw,-10px) scale(.4923);animation:fall-140 17s -12s linear infinite}@keyframes fall-140{37.154%{transform:translate(63.6145vw,37.154vh) scale(.4923)}to{transform:translate(58.6965vw,99vh) scale(.4923)}}.snow:nth-child(141){opacity:.073;transform:translate(16.2408vw,-10px) scale(.9633);animation:fall-141 24s -23s linear infinite}@keyframes fall-141{68.483%{transform:translate(23.5162vw,68.483vh) scale(.9633)}to{transform:translate(19.8785vw,99vh) scale(.9633)}}.snow:nth-child(142){opacity:1.3294;transform:translate(45.7637vw,-10px) scale(.1278);animation:fall-142 23s -8s linear infinite}@keyframes fall-142{68.564%{transform:translate(38.1241vw,68.564vh) scale(.1278)}to{transform:translate(41.9439vw,99vh) scale(.1278)}}.snow:nth-child(143){opacity:.0594;transform:translate(78.245vw,-10px) scale(.8776);animation:fall-143 19s -18s linear infinite}@keyframes fall-143{34.465%{transform:translate(74.6723vw,34.465vh) scale(.8776)}to{transform:translate(76.45865vw,99vh) scale(.8776)}}.snow:nth-child(144){opacity:.6522;transform:translate(92.5988vw,-10px) scale(.8904);animation:fall-144 30s -20s linear infinite}@keyframes fall-144{70.787%{transform:translate(84.6394vw,70.787vh) scale(.8904)}to{transform:translate(88.6191vw,99vh) scale(.8904)}}.snow:nth-child(145){opacity:.6914;transform:translate(66.4521vw,-10px) scale(.0698);animation:fall-145 18s -7s linear infinite}@keyframes fall-145{47.585%{transform:translate(67.9885vw,47.585vh) scale(.0698)}to{transform:translate(67.2203vw,99vh) scale(.0698)}}.snow:nth-child(146){opacity:.149;transform:translate(27.8146vw,-10px) scale(.7773);animation:fall-146 30s -20s linear infinite}@keyframes fall-146{31.347%{transform:translate(19.8692vw,31.347vh) scale(.7773)}to{transform:translate(23.8419vw,99vh) scale(.7773)}}.snow:nth-child(147){opacity:.1636;transform:translate(64.861vw,-10px) scale(.1596);animation:fall-147 20s -19s linear infinite}@keyframes fall-147{78.853%{transform:translate(65.746vw,78.853vh) scale(.1596)}to{transform:translate(65.3035vw,99vh) scale(.1596)}}.snow:nth-child(148){opacity:.2522;transform:translate(56.8343vw,-10px) scale(.6441);animation:fall-148 20s -5s linear infinite}@keyframes fall-148{55.039%{transform:translate(48.8102vw,55.039vh) scale(.6441)}to{transform:translate(52.82225vw,99vh) scale(.6441)}}.snow:nth-child(149){opacity:.7636;transform:translate(8.8347vw,-10px) scale(.1766);animation:fall-149 12s -15s linear infinite}@keyframes fall-149{65.183%{transform:translate(13.0398vw,65.183vh) scale(.1766)}to{transform:translate(10.93725vw,99vh) scale(.1766)}}.snow:nth-child(150){opacity:.5968;transform:translate(67.2048vw,-10px) scale(.5911);animation:fall-150 10s -1s linear infinite}@keyframes fall-150{67.357%{transform:translate(59.5729vw,67.357vh) scale(.5911)}to{transform:translate(63.38885vw,99vh) scale(.5911)}}.snow:nth-child(151){opacity:.799;transform:translate(26.6169vw,-10px) scale(.3325);animation:fall-151 17s -11s linear infinite}@keyframes fall-151{51.847%{transform:translate(27.7068vw,51.847vh) scale(.3325)}to{transform:translate(27.16185vw,99vh) scale(.3325)}}.snow:nth-child(152){opacity:1.2026;transform:translate(65.1575vw,-10px) scale(.2551);animation:fall-152 29s -13s linear infinite}@keyframes fall-152{40.833%{transform:translate(74.4877vw,40.833vh) scale(.2551)}to{transform:translate(69.8226vw,99vh) scale(.2551)}}.snow:nth-child(153){opacity:.9236;transform:translate(58.2045vw,-10px) scale(.5141);animation:fall-153 29s -1s linear infinite}@keyframes fall-153{64.45%{transform:translate(66.8818vw,64.45vh) scale(.5141)}to{transform:translate(62.54315vw,99vh) scale(.5141)}}.snow:nth-child(154){opacity:.8204;transform:translate(35.5827vw,-10px) scale(.6636);animation:fall-154 23s -4s linear infinite}@keyframes fall-154{36.096%{transform:translate(26.5398vw,36.096vh) scale(.6636)}to{transform:translate(31.06125vw,99vh) scale(.6636)}}.snow:nth-child(155){opacity:1.7584;transform:translate(33.8678vw,-10px) scale(.8887);animation:fall-155 18s -19s linear infinite}@keyframes fall-155{34.234%{transform:translate(30.6597vw,34.234vh) scale(.8887)}to{transform:translate(32.26375vw,99vh) scale(.8887)}}.snow:nth-child(156){opacity:1.995;transform:translate(4.4753vw,-10px) scale(.5145);animation:fall-156 14s -9s linear infinite}@keyframes fall-156{53.654%{transform:translate(5.8286vw,53.654vh) scale(.5145)}to{transform:translate(5.15195vw,99vh) scale(.5145)}}.snow:nth-child(157){opacity:.4618;transform:translate(.0238vw,-10px) scale(.6382);animation:fall-157 21s -13s linear infinite}@keyframes fall-157{31.011%{transform:translate(-7.125vw,31.011vh) scale(.6382)}to{transform:translate(-3.5506vw,99vh) scale(.6382)}}.snow:nth-child(158){opacity:1.863;transform:translate(44.4334vw,-10px) scale(.7419);animation:fall-158 25s -15s linear infinite}@keyframes fall-158{35.452%{transform:translate(51.8009vw,35.452vh) scale(.7419)}to{transform:translate(48.11715vw,99vh) scale(.7419)}}.snow:nth-child(159){opacity:1.5576;transform:translate(24.4812vw,-10px) scale(.5861);animation:fall-159 21s -6s linear infinite}@keyframes fall-159{66.464%{transform:translate(24.1022vw,66.464vh) scale(.5861)}to{transform:translate(24.2917vw,99vh) scale(.5861)}}.snow:nth-child(160){opacity:.0408;transform:translate(97.4285vw,-10px) scale(.9407);animation:fall-160 10s -8s linear infinite}@keyframes fall-160{45.165%{transform:translate(101.0891vw,45.165vh) scale(.9407)}to{transform:translate(99.2588vw,99vh) scale(.9407)}}.snow:nth-child(161){opacity:1.069;transform:translate(22.739vw,-10px) scale(.7882);animation:fall-161 11s -11s linear infinite}@keyframes fall-161{61.646%{transform:translate(17.3763vw,61.646vh) scale(.7882)}to{transform:translate(20.05765vw,99vh) scale(.7882)}}.snow:nth-child(162){opacity:1.805;transform:translate(80.8678vw,-10px) scale(.0567);animation:fall-162 29s -17s linear infinite}@keyframes fall-162{75.524%{transform:translate(77.3124vw,75.524vh) scale(.0567)}to{transform:translate(79.0901vw,99vh) scale(.0567)}}.snow:nth-child(163){opacity:1.4014;transform:translate(30.1196vw,-10px) scale(.3569);animation:fall-163 15s -29s linear infinite}@keyframes fall-163{62.002%{transform:translate(28.4333vw,62.002vh) scale(.3569)}to{transform:translate(29.27645vw,99vh) scale(.3569)}}.snow:nth-child(164){opacity:.4348;transform:translate(68.8342vw,-10px) scale(.283);animation:fall-164 15s -8s linear infinite}@keyframes fall-164{64.763%{transform:translate(78.7339vw,64.763vh) scale(.283)}to{transform:translate(73.78405vw,99vh) scale(.283)}}.snow:nth-child(165){opacity:.15;transform:translate(19.7461vw,-10px) scale(.5979);animation:fall-165 14s -28s linear infinite}@keyframes fall-165{78.346%{transform:translate(11.5024vw,78.346vh) scale(.5979)}to{transform:translate(15.62425vw,99vh) scale(.5979)}}.snow:nth-child(166){opacity:1.6188;transform:translate(97.1302vw,-10px) scale(.2487);animation:fall-166 28s -23s linear infinite}@keyframes fall-166{43.341%{transform:translate(96.1844vw,43.341vh) scale(.2487)}to{transform:translate(96.6573vw,99vh) scale(.2487)}}.snow:nth-child(167){opacity:1.0122;transform:translate(98.9679vw,-10px) scale(.9323);animation:fall-167 16s -7s linear infinite}@keyframes fall-167{71.96%{transform:translate(105.9018vw,71.96vh) scale(.9323)}to{transform:translate(102.43485vw,99vh) scale(.9323)}}.snow:nth-child(168){opacity:1.1684;transform:translate(63.6251vw,-10px) scale(.5456);animation:fall-168 14s -21s linear infinite}@keyframes fall-168{33.162%{transform:translate(65.1112vw,33.162vh) scale(.5456)}to{transform:translate(64.36815vw,99vh) scale(.5456)}}.snow:nth-child(169){opacity:.4756;transform:translate(12.4444vw,-10px) scale(.562);animation:fall-169 16s -26s linear infinite}@keyframes fall-169{64.497%{transform:translate(10.0288vw,64.497vh) scale(.562)}to{transform:translate(11.2366vw,99vh) scale(.562)}}.snow:nth-child(170){opacity:1.4506;transform:translate(46.7274vw,-10px) scale(.8427);animation:fall-170 19s -13s linear infinite}@keyframes fall-170{78.211%{transform:translate(56.0015vw,78.211vh) scale(.8427)}to{transform:translate(51.36445vw,99vh) scale(.8427)}}.snow:nth-child(171){opacity:.3672;transform:translate(54.8495vw,-10px) scale(.1872);animation:fall-171 21s -11s linear infinite}@keyframes fall-171{46.647%{transform:translate(53.8582vw,46.647vh) scale(.1872)}to{transform:translate(54.35385vw,99vh) scale(.1872)}}.snow:nth-child(172){opacity:.5252;transform:translate(22.1056vw,-10px) scale(.7675);animation:fall-172 16s -25s linear infinite}@keyframes fall-172{31.22%{transform:translate(15.2955vw,31.22vh) scale(.7675)}to{transform:translate(18.70055vw,99vh) scale(.7675)}}.snow:nth-child(173){opacity:.3144;transform:translate(71.8835vw,-10px) scale(.9903);animation:fall-173 30s -2s linear infinite}@keyframes fall-173{37.536%{transform:translate(79.613vw,37.536vh) scale(.9903)}to{transform:translate(75.74825vw,99vh) scale(.9903)}}.snow:nth-child(174){opacity:.981;transform:translate(15.0891vw,-10px) scale(.0345);animation:fall-174 22s -15s linear infinite}@keyframes fall-174{47.675%{transform:translate(8.9336vw,47.675vh) scale(.0345)}to{transform:translate(12.01135vw,99vh) scale(.0345)}}.snow:nth-child(175){opacity:1.9504;transform:translate(75.2325vw,-10px) scale(.3883);animation:fall-175 10s -27s linear infinite}@keyframes fall-175{52.727%{transform:translate(67.8772vw,52.727vh) scale(.3883)}to{transform:translate(71.55485vw,99vh) scale(.3883)}}.snow:nth-child(176){opacity:1.6394;transform:translate(27.4562vw,-10px) scale(.4101);animation:fall-176 23s -26s linear infinite}@keyframes fall-176{31.617%{transform:translate(34.0739vw,31.617vh) scale(.4101)}to{transform:translate(30.76505vw,99vh) scale(.4101)}}.snow:nth-child(177){opacity:.78;transform:translate(93.2811vw,-10px) scale(.6767);animation:fall-177 17s -24s linear infinite}@keyframes fall-177{39.446%{transform:translate(89.8221vw,39.446vh) scale(.6767)}to{transform:translate(91.5516vw,99vh) scale(.6767)}}.snow:nth-child(178){opacity:.4296;transform:translate(97.0506vw,-10px) scale(.8768);animation:fall-178 28s -11s linear infinite}@keyframes fall-178{35.455%{transform:translate(104.7617vw,35.455vh) scale(.8768)}to{transform:translate(100.90615vw,99vh) scale(.8768)}}.snow:nth-child(179){opacity:.8174;transform:translate(69.4139vw,-10px) scale(.7236);animation:fall-179 24s -21s linear infinite}@keyframes fall-179{38.251%{transform:translate(69.4779vw,38.251vh) scale(.7236)}to{transform:translate(69.4459vw,99vh) scale(.7236)}}.snow:nth-child(180){opacity:1.1406;transform:translate(54.3002vw,-10px) scale(.1366);animation:fall-180 23s -27s linear infinite}@keyframes fall-180{56.813%{transform:translate(63.6101vw,56.813vh) scale(.1366)}to{transform:translate(58.95515vw,99vh) scale(.1366)}}.snow:nth-child(181){opacity:1.4982;transform:translate(50.717vw,-10px) scale(.0465);animation:fall-181 15s -15s linear infinite}@keyframes fall-181{74.398%{transform:translate(48.8266vw,74.398vh) scale(.0465)}to{transform:translate(49.7718vw,99vh) scale(.0465)}}.snow:nth-child(182){opacity:.5924;transform:translate(71.4471vw,-10px) scale(.4583);animation:fall-182 25s -26s linear infinite}@keyframes fall-182{42.901%{transform:translate(66.8421vw,42.901vh) scale(.4583)}to{transform:translate(69.1446vw,99vh) scale(.4583)}}.snow:nth-child(183){opacity:.5592;transform:translate(93.4955vw,-10px) scale(.8711);animation:fall-183 24s -21s linear infinite}@keyframes fall-183{68.508%{transform:translate(99.7508vw,68.508vh) scale(.8711)}to{transform:translate(96.62315vw,99vh) scale(.8711)}}.snow:nth-child(184){opacity:1.0282;transform:translate(12.667vw,-10px) scale(.9656);animation:fall-184 26s -7s linear infinite}@keyframes fall-184{38.219%{transform:translate(22.1243vw,38.219vh) scale(.9656)}to{transform:translate(17.39565vw,99vh) scale(.9656)}}.snow:nth-child(185){opacity:.0448;transform:translate(62.9599vw,-10px) scale(.359);animation:fall-185 24s -4s linear infinite}@keyframes fall-185{72.966%{transform:translate(67.7338vw,72.966vh) scale(.359)}to{transform:translate(65.34685vw,99vh) scale(.359)}}.snow:nth-child(186){opacity:.3238;transform:translate(37.8175vw,-10px) scale(.5842);animation:fall-186 14s -26s linear infinite}@keyframes fall-186{55.014%{transform:translate(39.5215vw,55.014vh) scale(.5842)}to{transform:translate(38.6695vw,99vh) scale(.5842)}}.snow:nth-child(187){opacity:1.4726;transform:translate(10.5368vw,-10px) scale(.3006);animation:fall-187 30s -23s linear infinite}@keyframes fall-187{40.083%{transform:translate(8.518vw,40.083vh) scale(.3006)}to{transform:translate(9.5274vw,99vh) scale(.3006)}}.snow:nth-child(188){opacity:.8308;transform:translate(4.4519vw,-10px) scale(.4376);animation:fall-188 23s -16s linear infinite}@keyframes fall-188{38.609%{transform:translate(-2.2255vw,38.609vh) scale(.4376)}to{transform:translate(1.1132vw,99vh) scale(.4376)}}.snow:nth-child(189){opacity:.7156;transform:translate(31.7223vw,-10px) scale(.7076);animation:fall-189 16s -3s linear infinite}@keyframes fall-189{71.879%{transform:translate(25.3132vw,71.879vh) scale(.7076)}to{transform:translate(28.51775vw,99vh) scale(.7076)}}.snow:nth-child(190){opacity:1.5564;transform:translate(23.9865vw,-10px) scale(.3045);animation:fall-190 28s -27s linear infinite}@keyframes fall-190{75.382%{transform:translate(16.9433vw,75.382vh) scale(.3045)}to{transform:translate(20.4649vw,99vh) scale(.3045)}}.snow:nth-child(191){opacity:1.8492;transform:translate(49.598vw,-10px) scale(.4747);animation:fall-191 20s -2s linear infinite}@keyframes fall-191{62.035%{transform:translate(49.2797vw,62.035vh) scale(.4747)}to{transform:translate(49.43885vw,99vh) scale(.4747)}}.snow:nth-child(192){opacity:1.588;transform:translate(48.0489vw,-10px) scale(.1395);animation:fall-192 28s -5s linear infinite}@keyframes fall-192{63.405%{transform:translate(39.8119vw,63.405vh) scale(.1395)}to{transform:translate(43.9304vw,99vh) scale(.1395)}}.snow:nth-child(193){opacity:.1676;transform:translate(30.1888vw,-10px) scale(.7519);animation:fall-193 26s -30s linear infinite}@keyframes fall-193{53.634%{transform:translate(21.5363vw,53.634vh) scale(.7519)}to{transform:translate(25.86255vw,99vh) scale(.7519)}}.snow:nth-child(194){opacity:.9738;transform:translate(61.3381vw,-10px) scale(.0103);animation:fall-194 24s -19s linear infinite}@keyframes fall-194{76.12%{transform:translate(54.833vw,76.12vh) scale(.0103)}to{transform:translate(58.08555vw,99vh) scale(.0103)}}.snow:nth-child(195){opacity:.4132;transform:translate(61.7474vw,-10px) scale(.5155);animation:fall-195 26s -10s linear infinite}@keyframes fall-195{79.778%{transform:translate(64.8958vw,79.778vh) scale(.5155)}to{transform:translate(63.3216vw,99vh) scale(.5155)}}.snow:nth-child(196){opacity:1.2436;transform:translate(75.3784vw,-10px) scale(.2139);animation:fall-196 11s -19s linear infinite}@keyframes fall-196{55.726%{transform:translate(85.0358vw,55.726vh) scale(.2139)}to{transform:translate(80.2071vw,99vh) scale(.2139)}}.snow:nth-child(197){opacity:1.8022;transform:translate(76.4522vw,-10px) scale(.7168);animation:fall-197 11s -16s linear infinite}@keyframes fall-197{38.434%{transform:translate(73.862vw,38.434vh) scale(.7168)}to{transform:translate(75.1571vw,99vh) scale(.7168)}}.snow:nth-child(198){opacity:1.3454;transform:translate(31.077vw,-10px) scale(.8562);animation:fall-198 23s -29s linear infinite}@keyframes fall-198{61.643%{transform:translate(33.1928vw,61.643vh) scale(.8562)}to{transform:translate(32.1349vw,99vh) scale(.8562)}}.snow:nth-child(199){opacity:.5856;transform:translate(47.5252vw,-10px) scale(.3087);animation:fall-199 17s -10s linear infinite}@keyframes fall-199{76.859%{transform:translate(48.1052vw,76.859vh) scale(.3087)}to{transform:translate(47.8152vw,99vh) scale(.3087)}}.snow:nth-child(200){opacity:1.851;transform:translate(12.1478vw,-10px) scale(.0326);animation:fall-200 19s -12s linear infinite}@keyframes fall-200{54.54%{transform:translate(4.0212vw,54.54vh) scale(.0326)}to{transform:translate(8.0845vw,99vh) scale(.0326)}}.snow:nth-child(201){opacity:1.8136;transform:translate(40.2018vw,-10px) scale(.9234);animation:fall-201 23s -21s linear infinite}@keyframes fall-201{59.367%{transform:translate(33.8471vw,59.367vh) scale(.9234)}to{transform:translate(37.02445vw,99vh) scale(.9234)}}.snow:nth-child(202){opacity:.5094;transform:translate(96.2997vw,-10px) scale(.4166);animation:fall-202 27s -18s linear infinite}@keyframes fall-202{71.532%{transform:translate(102.2357vw,71.532vh) scale(.4166)}to{transform:translate(99.2677vw,99vh) scale(.4166)}}.snow:nth-child(203){opacity:.3578;transform:translate(74.5744vw,-10px) scale(.0559);animation:fall-203 21s -13s linear infinite}@keyframes fall-203{63.129%{transform:translate(77.5729vw,63.129vh) scale(.0559)}to{transform:translate(76.07365vw,99vh) scale(.0559)}}.snow:nth-child(204){opacity:.821;transform:translate(57.8817vw,-10px) scale(.6223);animation:fall-204 26s -6s linear infinite}@keyframes fall-204{52.428%{transform:translate(56.9918vw,52.428vh) scale(.6223)}to{transform:translate(57.43675vw,99vh) scale(.6223)}}.snow:nth-child(205){opacity:1.3344;transform:translate(86.7067vw,-10px) scale(.3793);animation:fall-205 10s -3s linear infinite}@keyframes fall-205{58.872%{transform:translate(95.8726vw,58.872vh) scale(.3793)}to{transform:translate(91.28965vw,99vh) scale(.3793)}}.snow:nth-child(206){opacity:1.2872;transform:translate(73.3545vw,-10px) scale(.9235);animation:fall-206 11s -1s linear infinite}@keyframes fall-206{64.129%{transform:translate(75.4761vw,64.129vh) scale(.9235)}to{transform:translate(74.4153vw,99vh) scale(.9235)}}.snow:nth-child(207){opacity:.7476;transform:translate(26.8118vw,-10px) scale(.3662);animation:fall-207 14s -26s linear infinite}@keyframes fall-207{53.708%{transform:translate(28.0926vw,53.708vh) scale(.3662)}to{transform:translate(27.4522vw,99vh) scale(.3662)}}.snow:nth-child(208){opacity:.242;transform:translate(45.4247vw,-10px) scale(.4287);animation:fall-208 23s -12s linear infinite}@keyframes fall-208{66.481%{transform:translate(41.7029vw,66.481vh) scale(.4287)}to{transform:translate(43.5638vw,99vh) scale(.4287)}}.snow:nth-child(209){opacity:1.4584;transform:translate(22.8706vw,-10px) scale(.9841);animation:fall-209 26s -24s linear infinite}@keyframes fall-209{37.523%{transform:translate(18.8397vw,37.523vh) scale(.9841)}to{transform:translate(20.85515vw,99vh) scale(.9841)}}.snow:nth-child(210){opacity:.023;transform:translate(29.0897vw,-10px) scale(.8506);animation:fall-210 12s -19s linear infinite}@keyframes fall-210{69.749%{transform:translate(19.4059vw,69.749vh) scale(.8506)}to{transform:translate(24.2478vw,99vh) scale(.8506)}}.snow:nth-child(211){opacity:1.8904;transform:translate(96.601vw,-10px) scale(.0838);animation:fall-211 25s -29s linear infinite}@keyframes fall-211{50.387%{transform:translate(101.8671vw,50.387vh) scale(.0838)}to{transform:translate(99.23405vw,99vh) scale(.0838)}}.snow:nth-child(212){opacity:.9336;transform:translate(65.6649vw,-10px) scale(.7006);animation:fall-212 21s -19s linear infinite}@keyframes fall-212{63.231%{transform:translate(57.4798vw,63.231vh) scale(.7006)}to{transform:translate(61.57235vw,99vh) scale(.7006)}}.snow:nth-child(213){opacity:.0618;transform:translate(35.8705vw,-10px) scale(.219);animation:fall-213 23s -3s linear infinite}@keyframes fall-213{58.728%{transform:translate(33.2555vw,58.728vh) scale(.219)}to{transform:translate(34.563vw,99vh) scale(.219)}}.snow:nth-child(214){opacity:1.8218;transform:translate(37.1566vw,-10px) scale(.3424);animation:fall-214 12s -24s linear infinite}@keyframes fall-214{69.991%{transform:translate(44.4626vw,69.991vh) scale(.3424)}to{transform:translate(40.8096vw,99vh) scale(.3424)}}.snow:nth-child(215){opacity:1.8328;transform:translate(34.4037vw,-10px) scale(.4872);animation:fall-215 22s -10s linear infinite}@keyframes fall-215{70.908%{transform:translate(41.0564vw,70.908vh) scale(.4872)}to{transform:translate(37.73005vw,99vh) scale(.4872)}}.snow:nth-child(216){opacity:.0562;transform:translate(68.2348vw,-10px) scale(.9918);animation:fall-216 17s -20s linear infinite}@keyframes fall-216{36.867%{transform:translate(66.4738vw,36.867vh) scale(.9918)}to{transform:translate(67.3543vw,99vh) scale(.9918)}}.snow:nth-child(217){opacity:1.2974;transform:translate(9.5372vw,-10px) scale(.6871);animation:fall-217 15s -18s linear infinite}@keyframes fall-217{68.389%{transform:translate(10.118vw,68.389vh) scale(.6871)}to{transform:translate(9.8276vw,99vh) scale(.6871)}}.snow:nth-child(218){opacity:.9302;transform:translate(7.9013vw,-10px) scale(.0632);animation:fall-218 29s -19s linear infinite}@keyframes fall-218{74.727%{transform:translate(10.9417vw,74.727vh) scale(.0632)}to{transform:translate(9.4215vw,99vh) scale(.0632)}}.snow:nth-child(219){opacity:.249;transform:translate(69.2913vw,-10px) scale(.4423);animation:fall-219 16s -16s linear infinite}@keyframes fall-219{39.81%{transform:translate(76.4436vw,39.81vh) scale(.4423)}to{transform:translate(72.86745vw,99vh) scale(.4423)}}.snow:nth-child(220){opacity:.6988;transform:translate(53.76vw,-10px) scale(.9167);animation:fall-220 13s -11s linear infinite}@keyframes fall-220{59.814%{transform:translate(53.5693vw,59.814vh) scale(.9167)}to{transform:translate(53.66465vw,99vh) scale(.9167)}}.snow:nth-child(221){opacity:.0746;transform:translate(69.2715vw,-10px) scale(.5974);animation:fall-221 16s -29s linear infinite}@keyframes fall-221{69.758%{transform:translate(64.2748vw,69.758vh) scale(.5974)}to{transform:translate(66.77315vw,99vh) scale(.5974)}}.snow:nth-child(222){opacity:1.0058;transform:translate(62.3363vw,-10px) scale(.3772);animation:fall-222 23s -5s linear infinite}@keyframes fall-222{62.569%{transform:translate(61.358vw,62.569vh) scale(.3772)}to{transform:translate(61.84715vw,99vh) scale(.3772)}}.snow:nth-child(223){opacity:.477;transform:translate(54.4817vw,-10px) scale(.0235);animation:fall-223 15s -30s linear infinite}@keyframes fall-223{35.457%{transform:translate(51.2964vw,35.457vh) scale(.0235)}to{transform:translate(52.88905vw,99vh) scale(.0235)}}.snow:nth-child(224){opacity:1.5956;transform:translate(32.9657vw,-10px) scale(.2986);animation:fall-224 17s -25s linear infinite}@keyframes fall-224{36.247%{transform:translate(26.5215vw,36.247vh) scale(.2986)}to{transform:translate(29.7436vw,99vh) scale(.2986)}}.snow:nth-child(225){opacity:1.3198;transform:translate(25.5899vw,-10px) scale(.8595);animation:fall-225 24s -17s linear infinite}@keyframes fall-225{32.007%{transform:translate(22.1077vw,32.007vh) scale(.8595)}to{transform:translate(23.8488vw,99vh) scale(.8595)}}.snow:nth-child(226){opacity:1.8412;transform:translate(26.1657vw,-10px) scale(.8268);animation:fall-226 18s -1s linear infinite}@keyframes fall-226{77.663%{transform:translate(22.3422vw,77.663vh) scale(.8268)}to{transform:translate(24.25395vw,99vh) scale(.8268)}}.snow:nth-child(227){opacity:.6002;transform:translate(20.9137vw,-10px) scale(.9774);animation:fall-227 30s -27s linear infinite}@keyframes fall-227{45.891%{transform:translate(13.097vw,45.891vh) scale(.9774)}to{transform:translate(17.00535vw,99vh) scale(.9774)}}.snow:nth-child(228){opacity:1.1768;transform:translate(38.1977vw,-10px) scale(.5847);animation:fall-228 22s -3s linear infinite}@keyframes fall-228{41.453%{transform:translate(28.5861vw,41.453vh) scale(.5847)}to{transform:translate(33.3919vw,99vh) scale(.5847)}}.snow:nth-child(229){opacity:1.6206;transform:translate(63.878vw,-10px) scale(.9627);animation:fall-229 22s -29s linear infinite}@keyframes fall-229{39.572%{transform:translate(55.3413vw,39.572vh) scale(.9627)}to{transform:translate(59.60965vw,99vh) scale(.9627)}}.snow:nth-child(230){opacity:.809;transform:translate(15.2939vw,-10px) scale(.2018);animation:fall-230 12s -13s linear infinite}@keyframes fall-230{52.694%{transform:translate(22.3567vw,52.694vh) scale(.2018)}to{transform:translate(18.8253vw,99vh) scale(.2018)}}.snow:nth-child(231){opacity:.5974;transform:translate(20.8246vw,-10px) scale(.2624);animation:fall-231 21s -25s linear infinite}@keyframes fall-231{61.958%{transform:translate(17.9065vw,61.958vh) scale(.2624)}to{transform:translate(19.36555vw,99vh) scale(.2624)}}.snow:nth-child(232){opacity:.419;transform:translate(81.7384vw,-10px) scale(.5541);animation:fall-232 16s -7s linear infinite}@keyframes fall-232{48.434%{transform:translate(87.3963vw,48.434vh) scale(.5541)}to{transform:translate(84.56735vw,99vh) scale(.5541)}}.snow:nth-child(233){opacity:.2298;transform:translate(21.5153vw,-10px) scale(.2174);animation:fall-233 29s -3s linear infinite}@keyframes fall-233{58.37%{transform:translate(29.9732vw,58.37vh) scale(.2174)}to{transform:translate(25.74425vw,99vh) scale(.2174)}}.snow:nth-child(234){opacity:.016;transform:translate(99.9246vw,-10px) scale(.4369);animation:fall-234 15s -19s linear infinite}@keyframes fall-234{51.305%{transform:translate(98.0119vw,51.305vh) scale(.4369)}to{transform:translate(98.96825vw,99vh) scale(.4369)}}.snow:nth-child(235){opacity:1.1786;transform:translate(37.5964vw,-10px) scale(.2417);animation:fall-235 26s -8s linear infinite}@keyframes fall-235{51.962%{transform:translate(33.3028vw,51.962vh) scale(.2417)}to{transform:translate(35.4496vw,99vh) scale(.2417)}}.snow:nth-child(236){opacity:.008;transform:translate(39.9325vw,-10px) scale(.0617);animation:fall-236 20s -12s linear infinite}@keyframes fall-236{65.279%{transform:translate(33.5603vw,65.279vh) scale(.0617)}to{transform:translate(36.7464vw,99vh) scale(.0617)}}.snow:nth-child(237){opacity:1.8078;transform:translate(88.2541vw,-10px) scale(.7779);animation:fall-237 29s -29s linear infinite}@keyframes fall-237{40.679%{transform:translate(98.1069vw,40.679vh) scale(.7779)}to{transform:translate(93.1805vw,99vh) scale(.7779)}}.snow:nth-child(238){opacity:.3724;transform:translate(42.9783vw,-10px) scale(.2568);animation:fall-238 18s -12s linear infinite}@keyframes fall-238{38.361%{transform:translate(41.2157vw,38.361vh) scale(.2568)}to{transform:translate(42.097vw,99vh) scale(.2568)}}.snow:nth-child(239){opacity:.1748;transform:translate(86.2055vw,-10px) scale(.1584);animation:fall-239 18s -4s linear infinite}@keyframes fall-239{60.222%{transform:translate(77.8522vw,60.222vh) scale(.1584)}to{transform:translate(82.02885vw,99vh) scale(.1584)}}.snow:nth-child(240){opacity:.3032;transform:translate(61.1642vw,-10px) scale(.5696);animation:fall-240 12s -17s linear infinite}@keyframes fall-240{58.021%{transform:translate(52.945vw,58.021vh) scale(.5696)}to{transform:translate(57.0546vw,99vh) scale(.5696)}}.snow:nth-child(241){opacity:1.9258;transform:translate(10.2262vw,-10px) scale(.6964);animation:fall-241 13s -20s linear infinite}@keyframes fall-241{31.777%{transform:translate(1.0935vw,31.777vh) scale(.6964)}to{transform:translate(5.65985vw,99vh) scale(.6964)}}.snow:nth-child(242){opacity:.97;transform:translate(74.9402vw,-10px) scale(.7609);animation:fall-242 18s -4s linear infinite}@keyframes fall-242{75.071%{transform:translate(69.7253vw,75.071vh) scale(.7609)}to{transform:translate(72.33275vw,99vh) scale(.7609)}}.snow:nth-child(243){opacity:.88;transform:translate(29.1834vw,-10px) scale(.0502);animation:fall-243 30s -23s linear infinite}@keyframes fall-243{63.063%{transform:translate(28.8284vw,63.063vh) scale(.0502)}to{transform:translate(29.0059vw,99vh) scale(.0502)}}.snow:nth-child(244){opacity:1.5816;transform:translate(19.1057vw,-10px) scale(.3019);animation:fall-244 22s -22s linear infinite}@keyframes fall-244{33.998%{transform:translate(16.1231vw,33.998vh) scale(.3019)}to{transform:translate(17.6144vw,99vh) scale(.3019)}}.snow:nth-child(245){opacity:.373;transform:translate(95.6341vw,-10px) scale(.3312);animation:fall-245 17s -15s linear infinite}@keyframes fall-245{55.932%{transform:translate(89.7223vw,55.932vh) scale(.3312)}to{transform:translate(92.6782vw,99vh) scale(.3312)}}.snow:nth-child(246){opacity:1.0128;transform:translate(88.2018vw,-10px) scale(.4991);animation:fall-246 11s -16s linear infinite}@keyframes fall-246{44.2%{transform:translate(90.0345vw,44.2vh) scale(.4991)}to{transform:translate(89.11815vw,99vh) scale(.4991)}}.snow:nth-child(247){opacity:.16;transform:translate(56.9243vw,-10px) scale(.3367);animation:fall-247 13s -17s linear infinite}@keyframes fall-247{57.473%{transform:translate(53.5283vw,57.473vh) scale(.3367)}to{transform:translate(55.2263vw,99vh) scale(.3367)}}.snow:nth-child(248){opacity:1.5454;transform:translate(84.4026vw,-10px) scale(.3131);animation:fall-248 26s -9s linear infinite}@keyframes fall-248{72.986%{transform:translate(82.1408vw,72.986vh) scale(.3131)}to{transform:translate(83.2717vw,99vh) scale(.3131)}}.snow:nth-child(249){opacity:.4088;transform:translate(55.3388vw,-10px) scale(.3768);animation:fall-249 11s -23s linear infinite}@keyframes fall-249{54.109%{transform:translate(60.7594vw,54.109vh) scale(.3768)}to{transform:translate(58.0491vw,99vh) scale(.3768)}}.snow:nth-child(250){opacity:1.796;transform:translate(12.5734vw,-10px) scale(.8152);animation:fall-250 10s -1s linear infinite}@keyframes fall-250{61.251%{transform:translate(10.4615vw,61.251vh) scale(.8152)}to{transform:translate(11.51745vw,99vh) scale(.8152)}}.snow:nth-child(251){opacity:.034;transform:translate(93.4709vw,-10px) scale(.5687);animation:fall-251 18s -21s linear infinite}@keyframes fall-251{43.756%{transform:translate(88.0629vw,43.756vh) scale(.5687)}to{transform:translate(90.7669vw,99vh) scale(.5687)}}.snow:nth-child(252){opacity:.6676;transform:translate(58.0089vw,-10px) scale(.2751);animation:fall-252 17s -20s linear infinite}@keyframes fall-252{71.551%{transform:translate(48.2877vw,71.551vh) scale(.2751)}to{transform:translate(53.1483vw,99vh) scale(.2751)}}.snow:nth-child(253){opacity:1.5846;transform:translate(22.6623vw,-10px) scale(.3276);animation:fall-253 23s -4s linear infinite}@keyframes fall-253{41.578%{transform:translate(30.7601vw,41.578vh) scale(.3276)}to{transform:translate(26.7112vw,99vh) scale(.3276)}}.snow:nth-child(254){opacity:1.376;transform:translate(17.0571vw,-10px) scale(.2685);animation:fall-254 18s -11s linear infinite}@keyframes fall-254{57.344%{transform:translate(14.7193vw,57.344vh) scale(.2685)}to{transform:translate(15.8882vw,99vh) scale(.2685)}}.snow:nth-child(255){opacity:1.3112;transform:translate(25.7634vw,-10px) scale(.8681);animation:fall-255 23s -25s linear infinite}@keyframes fall-255{59.397%{transform:translate(35.573vw,59.397vh) scale(.8681)}to{transform:translate(30.6682vw,99vh) scale(.8681)}}.snow:nth-child(256){opacity:1.6562;transform:translate(20.1035vw,-10px) scale(.8527);animation:fall-256 15s -23s linear infinite}@keyframes fall-256{52.423%{transform:translate(29.1292vw,52.423vh) scale(.8527)}to{transform:translate(24.61635vw,99vh) scale(.8527)}}.snow:nth-child(257){opacity:1.5668;transform:translate(12.3857vw,-10px) scale(.1272);animation:fall-257 15s -16s linear infinite}@keyframes fall-257{34.072%{transform:translate(5.7018vw,34.072vh) scale(.1272)}to{transform:translate(9.04375vw,99vh) scale(.1272)}}.snow:nth-child(258){opacity:1.9072;transform:translate(43.3152vw,-10px) scale(.342);animation:fall-258 11s -2s linear infinite}@keyframes fall-258{35.892%{transform:translate(49.0511vw,35.892vh) scale(.342)}to{transform:translate(46.18315vw,99vh) scale(.342)}}.snow:nth-child(259){opacity:1.3326;transform:translate(79.1647vw,-10px) scale(.2205);animation:fall-259 20s -17s linear infinite}@keyframes fall-259{65.42%{transform:translate(71.5194vw,65.42vh) scale(.2205)}to{transform:translate(75.34205vw,99vh) scale(.2205)}}.snow:nth-child(260){opacity:.8226;transform:translate(99.2537vw,-10px) scale(.3237);animation:fall-260 29s -21s linear infinite}@keyframes fall-260{73.07%{transform:translate(93.4539vw,73.07vh) scale(.3237)}to{transform:translate(96.3538vw,99vh) scale(.3237)}}.snow:nth-child(261){opacity:.9962;transform:translate(21.8934vw,-10px) scale(.287);animation:fall-261 13s -15s linear infinite}@keyframes fall-261{67.907%{transform:translate(13.5384vw,67.907vh) scale(.287)}to{transform:translate(17.7159vw,99vh) scale(.287)}}.snow:nth-child(262){opacity:.8408;transform:translate(8.9539vw,-10px) scale(.0251);animation:fall-262 26s -12s linear infinite}@keyframes fall-262{58.146%{transform:translate(12.2893vw,58.146vh) scale(.0251)}to{transform:translate(10.6216vw,99vh) scale(.0251)}}.snow:nth-child(263){opacity:.3222;transform:translate(35.0806vw,-10px) scale(.8172);animation:fall-263 20s -8s linear infinite}@keyframes fall-263{38.676%{transform:translate(40.1099vw,38.676vh) scale(.8172)}to{transform:translate(37.59525vw,99vh) scale(.8172)}}.snow:nth-child(264){opacity:1.736;transform:translate(16.4608vw,-10px) scale(.4229);animation:fall-264 30s -13s linear infinite}@keyframes fall-264{54.558%{transform:translate(9.2198vw,54.558vh) scale(.4229)}to{transform:translate(12.8403vw,99vh) scale(.4229)}}.snow:nth-child(265){opacity:1.6096;transform:translate(.7646vw,-10px) scale(.627);animation:fall-265 13s -29s linear infinite}@keyframes fall-265{72.55%{transform:translate(8.4802vw,72.55vh) scale(.627)}to{transform:translate(4.6224vw,99vh) scale(.627)}}.snow:nth-child(266){opacity:.5186;transform:translate(26.7049vw,-10px) scale(.8963);animation:fall-266 27s -17s linear infinite}@keyframes fall-266{45.896%{transform:translate(34.2973vw,45.896vh) scale(.8963)}to{transform:translate(30.5011vw,99vh) scale(.8963)}}.snow:nth-child(267){opacity:.3826;transform:translate(35.4686vw,-10px) scale(.3753);animation:fall-267 10s -1s linear infinite}@keyframes fall-267{66.777%{transform:translate(26.9539vw,66.777vh) scale(.3753)}to{transform:translate(31.21125vw,99vh) scale(.3753)}}.snow:nth-child(268){opacity:1.5526;transform:translate(13.8863vw,-10px) scale(.6476);animation:fall-268 28s -12s linear infinite}@keyframes fall-268{67.644%{transform:translate(3.9332vw,67.644vh) scale(.6476)}to{transform:translate(8.90975vw,99vh) scale(.6476)}}.snow:nth-child(269){opacity:1.0784;transform:translate(33.5846vw,-10px) scale(.2585);animation:fall-269 18s -24s linear infinite}@keyframes fall-269{56.126%{transform:translate(30.8268vw,56.126vh) scale(.2585)}to{transform:translate(32.2057vw,99vh) scale(.2585)}}.snow:nth-child(270){opacity:1.9338;transform:translate(44.474vw,-10px) scale(.6155);animation:fall-270 21s -25s linear infinite}@keyframes fall-270{31.591%{transform:translate(40.8873vw,31.591vh) scale(.6155)}to{transform:translate(42.68065vw,99vh) scale(.6155)}}.snow:nth-child(271){opacity:.1718;transform:translate(70.2916vw,-10px) scale(.9114);animation:fall-271 26s -4s linear infinite}@keyframes fall-271{55.062%{transform:translate(70.2278vw,55.062vh) scale(.9114)}to{transform:translate(70.2597vw,99vh) scale(.9114)}}.snow:nth-child(272){opacity:.4656;transform:translate(42.4095vw,-10px) scale(.1058);animation:fall-272 19s -6s linear infinite}@keyframes fall-272{38.936%{transform:translate(47.5972vw,38.936vh) scale(.1058)}to{transform:translate(45.00335vw,99vh) scale(.1058)}}.snow:nth-child(273){opacity:1.6192;transform:translate(70.6473vw,-10px) scale(.9937);animation:fall-273 12s -1s linear infinite}@keyframes fall-273{39.115%{transform:translate(79.9581vw,39.115vh) scale(.9937)}to{transform:translate(75.3027vw,99vh) scale(.9937)}}.snow:nth-child(274){opacity:.247;transform:translate(61.2654vw,-10px) scale(.8371);animation:fall-274 26s -11s linear infinite}@keyframes fall-274{34.654%{transform:translate(65.1037vw,34.654vh) scale(.8371)}to{transform:translate(63.18455vw,99vh) scale(.8371)}}.snow:nth-child(275){opacity:1.2924;transform:translate(27.1668vw,-10px) scale(.5367);animation:fall-275 30s -15s linear infinite}@keyframes fall-275{57.944%{transform:translate(35.2893vw,57.944vh) scale(.5367)}to{transform:translate(31.22805vw,99vh) scale(.5367)}}.snow:nth-child(276){opacity:.5;transform:translate(69.6529vw,-10px) scale(.5187);animation:fall-276 30s -17s linear infinite}@keyframes fall-276{57.244%{transform:translate(70.4539vw,57.244vh) scale(.5187)}to{transform:translate(70.0534vw,99vh) scale(.5187)}}.snow:nth-child(277){opacity:.0254;transform:translate(40.2589vw,-10px) scale(.06);animation:fall-277 30s -27s linear infinite}@keyframes fall-277{61.533%{transform:translate(40.1847vw,61.533vh) scale(.06)}to{transform:translate(40.2218vw,99vh) scale(.06)}}.snow:nth-child(278){opacity:.8232;transform:translate(20.6113vw,-10px) scale(.9339);animation:fall-278 16s -23s linear infinite}@keyframes fall-278{54.34%{transform:translate(28.5786vw,54.34vh) scale(.9339)}to{transform:translate(24.59495vw,99vh) scale(.9339)}}.snow:nth-child(279){opacity:1.0064;transform:translate(91.3713vw,-10px) scale(.9018);animation:fall-279 10s -1s linear infinite}@keyframes fall-279{36.625%{transform:translate(95.4625vw,36.625vh) scale(.9018)}to{transform:translate(93.4169vw,99vh) scale(.9018)}}.snow:nth-child(280){opacity:1.968;transform:translate(52.976vw,-10px) scale(.0814);animation:fall-280 30s -2s linear infinite}@keyframes fall-280{41.299%{transform:translate(53.9114vw,41.299vh) scale(.0814)}to{transform:translate(53.4437vw,99vh) scale(.0814)}}.snow:nth-child(281){opacity:1.6554;transform:translate(2.5742vw,-10px) scale(.7712);animation:fall-281 20s -5s linear infinite}@keyframes fall-281{53.337%{transform:translate(3.2722vw,53.337vh) scale(.7712)}to{transform:translate(2.9232vw,99vh) scale(.7712)}}.snow:nth-child(282){opacity:1.9152;transform:translate(36.7021vw,-10px) scale(.7637);animation:fall-282 17s -13s linear infinite}@keyframes fall-282{71.019%{transform:translate(35.9798vw,71.019vh) scale(.7637)}to{transform:translate(36.34095vw,99vh) scale(.7637)}}.snow:nth-child(283){opacity:.2164;transform:translate(61.6375vw,-10px) scale(.1977);animation:fall-283 14s -24s linear infinite}@keyframes fall-283{78.5%{transform:translate(54.6529vw,78.5vh) scale(.1977)}to{transform:translate(58.1452vw,99vh) scale(.1977)}}.snow:nth-child(284){opacity:.503;transform:translate(80.8826vw,-10px) scale(.9031);animation:fall-284 14s -25s linear infinite}@keyframes fall-284{61.355%{transform:translate(76.6953vw,61.355vh) scale(.9031)}to{transform:translate(78.78895vw,99vh) scale(.9031)}}.snow:nth-child(285){opacity:.4804;transform:translate(20.5474vw,-10px) scale(.3139);animation:fall-285 16s -2s linear infinite}@keyframes fall-285{70.684%{transform:translate(27.0036vw,70.684vh) scale(.3139)}to{transform:translate(23.7755vw,99vh) scale(.3139)}}.snow:nth-child(286){opacity:1.061;transform:translate(65.8827vw,-10px) scale(.0726);animation:fall-286 23s -29s linear infinite}@keyframes fall-286{73.495%{transform:translate(69.0933vw,73.495vh) scale(.0726)}to{transform:translate(67.488vw,99vh) scale(.0726)}}.snow:nth-child(287){opacity:.1684;transform:translate(69.6878vw,-10px) scale(.4749);animation:fall-287 28s -29s linear infinite}@keyframes fall-287{71.405%{transform:translate(71.9024vw,71.405vh) scale(.4749)}to{transform:translate(70.7951vw,99vh) scale(.4749)}}.snow:nth-child(288){opacity:.8162;transform:translate(96.1025vw,-10px) scale(.0254);animation:fall-288 25s -24s linear infinite}@keyframes fall-288{48.398%{transform:translate(94.7926vw,48.398vh) scale(.0254)}to{transform:translate(95.44755vw,99vh) scale(.0254)}}.snow:nth-child(289){opacity:.0314;transform:translate(72.1345vw,-10px) scale(.9217);animation:fall-289 22s -12s linear infinite}@keyframes fall-289{68.232%{transform:translate(78.9831vw,68.232vh) scale(.9217)}to{transform:translate(75.5588vw,99vh) scale(.9217)}}.snow:nth-child(290){opacity:1.6316;transform:translate(.5294vw,-10px) scale(.9006);animation:fall-290 18s -2s linear infinite}@keyframes fall-290{48.11%{transform:translate(-1.1573vw,48.11vh) scale(.9006)}to{transform:translate(-.31395vw,99vh) scale(.9006)}}.snow:nth-child(291){opacity:1.2598;transform:translate(9.2913vw,-10px) scale(.3859);animation:fall-291 29s -30s linear infinite}@keyframes fall-291{50.595%{transform:translate(17.7729vw,50.595vh) scale(.3859)}to{transform:translate(13.5321vw,99vh) scale(.3859)}}.snow:nth-child(292){opacity:.504;transform:translate(17.0163vw,-10px) scale(.5869);animation:fall-292 26s -6s linear infinite}@keyframes fall-292{49.409%{transform:translate(19.205vw,49.409vh) scale(.5869)}to{transform:translate(18.11065vw,99vh) scale(.5869)}}.snow:nth-child(293){opacity:1.2798;transform:translate(81.9527vw,-10px) scale(.8212);animation:fall-293 16s -16s linear infinite}@keyframes fall-293{35.574%{transform:translate(82.1786vw,35.574vh) scale(.8212)}to{transform:translate(82.06565vw,99vh) scale(.8212)}}.snow:nth-child(294){opacity:1.1656;transform:translate(18.507vw,-10px) scale(.8507);animation:fall-294 23s -26s linear infinite}@keyframes fall-294{57.674%{transform:translate(21.0199vw,57.674vh) scale(.8507)}to{transform:translate(19.76345vw,99vh) scale(.8507)}}.snow:nth-child(295){opacity:1.4138;transform:translate(12.1935vw,-10px) scale(.0545);animation:fall-295 18s -3s linear infinite}@keyframes fall-295{50.197%{transform:translate(2.3598vw,50.197vh) scale(.0545)}to{transform:translate(7.27665vw,99vh) scale(.0545)}}.snow:nth-child(296){opacity:.2916;transform:translate(47.4308vw,-10px) scale(.6943);animation:fall-296 22s -12s linear infinite}@keyframes fall-296{58.655%{transform:translate(45.1701vw,58.655vh) scale(.6943)}to{transform:translate(46.30045vw,99vh) scale(.6943)}}.snow:nth-child(297){opacity:1.9938;transform:translate(98.8824vw,-10px) scale(.5293);animation:fall-297 15s -29s linear infinite}@keyframes fall-297{42.297%{transform:translate(108.0386vw,42.297vh) scale(.5293)}to{transform:translate(103.4605vw,99vh) scale(.5293)}}.snow:nth-child(298){opacity:.2012;transform:translate(31.9733vw,-10px) scale(.4019);animation:fall-298 13s -21s linear infinite}@keyframes fall-298{36.409%{transform:translate(27.5797vw,36.409vh) scale(.4019)}to{transform:translate(29.7765vw,99vh) scale(.4019)}}.snow:nth-child(299){opacity:1.7464;transform:translate(77.3606vw,-10px) scale(.6682);animation:fall-299 30s -7s linear infinite}@keyframes fall-299{66.323%{transform:translate(76.7913vw,66.323vh) scale(.6682)}to{transform:translate(77.07595vw,99vh) scale(.6682)}}.snow:nth-child(300){opacity:1.6036;transform:translate(62.8462vw,-10px) scale(.802);animation:fall-300 26s -22s linear infinite}@keyframes fall-300{54.113%{transform:translate(61.2469vw,54.113vh) scale(.802)}to{transform:translate(62.04655vw,99vh) scale(.802)}}.snow:nth-child(301){opacity:1.3092;transform:translate(15.0716vw,-10px) scale(.2426);animation:fall-301 23s -11s linear infinite}@keyframes fall-301{36.176%{transform:translate(24.7336vw,36.176vh) scale(.2426)}to{transform:translate(19.9026vw,99vh) scale(.2426)}}.snow:nth-child(302){opacity:.5344;transform:translate(47.3189vw,-10px) scale(.0498);animation:fall-302 11s -24s linear infinite}@keyframes fall-302{72.571%{transform:translate(57.1213vw,72.571vh) scale(.0498)}to{transform:translate(52.2201vw,99vh) scale(.0498)}}.snow:nth-child(303){opacity:1.39;transform:translate(40.5358vw,-10px) scale(.3528);animation:fall-303 18s -7s linear infinite}@keyframes fall-303{31.009%{transform:translate(31.0671vw,31.009vh) scale(.3528)}to{transform:translate(35.80145vw,99vh) scale(.3528)}}.snow:nth-child(304){opacity:1.993;transform:translate(83.7741vw,-10px) scale(.9398);animation:fall-304 16s -30s linear infinite}@keyframes fall-304{33.811%{transform:translate(88.0813vw,33.811vh) scale(.9398)}to{transform:translate(85.9277vw,99vh) scale(.9398)}}.snow:nth-child(305){opacity:.551;transform:translate(31.9874vw,-10px) scale(.3917);animation:fall-305 27s -2s linear infinite}@keyframes fall-305{54.992%{transform:translate(29.9826vw,54.992vh) scale(.3917)}to{transform:translate(30.985vw,99vh) scale(.3917)}}.snow:nth-child(306){opacity:.8644;transform:translate(21.857vw,-10px) scale(.295);animation:fall-306 25s -11s linear infinite}@keyframes fall-306{59.58%{transform:translate(26.0081vw,59.58vh) scale(.295)}to{transform:translate(23.93255vw,99vh) scale(.295)}}.snow:nth-child(307){opacity:.2194;transform:translate(37.8422vw,-10px) scale(.8266);animation:fall-307 23s -13s linear infinite}@keyframes fall-307{47.107%{transform:translate(46.3737vw,47.107vh) scale(.8266)}to{transform:translate(42.10795vw,99vh) scale(.8266)}}.snow:nth-child(308){opacity:.8348;transform:translate(52.4899vw,-10px) scale(.8455);animation:fall-308 25s -17s linear infinite}@keyframes fall-308{59.309%{transform:translate(53.0135vw,59.309vh) scale(.8455)}to{transform:translate(52.7517vw,99vh) scale(.8455)}}.snow:nth-child(309){opacity:.0494;transform:translate(72.5015vw,-10px) scale(.8815);animation:fall-309 12s -7s linear infinite}@keyframes fall-309{39.909%{transform:translate(63.3717vw,39.909vh) scale(.8815)}to{transform:translate(67.9366vw,99vh) scale(.8815)}}.snow:nth-child(310){opacity:.203;transform:translate(62.9614vw,-10px) scale(.551);animation:fall-310 24s -7s linear infinite}@keyframes fall-310{74.672%{transform:translate(59.2428vw,74.672vh) scale(.551)}to{transform:translate(61.1021vw,99vh) scale(.551)}}.snow:nth-child(311){opacity:1.4262;transform:translate(74.223vw,-10px) scale(.6946);animation:fall-311 17s -11s linear infinite}@keyframes fall-311{40.157%{transform:translate(70.3415vw,40.157vh) scale(.6946)}to{transform:translate(72.28225vw,99vh) scale(.6946)}}.snow:nth-child(312){opacity:.6322;transform:translate(26.5569vw,-10px) scale(.4248);animation:fall-312 26s -5s linear infinite}@keyframes fall-312{42.979%{transform:translate(28.2614vw,42.979vh) scale(.4248)}to{transform:translate(27.40915vw,99vh) scale(.4248)}}.snow:nth-child(313){opacity:1.402;transform:translate(12.1603vw,-10px) scale(.4914);animation:fall-313 18s -30s linear infinite}@keyframes fall-313{30.554%{transform:translate(2.27vw,30.554vh) scale(.4914)}to{transform:translate(7.21515vw,99vh) scale(.4914)}}.snow:nth-child(314){opacity:1.2118;transform:translate(75.7402vw,-10px) scale(.9235);animation:fall-314 26s -12s linear infinite}@keyframes fall-314{37.995%{transform:translate(70.6983vw,37.995vh) scale(.9235)}to{transform:translate(73.21925vw,99vh) scale(.9235)}}.snow:nth-child(315){opacity:1.2556;transform:translate(7.0657vw,-10px) scale(.9713);animation:fall-315 20s -21s linear infinite}@keyframes fall-315{56.919%{transform:translate(2.0496vw,56.919vh) scale(.9713)}to{transform:translate(4.55765vw,99vh) scale(.9713)}}.snow:nth-child(316){opacity:.1834;transform:translate(55.031vw,-10px) scale(.0631);animation:fall-316 21s -17s linear infinite}@keyframes fall-316{55.263%{transform:translate(56.4643vw,55.263vh) scale(.0631)}to{transform:translate(55.74765vw,99vh) scale(.0631)}}.snow:nth-child(317){opacity:.3962;transform:translate(90.7831vw,-10px) scale(.336);animation:fall-317 27s -18s linear infinite}@keyframes fall-317{56.806%{transform:translate(89.2352vw,56.806vh) scale(.336)}to{transform:translate(90.00915vw,99vh) scale(.336)}}.snow:nth-child(318){opacity:.3602;transform:translate(10.4828vw,-10px) scale(.9358);animation:fall-318 19s -1s linear infinite}@keyframes fall-318{45.885%{transform:translate(19.1792vw,45.885vh) scale(.9358)}to{transform:translate(14.831vw,99vh) scale(.9358)}}.snow:nth-child(319){opacity:.0906;transform:translate(56.3726vw,-10px) scale(.8961);animation:fall-319 29s -19s linear infinite}@keyframes fall-319{40.65%{transform:translate(49.7287vw,40.65vh) scale(.8961)}to{transform:translate(53.05065vw,99vh) scale(.8961)}}.snow:nth-child(320){opacity:1.5688;transform:translate(44.0567vw,-10px) scale(.0203);animation:fall-320 27s -14s linear infinite}@keyframes fall-320{40.773%{transform:translate(52.2114vw,40.773vh) scale(.0203)}to{transform:translate(48.13405vw,99vh) scale(.0203)}}.snow:nth-child(321){opacity:1.535;transform:translate(11.0706vw,-10px) scale(.9603);animation:fall-321 24s -12s linear infinite}@keyframes fall-321{47.888%{transform:translate(6.863vw,47.888vh) scale(.9603)}to{transform:translate(8.9668vw,99vh) scale(.9603)}}.snow:nth-child(322){opacity:1.2152;transform:translate(48.1654vw,-10px) scale(.409);animation:fall-322 27s -7s linear infinite}@keyframes fall-322{38.058%{transform:translate(46.1901vw,38.058vh) scale(.409)}to{transform:translate(47.17775vw,99vh) scale(.409)}}.snow:nth-child(323){opacity:1.0218;transform:translate(67.5984vw,-10px) scale(.817);animation:fall-323 10s -6s linear infinite}@keyframes fall-323{74.433%{transform:translate(64.12vw,74.433vh) scale(.817)}to{transform:translate(65.8592vw,99vh) scale(.817)}}.snow:nth-child(324){opacity:1.4432;transform:translate(87.2955vw,-10px) scale(.7179);animation:fall-324 11s -3s linear infinite}@keyframes fall-324{42.923%{transform:translate(84.3059vw,42.923vh) scale(.7179)}to{transform:translate(85.8007vw,99vh) scale(.7179)}}.snow:nth-child(325){opacity:.2652;transform:translate(79.2461vw,-10px) scale(.373);animation:fall-325 30s -1s linear infinite}@keyframes fall-325{71.79%{transform:translate(88.9059vw,71.79vh) scale(.373)}to{transform:translate(84.076vw,99vh) scale(.373)}}.snow:nth-child(326){opacity:1.967;transform:translate(47.8538vw,-10px) scale(.8059);animation:fall-326 21s -13s linear infinite}@keyframes fall-326{51.378%{transform:translate(49.7736vw,51.378vh) scale(.8059)}to{transform:translate(48.8137vw,99vh) scale(.8059)}}.snow:nth-child(327){opacity:.8178;transform:translate(16.1426vw,-10px) scale(.2157);animation:fall-327 26s -15s linear infinite}@keyframes fall-327{63.168%{transform:translate(22.6957vw,63.168vh) scale(.2157)}to{transform:translate(19.41915vw,99vh) scale(.2157)}}.snow:nth-child(328){opacity:1.1266;transform:translate(24.6654vw,-10px) scale(.3469);animation:fall-328 13s -6s linear infinite}@keyframes fall-328{56.8%{transform:translate(16.2959vw,56.8vh) scale(.3469)}to{transform:translate(20.48065vw,99vh) scale(.3469)}}.snow:nth-child(329){opacity:.2868;transform:translate(58.4195vw,-10px) scale(.0632);animation:fall-329 21s -7s linear infinite}@keyframes fall-329{46.726%{transform:translate(49.5883vw,46.726vh) scale(.0632)}to{transform:translate(54.0039vw,99vh) scale(.0632)}}.snow:nth-child(330){opacity:.0054;transform:translate(99.3244vw,-10px) scale(.801);animation:fall-330 22s -13s linear infinite}@keyframes fall-330{61.823%{transform:translate(95.4274vw,61.823vh) scale(.801)}to{transform:translate(97.3759vw,99vh) scale(.801)}}.snow:nth-child(331){opacity:1.0224;transform:translate(42.4537vw,-10px) scale(.6115);animation:fall-331 15s -25s linear infinite}@keyframes fall-331{39.64%{transform:translate(51.6565vw,39.64vh) scale(.6115)}to{transform:translate(47.0551vw,99vh) scale(.6115)}}.snow:nth-child(332){opacity:1.518;transform:translate(82.3719vw,-10px) scale(.8178);animation:fall-332 26s -22s linear infinite}@keyframes fall-332{46.169%{transform:translate(90.989vw,46.169vh) scale(.8178)}to{transform:translate(86.68045vw,99vh) scale(.8178)}}.snow:nth-child(333){opacity:1.2604;transform:translate(92.5821vw,-10px) scale(.2264);animation:fall-333 10s -8s linear infinite}@keyframes fall-333{77.138%{transform:translate(98.3579vw,77.138vh) scale(.2264)}to{transform:translate(95.47vw,99vh) scale(.2264)}}.snow:nth-child(334){opacity:.7128;transform:translate(53.173vw,-10px) scale(.1437);animation:fall-334 23s -27s linear infinite}@keyframes fall-334{79.834%{transform:translate(56.145vw,79.834vh) scale(.1437)}to{transform:translate(54.659vw,99vh) scale(.1437)}}.snow:nth-child(335){opacity:1.4576;transform:translate(75.1967vw,-10px) scale(.4073);animation:fall-335 28s -22s linear infinite}@keyframes fall-335{41.882%{transform:translate(74.9224vw,41.882vh) scale(.4073)}to{transform:translate(75.05955vw,99vh) scale(.4073)}}.snow:nth-child(336){opacity:1.8838;transform:translate(94.5746vw,-10px) scale(.2699);animation:fall-336 15s -5s linear infinite}@keyframes fall-336{33.163%{transform:translate(90.6959vw,33.163vh) scale(.2699)}to{transform:translate(92.63525vw,99vh) scale(.2699)}}.snow:nth-child(337){opacity:1.653;transform:translate(26.4564vw,-10px) scale(.1081);animation:fall-337 10s -1s linear infinite}@keyframes fall-337{75.831%{transform:translate(18.3442vw,75.831vh) scale(.1081)}to{transform:translate(22.4003vw,99vh) scale(.1081)}}.snow:nth-child(338){opacity:.4212;transform:translate(60.1857vw,-10px) scale(.9205);animation:fall-338 28s -13s linear infinite}@keyframes fall-338{33.823%{transform:translate(53.3724vw,33.823vh) scale(.9205)}to{transform:translate(56.77905vw,99vh) scale(.9205)}}.snow:nth-child(339){opacity:1.348;transform:translate(11.3761vw,-10px) scale(.8849);animation:fall-339 30s -9s linear infinite}@keyframes fall-339{69.677%{transform:translate(15.8858vw,69.677vh) scale(.8849)}to{transform:translate(13.63095vw,99vh) scale(.8849)}}.snow:nth-child(340){opacity:.0986;transform:translate(23.7866vw,-10px) scale(.1468);animation:fall-340 22s -15s linear infinite}@keyframes fall-340{63.79%{transform:translate(23.4757vw,63.79vh) scale(.1468)}to{transform:translate(23.63115vw,99vh) scale(.1468)}}.snow:nth-child(341){opacity:.2004;transform:translate(5.5231vw,-10px) scale(.1982);animation:fall-341 25s -12s linear infinite}@keyframes fall-341{40.456%{transform:translate(6.3449vw,40.456vh) scale(.1982)}to{transform:translate(5.934vw,99vh) scale(.1982)}}.snow:nth-child(342){opacity:.8978;transform:translate(52.5082vw,-10px) scale(.4035);animation:fall-342 21s -17s linear infinite}@keyframes fall-342{77.818%{transform:translate(43.873vw,77.818vh) scale(.4035)}to{transform:translate(48.1906vw,99vh) scale(.4035)}}.snow:nth-child(343){opacity:.7704;transform:translate(52.9758vw,-10px) scale(.5333);animation:fall-343 29s -18s linear infinite}@keyframes fall-343{58.413%{transform:translate(44.8447vw,58.413vh) scale(.5333)}to{transform:translate(48.91025vw,99vh) scale(.5333)}}.snow:nth-child(344){opacity:.955;transform:translate(69.9978vw,-10px) scale(.8026);animation:fall-344 14s -23s linear infinite}@keyframes fall-344{72.438%{transform:translate(67.2735vw,72.438vh) scale(.8026)}to{transform:translate(68.63565vw,99vh) scale(.8026)}}.snow:nth-child(345){opacity:.0978;transform:translate(98.4547vw,-10px) scale(.6616);animation:fall-345 28s -29s linear infinite}@keyframes fall-345{78.546%{transform:translate(107.2281vw,78.546vh) scale(.6616)}to{transform:translate(102.8414vw,99vh) scale(.6616)}}.snow:nth-child(346){opacity:1.7518;transform:translate(88.1159vw,-10px) scale(.0403);animation:fall-346 21s -26s linear infinite}@keyframes fall-346{72.093%{transform:translate(97.3397vw,72.093vh) scale(.0403)}to{transform:translate(92.7278vw,99vh) scale(.0403)}}.snow:nth-child(347){opacity:1.7682;transform:translate(47.2689vw,-10px) scale(.2598);animation:fall-347 23s -4s linear infinite}@keyframes fall-347{52.95%{transform:translate(38.5046vw,52.95vh) scale(.2598)}to{transform:translate(42.88675vw,99vh) scale(.2598)}}.snow:nth-child(348){opacity:1.2848;transform:translate(45.1949vw,-10px) scale(.6484);animation:fall-348 18s -6s linear infinite}@keyframes fall-348{48.143%{transform:translate(35.4492vw,48.143vh) scale(.6484)}to{transform:translate(40.32205vw,99vh) scale(.6484)}}.snow:nth-child(349){opacity:1.2746;transform:translate(68.3568vw,-10px) scale(.5376);animation:fall-349 23s -26s linear infinite}@keyframes fall-349{31.068%{transform:translate(70.9874vw,31.068vh) scale(.5376)}to{transform:translate(69.6721vw,99vh) scale(.5376)}}.snow:nth-child(350){opacity:.8036;transform:translate(43.0699vw,-10px) scale(.479);animation:fall-350 26s -14s linear infinite}@keyframes fall-350{76.507%{transform:translate(52.6719vw,76.507vh) scale(.479)}to{transform:translate(47.8709vw,99vh) scale(.479)}}.snow:nth-child(351){opacity:1.7652;transform:translate(27.8743vw,-10px) scale(.2818);animation:fall-351 25s -26s linear infinite}@keyframes fall-351{73.68%{transform:translate(26.9703vw,73.68vh) scale(.2818)}to{transform:translate(27.4223vw,99vh) scale(.2818)}}.snow:nth-child(352){opacity:.8816;transform:translate(54.7831vw,-10px) scale(.7693);animation:fall-352 30s -22s linear infinite}@keyframes fall-352{44.046%{transform:translate(47.4849vw,44.046vh) scale(.7693)}to{transform:translate(51.134vw,99vh) scale(.7693)}}.snow:nth-child(353){opacity:.465;transform:translate(98.9481vw,-10px) scale(.8641);animation:fall-353 20s -24s linear infinite}@keyframes fall-353{60.409%{transform:translate(101.0351vw,60.409vh) scale(.8641)}to{transform:translate(99.9916vw,99vh) scale(.8641)}}.snow:nth-child(354){opacity:.0332;transform:translate(13.5909vw,-10px) scale(.0368);animation:fall-354 20s -16s linear infinite}@keyframes fall-354{43.268%{transform:translate(20.9294vw,43.268vh) scale(.0368)}to{transform:translate(17.26015vw,99vh) scale(.0368)}}.snow:nth-child(355){opacity:1.7204;transform:translate(1.4571vw,-10px) scale(.1955);animation:fall-355 11s -10s linear infinite}@keyframes fall-355{61.829%{transform:translate(-5.5571vw,61.829vh) scale(.1955)}to{transform:translate(-2.05vw,99vh) scale(.1955)}}.snow:nth-child(356){opacity:.5046;transform:translate(68.3559vw,-10px) scale(.3638);animation:fall-356 30s -19s linear infinite}@keyframes fall-356{61.796%{transform:translate(71.8662vw,61.796vh) scale(.3638)}to{transform:translate(70.11105vw,99vh) scale(.3638)}}.snow:nth-child(357){opacity:.4144;transform:translate(77.7828vw,-10px) scale(.4133);animation:fall-357 29s -6s linear infinite}@keyframes fall-357{69.641%{transform:translate(74.7199vw,69.641vh) scale(.4133)}to{transform:translate(76.25135vw,99vh) scale(.4133)}}.snow:nth-child(358){opacity:1.5568;transform:translate(26.9213vw,-10px) scale(.9536);animation:fall-358 13s -22s linear infinite}@keyframes fall-358{49.005%{transform:translate(20.2702vw,49.005vh) scale(.9536)}to{transform:translate(23.59575vw,99vh) scale(.9536)}}.snow:nth-child(359){opacity:.9058;transform:translate(78.4982vw,-10px) scale(.0489);animation:fall-359 20s -30s linear infinite}@keyframes fall-359{58.116%{transform:translate(83.3048vw,58.116vh) scale(.0489)}to{transform:translate(80.9015vw,99vh) scale(.0489)}}.snow:nth-child(360){opacity:.1456;transform:translate(50.2406vw,-10px) scale(.4192);animation:fall-360 22s -1s linear infinite}@keyframes fall-360{61.435%{transform:translate(52.7842vw,61.435vh) scale(.4192)}to{transform:translate(51.5124vw,99vh) scale(.4192)}}.snow:nth-child(361){opacity:1.8234;transform:translate(2.5027vw,-10px) scale(.4514);animation:fall-361 10s -1s linear infinite}@keyframes fall-361{40.98%{transform:translate(6.6071vw,40.98vh) scale(.4514)}to{transform:translate(4.5549vw,99vh) scale(.4514)}}.snow:nth-child(362){opacity:.8168;transform:translate(72.5808vw,-10px) scale(.6512);animation:fall-362 30s -25s linear infinite}@keyframes fall-362{34.474%{transform:translate(79.357vw,34.474vh) scale(.6512)}to{transform:translate(75.9689vw,99vh) scale(.6512)}}.snow:nth-child(363){opacity:.0172;transform:translate(72.9265vw,-10px) scale(.6551);animation:fall-363 10s -24s linear infinite}@keyframes fall-363{65.577%{transform:translate(80.6561vw,65.577vh) scale(.6551)}to{transform:translate(76.7913vw,99vh) scale(.6551)}}.snow:nth-child(364){opacity:1.3524;transform:translate(72.5223vw,-10px) scale(.2863);animation:fall-364 12s -15s linear infinite}@keyframes fall-364{62.239%{transform:translate(74.6418vw,62.239vh) scale(.2863)}to{transform:translate(73.58205vw,99vh) scale(.2863)}}.snow:nth-child(365){opacity:1.4458;transform:translate(9.5493vw,-10px) scale(.9763);animation:fall-365 29s -17s linear infinite}@keyframes fall-365{69.691%{transform:translate(14.117vw,69.691vh) scale(.9763)}to{transform:translate(11.83315vw,99vh) scale(.9763)}}.snow:nth-child(366){opacity:.1258;transform:translate(47.7651vw,-10px) scale(.8692);animation:fall-366 14s -2s linear infinite}@keyframes fall-366{62.72%{transform:translate(55.0331vw,62.72vh) scale(.8692)}to{transform:translate(51.3991vw,99vh) scale(.8692)}}.snow:nth-child(367){opacity:1.7126;transform:translate(73.9369vw,-10px) scale(.9896);animation:fall-367 13s -9s linear infinite}@keyframes fall-367{72.711%{transform:translate(80.4856vw,72.711vh) scale(.9896)}to{transform:translate(77.21125vw,99vh) scale(.9896)}}.snow:nth-child(368){opacity:.215;transform:translate(24.9898vw,-10px) scale(.0095);animation:fall-368 24s -18s linear infinite}@keyframes fall-368{47.245%{transform:translate(17.8817vw,47.245vh) scale(.0095)}to{transform:translate(21.43575vw,99vh) scale(.0095)}}.snow:nth-child(369){opacity:.0372;transform:translate(89.0703vw,-10px) scale(.1479);animation:fall-369 20s -26s linear infinite}@keyframes fall-369{32.155%{transform:translate(89.0864vw,32.155vh) scale(.1479)}to{transform:translate(89.07835vw,99vh) scale(.1479)}}.snow:nth-child(370){opacity:1.0626;transform:translate(28.7444vw,-10px) scale(.8918);animation:fall-370 28s -16s linear infinite}@keyframes fall-370{39.013%{transform:translate(25.0331vw,39.013vh) scale(.8918)}to{transform:translate(26.88875vw,99vh) scale(.8918)}}.snow:nth-child(371){opacity:.3928;transform:translate(58.5963vw,-10px) scale(.6837);animation:fall-371 30s -22s linear infinite}@keyframes fall-371{58.708%{transform:translate(62.5695vw,58.708vh) scale(.6837)}to{transform:translate(60.5829vw,99vh) scale(.6837)}}.snow:nth-child(372){opacity:1.6448;transform:translate(7.1377vw,-10px) scale(.6221);animation:fall-372 28s -23s linear infinite}@keyframes fall-372{35.753%{transform:translate(8.6278vw,35.753vh) scale(.6221)}to{transform:translate(7.88275vw,99vh) scale(.6221)}}.snow:nth-child(373){opacity:.3662;transform:translate(79.793vw,-10px) scale(.0748);animation:fall-373 27s -21s linear infinite}@keyframes fall-373{68.745%{transform:translate(82.5804vw,68.745vh) scale(.0748)}to{transform:translate(81.1867vw,99vh) scale(.0748)}}.snow:nth-child(374){opacity:1.527;transform:translate(.6443vw,-10px) scale(.0394);animation:fall-374 14s -20s linear infinite}@keyframes fall-374{71.132%{transform:translate(6.6558vw,71.132vh) scale(.0394)}to{transform:translate(3.65005vw,99vh) scale(.0394)}}.snow:nth-child(375){opacity:1.1446;transform:translate(26.3028vw,-10px) scale(.0571);animation:fall-375 18s -16s linear infinite}@keyframes fall-375{50.087%{transform:translate(16.4876vw,50.087vh) scale(.0571)}to{transform:translate(21.3952vw,99vh) scale(.0571)}}.snow:nth-child(376){opacity:.6432;transform:translate(35.8147vw,-10px) scale(.0036);animation:fall-376 15s -29s linear infinite}@keyframes fall-376{34.39%{transform:translate(34.6985vw,34.39vh) scale(.0036)}to{transform:translate(35.2566vw,99vh) scale(.0036)}}.snow:nth-child(377){opacity:.8738;transform:translate(99.2792vw,-10px) scale(.7441);animation:fall-377 10s -18s linear infinite}@keyframes fall-377{41.821%{transform:translate(99.2086vw,41.821vh) scale(.7441)}to{transform:translate(99.2439vw,99vh) scale(.7441)}}.snow:nth-child(378){opacity:1.7208;transform:translate(17.5842vw,-10px) scale(.6246);animation:fall-378 28s -19s linear infinite}@keyframes fall-378{71.623%{transform:translate(23.1639vw,71.623vh) scale(.6246)}to{transform:translate(20.37405vw,99vh) scale(.6246)}}.snow:nth-child(379){opacity:1.6146;transform:translate(2.1574vw,-10px) scale(.5594);animation:fall-379 29s -18s linear infinite}@keyframes fall-379{30.772%{transform:translate(2.282vw,30.772vh) scale(.5594)}to{transform:translate(2.2197vw,99vh) scale(.5594)}}.snow:nth-child(380){opacity:.7898;transform:translate(67.3027vw,-10px) scale(.9536);animation:fall-380 28s -22s linear infinite}@keyframes fall-380{57.44%{transform:translate(73.103vw,57.44vh) scale(.9536)}to{transform:translate(70.20285vw,99vh) scale(.9536)}}.snow:nth-child(381){opacity:1.995;transform:translate(24.0274vw,-10px) scale(.8407);animation:fall-381 11s -2s linear infinite}@keyframes fall-381{35.324%{transform:translate(23.9874vw,35.324vh) scale(.8407)}to{transform:translate(24.0074vw,99vh) scale(.8407)}}.snow:nth-child(382){opacity:.2454;transform:translate(66.2949vw,-10px) scale(.857);animation:fall-382 13s -12s linear infinite}@keyframes fall-382{67.355%{transform:translate(64.7615vw,67.355vh) scale(.857)}to{transform:translate(65.5282vw,99vh) scale(.857)}}.snow:nth-child(383){opacity:1.282;transform:translate(30.826vw,-10px) scale(.8388);animation:fall-383 29s -19s linear infinite}@keyframes fall-383{67.634%{transform:translate(40.5vw,67.634vh) scale(.8388)}to{transform:translate(35.663vw,99vh) scale(.8388)}}.snow:nth-child(384){opacity:.284;transform:translate(72.911vw,-10px) scale(.9243);animation:fall-384 25s -2s linear infinite}@keyframes fall-384{79.37%{transform:translate(63.7725vw,79.37vh) scale(.9243)}to{transform:translate(68.34175vw,99vh) scale(.9243)}}.snow:nth-child(385){opacity:.3594;transform:translate(29.0725vw,-10px) scale(.2575);animation:fall-385 26s -22s linear infinite}@keyframes fall-385{55.392%{transform:translate(37.6868vw,55.392vh) scale(.2575)}to{transform:translate(33.37965vw,99vh) scale(.2575)}}.snow:nth-child(386){opacity:1.561;transform:translate(32.1547vw,-10px) scale(.5287);animation:fall-386 27s -14s linear infinite}@keyframes fall-386{74.83%{transform:translate(26.0775vw,74.83vh) scale(.5287)}to{transform:translate(29.1161vw,99vh) scale(.5287)}}.snow:nth-child(387){opacity:1.232;transform:translate(5.5747vw,-10px) scale(.9556);animation:fall-387 15s -10s linear infinite}@keyframes fall-387{49.548%{transform:translate(3.1506vw,49.548vh) scale(.9556)}to{transform:translate(4.36265vw,99vh) scale(.9556)}}.snow:nth-child(388){opacity:1.9826;transform:translate(38.3548vw,-10px) scale(.147);animation:fall-388 29s -12s linear infinite}@keyframes fall-388{70.161%{transform:translate(34.1358vw,70.161vh) scale(.147)}to{transform:translate(36.2453vw,99vh) scale(.147)}}.snow:nth-child(389){opacity:1.0608;transform:translate(82.936vw,-10px) scale(.1257);animation:fall-389 30s -5s linear infinite}@keyframes fall-389{79.647%{transform:translate(88.6383vw,79.647vh) scale(.1257)}to{transform:translate(85.78715vw,99vh) scale(.1257)}}.snow:nth-child(390){opacity:1.4846;transform:translate(44.3734vw,-10px) scale(.9847);animation:fall-390 17s -11s linear infinite}@keyframes fall-390{52.35%{transform:translate(45.5019vw,52.35vh) scale(.9847)}to{transform:translate(44.93765vw,99vh) scale(.9847)}}.snow:nth-child(391){opacity:1.8636;transform:translate(75.5395vw,-10px) scale(.2704);animation:fall-391 14s -5s linear infinite}@keyframes fall-391{56.147%{transform:translate(74.5728vw,56.147vh) scale(.2704)}to{transform:translate(75.05615vw,99vh) scale(.2704)}}.snow:nth-child(392){opacity:.6968;transform:translate(10.1254vw,-10px) scale(.9576);animation:fall-392 19s -25s linear infinite}@keyframes fall-392{56.239%{transform:translate(4.2178vw,56.239vh) scale(.9576)}to{transform:translate(7.1716vw,99vh) scale(.9576)}}.snow:nth-child(393){opacity:.1802;transform:translate(20.8067vw,-10px) scale(.7936);animation:fall-393 16s -12s linear infinite}@keyframes fall-393{62.642%{transform:translate(23.8264vw,62.642vh) scale(.7936)}to{transform:translate(22.31655vw,99vh) scale(.7936)}}.snow:nth-child(394){opacity:.7826;transform:translate(58.3598vw,-10px) scale(.448);animation:fall-394 22s -10s linear infinite}@keyframes fall-394{34.072%{transform:translate(48.6147vw,34.072vh) scale(.448)}to{transform:translate(53.48725vw,99vh) scale(.448)}}.snow:nth-child(395){opacity:1.7322;transform:translate(19.8725vw,-10px) scale(.9905);animation:fall-395 30s -25s linear infinite}@keyframes fall-395{79.503%{transform:translate(16.868vw,79.503vh) scale(.9905)}to{transform:translate(18.37025vw,99vh) scale(.9905)}}.snow:nth-child(396){opacity:1.007;transform:translate(5.922vw,-10px) scale(.3694);animation:fall-396 24s -9s linear infinite}@keyframes fall-396{38.389%{transform:translate(1.0165vw,38.389vh) scale(.3694)}to{transform:translate(3.46925vw,99vh) scale(.3694)}}.snow:nth-child(397){opacity:.0826;transform:translate(37.4116vw,-10px) scale(.3365);animation:fall-397 22s -15s linear infinite}@keyframes fall-397{76.405%{transform:translate(42.3017vw,76.405vh) scale(.3365)}to{transform:translate(39.85665vw,99vh) scale(.3365)}}.snow:nth-child(398){opacity:.7914;transform:translate(82.9271vw,-10px) scale(.3373);animation:fall-398 27s -8s linear infinite}@keyframes fall-398{77.695%{transform:translate(81.2975vw,77.695vh) scale(.3373)}to{transform:translate(82.1123vw,99vh) scale(.3373)}}.snow:nth-child(399){opacity:1.5076;transform:translate(50.6487vw,-10px) scale(.3909);animation:fall-399 20s -9s linear infinite}@keyframes fall-399{64.036%{transform:translate(44.2496vw,64.036vh) scale(.3909)}to{transform:translate(47.44915vw,99vh) scale(.3909)}}.snow:nth-child(400){opacity:.2018;transform:translate(96.0418vw,-10px) scale(.6752);animation:fall-400 12s -17s linear infinite}@keyframes fall-400{77.306%{transform:translate(94.0061vw,77.306vh) scale(.6752)}to{transform:translate(95.02395vw,99vh) scale(.6752)}}\n"] }]
|
|
81
|
+
args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, 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{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 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}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.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}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.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}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.mat-chip-list-wrapper input.mat-input-element,.mat-chip-list-wrapper .mat-standard-chip{margin:1px 4px 4px!important;padding-top:0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:1.146;transform:translate(47.3923vw,-10px) scale(.7874);animation:fall-1 30s -23s linear infinite}@keyframes fall-1{79.746%{transform:translate(55.7759vw,79.746vh) scale(.7874)}to{transform:translate(51.5841vw,99vh) scale(.7874)}}.snow:nth-child(2){opacity:.3356;transform:translate(62.0664vw,-10px) scale(.1889);animation:fall-2 20s -19s linear infinite}@keyframes fall-2{66.96%{transform:translate(54.1915vw,66.96vh) scale(.1889)}to{transform:translate(58.12895vw,99vh) scale(.1889)}}.snow:nth-child(3){opacity:1.566;transform:translate(87.2706vw,-10px) scale(.614);animation:fall-3 17s -3s linear infinite}@keyframes fall-3{53.855%{transform:translate(90.8094vw,53.855vh) scale(.614)}to{transform:translate(89.04vw,99vh) scale(.614)}}.snow:nth-child(4){opacity:1.4538;transform:translate(.409vw,-10px) scale(.4918);animation:fall-4 29s -12s linear infinite}@keyframes fall-4{69.159%{transform:translate(9.4201vw,69.159vh) scale(.4918)}to{transform:translate(4.91455vw,99vh) scale(.4918)}}.snow:nth-child(5){opacity:1.4262;transform:translate(13.5601vw,-10px) scale(.4737);animation:fall-5 16s -9s linear infinite}@keyframes fall-5{33.98%{transform:translate(16.8422vw,33.98vh) scale(.4737)}to{transform:translate(15.20115vw,99vh) scale(.4737)}}.snow:nth-child(6){opacity:.4798;transform:translate(95.879vw,-10px) scale(.613);animation:fall-6 13s -16s linear infinite}@keyframes fall-6{33.611%{transform:translate(87.2265vw,33.611vh) scale(.613)}to{transform:translate(91.55275vw,99vh) scale(.613)}}.snow:nth-child(7){opacity:.1998;transform:translate(25.8014vw,-10px) scale(.4785);animation:fall-7 30s -18s linear infinite}@keyframes fall-7{76.736%{transform:translate(16.8338vw,76.736vh) scale(.4785)}to{transform:translate(21.3176vw,99vh) scale(.4785)}}.snow:nth-child(8){opacity:.2694;transform:translate(44.9219vw,-10px) scale(.5548);animation:fall-8 23s -27s linear infinite}@keyframes fall-8{38.877%{transform:translate(52.8vw,38.877vh) scale(.5548)}to{transform:translate(48.86095vw,99vh) scale(.5548)}}.snow:nth-child(9){opacity:1.8384;transform:translate(89.3292vw,-10px) scale(.7264);animation:fall-9 26s -18s linear infinite}@keyframes fall-9{64.412%{transform:translate(98.6346vw,64.412vh) scale(.7264)}to{transform:translate(93.9819vw,99vh) scale(.7264)}}.snow:nth-child(10){opacity:.058;transform:translate(68.1707vw,-10px) scale(.9756);animation:fall-10 21s -28s linear infinite}@keyframes fall-10{61.598%{transform:translate(69.7131vw,61.598vh) scale(.9756)}to{transform:translate(68.9419vw,99vh) scale(.9756)}}.snow:nth-child(11){opacity:1.4454;transform:translate(67.7965vw,-10px) scale(.5711);animation:fall-11 18s -9s linear infinite}@keyframes fall-11{57.687%{transform:translate(61.5708vw,57.687vh) scale(.5711)}to{transform:translate(64.68365vw,99vh) scale(.5711)}}.snow:nth-child(12){opacity:1.6922;transform:translate(88.4917vw,-10px) scale(.8691);animation:fall-12 18s -23s linear infinite}@keyframes fall-12{68.002%{transform:translate(97.0499vw,68.002vh) scale(.8691)}to{transform:translate(92.7708vw,99vh) scale(.8691)}}.snow:nth-child(13){opacity:1.3418;transform:translate(62.7745vw,-10px) scale(.0865);animation:fall-13 24s -23s linear infinite}@keyframes fall-13{60.181%{transform:translate(56.6086vw,60.181vh) scale(.0865)}to{transform:translate(59.69155vw,99vh) scale(.0865)}}.snow:nth-child(14){opacity:.604;transform:translate(70.0834vw,-10px) scale(.683);animation:fall-14 25s -18s linear infinite}@keyframes fall-14{47.754%{transform:translate(75.4439vw,47.754vh) scale(.683)}to{transform:translate(72.76365vw,99vh) scale(.683)}}.snow:nth-child(15){opacity:1.1486;transform:translate(34.5671vw,-10px) scale(.2034);animation:fall-15 21s -25s linear infinite}@keyframes fall-15{40.045%{transform:translate(38.831vw,40.045vh) scale(.2034)}to{transform:translate(36.69905vw,99vh) scale(.2034)}}.snow:nth-child(16){opacity:1.385;transform:translate(40.7788vw,-10px) scale(.3655);animation:fall-16 25s -4s linear infinite}@keyframes fall-16{38.937%{transform:translate(37.385vw,38.937vh) scale(.3655)}to{transform:translate(39.0819vw,99vh) scale(.3655)}}.snow:nth-child(17){opacity:.8982;transform:translate(30.2846vw,-10px) scale(.4582);animation:fall-17 26s -21s linear infinite}@keyframes fall-17{74.465%{transform:translate(25.7831vw,74.465vh) scale(.4582)}to{transform:translate(28.03385vw,99vh) scale(.4582)}}.snow:nth-child(18){opacity:1.6484;transform:translate(88.9707vw,-10px) scale(.4474);animation:fall-18 24s -23s linear infinite}@keyframes fall-18{35.509%{transform:translate(96.2076vw,35.509vh) scale(.4474)}to{transform:translate(92.58915vw,99vh) scale(.4474)}}.snow:nth-child(19){opacity:.1414;transform:translate(38.0215vw,-10px) scale(.1149);animation:fall-19 23s -30s linear infinite}@keyframes fall-19{50.65%{transform:translate(35.0643vw,50.65vh) scale(.1149)}to{transform:translate(36.5429vw,99vh) scale(.1149)}}.snow:nth-child(20){opacity:1.4702;transform:translate(33.3485vw,-10px) scale(.6025);animation:fall-20 23s -14s linear infinite}@keyframes fall-20{55.69%{transform:translate(28.6867vw,55.69vh) scale(.6025)}to{transform:translate(31.0176vw,99vh) scale(.6025)}}.snow:nth-child(21){opacity:1.9512;transform:translate(43.8157vw,-10px) scale(.2815);animation:fall-21 25s -16s linear infinite}@keyframes fall-21{42.207%{transform:translate(35.4563vw,42.207vh) scale(.2815)}to{transform:translate(39.636vw,99vh) scale(.2815)}}.snow:nth-child(22){opacity:.362;transform:translate(80.6085vw,-10px) scale(.1656);animation:fall-22 11s -29s linear infinite}@keyframes fall-22{62.62%{transform:translate(80.437vw,62.62vh) scale(.1656)}to{transform:translate(80.52275vw,99vh) scale(.1656)}}.snow:nth-child(23){opacity:1.5732;transform:translate(61.7636vw,-10px) scale(.9608);animation:fall-23 30s -28s linear infinite}@keyframes fall-23{33.827%{transform:translate(54.9502vw,33.827vh) scale(.9608)}to{transform:translate(58.3569vw,99vh) scale(.9608)}}.snow:nth-child(24){opacity:1.2614;transform:translate(45.2628vw,-10px) scale(.3841);animation:fall-24 22s -22s linear infinite}@keyframes fall-24{49.208%{transform:translate(50.3066vw,49.208vh) scale(.3841)}to{transform:translate(47.7847vw,99vh) scale(.3841)}}.snow:nth-child(25){opacity:.6548;transform:translate(.7625vw,-10px) scale(.8232);animation:fall-25 18s -6s linear infinite}@keyframes fall-25{43.584%{transform:translate(2.2758vw,43.584vh) scale(.8232)}to{transform:translate(1.51915vw,99vh) scale(.8232)}}.snow:nth-child(26){opacity:.0874;transform:translate(2.5268vw,-10px) scale(.7803);animation:fall-26 15s -12s linear infinite}@keyframes fall-26{55.078%{transform:translate(2.621vw,55.078vh) scale(.7803)}to{transform:translate(2.5739vw,99vh) scale(.7803)}}.snow:nth-child(27){opacity:.8338;transform:translate(2.2588vw,-10px) scale(.2941);animation:fall-27 21s -2s linear infinite}@keyframes fall-27{59.172%{transform:translate(.3814vw,59.172vh) scale(.2941)}to{transform:translate(1.3201vw,99vh) scale(.2941)}}.snow:nth-child(28){opacity:.4916;transform:translate(19.5878vw,-10px) scale(.0674);animation:fall-28 15s -17s linear infinite}@keyframes fall-28{40.351%{transform:translate(9.7874vw,40.351vh) scale(.0674)}to{transform:translate(14.6876vw,99vh) scale(.0674)}}.snow:nth-child(29){opacity:.8536;transform:translate(14.6229vw,-10px) scale(.5846);animation:fall-29 16s -5s linear infinite}@keyframes fall-29{32.59%{transform:translate(13.2535vw,32.59vh) scale(.5846)}to{transform:translate(13.9382vw,99vh) scale(.5846)}}.snow:nth-child(30){opacity:1.7636;transform:translate(28.9059vw,-10px) scale(.6101);animation:fall-30 13s -27s linear infinite}@keyframes fall-30{32.127%{transform:translate(19.22vw,32.127vh) scale(.6101)}to{transform:translate(24.06295vw,99vh) scale(.6101)}}.snow:nth-child(31){opacity:1.636;transform:translate(47.121vw,-10px) scale(.6101);animation:fall-31 29s -5s linear infinite}@keyframes fall-31{41.231%{transform:translate(40.6268vw,41.231vh) scale(.6101)}to{transform:translate(43.8739vw,99vh) scale(.6101)}}.snow:nth-child(32){opacity:1.3438;transform:translate(43.1202vw,-10px) scale(.7861);animation:fall-32 21s -22s linear infinite}@keyframes fall-32{33.712%{transform:translate(49.8666vw,33.712vh) scale(.7861)}to{transform:translate(46.4934vw,99vh) scale(.7861)}}.snow:nth-child(33){opacity:.7906;transform:translate(43.1143vw,-10px) scale(.7578);animation:fall-33 22s -19s linear infinite}@keyframes fall-33{55.527%{transform:translate(52.9545vw,55.527vh) scale(.7578)}to{transform:translate(48.0344vw,99vh) scale(.7578)}}.snow:nth-child(34){opacity:.816;transform:translate(87.8185vw,-10px) scale(.9864);animation:fall-34 13s -26s linear infinite}@keyframes fall-34{61.813%{transform:translate(85.5485vw,61.813vh) scale(.9864)}to{transform:translate(86.6835vw,99vh) scale(.9864)}}.snow:nth-child(35){opacity:1.8526;transform:translate(69.5763vw,-10px) scale(.4035);animation:fall-35 13s -8s linear infinite}@keyframes fall-35{56.245%{transform:translate(68.4764vw,56.245vh) scale(.4035)}to{transform:translate(69.02635vw,99vh) scale(.4035)}}.snow:nth-child(36){opacity:.4266;transform:translate(43.6593vw,-10px) scale(.2991);animation:fall-36 11s -17s linear infinite}@keyframes fall-36{67.15%{transform:translate(42.0484vw,67.15vh) scale(.2991)}to{transform:translate(42.85385vw,99vh) scale(.2991)}}.snow:nth-child(37){opacity:1.128;transform:translate(94.1022vw,-10px) scale(.0698);animation:fall-37 24s -26s linear infinite}@keyframes fall-37{37.834%{transform:translate(88.875vw,37.834vh) scale(.0698)}to{transform:translate(91.4886vw,99vh) scale(.0698)}}.snow:nth-child(38){opacity:.5874;transform:translate(76.0974vw,-10px) scale(.1726);animation:fall-38 15s -29s linear infinite}@keyframes fall-38{62.469%{transform:translate(74.7597vw,62.469vh) scale(.1726)}to{transform:translate(75.42855vw,99vh) scale(.1726)}}.snow:nth-child(39){opacity:.519;transform:translate(34.5393vw,-10px) scale(.2227);animation:fall-39 18s -10s linear infinite}@keyframes fall-39{52.572%{transform:translate(39.4372vw,52.572vh) scale(.2227)}to{transform:translate(36.98825vw,99vh) scale(.2227)}}.snow:nth-child(40){opacity:.0558;transform:translate(52.1347vw,-10px) scale(.1709);animation:fall-40 21s -7s linear infinite}@keyframes fall-40{60.025%{transform:translate(46.5787vw,60.025vh) scale(.1709)}to{transform:translate(49.3567vw,99vh) scale(.1709)}}.snow:nth-child(41){opacity:1.555;transform:translate(19.5821vw,-10px) scale(.8812);animation:fall-41 16s -4s linear infinite}@keyframes fall-41{79.573%{transform:translate(18.9369vw,79.573vh) scale(.8812)}to{transform:translate(19.2595vw,99vh) scale(.8812)}}.snow:nth-child(42){opacity:1.4166;transform:translate(16.9601vw,-10px) scale(.8013);animation:fall-42 20s -25s linear infinite}@keyframes fall-42{49.536%{transform:translate(21.7024vw,49.536vh) scale(.8013)}to{transform:translate(19.33125vw,99vh) scale(.8013)}}.snow:nth-child(43){opacity:.8452;transform:translate(3.1187vw,-10px) scale(.4784);animation:fall-43 21s -21s linear infinite}@keyframes fall-43{62.12%{transform:translate(-6.1945vw,62.12vh) scale(.4784)}to{transform:translate(-1.5379vw,99vh) scale(.4784)}}.snow:nth-child(44){opacity:.0812;transform:translate(74.0074vw,-10px) scale(.1133);animation:fall-44 17s -1s linear infinite}@keyframes fall-44{79.281%{transform:translate(77.2052vw,79.281vh) scale(.1133)}to{transform:translate(75.6063vw,99vh) scale(.1133)}}.snow:nth-child(45){opacity:1.9676;transform:translate(1.1538vw,-10px) scale(.3252);animation:fall-45 15s -18s linear infinite}@keyframes fall-45{70.675%{transform:translate(9.0204vw,70.675vh) scale(.3252)}to{transform:translate(5.0871vw,99vh) scale(.3252)}}.snow:nth-child(46){opacity:.1876;transform:translate(89.5892vw,-10px) scale(.7251);animation:fall-46 24s -22s linear infinite}@keyframes fall-46{74.543%{transform:translate(94.0047vw,74.543vh) scale(.7251)}to{transform:translate(91.79695vw,99vh) scale(.7251)}}.snow:nth-child(47){opacity:.6354;transform:translate(40.6886vw,-10px) scale(.8741);animation:fall-47 10s -12s linear infinite}@keyframes fall-47{36.774%{transform:translate(36.45vw,36.774vh) scale(.8741)}to{transform:translate(38.5693vw,99vh) scale(.8741)}}.snow:nth-child(48){opacity:.3188;transform:translate(41.3005vw,-10px) scale(.7872);animation:fall-48 13s -11s linear infinite}@keyframes fall-48{59.381%{transform:translate(48.3214vw,59.381vh) scale(.7872)}to{transform:translate(44.81095vw,99vh) scale(.7872)}}.snow:nth-child(49){opacity:1.9408;transform:translate(96.056vw,-10px) scale(.8235);animation:fall-49 24s -22s linear infinite}@keyframes fall-49{61.889%{transform:translate(100.6755vw,61.889vh) scale(.8235)}to{transform:translate(98.36575vw,99vh) scale(.8235)}}.snow:nth-child(50){opacity:1.656;transform:translate(61.6735vw,-10px) scale(.9967);animation:fall-50 17s -8s linear infinite}@keyframes fall-50{56.697%{transform:translate(61.7592vw,56.697vh) scale(.9967)}to{transform:translate(61.71635vw,99vh) scale(.9967)}}.snow:nth-child(51){opacity:1.7522;transform:translate(56.8998vw,-10px) scale(.0315);animation:fall-51 28s -9s linear infinite}@keyframes fall-51{64.098%{transform:translate(54.495vw,64.098vh) scale(.0315)}to{transform:translate(55.6974vw,99vh) scale(.0315)}}.snow:nth-child(52){opacity:1.5368;transform:translate(36.8545vw,-10px) scale(.1981);animation:fall-52 10s -18s linear infinite}@keyframes fall-52{59.346%{transform:translate(34.1469vw,59.346vh) scale(.1981)}to{transform:translate(35.5007vw,99vh) scale(.1981)}}.snow:nth-child(53){opacity:.7978;transform:translate(35.7177vw,-10px) scale(.4151);animation:fall-53 29s -15s linear infinite}@keyframes fall-53{57.695%{transform:translate(28.3313vw,57.695vh) scale(.4151)}to{transform:translate(32.0245vw,99vh) scale(.4151)}}.snow:nth-child(54){opacity:.1316;transform:translate(.3751vw,-10px) scale(.96);animation:fall-54 17s -16s linear infinite}@keyframes fall-54{32.919%{transform:translate(.4523vw,32.919vh) scale(.96)}to{transform:translate(.4137vw,99vh) scale(.96)}}.snow:nth-child(55){opacity:1.1102;transform:translate(24.1156vw,-10px) scale(.0657);animation:fall-55 11s -2s linear infinite}@keyframes fall-55{45.44%{transform:translate(24.001vw,45.44vh) scale(.0657)}to{transform:translate(24.0583vw,99vh) scale(.0657)}}.snow:nth-child(56){opacity:1.2994;transform:translate(7.0105vw,-10px) scale(.8198);animation:fall-56 25s -19s linear infinite}@keyframes fall-56{78.613%{transform:translate(16.248vw,78.613vh) scale(.8198)}to{transform:translate(11.62925vw,99vh) scale(.8198)}}.snow:nth-child(57){opacity:1.1408;transform:translate(12.6304vw,-10px) scale(.9767);animation:fall-57 25s -27s linear infinite}@keyframes fall-57{41.631%{transform:translate(14.7302vw,41.631vh) scale(.9767)}to{transform:translate(13.6803vw,99vh) scale(.9767)}}.snow:nth-child(58){opacity:.7492;transform:translate(63.845vw,-10px) scale(.6153);animation:fall-58 28s -11s linear infinite}@keyframes fall-58{42.413%{transform:translate(58.8917vw,42.413vh) scale(.6153)}to{transform:translate(61.36835vw,99vh) scale(.6153)}}.snow:nth-child(59){opacity:1.6978;transform:translate(74.747vw,-10px) scale(.7455);animation:fall-59 23s -4s linear infinite}@keyframes fall-59{43.412%{transform:translate(78.0219vw,43.412vh) scale(.7455)}to{transform:translate(76.38445vw,99vh) scale(.7455)}}.snow:nth-child(60){opacity:.0448;transform:translate(63.4596vw,-10px) scale(.5031);animation:fall-60 20s -10s linear infinite}@keyframes fall-60{64.186%{transform:translate(62.8873vw,64.186vh) scale(.5031)}to{transform:translate(63.17345vw,99vh) scale(.5031)}}.snow:nth-child(61){opacity:.236;transform:translate(54.8758vw,-10px) scale(.5685);animation:fall-61 30s -25s linear infinite}@keyframes fall-61{58.043%{transform:translate(62.2563vw,58.043vh) scale(.5685)}to{transform:translate(58.56605vw,99vh) scale(.5685)}}.snow:nth-child(62){opacity:1.311;transform:translate(28.522vw,-10px) scale(.2663);animation:fall-62 15s -9s linear infinite}@keyframes fall-62{59.43%{transform:translate(31.5621vw,59.43vh) scale(.2663)}to{transform:translate(30.04205vw,99vh) scale(.2663)}}.snow:nth-child(63){opacity:.5466;transform:translate(57.7177vw,-10px) scale(.3554);animation:fall-63 14s -4s linear infinite}@keyframes fall-63{37.359%{transform:translate(51.1056vw,37.359vh) scale(.3554)}to{transform:translate(54.41165vw,99vh) scale(.3554)}}.snow:nth-child(64){opacity:.774;transform:translate(60.5792vw,-10px) scale(.069);animation:fall-64 26s -5s linear infinite}@keyframes fall-64{44.232%{transform:translate(65.2329vw,44.232vh) scale(.069)}to{transform:translate(62.90605vw,99vh) scale(.069)}}.snow:nth-child(65){opacity:1.407;transform:translate(35.6385vw,-10px) scale(.7243);animation:fall-65 30s -27s linear infinite}@keyframes fall-65{38.288%{transform:translate(34.4776vw,38.288vh) scale(.7243)}to{transform:translate(35.05805vw,99vh) scale(.7243)}}.snow:nth-child(66){opacity:.981;transform:translate(24.3081vw,-10px) scale(.8236);animation:fall-66 25s -24s linear infinite}@keyframes fall-66{61.907%{transform:translate(29.0193vw,61.907vh) scale(.8236)}to{transform:translate(26.6637vw,99vh) scale(.8236)}}.snow:nth-child(67){opacity:1.8818;transform:translate(28.1162vw,-10px) scale(.3189);animation:fall-67 21s -12s linear infinite}@keyframes fall-67{48.612%{transform:translate(20.5983vw,48.612vh) scale(.3189)}to{transform:translate(24.35725vw,99vh) scale(.3189)}}.snow:nth-child(68){opacity:1.9488;transform:translate(58.4041vw,-10px) scale(.2422);animation:fall-68 18s -8s linear infinite}@keyframes fall-68{65.856%{transform:translate(59.2791vw,65.856vh) scale(.2422)}to{transform:translate(58.8416vw,99vh) scale(.2422)}}.snow:nth-child(69){opacity:.683;transform:translate(13.8661vw,-10px) scale(.7362);animation:fall-69 25s -1s linear infinite}@keyframes fall-69{56.854%{transform:translate(11.0763vw,56.854vh) scale(.7362)}to{transform:translate(12.4712vw,99vh) scale(.7362)}}.snow:nth-child(70){opacity:1.6532;transform:translate(60.107vw,-10px) scale(.3496);animation:fall-70 19s -27s linear infinite}@keyframes fall-70{43.262%{transform:translate(52.227vw,43.262vh) scale(.3496)}to{transform:translate(56.167vw,99vh) scale(.3496)}}.snow:nth-child(71){opacity:1.4742;transform:translate(44.7413vw,-10px) scale(.9246);animation:fall-71 25s -5s linear infinite}@keyframes fall-71{66.801%{transform:translate(44.1277vw,66.801vh) scale(.9246)}to{transform:translate(44.4345vw,99vh) scale(.9246)}}.snow:nth-child(72){opacity:1.4948;transform:translate(67.0887vw,-10px) scale(.2365);animation:fall-72 25s -29s linear infinite}@keyframes fall-72{76.507%{transform:translate(59.2307vw,76.507vh) scale(.2365)}to{transform:translate(63.1597vw,99vh) scale(.2365)}}.snow:nth-child(73){opacity:.9884;transform:translate(30.4592vw,-10px) scale(.051);animation:fall-73 18s -25s linear infinite}@keyframes fall-73{66.531%{transform:translate(20.8186vw,66.531vh) scale(.051)}to{transform:translate(25.6389vw,99vh) scale(.051)}}.snow:nth-child(74){opacity:.5156;transform:translate(.7132vw,-10px) scale(.1028);animation:fall-74 17s -10s linear infinite}@keyframes fall-74{63.053%{transform:translate(-7.3351vw,63.053vh) scale(.1028)}to{transform:translate(-3.31095vw,99vh) scale(.1028)}}.snow:nth-child(75){opacity:1.799;transform:translate(6.7882vw,-10px) scale(.7993);animation:fall-75 27s -2s linear infinite}@keyframes fall-75{42.621%{transform:translate(4.6929vw,42.621vh) scale(.7993)}to{transform:translate(5.74055vw,99vh) scale(.7993)}}.snow:nth-child(76){opacity:1.439;transform:translate(42.9263vw,-10px) scale(.926);animation:fall-76 19s -6s linear infinite}@keyframes fall-76{77.705%{transform:translate(46.6828vw,77.705vh) scale(.926)}to{transform:translate(44.80455vw,99vh) scale(.926)}}.snow:nth-child(77){opacity:.7618;transform:translate(19.0476vw,-10px) scale(.5492);animation:fall-77 20s -2s linear infinite}@keyframes fall-77{32.055%{transform:translate(21.3589vw,32.055vh) scale(.5492)}to{transform:translate(20.20325vw,99vh) scale(.5492)}}.snow:nth-child(78){opacity:1.5934;transform:translate(79.6005vw,-10px) scale(.7237);animation:fall-78 17s -22s linear infinite}@keyframes fall-78{74.061%{transform:translate(71.6961vw,74.061vh) scale(.7237)}to{transform:translate(75.6483vw,99vh) scale(.7237)}}.snow:nth-child(79){opacity:1.1994;transform:translate(61.4658vw,-10px) scale(.2011);animation:fall-79 13s -26s linear infinite}@keyframes fall-79{71.557%{transform:translate(51.751vw,71.557vh) scale(.2011)}to{transform:translate(56.6084vw,99vh) scale(.2011)}}.snow:nth-child(80){opacity:.4586;transform:translate(37.0133vw,-10px) scale(.6103);animation:fall-80 13s -3s linear infinite}@keyframes fall-80{75.222%{transform:translate(43.4709vw,75.222vh) scale(.6103)}to{transform:translate(40.2421vw,99vh) scale(.6103)}}.snow:nth-child(81){opacity:.602;transform:translate(9.1613vw,-10px) scale(.7061);animation:fall-81 23s -8s linear infinite}@keyframes fall-81{77.262%{transform:translate(.621vw,77.262vh) scale(.7061)}to{transform:translate(4.89115vw,99vh) scale(.7061)}}.snow:nth-child(82){opacity:1.2874;transform:translate(89.9062vw,-10px) scale(.8933);animation:fall-82 25s -8s linear infinite}@keyframes fall-82{79.966%{transform:translate(96.1807vw,79.966vh) scale(.8933)}to{transform:translate(93.04345vw,99vh) scale(.8933)}}.snow:nth-child(83){opacity:.671;transform:translate(82.604vw,-10px) scale(.577);animation:fall-83 13s -21s linear infinite}@keyframes fall-83{42.517%{transform:translate(74.7251vw,42.517vh) scale(.577)}to{transform:translate(78.66455vw,99vh) scale(.577)}}.snow:nth-child(84){opacity:.2634;transform:translate(43.9444vw,-10px) scale(.1472);animation:fall-84 30s -12s linear infinite}@keyframes fall-84{59.524%{transform:translate(47.4383vw,59.524vh) scale(.1472)}to{transform:translate(45.69135vw,99vh) scale(.1472)}}.snow:nth-child(85){opacity:1.2798;transform:translate(45.844vw,-10px) scale(.5176);animation:fall-85 11s -4s linear infinite}@keyframes fall-85{34.051%{transform:translate(39.7325vw,34.051vh) scale(.5176)}to{transform:translate(42.78825vw,99vh) scale(.5176)}}.snow:nth-child(86){opacity:.8878;transform:translate(63.7448vw,-10px) scale(.2249);animation:fall-86 19s -7s linear infinite}@keyframes fall-86{46.708%{transform:translate(73.6066vw,46.708vh) scale(.2249)}to{transform:translate(68.6757vw,99vh) scale(.2249)}}.snow:nth-child(87){opacity:1.1006;transform:translate(86.3962vw,-10px) scale(.0042);animation:fall-87 23s -3s linear infinite}@keyframes fall-87{58.913%{transform:translate(81.8549vw,58.913vh) scale(.0042)}to{transform:translate(84.12555vw,99vh) scale(.0042)}}.snow:nth-child(88){opacity:1.29;transform:translate(27.2986vw,-10px) scale(.3619);animation:fall-88 25s -16s linear infinite}@keyframes fall-88{50.821%{transform:translate(22.7654vw,50.821vh) scale(.3619)}to{transform:translate(25.032vw,99vh) scale(.3619)}}.snow:nth-child(89){opacity:.4784;transform:translate(62.0905vw,-10px) scale(.8923);animation:fall-89 29s -7s linear infinite}@keyframes fall-89{30.304%{transform:translate(61.1324vw,30.304vh) scale(.8923)}to{transform:translate(61.61145vw,99vh) scale(.8923)}}.snow:nth-child(90){opacity:1.9762;transform:translate(42.7012vw,-10px) scale(.1239);animation:fall-90 16s -14s linear infinite}@keyframes fall-90{69.918%{transform:translate(46.7385vw,69.918vh) scale(.1239)}to{transform:translate(44.71985vw,99vh) scale(.1239)}}.snow:nth-child(91){opacity:1.4038;transform:translate(94.5999vw,-10px) scale(.9431);animation:fall-91 12s -22s linear infinite}@keyframes fall-91{58.751%{transform:translate(101.0733vw,58.751vh) scale(.9431)}to{transform:translate(97.8366vw,99vh) scale(.9431)}}.snow:nth-child(92){opacity:.1586;transform:translate(27.677vw,-10px) scale(.7113);animation:fall-92 20s -15s linear infinite}@keyframes fall-92{62.429%{transform:translate(19.5432vw,62.429vh) scale(.7113)}to{transform:translate(23.6101vw,99vh) scale(.7113)}}.snow:nth-child(93){opacity:1.8616;transform:translate(99.3677vw,-10px) scale(.8768);animation:fall-93 24s -1s linear infinite}@keyframes fall-93{35.291%{transform:translate(108.6179vw,35.291vh) scale(.8768)}to{transform:translate(103.9928vw,99vh) scale(.8768)}}.snow:nth-child(94){opacity:1.8566;transform:translate(60.9271vw,-10px) scale(.8664);animation:fall-94 22s -25s linear infinite}@keyframes fall-94{37.499%{transform:translate(65.2564vw,37.499vh) scale(.8664)}to{transform:translate(63.09175vw,99vh) scale(.8664)}}.snow:nth-child(95){opacity:.2796;transform:translate(27.1426vw,-10px) scale(.8829);animation:fall-95 14s -16s linear infinite}@keyframes fall-95{69.666%{transform:translate(19.3112vw,69.666vh) scale(.8829)}to{transform:translate(23.2269vw,99vh) scale(.8829)}}.snow:nth-child(96){opacity:.5228;transform:translate(74.6373vw,-10px) scale(.1548);animation:fall-96 10s -14s linear infinite}@keyframes fall-96{65.436%{transform:translate(84.3037vw,65.436vh) scale(.1548)}to{transform:translate(79.4705vw,99vh) scale(.1548)}}.snow:nth-child(97){opacity:1.4898;transform:translate(28.2607vw,-10px) scale(.3378);animation:fall-97 25s -17s linear infinite}@keyframes fall-97{46.43%{transform:translate(28.9597vw,46.43vh) scale(.3378)}to{transform:translate(28.6102vw,99vh) scale(.3378)}}.snow:nth-child(98){opacity:1.3456;transform:translate(29.5641vw,-10px) scale(.9737);animation:fall-98 28s -15s linear infinite}@keyframes fall-98{48.913%{transform:translate(31.6731vw,48.913vh) scale(.9737)}to{transform:translate(30.6186vw,99vh) scale(.9737)}}.snow:nth-child(99){opacity:1.8308;transform:translate(39.9052vw,-10px) scale(.0484);animation:fall-99 25s -20s linear infinite}@keyframes fall-99{62.717%{transform:translate(44.2953vw,62.717vh) scale(.0484)}to{transform:translate(42.10025vw,99vh) scale(.0484)}}.snow:nth-child(100){opacity:1.7164;transform:translate(27.5252vw,-10px) scale(.5625);animation:fall-100 19s -12s linear infinite}@keyframes fall-100{77.278%{transform:translate(19.8055vw,77.278vh) scale(.5625)}to{transform:translate(23.66535vw,99vh) scale(.5625)}}.snow:nth-child(101){opacity:.4328;transform:translate(26.6959vw,-10px) scale(.0973);animation:fall-101 14s -15s linear infinite}@keyframes fall-101{47.853%{transform:translate(32.3803vw,47.853vh) scale(.0973)}to{transform:translate(29.5381vw,99vh) scale(.0973)}}.snow:nth-child(102){opacity:1.4338;transform:translate(11.6658vw,-10px) scale(.1319);animation:fall-102 17s -16s linear infinite}@keyframes fall-102{65.391%{transform:translate(3.1045vw,65.391vh) scale(.1319)}to{transform:translate(7.38515vw,99vh) scale(.1319)}}.snow:nth-child(103){opacity:.1466;transform:translate(99.1662vw,-10px) scale(.7389);animation:fall-103 15s -29s linear infinite}@keyframes fall-103{52.326%{transform:translate(103.7424vw,52.326vh) scale(.7389)}to{transform:translate(101.4543vw,99vh) scale(.7389)}}.snow:nth-child(104){opacity:.8972;transform:translate(72.6178vw,-10px) scale(.7049);animation:fall-104 27s -10s linear infinite}@keyframes fall-104{64.693%{transform:translate(69.6893vw,64.693vh) scale(.7049)}to{transform:translate(71.15355vw,99vh) scale(.7049)}}.snow:nth-child(105){opacity:1.0528;transform:translate(97.1272vw,-10px) scale(.9249);animation:fall-105 27s -12s linear infinite}@keyframes fall-105{75.019%{transform:translate(93.9183vw,75.019vh) scale(.9249)}to{transform:translate(95.52275vw,99vh) scale(.9249)}}.snow:nth-child(106){opacity:.4946;transform:translate(81.6121vw,-10px) scale(.8241);animation:fall-106 30s -7s linear infinite}@keyframes fall-106{78.222%{transform:translate(81.9832vw,78.222vh) scale(.8241)}to{transform:translate(81.79765vw,99vh) scale(.8241)}}.snow:nth-child(107){opacity:1.0042;transform:translate(19.9764vw,-10px) scale(.3533);animation:fall-107 16s -29s linear infinite}@keyframes fall-107{75.934%{transform:translate(24.3631vw,75.934vh) scale(.3533)}to{transform:translate(22.16975vw,99vh) scale(.3533)}}.snow:nth-child(108){opacity:.9024;transform:translate(48.1231vw,-10px) scale(.8809);animation:fall-108 13s -24s linear infinite}@keyframes fall-108{70.824%{transform:translate(48.0719vw,70.824vh) scale(.8809)}to{transform:translate(48.0975vw,99vh) scale(.8809)}}.snow:nth-child(109){opacity:.6272;transform:translate(77.9489vw,-10px) scale(.8889);animation:fall-109 19s -10s linear infinite}@keyframes fall-109{75.539%{transform:translate(85.3658vw,75.539vh) scale(.8889)}to{transform:translate(81.65735vw,99vh) scale(.8889)}}.snow:nth-child(110){opacity:.2762;transform:translate(78.2205vw,-10px) scale(.0524);animation:fall-110 21s -30s linear infinite}@keyframes fall-110{69.133%{transform:translate(70.3699vw,69.133vh) scale(.0524)}to{transform:translate(74.2952vw,99vh) scale(.0524)}}.snow:nth-child(111){opacity:1.05;transform:translate(24.4739vw,-10px) scale(.4252);animation:fall-111 19s -14s linear infinite}@keyframes fall-111{51.107%{transform:translate(17.1721vw,51.107vh) scale(.4252)}to{transform:translate(20.823vw,99vh) scale(.4252)}}.snow:nth-child(112){opacity:1.9122;transform:translate(8.6537vw,-10px) scale(.7225);animation:fall-112 16s -15s linear infinite}@keyframes fall-112{73.098%{transform:translate(18.4161vw,73.098vh) scale(.7225)}to{transform:translate(13.5349vw,99vh) scale(.7225)}}.snow:nth-child(113){opacity:.0952;transform:translate(50.4232vw,-10px) scale(.7682);animation:fall-113 25s -28s linear infinite}@keyframes fall-113{71.504%{transform:translate(53.532vw,71.504vh) scale(.7682)}to{transform:translate(51.9776vw,99vh) scale(.7682)}}.snow:nth-child(114){opacity:1.3144;transform:translate(60.2446vw,-10px) scale(.3205);animation:fall-114 13s -17s linear infinite}@keyframes fall-114{62.34%{transform:translate(69.1469vw,62.34vh) scale(.3205)}to{transform:translate(64.69575vw,99vh) scale(.3205)}}.snow:nth-child(115){opacity:1.0926;transform:translate(20.6889vw,-10px) scale(.4645);animation:fall-115 30s -28s linear infinite}@keyframes fall-115{51.86%{transform:translate(18.8122vw,51.86vh) scale(.4645)}to{transform:translate(19.75055vw,99vh) scale(.4645)}}.snow:nth-child(116){opacity:.2826;transform:translate(52.6328vw,-10px) scale(.9876);animation:fall-116 27s -17s linear infinite}@keyframes fall-116{76.26%{transform:translate(60.1152vw,76.26vh) scale(.9876)}to{transform:translate(56.374vw,99vh) scale(.9876)}}.snow:nth-child(117){opacity:.5524;transform:translate(84.1378vw,-10px) scale(.8688);animation:fall-117 11s -16s linear infinite}@keyframes fall-117{51.618%{transform:translate(76.1549vw,51.618vh) scale(.8688)}to{transform:translate(80.14635vw,99vh) scale(.8688)}}.snow:nth-child(118){opacity:.897;transform:translate(87.6587vw,-10px) scale(.9391);animation:fall-118 18s -1s linear infinite}@keyframes fall-118{32.826%{transform:translate(83.3068vw,32.826vh) scale(.9391)}to{transform:translate(85.48275vw,99vh) scale(.9391)}}.snow:nth-child(119){opacity:1.1312;transform:translate(79.4561vw,-10px) scale(.299);animation:fall-119 27s -20s linear infinite}@keyframes fall-119{49.522%{transform:translate(89.2018vw,49.522vh) scale(.299)}to{transform:translate(84.32895vw,99vh) scale(.299)}}.snow:nth-child(120){opacity:1.7848;transform:translate(80.747vw,-10px) scale(.441);animation:fall-120 27s -30s linear infinite}@keyframes fall-120{52.982%{transform:translate(72.0516vw,52.982vh) scale(.441)}to{transform:translate(76.3993vw,99vh) scale(.441)}}.snow:nth-child(121){opacity:.1016;transform:translate(44.2151vw,-10px) scale(.8288);animation:fall-121 15s -1s linear infinite}@keyframes fall-121{36.768%{transform:translate(47.7487vw,36.768vh) scale(.8288)}to{transform:translate(45.9819vw,99vh) scale(.8288)}}.snow:nth-child(122){opacity:1.426;transform:translate(21.7275vw,-10px) scale(.205);animation:fall-122 20s -25s linear infinite}@keyframes fall-122{32.363%{transform:translate(13.46vw,32.363vh) scale(.205)}to{transform:translate(17.59375vw,99vh) scale(.205)}}.snow:nth-child(123){opacity:.3246;transform:translate(89.6038vw,-10px) scale(.505);animation:fall-123 24s -5s linear infinite}@keyframes fall-123{32.889%{transform:translate(81.6104vw,32.889vh) scale(.505)}to{transform:translate(85.6071vw,99vh) scale(.505)}}.snow:nth-child(124){opacity:1.5594;transform:translate(64.2749vw,-10px) scale(.9001);animation:fall-124 22s -5s linear infinite}@keyframes fall-124{48.942%{transform:translate(66.721vw,48.942vh) scale(.9001)}to{transform:translate(65.49795vw,99vh) scale(.9001)}}.snow:nth-child(125){opacity:1.3966;transform:translate(52.5308vw,-10px) scale(.5521);animation:fall-125 24s -2s linear infinite}@keyframes fall-125{33.684%{transform:translate(46.3988vw,33.684vh) scale(.5521)}to{transform:translate(49.4648vw,99vh) scale(.5521)}}.snow:nth-child(126){opacity:.5288;transform:translate(6.0402vw,-10px) scale(.8623);animation:fall-126 29s -18s linear infinite}@keyframes fall-126{67.465%{transform:translate(3.7452vw,67.465vh) scale(.8623)}to{transform:translate(4.8927vw,99vh) scale(.8623)}}.snow:nth-child(127){opacity:.878;transform:translate(87.8915vw,-10px) scale(.8056);animation:fall-127 29s -27s linear infinite}@keyframes fall-127{41.452%{transform:translate(87.4702vw,41.452vh) scale(.8056)}to{transform:translate(87.68085vw,99vh) scale(.8056)}}.snow:nth-child(128){opacity:1.3578;transform:translate(32.5545vw,-10px) scale(.0675);animation:fall-128 15s -23s linear infinite}@keyframes fall-128{43.978%{transform:translate(31.4299vw,43.978vh) scale(.0675)}to{transform:translate(31.9922vw,99vh) scale(.0675)}}.snow:nth-child(129){opacity:1.1742;transform:translate(65.6769vw,-10px) scale(.6747);animation:fall-129 16s -6s linear infinite}@keyframes fall-129{45.833%{transform:translate(74.5572vw,45.833vh) scale(.6747)}to{transform:translate(70.11705vw,99vh) scale(.6747)}}.snow:nth-child(130){opacity:.5432;transform:translate(93.9418vw,-10px) scale(.9998);animation:fall-130 14s -28s linear infinite}@keyframes fall-130{43.029%{transform:translate(94.6123vw,43.029vh) scale(.9998)}to{transform:translate(94.27705vw,99vh) scale(.9998)}}.snow:nth-child(131){opacity:1.6182;transform:translate(87.7963vw,-10px) scale(.7431);animation:fall-131 28s -26s linear infinite}@keyframes fall-131{37.568%{transform:translate(85.7674vw,37.568vh) scale(.7431)}to{transform:translate(86.78185vw,99vh) scale(.7431)}}.snow:nth-child(132){opacity:1.3418;transform:translate(37.7151vw,-10px) scale(.7265);animation:fall-132 27s -17s linear infinite}@keyframes fall-132{45.152%{transform:translate(37.3967vw,45.152vh) scale(.7265)}to{transform:translate(37.5559vw,99vh) scale(.7265)}}.snow:nth-child(133){opacity:1.1242;transform:translate(14.646vw,-10px) scale(.6966);animation:fall-133 11s -30s linear infinite}@keyframes fall-133{74.267%{transform:translate(15.4087vw,74.267vh) scale(.6966)}to{transform:translate(15.02735vw,99vh) scale(.6966)}}.snow:nth-child(134){opacity:1.899;transform:translate(31.9707vw,-10px) scale(.7905);animation:fall-134 12s -17s linear infinite}@keyframes fall-134{33.976%{transform:translate(22.4803vw,33.976vh) scale(.7905)}to{transform:translate(27.2255vw,99vh) scale(.7905)}}.snow:nth-child(135){opacity:1.8428;transform:translate(32.9559vw,-10px) scale(.7646);animation:fall-135 29s -5s linear infinite}@keyframes fall-135{31.716%{transform:translate(24.7675vw,31.716vh) scale(.7646)}to{transform:translate(28.8617vw,99vh) scale(.7646)}}.snow:nth-child(136){opacity:.0754;transform:translate(64.0529vw,-10px) scale(.7944);animation:fall-136 22s -25s linear infinite}@keyframes fall-136{67.328%{transform:translate(65.1636vw,67.328vh) scale(.7944)}to{transform:translate(64.60825vw,99vh) scale(.7944)}}.snow:nth-child(137){opacity:1.4662;transform:translate(.1987vw,-10px) scale(.8252);animation:fall-137 27s -29s linear infinite}@keyframes fall-137{71.729%{transform:translate(-2.1496vw,71.729vh) scale(.8252)}to{transform:translate(-.97545vw,99vh) scale(.8252)}}.snow:nth-child(138){opacity:.773;transform:translate(1.6464vw,-10px) scale(.1388);animation:fall-138 19s -12s linear infinite}@keyframes fall-138{62.292%{transform:translate(4.9477vw,62.292vh) scale(.1388)}to{transform:translate(3.29705vw,99vh) scale(.1388)}}.snow:nth-child(139){opacity:1.5832;transform:translate(62.1306vw,-10px) scale(.0902);animation:fall-139 23s -11s linear infinite}@keyframes fall-139{60.396%{transform:translate(69.2452vw,60.396vh) scale(.0902)}to{transform:translate(65.6879vw,99vh) scale(.0902)}}.snow:nth-child(140){opacity:1.3236;transform:translate(41.4933vw,-10px) scale(.066);animation:fall-140 14s -29s linear infinite}@keyframes fall-140{59.524%{transform:translate(34.4931vw,59.524vh) scale(.066)}to{transform:translate(37.9932vw,99vh) scale(.066)}}.snow:nth-child(141){opacity:1.902;transform:translate(96.2268vw,-10px) scale(.8556);animation:fall-141 13s -28s linear infinite}@keyframes fall-141{54.631%{transform:translate(106.1539vw,54.631vh) scale(.8556)}to{transform:translate(101.19035vw,99vh) scale(.8556)}}.snow:nth-child(142){opacity:1.5002;transform:translate(49.0653vw,-10px) scale(.9424);animation:fall-142 11s -19s linear infinite}@keyframes fall-142{37.213%{transform:translate(44.4779vw,37.213vh) scale(.9424)}to{transform:translate(46.7716vw,99vh) scale(.9424)}}.snow:nth-child(143){opacity:1.679;transform:translate(39.0599vw,-10px) scale(.4178);animation:fall-143 20s -24s linear infinite}@keyframes fall-143{62.558%{transform:translate(40.18vw,62.558vh) scale(.4178)}to{transform:translate(39.61995vw,99vh) scale(.4178)}}.snow:nth-child(144){opacity:1.6396;transform:translate(40.8366vw,-10px) scale(.5155);animation:fall-144 11s -2s linear infinite}@keyframes fall-144{72.696%{transform:translate(48.6258vw,72.696vh) scale(.5155)}to{transform:translate(44.7312vw,99vh) scale(.5155)}}.snow:nth-child(145){opacity:1.9802;transform:translate(6.4091vw,-10px) scale(.2043);animation:fall-145 28s -2s linear infinite}@keyframes fall-145{65.23%{transform:translate(1.9991vw,65.23vh) scale(.2043)}to{transform:translate(4.2041vw,99vh) scale(.2043)}}.snow:nth-child(146){opacity:.9818;transform:translate(83.6064vw,-10px) scale(.3026);animation:fall-146 22s -20s linear infinite}@keyframes fall-146{75.939%{transform:translate(91.6798vw,75.939vh) scale(.3026)}to{transform:translate(87.6431vw,99vh) scale(.3026)}}.snow:nth-child(147){opacity:.861;transform:translate(46.191vw,-10px) scale(.424);animation:fall-147 25s -23s linear infinite}@keyframes fall-147{31.973%{transform:translate(42.3585vw,31.973vh) scale(.424)}to{transform:translate(44.27475vw,99vh) scale(.424)}}.snow:nth-child(148){opacity:.186;transform:translate(31.4934vw,-10px) scale(.0021);animation:fall-148 11s -19s linear infinite}@keyframes fall-148{60.781%{transform:translate(34.6087vw,60.781vh) scale(.0021)}to{transform:translate(33.05105vw,99vh) scale(.0021)}}.snow:nth-child(149){opacity:.0738;transform:translate(87.7359vw,-10px) scale(.7185);animation:fall-149 28s -22s linear infinite}@keyframes fall-149{46.911%{transform:translate(86.3146vw,46.911vh) scale(.7185)}to{transform:translate(87.02525vw,99vh) scale(.7185)}}.snow:nth-child(150){opacity:1.6004;transform:translate(20.6279vw,-10px) scale(.8687);animation:fall-150 17s -6s linear infinite}@keyframes fall-150{79.041%{transform:translate(24.6369vw,79.041vh) scale(.8687)}to{transform:translate(22.6324vw,99vh) scale(.8687)}}.snow:nth-child(151){opacity:1.7018;transform:translate(67.4728vw,-10px) scale(.553);animation:fall-151 22s -11s linear infinite}@keyframes fall-151{63.849%{transform:translate(66.5754vw,63.849vh) scale(.553)}to{transform:translate(67.0241vw,99vh) scale(.553)}}.snow:nth-child(152){opacity:.6266;transform:translate(33.681vw,-10px) scale(.2397);animation:fall-152 13s -25s linear infinite}@keyframes fall-152{36.301%{transform:translate(32.9443vw,36.301vh) scale(.2397)}to{transform:translate(33.31265vw,99vh) scale(.2397)}}.snow:nth-child(153){opacity:.0032;transform:translate(43.0526vw,-10px) scale(.8167);animation:fall-153 29s -8s linear infinite}@keyframes fall-153{61.099%{transform:translate(36.0129vw,61.099vh) scale(.8167)}to{transform:translate(39.53275vw,99vh) scale(.8167)}}.snow:nth-child(154){opacity:.6756;transform:translate(25.1953vw,-10px) scale(.7519);animation:fall-154 15s -20s linear infinite}@keyframes fall-154{72.809%{transform:translate(16.1849vw,72.809vh) scale(.7519)}to{transform:translate(20.6901vw,99vh) scale(.7519)}}.snow:nth-child(155){opacity:1.9778;transform:translate(67.1052vw,-10px) scale(.7519);animation:fall-155 20s -7s linear infinite}@keyframes fall-155{73.61%{transform:translate(74.0074vw,73.61vh) scale(.7519)}to{transform:translate(70.5563vw,99vh) scale(.7519)}}.snow:nth-child(156){opacity:1.4374;transform:translate(53.2926vw,-10px) scale(.599);animation:fall-156 25s -8s linear infinite}@keyframes fall-156{51.17%{transform:translate(46.4149vw,51.17vh) scale(.599)}to{transform:translate(49.85375vw,99vh) scale(.599)}}.snow:nth-child(157){opacity:1.847;transform:translate(56.5085vw,-10px) scale(.5738);animation:fall-157 19s -1s linear infinite}@keyframes fall-157{64.631%{transform:translate(61.9209vw,64.631vh) scale(.5738)}to{transform:translate(59.2147vw,99vh) scale(.5738)}}.snow:nth-child(158){opacity:.2892;transform:translate(1.385vw,-10px) scale(.9926);animation:fall-158 24s -9s linear infinite}@keyframes fall-158{33.009%{transform:translate(7.9216vw,33.009vh) scale(.9926)}to{transform:translate(4.6533vw,99vh) scale(.9926)}}.snow:nth-child(159){opacity:1.2072;transform:translate(11.2912vw,-10px) scale(.6805);animation:fall-159 18s -29s linear infinite}@keyframes fall-159{73.072%{transform:translate(10.3836vw,73.072vh) scale(.6805)}to{transform:translate(10.8374vw,99vh) scale(.6805)}}.snow:nth-child(160){opacity:1.29;transform:translate(72.1592vw,-10px) scale(.2789);animation:fall-160 19s -10s linear infinite}@keyframes fall-160{76.383%{transform:translate(79.1848vw,76.383vh) scale(.2789)}to{transform:translate(75.672vw,99vh) scale(.2789)}}.snow:nth-child(161){opacity:.2514;transform:translate(76.0486vw,-10px) scale(.4909);animation:fall-161 28s -17s linear infinite}@keyframes fall-161{34.877%{transform:translate(72.1vw,34.877vh) scale(.4909)}to{transform:translate(74.0743vw,99vh) scale(.4909)}}.snow:nth-child(162){opacity:.9614;transform:translate(86.2088vw,-10px) scale(.2531);animation:fall-162 20s -2s linear infinite}@keyframes fall-162{68.5%{transform:translate(83.3211vw,68.5vh) scale(.2531)}to{transform:translate(84.76495vw,99vh) scale(.2531)}}.snow:nth-child(163){opacity:1.7746;transform:translate(19.6083vw,-10px) scale(.1921);animation:fall-163 20s -22s linear infinite}@keyframes fall-163{66.27%{transform:translate(15.6876vw,66.27vh) scale(.1921)}to{transform:translate(17.64795vw,99vh) scale(.1921)}}.snow:nth-child(164){opacity:.1706;transform:translate(99.9647vw,-10px) scale(.3448);animation:fall-164 29s -20s linear infinite}@keyframes fall-164{42.877%{transform:translate(95.6893vw,42.877vh) scale(.3448)}to{transform:translate(97.827vw,99vh) scale(.3448)}}.snow:nth-child(165){opacity:1.128;transform:translate(91.2788vw,-10px) scale(.9389);animation:fall-165 12s -22s linear infinite}@keyframes fall-165{78.291%{transform:translate(85.8145vw,78.291vh) scale(.9389)}to{transform:translate(88.54665vw,99vh) scale(.9389)}}.snow:nth-child(166){opacity:.9876;transform:translate(24.2863vw,-10px) scale(.6689);animation:fall-166 28s -13s linear infinite}@keyframes fall-166{69.606%{transform:translate(25.6349vw,69.606vh) scale(.6689)}to{transform:translate(24.9606vw,99vh) scale(.6689)}}.snow:nth-child(167){opacity:1.9428;transform:translate(3.5645vw,-10px) scale(.0439);animation:fall-167 16s -27s linear infinite}@keyframes fall-167{68.323%{transform:translate(-1.4498vw,68.323vh) scale(.0439)}to{transform:translate(1.05735vw,99vh) scale(.0439)}}.snow:nth-child(168){opacity:1.465;transform:translate(95.8371vw,-10px) scale(.0786);animation:fall-168 12s -26s linear infinite}@keyframes fall-168{60.96%{transform:translate(104.7488vw,60.96vh) scale(.0786)}to{transform:translate(100.29295vw,99vh) scale(.0786)}}.snow:nth-child(169){opacity:.804;transform:translate(27.4275vw,-10px) scale(.4772);animation:fall-169 14s -2s linear infinite}@keyframes fall-169{55.083%{transform:translate(22.1604vw,55.083vh) scale(.4772)}to{transform:translate(24.79395vw,99vh) scale(.4772)}}.snow:nth-child(170){opacity:.0672;transform:translate(5.3465vw,-10px) scale(.4681);animation:fall-170 16s -24s linear infinite}@keyframes fall-170{37.203%{transform:translate(-3.5428vw,37.203vh) scale(.4681)}to{transform:translate(.90185vw,99vh) scale(.4681)}}.snow:nth-child(171){opacity:1.2498;transform:translate(73.9812vw,-10px) scale(.386);animation:fall-171 23s -11s linear infinite}@keyframes fall-171{58.576%{transform:translate(77.8876vw,58.576vh) scale(.386)}to{transform:translate(75.9344vw,99vh) scale(.386)}}.snow:nth-child(172){opacity:1.2044;transform:translate(14.7691vw,-10px) scale(.9622);animation:fall-172 20s -3s linear infinite}@keyframes fall-172{34.206%{transform:translate(10.0454vw,34.206vh) scale(.9622)}to{transform:translate(12.40725vw,99vh) scale(.9622)}}.snow:nth-child(173){opacity:1.0708;transform:translate(39.6113vw,-10px) scale(.5488);animation:fall-173 17s -2s linear infinite}@keyframes fall-173{43.055%{transform:translate(49.1037vw,43.055vh) scale(.5488)}to{transform:translate(44.3575vw,99vh) scale(.5488)}}.snow:nth-child(174){opacity:1.0942;transform:translate(3.2225vw,-10px) scale(.8644);animation:fall-174 17s -23s linear infinite}@keyframes fall-174{73.362%{transform:translate(12.1196vw,73.362vh) scale(.8644)}to{transform:translate(7.67105vw,99vh) scale(.8644)}}.snow:nth-child(175){opacity:1.2084;transform:translate(65.0394vw,-10px) scale(.9708);animation:fall-175 12s -6s linear infinite}@keyframes fall-175{39.579%{transform:translate(58.028vw,39.579vh) scale(.9708)}to{transform:translate(61.5337vw,99vh) scale(.9708)}}.snow:nth-child(176){opacity:1.7526;transform:translate(91.3522vw,-10px) scale(.6678);animation:fall-176 27s -29s linear infinite}@keyframes fall-176{79.261%{transform:translate(95.1573vw,79.261vh) scale(.6678)}to{transform:translate(93.25475vw,99vh) scale(.6678)}}.snow:nth-child(177){opacity:1.9838;transform:translate(98.5778vw,-10px) scale(.8522);animation:fall-177 24s -25s linear infinite}@keyframes fall-177{69.949%{transform:translate(94.0415vw,69.949vh) scale(.8522)}to{transform:translate(96.30965vw,99vh) scale(.8522)}}.snow:nth-child(178){opacity:1.8112;transform:translate(19.0679vw,-10px) scale(.3117);animation:fall-178 19s -30s linear infinite}@keyframes fall-178{57.276%{transform:translate(27.608vw,57.276vh) scale(.3117)}to{transform:translate(23.33795vw,99vh) scale(.3117)}}.snow:nth-child(179){opacity:.9966;transform:translate(54.5772vw,-10px) scale(.8828);animation:fall-179 17s -4s linear infinite}@keyframes fall-179{64.242%{transform:translate(61.1715vw,64.242vh) scale(.8828)}to{transform:translate(57.87435vw,99vh) scale(.8828)}}.snow:nth-child(180){opacity:.6072;transform:translate(47.0152vw,-10px) scale(.4945);animation:fall-180 19s -27s linear infinite}@keyframes fall-180{40.749%{transform:translate(54.0083vw,40.749vh) scale(.4945)}to{transform:translate(50.51175vw,99vh) scale(.4945)}}.snow:nth-child(181){opacity:1.8738;transform:translate(1.9584vw,-10px) scale(.0374);animation:fall-181 17s -17s linear infinite}@keyframes fall-181{35.81%{transform:translate(.4591vw,35.81vh) scale(.0374)}to{transform:translate(1.20875vw,99vh) scale(.0374)}}.snow:nth-child(182){opacity:1.5666;transform:translate(86.2865vw,-10px) scale(.9147);animation:fall-182 19s -19s linear infinite}@keyframes fall-182{62.067%{transform:translate(89.5827vw,62.067vh) scale(.9147)}to{transform:translate(87.9346vw,99vh) scale(.9147)}}.snow:nth-child(183){opacity:1.757;transform:translate(82.738vw,-10px) scale(.9452);animation:fall-183 10s -9s linear infinite}@keyframes fall-183{32.427%{transform:translate(77.0804vw,32.427vh) scale(.9452)}to{transform:translate(79.9092vw,99vh) scale(.9452)}}.snow:nth-child(184){opacity:.1178;transform:translate(21.5862vw,-10px) scale(.1726);animation:fall-184 30s -6s linear infinite}@keyframes fall-184{64.864%{transform:translate(20.4187vw,64.864vh) scale(.1726)}to{transform:translate(21.00245vw,99vh) scale(.1726)}}.snow:nth-child(185){opacity:.005;transform:translate(54.708vw,-10px) scale(.9493);animation:fall-185 30s -26s linear infinite}@keyframes fall-185{56.745%{transform:translate(45.6686vw,56.745vh) scale(.9493)}to{transform:translate(50.1883vw,99vh) scale(.9493)}}.snow:nth-child(186){opacity:.6672;transform:translate(42.5227vw,-10px) scale(.1123);animation:fall-186 23s -29s linear infinite}@keyframes fall-186{63.106%{transform:translate(33.0973vw,63.106vh) scale(.1123)}to{transform:translate(37.81vw,99vh) scale(.1123)}}.snow:nth-child(187){opacity:1.497;transform:translate(33.2548vw,-10px) scale(.1747);animation:fall-187 14s -12s linear infinite}@keyframes fall-187{46.052%{transform:translate(24.1031vw,46.052vh) scale(.1747)}to{transform:translate(28.67895vw,99vh) scale(.1747)}}.snow:nth-child(188){opacity:.181;transform:translate(23.0338vw,-10px) scale(.0982);animation:fall-188 15s -23s linear infinite}@keyframes fall-188{36.739%{transform:translate(24.9258vw,36.739vh) scale(.0982)}to{transform:translate(23.9798vw,99vh) scale(.0982)}}.snow:nth-child(189){opacity:.1998;transform:translate(80.8489vw,-10px) scale(.0264);animation:fall-189 14s -9s linear infinite}@keyframes fall-189{49.49%{transform:translate(90.4732vw,49.49vh) scale(.0264)}to{transform:translate(85.66105vw,99vh) scale(.0264)}}.snow:nth-child(190){opacity:1.9328;transform:translate(46.1123vw,-10px) scale(.1962);animation:fall-190 26s -27s linear infinite}@keyframes fall-190{76.762%{transform:translate(39.8342vw,76.762vh) scale(.1962)}to{transform:translate(42.97325vw,99vh) scale(.1962)}}.snow:nth-child(191){opacity:.7818;transform:translate(87.4796vw,-10px) scale(.4891);animation:fall-191 12s -5s linear infinite}@keyframes fall-191{33.411%{transform:translate(94.4868vw,33.411vh) scale(.4891)}to{transform:translate(90.9832vw,99vh) scale(.4891)}}.snow:nth-child(192){opacity:1.8426;transform:translate(95.0394vw,-10px) scale(.9313);animation:fall-192 18s -20s linear infinite}@keyframes fall-192{78.88%{transform:translate(99.4804vw,78.88vh) scale(.9313)}to{transform:translate(97.2599vw,99vh) scale(.9313)}}.snow:nth-child(193){opacity:.4164;transform:translate(21.6667vw,-10px) scale(.7568);animation:fall-193 12s -20s linear infinite}@keyframes fall-193{35.267%{transform:translate(14.7178vw,35.267vh) scale(.7568)}to{transform:translate(18.19225vw,99vh) scale(.7568)}}.snow:nth-child(194){opacity:1.7392;transform:translate(22.0705vw,-10px) scale(.5661);animation:fall-194 24s -24s linear infinite}@keyframes fall-194{67.956%{transform:translate(13.1288vw,67.956vh) scale(.5661)}to{transform:translate(17.59965vw,99vh) scale(.5661)}}.snow:nth-child(195){opacity:1.8326;transform:translate(64.4579vw,-10px) scale(.0011);animation:fall-195 21s -30s linear infinite}@keyframes fall-195{31.757%{transform:translate(62.2999vw,31.757vh) scale(.0011)}to{transform:translate(63.3789vw,99vh) scale(.0011)}}.snow:nth-child(196){opacity:.3436;transform:translate(17.2vw,-10px) scale(.7214);animation:fall-196 23s -28s linear infinite}@keyframes fall-196{67.015%{transform:translate(8.9524vw,67.015vh) scale(.7214)}to{transform:translate(13.0762vw,99vh) scale(.7214)}}.snow:nth-child(197){opacity:1.28;transform:translate(49.7704vw,-10px) scale(.3345);animation:fall-197 11s -26s linear infinite}@keyframes fall-197{41.82%{transform:translate(58.3212vw,41.82vh) scale(.3345)}to{transform:translate(54.0458vw,99vh) scale(.3345)}}.snow:nth-child(198){opacity:.5866;transform:translate(5.7121vw,-10px) scale(.4754);animation:fall-198 18s -28s linear infinite}@keyframes fall-198{31.811%{transform:translate(10.9943vw,31.811vh) scale(.4754)}to{transform:translate(8.3532vw,99vh) scale(.4754)}}.snow:nth-child(199){opacity:1.3582;transform:translate(44.7369vw,-10px) scale(.0249);animation:fall-199 16s -22s linear infinite}@keyframes fall-199{39.573%{transform:translate(39.0066vw,39.573vh) scale(.0249)}to{transform:translate(41.87175vw,99vh) scale(.0249)}}.snow:nth-child(200){opacity:1.8464;transform:translate(82.005vw,-10px) scale(.349);animation:fall-200 19s -17s linear infinite}@keyframes fall-200{69.578%{transform:translate(88.9749vw,69.578vh) scale(.349)}to{transform:translate(85.48995vw,99vh) scale(.349)}}.snow:nth-child(201){opacity:1.206;transform:translate(1.4353vw,-10px) scale(.9468);animation:fall-201 12s -29s linear infinite}@keyframes fall-201{57.618%{transform:translate(9.3879vw,57.618vh) scale(.9468)}to{transform:translate(5.4116vw,99vh) scale(.9468)}}.snow:nth-child(202){opacity:.7634;transform:translate(20.5066vw,-10px) scale(.4353);animation:fall-202 30s -14s linear infinite}@keyframes fall-202{74.138%{transform:translate(23.3705vw,74.138vh) scale(.4353)}to{transform:translate(21.93855vw,99vh) scale(.4353)}}.snow:nth-child(203){opacity:1.1954;transform:translate(34.0164vw,-10px) scale(.3175);animation:fall-203 27s -28s linear infinite}@keyframes fall-203{39.049%{transform:translate(24.8108vw,39.049vh) scale(.3175)}to{transform:translate(29.4136vw,99vh) scale(.3175)}}.snow:nth-child(204){opacity:1.8268;transform:translate(99.6165vw,-10px) scale(.1433);animation:fall-204 13s -6s linear infinite}@keyframes fall-204{48.03%{transform:translate(92.811vw,48.03vh) scale(.1433)}to{transform:translate(96.21375vw,99vh) scale(.1433)}}.snow:nth-child(205){opacity:1.5072;transform:translate(44.3872vw,-10px) scale(.2688);animation:fall-205 23s -15s linear infinite}@keyframes fall-205{40.007%{transform:translate(53.5866vw,40.007vh) scale(.2688)}to{transform:translate(48.9869vw,99vh) scale(.2688)}}.snow:nth-child(206){opacity:.9052;transform:translate(50.6517vw,-10px) scale(.5418);animation:fall-206 24s -20s linear infinite}@keyframes fall-206{34.058%{transform:translate(60.0974vw,34.058vh) scale(.5418)}to{transform:translate(55.37455vw,99vh) scale(.5418)}}.snow:nth-child(207){opacity:.8096;transform:translate(12.9365vw,-10px) scale(.18);animation:fall-207 13s -13s linear infinite}@keyframes fall-207{77.594%{transform:translate(13.486vw,77.594vh) scale(.18)}to{transform:translate(13.21125vw,99vh) scale(.18)}}.snow:nth-child(208){opacity:.2014;transform:translate(70.7132vw,-10px) scale(.2567);animation:fall-208 12s -12s linear infinite}@keyframes fall-208{60.792%{transform:translate(79.6019vw,60.792vh) scale(.2567)}to{transform:translate(75.15755vw,99vh) scale(.2567)}}.snow:nth-child(209){opacity:.3246;transform:translate(73.7781vw,-10px) scale(.11);animation:fall-209 15s -28s linear infinite}@keyframes fall-209{37.164%{transform:translate(82.4335vw,37.164vh) scale(.11)}to{transform:translate(78.1058vw,99vh) scale(.11)}}.snow:nth-child(210){opacity:.9746;transform:translate(61.6645vw,-10px) scale(.142);animation:fall-210 11s -11s linear infinite}@keyframes fall-210{69.969%{transform:translate(54.6712vw,69.969vh) scale(.142)}to{transform:translate(58.16785vw,99vh) scale(.142)}}.snow:nth-child(211){opacity:.981;transform:translate(94.907vw,-10px) scale(.9975);animation:fall-211 20s -23s linear infinite}@keyframes fall-211{55.938%{transform:translate(96.724vw,55.938vh) scale(.9975)}to{transform:translate(95.8155vw,99vh) scale(.9975)}}.snow:nth-child(212){opacity:1.4946;transform:translate(66.1248vw,-10px) scale(.7783);animation:fall-212 22s -6s linear infinite}@keyframes fall-212{55.408%{transform:translate(58.9236vw,55.408vh) scale(.7783)}to{transform:translate(62.5242vw,99vh) scale(.7783)}}.snow:nth-child(213){opacity:1.7138;transform:translate(76.4881vw,-10px) scale(.9803);animation:fall-213 13s -1s linear infinite}@keyframes fall-213{55.21%{transform:translate(85.1739vw,55.21vh) scale(.9803)}to{transform:translate(80.831vw,99vh) scale(.9803)}}.snow:nth-child(214){opacity:1.0784;transform:translate(52.8678vw,-10px) scale(.237);animation:fall-214 10s -20s linear infinite}@keyframes fall-214{44.372%{transform:translate(56.7283vw,44.372vh) scale(.237)}to{transform:translate(54.79805vw,99vh) scale(.237)}}.snow:nth-child(215){opacity:.9602;transform:translate(.2368vw,-10px) scale(.3274);animation:fall-215 11s -3s linear infinite}@keyframes fall-215{42.093%{transform:translate(4.1207vw,42.093vh) scale(.3274)}to{transform:translate(2.17875vw,99vh) scale(.3274)}}.snow:nth-child(216){opacity:.3366;transform:translate(57.8816vw,-10px) scale(.9736);animation:fall-216 21s -4s linear infinite}@keyframes fall-216{74.551%{transform:translate(59.6654vw,74.551vh) scale(.9736)}to{transform:translate(58.7735vw,99vh) scale(.9736)}}.snow:nth-child(217){opacity:.2388;transform:translate(2.2268vw,-10px) scale(.1063);animation:fall-217 25s -28s linear infinite}@keyframes fall-217{43.921%{transform:translate(9.5213vw,43.921vh) scale(.1063)}to{transform:translate(5.87405vw,99vh) scale(.1063)}}.snow:nth-child(218){opacity:1.142;transform:translate(84.7895vw,-10px) scale(.7741);animation:fall-218 14s -12s linear infinite}@keyframes fall-218{43.124%{transform:translate(94.661vw,43.124vh) scale(.7741)}to{transform:translate(89.72525vw,99vh) scale(.7741)}}.snow:nth-child(219){opacity:1.5238;transform:translate(66.9867vw,-10px) scale(.1103);animation:fall-219 29s -14s linear infinite}@keyframes fall-219{47.053%{transform:translate(59.9875vw,47.053vh) scale(.1103)}to{transform:translate(63.4871vw,99vh) scale(.1103)}}.snow:nth-child(220){opacity:1.966;transform:translate(25.0518vw,-10px) scale(.2426);animation:fall-220 18s -25s linear infinite}@keyframes fall-220{51.919%{transform:translate(33.2612vw,51.919vh) scale(.2426)}to{transform:translate(29.1565vw,99vh) scale(.2426)}}.snow:nth-child(221){opacity:1.2076;transform:translate(34.5861vw,-10px) scale(.2824);animation:fall-221 16s -22s linear infinite}@keyframes fall-221{75.601%{transform:translate(37.6695vw,75.601vh) scale(.2824)}to{transform:translate(36.1278vw,99vh) scale(.2824)}}.snow:nth-child(222){opacity:1.1838;transform:translate(87.0767vw,-10px) scale(.1423);animation:fall-222 14s -12s linear infinite}@keyframes fall-222{31.891%{transform:translate(93.7185vw,31.891vh) scale(.1423)}to{transform:translate(90.3976vw,99vh) scale(.1423)}}.snow:nth-child(223){opacity:.4218;transform:translate(7.5423vw,-10px) scale(.0916);animation:fall-223 10s -25s linear infinite}@keyframes fall-223{74.122%{transform:translate(6.1035vw,74.122vh) scale(.0916)}to{transform:translate(6.8229vw,99vh) scale(.0916)}}.snow:nth-child(224){opacity:1.9808;transform:translate(37.8739vw,-10px) scale(.6228);animation:fall-224 17s -16s linear infinite}@keyframes fall-224{63.107%{transform:translate(45.6053vw,63.107vh) scale(.6228)}to{transform:translate(41.7396vw,99vh) scale(.6228)}}.snow:nth-child(225){opacity:.8946;transform:translate(85.858vw,-10px) scale(.1);animation:fall-225 10s -11s linear infinite}@keyframes fall-225{71.041%{transform:translate(78.2193vw,71.041vh) scale(.1)}to{transform:translate(82.03865vw,99vh) scale(.1)}}.snow:nth-child(226){opacity:.7586;transform:translate(53.9797vw,-10px) scale(.5354);animation:fall-226 18s -5s linear infinite}@keyframes fall-226{32.058%{transform:translate(62.2923vw,32.058vh) scale(.5354)}to{transform:translate(58.136vw,99vh) scale(.5354)}}.snow:nth-child(227){opacity:.6376;transform:translate(87.2421vw,-10px) scale(.7422);animation:fall-227 28s -13s linear infinite}@keyframes fall-227{33.581%{transform:translate(86.4087vw,33.581vh) scale(.7422)}to{transform:translate(86.8254vw,99vh) scale(.7422)}}.snow:nth-child(228){opacity:1.3256;transform:translate(93.0166vw,-10px) scale(.2953);animation:fall-228 10s -13s linear infinite}@keyframes fall-228{54.848%{transform:translate(84.2031vw,54.848vh) scale(.2953)}to{transform:translate(88.60985vw,99vh) scale(.2953)}}.snow:nth-child(229){opacity:.0374;transform:translate(85.5322vw,-10px) scale(.9482);animation:fall-229 13s -14s linear infinite}@keyframes fall-229{40.768%{transform:translate(83.9092vw,40.768vh) scale(.9482)}to{transform:translate(84.7207vw,99vh) scale(.9482)}}.snow:nth-child(230){opacity:.4456;transform:translate(2.3653vw,-10px) scale(.4559);animation:fall-230 27s -20s linear infinite}@keyframes fall-230{78.186%{transform:translate(9.1946vw,78.186vh) scale(.4559)}to{transform:translate(5.77995vw,99vh) scale(.4559)}}.snow:nth-child(231){opacity:.4458;transform:translate(7.0532vw,-10px) scale(.7957);animation:fall-231 11s -29s linear infinite}@keyframes fall-231{40.434%{transform:translate(12.9062vw,40.434vh) scale(.7957)}to{transform:translate(9.9797vw,99vh) scale(.7957)}}.snow:nth-child(232){opacity:.5756;transform:translate(45.5589vw,-10px) scale(.843);animation:fall-232 15s -14s linear infinite}@keyframes fall-232{77.381%{transform:translate(48.1814vw,77.381vh) scale(.843)}to{transform:translate(46.87015vw,99vh) scale(.843)}}.snow:nth-child(233){opacity:.9512;transform:translate(7.0863vw,-10px) scale(.3191);animation:fall-233 28s -19s linear infinite}@keyframes fall-233{67.682%{transform:translate(2.6223vw,67.682vh) scale(.3191)}to{transform:translate(4.8543vw,99vh) scale(.3191)}}.snow:nth-child(234){opacity:.1446;transform:translate(41.0545vw,-10px) scale(.6653);animation:fall-234 14s -12s linear infinite}@keyframes fall-234{75.39%{transform:translate(38.4648vw,75.39vh) scale(.6653)}to{transform:translate(39.75965vw,99vh) scale(.6653)}}.snow:nth-child(235){opacity:.493;transform:translate(93.2853vw,-10px) scale(.7163);animation:fall-235 16s -13s linear infinite}@keyframes fall-235{77.945%{transform:translate(101.3116vw,77.945vh) scale(.7163)}to{transform:translate(97.29845vw,99vh) scale(.7163)}}.snow:nth-child(236){opacity:1.1558;transform:translate(88.413vw,-10px) scale(.1115);animation:fall-236 27s -27s linear infinite}@keyframes fall-236{37.246%{transform:translate(81.0825vw,37.246vh) scale(.1115)}to{transform:translate(84.74775vw,99vh) scale(.1115)}}.snow:nth-child(237){opacity:1.979;transform:translate(3.609vw,-10px) scale(.8941);animation:fall-237 18s -7s linear infinite}@keyframes fall-237{53.795%{transform:translate(5.2792vw,53.795vh) scale(.8941)}to{transform:translate(4.4441vw,99vh) scale(.8941)}}.snow:nth-child(238){opacity:.0456;transform:translate(32.8823vw,-10px) scale(.1653);animation:fall-238 24s -5s linear infinite}@keyframes fall-238{33.676%{transform:translate(36.7179vw,33.676vh) scale(.1653)}to{transform:translate(34.8001vw,99vh) scale(.1653)}}.snow:nth-child(239){opacity:1.5478;transform:translate(34.0167vw,-10px) scale(.3481);animation:fall-239 29s -15s linear infinite}@keyframes fall-239{43.445%{transform:translate(41.557vw,43.445vh) scale(.3481)}to{transform:translate(37.78685vw,99vh) scale(.3481)}}.snow:nth-child(240){opacity:1.3224;transform:translate(34.0582vw,-10px) scale(.0604);animation:fall-240 10s -24s linear infinite}@keyframes fall-240{63.974%{transform:translate(29.169vw,63.974vh) scale(.0604)}to{transform:translate(31.6136vw,99vh) scale(.0604)}}.snow:nth-child(241){opacity:1.3746;transform:translate(74.1828vw,-10px) scale(.5783);animation:fall-241 11s -21s linear infinite}@keyframes fall-241{44.069%{transform:translate(69.9591vw,44.069vh) scale(.5783)}to{transform:translate(72.07095vw,99vh) scale(.5783)}}.snow:nth-child(242){opacity:1.5878;transform:translate(76.5532vw,-10px) scale(.8728);animation:fall-242 15s -26s linear infinite}@keyframes fall-242{67.13%{transform:translate(67.7809vw,67.13vh) scale(.8728)}to{transform:translate(72.16705vw,99vh) scale(.8728)}}.snow:nth-child(243){opacity:1.333;transform:translate(33.8136vw,-10px) scale(.9591);animation:fall-243 18s -12s linear infinite}@keyframes fall-243{73.081%{transform:translate(28.3958vw,73.081vh) scale(.9591)}to{transform:translate(31.1047vw,99vh) scale(.9591)}}.snow:nth-child(244){opacity:1.7814;transform:translate(7.2015vw,-10px) scale(.3404);animation:fall-244 12s -21s linear infinite}@keyframes fall-244{78.187%{transform:translate(10.2289vw,78.187vh) scale(.3404)}to{transform:translate(8.7152vw,99vh) scale(.3404)}}.snow:nth-child(245){opacity:.323;transform:translate(1.8944vw,-10px) scale(.8567);animation:fall-245 28s -8s linear infinite}@keyframes fall-245{67.623%{transform:translate(.4304vw,67.623vh) scale(.8567)}to{transform:translate(1.1624vw,99vh) scale(.8567)}}.snow:nth-child(246){opacity:1.703;transform:translate(82.5164vw,-10px) scale(.17);animation:fall-246 27s -28s linear infinite}@keyframes fall-246{55.999%{transform:translate(75.7252vw,55.999vh) scale(.17)}to{transform:translate(79.1208vw,99vh) scale(.17)}}.snow:nth-child(247){opacity:1.6066;transform:translate(55.7617vw,-10px) scale(.7087);animation:fall-247 12s -13s linear infinite}@keyframes fall-247{55.834%{transform:translate(56.1461vw,55.834vh) scale(.7087)}to{transform:translate(55.9539vw,99vh) scale(.7087)}}.snow:nth-child(248){opacity:.8556;transform:translate(83.4779vw,-10px) scale(.2816);animation:fall-248 27s -13s linear infinite}@keyframes fall-248{64.998%{transform:translate(75.145vw,64.998vh) scale(.2816)}to{transform:translate(79.31145vw,99vh) scale(.2816)}}.snow:nth-child(249){opacity:1.4738;transform:translate(31.1961vw,-10px) scale(.9509);animation:fall-249 19s -9s linear infinite}@keyframes fall-249{64.548%{transform:translate(26.3103vw,64.548vh) scale(.9509)}to{transform:translate(28.7532vw,99vh) scale(.9509)}}.snow:nth-child(250){opacity:1.771;transform:translate(81.4445vw,-10px) scale(.4169);animation:fall-250 28s -20s linear infinite}@keyframes fall-250{39.381%{transform:translate(80.9402vw,39.381vh) scale(.4169)}to{transform:translate(81.19235vw,99vh) scale(.4169)}}.snow:nth-child(251){opacity:.4918;transform:translate(90.1788vw,-10px) scale(.7707);animation:fall-251 17s -10s linear infinite}@keyframes fall-251{62.208%{transform:translate(97.4481vw,62.208vh) scale(.7707)}to{transform:translate(93.81345vw,99vh) scale(.7707)}}.snow:nth-child(252){opacity:.5204;transform:translate(36.4704vw,-10px) scale(.1903);animation:fall-252 13s -28s linear infinite}@keyframes fall-252{63.219%{transform:translate(39.3523vw,63.219vh) scale(.1903)}to{transform:translate(37.91135vw,99vh) scale(.1903)}}.snow:nth-child(253){opacity:1.1204;transform:translate(34.9673vw,-10px) scale(.8391);animation:fall-253 16s -15s linear infinite}@keyframes fall-253{43.773%{transform:translate(38.1281vw,43.773vh) scale(.8391)}to{transform:translate(36.5477vw,99vh) scale(.8391)}}.snow:nth-child(254){opacity:1.6468;transform:translate(19.2951vw,-10px) scale(.4097);animation:fall-254 27s -7s linear infinite}@keyframes fall-254{68.355%{transform:translate(13.1053vw,68.355vh) scale(.4097)}to{transform:translate(16.2002vw,99vh) scale(.4097)}}.snow:nth-child(255){opacity:.8212;transform:translate(1.9279vw,-10px) scale(.4099);animation:fall-255 23s -22s linear infinite}@keyframes fall-255{77.359%{transform:translate(-1.6321vw,77.359vh) scale(.4099)}to{transform:translate(.1479vw,99vh) scale(.4099)}}.snow:nth-child(256){opacity:.9568;transform:translate(53.7747vw,-10px) scale(.3031);animation:fall-256 16s -18s linear infinite}@keyframes fall-256{38.514%{transform:translate(56.6201vw,38.514vh) scale(.3031)}to{transform:translate(55.1974vw,99vh) scale(.3031)}}.snow:nth-child(257){opacity:1.7658;transform:translate(74.1944vw,-10px) scale(.0214);animation:fall-257 30s -8s linear infinite}@keyframes fall-257{73.429%{transform:translate(67.6648vw,73.429vh) scale(.0214)}to{transform:translate(70.9296vw,99vh) scale(.0214)}}.snow:nth-child(258){opacity:1.9388;transform:translate(48.3975vw,-10px) scale(.3128);animation:fall-258 10s -23s linear infinite}@keyframes fall-258{59.994%{transform:translate(43.9049vw,59.994vh) scale(.3128)}to{transform:translate(46.1512vw,99vh) scale(.3128)}}.snow:nth-child(259){opacity:1.9322;transform:translate(22.1825vw,-10px) scale(.0686);animation:fall-259 13s -10s linear infinite}@keyframes fall-259{73.271%{transform:translate(31.8235vw,73.271vh) scale(.0686)}to{transform:translate(27.003vw,99vh) scale(.0686)}}.snow:nth-child(260){opacity:.515;transform:translate(53.2472vw,-10px) scale(.0484);animation:fall-260 12s -8s linear infinite}@keyframes fall-260{62.278%{transform:translate(49.2766vw,62.278vh) scale(.0484)}to{transform:translate(51.2619vw,99vh) scale(.0484)}}.snow:nth-child(261){opacity:1.1414;transform:translate(88.989vw,-10px) scale(.7658);animation:fall-261 23s -15s linear infinite}@keyframes fall-261{74.061%{transform:translate(92.8572vw,74.061vh) scale(.7658)}to{transform:translate(90.9231vw,99vh) scale(.7658)}}.snow:nth-child(262){opacity:1.9564;transform:translate(10.6497vw,-10px) scale(.0064);animation:fall-262 26s -5s linear infinite}@keyframes fall-262{69.694%{transform:translate(3.7848vw,69.694vh) scale(.0064)}to{transform:translate(7.21725vw,99vh) scale(.0064)}}.snow:nth-child(263){opacity:1.138;transform:translate(75.4664vw,-10px) scale(.3366);animation:fall-263 13s -30s linear infinite}@keyframes fall-263{69.946%{transform:translate(84.9942vw,69.946vh) scale(.3366)}to{transform:translate(80.2303vw,99vh) scale(.3366)}}.snow:nth-child(264){opacity:.9804;transform:translate(53.7989vw,-10px) scale(.7779);animation:fall-264 22s -6s linear infinite}@keyframes fall-264{33.717%{transform:translate(50.5582vw,33.717vh) scale(.7779)}to{transform:translate(52.17855vw,99vh) scale(.7779)}}.snow:nth-child(265){opacity:.0562;transform:translate(2.586vw,-10px) scale(.6886);animation:fall-265 16s -29s linear infinite}@keyframes fall-265{34.756%{transform:translate(12.15vw,34.756vh) scale(.6886)}to{transform:translate(7.368vw,99vh) scale(.6886)}}.snow:nth-child(266){opacity:1.7204;transform:translate(56.2466vw,-10px) scale(.7017);animation:fall-266 19s -5s linear infinite}@keyframes fall-266{75.511%{transform:translate(48.8963vw,75.511vh) scale(.7017)}to{transform:translate(52.57145vw,99vh) scale(.7017)}}.snow:nth-child(267){opacity:1.349;transform:translate(80.6316vw,-10px) scale(.4217);animation:fall-267 30s -21s linear infinite}@keyframes fall-267{74.723%{transform:translate(88.7577vw,74.723vh) scale(.4217)}to{transform:translate(84.69465vw,99vh) scale(.4217)}}.snow:nth-child(268){opacity:1.0798;transform:translate(64.6828vw,-10px) scale(.5927);animation:fall-268 23s -26s linear infinite}@keyframes fall-268{35.73%{transform:translate(68.425vw,35.73vh) scale(.5927)}to{transform:translate(66.5539vw,99vh) scale(.5927)}}.snow:nth-child(269){opacity:1.1764;transform:translate(25.8775vw,-10px) scale(.876);animation:fall-269 25s -9s linear infinite}@keyframes fall-269{71.964%{transform:translate(22.8315vw,71.964vh) scale(.876)}to{transform:translate(24.3545vw,99vh) scale(.876)}}.snow:nth-child(270){opacity:.6194;transform:translate(75.9834vw,-10px) scale(.5688);animation:fall-270 17s -22s linear infinite}@keyframes fall-270{77.59%{transform:translate(82.8845vw,77.59vh) scale(.5688)}to{transform:translate(79.43395vw,99vh) scale(.5688)}}.snow:nth-child(271){opacity:.9452;transform:translate(75.7608vw,-10px) scale(.8127);animation:fall-271 18s -27s linear infinite}@keyframes fall-271{51.006%{transform:translate(73.6454vw,51.006vh) scale(.8127)}to{transform:translate(74.7031vw,99vh) scale(.8127)}}.snow:nth-child(272){opacity:.7748;transform:translate(43.4005vw,-10px) scale(.6324);animation:fall-272 18s -27s linear infinite}@keyframes fall-272{69.136%{transform:translate(34.0716vw,69.136vh) scale(.6324)}to{transform:translate(38.73605vw,99vh) scale(.6324)}}.snow:nth-child(273){opacity:.773;transform:translate(59.9784vw,-10px) scale(.5737);animation:fall-273 11s -16s linear infinite}@keyframes fall-273{52.614%{transform:translate(67.6648vw,52.614vh) scale(.5737)}to{transform:translate(63.8216vw,99vh) scale(.5737)}}.snow:nth-child(274){opacity:1.9958;transform:translate(72.9427vw,-10px) scale(.4362);animation:fall-274 11s -18s linear infinite}@keyframes fall-274{56.061%{transform:translate(78.6566vw,56.061vh) scale(.4362)}to{transform:translate(75.79965vw,99vh) scale(.4362)}}.snow:nth-child(275){opacity:.4276;transform:translate(48.4821vw,-10px) scale(.8653);animation:fall-275 20s -6s linear infinite}@keyframes fall-275{62.168%{transform:translate(49.0906vw,62.168vh) scale(.8653)}to{transform:translate(48.78635vw,99vh) scale(.8653)}}.snow:nth-child(276){opacity:.5962;transform:translate(77.24vw,-10px) scale(.2173);animation:fall-276 22s -29s linear infinite}@keyframes fall-276{79.76%{transform:translate(82.0462vw,79.76vh) scale(.2173)}to{transform:translate(79.6431vw,99vh) scale(.2173)}}.snow:nth-child(277){opacity:1.8918;transform:translate(13.3892vw,-10px) scale(.106);animation:fall-277 28s -23s linear infinite}@keyframes fall-277{50.442%{transform:translate(20.0285vw,50.442vh) scale(.106)}to{transform:translate(16.70885vw,99vh) scale(.106)}}.snow:nth-child(278){opacity:1.534;transform:translate(72.9756vw,-10px) scale(.3294);animation:fall-278 26s -24s linear infinite}@keyframes fall-278{35.419%{transform:translate(79.7137vw,35.419vh) scale(.3294)}to{transform:translate(76.34465vw,99vh) scale(.3294)}}.snow:nth-child(279){opacity:.5582;transform:translate(81.9461vw,-10px) scale(.3496);animation:fall-279 13s -24s linear infinite}@keyframes fall-279{59.818%{transform:translate(90.8738vw,59.818vh) scale(.3496)}to{transform:translate(86.40995vw,99vh) scale(.3496)}}.snow:nth-child(280){opacity:.0748;transform:translate(15.0449vw,-10px) scale(.1342);animation:fall-280 18s -7s linear infinite}@keyframes fall-280{35.039%{transform:translate(17.0087vw,35.039vh) scale(.1342)}to{transform:translate(16.0268vw,99vh) scale(.1342)}}.snow:nth-child(281){opacity:1.4868;transform:translate(38.1489vw,-10px) scale(.4598);animation:fall-281 24s -10s linear infinite}@keyframes fall-281{34.977%{transform:translate(32.3699vw,34.977vh) scale(.4598)}to{transform:translate(35.2594vw,99vh) scale(.4598)}}.snow:nth-child(282){opacity:.189;transform:translate(98.2771vw,-10px) scale(.4766);animation:fall-282 29s -11s linear infinite}@keyframes fall-282{43.544%{transform:translate(95.0428vw,43.544vh) scale(.4766)}to{transform:translate(96.65995vw,99vh) scale(.4766)}}.snow:nth-child(283){opacity:1.1198;transform:translate(84.0084vw,-10px) scale(.1511);animation:fall-283 21s -28s linear infinite}@keyframes fall-283{34.868%{transform:translate(78.6733vw,34.868vh) scale(.1511)}to{transform:translate(81.34085vw,99vh) scale(.1511)}}.snow:nth-child(284){opacity:.7782;transform:translate(21.3542vw,-10px) scale(.7252);animation:fall-284 21s -30s linear infinite}@keyframes fall-284{59.126%{transform:translate(29.911vw,59.126vh) scale(.7252)}to{transform:translate(25.6326vw,99vh) scale(.7252)}}.snow:nth-child(285){opacity:1.2384;transform:translate(44.1907vw,-10px) scale(.5483);animation:fall-285 24s -30s linear infinite}@keyframes fall-285{36.98%{transform:translate(48.3179vw,36.98vh) scale(.5483)}to{transform:translate(46.2543vw,99vh) scale(.5483)}}.snow:nth-child(286){opacity:1.6226;transform:translate(86.2797vw,-10px) scale(.3278);animation:fall-286 13s -13s linear infinite}@keyframes fall-286{31.123%{transform:translate(79.8503vw,31.123vh) scale(.3278)}to{transform:translate(83.065vw,99vh) scale(.3278)}}.snow:nth-child(287){opacity:.3992;transform:translate(16.9386vw,-10px) scale(.1745);animation:fall-287 12s -17s linear infinite}@keyframes fall-287{37.46%{transform:translate(14.6713vw,37.46vh) scale(.1745)}to{transform:translate(15.80495vw,99vh) scale(.1745)}}.snow:nth-child(288){opacity:1.883;transform:translate(71.308vw,-10px) scale(.0839);animation:fall-288 30s -21s linear infinite}@keyframes fall-288{33.992%{transform:translate(77.89vw,33.992vh) scale(.0839)}to{transform:translate(74.599vw,99vh) scale(.0839)}}.snow:nth-child(289){opacity:.4798;transform:translate(43.8403vw,-10px) scale(.2715);animation:fall-289 25s -14s linear infinite}@keyframes fall-289{45.473%{transform:translate(51.5714vw,45.473vh) scale(.2715)}to{transform:translate(47.70585vw,99vh) scale(.2715)}}.snow:nth-child(290){opacity:1.2776;transform:translate(31.7287vw,-10px) scale(.6011);animation:fall-290 13s -21s linear infinite}@keyframes fall-290{39.254%{transform:translate(22.6359vw,39.254vh) scale(.6011)}to{transform:translate(27.1823vw,99vh) scale(.6011)}}.snow:nth-child(291){opacity:.6148;transform:translate(63.6759vw,-10px) scale(.735);animation:fall-291 27s -15s linear infinite}@keyframes fall-291{77.036%{transform:translate(60.6549vw,77.036vh) scale(.735)}to{transform:translate(62.1654vw,99vh) scale(.735)}}.snow:nth-child(292){opacity:.1188;transform:translate(30.3102vw,-10px) scale(.9641);animation:fall-292 28s -15s linear infinite}@keyframes fall-292{74.78%{transform:translate(21.7917vw,74.78vh) scale(.9641)}to{transform:translate(26.05095vw,99vh) scale(.9641)}}.snow:nth-child(293){opacity:1.8892;transform:translate(96.4242vw,-10px) scale(.5679);animation:fall-293 21s -3s linear infinite}@keyframes fall-293{40.899%{transform:translate(98.85vw,40.899vh) scale(.5679)}to{transform:translate(97.6371vw,99vh) scale(.5679)}}.snow:nth-child(294){opacity:.2536;transform:translate(76.0997vw,-10px) scale(.3867);animation:fall-294 29s -23s linear infinite}@keyframes fall-294{67.471%{transform:translate(77.2059vw,67.471vh) scale(.3867)}to{transform:translate(76.6528vw,99vh) scale(.3867)}}.snow:nth-child(295){opacity:.3308;transform:translate(.3871vw,-10px) scale(.3296);animation:fall-295 25s -4s linear infinite}@keyframes fall-295{37.994%{transform:translate(4.3384vw,37.994vh) scale(.3296)}to{transform:translate(2.36275vw,99vh) scale(.3296)}}.snow:nth-child(296){opacity:.908;transform:translate(71.9304vw,-10px) scale(.6659);animation:fall-296 19s -15s linear infinite}@keyframes fall-296{66.442%{transform:translate(73.8922vw,66.442vh) scale(.6659)}to{transform:translate(72.9113vw,99vh) scale(.6659)}}.snow:nth-child(297){opacity:.6546;transform:translate(89.7988vw,-10px) scale(.1725);animation:fall-297 29s -1s linear infinite}@keyframes fall-297{32.959%{transform:translate(92.8057vw,32.959vh) scale(.1725)}to{transform:translate(91.30225vw,99vh) scale(.1725)}}.snow:nth-child(298){opacity:.2978;transform:translate(74.4711vw,-10px) scale(.4717);animation:fall-298 30s -17s linear infinite}@keyframes fall-298{44.268%{transform:translate(82.0535vw,44.268vh) scale(.4717)}to{transform:translate(78.2623vw,99vh) scale(.4717)}}.snow:nth-child(299){opacity:1.899;transform:translate(25.2157vw,-10px) scale(.5304);animation:fall-299 13s -9s linear infinite}@keyframes fall-299{53.911%{transform:translate(21.7957vw,53.911vh) scale(.5304)}to{transform:translate(23.5057vw,99vh) scale(.5304)}}.snow:nth-child(300){opacity:1.542;transform:translate(76.3418vw,-10px) scale(.7052);animation:fall-300 12s -24s linear infinite}@keyframes fall-300{56.216%{transform:translate(75.4187vw,56.216vh) scale(.7052)}to{transform:translate(75.88025vw,99vh) scale(.7052)}}.snow:nth-child(301){opacity:.6044;transform:translate(83.2031vw,-10px) scale(.2191);animation:fall-301 20s -2s linear infinite}@keyframes fall-301{48.28%{transform:translate(87.9953vw,48.28vh) scale(.2191)}to{transform:translate(85.5992vw,99vh) scale(.2191)}}.snow:nth-child(302){opacity:1.9766;transform:translate(60.1965vw,-10px) scale(.2638);animation:fall-302 27s -1s linear infinite}@keyframes fall-302{67.004%{transform:translate(62.3552vw,67.004vh) scale(.2638)}to{transform:translate(61.27585vw,99vh) scale(.2638)}}.snow:nth-child(303){opacity:1.5524;transform:translate(54.7335vw,-10px) scale(.5761);animation:fall-303 17s -7s linear infinite}@keyframes fall-303{69.084%{transform:translate(60.7441vw,69.084vh) scale(.5761)}to{transform:translate(57.7388vw,99vh) scale(.5761)}}.snow:nth-child(304){opacity:.0212;transform:translate(12.2455vw,-10px) scale(.2365);animation:fall-304 26s -23s linear infinite}@keyframes fall-304{71.697%{transform:translate(13.7558vw,71.697vh) scale(.2365)}to{transform:translate(13.00065vw,99vh) scale(.2365)}}.snow:nth-child(305){opacity:1.4598;transform:translate(34.6249vw,-10px) scale(.94);animation:fall-305 27s -5s linear infinite}@keyframes fall-305{52.967%{transform:translate(43.2567vw,52.967vh) scale(.94)}to{transform:translate(38.9408vw,99vh) scale(.94)}}.snow:nth-child(306){opacity:1.1872;transform:translate(40.6696vw,-10px) scale(.1418);animation:fall-306 20s -15s linear infinite}@keyframes fall-306{49.328%{transform:translate(47.9421vw,49.328vh) scale(.1418)}to{transform:translate(44.30585vw,99vh) scale(.1418)}}.snow:nth-child(307){opacity:1.5768;transform:translate(24.7624vw,-10px) scale(.4966);animation:fall-307 14s -4s linear infinite}@keyframes fall-307{78.912%{transform:translate(27.7233vw,78.912vh) scale(.4966)}to{transform:translate(26.24285vw,99vh) scale(.4966)}}.snow:nth-child(308){opacity:1.3302;transform:translate(13.7252vw,-10px) scale(.1155);animation:fall-308 14s -12s linear infinite}@keyframes fall-308{65.617%{transform:translate(20.1084vw,65.617vh) scale(.1155)}to{transform:translate(16.9168vw,99vh) scale(.1155)}}.snow:nth-child(309){opacity:1.5722;transform:translate(33.9174vw,-10px) scale(.4594);animation:fall-309 23s -27s linear infinite}@keyframes fall-309{42.034%{transform:translate(36.9533vw,42.034vh) scale(.4594)}to{transform:translate(35.43535vw,99vh) scale(.4594)}}.snow:nth-child(310){opacity:.536;transform:translate(55.0283vw,-10px) scale(.9938);animation:fall-310 15s -15s linear infinite}@keyframes fall-310{38.005%{transform:translate(54.9435vw,38.005vh) scale(.9938)}to{transform:translate(54.9859vw,99vh) scale(.9938)}}.snow:nth-child(311){opacity:.6614;transform:translate(66.3872vw,-10px) scale(.4983);animation:fall-311 14s -29s linear infinite}@keyframes fall-311{39.54%{transform:translate(71.7499vw,39.54vh) scale(.4983)}to{transform:translate(69.06855vw,99vh) scale(.4983)}}.snow:nth-child(312){opacity:1.2558;transform:translate(16.2751vw,-10px) scale(.8087);animation:fall-312 25s -20s linear infinite}@keyframes fall-312{51.09%{transform:translate(14.2778vw,51.09vh) scale(.8087)}to{transform:translate(15.27645vw,99vh) scale(.8087)}}.snow:nth-child(313){opacity:.564;transform:translate(34.7513vw,-10px) scale(.8393);animation:fall-313 15s -18s linear infinite}@keyframes fall-313{70.096%{transform:translate(38.8994vw,70.096vh) scale(.8393)}to{transform:translate(36.82535vw,99vh) scale(.8393)}}.snow:nth-child(314){opacity:.8222;transform:translate(50.9265vw,-10px) scale(.7523);animation:fall-314 22s -30s linear infinite}@keyframes fall-314{48.697%{transform:translate(49.0609vw,48.697vh) scale(.7523)}to{transform:translate(49.9937vw,99vh) scale(.7523)}}.snow:nth-child(315){opacity:1.5668;transform:translate(52.3757vw,-10px) scale(.2472);animation:fall-315 29s -3s linear infinite}@keyframes fall-315{42.877%{transform:translate(45.3303vw,42.877vh) scale(.2472)}to{transform:translate(48.853vw,99vh) scale(.2472)}}.snow:nth-child(316){opacity:1.0924;transform:translate(66.3472vw,-10px) scale(.4796);animation:fall-316 10s -12s linear infinite}@keyframes fall-316{62.805%{transform:translate(57.8518vw,62.805vh) scale(.4796)}to{transform:translate(62.0995vw,99vh) scale(.4796)}}.snow:nth-child(317){opacity:1.9252;transform:translate(78.7043vw,-10px) scale(.3499);animation:fall-317 16s -27s linear infinite}@keyframes fall-317{46.307%{transform:translate(78.3447vw,46.307vh) scale(.3499)}to{transform:translate(78.5245vw,99vh) scale(.3499)}}.snow:nth-child(318){opacity:1.7134;transform:translate(64.6441vw,-10px) scale(.0721);animation:fall-318 10s -9s linear infinite}@keyframes fall-318{78.516%{transform:translate(58.7912vw,78.516vh) scale(.0721)}to{transform:translate(61.71765vw,99vh) scale(.0721)}}.snow:nth-child(319){opacity:1.6684;transform:translate(75.2217vw,-10px) scale(.3056);animation:fall-319 16s -6s linear infinite}@keyframes fall-319{48.71%{transform:translate(74.202vw,48.71vh) scale(.3056)}to{transform:translate(74.71185vw,99vh) scale(.3056)}}.snow:nth-child(320){opacity:.443;transform:translate(19.9296vw,-10px) scale(.8999);animation:fall-320 28s -28s linear infinite}@keyframes fall-320{42.153%{transform:translate(11.2464vw,42.153vh) scale(.8999)}to{transform:translate(15.588vw,99vh) scale(.8999)}}.snow:nth-child(321){opacity:.1622;transform:translate(27.8397vw,-10px) scale(.397);animation:fall-321 14s -9s linear infinite}@keyframes fall-321{68.337%{transform:translate(27.0088vw,68.337vh) scale(.397)}to{transform:translate(27.42425vw,99vh) scale(.397)}}.snow:nth-child(322){opacity:.6362;transform:translate(12.1386vw,-10px) scale(.0424);animation:fall-322 24s -22s linear infinite}@keyframes fall-322{32.617%{transform:translate(18.4893vw,32.617vh) scale(.0424)}to{transform:translate(15.31395vw,99vh) scale(.0424)}}.snow:nth-child(323){opacity:.615;transform:translate(28.9098vw,-10px) scale(.7791);animation:fall-323 14s -14s linear infinite}@keyframes fall-323{60.709%{transform:translate(29.2474vw,60.709vh) scale(.7791)}to{transform:translate(29.0786vw,99vh) scale(.7791)}}.snow:nth-child(324){opacity:1.7938;transform:translate(48.6937vw,-10px) scale(.4976);animation:fall-324 17s -29s linear infinite}@keyframes fall-324{46.255%{transform:translate(52.249vw,46.255vh) scale(.4976)}to{transform:translate(50.47135vw,99vh) scale(.4976)}}.snow:nth-child(325){opacity:1.5604;transform:translate(25.746vw,-10px) scale(.1425);animation:fall-325 26s -16s linear infinite}@keyframes fall-325{50.657%{transform:translate(20.6373vw,50.657vh) scale(.1425)}to{transform:translate(23.19165vw,99vh) scale(.1425)}}.snow:nth-child(326){opacity:.6116;transform:translate(5.8661vw,-10px) scale(.9787);animation:fall-326 24s -22s linear infinite}@keyframes fall-326{43.717%{transform:translate(3.6703vw,43.717vh) scale(.9787)}to{transform:translate(4.7682vw,99vh) scale(.9787)}}.snow:nth-child(327){opacity:.5882;transform:translate(6.9427vw,-10px) scale(.4475);animation:fall-327 24s -23s linear infinite}@keyframes fall-327{34.317%{transform:translate(4.7316vw,34.317vh) scale(.4475)}to{transform:translate(5.83715vw,99vh) scale(.4475)}}.snow:nth-child(328){opacity:.0822;transform:translate(88.5967vw,-10px) scale(.6799);animation:fall-328 17s -19s linear infinite}@keyframes fall-328{37.483%{transform:translate(87.7469vw,37.483vh) scale(.6799)}to{transform:translate(88.1718vw,99vh) scale(.6799)}}.snow:nth-child(329){opacity:1.689;transform:translate(55.0885vw,-10px) scale(.6027);animation:fall-329 18s -25s linear infinite}@keyframes fall-329{67.789%{transform:translate(45.6857vw,67.789vh) scale(.6027)}to{transform:translate(50.3871vw,99vh) scale(.6027)}}.snow:nth-child(330){opacity:.5518;transform:translate(.4177vw,-10px) scale(.9172);animation:fall-330 21s -27s linear infinite}@keyframes fall-330{33.909%{transform:translate(7.0513vw,33.909vh) scale(.9172)}to{transform:translate(3.7345vw,99vh) scale(.9172)}}.snow:nth-child(331){opacity:.0974;transform:translate(15.614vw,-10px) scale(.7766);animation:fall-331 28s -29s linear infinite}@keyframes fall-331{58.173%{transform:translate(23.7267vw,58.173vh) scale(.7766)}to{transform:translate(19.67035vw,99vh) scale(.7766)}}.snow:nth-child(332){opacity:.7508;transform:translate(13.2826vw,-10px) scale(.1095);animation:fall-332 10s -5s linear infinite}@keyframes fall-332{76.759%{transform:translate(13.259vw,76.759vh) scale(.1095)}to{transform:translate(13.2708vw,99vh) scale(.1095)}}.snow:nth-child(333){opacity:1.097;transform:translate(64.6065vw,-10px) scale(.3916);animation:fall-333 10s -16s linear infinite}@keyframes fall-333{44.028%{transform:translate(59.723vw,44.028vh) scale(.3916)}to{transform:translate(62.16475vw,99vh) scale(.3916)}}.snow:nth-child(334){opacity:1.6548;transform:translate(71.4915vw,-10px) scale(.386);animation:fall-334 18s -1s linear infinite}@keyframes fall-334{57.807%{transform:translate(77.818vw,57.807vh) scale(.386)}to{transform:translate(74.65475vw,99vh) scale(.386)}}.snow:nth-child(335){opacity:.053;transform:translate(84.6098vw,-10px) scale(.7699);animation:fall-335 16s -16s linear infinite}@keyframes fall-335{49.706%{transform:translate(79.7324vw,49.706vh) scale(.7699)}to{transform:translate(82.1711vw,99vh) scale(.7699)}}.snow:nth-child(336){opacity:1.091;transform:translate(39.2798vw,-10px) scale(.2147);animation:fall-336 21s -10s linear infinite}@keyframes fall-336{76.101%{transform:translate(39.9991vw,76.101vh) scale(.2147)}to{transform:translate(39.63945vw,99vh) scale(.2147)}}.snow:nth-child(337){opacity:1.01;transform:translate(69.9445vw,-10px) scale(.4084);animation:fall-337 17s -20s linear infinite}@keyframes fall-337{59.108%{transform:translate(64.0995vw,59.108vh) scale(.4084)}to{transform:translate(67.022vw,99vh) scale(.4084)}}.snow:nth-child(338){opacity:1.6204;transform:translate(32.4191vw,-10px) scale(.1566);animation:fall-338 22s -2s linear infinite}@keyframes fall-338{62.264%{transform:translate(22.9488vw,62.264vh) scale(.1566)}to{transform:translate(27.68395vw,99vh) scale(.1566)}}.snow:nth-child(339){opacity:.6976;transform:translate(38.7919vw,-10px) scale(.9522);animation:fall-339 14s -18s linear infinite}@keyframes fall-339{52.222%{transform:translate(29.1629vw,52.222vh) scale(.9522)}to{transform:translate(33.9774vw,99vh) scale(.9522)}}.snow:nth-child(340){opacity:.083;transform:translate(52.4341vw,-10px) scale(.7994);animation:fall-340 11s -15s linear infinite}@keyframes fall-340{61.259%{transform:translate(62.4139vw,61.259vh) scale(.7994)}to{transform:translate(57.424vw,99vh) scale(.7994)}}.snow:nth-child(341){opacity:1.1634;transform:translate(89.4589vw,-10px) scale(.0509);animation:fall-341 17s -14s linear infinite}@keyframes fall-341{57.836%{transform:translate(90.2713vw,57.836vh) scale(.0509)}to{transform:translate(89.8651vw,99vh) scale(.0509)}}.snow:nth-child(342){opacity:.7386;transform:translate(2.2671vw,-10px) scale(.3175);animation:fall-342 27s -5s linear infinite}@keyframes fall-342{47.606%{transform:translate(9.2444vw,47.606vh) scale(.3175)}to{transform:translate(5.75575vw,99vh) scale(.3175)}}.snow:nth-child(343){opacity:1.8834;transform:translate(87.8983vw,-10px) scale(.7501);animation:fall-343 12s -21s linear infinite}@keyframes fall-343{36.876%{transform:translate(93.0923vw,36.876vh) scale(.7501)}to{transform:translate(90.4953vw,99vh) scale(.7501)}}.snow:nth-child(344){opacity:1.9426;transform:translate(90.2741vw,-10px) scale(.0244);animation:fall-344 17s -20s linear infinite}@keyframes fall-344{51.941%{transform:translate(83.3628vw,51.941vh) scale(.0244)}to{transform:translate(86.81845vw,99vh) scale(.0244)}}.snow:nth-child(345){opacity:.4322;transform:translate(20.8679vw,-10px) scale(.9207);animation:fall-345 23s -20s linear infinite}@keyframes fall-345{60.569%{transform:translate(30.4568vw,60.569vh) scale(.9207)}to{transform:translate(25.66235vw,99vh) scale(.9207)}}.snow:nth-child(346){opacity:.3636;transform:translate(10.3532vw,-10px) scale(.1618);animation:fall-346 26s -1s linear infinite}@keyframes fall-346{71.917%{transform:translate(6.6256vw,71.917vh) scale(.1618)}to{transform:translate(8.4894vw,99vh) scale(.1618)}}.snow:nth-child(347){opacity:1.3988;transform:translate(66.9533vw,-10px) scale(.7527);animation:fall-347 26s -16s linear infinite}@keyframes fall-347{35.039%{transform:translate(66.8364vw,35.039vh) scale(.7527)}to{transform:translate(66.89485vw,99vh) scale(.7527)}}.snow:nth-child(348){opacity:.8682;transform:translate(93.5864vw,-10px) scale(.7998);animation:fall-348 25s -12s linear infinite}@keyframes fall-348{38.997%{transform:translate(93.0285vw,38.997vh) scale(.7998)}to{transform:translate(93.30745vw,99vh) scale(.7998)}}.snow:nth-child(349){opacity:1.235;transform:translate(51.7094vw,-10px) scale(.2472);animation:fall-349 19s -26s linear infinite}@keyframes fall-349{53.603%{transform:translate(53.701vw,53.603vh) scale(.2472)}to{transform:translate(52.7052vw,99vh) scale(.2472)}}.snow:nth-child(350){opacity:1.9976;transform:translate(54.9922vw,-10px) scale(.3814);animation:fall-350 24s -18s linear infinite}@keyframes fall-350{53.384%{transform:translate(48.8615vw,53.384vh) scale(.3814)}to{transform:translate(51.92685vw,99vh) scale(.3814)}}.snow:nth-child(351){opacity:.437;transform:translate(28.5165vw,-10px) scale(.1433);animation:fall-351 26s -19s linear infinite}@keyframes fall-351{52.398%{transform:translate(35.2669vw,52.398vh) scale(.1433)}to{transform:translate(31.8917vw,99vh) scale(.1433)}}.snow:nth-child(352){opacity:1.4022;transform:translate(88.1677vw,-10px) scale(.4546);animation:fall-352 17s -19s linear infinite}@keyframes fall-352{36.732%{transform:translate(93.5772vw,36.732vh) scale(.4546)}to{transform:translate(90.87245vw,99vh) scale(.4546)}}.snow:nth-child(353){opacity:1.8684;transform:translate(65.6981vw,-10px) scale(.7339);animation:fall-353 14s -15s linear infinite}@keyframes fall-353{60.458%{transform:translate(70.4187vw,60.458vh) scale(.7339)}to{transform:translate(68.0584vw,99vh) scale(.7339)}}.snow:nth-child(354){opacity:.7862;transform:translate(39.0829vw,-10px) scale(.9044);animation:fall-354 13s -16s linear infinite}@keyframes fall-354{56.226%{transform:translate(43.337vw,56.226vh) scale(.9044)}to{transform:translate(41.20995vw,99vh) scale(.9044)}}.snow:nth-child(355){opacity:1.4774;transform:translate(82.3511vw,-10px) scale(.2653);animation:fall-355 15s -13s linear infinite}@keyframes fall-355{52.223%{transform:translate(79.8802vw,52.223vh) scale(.2653)}to{transform:translate(81.11565vw,99vh) scale(.2653)}}.snow:nth-child(356){opacity:.9686;transform:translate(93.5967vw,-10px) scale(.2375);animation:fall-356 26s -17s linear infinite}@keyframes fall-356{54.855%{transform:translate(94.7583vw,54.855vh) scale(.2375)}to{transform:translate(94.1775vw,99vh) scale(.2375)}}.snow:nth-child(357){opacity:1.1642;transform:translate(52.0457vw,-10px) scale(.6613);animation:fall-357 13s -3s linear infinite}@keyframes fall-357{38.403%{transform:translate(61.1497vw,38.403vh) scale(.6613)}to{transform:translate(56.5977vw,99vh) scale(.6613)}}.snow:nth-child(358){opacity:1.9466;transform:translate(52.6956vw,-10px) scale(.9488);animation:fall-358 24s -11s linear infinite}@keyframes fall-358{79.437%{transform:translate(53.8505vw,79.437vh) scale(.9488)}to{transform:translate(53.27305vw,99vh) scale(.9488)}}.snow:nth-child(359){opacity:.0472;transform:translate(75.953vw,-10px) scale(.3053);animation:fall-359 10s -21s linear infinite}@keyframes fall-359{73.251%{transform:translate(83.0121vw,73.251vh) scale(.3053)}to{transform:translate(79.48255vw,99vh) scale(.3053)}}.snow:nth-child(360){opacity:.5988;transform:translate(19.7925vw,-10px) scale(.6808);animation:fall-360 27s -2s linear infinite}@keyframes fall-360{55.769%{transform:translate(28.7833vw,55.769vh) scale(.6808)}to{transform:translate(24.2879vw,99vh) scale(.6808)}}.snow:nth-child(361){opacity:1.8036;transform:translate(97.9712vw,-10px) scale(.7537);animation:fall-361 14s -6s linear infinite}@keyframes fall-361{67.052%{transform:translate(101.3807vw,67.052vh) scale(.7537)}to{transform:translate(99.67595vw,99vh) scale(.7537)}}.snow:nth-child(362){opacity:.4378;transform:translate(14.7923vw,-10px) scale(.8514);animation:fall-362 19s -22s linear infinite}@keyframes fall-362{75.12%{transform:translate(20.1639vw,75.12vh) scale(.8514)}to{transform:translate(17.4781vw,99vh) scale(.8514)}}.snow:nth-child(363){opacity:.8036;transform:translate(8.6051vw,-10px) scale(.1386);animation:fall-363 22s -25s linear infinite}@keyframes fall-363{75.311%{transform:translate(11.8712vw,75.311vh) scale(.1386)}to{transform:translate(10.23815vw,99vh) scale(.1386)}}.snow:nth-child(364){opacity:.567;transform:translate(60.5321vw,-10px) scale(.044);animation:fall-364 25s -13s linear infinite}@keyframes fall-364{44.511%{transform:translate(66.1388vw,44.511vh) scale(.044)}to{transform:translate(63.33545vw,99vh) scale(.044)}}.snow:nth-child(365){opacity:1.581;transform:translate(9.5125vw,-10px) scale(.0223);animation:fall-365 16s -30s linear infinite}@keyframes fall-365{65.74%{transform:translate(.8928vw,65.74vh) scale(.0223)}to{transform:translate(5.20265vw,99vh) scale(.0223)}}.snow:nth-child(366){opacity:.1622;transform:translate(76.3269vw,-10px) scale(.9902);animation:fall-366 10s -5s linear infinite}@keyframes fall-366{61.5%{transform:translate(75.0221vw,61.5vh) scale(.9902)}to{transform:translate(75.6745vw,99vh) scale(.9902)}}.snow:nth-child(367){opacity:.8448;transform:translate(86.4845vw,-10px) scale(.8393);animation:fall-367 10s -7s linear infinite}@keyframes fall-367{32.363%{transform:translate(77.5883vw,32.363vh) scale(.8393)}to{transform:translate(82.0364vw,99vh) scale(.8393)}}.snow:nth-child(368){opacity:1.7304;transform:translate(52.7137vw,-10px) scale(.9591);animation:fall-368 25s -9s linear infinite}@keyframes fall-368{74.069%{transform:translate(45.4286vw,74.069vh) scale(.9591)}to{transform:translate(49.07115vw,99vh) scale(.9591)}}.snow:nth-child(369){opacity:.458;transform:translate(59.306vw,-10px) scale(.2776);animation:fall-369 16s -29s linear infinite}@keyframes fall-369{45.016%{transform:translate(60.3986vw,45.016vh) scale(.2776)}to{transform:translate(59.8523vw,99vh) scale(.2776)}}.snow:nth-child(370){opacity:.2738;transform:translate(13.7029vw,-10px) scale(.8272);animation:fall-370 14s -1s linear infinite}@keyframes fall-370{44.542%{transform:translate(6.4392vw,44.542vh) scale(.8272)}to{transform:translate(10.07105vw,99vh) scale(.8272)}}.snow:nth-child(371){opacity:1.4096;transform:translate(67.8005vw,-10px) scale(.6597);animation:fall-371 30s -28s linear infinite}@keyframes fall-371{75.494%{transform:translate(58.7466vw,75.494vh) scale(.6597)}to{transform:translate(63.27355vw,99vh) scale(.6597)}}.snow:nth-child(372){opacity:1.374;transform:translate(30.1521vw,-10px) scale(.3387);animation:fall-372 26s -6s linear infinite}@keyframes fall-372{48.455%{transform:translate(32.3787vw,48.455vh) scale(.3387)}to{transform:translate(31.2654vw,99vh) scale(.3387)}}.snow:nth-child(373){opacity:1.1218;transform:translate(98.401vw,-10px) scale(.8359);animation:fall-373 15s -23s linear infinite}@keyframes fall-373{74.478%{transform:translate(102.3652vw,74.478vh) scale(.8359)}to{transform:translate(100.3831vw,99vh) scale(.8359)}}.snow:nth-child(374){opacity:.697;transform:translate(87.9592vw,-10px) scale(.5573);animation:fall-374 22s -8s linear infinite}@keyframes fall-374{67.82%{transform:translate(78.7848vw,67.82vh) scale(.5573)}to{transform:translate(83.372vw,99vh) scale(.5573)}}.snow:nth-child(375){opacity:1.5164;transform:translate(91.4853vw,-10px) scale(.3874);animation:fall-375 29s -21s linear infinite}@keyframes fall-375{61.331%{transform:translate(98.0004vw,61.331vh) scale(.3874)}to{transform:translate(94.74285vw,99vh) scale(.3874)}}.snow:nth-child(376){opacity:.255;transform:translate(41.7253vw,-10px) scale(.3814);animation:fall-376 22s -27s linear infinite}@keyframes fall-376{46.147%{transform:translate(42.3455vw,46.147vh) scale(.3814)}to{transform:translate(42.0354vw,99vh) scale(.3814)}}.snow:nth-child(377){opacity:.1392;transform:translate(77.3284vw,-10px) scale(.822);animation:fall-377 24s -4s linear infinite}@keyframes fall-377{48.814%{transform:translate(84.6671vw,48.814vh) scale(.822)}to{transform:translate(80.99775vw,99vh) scale(.822)}}.snow:nth-child(378){opacity:1.493;transform:translate(90.8215vw,-10px) scale(.498);animation:fall-378 21s -12s linear infinite}@keyframes fall-378{73.111%{transform:translate(87.9504vw,73.111vh) scale(.498)}to{transform:translate(89.38595vw,99vh) scale(.498)}}.snow:nth-child(379){opacity:1.7282;transform:translate(9.9539vw,-10px) scale(.2369);animation:fall-379 21s -15s linear infinite}@keyframes fall-379{55.138%{transform:translate(11.8188vw,55.138vh) scale(.2369)}to{transform:translate(10.88635vw,99vh) scale(.2369)}}.snow:nth-child(380){opacity:.4988;transform:translate(91.4765vw,-10px) scale(.8422);animation:fall-380 21s -15s linear infinite}@keyframes fall-380{53.794%{transform:translate(95.5393vw,53.794vh) scale(.8422)}to{transform:translate(93.5079vw,99vh) scale(.8422)}}.snow:nth-child(381){opacity:.8322;transform:translate(96.5033vw,-10px) scale(.1486);animation:fall-381 27s -30s linear infinite}@keyframes fall-381{61.211%{transform:translate(87.3507vw,61.211vh) scale(.1486)}to{transform:translate(91.927vw,99vh) scale(.1486)}}.snow:nth-child(382){opacity:.1694;transform:translate(77.3158vw,-10px) scale(.4538);animation:fall-382 28s -28s linear infinite}@keyframes fall-382{47.89%{transform:translate(69.2272vw,47.89vh) scale(.4538)}to{transform:translate(73.2715vw,99vh) scale(.4538)}}.snow:nth-child(383){opacity:.4388;transform:translate(91.3871vw,-10px) scale(.2394);animation:fall-383 19s -29s linear infinite}@keyframes fall-383{35.197%{transform:translate(86.4108vw,35.197vh) scale(.2394)}to{transform:translate(88.89895vw,99vh) scale(.2394)}}.snow:nth-child(384){opacity:.722;transform:translate(76.0902vw,-10px) scale(.179);animation:fall-384 26s -18s linear infinite}@keyframes fall-384{56.166%{transform:translate(67.5968vw,56.166vh) scale(.179)}to{transform:translate(71.8435vw,99vh) scale(.179)}}.snow:nth-child(385){opacity:1.3088;transform:translate(23.096vw,-10px) scale(.6725);animation:fall-385 28s -11s linear infinite}@keyframes fall-385{76.87%{transform:translate(31.7008vw,76.87vh) scale(.6725)}to{transform:translate(27.3984vw,99vh) scale(.6725)}}.snow:nth-child(386){opacity:1.9428;transform:translate(67.499vw,-10px) scale(.2289);animation:fall-386 17s -28s linear infinite}@keyframes fall-386{72.269%{transform:translate(74.118vw,72.269vh) scale(.2289)}to{transform:translate(70.8085vw,99vh) scale(.2289)}}.snow:nth-child(387){opacity:.642;transform:translate(9.5409vw,-10px) scale(.9412);animation:fall-387 15s -18s linear infinite}@keyframes fall-387{67.636%{transform:translate(17.8246vw,67.636vh) scale(.9412)}to{transform:translate(13.68275vw,99vh) scale(.9412)}}.snow:nth-child(388){opacity:.0432;transform:translate(29.8152vw,-10px) scale(.1732);animation:fall-388 24s -13s linear infinite}@keyframes fall-388{40.944%{transform:translate(22.3155vw,40.944vh) scale(.1732)}to{transform:translate(26.06535vw,99vh) scale(.1732)}}.snow:nth-child(389){opacity:1.889;transform:translate(60.5104vw,-10px) scale(.0205);animation:fall-389 12s -24s linear infinite}@keyframes fall-389{47.459%{transform:translate(55.9874vw,47.459vh) scale(.0205)}to{transform:translate(58.2489vw,99vh) scale(.0205)}}.snow:nth-child(390){opacity:1.2998;transform:translate(37.3258vw,-10px) scale(.01);animation:fall-390 19s -7s linear infinite}@keyframes fall-390{65.935%{transform:translate(40.0974vw,65.935vh) scale(.01)}to{transform:translate(38.7116vw,99vh) scale(.01)}}.snow:nth-child(391){opacity:.4558;transform:translate(78.6378vw,-10px) scale(.2166);animation:fall-391 10s -1s linear infinite}@keyframes fall-391{34.508%{transform:translate(82.9623vw,34.508vh) scale(.2166)}to{transform:translate(80.80005vw,99vh) scale(.2166)}}.snow:nth-child(392){opacity:.4204;transform:translate(68.7806vw,-10px) scale(.2429);animation:fall-392 14s -25s linear infinite}@keyframes fall-392{45.388%{transform:translate(60.1017vw,45.388vh) scale(.2429)}to{transform:translate(64.44115vw,99vh) scale(.2429)}}.snow:nth-child(393){opacity:1.4338;transform:translate(30.2899vw,-10px) scale(.3099);animation:fall-393 28s -2s linear infinite}@keyframes fall-393{46.598%{transform:translate(21.4977vw,46.598vh) scale(.3099)}to{transform:translate(25.8938vw,99vh) scale(.3099)}}.snow:nth-child(394){opacity:1.1034;transform:translate(29.7202vw,-10px) scale(.2706);animation:fall-394 29s -7s linear infinite}@keyframes fall-394{55.584%{transform:translate(31.7207vw,55.584vh) scale(.2706)}to{transform:translate(30.72045vw,99vh) scale(.2706)}}.snow:nth-child(395){opacity:1.3318;transform:translate(69.5807vw,-10px) scale(.9069);animation:fall-395 17s -27s linear infinite}@keyframes fall-395{41.547%{transform:translate(64.4287vw,41.547vh) scale(.9069)}to{transform:translate(67.0047vw,99vh) scale(.9069)}}.snow:nth-child(396){opacity:.9354;transform:translate(30.1106vw,-10px) scale(.7684);animation:fall-396 22s -20s linear infinite}@keyframes fall-396{53.091%{transform:translate(38.8459vw,53.091vh) scale(.7684)}to{transform:translate(34.47825vw,99vh) scale(.7684)}}.snow:nth-child(397){opacity:1.0058;transform:translate(65.2209vw,-10px) scale(.1485);animation:fall-397 29s -26s linear infinite}@keyframes fall-397{66.427%{transform:translate(63.0889vw,66.427vh) scale(.1485)}to{transform:translate(64.1549vw,99vh) scale(.1485)}}.snow:nth-child(398){opacity:1.4806;transform:translate(71.2764vw,-10px) scale(.4214);animation:fall-398 20s -11s linear infinite}@keyframes fall-398{47.494%{transform:translate(64.1331vw,47.494vh) scale(.4214)}to{transform:translate(67.70475vw,99vh) scale(.4214)}}.snow:nth-child(399){opacity:1.0856;transform:translate(14.427vw,-10px) scale(.3627);animation:fall-399 18s -21s linear infinite}@keyframes fall-399{33.023%{transform:translate(16.0199vw,33.023vh) scale(.3627)}to{transform:translate(15.22345vw,99vh) scale(.3627)}}.snow:nth-child(400){opacity:1.4226;transform:translate(14.7426vw,-10px) scale(.0907);animation:fall-400 10s -1s linear infinite}@keyframes fall-400{42.674%{transform:translate(24.0418vw,42.674vh) scale(.0907)}to{transform:translate(19.3922vw,99vh) scale(.0907)}}\n"] }]
|
|
82
82
|
}], ctorParameters: function () { return [{ type: i1.TokenService }, { type: i1.AppState }, { type: i2.Router }]; } });
|
|
83
83
|
|
|
84
84
|
// Angular
|
|
@@ -155,11 +155,16 @@ const PROVIDERS = [
|
|
|
155
155
|
class EsFaenzaCoreModule {
|
|
156
156
|
static forRoot(config) {
|
|
157
157
|
if (config.routes) {
|
|
158
|
-
//
|
|
158
|
+
// 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)
|
|
159
159
|
if (!config.routes.find(t => t.path.startsWith("embed")))
|
|
160
160
|
config.routes = [...config.routes, { path: "embed/:module", loadChildren: () => import('@esfaenza/core/modules').then(m => m.EmbeddingModule) }];
|
|
161
161
|
baseAppRoutes[0].redirectTo = `pages/${config.emptyRouteRedirect || 'dashboard'}`;
|
|
162
|
-
baseAppRoutes.filter(t => ["pages", "pages_ext"].includes(t.path)).forEach(path => {
|
|
162
|
+
baseAppRoutes.filter(t => ["pages", "pages_ext"].includes(t.path)).forEach(path => {
|
|
163
|
+
path.children = [
|
|
164
|
+
{ path: "profile", component: UserInfosComponent, data: { InternalNavigation: true, title: "profilo" } },
|
|
165
|
+
...config.routes.filter(r => !path.path.includes("pages_ext") || !r.path.startsWith("embed"))
|
|
166
|
+
];
|
|
167
|
+
});
|
|
163
168
|
}
|
|
164
169
|
config.debugMode = (!isDevMode() && !config.forceDebugModeForProdBuilds) ? DebugFlags.None : (config.debugMode || DebugFlags.All);
|
|
165
170
|
let mergedAppInitializer = (http, bts, aac, loc) => {
|
|
@@ -214,6 +219,7 @@ class EsFaenzaCoreModule {
|
|
|
214
219
|
{ provide: GlobalSearchService, useClass: config?.globalSearchService || GlobalSearchService },
|
|
215
220
|
{ provide: CompletedJobRedirectionService, useClass: config?.completedJobRedirectionService || CompletedJobRedirectionService },
|
|
216
221
|
{ provide: MenuFilteringService, useClass: config?.menuFilteringService || MenuFilteringService },
|
|
222
|
+
{ provide: UserPreferencesService, useClass: config?.userPreferencesProvider || UserPreferencesService },
|
|
217
223
|
{ provide: MENU_LOCALIZATION, useValue: config.menuLoc || null },
|
|
218
224
|
{ provide: MENU, useValue: config.menu },
|
|
219
225
|
{ provide: USE_FAKE_ACCESS_TOKEN, useValue: !!config.fakeAccessToken },
|