@esfaenza/core 15.2.42-beta2 → 15.2.42-beta4

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.
Files changed (59) hide show
  1. package/components/components.module.d.ts +5 -1
  2. package/components/operations/ops-menu/ops-menu.component.d.ts +6 -0
  3. package/components/operations/ops-menu-category/ops-menu-category.component.d.ts +8 -0
  4. package/components/operations/ops-menu-operation/ops-menu-operation.component.d.ts +9 -0
  5. package/components/page-structure/sidebar/sidebar.component.d.ts +5 -9
  6. package/components/page-structure/user-infos/user-infos.component.d.ts +63 -0
  7. package/components/page-structure/user-infos/user-infos.component.loc.d.ts +8 -0
  8. package/components/public-api.d.ts +6 -0
  9. package/components/search/base/base-search.d.ts +34 -0
  10. package/components/span/labeled-span/labeled-span.component.d.ts +11 -0
  11. package/domain/models/user/UpdateAccountRecoverySettingsDto.d.ts +3 -4
  12. package/domain/models/user/UpdatePasswordDto.d.ts +9 -0
  13. package/domain/models/user/UpdateProfilePictureDto.d.ts +4 -0
  14. package/domain/public-api.d.ts +2 -2
  15. package/esm2020/components/components.module.mjs +20 -4
  16. package/esm2020/components/operations/ops-menu/ops-menu.component.mjs +12 -0
  17. package/esm2020/components/operations/ops-menu-category/ops-menu-category.component.mjs +21 -0
  18. package/esm2020/components/operations/ops-menu-operation/ops-menu-operation.component.mjs +19 -0
  19. package/esm2020/components/page-structure/error/404/pagenotfound.component.mjs +1 -1
  20. package/esm2020/components/page-structure/page/pages.component.mjs +3 -3
  21. package/esm2020/components/page-structure/sidebar/sidebar.component.mjs +10 -18
  22. package/esm2020/components/page-structure/user-infos/user-infos.component.loc.mjs +43 -0
  23. package/esm2020/components/page-structure/user-infos/user-infos.component.mjs +160 -0
  24. package/esm2020/components/public-api.mjs +7 -1
  25. package/esm2020/components/search/base/base-search.mjs +112 -0
  26. package/esm2020/components/span/labeled-span/labeled-span.component.mjs +25 -0
  27. package/esm2020/domain/models/user/UpdateAccountRecoverySettingsDto.mjs +2 -3
  28. package/esm2020/domain/models/user/UpdatePasswordDto.mjs +11 -0
  29. package/esm2020/domain/models/user/UpdateProfilePictureDto.mjs +6 -0
  30. package/esm2020/domain/public-api.mjs +3 -3
  31. package/esm2020/lib/app.component.mjs +2 -2
  32. package/esm2020/lib/core.module.mjs +7 -4
  33. package/esm2020/pipes/pipes.module.mjs +1 -1
  34. package/esm2020/services/classes/preferences/app.preference.persistor.mjs +1 -1
  35. package/esm2020/services/classes/preferences/user/app.userpreferences.base.mjs +25 -33
  36. package/fesm2015/esfaenza-core-components.mjs +429 -65
  37. package/fesm2015/esfaenza-core-components.mjs.map +1 -1
  38. package/fesm2015/esfaenza-core-domain.mjs +4 -5
  39. package/fesm2015/esfaenza-core-domain.mjs.map +1 -1
  40. package/fesm2015/esfaenza-core-pipes.mjs.map +1 -1
  41. package/fesm2015/esfaenza-core-services.mjs +24 -32
  42. package/fesm2015/esfaenza-core-services.mjs.map +1 -1
  43. package/fesm2015/esfaenza-core.mjs +8 -5
  44. package/fesm2015/esfaenza-core.mjs.map +1 -1
  45. package/fesm2020/esfaenza-core-components.mjs +417 -65
  46. package/fesm2020/esfaenza-core-components.mjs.map +1 -1
  47. package/fesm2020/esfaenza-core-domain.mjs +4 -5
  48. package/fesm2020/esfaenza-core-domain.mjs.map +1 -1
  49. package/fesm2020/esfaenza-core-pipes.mjs.map +1 -1
  50. package/fesm2020/esfaenza-core-services.mjs +27 -35
  51. package/fesm2020/esfaenza-core-services.mjs.map +1 -1
  52. package/fesm2020/esfaenza-core.mjs +8 -5
  53. package/fesm2020/esfaenza-core.mjs.map +1 -1
  54. package/package.json +1 -1
  55. package/services/classes/preferences/user/app.userpreferences.base.d.ts +6 -6
  56. package/domain/models/user/ChangePasswordDto.d.ts +0 -9
  57. package/domain/models/user/ChangeProfilePictureDto.d.ts +0 -4
  58. package/esm2020/domain/models/user/ChangePasswordDto.mjs +0 -11
  59. package/esm2020/domain/models/user/ChangeProfilePictureDto.mjs +0 -6
@@ -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';
@@ -39,7 +39,7 @@ import * as i19 from '@esfaenza/ngx-dragula';
39
39
  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
- import { ExternalPagesComponent, PagesComponent, RedirecterComponent, JaceLoginComponent, ServerErrorComponent, AngularErrorComponent, PageNotFoundComponent, ComponentsModule } from '@esfaenza/core/components';
42
+ import { ExternalPagesComponent, PagesComponent, RedirecterComponent, JaceLoginComponent, ServerErrorComponent, AngularErrorComponent, PageNotFoundComponent, ComponentsModule, UserInfosComponent } from '@esfaenza/core/components';
43
43
  import { EMBEDDED_ROUTE, ROUTE, REDIRECT_MAP, NAVBAR_EXTENSIONS, MENU_LOCALIZATION, MENU, USE_FAKE_ACCESS_TOKEN } from '@esfaenza/core/domain';
44
44
  import { TemplateCommon } from '@esfaenza/core/modules';
45
45
  import { catchError, tap, switchMap } from 'rxjs/operators';
@@ -73,10 +73,10 @@ class AppComponent {
73
73
  }
74
74
  }
75
75
  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 });
76
- AppComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AppComponent, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: ["@import\"https://fonts.googleapis.com/css2?family=Lato&family=Sora&display=swap\";.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:#fffac2}.progress.progress-primary[value]::-moz-progress-bar{background-color:#fffac2}.progress.progress-primary[value]::-ms-fill{background-color:#fffac2}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#fffac2}}.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:#ef4444}.progress.progress-danger[value]::-moz-progress-bar{background-color:#ef4444}.progress.progress-danger[value]::-ms-fill{background-color:#ef4444}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#ef4444}}.progress.progress-success[value]::-webkit-progress-value{background-color:#84cc16}.progress.progress-success[value]::-moz-progress-bar{background-color:#84cc16}.progress.progress-success[value]::-ms-fill{background-color:#84cc16}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#84cc16}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#fbbf24}.progress.progress-warning[value]::-moz-progress-bar{background-color:#fbbf24}.progress.progress-warning[value]::-ms-fill{background-color:#fbbf24}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#fbbf24}}.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:#fffac2}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#ef4444}.tag.tag-success{background-color:#84cc16}.tag.tag-warning{background-color:#fbbf24}.tag.tag-dark{background-color:#344154}.tag.tag-main{background-color:#0056b3}.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:#fff8a9;color:#191e29;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#191e29}.card .card-header a:hover{color:#191e29cc}.card .card-footer{background:#fff8a9;color:#191e29;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #191E29}.card.card-primary{background:#fffac2}.card.card-primary.medium-opacity{background:rgba(255,250,194,.5)}.card.card-outline-primary{background:transparent;border:1px solid #fffac2}.card.card-success{background:#84cc16;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(132,204,22,.5)}.card.card-outline-success{background:transparent;border:1px solid #84CC16}.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:#fbbf24;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(251,191,36,.5)}.card.card-outline-warning{background:transparent;border:1px solid #FBBF24}.card.card-danger{background:#ef4444;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(239,68,68,.5)}.card.card-outline-danger{background:transparent;border:1px solid #EF4444}.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(52,65,84,.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:#191e29}.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(52,65,84,.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:#191e29}.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(0,86,179,.8)!important;border-color:#0056b3cc!important}.btn-primary.medium-opacity{background:rgba(0,86,179,.5);border-color:#0056b31a}.btn-primary:hover,.btn-primary:focus{background:#0056b3;border-color:#0056b3}.btn-primary:active{background:rgba(0,86,179,.95)!important;border-color:#0056b3f2!important}.btn-success{background:rgba(132,204,22,.8);border-color:#84cc16cc}.btn-success.medium-opacity{background:rgba(132,204,22,.5);border-color:#84cc161a}.btn-success:hover,.btn-success:focus{background:#84cc16;border-color:#84cc16}.btn-success:active{background:rgba(132,204,22,.95)!important;border-color:#84cc16f2!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(251,191,36,.8);border-color:#fbbf24cc}.btn-warning.medium-opacity{background:rgba(251,191,36,.5);border-color:#fbbf241a}.btn-warning:hover,.btn-warning:focus{background:#fbbf24;border-color:#fbbf24}.btn-warning:active{background:rgba(251,191,36,.95)!important;border-color:#fbbf24f2!important}.btn-danger{background:rgba(239,68,68,.8);border-color:#ef4444cc}.btn-danger.medium-opacity{background:rgba(239,68,68,.5);border-color:#ef44441a}.btn-danger:hover,.btn-danger:focus{background:#ef4444;border-color:#ef4444}.btn-danger:active{background:rgba(239,68,68,.95)!important;border-color:#ef4444f2!important}.btn-dark{background:rgba(52,65,84,.8);border-color:#344154cc;color:#191e29}.btn-dark.medium-opacity{background:rgba(52,65,84,.5);border-color:#3441541a}.btn-dark:hover{background:#344154;border-color:#344154}.btn-dark:active{background:rgba(52,65,84,.95)!important;border-color:#344154f2!important}.btn-main{background:rgba(0,86,179,.8);border-color:#0056b3cc;color:#191e29}.btn-main.medium-opacity{background:rgba(0,86,179,.5);border-color:#0056b31a}.btn-main:hover{color:#191e29!important;background:#0056b3;border-color:#0056b3}.btn-main:active{background:rgba(0,86,179,.95)!important;border-color:#0056b3f2!important}.btn-outline-primary{color:#fffac2;border-color:#fffac2}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#191e29;background:#fffac2;border-color:#fffac2}.btn-outline-primary:active,.btn-outline-primary.active{color:#191e29!important;background:#fffac2!important;border-color:#fffac2!important}.btn-outline-success{color:#84cc16;border-color:#84cc16}.btn-outline-success:hover,.btn-outline-success:focus{color:#191e29;background:#84CC16;border-color:#84cc16}.btn-outline-success:active,.btn-outline-success.active{color:#191e29!important;background:#84CC16!important;border-color:#84cc16!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#191e29;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#191e29!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#fbbf24;border-color:#fbbf24}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#191e29;background:#FBBF24;border-color:#fbbf24}.btn-outline-warning:active,.btn-outline-warning.active{color:#191e29!important;background:#FBBF24!important;border-color:#fbbf24!important}.btn-outline-danger{color:#ef4444;border-color:#ef4444}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#191e29;background:#EF4444;border-color:#ef4444}.btn-outline-danger:active,.btn-outline-danger.active{color:#191e29!important;background:#EF4444!important;border-color:#ef4444!important}.btn-outline-dark{color:#344154;border-color:#344154;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#191e29;background:#344154;border-color:#344154}.btn-outline-main{color:#0056b3;border-color:#0056b3;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#191e29;background:#0056b3;border-color:#0056b3}.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:#fffac2!important}.text-success{color:#84cc16!important}.text-info{color:#248dad!important}.text-warning{color:#fbbf24!important}.text-danger{color:#ef4444!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:#0056b3cc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#191e29;color:#0056b3}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#0056b3;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:#fffac266;border:1px solid #fffac2}.nav-tabs.tabs-primary .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#fffac2;color:#191e29}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-success{background-color:#84cc1666;border:1px solid #84CC16}.nav-tabs.tabs-success .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#84cc16;color:#191e29}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#191e29}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-warning{background-color:#fbbf2466;border:1px solid #FBBF24}.nav-tabs.tabs-warning .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#fbbf24;color:#191e29}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-danger{background-color:#ef444466;border:1px solid #EF4444}.nav-tabs.tabs-danger .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#ef4444;color:#191e29}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#191e29}.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:#fffac2;color:#191e29;border-color:#fffac2}.tab-content.tab-content-success{background-color:#84cc16;color:#191e29;border-color:#84cc16}.tab-content.tab-content-info{background-color:#248dad;color:#191e29;border-color:#248dad}.tab-content.tab-content-warning{background-color:#fbbf24;color:#191e29;border-color:#fbbf24}.tab-content.tab-content-danger{background-color:#ef4444;color:#191e29;border-color:#ef4444}.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:#0056b3cc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#191e29}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#0056b3;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#0056b399;cursor:not-allowed!important}.alert.alert-success{background-color:#84cc16;border-color:#84cc16;color:#191e29}.alert.alert-success.medium-opacity{background:rgba(132,204,22,.5);border-color:#84cc1699}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#191e29}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#fbbf24;border-color:#fbbf24;color:#191e29}.alert.alert-warning.medium-opacity{background-color:#fbbf2480;border-color:#fbbf2499}.alert.alert-danger{background-color:#ef4444;border-color:#ef4444;color:#191e29}.alert.alert-danger.medium-opacity{background-color:#ef444480;border-color:#ef444499}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#344154}.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:#191e29;background-color:#fffac2}.modal-dialog .modal-content .modal-header.modal-success{color:#191e29;background-color:#84cc16}.modal-dialog .modal-content .modal-header.modal-info{color:#191e29;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#191e29;background-color:#fbbf24}.modal-dialog .modal-content .modal-header.modal-danger{color:#191e29;background-color:#ef4444}.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:#344154cc}.list-group .list-group-item.active{color:#191e29e6;background-color:#fffac2;border-color:#fffac2}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#191e29!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#344154}.list-group .list-group-item.list-group-item-primary{color:#191e29;background-color:#fffac2}.list-group .list-group-item.list-group-item-success{color:#191e29;background-color:#84cc16}.list-group .list-group-item.list-group-item-info{color:#191e29;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#191e29;background-color:#fbbf24}.list-group .list-group-item.list-group-item-danger{color:#191e29;background-color:#ef4444}.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='%2384CC16' 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:#84cc16cc}.has-success .form-control:focus{box-shadow:none;border-color:#84cc1680}.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:#84cc16}.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='%23FBBF24' 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:#fbbf24cc}.has-warning .form-control:focus{box-shadow:none;border-color:#fbbf2480}.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:#fbbf24}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444cc}.has-danger .form-control:focus{box-shadow:none;border-color:#ef444480}.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:#ef4444}.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:#ef4444!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#84cc16;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='%2384CC16' 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:#ef4444;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#84cc16;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='%2384CC16' 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:#344154cc}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:#0056b3}.dropdown-menu a:hover{color:#191e29;background-color:#0056b3}.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:#fffac2}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fffac2}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#84CC16}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #84cc16}.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:#FBBF24}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fbbf24}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#EF4444}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #ef4444}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#0056b3}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #0056b3}.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:#fffac2}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fffac2}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#84CC16}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #84cc16}.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:#FBBF24}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fbbf24}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#EF4444}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #ef4444}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#0056b3}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #0056b3}.custom-select,.custom-select:focus{background:rgba(25,30,41,.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:#fffac2!important}.bg-primary.medium-opacity{background:rgba(255,250,194,.5)!important}.bg-success{background:#84cc16!important}.bg-success.medium-opacity{background:rgba(132,204,22,.5)!important}.bg-info{background:#248dad!important}.bg-info.medium-opacity{background:rgba(36,141,173,.5)!important}.bg-warning{background:#fbbf24!important}.bg-warning.medium-opacity{background:rgba(251,191,36,.5)!important}.bg-danger{background:#ef4444!important}.bg-danger.medium-opacity{background:rgba(239,68,68,.5)!important}.bg-main{background:#0056b3!important}.bg-main.medium-opacity{background:rgba(0,86,179,.5)!important}.bg-dark{background:#344154!important}.bg-dark.medium-opacity{background:rgba(52,65,84,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#84cc16;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='%2384CC16' 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}.pull-right{float:right!important}.pull-left{float:left!important}.es-table{background-color:#f2f2f2}.table-responsive{margin-bottom:0!important}.table-responsive .est-table-dotted-menu{background-color:#2a3544!important;padding:10px 5px!important}.table-responsive .est-sticky-last-column,.table-responsive .est-sticky-last-column-alt{background-color:#0000}.table-responsive th{font-family:Sora,sans-serif;color:#fff;background-color:#2a3544;padding:10px 15px}.table-responsive td{padding:10px 15px}.table-responsive .table-striped tbody tr:nth-of-type(odd){background-color:#fff}.table-responsive table{color:#000;margin-bottom:0!important}.table-responsive .table-hover tbody tr:hover{color:#000}.est-relative>div:nth-child(2){padding:15px;border-top:10px solid #e9ebee;background-color:#fff}.est-relative>div:nth-child(2)>div:nth-child(1){margin-top:3px}.est-relative>div:nth-child(2)>div:nth-child(2){margin-top:4px;margin-bottom:-4px}.pace .pace-progress{background:#fffac2;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:#0056b3;border-left-color:#0056b3}.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}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}.app-ck-height-400 .ck-editor__editable{max-height:400px}.lazyContainer{position:relative}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Lato,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-family:Sora,sans-serif;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:#191e29;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:#191e29b3}.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:#0056b3;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#0056b3}.widget-controls ul.dropdown-menu li:hover a{color:#191e29}.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:#fffac2}.card.fullscreened.card-success{background:#84CC16}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#FBBF24}.card.fullscreened.card-danger{background:#EF4444}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.2414;transform:translate(84.479vw,-10px) scale(.0251);animation:fall-1 27s -16s linear infinite}@keyframes fall-1{46.296%{transform:translate(85.8874vw,46.296vh) scale(.0251)}to{transform:translate(85.1832vw,100vh) scale(.0251)}}.snow:nth-child(2){opacity:1.7418;transform:translate(89.3491vw,-10px) scale(.0778);animation:fall-2 19s -30s linear infinite}@keyframes fall-2{74.391%{transform:translate(82.4847vw,74.391vh) scale(.0778)}to{transform:translate(85.9169vw,100vh) scale(.0778)}}.snow:nth-child(3){opacity:.096;transform:translate(69.144vw,-10px) scale(.2235);animation:fall-3 28s -16s linear infinite}@keyframes fall-3{35.031%{transform:translate(61.9175vw,35.031vh) scale(.2235)}to{transform:translate(65.53075vw,100vh) scale(.2235)}}.snow:nth-child(4){opacity:.0544;transform:translate(10.2061vw,-10px) scale(.4707);animation:fall-4 24s -11s linear infinite}@keyframes fall-4{72.077%{transform:translate(14.8509vw,72.077vh) scale(.4707)}to{transform:translate(12.5285vw,100vh) scale(.4707)}}.snow:nth-child(5){opacity:1.6988;transform:translate(51.5223vw,-10px) scale(.1278);animation:fall-5 28s -28s linear infinite}@keyframes fall-5{77.047%{transform:translate(52.5434vw,77.047vh) scale(.1278)}to{transform:translate(52.03285vw,100vh) scale(.1278)}}.snow:nth-child(6){opacity:.563;transform:translate(29.4772vw,-10px) scale(.353);animation:fall-6 30s -8s linear infinite}@keyframes fall-6{51.913%{transform:translate(24.5065vw,51.913vh) scale(.353)}to{transform:translate(26.99185vw,100vh) scale(.353)}}.snow:nth-child(7){opacity:1.884;transform:translate(66.6107vw,-10px) scale(.8838);animation:fall-7 22s -12s linear infinite}@keyframes fall-7{30.942%{transform:translate(74.1543vw,30.942vh) scale(.8838)}to{transform:translate(70.3825vw,100vh) scale(.8838)}}.snow:nth-child(8){opacity:1.643;transform:translate(69.7452vw,-10px) scale(.1319);animation:fall-8 26s -30s linear infinite}@keyframes fall-8{31.781%{transform:translate(60.6652vw,31.781vh) scale(.1319)}to{transform:translate(65.2052vw,100vh) scale(.1319)}}.snow:nth-child(9){opacity:1.3348;transform:translate(38.7047vw,-10px) scale(.1573);animation:fall-9 30s -26s linear infinite}@keyframes fall-9{70.529%{transform:translate(39.4195vw,70.529vh) scale(.1573)}to{transform:translate(39.0621vw,100vh) scale(.1573)}}.snow:nth-child(10){opacity:1.8756;transform:translate(15.4713vw,-10px) scale(.6905);animation:fall-10 12s -21s linear infinite}@keyframes fall-10{70.703%{transform:translate(21.9998vw,70.703vh) scale(.6905)}to{transform:translate(18.73555vw,100vh) scale(.6905)}}.snow:nth-child(11){opacity:.6734;transform:translate(43.0224vw,-10px) scale(.8259);animation:fall-11 20s -23s linear infinite}@keyframes fall-11{64.292%{transform:translate(49.7091vw,64.292vh) scale(.8259)}to{transform:translate(46.36575vw,100vh) scale(.8259)}}.snow:nth-child(12){opacity:1.2524;transform:translate(20.368vw,-10px) scale(.5766);animation:fall-12 26s -23s linear infinite}@keyframes fall-12{72.245%{transform:translate(14.1823vw,72.245vh) scale(.5766)}to{transform:translate(17.27515vw,100vh) scale(.5766)}}.snow:nth-child(13){opacity:.6172;transform:translate(9.1316vw,-10px) scale(.994);animation:fall-13 19s -19s linear infinite}@keyframes fall-13{31.785%{transform:translate(13.8892vw,31.785vh) scale(.994)}to{transform:translate(11.5104vw,100vh) scale(.994)}}.snow:nth-child(14){opacity:1.3954;transform:translate(9.1232vw,-10px) scale(.0529);animation:fall-14 28s -8s linear infinite}@keyframes fall-14{70.351%{transform:translate(10.0961vw,70.351vh) scale(.0529)}to{transform:translate(9.60965vw,100vh) scale(.0529)}}.snow:nth-child(15){opacity:.2976;transform:translate(32.4975vw,-10px) scale(.3194);animation:fall-15 21s -23s linear infinite}@keyframes fall-15{30.243%{transform:translate(31.5233vw,30.243vh) scale(.3194)}to{transform:translate(32.0104vw,100vh) scale(.3194)}}.snow:nth-child(16){opacity:.07;transform:translate(23.5512vw,-10px) scale(.8093);animation:fall-16 29s -4s linear infinite}@keyframes fall-16{75.593%{transform:translate(21.6641vw,75.593vh) scale(.8093)}to{transform:translate(22.60765vw,100vh) scale(.8093)}}.snow:nth-child(17){opacity:1.5478;transform:translate(52.1125vw,-10px) scale(.4655);animation:fall-17 20s -8s linear infinite}@keyframes fall-17{51.837%{transform:translate(53.183vw,51.837vh) scale(.4655)}to{transform:translate(52.64775vw,100vh) scale(.4655)}}.snow:nth-child(18){opacity:.2968;transform:translate(46.9328vw,-10px) scale(.8928);animation:fall-18 30s -21s linear infinite}@keyframes fall-18{43.367%{transform:translate(46.447vw,43.367vh) scale(.8928)}to{transform:translate(46.6899vw,100vh) scale(.8928)}}.snow:nth-child(19){opacity:1.1432;transform:translate(60.9247vw,-10px) scale(.073);animation:fall-19 10s -9s linear infinite}@keyframes fall-19{63.548%{transform:translate(58.7919vw,63.548vh) scale(.073)}to{transform:translate(59.8583vw,100vh) scale(.073)}}.snow:nth-child(20){opacity:1.088;transform:translate(22.4607vw,-10px) scale(.8433);animation:fall-20 27s -1s linear infinite}@keyframes fall-20{39.928%{transform:translate(19.0003vw,39.928vh) scale(.8433)}to{transform:translate(20.7305vw,100vh) scale(.8433)}}.snow:nth-child(21){opacity:1.8702;transform:translate(31.8316vw,-10px) scale(.4358);animation:fall-21 10s -28s linear infinite}@keyframes fall-21{78.09%{transform:translate(34.2732vw,78.09vh) scale(.4358)}to{transform:translate(33.0524vw,100vh) scale(.4358)}}.snow:nth-child(22){opacity:.0366;transform:translate(52.3003vw,-10px) scale(.1636);animation:fall-22 15s -24s linear infinite}@keyframes fall-22{63.582%{transform:translate(49.0802vw,63.582vh) scale(.1636)}to{transform:translate(50.69025vw,100vh) scale(.1636)}}.snow:nth-child(23){opacity:1.3902;transform:translate(10.4839vw,-10px) scale(.737);animation:fall-23 12s -29s linear infinite}@keyframes fall-23{74.901%{transform:translate(19.817vw,74.901vh) scale(.737)}to{transform:translate(15.15045vw,100vh) scale(.737)}}.snow:nth-child(24){opacity:1.961;transform:translate(87.3177vw,-10px) scale(.4326);animation:fall-24 11s -18s linear infinite}@keyframes fall-24{73.166%{transform:translate(83.6488vw,73.166vh) scale(.4326)}to{transform:translate(85.48325vw,100vh) scale(.4326)}}.snow:nth-child(25){opacity:1.0706;transform:translate(58.7935vw,-10px) scale(.1018);animation:fall-25 17s -1s linear infinite}@keyframes fall-25{67.968%{transform:translate(59.3948vw,67.968vh) scale(.1018)}to{transform:translate(59.09415vw,100vh) scale(.1018)}}.snow:nth-child(26){opacity:1.0722;transform:translate(55.0425vw,-10px) scale(.7686);animation:fall-26 15s -26s linear infinite}@keyframes fall-26{79.874%{transform:translate(52.739vw,79.874vh) scale(.7686)}to{transform:translate(53.89075vw,100vh) scale(.7686)}}.snow:nth-child(27){opacity:.2696;transform:translate(92.8188vw,-10px) scale(.6976);animation:fall-27 12s -6s linear infinite}@keyframes fall-27{61.746%{transform:translate(91.4193vw,61.746vh) scale(.6976)}to{transform:translate(92.11905vw,100vh) scale(.6976)}}.snow:nth-child(28){opacity:.9444;transform:translate(69.2782vw,-10px) scale(.5459);animation:fall-28 24s -5s linear infinite}@keyframes fall-28{50.698%{transform:translate(67.7168vw,50.698vh) scale(.5459)}to{transform:translate(68.4975vw,100vh) scale(.5459)}}.snow:nth-child(29){opacity:.9202;transform:translate(4.1865vw,-10px) scale(.866);animation:fall-29 16s -23s linear infinite}@keyframes fall-29{51.535%{transform:translate(-1.1644vw,51.535vh) scale(.866)}to{transform:translate(1.51105vw,100vh) scale(.866)}}.snow:nth-child(30){opacity:.5586;transform:translate(67.7779vw,-10px) scale(.052);animation:fall-30 18s -19s linear infinite}@keyframes fall-30{43.706%{transform:translate(58.0599vw,43.706vh) scale(.052)}to{transform:translate(62.9189vw,100vh) scale(.052)}}.snow:nth-child(31){opacity:1.7062;transform:translate(24.6222vw,-10px) scale(.8038);animation:fall-31 22s -1s linear infinite}@keyframes fall-31{48.478%{transform:translate(30.4276vw,48.478vh) scale(.8038)}to{transform:translate(27.5249vw,100vh) scale(.8038)}}.snow:nth-child(32){opacity:1.3996;transform:translate(38.6959vw,-10px) scale(.3123);animation:fall-32 14s -1s linear infinite}@keyframes fall-32{31.096%{transform:translate(29.4324vw,31.096vh) scale(.3123)}to{transform:translate(34.06415vw,100vh) scale(.3123)}}.snow:nth-child(33){opacity:.9222;transform:translate(28.6608vw,-10px) scale(.5996);animation:fall-33 23s -9s linear infinite}@keyframes fall-33{78.785%{transform:translate(37.2798vw,78.785vh) scale(.5996)}to{transform:translate(32.9703vw,100vh) scale(.5996)}}.snow:nth-child(34){opacity:.7372;transform:translate(37.8725vw,-10px) scale(.6346);animation:fall-34 10s -28s linear infinite}@keyframes fall-34{73.936%{transform:translate(44.6352vw,73.936vh) scale(.6346)}to{transform:translate(41.25385vw,100vh) scale(.6346)}}.snow:nth-child(35){opacity:.9922;transform:translate(95.4748vw,-10px) scale(.8039);animation:fall-35 11s -5s linear infinite}@keyframes fall-35{34.002%{transform:translate(104.4752vw,34.002vh) scale(.8039)}to{transform:translate(99.975vw,100vh) scale(.8039)}}.snow:nth-child(36){opacity:1.2976;transform:translate(29.1085vw,-10px) scale(.8118);animation:fall-36 17s -15s linear infinite}@keyframes fall-36{57.555%{transform:translate(32.7972vw,57.555vh) scale(.8118)}to{transform:translate(30.95285vw,100vh) scale(.8118)}}.snow:nth-child(37){opacity:.9394;transform:translate(86.684vw,-10px) scale(.0938);animation:fall-37 12s -5s linear infinite}@keyframes fall-37{66.991%{transform:translate(91.233vw,66.991vh) scale(.0938)}to{transform:translate(88.9585vw,100vh) scale(.0938)}}.snow:nth-child(38){opacity:1.1966;transform:translate(43.9948vw,-10px) scale(.1208);animation:fall-38 16s -24s linear infinite}@keyframes fall-38{77.221%{transform:translate(34.7005vw,77.221vh) scale(.1208)}to{transform:translate(39.34765vw,100vh) scale(.1208)}}.snow:nth-child(39){opacity:.401;transform:translate(57.6178vw,-10px) scale(.4857);animation:fall-39 29s -30s linear infinite}@keyframes fall-39{75.92%{transform:translate(57.9077vw,75.92vh) scale(.4857)}to{transform:translate(57.76275vw,100vh) scale(.4857)}}.snow:nth-child(40){opacity:1.071;transform:translate(37.1708vw,-10px) scale(.3478);animation:fall-40 24s -10s linear infinite}@keyframes fall-40{32.958%{transform:translate(30.3487vw,32.958vh) scale(.3478)}to{transform:translate(33.75975vw,100vh) scale(.3478)}}.snow:nth-child(41){opacity:1.394;transform:translate(7.5263vw,-10px) scale(.9759);animation:fall-41 21s -3s linear infinite}@keyframes fall-41{45.242%{transform:translate(16.3414vw,45.242vh) scale(.9759)}to{transform:translate(11.93385vw,100vh) scale(.9759)}}.snow:nth-child(42){opacity:.6032;transform:translate(37.9604vw,-10px) scale(.5185);animation:fall-42 16s -8s linear infinite}@keyframes fall-42{75.422%{transform:translate(44.565vw,75.422vh) scale(.5185)}to{transform:translate(41.2627vw,100vh) scale(.5185)}}.snow:nth-child(43){opacity:1.5672;transform:translate(14.4763vw,-10px) scale(.6805);animation:fall-43 22s -21s linear infinite}@keyframes fall-43{33.88%{transform:translate(4.9165vw,33.88vh) scale(.6805)}to{transform:translate(9.6964vw,100vh) scale(.6805)}}.snow:nth-child(44){opacity:1.0796;transform:translate(71.3264vw,-10px) scale(.7592);animation:fall-44 23s -16s linear infinite}@keyframes fall-44{65.506%{transform:translate(67.0474vw,65.506vh) scale(.7592)}to{transform:translate(69.1869vw,100vh) scale(.7592)}}.snow:nth-child(45){opacity:1.779;transform:translate(13.6354vw,-10px) scale(.0729);animation:fall-45 26s -10s linear infinite}@keyframes fall-45{43.037%{transform:translate(21.5799vw,43.037vh) scale(.0729)}to{transform:translate(17.60765vw,100vh) scale(.0729)}}.snow:nth-child(46){opacity:.3424;transform:translate(88.2328vw,-10px) scale(.3862);animation:fall-46 24s -7s linear infinite}@keyframes fall-46{41.852%{transform:translate(86.2355vw,41.852vh) scale(.3862)}to{transform:translate(87.23415vw,100vh) scale(.3862)}}.snow:nth-child(47){opacity:1.4786;transform:translate(58.5342vw,-10px) scale(.2644);animation:fall-47 17s -1s linear infinite}@keyframes fall-47{34.05%{transform:translate(51.8512vw,34.05vh) scale(.2644)}to{transform:translate(55.1927vw,100vh) scale(.2644)}}.snow:nth-child(48){opacity:.759;transform:translate(64.4434vw,-10px) scale(.4885);animation:fall-48 22s -6s linear infinite}@keyframes fall-48{72.602%{transform:translate(69.2545vw,72.602vh) scale(.4885)}to{transform:translate(66.84895vw,100vh) scale(.4885)}}.snow:nth-child(49){opacity:1.042;transform:translate(18.5127vw,-10px) scale(.3894);animation:fall-49 28s -4s linear infinite}@keyframes fall-49{77.37%{transform:translate(13.74vw,77.37vh) scale(.3894)}to{transform:translate(16.12635vw,100vh) scale(.3894)}}.snow:nth-child(50){opacity:.263;transform:translate(20.283vw,-10px) scale(.7568);animation:fall-50 15s -5s linear infinite}@keyframes fall-50{54.999%{transform:translate(26.4339vw,54.999vh) scale(.7568)}to{transform:translate(23.35845vw,100vh) scale(.7568)}}.snow:nth-child(51){opacity:.808;transform:translate(65.0611vw,-10px) scale(.0927);animation:fall-51 20s -13s linear infinite}@keyframes fall-51{45.469%{transform:translate(74.2293vw,45.469vh) scale(.0927)}to{transform:translate(69.6452vw,100vh) scale(.0927)}}.snow:nth-child(52){opacity:1.4416;transform:translate(61.1322vw,-10px) scale(.8879);animation:fall-52 26s -13s linear infinite}@keyframes fall-52{30.724%{transform:translate(56.3855vw,30.724vh) scale(.8879)}to{transform:translate(58.75885vw,100vh) scale(.8879)}}.snow:nth-child(53){opacity:1.4466;transform:translate(55.8305vw,-10px) scale(.665);animation:fall-53 24s -8s linear infinite}@keyframes fall-53{37.892%{transform:translate(64.4836vw,37.892vh) scale(.665)}to{transform:translate(60.15705vw,100vh) scale(.665)}}.snow:nth-child(54){opacity:.2268;transform:translate(58.05vw,-10px) scale(.8219);animation:fall-54 19s -17s linear infinite}@keyframes fall-54{74.788%{transform:translate(53.4115vw,74.788vh) scale(.8219)}to{transform:translate(55.73075vw,100vh) scale(.8219)}}.snow:nth-child(55){opacity:1.5966;transform:translate(4.9777vw,-10px) scale(.3133);animation:fall-55 13s -13s linear infinite}@keyframes fall-55{78.732%{transform:translate(-2.0181vw,78.732vh) scale(.3133)}to{transform:translate(1.4798vw,100vh) scale(.3133)}}.snow:nth-child(56){opacity:.9394;transform:translate(83.1541vw,-10px) scale(.441);animation:fall-56 11s -16s linear infinite}@keyframes fall-56{45.302%{transform:translate(74.6167vw,45.302vh) scale(.441)}to{transform:translate(78.8854vw,100vh) scale(.441)}}.snow:nth-child(57){opacity:1.8814;transform:translate(43.5896vw,-10px) scale(.9513);animation:fall-57 13s -8s linear infinite}@keyframes fall-57{63.443%{transform:translate(48.261vw,63.443vh) scale(.9513)}to{transform:translate(45.9253vw,100vh) scale(.9513)}}.snow:nth-child(58){opacity:.5218;transform:translate(92.0338vw,-10px) scale(.6828);animation:fall-58 30s -29s linear infinite}@keyframes fall-58{41.419%{transform:translate(101.686vw,41.419vh) scale(.6828)}to{transform:translate(96.8599vw,100vh) scale(.6828)}}.snow:nth-child(59){opacity:.0404;transform:translate(8.6152vw,-10px) scale(.7775);animation:fall-59 20s -17s linear infinite}@keyframes fall-59{70.985%{transform:translate(.6617vw,70.985vh) scale(.7775)}to{transform:translate(4.63845vw,100vh) scale(.7775)}}.snow:nth-child(60){opacity:1.4048;transform:translate(81.4533vw,-10px) scale(.7744);animation:fall-60 17s -8s linear infinite}@keyframes fall-60{35.984%{transform:translate(74.2344vw,35.984vh) scale(.7744)}to{transform:translate(77.84385vw,100vh) scale(.7744)}}.snow:nth-child(61){opacity:1.968;transform:translate(52.2408vw,-10px) scale(.4824);animation:fall-61 24s -16s linear infinite}@keyframes fall-61{59.869%{transform:translate(57.9279vw,59.869vh) scale(.4824)}to{transform:translate(55.08435vw,100vh) scale(.4824)}}.snow:nth-child(62){opacity:1.6714;transform:translate(96.8481vw,-10px) scale(.4427);animation:fall-62 14s -18s linear infinite}@keyframes fall-62{52.324%{transform:translate(90.9061vw,52.324vh) scale(.4427)}to{transform:translate(93.8771vw,100vh) scale(.4427)}}.snow:nth-child(63){opacity:.9714;transform:translate(22.9096vw,-10px) scale(.2837);animation:fall-63 18s -7s linear infinite}@keyframes fall-63{41.554%{transform:translate(26.7027vw,41.554vh) scale(.2837)}to{transform:translate(24.80615vw,100vh) scale(.2837)}}.snow:nth-child(64){opacity:.8226;transform:translate(99.333vw,-10px) scale(.814);animation:fall-64 22s -2s linear infinite}@keyframes fall-64{35.095%{transform:translate(95.7218vw,35.095vh) scale(.814)}to{transform:translate(97.5274vw,100vh) scale(.814)}}.snow:nth-child(65){opacity:.1582;transform:translate(33.7441vw,-10px) scale(.8091);animation:fall-65 28s -30s linear infinite}@keyframes fall-65{68.205%{transform:translate(37.5404vw,68.205vh) scale(.8091)}to{transform:translate(35.64225vw,100vh) scale(.8091)}}.snow:nth-child(66){opacity:1.9944;transform:translate(27.9106vw,-10px) scale(.7078);animation:fall-66 21s -25s linear infinite}@keyframes fall-66{45.925%{transform:translate(37.8816vw,45.925vh) scale(.7078)}to{transform:translate(32.8961vw,100vh) scale(.7078)}}.snow:nth-child(67){opacity:.6616;transform:translate(24.2091vw,-10px) scale(.3084);animation:fall-67 26s -8s linear infinite}@keyframes fall-67{67.39%{transform:translate(15.9037vw,67.39vh) scale(.3084)}to{transform:translate(20.0564vw,100vh) scale(.3084)}}.snow:nth-child(68){opacity:1.0792;transform:translate(89.7037vw,-10px) scale(.5694);animation:fall-68 12s -12s linear infinite}@keyframes fall-68{44.51%{transform:translate(88.1855vw,44.51vh) scale(.5694)}to{transform:translate(88.9446vw,100vh) scale(.5694)}}.snow:nth-child(69){opacity:1;transform:translate(61.3704vw,-10px) scale(.4413);animation:fall-69 18s -22s linear infinite}@keyframes fall-69{72.858%{transform:translate(55.6313vw,72.858vh) scale(.4413)}to{transform:translate(58.50085vw,100vh) scale(.4413)}}.snow:nth-child(70){opacity:.6328;transform:translate(66.6678vw,-10px) scale(.7407);animation:fall-70 24s -3s linear infinite}@keyframes fall-70{68.011%{transform:translate(66.5504vw,68.011vh) scale(.7407)}to{transform:translate(66.6091vw,100vh) scale(.7407)}}.snow:nth-child(71){opacity:1.0002;transform:translate(81.2665vw,-10px) scale(.0975);animation:fall-71 18s -27s linear infinite}@keyframes fall-71{41.065%{transform:translate(86.9448vw,41.065vh) scale(.0975)}to{transform:translate(84.10565vw,100vh) scale(.0975)}}.snow:nth-child(72){opacity:.4798;transform:translate(15.1362vw,-10px) scale(.0085);animation:fall-72 30s -15s linear infinite}@keyframes fall-72{64.099%{transform:translate(5.3933vw,64.099vh) scale(.0085)}to{transform:translate(10.26475vw,100vh) scale(.0085)}}.snow:nth-child(73){opacity:.2342;transform:translate(86.3968vw,-10px) scale(.7459);animation:fall-73 27s -9s linear infinite}@keyframes fall-73{30.394%{transform:translate(95.7515vw,30.394vh) scale(.7459)}to{transform:translate(91.07415vw,100vh) scale(.7459)}}.snow:nth-child(74){opacity:.3814;transform:translate(42.0363vw,-10px) scale(.4059);animation:fall-74 16s -2s linear infinite}@keyframes fall-74{70.362%{transform:translate(32.1766vw,70.362vh) scale(.4059)}to{transform:translate(37.10645vw,100vh) scale(.4059)}}.snow:nth-child(75){opacity:1.8108;transform:translate(22.5444vw,-10px) scale(.2065);animation:fall-75 21s -11s linear infinite}@keyframes fall-75{54.986%{transform:translate(18.2518vw,54.986vh) scale(.2065)}to{transform:translate(20.3981vw,100vh) scale(.2065)}}.snow:nth-child(76){opacity:.742;transform:translate(14.7729vw,-10px) scale(.4981);animation:fall-76 12s -24s linear infinite}@keyframes fall-76{37.033%{transform:translate(10.7269vw,37.033vh) scale(.4981)}to{transform:translate(12.7499vw,100vh) scale(.4981)}}.snow:nth-child(77){opacity:1.264;transform:translate(64.9095vw,-10px) scale(.2937);animation:fall-77 28s -10s linear infinite}@keyframes fall-77{73.3%{transform:translate(57.2408vw,73.3vh) scale(.2937)}to{transform:translate(61.07515vw,100vh) scale(.2937)}}.snow:nth-child(78){opacity:1.5528;transform:translate(28.5316vw,-10px) scale(.6152);animation:fall-78 28s -22s linear infinite}@keyframes fall-78{74.461%{transform:translate(37.3982vw,74.461vh) scale(.6152)}to{transform:translate(32.9649vw,100vh) scale(.6152)}}.snow:nth-child(79){opacity:1.6702;transform:translate(69.9511vw,-10px) scale(.0153);animation:fall-79 19s -6s linear infinite}@keyframes fall-79{46.958%{transform:translate(78.2196vw,46.958vh) scale(.0153)}to{transform:translate(74.08535vw,100vh) scale(.0153)}}.snow:nth-child(80){opacity:1.0678;transform:translate(69.2957vw,-10px) scale(.787);animation:fall-80 11s -26s linear infinite}@keyframes fall-80{40.392%{transform:translate(69.1723vw,40.392vh) scale(.787)}to{transform:translate(69.234vw,100vh) scale(.787)}}.snow:nth-child(81){opacity:1.052;transform:translate(21.4331vw,-10px) scale(.171);animation:fall-81 27s -19s linear infinite}@keyframes fall-81{46.559%{transform:translate(11.9148vw,46.559vh) scale(.171)}to{transform:translate(16.67395vw,100vh) scale(.171)}}.snow:nth-child(82){opacity:1.8842;transform:translate(62.6093vw,-10px) scale(.9067);animation:fall-82 16s -17s linear infinite}@keyframes fall-82{58.887%{transform:translate(56.6774vw,58.887vh) scale(.9067)}to{transform:translate(59.64335vw,100vh) scale(.9067)}}.snow:nth-child(83){opacity:.7132;transform:translate(50.9452vw,-10px) scale(.4118);animation:fall-83 28s -29s linear infinite}@keyframes fall-83{56.254%{transform:translate(53.6921vw,56.254vh) scale(.4118)}to{transform:translate(52.31865vw,100vh) scale(.4118)}}.snow:nth-child(84){opacity:1.5208;transform:translate(43.6609vw,-10px) scale(.9107);animation:fall-84 26s -4s linear infinite}@keyframes fall-84{47.214%{transform:translate(38.5317vw,47.214vh) scale(.9107)}to{transform:translate(41.0963vw,100vh) scale(.9107)}}.snow:nth-child(85){opacity:.43;transform:translate(48.4378vw,-10px) scale(.3361);animation:fall-85 22s -7s linear infinite}@keyframes fall-85{77.543%{transform:translate(50.4884vw,77.543vh) scale(.3361)}to{transform:translate(49.4631vw,100vh) scale(.3361)}}.snow:nth-child(86){opacity:.0276;transform:translate(62.6912vw,-10px) scale(.2202);animation:fall-86 19s -2s linear infinite}@keyframes fall-86{59.754%{transform:translate(70.63vw,59.754vh) scale(.2202)}to{transform:translate(66.6606vw,100vh) scale(.2202)}}.snow:nth-child(87){opacity:.4912;transform:translate(51.304vw,-10px) scale(.9237);animation:fall-87 16s -29s linear infinite}@keyframes fall-87{32.844%{transform:translate(42.5813vw,32.844vh) scale(.9237)}to{transform:translate(46.94265vw,100vh) scale(.9237)}}.snow:nth-child(88){opacity:1.784;transform:translate(34.6842vw,-10px) scale(.3261);animation:fall-88 19s -18s linear infinite}@keyframes fall-88{50.96%{transform:translate(33.4748vw,50.96vh) scale(.3261)}to{transform:translate(34.0795vw,100vh) scale(.3261)}}.snow:nth-child(89){opacity:1.1912;transform:translate(1.7779vw,-10px) scale(.3091);animation:fall-89 26s -6s linear infinite}@keyframes fall-89{34.603%{transform:translate(2.1166vw,34.603vh) scale(.3091)}to{transform:translate(1.94725vw,100vh) scale(.3091)}}.snow:nth-child(90){opacity:.873;transform:translate(68.6275vw,-10px) scale(.0196);animation:fall-90 18s -8s linear infinite}@keyframes fall-90{47.223%{transform:translate(70.6657vw,47.223vh) scale(.0196)}to{transform:translate(69.6466vw,100vh) scale(.0196)}}.snow:nth-child(91){opacity:1.278;transform:translate(15.536vw,-10px) scale(.9297);animation:fall-91 26s -3s linear infinite}@keyframes fall-91{78.372%{transform:translate(14.6871vw,78.372vh) scale(.9297)}to{transform:translate(15.11155vw,100vh) scale(.9297)}}.snow:nth-child(92){opacity:1.7272;transform:translate(95.1151vw,-10px) scale(.0496);animation:fall-92 26s -4s linear infinite}@keyframes fall-92{43.656%{transform:translate(89.6895vw,43.656vh) scale(.0496)}to{transform:translate(92.4023vw,100vh) scale(.0496)}}.snow:nth-child(93){opacity:1.7168;transform:translate(58.4011vw,-10px) scale(.6555);animation:fall-93 23s -10s linear infinite}@keyframes fall-93{34.38%{transform:translate(48.9901vw,34.38vh) scale(.6555)}to{transform:translate(53.6956vw,100vh) scale(.6555)}}.snow:nth-child(94){opacity:.196;transform:translate(89.1606vw,-10px) scale(.9942);animation:fall-94 28s -15s linear infinite}@keyframes fall-94{48.075%{transform:translate(86.8247vw,48.075vh) scale(.9942)}to{transform:translate(87.99265vw,100vh) scale(.9942)}}.snow:nth-child(95){opacity:.2012;transform:translate(53.9359vw,-10px) scale(.512);animation:fall-95 26s -7s linear infinite}@keyframes fall-95{58.201%{transform:translate(54.9232vw,58.201vh) scale(.512)}to{transform:translate(54.42955vw,100vh) scale(.512)}}.snow:nth-child(96){opacity:1.6974;transform:translate(15.4489vw,-10px) scale(.8076);animation:fall-96 29s -28s linear infinite}@keyframes fall-96{71.859%{transform:translate(14.1967vw,71.859vh) scale(.8076)}to{transform:translate(14.8228vw,100vh) scale(.8076)}}.snow:nth-child(97){opacity:.7732;transform:translate(14.2167vw,-10px) scale(.231);animation:fall-97 15s -18s linear infinite}@keyframes fall-97{33.67%{transform:translate(24.1204vw,33.67vh) scale(.231)}to{transform:translate(19.16855vw,100vh) scale(.231)}}.snow:nth-child(98){opacity:1.9488;transform:translate(99.6295vw,-10px) scale(.2066);animation:fall-98 26s -29s linear infinite}@keyframes fall-98{49.605%{transform:translate(96.7967vw,49.605vh) scale(.2066)}to{transform:translate(98.2131vw,100vh) scale(.2066)}}.snow:nth-child(99){opacity:1.0894;transform:translate(84.3043vw,-10px) scale(.3282);animation:fall-99 24s -16s linear infinite}@keyframes fall-99{64.899%{transform:translate(80.479vw,64.899vh) scale(.3282)}to{transform:translate(82.39165vw,100vh) scale(.3282)}}.snow:nth-child(100){opacity:.4832;transform:translate(97.7312vw,-10px) scale(.6732);animation:fall-100 28s -26s linear infinite}@keyframes fall-100{53.077%{transform:translate(97.6403vw,53.077vh) scale(.6732)}to{transform:translate(97.68575vw,100vh) scale(.6732)}}.snow:nth-child(101){opacity:.0056;transform:translate(26.8789vw,-10px) scale(.8239);animation:fall-101 17s -15s linear infinite}@keyframes fall-101{50.003%{transform:translate(25.6364vw,50.003vh) scale(.8239)}to{transform:translate(26.25765vw,100vh) scale(.8239)}}.snow:nth-child(102){opacity:.3298;transform:translate(86.6979vw,-10px) scale(.9603);animation:fall-102 22s -4s linear infinite}@keyframes fall-102{70.052%{transform:translate(77.5499vw,70.052vh) scale(.9603)}to{transform:translate(82.1239vw,100vh) scale(.9603)}}.snow:nth-child(103){opacity:1.8994;transform:translate(13.0629vw,-10px) scale(.0352);animation:fall-103 23s -24s linear infinite}@keyframes fall-103{79.617%{transform:translate(7.02vw,79.617vh) scale(.0352)}to{transform:translate(10.04145vw,100vh) scale(.0352)}}.snow:nth-child(104){opacity:1.2464;transform:translate(85.1871vw,-10px) scale(.1882);animation:fall-104 16s -2s linear infinite}@keyframes fall-104{75.512%{transform:translate(89.9625vw,75.512vh) scale(.1882)}to{transform:translate(87.5748vw,100vh) scale(.1882)}}.snow:nth-child(105){opacity:1.118;transform:translate(14.5855vw,-10px) scale(.2605);animation:fall-105 21s -25s linear infinite}@keyframes fall-105{35.485%{transform:translate(14.3886vw,35.485vh) scale(.2605)}to{transform:translate(14.48705vw,100vh) scale(.2605)}}.snow:nth-child(106){opacity:1.0584;transform:translate(12.1007vw,-10px) scale(.8826);animation:fall-106 12s -5s linear infinite}@keyframes fall-106{70.865%{transform:translate(7.0126vw,70.865vh) scale(.8826)}to{transform:translate(9.55665vw,100vh) scale(.8826)}}.snow:nth-child(107){opacity:1.0196;transform:translate(38.8028vw,-10px) scale(.0638);animation:fall-107 13s -3s linear infinite}@keyframes fall-107{30.894%{transform:translate(38.6484vw,30.894vh) scale(.0638)}to{transform:translate(38.7256vw,100vh) scale(.0638)}}.snow:nth-child(108){opacity:1;transform:translate(78.8535vw,-10px) scale(.6304);animation:fall-108 25s -19s linear infinite}@keyframes fall-108{72.434%{transform:translate(85.6889vw,72.434vh) scale(.6304)}to{transform:translate(82.2712vw,100vh) scale(.6304)}}.snow:nth-child(109){opacity:1.6456;transform:translate(6.1915vw,-10px) scale(.4015);animation:fall-109 19s -27s linear infinite}@keyframes fall-109{31.369%{transform:translate(2.9173vw,31.369vh) scale(.4015)}to{transform:translate(4.5544vw,100vh) scale(.4015)}}.snow:nth-child(110){opacity:1.1896;transform:translate(32.9461vw,-10px) scale(.6922);animation:fall-110 25s -10s linear infinite}@keyframes fall-110{43.727%{transform:translate(33.8856vw,43.727vh) scale(.6922)}to{transform:translate(33.41585vw,100vh) scale(.6922)}}.snow:nth-child(111){opacity:.0342;transform:translate(43.0613vw,-10px) scale(.4963);animation:fall-111 30s -10s linear infinite}@keyframes fall-111{37.162%{transform:translate(34.1475vw,37.162vh) scale(.4963)}to{transform:translate(38.6044vw,100vh) scale(.4963)}}.snow:nth-child(112){opacity:1.8864;transform:translate(72.0244vw,-10px) scale(.2613);animation:fall-112 16s -22s linear infinite}@keyframes fall-112{51.293%{transform:translate(67.3029vw,51.293vh) scale(.2613)}to{transform:translate(69.66365vw,100vh) scale(.2613)}}.snow:nth-child(113){opacity:.6004;transform:translate(16.1388vw,-10px) scale(.3555);animation:fall-113 24s -22s linear infinite}@keyframes fall-113{53.403%{transform:translate(16.3756vw,53.403vh) scale(.3555)}to{transform:translate(16.2572vw,100vh) scale(.3555)}}.snow:nth-child(114){opacity:1.8028;transform:translate(90.7548vw,-10px) scale(.3462);animation:fall-114 10s -8s linear infinite}@keyframes fall-114{54.527%{transform:translate(88.9981vw,54.527vh) scale(.3462)}to{transform:translate(89.87645vw,100vh) scale(.3462)}}.snow:nth-child(115){opacity:1.5314;transform:translate(28.8828vw,-10px) scale(.4679);animation:fall-115 22s -27s linear infinite}@keyframes fall-115{35.317%{transform:translate(29.4857vw,35.317vh) scale(.4679)}to{transform:translate(29.18425vw,100vh) scale(.4679)}}.snow:nth-child(116){opacity:1.7744;transform:translate(59.2498vw,-10px) scale(.026);animation:fall-116 18s -23s linear infinite}@keyframes fall-116{65.822%{transform:translate(49.3674vw,65.822vh) scale(.026)}to{transform:translate(54.3086vw,100vh) scale(.026)}}.snow:nth-child(117){opacity:.9634;transform:translate(20.7289vw,-10px) scale(.7736);animation:fall-117 13s -12s linear infinite}@keyframes fall-117{42.576%{transform:translate(13.9552vw,42.576vh) scale(.7736)}to{transform:translate(17.34205vw,100vh) scale(.7736)}}.snow:nth-child(118){opacity:1.5706;transform:translate(73.277vw,-10px) scale(.9461);animation:fall-118 10s -16s linear infinite}@keyframes fall-118{37.484%{transform:translate(69.7184vw,37.484vh) scale(.9461)}to{transform:translate(71.4977vw,100vh) scale(.9461)}}.snow:nth-child(119){opacity:.3188;transform:translate(64.7924vw,-10px) scale(.1357);animation:fall-119 23s -6s linear infinite}@keyframes fall-119{62.193%{transform:translate(74.6312vw,62.193vh) scale(.1357)}to{transform:translate(69.7118vw,100vh) scale(.1357)}}.snow:nth-child(120){opacity:1.5824;transform:translate(97.6801vw,-10px) scale(.329);animation:fall-120 13s -6s linear infinite}@keyframes fall-120{56.509%{transform:translate(100.648vw,56.509vh) scale(.329)}to{transform:translate(99.16405vw,100vh) scale(.329)}}.snow:nth-child(121){opacity:1.306;transform:translate(88.0387vw,-10px) scale(.3391);animation:fall-121 13s -19s linear infinite}@keyframes fall-121{57.087%{transform:translate(85.7102vw,57.087vh) scale(.3391)}to{transform:translate(86.87445vw,100vh) scale(.3391)}}.snow:nth-child(122){opacity:.4746;transform:translate(7.0496vw,-10px) scale(.9577);animation:fall-122 11s -4s linear infinite}@keyframes fall-122{56.164%{transform:translate(.7483vw,56.164vh) scale(.9577)}to{transform:translate(3.89895vw,100vh) scale(.9577)}}.snow:nth-child(123){opacity:1.7422;transform:translate(24.3248vw,-10px) scale(.304);animation:fall-123 24s -2s linear infinite}@keyframes fall-123{42.74%{transform:translate(15.2253vw,42.74vh) scale(.304)}to{transform:translate(19.77505vw,100vh) scale(.304)}}.snow:nth-child(124){opacity:1.8408;transform:translate(17.0275vw,-10px) scale(.8514);animation:fall-124 12s -30s linear infinite}@keyframes fall-124{39.632%{transform:translate(21.7871vw,39.632vh) scale(.8514)}to{transform:translate(19.4073vw,100vh) scale(.8514)}}.snow:nth-child(125){opacity:1.0592;transform:translate(49.3298vw,-10px) scale(.0751);animation:fall-125 20s -18s linear infinite}@keyframes fall-125{55.48%{transform:translate(56.6129vw,55.48vh) scale(.0751)}to{transform:translate(52.97135vw,100vh) scale(.0751)}}.snow:nth-child(126){opacity:.911;transform:translate(79.6766vw,-10px) scale(.0088);animation:fall-126 21s -22s linear infinite}@keyframes fall-126{52.954%{transform:translate(80.0924vw,52.954vh) scale(.0088)}to{transform:translate(79.8845vw,100vh) scale(.0088)}}.snow:nth-child(127){opacity:.6072;transform:translate(77.9881vw,-10px) scale(.5558);animation:fall-127 27s -17s linear infinite}@keyframes fall-127{73.46%{transform:translate(82.3944vw,73.46vh) scale(.5558)}to{transform:translate(80.19125vw,100vh) scale(.5558)}}.snow:nth-child(128){opacity:1.1682;transform:translate(99.5685vw,-10px) scale(.3073);animation:fall-128 27s -19s linear infinite}@keyframes fall-128{72.359%{transform:translate(97.1888vw,72.359vh) scale(.3073)}to{transform:translate(98.37865vw,100vh) scale(.3073)}}.snow:nth-child(129){opacity:1.1052;transform:translate(52.0456vw,-10px) scale(.7634);animation:fall-129 24s -13s linear infinite}@keyframes fall-129{34.431%{transform:translate(50.458vw,34.431vh) scale(.7634)}to{transform:translate(51.2518vw,100vh) scale(.7634)}}.snow:nth-child(130){opacity:.7908;transform:translate(73.2629vw,-10px) scale(.4213);animation:fall-130 13s -5s linear infinite}@keyframes fall-130{38.351%{transform:translate(64.013vw,38.351vh) scale(.4213)}to{transform:translate(68.63795vw,100vh) scale(.4213)}}.snow:nth-child(131){opacity:1.1644;transform:translate(50.3968vw,-10px) scale(.5917);animation:fall-131 29s -17s linear infinite}@keyframes fall-131{58.006%{transform:translate(40.4615vw,58.006vh) scale(.5917)}to{transform:translate(45.42915vw,100vh) scale(.5917)}}.snow:nth-child(132){opacity:.3408;transform:translate(72.3206vw,-10px) scale(.6484);animation:fall-132 24s -13s linear infinite}@keyframes fall-132{66.749%{transform:translate(63.3684vw,66.749vh) scale(.6484)}to{transform:translate(67.8445vw,100vh) scale(.6484)}}.snow:nth-child(133){opacity:.7686;transform:translate(15.4761vw,-10px) scale(.6054);animation:fall-133 13s -2s linear infinite}@keyframes fall-133{78.831%{transform:translate(8.7088vw,78.831vh) scale(.6054)}to{transform:translate(12.09245vw,100vh) scale(.6054)}}.snow:nth-child(134){opacity:.7896;transform:translate(54.7404vw,-10px) scale(.3226);animation:fall-134 17s -30s linear infinite}@keyframes fall-134{48.904%{transform:translate(51.051vw,48.904vh) scale(.3226)}to{transform:translate(52.8957vw,100vh) scale(.3226)}}.snow:nth-child(135){opacity:1.1984;transform:translate(21.182vw,-10px) scale(.4897);animation:fall-135 25s -27s linear infinite}@keyframes fall-135{78.829%{transform:translate(29.1618vw,78.829vh) scale(.4897)}to{transform:translate(25.1719vw,100vh) scale(.4897)}}.snow:nth-child(136){opacity:1.3736;transform:translate(95.5744vw,-10px) scale(.0527);animation:fall-136 17s -28s linear infinite}@keyframes fall-136{37.9%{transform:translate(88.3309vw,37.9vh) scale(.0527)}to{transform:translate(91.95265vw,100vh) scale(.0527)}}.snow:nth-child(137){opacity:.102;transform:translate(99.9876vw,-10px) scale(.8396);animation:fall-137 20s -9s linear infinite}@keyframes fall-137{32.324%{transform:translate(107.1251vw,32.324vh) scale(.8396)}to{transform:translate(103.55635vw,100vh) scale(.8396)}}.snow:nth-child(138){opacity:.2498;transform:translate(12.5027vw,-10px) scale(.6602);animation:fall-138 15s -10s linear infinite}@keyframes fall-138{79.911%{transform:translate(8.117vw,79.911vh) scale(.6602)}to{transform:translate(10.30985vw,100vh) scale(.6602)}}.snow:nth-child(139){opacity:.1052;transform:translate(53.1097vw,-10px) scale(.5893);animation:fall-139 14s -4s linear infinite}@keyframes fall-139{76.098%{transform:translate(59.8534vw,76.098vh) scale(.5893)}to{transform:translate(56.48155vw,100vh) scale(.5893)}}.snow:nth-child(140){opacity:.3554;transform:translate(13.7207vw,-10px) scale(.0338);animation:fall-140 29s -22s linear infinite}@keyframes fall-140{69.238%{transform:translate(11.2034vw,69.238vh) scale(.0338)}to{transform:translate(12.46205vw,100vh) scale(.0338)}}.snow:nth-child(141){opacity:.2748;transform:translate(29.5382vw,-10px) scale(.807);animation:fall-141 18s -6s linear infinite}@keyframes fall-141{65.798%{transform:translate(25.3528vw,65.798vh) scale(.807)}to{transform:translate(27.4455vw,100vh) scale(.807)}}.snow:nth-child(142){opacity:.554;transform:translate(49.2606vw,-10px) scale(.3007);animation:fall-142 21s -10s linear infinite}@keyframes fall-142{42.772%{transform:translate(55.1784vw,42.772vh) scale(.3007)}to{transform:translate(52.2195vw,100vh) scale(.3007)}}.snow:nth-child(143){opacity:.4572;transform:translate(77.4059vw,-10px) scale(.5606);animation:fall-143 12s -26s linear infinite}@keyframes fall-143{74.364%{transform:translate(77.3771vw,74.364vh) scale(.5606)}to{transform:translate(77.3915vw,100vh) scale(.5606)}}.snow:nth-child(144){opacity:1.4958;transform:translate(10.5891vw,-10px) scale(.8884);animation:fall-144 22s -18s linear infinite}@keyframes fall-144{74.011%{transform:translate(5.7802vw,74.011vh) scale(.8884)}to{transform:translate(8.18465vw,100vh) scale(.8884)}}.snow:nth-child(145){opacity:1.3224;transform:translate(53.1401vw,-10px) scale(.5875);animation:fall-145 13s -4s linear infinite}@keyframes fall-145{57.23%{transform:translate(54.486vw,57.23vh) scale(.5875)}to{transform:translate(53.81305vw,100vh) scale(.5875)}}.snow:nth-child(146){opacity:.4118;transform:translate(25.5562vw,-10px) scale(.8112);animation:fall-146 13s -24s linear infinite}@keyframes fall-146{75.751%{transform:translate(27.4346vw,75.751vh) scale(.8112)}to{transform:translate(26.4954vw,100vh) scale(.8112)}}.snow:nth-child(147){opacity:.4794;transform:translate(12.0612vw,-10px) scale(.2913);animation:fall-147 18s -2s linear infinite}@keyframes fall-147{54.85%{transform:translate(8.5675vw,54.85vh) scale(.2913)}to{transform:translate(10.31435vw,100vh) scale(.2913)}}.snow:nth-child(148){opacity:.3538;transform:translate(97.7511vw,-10px) scale(.2977);animation:fall-148 19s -18s linear infinite}@keyframes fall-148{48.386%{transform:translate(97.2266vw,48.386vh) scale(.2977)}to{transform:translate(97.48885vw,100vh) scale(.2977)}}.snow:nth-child(149){opacity:.6946;transform:translate(5.1346vw,-10px) scale(.4726);animation:fall-149 22s -2s linear infinite}@keyframes fall-149{79.469%{transform:translate(6.3975vw,79.469vh) scale(.4726)}to{transform:translate(5.76605vw,100vh) scale(.4726)}}.snow:nth-child(150){opacity:1.8898;transform:translate(86.4075vw,-10px) scale(.7179);animation:fall-150 10s -22s linear infinite}@keyframes fall-150{63.136%{transform:translate(78.4782vw,63.136vh) scale(.7179)}to{transform:translate(82.44285vw,100vh) scale(.7179)}}.snow:nth-child(151){opacity:.3798;transform:translate(83.0107vw,-10px) scale(.156);animation:fall-151 23s -19s linear infinite}@keyframes fall-151{67.937%{transform:translate(78.3359vw,67.937vh) scale(.156)}to{transform:translate(80.6733vw,100vh) scale(.156)}}.snow:nth-child(152){opacity:1.587;transform:translate(61.7615vw,-10px) scale(.1108);animation:fall-152 21s -11s linear infinite}@keyframes fall-152{52.48%{transform:translate(55.5377vw,52.48vh) scale(.1108)}to{transform:translate(58.6496vw,100vh) scale(.1108)}}.snow:nth-child(153){opacity:.28;transform:translate(41.0139vw,-10px) scale(.7614);animation:fall-153 20s -19s linear infinite}@keyframes fall-153{45.647%{transform:translate(31.6033vw,45.647vh) scale(.7614)}to{transform:translate(36.3086vw,100vh) scale(.7614)}}.snow:nth-child(154){opacity:1.6574;transform:translate(83.6853vw,-10px) scale(.5243);animation:fall-154 29s -15s linear infinite}@keyframes fall-154{37.111%{transform:translate(75.375vw,37.111vh) scale(.5243)}to{transform:translate(79.53015vw,100vh) scale(.5243)}}.snow:nth-child(155){opacity:.3822;transform:translate(79.047vw,-10px) scale(.4528);animation:fall-155 24s -20s linear infinite}@keyframes fall-155{58.116%{transform:translate(81.0559vw,58.116vh) scale(.4528)}to{transform:translate(80.05145vw,100vh) scale(.4528)}}.snow:nth-child(156){opacity:1.1608;transform:translate(60.0394vw,-10px) scale(.5433);animation:fall-156 22s -30s linear infinite}@keyframes fall-156{55.408%{transform:translate(52.3013vw,55.408vh) scale(.5433)}to{transform:translate(56.17035vw,100vh) scale(.5433)}}.snow:nth-child(157){opacity:.7588;transform:translate(57.4584vw,-10px) scale(.9357);animation:fall-157 14s -12s linear infinite}@keyframes fall-157{47.459%{transform:translate(58.8609vw,47.459vh) scale(.9357)}to{transform:translate(58.15965vw,100vh) scale(.9357)}}.snow:nth-child(158){opacity:1.2364;transform:translate(26.9062vw,-10px) scale(.9034);animation:fall-158 10s -9s linear infinite}@keyframes fall-158{74.929%{transform:translate(16.9437vw,74.929vh) scale(.9034)}to{transform:translate(21.92495vw,100vh) scale(.9034)}}.snow:nth-child(159){opacity:.3012;transform:translate(42.1111vw,-10px) scale(.7009);animation:fall-159 19s -19s linear infinite}@keyframes fall-159{66.992%{transform:translate(48.2835vw,66.992vh) scale(.7009)}to{transform:translate(45.1973vw,100vh) scale(.7009)}}.snow:nth-child(160){opacity:1.1236;transform:translate(17.6395vw,-10px) scale(.5386);animation:fall-160 27s -14s linear infinite}@keyframes fall-160{68.518%{transform:translate(8.3681vw,68.518vh) scale(.5386)}to{transform:translate(13.0038vw,100vh) scale(.5386)}}.snow:nth-child(161){opacity:1.0922;transform:translate(13.5557vw,-10px) scale(.9228);animation:fall-161 29s -7s linear infinite}@keyframes fall-161{77.369%{transform:translate(13.5087vw,77.369vh) scale(.9228)}to{transform:translate(13.5322vw,100vh) scale(.9228)}}.snow:nth-child(162){opacity:1.0738;transform:translate(99.9529vw,-10px) scale(.458);animation:fall-162 21s -17s linear infinite}@keyframes fall-162{52.665%{transform:translate(106.2027vw,52.665vh) scale(.458)}to{transform:translate(103.0778vw,100vh) scale(.458)}}.snow:nth-child(163){opacity:1.216;transform:translate(68.6504vw,-10px) scale(.5072);animation:fall-163 24s -25s linear infinite}@keyframes fall-163{34.39%{transform:translate(70.9717vw,34.39vh) scale(.5072)}to{transform:translate(69.81105vw,100vh) scale(.5072)}}.snow:nth-child(164){opacity:.0638;transform:translate(60.5718vw,-10px) scale(.188);animation:fall-164 27s -7s linear infinite}@keyframes fall-164{68.163%{transform:translate(53.3714vw,68.163vh) scale(.188)}to{transform:translate(56.9716vw,100vh) scale(.188)}}.snow:nth-child(165){opacity:1.6354;transform:translate(41.0587vw,-10px) scale(.0796);animation:fall-165 20s -25s linear infinite}@keyframes fall-165{51.475%{transform:translate(37.7093vw,51.475vh) scale(.0796)}to{transform:translate(39.384vw,100vh) scale(.0796)}}.snow:nth-child(166){opacity:1.106;transform:translate(48.3864vw,-10px) scale(.7404);animation:fall-166 27s -5s linear infinite}@keyframes fall-166{41.762%{transform:translate(57.0551vw,41.762vh) scale(.7404)}to{transform:translate(52.72075vw,100vh) scale(.7404)}}.snow:nth-child(167){opacity:1.3632;transform:translate(11.9151vw,-10px) scale(.7714);animation:fall-167 10s -28s linear infinite}@keyframes fall-167{58.996%{transform:translate(17.9084vw,58.996vh) scale(.7714)}to{transform:translate(14.91175vw,100vh) scale(.7714)}}.snow:nth-child(168){opacity:1.4336;transform:translate(30.4041vw,-10px) scale(.7509);animation:fall-168 20s -7s linear infinite}@keyframes fall-168{57.91%{transform:translate(26.0856vw,57.91vh) scale(.7509)}to{transform:translate(28.24485vw,100vh) scale(.7509)}}.snow:nth-child(169){opacity:.666;transform:translate(31.3893vw,-10px) scale(.9876);animation:fall-169 15s -3s linear infinite}@keyframes fall-169{33.442%{transform:translate(38.6083vw,33.442vh) scale(.9876)}to{transform:translate(34.9988vw,100vh) scale(.9876)}}.snow:nth-child(170){opacity:.3264;transform:translate(87.4169vw,-10px) scale(.49);animation:fall-170 17s -12s linear infinite}@keyframes fall-170{59.095%{transform:translate(84.0929vw,59.095vh) scale(.49)}to{transform:translate(85.7549vw,100vh) scale(.49)}}.snow:nth-child(171){opacity:.0726;transform:translate(14.2041vw,-10px) scale(.9607);animation:fall-171 21s -16s linear infinite}@keyframes fall-171{48.844%{transform:translate(18.9748vw,48.844vh) scale(.9607)}to{transform:translate(16.58945vw,100vh) scale(.9607)}}.snow:nth-child(172){opacity:1.9862;transform:translate(9.319vw,-10px) scale(.8956);animation:fall-172 27s -20s linear infinite}@keyframes fall-172{79.786%{transform:translate(.1813vw,79.786vh) scale(.8956)}to{transform:translate(4.75015vw,100vh) scale(.8956)}}.snow:nth-child(173){opacity:1.9228;transform:translate(89.7405vw,-10px) scale(.8099);animation:fall-173 20s -3s linear infinite}@keyframes fall-173{60.249%{transform:translate(86.1426vw,60.249vh) scale(.8099)}to{transform:translate(87.94155vw,100vh) scale(.8099)}}.snow:nth-child(174){opacity:1.1562;transform:translate(16.4411vw,-10px) scale(.9301);animation:fall-174 10s -17s linear infinite}@keyframes fall-174{71.242%{transform:translate(10.7853vw,71.242vh) scale(.9301)}to{transform:translate(13.6132vw,100vh) scale(.9301)}}.snow:nth-child(175){opacity:.2292;transform:translate(7.0594vw,-10px) scale(.5784);animation:fall-175 29s -30s linear infinite}@keyframes fall-175{61.58%{transform:translate(12.1833vw,61.58vh) scale(.5784)}to{transform:translate(9.62135vw,100vh) scale(.5784)}}.snow:nth-child(176){opacity:.3198;transform:translate(96.8622vw,-10px) scale(.9632);animation:fall-176 25s -17s linear infinite}@keyframes fall-176{43.689%{transform:translate(102.9644vw,43.689vh) scale(.9632)}to{transform:translate(99.9133vw,100vh) scale(.9632)}}.snow:nth-child(177){opacity:1.7764;transform:translate(43.9053vw,-10px) scale(.4704);animation:fall-177 30s -14s linear infinite}@keyframes fall-177{45.67%{transform:translate(46.5417vw,45.67vh) scale(.4704)}to{transform:translate(45.2235vw,100vh) scale(.4704)}}.snow:nth-child(178){opacity:.735;transform:translate(79.11vw,-10px) scale(.2623);animation:fall-178 22s -12s linear infinite}@keyframes fall-178{39.532%{transform:translate(82.1061vw,39.532vh) scale(.2623)}to{transform:translate(80.60805vw,100vh) scale(.2623)}}.snow:nth-child(179){opacity:.8644;transform:translate(71.8061vw,-10px) scale(.7799);animation:fall-179 26s -9s linear infinite}@keyframes fall-179{54.742%{transform:translate(69.8953vw,54.742vh) scale(.7799)}to{transform:translate(70.8507vw,100vh) scale(.7799)}}.snow:nth-child(180){opacity:1.7936;transform:translate(81.8748vw,-10px) scale(.8383);animation:fall-180 28s -30s linear infinite}@keyframes fall-180{41.805%{transform:translate(83.0682vw,41.805vh) scale(.8383)}to{transform:translate(82.4715vw,100vh) scale(.8383)}}.snow:nth-child(181){opacity:1.76;transform:translate(32.4558vw,-10px) scale(.122);animation:fall-181 19s -8s linear infinite}@keyframes fall-181{64.912%{transform:translate(29.5335vw,64.912vh) scale(.122)}to{transform:translate(30.99465vw,100vh) scale(.122)}}.snow:nth-child(182){opacity:1.9262;transform:translate(45.0277vw,-10px) scale(.6155);animation:fall-182 14s -19s linear infinite}@keyframes fall-182{33.155%{transform:translate(54.1342vw,33.155vh) scale(.6155)}to{transform:translate(49.58095vw,100vh) scale(.6155)}}.snow:nth-child(183){opacity:1.0536;transform:translate(21.2571vw,-10px) scale(.319);animation:fall-183 25s -10s linear infinite}@keyframes fall-183{60.605%{transform:translate(13.0484vw,60.605vh) scale(.319)}to{transform:translate(17.15275vw,100vh) scale(.319)}}.snow:nth-child(184){opacity:.8896;transform:translate(17.2244vw,-10px) scale(.4615);animation:fall-184 18s -16s linear infinite}@keyframes fall-184{52.643%{transform:translate(8.9749vw,52.643vh) scale(.4615)}to{transform:translate(13.09965vw,100vh) scale(.4615)}}.snow:nth-child(185){opacity:.8418;transform:translate(83.6459vw,-10px) scale(.8822);animation:fall-185 17s -15s linear infinite}@keyframes fall-185{51.585%{transform:translate(88.5982vw,51.585vh) scale(.8822)}to{transform:translate(86.12205vw,100vh) scale(.8822)}}.snow:nth-child(186){opacity:1.999;transform:translate(57.8158vw,-10px) scale(.5048);animation:fall-186 24s -19s linear infinite}@keyframes fall-186{52.646%{transform:translate(57.6259vw,52.646vh) scale(.5048)}to{transform:translate(57.72085vw,100vh) scale(.5048)}}.snow:nth-child(187){opacity:.2552;transform:translate(47.1137vw,-10px) scale(.7388);animation:fall-187 12s -11s linear infinite}@keyframes fall-187{50.595%{transform:translate(40.989vw,50.595vh) scale(.7388)}to{transform:translate(44.05135vw,100vh) scale(.7388)}}.snow:nth-child(188){opacity:1.6936;transform:translate(38.0726vw,-10px) scale(.9031);animation:fall-188 15s -24s linear infinite}@keyframes fall-188{70.176%{transform:translate(35.9181vw,70.176vh) scale(.9031)}to{transform:translate(36.99535vw,100vh) scale(.9031)}}.snow:nth-child(189){opacity:.912;transform:translate(80.4783vw,-10px) scale(.2611);animation:fall-189 14s -6s linear infinite}@keyframes fall-189{53.818%{transform:translate(89.9441vw,53.818vh) scale(.2611)}to{transform:translate(85.2112vw,100vh) scale(.2611)}}.snow:nth-child(190){opacity:.11;transform:translate(84.7416vw,-10px) scale(.6176);animation:fall-190 24s -8s linear infinite}@keyframes fall-190{30.444%{transform:translate(90.4139vw,30.444vh) scale(.6176)}to{transform:translate(87.57775vw,100vh) scale(.6176)}}.snow:nth-child(191){opacity:.765;transform:translate(98.3019vw,-10px) scale(.5157);animation:fall-191 23s -23s linear infinite}@keyframes fall-191{60.227%{transform:translate(98.2079vw,60.227vh) scale(.5157)}to{transform:translate(98.2549vw,100vh) scale(.5157)}}.snow:nth-child(192){opacity:1.9124;transform:translate(54.0532vw,-10px) scale(.167);animation:fall-192 16s -11s linear infinite}@keyframes fall-192{41.149%{transform:translate(61.575vw,41.149vh) scale(.167)}to{transform:translate(57.8141vw,100vh) scale(.167)}}.snow:nth-child(193){opacity:.1656;transform:translate(33.3537vw,-10px) scale(.7876);animation:fall-193 22s -14s linear infinite}@keyframes fall-193{55.16%{transform:translate(27.8499vw,55.16vh) scale(.7876)}to{transform:translate(30.6018vw,100vh) scale(.7876)}}.snow:nth-child(194){opacity:.2838;transform:translate(24.1668vw,-10px) scale(.9884);animation:fall-194 22s -2s linear infinite}@keyframes fall-194{37.419%{transform:translate(31.6572vw,37.419vh) scale(.9884)}to{transform:translate(27.912vw,100vh) scale(.9884)}}.snow:nth-child(195){opacity:.6176;transform:translate(90.3473vw,-10px) scale(.9211);animation:fall-195 28s -5s linear infinite}@keyframes fall-195{38.746%{transform:translate(83.2746vw,38.746vh) scale(.9211)}to{transform:translate(86.81095vw,100vh) scale(.9211)}}.snow:nth-child(196){opacity:1.4666;transform:translate(25.6574vw,-10px) scale(.6224);animation:fall-196 15s -28s linear infinite}@keyframes fall-196{60.403%{transform:translate(28.991vw,60.403vh) scale(.6224)}to{transform:translate(27.3242vw,100vh) scale(.6224)}}.snow:nth-child(197){opacity:.3332;transform:translate(32.5546vw,-10px) scale(.5294);animation:fall-197 19s -3s linear infinite}@keyframes fall-197{69.061%{transform:translate(41.3288vw,69.061vh) scale(.5294)}to{transform:translate(36.9417vw,100vh) scale(.5294)}}.snow:nth-child(198){opacity:.9072;transform:translate(18.7679vw,-10px) scale(.3353);animation:fall-198 23s -19s linear infinite}@keyframes fall-198{30.516%{transform:translate(24.9548vw,30.516vh) scale(.3353)}to{transform:translate(21.86135vw,100vh) scale(.3353)}}.snow:nth-child(199){opacity:1.2282;transform:translate(90.3233vw,-10px) scale(.3036);animation:fall-199 14s -4s linear infinite}@keyframes fall-199{34.462%{transform:translate(81.9848vw,34.462vh) scale(.3036)}to{transform:translate(86.15405vw,100vh) scale(.3036)}}.snow:nth-child(200){opacity:.791;transform:translate(3.7349vw,-10px) scale(.3093);animation:fall-200 21s -19s linear infinite}@keyframes fall-200{64.352%{transform:translate(10.0325vw,64.352vh) scale(.3093)}to{transform:translate(6.8837vw,100vh) scale(.3093)}}.snow:nth-child(201){opacity:1.1266;transform:translate(33.6436vw,-10px) scale(.7121);animation:fall-201 11s -7s linear infinite}@keyframes fall-201{45.126%{transform:translate(27.8482vw,45.126vh) scale(.7121)}to{transform:translate(30.7459vw,100vh) scale(.7121)}}.snow:nth-child(202){opacity:1.4308;transform:translate(50.881vw,-10px) scale(.4503);animation:fall-202 12s -7s linear infinite}@keyframes fall-202{33.135%{transform:translate(48.7569vw,33.135vh) scale(.4503)}to{transform:translate(49.81895vw,100vh) scale(.4503)}}.snow:nth-child(203){opacity:.9008;transform:translate(41.3794vw,-10px) scale(.1664);animation:fall-203 17s -2s linear infinite}@keyframes fall-203{41.449%{transform:translate(31.4763vw,41.449vh) scale(.1664)}to{transform:translate(36.42785vw,100vh) scale(.1664)}}.snow:nth-child(204){opacity:1.8566;transform:translate(45.4784vw,-10px) scale(.383);animation:fall-204 23s -7s linear infinite}@keyframes fall-204{64.551%{transform:translate(41.2248vw,64.551vh) scale(.383)}to{transform:translate(43.3516vw,100vh) scale(.383)}}.snow:nth-child(205){opacity:.5014;transform:translate(81.592vw,-10px) scale(.7123);animation:fall-205 12s -1s linear infinite}@keyframes fall-205{42.619%{transform:translate(81.1985vw,42.619vh) scale(.7123)}to{transform:translate(81.39525vw,100vh) scale(.7123)}}.snow:nth-child(206){opacity:.6738;transform:translate(74.184vw,-10px) scale(.9107);animation:fall-206 26s -1s linear infinite}@keyframes fall-206{44.558%{transform:translate(74.2365vw,44.558vh) scale(.9107)}to{transform:translate(74.21025vw,100vh) scale(.9107)}}.snow:nth-child(207){opacity:.2228;transform:translate(49.9268vw,-10px) scale(.7791);animation:fall-207 15s -13s linear infinite}@keyframes fall-207{54.049%{transform:translate(55.9772vw,54.049vh) scale(.7791)}to{transform:translate(52.952vw,100vh) scale(.7791)}}.snow:nth-child(208){opacity:.198;transform:translate(85.7399vw,-10px) scale(.3281);animation:fall-208 10s -26s linear infinite}@keyframes fall-208{47.94%{transform:translate(88.9303vw,47.94vh) scale(.3281)}to{transform:translate(87.3351vw,100vh) scale(.3281)}}.snow:nth-child(209){opacity:.9474;transform:translate(46.4348vw,-10px) scale(.3245);animation:fall-209 11s -3s linear infinite}@keyframes fall-209{47.304%{transform:translate(43.4828vw,47.304vh) scale(.3245)}to{transform:translate(44.9588vw,100vh) scale(.3245)}}.snow:nth-child(210){opacity:1.2456;transform:translate(21.4573vw,-10px) scale(.8261);animation:fall-210 30s -23s linear infinite}@keyframes fall-210{61.916%{transform:translate(23.7223vw,61.916vh) scale(.8261)}to{transform:translate(22.5898vw,100vh) scale(.8261)}}.snow:nth-child(211){opacity:.5624;transform:translate(97.0851vw,-10px) scale(.7115);animation:fall-211 22s -19s linear infinite}@keyframes fall-211{31.998%{transform:translate(94.0568vw,31.998vh) scale(.7115)}to{transform:translate(95.57095vw,100vh) scale(.7115)}}.snow:nth-child(212){opacity:.8974;transform:translate(70.8155vw,-10px) scale(.5473);animation:fall-212 28s -7s linear infinite}@keyframes fall-212{40.746%{transform:translate(68.1754vw,40.746vh) scale(.5473)}to{transform:translate(69.49545vw,100vh) scale(.5473)}}.snow:nth-child(213){opacity:1.6722;transform:translate(81.6781vw,-10px) scale(.3473);animation:fall-213 17s -5s linear infinite}@keyframes fall-213{44.952%{transform:translate(84.4746vw,44.952vh) scale(.3473)}to{transform:translate(83.07635vw,100vh) scale(.3473)}}.snow:nth-child(214){opacity:1.5564;transform:translate(81.3356vw,-10px) scale(.0396);animation:fall-214 29s -25s linear infinite}@keyframes fall-214{36.505%{transform:translate(77.894vw,36.505vh) scale(.0396)}to{transform:translate(79.6148vw,100vh) scale(.0396)}}.snow:nth-child(215){opacity:.1624;transform:translate(90.2041vw,-10px) scale(.5176);animation:fall-215 21s -22s linear infinite}@keyframes fall-215{38.905%{transform:translate(89.8746vw,38.905vh) scale(.5176)}to{transform:translate(90.03935vw,100vh) scale(.5176)}}.snow:nth-child(216){opacity:1.8844;transform:translate(4.7511vw,-10px) scale(.8259);animation:fall-216 26s -25s linear infinite}@keyframes fall-216{46.107%{transform:translate(-1.1649vw,46.107vh) scale(.8259)}to{transform:translate(1.7931vw,100vh) scale(.8259)}}.snow:nth-child(217){opacity:.616;transform:translate(62.8761vw,-10px) scale(.9195);animation:fall-217 15s -11s linear infinite}@keyframes fall-217{52.512%{transform:translate(57.104vw,52.512vh) scale(.9195)}to{transform:translate(59.99005vw,100vh) scale(.9195)}}.snow:nth-child(218){opacity:1.8996;transform:translate(51.8475vw,-10px) scale(.6658);animation:fall-218 17s -18s linear infinite}@keyframes fall-218{39.952%{transform:translate(57.2262vw,39.952vh) scale(.6658)}to{transform:translate(54.53685vw,100vh) scale(.6658)}}.snow:nth-child(219){opacity:.1494;transform:translate(75.9128vw,-10px) scale(.0002);animation:fall-219 20s -25s linear infinite}@keyframes fall-219{63.964%{transform:translate(78.4853vw,63.964vh) scale(.0002)}to{transform:translate(77.19905vw,100vh) scale(.0002)}}.snow:nth-child(220){opacity:.4998;transform:translate(8.385vw,-10px) scale(.9005);animation:fall-220 19s -30s linear infinite}@keyframes fall-220{62.056%{transform:translate(12.6724vw,62.056vh) scale(.9005)}to{transform:translate(10.5287vw,100vh) scale(.9005)}}.snow:nth-child(221){opacity:.814;transform:translate(56.1336vw,-10px) scale(.2006);animation:fall-221 16s -11s linear infinite}@keyframes fall-221{43.75%{transform:translate(55.1874vw,43.75vh) scale(.2006)}to{transform:translate(55.6605vw,100vh) scale(.2006)}}.snow:nth-child(222){opacity:1.915;transform:translate(41.8782vw,-10px) scale(.1775);animation:fall-222 24s -8s linear infinite}@keyframes fall-222{72.37%{transform:translate(40.1182vw,72.37vh) scale(.1775)}to{transform:translate(40.9982vw,100vh) scale(.1775)}}.snow:nth-child(223){opacity:.0208;transform:translate(82.2416vw,-10px) scale(.9095);animation:fall-223 28s -24s linear infinite}@keyframes fall-223{72.886%{transform:translate(79.7315vw,72.886vh) scale(.9095)}to{transform:translate(80.98655vw,100vh) scale(.9095)}}.snow:nth-child(224){opacity:.847;transform:translate(77.3893vw,-10px) scale(.3602);animation:fall-224 14s -14s linear infinite}@keyframes fall-224{42.48%{transform:translate(68.9265vw,42.48vh) scale(.3602)}to{transform:translate(73.1579vw,100vh) scale(.3602)}}.snow:nth-child(225){opacity:1.0922;transform:translate(78.4776vw,-10px) scale(.1685);animation:fall-225 22s -11s linear infinite}@keyframes fall-225{47.379%{transform:translate(73.5305vw,47.379vh) scale(.1685)}to{transform:translate(76.00405vw,100vh) scale(.1685)}}.snow:nth-child(226){opacity:1.8842;transform:translate(77.5466vw,-10px) scale(.3267);animation:fall-226 14s -5s linear infinite}@keyframes fall-226{48.611%{transform:translate(83.394vw,48.611vh) scale(.3267)}to{transform:translate(80.4703vw,100vh) scale(.3267)}}.snow:nth-child(227){opacity:1.9716;transform:translate(37.7394vw,-10px) scale(.8319);animation:fall-227 10s -28s linear infinite}@keyframes fall-227{73.13%{transform:translate(45.822vw,73.13vh) scale(.8319)}to{transform:translate(41.7807vw,100vh) scale(.8319)}}.snow:nth-child(228){opacity:.8844;transform:translate(82.2784vw,-10px) scale(.8384);animation:fall-228 12s -29s linear infinite}@keyframes fall-228{59.4%{transform:translate(85.7601vw,59.4vh) scale(.8384)}to{transform:translate(84.01925vw,100vh) scale(.8384)}}.snow:nth-child(229){opacity:1.0508;transform:translate(50.2329vw,-10px) scale(.2145);animation:fall-229 17s -26s linear infinite}@keyframes fall-229{55.314%{transform:translate(54.7883vw,55.314vh) scale(.2145)}to{transform:translate(52.5106vw,100vh) scale(.2145)}}.snow:nth-child(230){opacity:.119;transform:translate(71.1525vw,-10px) scale(.3961);animation:fall-230 29s -11s linear infinite}@keyframes fall-230{61.952%{transform:translate(80.026vw,61.952vh) scale(.3961)}to{transform:translate(75.58925vw,100vh) scale(.3961)}}.snow:nth-child(231){opacity:.7726;transform:translate(87.1558vw,-10px) scale(.1876);animation:fall-231 20s -11s linear infinite}@keyframes fall-231{72.382%{transform:translate(87.7058vw,72.382vh) scale(.1876)}to{transform:translate(87.4308vw,100vh) scale(.1876)}}.snow:nth-child(232){opacity:.9624;transform:translate(99.6896vw,-10px) scale(.775);animation:fall-232 19s -20s linear infinite}@keyframes fall-232{79.846%{transform:translate(102.0786vw,79.846vh) scale(.775)}to{transform:translate(100.8841vw,100vh) scale(.775)}}.snow:nth-child(233){opacity:1.1672;transform:translate(69.4967vw,-10px) scale(.608);animation:fall-233 27s -22s linear infinite}@keyframes fall-233{67.024%{transform:translate(78.1696vw,67.024vh) scale(.608)}to{transform:translate(73.83315vw,100vh) scale(.608)}}.snow:nth-child(234){opacity:1.8296;transform:translate(4.1936vw,-10px) scale(.5821);animation:fall-234 23s -13s linear infinite}@keyframes fall-234{59.038%{transform:translate(12.5758vw,59.038vh) scale(.5821)}to{transform:translate(8.3847vw,100vh) scale(.5821)}}.snow:nth-child(235){opacity:1.2108;transform:translate(25.7108vw,-10px) scale(.7692);animation:fall-235 12s -27s linear infinite}@keyframes fall-235{77.058%{transform:translate(21.8741vw,77.058vh) scale(.7692)}to{transform:translate(23.79245vw,100vh) scale(.7692)}}.snow:nth-child(236){opacity:1.2952;transform:translate(41.4495vw,-10px) scale(.3718);animation:fall-236 28s -10s linear infinite}@keyframes fall-236{46.321%{transform:translate(34.7813vw,46.321vh) scale(.3718)}to{transform:translate(38.1154vw,100vh) scale(.3718)}}.snow:nth-child(237){opacity:.9214;transform:translate(91.4236vw,-10px) scale(.0002);animation:fall-237 13s -6s linear infinite}@keyframes fall-237{53.469%{transform:translate(93.8576vw,53.469vh) scale(.0002)}to{transform:translate(92.6406vw,100vh) scale(.0002)}}.snow:nth-child(238){opacity:.79;transform:translate(70.4043vw,-10px) scale(.1699);animation:fall-238 26s -8s linear infinite}@keyframes fall-238{34.037%{transform:translate(70.8487vw,34.037vh) scale(.1699)}to{transform:translate(70.6265vw,100vh) scale(.1699)}}.snow:nth-child(239){opacity:.7934;transform:translate(29.3942vw,-10px) scale(.6299);animation:fall-239 27s -29s linear infinite}@keyframes fall-239{50.216%{transform:translate(23.3883vw,50.216vh) scale(.6299)}to{transform:translate(26.39125vw,100vh) scale(.6299)}}.snow:nth-child(240){opacity:1.7438;transform:translate(94.9186vw,-10px) scale(.4147);animation:fall-240 18s -17s linear infinite}@keyframes fall-240{38.157%{transform:translate(94.7492vw,38.157vh) scale(.4147)}to{transform:translate(94.8339vw,100vh) scale(.4147)}}.snow:nth-child(241){opacity:.8298;transform:translate(57.1107vw,-10px) scale(.9473);animation:fall-241 17s -11s linear infinite}@keyframes fall-241{66.75%{transform:translate(56.6889vw,66.75vh) scale(.9473)}to{transform:translate(56.8998vw,100vh) scale(.9473)}}.snow:nth-child(242){opacity:.605;transform:translate(92.7213vw,-10px) scale(.5735);animation:fall-242 10s -1s linear infinite}@keyframes fall-242{71.693%{transform:translate(100.5679vw,71.693vh) scale(.5735)}to{transform:translate(96.6446vw,100vh) scale(.5735)}}.snow:nth-child(243){opacity:.5748;transform:translate(41.4855vw,-10px) scale(.9107);animation:fall-243 15s -19s linear infinite}@keyframes fall-243{53.435%{transform:translate(44.9626vw,53.435vh) scale(.9107)}to{transform:translate(43.22405vw,100vh) scale(.9107)}}.snow:nth-child(244){opacity:.1732;transform:translate(34.0942vw,-10px) scale(.1132);animation:fall-244 15s -12s linear infinite}@keyframes fall-244{49.08%{transform:translate(36.9031vw,49.08vh) scale(.1132)}to{transform:translate(35.49865vw,100vh) scale(.1132)}}.snow:nth-child(245){opacity:1.911;transform:translate(48.3361vw,-10px) scale(.0404);animation:fall-245 10s -13s linear infinite}@keyframes fall-245{64.754%{transform:translate(47.7501vw,64.754vh) scale(.0404)}to{transform:translate(48.0431vw,100vh) scale(.0404)}}.snow:nth-child(246){opacity:1.7732;transform:translate(23.4822vw,-10px) scale(.9211);animation:fall-246 12s -13s linear infinite}@keyframes fall-246{45.224%{transform:translate(26.7893vw,45.224vh) scale(.9211)}to{transform:translate(25.13575vw,100vh) scale(.9211)}}.snow:nth-child(247){opacity:.9754;transform:translate(50.5777vw,-10px) scale(.723);animation:fall-247 29s -11s linear infinite}@keyframes fall-247{55.482%{transform:translate(56.0877vw,55.482vh) scale(.723)}to{transform:translate(53.3327vw,100vh) scale(.723)}}.snow:nth-child(248){opacity:1.3924;transform:translate(85.5497vw,-10px) scale(.7559);animation:fall-248 21s -9s linear infinite}@keyframes fall-248{48.67%{transform:translate(83.7458vw,48.67vh) scale(.7559)}to{transform:translate(84.64775vw,100vh) scale(.7559)}}.snow:nth-child(249){opacity:1.9892;transform:translate(79.0776vw,-10px) scale(.9088);animation:fall-249 19s -19s linear infinite}@keyframes fall-249{75.939%{transform:translate(79.4673vw,75.939vh) scale(.9088)}to{transform:translate(79.27245vw,100vh) scale(.9088)}}.snow:nth-child(250){opacity:.9246;transform:translate(70.3488vw,-10px) scale(.1722);animation:fall-250 26s -12s linear infinite}@keyframes fall-250{79.306%{transform:translate(78.8123vw,79.306vh) scale(.1722)}to{transform:translate(74.58055vw,100vh) scale(.1722)}}.snow:nth-child(251){opacity:.5386;transform:translate(21.1146vw,-10px) scale(.8148);animation:fall-251 24s -28s linear infinite}@keyframes fall-251{67.018%{transform:translate(22.9508vw,67.018vh) scale(.8148)}to{transform:translate(22.0327vw,100vh) scale(.8148)}}.snow:nth-child(252){opacity:1.8186;transform:translate(20.7703vw,-10px) scale(.8803);animation:fall-252 14s -12s linear infinite}@keyframes fall-252{64.594%{transform:translate(15.3944vw,64.594vh) scale(.8803)}to{transform:translate(18.08235vw,100vh) scale(.8803)}}.snow:nth-child(253){opacity:1.121;transform:translate(38.3263vw,-10px) scale(.745);animation:fall-253 20s -6s linear infinite}@keyframes fall-253{62.514%{transform:translate(41.826vw,62.514vh) scale(.745)}to{transform:translate(40.07615vw,100vh) scale(.745)}}.snow:nth-child(254){opacity:.6392;transform:translate(36.4797vw,-10px) scale(.3228);animation:fall-254 26s -22s linear infinite}@keyframes fall-254{50.589%{transform:translate(41.83vw,50.589vh) scale(.3228)}to{transform:translate(39.15485vw,100vh) scale(.3228)}}.snow:nth-child(255){opacity:1.357;transform:translate(60.7796vw,-10px) scale(.7923);animation:fall-255 15s -15s linear infinite}@keyframes fall-255{61.221%{transform:translate(68.5873vw,61.221vh) scale(.7923)}to{transform:translate(64.68345vw,100vh) scale(.7923)}}.snow:nth-child(256){opacity:1.5698;transform:translate(71.4239vw,-10px) scale(.415);animation:fall-256 10s -15s linear infinite}@keyframes fall-256{34.301%{transform:translate(62.2666vw,34.301vh) scale(.415)}to{transform:translate(66.84525vw,100vh) scale(.415)}}.snow:nth-child(257){opacity:.1794;transform:translate(86.4054vw,-10px) scale(.7944);animation:fall-257 18s -25s linear infinite}@keyframes fall-257{47.834%{transform:translate(92.7454vw,47.834vh) scale(.7944)}to{transform:translate(89.5754vw,100vh) scale(.7944)}}.snow:nth-child(258){opacity:.8022;transform:translate(34.7638vw,-10px) scale(.5564);animation:fall-258 22s -13s linear infinite}@keyframes fall-258{48.61%{transform:translate(41.3852vw,48.61vh) scale(.5564)}to{transform:translate(38.0745vw,100vh) scale(.5564)}}.snow:nth-child(259){opacity:1.0192;transform:translate(39.6463vw,-10px) scale(.4079);animation:fall-259 10s -13s linear infinite}@keyframes fall-259{67.826%{transform:translate(41.2703vw,67.826vh) scale(.4079)}to{transform:translate(40.4583vw,100vh) scale(.4079)}}.snow:nth-child(260){opacity:1.914;transform:translate(41.116vw,-10px) scale(.6025);animation:fall-260 19s -16s linear infinite}@keyframes fall-260{55.541%{transform:translate(48.5627vw,55.541vh) scale(.6025)}to{transform:translate(44.83935vw,100vh) scale(.6025)}}.snow:nth-child(261){opacity:.2296;transform:translate(5.3507vw,-10px) scale(.1911);animation:fall-261 26s -14s linear infinite}@keyframes fall-261{57.56%{transform:translate(12.0347vw,57.56vh) scale(.1911)}to{transform:translate(8.6927vw,100vh) scale(.1911)}}.snow:nth-child(262){opacity:1.1312;transform:translate(42.5043vw,-10px) scale(.3188);animation:fall-262 19s -22s linear infinite}@keyframes fall-262{50.466%{transform:translate(44.4895vw,50.466vh) scale(.3188)}to{transform:translate(43.4969vw,100vh) scale(.3188)}}.snow:nth-child(263){opacity:.6134;transform:translate(72.7243vw,-10px) scale(.2773);animation:fall-263 28s -30s linear infinite}@keyframes fall-263{34.861%{transform:translate(79.8785vw,34.861vh) scale(.2773)}to{transform:translate(76.3014vw,100vh) scale(.2773)}}.snow:nth-child(264){opacity:.7408;transform:translate(98.6468vw,-10px) scale(.45);animation:fall-264 19s -12s linear infinite}@keyframes fall-264{31.82%{transform:translate(90.0261vw,31.82vh) scale(.45)}to{transform:translate(94.33645vw,100vh) scale(.45)}}.snow:nth-child(265){opacity:.522;transform:translate(31.4566vw,-10px) scale(.3788);animation:fall-265 27s -19s linear infinite}@keyframes fall-265{75.559%{transform:translate(29.0555vw,75.559vh) scale(.3788)}to{transform:translate(30.25605vw,100vh) scale(.3788)}}.snow:nth-child(266){opacity:.461;transform:translate(30.2296vw,-10px) scale(.3848);animation:fall-266 17s -2s linear infinite}@keyframes fall-266{55.414%{transform:translate(30.2362vw,55.414vh) scale(.3848)}to{transform:translate(30.2329vw,100vh) scale(.3848)}}.snow:nth-child(267){opacity:.95;transform:translate(93.5726vw,-10px) scale(.8678);animation:fall-267 25s -27s linear infinite}@keyframes fall-267{46.681%{transform:translate(89.7429vw,46.681vh) scale(.8678)}to{transform:translate(91.65775vw,100vh) scale(.8678)}}.snow:nth-child(268){opacity:1.2652;transform:translate(15.4543vw,-10px) scale(.4968);animation:fall-268 22s -14s linear infinite}@keyframes fall-268{79.945%{transform:translate(7.6157vw,79.945vh) scale(.4968)}to{transform:translate(11.535vw,100vh) scale(.4968)}}.snow:nth-child(269){opacity:1.815;transform:translate(83.302vw,-10px) scale(.4375);animation:fall-269 25s -1s linear infinite}@keyframes fall-269{62.354%{transform:translate(87.7286vw,62.354vh) scale(.4375)}to{transform:translate(85.5153vw,100vh) scale(.4375)}}.snow:nth-child(270){opacity:.35;transform:translate(21.2166vw,-10px) scale(.8604);animation:fall-270 25s -12s linear infinite}@keyframes fall-270{58.709%{transform:translate(26.9626vw,58.709vh) scale(.8604)}to{transform:translate(24.0896vw,100vh) scale(.8604)}}.snow:nth-child(271){opacity:.2666;transform:translate(.0818vw,-10px) scale(.8349);animation:fall-271 15s -14s linear infinite}@keyframes fall-271{42.084%{transform:translate(.482vw,42.084vh) scale(.8349)}to{transform:translate(.2819vw,100vh) scale(.8349)}}.snow:nth-child(272){opacity:.1152;transform:translate(55.7797vw,-10px) scale(.7964);animation:fall-272 11s -30s linear infinite}@keyframes fall-272{63.318%{transform:translate(64.8399vw,63.318vh) scale(.7964)}to{transform:translate(60.3098vw,100vh) scale(.7964)}}.snow:nth-child(273){opacity:.7918;transform:translate(80.285vw,-10px) scale(.1488);animation:fall-273 24s -3s linear infinite}@keyframes fall-273{49.167%{transform:translate(87.2755vw,49.167vh) scale(.1488)}to{transform:translate(83.78025vw,100vh) scale(.1488)}}.snow:nth-child(274){opacity:1.8874;transform:translate(12.0913vw,-10px) scale(.9842);animation:fall-274 24s -24s linear infinite}@keyframes fall-274{39.889%{transform:translate(21.1983vw,39.889vh) scale(.9842)}to{transform:translate(16.6448vw,100vh) scale(.9842)}}.snow:nth-child(275){opacity:1.179;transform:translate(44.6505vw,-10px) scale(.824);animation:fall-275 10s -1s linear infinite}@keyframes fall-275{43.702%{transform:translate(41.6282vw,43.702vh) scale(.824)}to{transform:translate(43.13935vw,100vh) scale(.824)}}.snow:nth-child(276){opacity:.6044;transform:translate(63.6035vw,-10px) scale(.4094);animation:fall-276 26s -19s linear infinite}@keyframes fall-276{44.737%{transform:translate(58.3351vw,44.737vh) scale(.4094)}to{transform:translate(60.9693vw,100vh) scale(.4094)}}.snow:nth-child(277){opacity:.6452;transform:translate(30.5085vw,-10px) scale(.3451);animation:fall-277 14s -3s linear infinite}@keyframes fall-277{63.972%{transform:translate(25.2875vw,63.972vh) scale(.3451)}to{transform:translate(27.898vw,100vh) scale(.3451)}}.snow:nth-child(278){opacity:.275;transform:translate(76.4668vw,-10px) scale(.9125);animation:fall-278 11s -23s linear infinite}@keyframes fall-278{40.609%{transform:translate(82.4543vw,40.609vh) scale(.9125)}to{transform:translate(79.46055vw,100vh) scale(.9125)}}.snow:nth-child(279){opacity:1.825;transform:translate(58.2535vw,-10px) scale(.9847);animation:fall-279 14s -15s linear infinite}@keyframes fall-279{57%{transform:translate(67.1325vw,57vh) scale(.9847)}to{transform:translate(62.693vw,100vh) scale(.9847)}}.snow:nth-child(280){opacity:.6078;transform:translate(55.091vw,-10px) scale(.7996);animation:fall-280 29s -27s linear infinite}@keyframes fall-280{53.147%{transform:translate(54.5587vw,53.147vh) scale(.7996)}to{transform:translate(54.82485vw,100vh) scale(.7996)}}.snow:nth-child(281){opacity:1.584;transform:translate(20.4489vw,-10px) scale(.3527);animation:fall-281 23s -28s linear infinite}@keyframes fall-281{79.118%{transform:translate(24.8833vw,79.118vh) scale(.3527)}to{transform:translate(22.6661vw,100vh) scale(.3527)}}.snow:nth-child(282){opacity:1.903;transform:translate(12.8691vw,-10px) scale(.7032);animation:fall-282 23s -3s linear infinite}@keyframes fall-282{45.287%{transform:translate(18.7712vw,45.287vh) scale(.7032)}to{transform:translate(15.82015vw,100vh) scale(.7032)}}.snow:nth-child(283){opacity:1.2554;transform:translate(88.0041vw,-10px) scale(.0122);animation:fall-283 24s -29s linear infinite}@keyframes fall-283{54.918%{transform:translate(92.7355vw,54.918vh) scale(.0122)}to{transform:translate(90.3698vw,100vh) scale(.0122)}}.snow:nth-child(284){opacity:1.2148;transform:translate(53.5013vw,-10px) scale(.0205);animation:fall-284 20s -23s linear infinite}@keyframes fall-284{68.702%{transform:translate(52.3913vw,68.702vh) scale(.0205)}to{transform:translate(52.9463vw,100vh) scale(.0205)}}.snow:nth-child(285){opacity:1.8976;transform:translate(34.1138vw,-10px) scale(.4722);animation:fall-285 26s -15s linear infinite}@keyframes fall-285{39.38%{transform:translate(34.9982vw,39.38vh) scale(.4722)}to{transform:translate(34.556vw,100vh) scale(.4722)}}.snow:nth-child(286){opacity:1.3412;transform:translate(1.7106vw,-10px) scale(.3937);animation:fall-286 25s -10s linear infinite}@keyframes fall-286{69.528%{transform:translate(-5.2422vw,69.528vh) scale(.3937)}to{transform:translate(-1.7658vw,100vh) scale(.3937)}}.snow:nth-child(287){opacity:1.3802;transform:translate(74.4551vw,-10px) scale(.9542);animation:fall-287 24s -29s linear infinite}@keyframes fall-287{59.809%{transform:translate(81.0794vw,59.809vh) scale(.9542)}to{transform:translate(77.76725vw,100vh) scale(.9542)}}.snow:nth-child(288){opacity:1.9524;transform:translate(84.0282vw,-10px) scale(.7273);animation:fall-288 19s -1s linear infinite}@keyframes fall-288{59.006%{transform:translate(75.7902vw,59.006vh) scale(.7273)}to{transform:translate(79.9092vw,100vh) scale(.7273)}}.snow:nth-child(289){opacity:.382;transform:translate(90.5073vw,-10px) scale(.4182);animation:fall-289 12s -6s linear infinite}@keyframes fall-289{73.529%{transform:translate(97.2345vw,73.529vh) scale(.4182)}to{transform:translate(93.8709vw,100vh) scale(.4182)}}.snow:nth-child(290){opacity:1.0242;transform:translate(59.887vw,-10px) scale(.088);animation:fall-290 27s -23s linear infinite}@keyframes fall-290{65.916%{transform:translate(61.5391vw,65.916vh) scale(.088)}to{transform:translate(60.71305vw,100vh) scale(.088)}}.snow:nth-child(291){opacity:1.8436;transform:translate(31.6179vw,-10px) scale(.2201);animation:fall-291 13s -17s linear infinite}@keyframes fall-291{60.853%{transform:translate(29.244vw,60.853vh) scale(.2201)}to{transform:translate(30.43095vw,100vh) scale(.2201)}}.snow:nth-child(292){opacity:1.7314;transform:translate(24.3971vw,-10px) scale(.3082);animation:fall-292 12s -30s linear infinite}@keyframes fall-292{47.49%{transform:translate(34.2271vw,47.49vh) scale(.3082)}to{transform:translate(29.3121vw,100vh) scale(.3082)}}.snow:nth-child(293){opacity:1.2272;transform:translate(90.1741vw,-10px) scale(.4708);animation:fall-293 27s -28s linear infinite}@keyframes fall-293{35.163%{transform:translate(86.7226vw,35.163vh) scale(.4708)}to{transform:translate(88.44835vw,100vh) scale(.4708)}}.snow:nth-child(294){opacity:.3792;transform:translate(86.5993vw,-10px) scale(.5979);animation:fall-294 12s -23s linear infinite}@keyframes fall-294{52.318%{transform:translate(88.1801vw,52.318vh) scale(.5979)}to{transform:translate(87.3897vw,100vh) scale(.5979)}}.snow:nth-child(295){opacity:1.7086;transform:translate(26.5802vw,-10px) scale(.0936);animation:fall-295 11s -14s linear infinite}@keyframes fall-295{50.505%{transform:translate(22.6743vw,50.505vh) scale(.0936)}to{transform:translate(24.62725vw,100vh) scale(.0936)}}.snow:nth-child(296){opacity:1.4094;transform:translate(20.0199vw,-10px) scale(.8706);animation:fall-296 14s -8s linear infinite}@keyframes fall-296{59.814%{transform:translate(18.2308vw,59.814vh) scale(.8706)}to{transform:translate(19.12535vw,100vh) scale(.8706)}}.snow:nth-child(297){opacity:.2186;transform:translate(33.8752vw,-10px) scale(.8109);animation:fall-297 27s -21s linear infinite}@keyframes fall-297{38.424%{transform:translate(25.4304vw,38.424vh) scale(.8109)}to{transform:translate(29.6528vw,100vh) scale(.8109)}}.snow:nth-child(298){opacity:.785;transform:translate(35.9342vw,-10px) scale(.8207);animation:fall-298 21s -30s linear infinite}@keyframes fall-298{39.136%{transform:translate(31.4718vw,39.136vh) scale(.8207)}to{transform:translate(33.703vw,100vh) scale(.8207)}}.snow:nth-child(299){opacity:1.107;transform:translate(63.7874vw,-10px) scale(.9171);animation:fall-299 17s -29s linear infinite}@keyframes fall-299{76.559%{transform:translate(62.4034vw,76.559vh) scale(.9171)}to{transform:translate(63.0954vw,100vh) scale(.9171)}}.snow:nth-child(300){opacity:.0298;transform:translate(43.6352vw,-10px) scale(.7784);animation:fall-300 21s -13s linear infinite}@keyframes fall-300{58.657%{transform:translate(36.0083vw,58.657vh) scale(.7784)}to{transform:translate(39.82175vw,100vh) scale(.7784)}}.snow:nth-child(301){opacity:1.6386;transform:translate(89.9082vw,-10px) scale(.0816);animation:fall-301 26s -16s linear infinite}@keyframes fall-301{32.364%{transform:translate(86.6436vw,32.364vh) scale(.0816)}to{transform:translate(88.2759vw,100vh) scale(.0816)}}.snow:nth-child(302){opacity:1.732;transform:translate(45.7203vw,-10px) scale(.5791);animation:fall-302 15s -24s linear infinite}@keyframes fall-302{39.245%{transform:translate(50.9783vw,39.245vh) scale(.5791)}to{transform:translate(48.3493vw,100vh) scale(.5791)}}.snow:nth-child(303){opacity:.044;transform:translate(71.499vw,-10px) scale(.2237);animation:fall-303 15s -10s linear infinite}@keyframes fall-303{57.2%{transform:translate(64.3738vw,57.2vh) scale(.2237)}to{transform:translate(67.9364vw,100vh) scale(.2237)}}.snow:nth-child(304){opacity:.6214;transform:translate(23.4477vw,-10px) scale(.2291);animation:fall-304 16s -10s linear infinite}@keyframes fall-304{70.501%{transform:translate(23.775vw,70.501vh) scale(.2291)}to{transform:translate(23.61135vw,100vh) scale(.2291)}}.snow:nth-child(305){opacity:.4616;transform:translate(54.8338vw,-10px) scale(.1208);animation:fall-305 29s -6s linear infinite}@keyframes fall-305{51.199%{transform:translate(51.4581vw,51.199vh) scale(.1208)}to{transform:translate(53.14595vw,100vh) scale(.1208)}}.snow:nth-child(306){opacity:1.3718;transform:translate(58.2378vw,-10px) scale(.664);animation:fall-306 12s -4s linear infinite}@keyframes fall-306{32.149%{transform:translate(59.9167vw,32.149vh) scale(.664)}to{transform:translate(59.07725vw,100vh) scale(.664)}}.snow:nth-child(307){opacity:.9616;transform:translate(66.1465vw,-10px) scale(.3831);animation:fall-307 20s -28s linear infinite}@keyframes fall-307{35.305%{transform:translate(65.1247vw,35.305vh) scale(.3831)}to{transform:translate(65.6356vw,100vh) scale(.3831)}}.snow:nth-child(308){opacity:1.0482;transform:translate(60.0498vw,-10px) scale(.0413);animation:fall-308 28s -18s linear infinite}@keyframes fall-308{55.304%{transform:translate(61.383vw,55.304vh) scale(.0413)}to{transform:translate(60.7164vw,100vh) scale(.0413)}}.snow:nth-child(309){opacity:1.9804;transform:translate(98.6435vw,-10px) scale(.2118);animation:fall-309 26s -19s linear infinite}@keyframes fall-309{68.614%{transform:translate(96.1613vw,68.614vh) scale(.2118)}to{transform:translate(97.4024vw,100vh) scale(.2118)}}.snow:nth-child(310){opacity:1.2458;transform:translate(95.8392vw,-10px) scale(.9035);animation:fall-310 15s -25s linear infinite}@keyframes fall-310{79.015%{transform:translate(88.1864vw,79.015vh) scale(.9035)}to{transform:translate(92.0128vw,100vh) scale(.9035)}}.snow:nth-child(311){opacity:1.0408;transform:translate(30.9058vw,-10px) scale(.3821);animation:fall-311 24s -19s linear infinite}@keyframes fall-311{38.886%{transform:translate(33.9897vw,38.886vh) scale(.3821)}to{transform:translate(32.44775vw,100vh) scale(.3821)}}.snow:nth-child(312){opacity:.0498;transform:translate(68.3231vw,-10px) scale(.1826);animation:fall-312 16s -21s linear infinite}@keyframes fall-312{73.073%{transform:translate(73.765vw,73.073vh) scale(.1826)}to{transform:translate(71.04405vw,100vh) scale(.1826)}}.snow:nth-child(313){opacity:1.739;transform:translate(7.1682vw,-10px) scale(.9384);animation:fall-313 23s -11s linear infinite}@keyframes fall-313{66.837%{transform:translate(6.7188vw,66.837vh) scale(.9384)}to{transform:translate(6.9435vw,100vh) scale(.9384)}}.snow:nth-child(314){opacity:1.2976;transform:translate(40.5123vw,-10px) scale(.8124);animation:fall-314 11s -21s linear infinite}@keyframes fall-314{56.303%{transform:translate(30.6637vw,56.303vh) scale(.8124)}to{transform:translate(35.588vw,100vh) scale(.8124)}}.snow:nth-child(315){opacity:.713;transform:translate(88.968vw,-10px) scale(.6808);animation:fall-315 25s -12s linear infinite}@keyframes fall-315{73.61%{transform:translate(97.046vw,73.61vh) scale(.6808)}to{transform:translate(93.007vw,100vh) scale(.6808)}}.snow:nth-child(316){opacity:.9742;transform:translate(.4151vw,-10px) scale(.2779);animation:fall-316 20s -22s linear infinite}@keyframes fall-316{57.875%{transform:translate(9.3986vw,57.875vh) scale(.2779)}to{transform:translate(4.90685vw,100vh) scale(.2779)}}.snow:nth-child(317){opacity:1.8206;transform:translate(26.0041vw,-10px) scale(.6268);animation:fall-317 14s -19s linear infinite}@keyframes fall-317{75.204%{transform:translate(17.0188vw,75.204vh) scale(.6268)}to{transform:translate(21.51145vw,100vh) scale(.6268)}}.snow:nth-child(318){opacity:.157;transform:translate(14.6138vw,-10px) scale(.4222);animation:fall-318 23s -21s linear infinite}@keyframes fall-318{68.462%{transform:translate(9.968vw,68.462vh) scale(.4222)}to{transform:translate(12.2909vw,100vh) scale(.4222)}}.snow:nth-child(319){opacity:.6428;transform:translate(58.7888vw,-10px) scale(.0597);animation:fall-319 11s -4s linear infinite}@keyframes fall-319{60.703%{transform:translate(57.3254vw,60.703vh) scale(.0597)}to{transform:translate(58.0571vw,100vh) scale(.0597)}}.snow:nth-child(320){opacity:.3402;transform:translate(77.1065vw,-10px) scale(.3192);animation:fall-320 26s -29s linear infinite}@keyframes fall-320{76.431%{transform:translate(76.1628vw,76.431vh) scale(.3192)}to{transform:translate(76.63465vw,100vh) scale(.3192)}}.snow:nth-child(321){opacity:.2548;transform:translate(90.0126vw,-10px) scale(.1879);animation:fall-321 19s -14s linear infinite}@keyframes fall-321{59.816%{transform:translate(95.9933vw,59.816vh) scale(.1879)}to{transform:translate(93.00295vw,100vh) scale(.1879)}}.snow:nth-child(322){opacity:1.937;transform:translate(28.6894vw,-10px) scale(.7074);animation:fall-322 14s -18s linear infinite}@keyframes fall-322{48.999%{transform:translate(21.4171vw,48.999vh) scale(.7074)}to{transform:translate(25.05325vw,100vh) scale(.7074)}}.snow:nth-child(323){opacity:1.1508;transform:translate(8.905vw,-10px) scale(.6915);animation:fall-323 27s -19s linear infinite}@keyframes fall-323{62.568%{transform:translate(8.5482vw,62.568vh) scale(.6915)}to{transform:translate(8.7266vw,100vh) scale(.6915)}}.snow:nth-child(324){opacity:.1686;transform:translate(13.5297vw,-10px) scale(.7617);animation:fall-324 13s -22s linear infinite}@keyframes fall-324{71.485%{transform:translate(19.5756vw,71.485vh) scale(.7617)}to{transform:translate(16.55265vw,100vh) scale(.7617)}}.snow:nth-child(325){opacity:1.5544;transform:translate(19.8244vw,-10px) scale(.1923);animation:fall-325 29s -23s linear infinite}@keyframes fall-325{52.277%{transform:translate(28.1818vw,52.277vh) scale(.1923)}to{transform:translate(24.0031vw,100vh) scale(.1923)}}.snow:nth-child(326){opacity:.224;transform:translate(40.9846vw,-10px) scale(.9595);animation:fall-326 14s -26s linear infinite}@keyframes fall-326{51.494%{transform:translate(45.5351vw,51.494vh) scale(.9595)}to{transform:translate(43.25985vw,100vh) scale(.9595)}}.snow:nth-child(327){opacity:.8204;transform:translate(2.4277vw,-10px) scale(.2158);animation:fall-327 10s -13s linear infinite}@keyframes fall-327{77.344%{transform:translate(11.2989vw,77.344vh) scale(.2158)}to{transform:translate(6.8633vw,100vh) scale(.2158)}}.snow:nth-child(328){opacity:.5922;transform:translate(28.139vw,-10px) scale(.9222);animation:fall-328 21s -29s linear infinite}@keyframes fall-328{66.847%{transform:translate(22.8092vw,66.847vh) scale(.9222)}to{transform:translate(25.4741vw,100vh) scale(.9222)}}.snow:nth-child(329){opacity:.7906;transform:translate(41.5717vw,-10px) scale(.9993);animation:fall-329 16s -10s linear infinite}@keyframes fall-329{36.582%{transform:translate(50.002vw,36.582vh) scale(.9993)}to{transform:translate(45.78685vw,100vh) scale(.9993)}}.snow:nth-child(330){opacity:.1798;transform:translate(34.6138vw,-10px) scale(.8504);animation:fall-330 11s -11s linear infinite}@keyframes fall-330{47.857%{transform:translate(25.607vw,47.857vh) scale(.8504)}to{transform:translate(30.1104vw,100vh) scale(.8504)}}.snow:nth-child(331){opacity:1.9262;transform:translate(30.5661vw,-10px) scale(.7643);animation:fall-331 23s -5s linear infinite}@keyframes fall-331{49.764%{transform:translate(36.3405vw,49.764vh) scale(.7643)}to{transform:translate(33.4533vw,100vh) scale(.7643)}}.snow:nth-child(332){opacity:1.0134;transform:translate(14.7316vw,-10px) scale(.3315);animation:fall-332 13s -1s linear infinite}@keyframes fall-332{30.115%{transform:translate(16.6123vw,30.115vh) scale(.3315)}to{transform:translate(15.67195vw,100vh) scale(.3315)}}.snow:nth-child(333){opacity:.917;transform:translate(89.2102vw,-10px) scale(.6368);animation:fall-333 29s -11s linear infinite}@keyframes fall-333{76.892%{transform:translate(83.9798vw,76.892vh) scale(.6368)}to{transform:translate(86.595vw,100vh) scale(.6368)}}.snow:nth-child(334){opacity:.5546;transform:translate(87.6444vw,-10px) scale(.8063);animation:fall-334 12s -2s linear infinite}@keyframes fall-334{72.421%{transform:translate(83.5324vw,72.421vh) scale(.8063)}to{transform:translate(85.5884vw,100vh) scale(.8063)}}.snow:nth-child(335){opacity:.267;transform:translate(19.05vw,-10px) scale(.1434);animation:fall-335 20s -21s linear infinite}@keyframes fall-335{70.86%{transform:translate(17.9195vw,70.86vh) scale(.1434)}to{transform:translate(18.48475vw,100vh) scale(.1434)}}.snow:nth-child(336){opacity:1.3724;transform:translate(26.2126vw,-10px) scale(.9993);animation:fall-336 12s -6s linear infinite}@keyframes fall-336{78.683%{transform:translate(30.8195vw,78.683vh) scale(.9993)}to{transform:translate(28.51605vw,100vh) scale(.9993)}}.snow:nth-child(337){opacity:.835;transform:translate(.9128vw,-10px) scale(.3763);animation:fall-337 25s -11s linear infinite}@keyframes fall-337{32.934%{transform:translate(7.6328vw,32.934vh) scale(.3763)}to{transform:translate(4.2728vw,100vh) scale(.3763)}}.snow:nth-child(338){opacity:.1814;transform:translate(1.642vw,-10px) scale(.4474);animation:fall-338 21s -27s linear infinite}@keyframes fall-338{39.547%{transform:translate(7.2463vw,39.547vh) scale(.4474)}to{transform:translate(4.44415vw,100vh) scale(.4474)}}.snow:nth-child(339){opacity:1.9394;transform:translate(3.2573vw,-10px) scale(.4784);animation:fall-339 11s -28s linear infinite}@keyframes fall-339{48.987%{transform:translate(.7643vw,48.987vh) scale(.4784)}to{transform:translate(2.0108vw,100vh) scale(.4784)}}.snow:nth-child(340){opacity:.7042;transform:translate(13.6643vw,-10px) scale(.9357);animation:fall-340 10s -7s linear infinite}@keyframes fall-340{78.076%{transform:translate(9.6472vw,78.076vh) scale(.9357)}to{transform:translate(11.65575vw,100vh) scale(.9357)}}.snow:nth-child(341){opacity:1.0268;transform:translate(35.3679vw,-10px) scale(.6016);animation:fall-341 11s -4s linear infinite}@keyframes fall-341{65.992%{transform:translate(44.5189vw,65.992vh) scale(.6016)}to{transform:translate(39.9434vw,100vh) scale(.6016)}}.snow:nth-child(342){opacity:1.202;transform:translate(22.7898vw,-10px) scale(.4635);animation:fall-342 30s -8s linear infinite}@keyframes fall-342{43.866%{transform:translate(13.3806vw,43.866vh) scale(.4635)}to{transform:translate(18.0852vw,100vh) scale(.4635)}}.snow:nth-child(343){opacity:.7212;transform:translate(37.6903vw,-10px) scale(.5279);animation:fall-343 12s -22s linear infinite}@keyframes fall-343{66.074%{transform:translate(42.5925vw,66.074vh) scale(.5279)}to{transform:translate(40.1414vw,100vh) scale(.5279)}}.snow:nth-child(344){opacity:.184;transform:translate(96.6513vw,-10px) scale(.1837);animation:fall-344 16s -26s linear infinite}@keyframes fall-344{38.924%{transform:translate(94.7925vw,38.924vh) scale(.1837)}to{transform:translate(95.7219vw,100vh) scale(.1837)}}.snow:nth-child(345){opacity:1.0192;transform:translate(71.0912vw,-10px) scale(.9218);animation:fall-345 10s -2s linear infinite}@keyframes fall-345{57.991%{transform:translate(76.8374vw,57.991vh) scale(.9218)}to{transform:translate(73.9643vw,100vh) scale(.9218)}}.snow:nth-child(346){opacity:1.8694;transform:translate(84.124vw,-10px) scale(.8337);animation:fall-346 22s -30s linear infinite}@keyframes fall-346{67.799%{transform:translate(93.0559vw,67.799vh) scale(.8337)}to{transform:translate(88.58995vw,100vh) scale(.8337)}}.snow:nth-child(347){opacity:.7962;transform:translate(7.5104vw,-10px) scale(.0842);animation:fall-347 18s -24s linear infinite}@keyframes fall-347{62.132%{transform:translate(.5909vw,62.132vh) scale(.0842)}to{transform:translate(4.05065vw,100vh) scale(.0842)}}.snow:nth-child(348){opacity:.1898;transform:translate(47.0582vw,-10px) scale(.7096);animation:fall-348 26s -29s linear infinite}@keyframes fall-348{53.023%{transform:translate(44.0673vw,53.023vh) scale(.7096)}to{transform:translate(45.56275vw,100vh) scale(.7096)}}.snow:nth-child(349){opacity:1.5944;transform:translate(95.8075vw,-10px) scale(.6374);animation:fall-349 26s -10s linear infinite}@keyframes fall-349{68.514%{transform:translate(105.4522vw,68.514vh) scale(.6374)}to{transform:translate(100.62985vw,100vh) scale(.6374)}}.snow:nth-child(350){opacity:.1208;transform:translate(74.3531vw,-10px) scale(.8837);animation:fall-350 23s -24s linear infinite}@keyframes fall-350{44.649%{transform:translate(82.8611vw,44.649vh) scale(.8837)}to{transform:translate(78.6071vw,100vh) scale(.8837)}}.snow:nth-child(351){opacity:.6476;transform:translate(60.6825vw,-10px) scale(.5707);animation:fall-351 27s -10s linear infinite}@keyframes fall-351{55.58%{transform:translate(62.7616vw,55.58vh) scale(.5707)}to{transform:translate(61.72205vw,100vh) scale(.5707)}}.snow:nth-child(352){opacity:1.9138;transform:translate(44.2699vw,-10px) scale(.1809);animation:fall-352 12s -25s linear infinite}@keyframes fall-352{44.196%{transform:translate(48.1461vw,44.196vh) scale(.1809)}to{transform:translate(46.208vw,100vh) scale(.1809)}}.snow:nth-child(353){opacity:1.1652;transform:translate(42.9722vw,-10px) scale(.8645);animation:fall-353 27s -9s linear infinite}@keyframes fall-353{44.024%{transform:translate(42.3521vw,44.024vh) scale(.8645)}to{transform:translate(42.66215vw,100vh) scale(.8645)}}.snow:nth-child(354){opacity:1.1606;transform:translate(90.5254vw,-10px) scale(.7841);animation:fall-354 30s -7s linear infinite}@keyframes fall-354{39.992%{transform:translate(93.8037vw,39.992vh) scale(.7841)}to{transform:translate(92.16455vw,100vh) scale(.7841)}}.snow:nth-child(355){opacity:1.8928;transform:translate(72.323vw,-10px) scale(.4126);animation:fall-355 28s -10s linear infinite}@keyframes fall-355{76.185%{transform:translate(81.2776vw,76.185vh) scale(.4126)}to{transform:translate(76.8003vw,100vh) scale(.4126)}}.snow:nth-child(356){opacity:.816;transform:translate(63.684vw,-10px) scale(.2633);animation:fall-356 24s -4s linear infinite}@keyframes fall-356{47.151%{transform:translate(68.7045vw,47.151vh) scale(.2633)}to{transform:translate(66.19425vw,100vh) scale(.2633)}}.snow:nth-child(357){opacity:.7844;transform:translate(91.705vw,-10px) scale(.6684);animation:fall-357 13s -15s linear infinite}@keyframes fall-357{72.413%{transform:translate(95.5153vw,72.413vh) scale(.6684)}to{transform:translate(93.61015vw,100vh) scale(.6684)}}.snow:nth-child(358){opacity:1.9722;transform:translate(46.7764vw,-10px) scale(.4632);animation:fall-358 11s -23s linear infinite}@keyframes fall-358{72.722%{transform:translate(43.4934vw,72.722vh) scale(.4632)}to{transform:translate(45.1349vw,100vh) scale(.4632)}}.snow:nth-child(359){opacity:1.4278;transform:translate(80.7438vw,-10px) scale(.9836);animation:fall-359 27s -27s linear infinite}@keyframes fall-359{70.466%{transform:translate(72.3398vw,70.466vh) scale(.9836)}to{transform:translate(76.5418vw,100vh) scale(.9836)}}.snow:nth-child(360){opacity:1.9364;transform:translate(54.0237vw,-10px) scale(.3093);animation:fall-360 29s -14s linear infinite}@keyframes fall-360{47.938%{transform:translate(49.2818vw,47.938vh) scale(.3093)}to{transform:translate(51.65275vw,100vh) scale(.3093)}}.snow:nth-child(361){opacity:1.451;transform:translate(22.7623vw,-10px) scale(.8119);animation:fall-361 23s -9s linear infinite}@keyframes fall-361{60.37%{transform:translate(13.8903vw,60.37vh) scale(.8119)}to{transform:translate(18.3263vw,100vh) scale(.8119)}}.snow:nth-child(362){opacity:.4136;transform:translate(62.2594vw,-10px) scale(.5671);animation:fall-362 16s -25s linear infinite}@keyframes fall-362{78.193%{transform:translate(70.6981vw,78.193vh) scale(.5671)}to{transform:translate(66.47875vw,100vh) scale(.5671)}}.snow:nth-child(363){opacity:1.5732;transform:translate(59.592vw,-10px) scale(.9836);animation:fall-363 28s -24s linear infinite}@keyframes fall-363{52.142%{transform:translate(55.2997vw,52.142vh) scale(.9836)}to{transform:translate(57.44585vw,100vh) scale(.9836)}}.snow:nth-child(364){opacity:1.7156;transform:translate(97.7429vw,-10px) scale(.5916);animation:fall-364 24s -7s linear infinite}@keyframes fall-364{45.623%{transform:translate(101.5351vw,45.623vh) scale(.5916)}to{transform:translate(99.639vw,100vh) scale(.5916)}}.snow:nth-child(365){opacity:1.438;transform:translate(57.3615vw,-10px) scale(.5097);animation:fall-365 13s -26s linear infinite}@keyframes fall-365{48.322%{transform:translate(62.5612vw,48.322vh) scale(.5097)}to{transform:translate(59.96135vw,100vh) scale(.5097)}}.snow:nth-child(366){opacity:1.0094;transform:translate(85.1808vw,-10px) scale(.625);animation:fall-366 23s -17s linear infinite}@keyframes fall-366{46.94%{transform:translate(77.5156vw,46.94vh) scale(.625)}to{transform:translate(81.3482vw,100vh) scale(.625)}}.snow:nth-child(367){opacity:1.4472;transform:translate(1.3865vw,-10px) scale(.7277);animation:fall-367 28s -5s linear infinite}@keyframes fall-367{40.277%{transform:translate(1.3537vw,40.277vh) scale(.7277)}to{transform:translate(1.3701vw,100vh) scale(.7277)}}.snow:nth-child(368){opacity:.1828;transform:translate(38.8104vw,-10px) scale(.7684);animation:fall-368 25s -22s linear infinite}@keyframes fall-368{73.491%{transform:translate(35.5714vw,73.491vh) scale(.7684)}to{transform:translate(37.1909vw,100vh) scale(.7684)}}.snow:nth-child(369){opacity:1.0548;transform:translate(38.6873vw,-10px) scale(.8481);animation:fall-369 14s -14s linear infinite}@keyframes fall-369{34.148%{transform:translate(46.7545vw,34.148vh) scale(.8481)}to{transform:translate(42.7209vw,100vh) scale(.8481)}}.snow:nth-child(370){opacity:.3996;transform:translate(84.6856vw,-10px) scale(.9593);animation:fall-370 29s -15s linear infinite}@keyframes fall-370{40.827%{transform:translate(84.2156vw,40.827vh) scale(.9593)}to{transform:translate(84.4506vw,100vh) scale(.9593)}}.snow:nth-child(371){opacity:.815;transform:translate(41.1475vw,-10px) scale(.9276);animation:fall-371 28s -21s linear infinite}@keyframes fall-371{57.714%{transform:translate(43.7496vw,57.714vh) scale(.9276)}to{transform:translate(42.44855vw,100vh) scale(.9276)}}.snow:nth-child(372){opacity:.1614;transform:translate(70.8548vw,-10px) scale(.7244);animation:fall-372 12s -23s linear infinite}@keyframes fall-372{34.157%{transform:translate(63.9258vw,34.157vh) scale(.7244)}to{transform:translate(67.3903vw,100vh) scale(.7244)}}.snow:nth-child(373){opacity:.3006;transform:translate(78.6292vw,-10px) scale(.9175);animation:fall-373 29s -20s linear infinite}@keyframes fall-373{66.593%{transform:translate(75.6828vw,66.593vh) scale(.9175)}to{transform:translate(77.156vw,100vh) scale(.9175)}}.snow:nth-child(374){opacity:1.517;transform:translate(44.9878vw,-10px) scale(.7392);animation:fall-374 28s -23s linear infinite}@keyframes fall-374{74.12%{transform:translate(38.7876vw,74.12vh) scale(.7392)}to{transform:translate(41.8877vw,100vh) scale(.7392)}}.snow:nth-child(375){opacity:1.9818;transform:translate(39.5802vw,-10px) scale(.4573);animation:fall-375 24s -11s linear infinite}@keyframes fall-375{73.651%{transform:translate(34.8872vw,73.651vh) scale(.4573)}to{transform:translate(37.2337vw,100vh) scale(.4573)}}.snow:nth-child(376){opacity:.5844;transform:translate(48.5004vw,-10px) scale(.5397);animation:fall-376 14s -6s linear infinite}@keyframes fall-376{41.186%{transform:translate(50.8073vw,41.186vh) scale(.5397)}to{transform:translate(49.65385vw,100vh) scale(.5397)}}.snow:nth-child(377){opacity:1.7146;transform:translate(10.7593vw,-10px) scale(.0551);animation:fall-377 15s -9s linear infinite}@keyframes fall-377{58.042%{transform:translate(1.7942vw,58.042vh) scale(.0551)}to{transform:translate(6.27675vw,100vh) scale(.0551)}}.snow:nth-child(378){opacity:.8608;transform:translate(69.3782vw,-10px) scale(.3113);animation:fall-378 14s -23s linear infinite}@keyframes fall-378{44.283%{transform:translate(71.4183vw,44.283vh) scale(.3113)}to{transform:translate(70.39825vw,100vh) scale(.3113)}}.snow:nth-child(379){opacity:1.8134;transform:translate(60.2039vw,-10px) scale(.8653);animation:fall-379 16s -2s linear infinite}@keyframes fall-379{57.859%{transform:translate(67.8135vw,57.859vh) scale(.8653)}to{transform:translate(64.0087vw,100vh) scale(.8653)}}.snow:nth-child(380){opacity:1.0672;transform:translate(55.3361vw,-10px) scale(.0149);animation:fall-380 27s -2s linear infinite}@keyframes fall-380{53.398%{transform:translate(48.6146vw,53.398vh) scale(.0149)}to{transform:translate(51.97535vw,100vh) scale(.0149)}}.snow:nth-child(381){opacity:1.7846;transform:translate(40.2297vw,-10px) scale(.3679);animation:fall-381 17s -13s linear infinite}@keyframes fall-381{47.774%{transform:translate(41.044vw,47.774vh) scale(.3679)}to{transform:translate(40.63685vw,100vh) scale(.3679)}}.snow:nth-child(382){opacity:1.2874;transform:translate(49.8266vw,-10px) scale(.0003);animation:fall-382 14s -23s linear infinite}@keyframes fall-382{56.603%{transform:translate(49.0541vw,56.603vh) scale(.0003)}to{transform:translate(49.44035vw,100vh) scale(.0003)}}.snow:nth-child(383){opacity:.4878;transform:translate(29.6493vw,-10px) scale(.0059);animation:fall-383 22s -7s linear infinite}@keyframes fall-383{46.621%{transform:translate(24.7834vw,46.621vh) scale(.0059)}to{transform:translate(27.21635vw,100vh) scale(.0059)}}.snow:nth-child(384){opacity:1.7786;transform:translate(23.5713vw,-10px) scale(.4436);animation:fall-384 17s -10s linear infinite}@keyframes fall-384{68.529%{transform:translate(15.7064vw,68.529vh) scale(.4436)}to{transform:translate(19.63885vw,100vh) scale(.4436)}}.snow:nth-child(385){opacity:1.113;transform:translate(2.9867vw,-10px) scale(.008);animation:fall-385 23s -11s linear infinite}@keyframes fall-385{30.887%{transform:translate(11.525vw,30.887vh) scale(.008)}to{transform:translate(7.25585vw,100vh) scale(.008)}}.snow:nth-child(386){opacity:.124;transform:translate(11.898vw,-10px) scale(.5539);animation:fall-386 28s -22s linear infinite}@keyframes fall-386{56.526%{transform:translate(18.7612vw,56.526vh) scale(.5539)}to{transform:translate(15.3296vw,100vh) scale(.5539)}}.snow:nth-child(387){opacity:1.8342;transform:translate(11.5951vw,-10px) scale(.207);animation:fall-387 29s -13s linear infinite}@keyframes fall-387{78.115%{transform:translate(12.8615vw,78.115vh) scale(.207)}to{transform:translate(12.2283vw,100vh) scale(.207)}}.snow:nth-child(388){opacity:1.5218;transform:translate(41.0512vw,-10px) scale(.66);animation:fall-388 22s -14s linear infinite}@keyframes fall-388{54.919%{transform:translate(32.7289vw,54.919vh) scale(.66)}to{transform:translate(36.89005vw,100vh) scale(.66)}}.snow:nth-child(389){opacity:.6446;transform:translate(58.7506vw,-10px) scale(.6659);animation:fall-389 27s -30s linear infinite}@keyframes fall-389{65.104%{transform:translate(68.3418vw,65.104vh) scale(.6659)}to{transform:translate(63.5462vw,100vh) scale(.6659)}}.snow:nth-child(390){opacity:.841;transform:translate(15.85vw,-10px) scale(.3698);animation:fall-390 13s -18s linear infinite}@keyframes fall-390{46.864%{transform:translate(15.1126vw,46.864vh) scale(.3698)}to{transform:translate(15.4813vw,100vh) scale(.3698)}}.snow:nth-child(391){opacity:.1934;transform:translate(45.9043vw,-10px) scale(.4996);animation:fall-391 24s -7s linear infinite}@keyframes fall-391{62.602%{transform:translate(50.8497vw,62.602vh) scale(.4996)}to{transform:translate(48.377vw,100vh) scale(.4996)}}.snow:nth-child(392){opacity:.7838;transform:translate(49.3289vw,-10px) scale(.3078);animation:fall-392 11s -18s linear infinite}@keyframes fall-392{48.268%{transform:translate(52.6817vw,48.268vh) scale(.3078)}to{transform:translate(51.0053vw,100vh) scale(.3078)}}.snow:nth-child(393){opacity:.671;transform:translate(39.1744vw,-10px) scale(.1209);animation:fall-393 16s -26s linear infinite}@keyframes fall-393{69.327%{transform:translate(38.3395vw,69.327vh) scale(.1209)}to{transform:translate(38.75695vw,100vh) scale(.1209)}}.snow:nth-child(394){opacity:.3606;transform:translate(74.0672vw,-10px) scale(.2449);animation:fall-394 11s -21s linear infinite}@keyframes fall-394{72.279%{transform:translate(75.0486vw,72.279vh) scale(.2449)}to{transform:translate(74.5579vw,100vh) scale(.2449)}}.snow:nth-child(395){opacity:.6242;transform:translate(72.1262vw,-10px) scale(.1493);animation:fall-395 28s -20s linear infinite}@keyframes fall-395{66.482%{transform:translate(63.6008vw,66.482vh) scale(.1493)}to{transform:translate(67.8635vw,100vh) scale(.1493)}}.snow:nth-child(396){opacity:1.2012;transform:translate(8.5515vw,-10px) scale(.9459);animation:fall-396 30s -3s linear infinite}@keyframes fall-396{41.046%{transform:translate(16.5161vw,41.046vh) scale(.9459)}to{transform:translate(12.5338vw,100vh) scale(.9459)}}.snow:nth-child(397){opacity:1.7992;transform:translate(20.413vw,-10px) scale(.4806);animation:fall-397 13s -23s linear infinite}@keyframes fall-397{63.314%{transform:translate(16.6585vw,63.314vh) scale(.4806)}to{transform:translate(18.53575vw,100vh) scale(.4806)}}.snow:nth-child(398){opacity:.7384;transform:translate(65.0293vw,-10px) scale(.8103);animation:fall-398 30s -17s linear infinite}@keyframes fall-398{79.012%{transform:translate(55.8805vw,79.012vh) scale(.8103)}to{transform:translate(60.4549vw,100vh) scale(.8103)}}.snow:nth-child(399){opacity:1.7756;transform:translate(61.6069vw,-10px) scale(.8129);animation:fall-399 23s -12s linear infinite}@keyframes fall-399{64.524%{transform:translate(56.3297vw,64.524vh) scale(.8129)}to{transform:translate(58.9683vw,100vh) scale(.8129)}}.snow:nth-child(400){opacity:1.3234;transform:translate(57.8058vw,-10px) scale(.5598);animation:fall-400 18s -4s linear infinite}@keyframes fall-400{32.918%{transform:translate(62.2006vw,32.918vh) scale(.5598)}to{transform:translate(60.0032vw,100vh) scale(.5598)}}\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 });
76
+ AppComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AppComponent, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: ["@import\"https://fonts.googleapis.com/css2?family=Lato&family=Sora&display=swap\";.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:#fffac2}.progress.progress-primary[value]::-moz-progress-bar{background-color:#fffac2}.progress.progress-primary[value]::-ms-fill{background-color:#fffac2}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#fffac2}}.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:#ef4444}.progress.progress-danger[value]::-moz-progress-bar{background-color:#ef4444}.progress.progress-danger[value]::-ms-fill{background-color:#ef4444}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#ef4444}}.progress.progress-success[value]::-webkit-progress-value{background-color:#84cc16}.progress.progress-success[value]::-moz-progress-bar{background-color:#84cc16}.progress.progress-success[value]::-ms-fill{background-color:#84cc16}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#84cc16}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#fbbf24}.progress.progress-warning[value]::-moz-progress-bar{background-color:#fbbf24}.progress.progress-warning[value]::-ms-fill{background-color:#fbbf24}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#fbbf24}}.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:#fffac2}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#ef4444}.tag.tag-success{background-color:#84cc16}.tag.tag-warning{background-color:#fbbf24}.tag.tag-dark{background-color:#344154}.tag.tag-main{background-color:#0056b3}.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:#fff8a9;color:#191e29;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#191e29}.card .card-header a:hover{color:#191e29cc}.card .card-footer{background:#fff8a9;color:#191e29;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #191E29}.card.card-primary{background:#fffac2}.card.card-primary.medium-opacity{background:rgba(255,250,194,.5)}.card.card-outline-primary{background:transparent;border:1px solid #fffac2}.card.card-success{background:#84cc16;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(132,204,22,.5)}.card.card-outline-success{background:transparent;border:1px solid #84CC16}.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:#fbbf24;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(251,191,36,.5)}.card.card-outline-warning{background:transparent;border:1px solid #FBBF24}.card.card-danger{background:#ef4444;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(239,68,68,.5)}.card.card-outline-danger{background:transparent;border:1px solid #EF4444}.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(52,65,84,.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:#191e29}.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(52,65,84,.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:#191e29}.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(0,86,179,.8)!important;border-color:#0056b3cc!important}.btn-primary.medium-opacity{background:rgba(0,86,179,.5);border-color:#0056b31a}.btn-primary:hover,.btn-primary:focus{background:#0056b3;border-color:#0056b3}.btn-primary:active{background:rgba(0,86,179,.95)!important;border-color:#0056b3f2!important}.btn-success{background:rgba(132,204,22,.8);border-color:#84cc16cc}.btn-success.medium-opacity{background:rgba(132,204,22,.5);border-color:#84cc161a}.btn-success:hover,.btn-success:focus{background:#84cc16;border-color:#84cc16}.btn-success:active{background:rgba(132,204,22,.95)!important;border-color:#84cc16f2!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(251,191,36,.8);border-color:#fbbf24cc}.btn-warning.medium-opacity{background:rgba(251,191,36,.5);border-color:#fbbf241a}.btn-warning:hover,.btn-warning:focus{background:#fbbf24;border-color:#fbbf24}.btn-warning:active{background:rgba(251,191,36,.95)!important;border-color:#fbbf24f2!important}.btn-danger{background:rgba(239,68,68,.8);border-color:#ef4444cc}.btn-danger.medium-opacity{background:rgba(239,68,68,.5);border-color:#ef44441a}.btn-danger:hover,.btn-danger:focus{background:#ef4444;border-color:#ef4444}.btn-danger:active{background:rgba(239,68,68,.95)!important;border-color:#ef4444f2!important}.btn-dark{background:rgba(52,65,84,.8);border-color:#344154cc;color:#191e29}.btn-dark.medium-opacity{background:rgba(52,65,84,.5);border-color:#3441541a}.btn-dark:hover{background:#344154;border-color:#344154}.btn-dark:active{background:rgba(52,65,84,.95)!important;border-color:#344154f2!important}.btn-main{background:rgba(0,86,179,.8);border-color:#0056b3cc;color:#191e29}.btn-main.medium-opacity{background:rgba(0,86,179,.5);border-color:#0056b31a}.btn-main:hover{color:#191e29!important;background:#0056b3;border-color:#0056b3}.btn-main:active{background:rgba(0,86,179,.95)!important;border-color:#0056b3f2!important}.btn-outline-primary{color:#fffac2;border-color:#fffac2}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#191e29;background:#fffac2;border-color:#fffac2}.btn-outline-primary:active,.btn-outline-primary.active{color:#191e29!important;background:#fffac2!important;border-color:#fffac2!important}.btn-outline-success{color:#84cc16;border-color:#84cc16}.btn-outline-success:hover,.btn-outline-success:focus{color:#191e29;background:#84CC16;border-color:#84cc16}.btn-outline-success:active,.btn-outline-success.active{color:#191e29!important;background:#84CC16!important;border-color:#84cc16!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#191e29;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#191e29!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#fbbf24;border-color:#fbbf24}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#191e29;background:#FBBF24;border-color:#fbbf24}.btn-outline-warning:active,.btn-outline-warning.active{color:#191e29!important;background:#FBBF24!important;border-color:#fbbf24!important}.btn-outline-danger{color:#ef4444;border-color:#ef4444}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#191e29;background:#EF4444;border-color:#ef4444}.btn-outline-danger:active,.btn-outline-danger.active{color:#191e29!important;background:#EF4444!important;border-color:#ef4444!important}.btn-outline-dark{color:#344154;border-color:#344154;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#191e29;background:#344154;border-color:#344154}.btn-outline-main{color:#0056b3;border-color:#0056b3;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#191e29;background:#0056b3;border-color:#0056b3}.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:#fffac2!important}.text-success{color:#84cc16!important}.text-info{color:#248dad!important}.text-warning{color:#fbbf24!important}.text-danger{color:#ef4444!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:#0056b3cc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#191e29;color:#0056b3}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#0056b3;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:#fffac266;border:1px solid #fffac2}.nav-tabs.tabs-primary .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#fffac2;color:#191e29}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-success{background-color:#84cc1666;border:1px solid #84CC16}.nav-tabs.tabs-success .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#84cc16;color:#191e29}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#191e29}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-warning{background-color:#fbbf2466;border:1px solid #FBBF24}.nav-tabs.tabs-warning .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#fbbf24;color:#191e29}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-danger{background-color:#ef444466;border:1px solid #EF4444}.nav-tabs.tabs-danger .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#ef4444;color:#191e29}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#191e29}.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:#fffac2;color:#191e29;border-color:#fffac2}.tab-content.tab-content-success{background-color:#84cc16;color:#191e29;border-color:#84cc16}.tab-content.tab-content-info{background-color:#248dad;color:#191e29;border-color:#248dad}.tab-content.tab-content-warning{background-color:#fbbf24;color:#191e29;border-color:#fbbf24}.tab-content.tab-content-danger{background-color:#ef4444;color:#191e29;border-color:#ef4444}.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:#0056b3cc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#191e29}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#0056b3;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#0056b399;cursor:not-allowed!important}.alert.alert-success{background-color:#84cc16;border-color:#84cc16;color:#191e29}.alert.alert-success.medium-opacity{background:rgba(132,204,22,.5);border-color:#84cc1699}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#191e29}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#fbbf24;border-color:#fbbf24;color:#191e29}.alert.alert-warning.medium-opacity{background-color:#fbbf2480;border-color:#fbbf2499}.alert.alert-danger{background-color:#ef4444;border-color:#ef4444;color:#191e29}.alert.alert-danger.medium-opacity{background-color:#ef444480;border-color:#ef444499}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#344154}.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:#191e29;background-color:#fffac2}.modal-dialog .modal-content .modal-header.modal-success{color:#191e29;background-color:#84cc16}.modal-dialog .modal-content .modal-header.modal-info{color:#191e29;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#191e29;background-color:#fbbf24}.modal-dialog .modal-content .modal-header.modal-danger{color:#191e29;background-color:#ef4444}.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:#344154cc}.list-group .list-group-item.active{color:#191e29e6;background-color:#fffac2;border-color:#fffac2}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#191e29!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#344154}.list-group .list-group-item.list-group-item-primary{color:#191e29;background-color:#fffac2}.list-group .list-group-item.list-group-item-success{color:#191e29;background-color:#84cc16}.list-group .list-group-item.list-group-item-info{color:#191e29;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#191e29;background-color:#fbbf24}.list-group .list-group-item.list-group-item-danger{color:#191e29;background-color:#ef4444}.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='%2384CC16' 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:#84cc16cc}.has-success .form-control:focus{box-shadow:none;border-color:#84cc1680}.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:#84cc16}.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='%23FBBF24' 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:#fbbf24cc}.has-warning .form-control:focus{box-shadow:none;border-color:#fbbf2480}.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:#fbbf24}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444cc}.has-danger .form-control:focus{box-shadow:none;border-color:#ef444480}.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:#ef4444}.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:#ef4444!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#84cc16;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='%2384CC16' 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:#ef4444;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#84cc16;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='%2384CC16' 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:#344154cc}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:#0056b3}.dropdown-menu a:hover{color:#191e29;background-color:#0056b3}.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:#fffac2}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fffac2}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#84CC16}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #84cc16}.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:#FBBF24}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fbbf24}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#EF4444}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #ef4444}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#0056b3}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #0056b3}.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:#fffac2}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fffac2}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#84CC16}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #84cc16}.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:#FBBF24}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fbbf24}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#EF4444}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #ef4444}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#0056b3}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #0056b3}.custom-select,.custom-select:focus{background:rgba(25,30,41,.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:#fffac2!important}.bg-primary.medium-opacity{background:rgba(255,250,194,.5)!important}.bg-success{background:#84cc16!important}.bg-success.medium-opacity{background:rgba(132,204,22,.5)!important}.bg-info{background:#248dad!important}.bg-info.medium-opacity{background:rgba(36,141,173,.5)!important}.bg-warning{background:#fbbf24!important}.bg-warning.medium-opacity{background:rgba(251,191,36,.5)!important}.bg-danger{background:#ef4444!important}.bg-danger.medium-opacity{background:rgba(239,68,68,.5)!important}.bg-main{background:#0056b3!important}.bg-main.medium-opacity{background:rgba(0,86,179,.5)!important}.bg-dark{background:#344154!important}.bg-dark.medium-opacity{background:rgba(52,65,84,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#84cc16;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='%2384CC16' 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}.pull-right{float:right!important}.pull-left{float:left!important}.es-table{background-color:#f2f2f2}.table-responsive{margin-bottom:0!important}.table-responsive .est-table-dotted-menu{background-color:#2a3544!important;padding:10px 5px!important}.table-responsive .est-sticky-last-column,.table-responsive .est-sticky-last-column-alt{background-color:#0000}.table-responsive th{font-family:Sora,sans-serif;color:#fff;background-color:#2a3544;padding:10px 15px}.table-responsive td{padding:10px 15px}.table-responsive .table-striped tbody tr:nth-of-type(odd){background-color:#fff}.table-responsive table{color:#000;margin-bottom:0!important}.table-responsive .table-hover tbody tr:hover{color:#000}.est-relative>div:nth-child(2){padding:15px;border-top:10px solid #e9ebee;background-color:#fff}.est-relative>div:nth-child(2)>div:nth-child(1){margin-top:3px}.est-relative>div:nth-child(2)>div:nth-child(2){margin-top:4px;margin-bottom:-4px}.pace .pace-progress{background:#fffac2;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:#0056b3;border-left-color:#0056b3}.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}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}.app-ck-height-400 .ck-editor__editable{max-height:400px}.lazyContainer{position:relative}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Lato,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-family:Sora,sans-serif;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:#191e29;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:#191e29b3}.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:#0056b3;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#0056b3}.widget-controls ul.dropdown-menu li:hover a{color:#191e29}.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:#fffac2}.card.fullscreened.card-success{background:#84CC16}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#FBBF24}.card.fullscreened.card-danger{background:#EF4444}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.2584;transform:translate(24.8601vw,-10px) scale(.5335);animation:fall-1 22s -29s linear infinite}@keyframes fall-1{70.43%{transform:translate(32.2991vw,70.43vh) scale(.5335)}to{transform:translate(28.5796vw,100vh) scale(.5335)}}.snow:nth-child(2){opacity:.6136;transform:translate(58.152vw,-10px) scale(.1027);animation:fall-2 20s -9s linear infinite}@keyframes fall-2{33.843%{transform:translate(64.3127vw,33.843vh) scale(.1027)}to{transform:translate(61.23235vw,100vh) scale(.1027)}}.snow:nth-child(3){opacity:.1366;transform:translate(2.1986vw,-10px) scale(.5597);animation:fall-3 29s -13s linear infinite}@keyframes fall-3{72.001%{transform:translate(-7.4898vw,72.001vh) scale(.5597)}to{transform:translate(-2.6456vw,100vh) scale(.5597)}}.snow:nth-child(4){opacity:.4894;transform:translate(45.7376vw,-10px) scale(.1804);animation:fall-4 15s -25s linear infinite}@keyframes fall-4{62.65%{transform:translate(38.0506vw,62.65vh) scale(.1804)}to{transform:translate(41.8941vw,100vh) scale(.1804)}}.snow:nth-child(5){opacity:1.5612;transform:translate(96.691vw,-10px) scale(.4962);animation:fall-5 18s -22s linear infinite}@keyframes fall-5{60.949%{transform:translate(95.3274vw,60.949vh) scale(.4962)}to{transform:translate(96.0092vw,100vh) scale(.4962)}}.snow:nth-child(6){opacity:.755;transform:translate(92.2509vw,-10px) scale(.165);animation:fall-6 17s -11s linear infinite}@keyframes fall-6{63.63%{transform:translate(89.4587vw,63.63vh) scale(.165)}to{transform:translate(90.8548vw,100vh) scale(.165)}}.snow:nth-child(7){opacity:1.685;transform:translate(19.9777vw,-10px) scale(.996);animation:fall-7 27s -25s linear infinite}@keyframes fall-7{74.409%{transform:translate(29.8907vw,74.409vh) scale(.996)}to{transform:translate(24.9342vw,100vh) scale(.996)}}.snow:nth-child(8){opacity:.241;transform:translate(78.673vw,-10px) scale(.8524);animation:fall-8 10s -8s linear infinite}@keyframes fall-8{76.099%{transform:translate(78.8229vw,76.099vh) scale(.8524)}to{transform:translate(78.74795vw,100vh) scale(.8524)}}.snow:nth-child(9){opacity:.566;transform:translate(88.8641vw,-10px) scale(.8936);animation:fall-9 12s -23s linear infinite}@keyframes fall-9{30.682%{transform:translate(92.1905vw,30.682vh) scale(.8936)}to{transform:translate(90.5273vw,100vh) scale(.8936)}}.snow:nth-child(10){opacity:1.114;transform:translate(71.3418vw,-10px) scale(.5505);animation:fall-10 21s -13s linear infinite}@keyframes fall-10{41.474%{transform:translate(78.4549vw,41.474vh) scale(.5505)}to{transform:translate(74.89835vw,100vh) scale(.5505)}}.snow:nth-child(11){opacity:1.1262;transform:translate(80.8718vw,-10px) scale(.4782);animation:fall-11 20s -8s linear infinite}@keyframes fall-11{68.986%{transform:translate(89.147vw,68.986vh) scale(.4782)}to{transform:translate(85.0094vw,100vh) scale(.4782)}}.snow:nth-child(12){opacity:1.0056;transform:translate(36.2505vw,-10px) scale(.8795);animation:fall-12 20s -6s linear infinite}@keyframes fall-12{44.325%{transform:translate(28.9545vw,44.325vh) scale(.8795)}to{transform:translate(32.6025vw,100vh) scale(.8795)}}.snow:nth-child(13){opacity:1.5778;transform:translate(37.9893vw,-10px) scale(.2082);animation:fall-13 21s -19s linear infinite}@keyframes fall-13{31.356%{transform:translate(34.4542vw,31.356vh) scale(.2082)}to{transform:translate(36.22175vw,100vh) scale(.2082)}}.snow:nth-child(14){opacity:1.825;transform:translate(23.6995vw,-10px) scale(.182);animation:fall-14 23s -7s linear infinite}@keyframes fall-14{43.323%{transform:translate(30.6495vw,43.323vh) scale(.182)}to{transform:translate(27.1745vw,100vh) scale(.182)}}.snow:nth-child(15){opacity:.3566;transform:translate(55.8069vw,-10px) scale(.2043);animation:fall-15 25s -20s linear infinite}@keyframes fall-15{51.877%{transform:translate(51.7516vw,51.877vh) scale(.2043)}to{transform:translate(53.77925vw,100vh) scale(.2043)}}.snow:nth-child(16){opacity:1.086;transform:translate(18.9825vw,-10px) scale(.4956);animation:fall-16 20s -28s linear infinite}@keyframes fall-16{38.032%{transform:translate(18.4332vw,38.032vh) scale(.4956)}to{transform:translate(18.70785vw,100vh) scale(.4956)}}.snow:nth-child(17){opacity:1.0544;transform:translate(86.9695vw,-10px) scale(.1971);animation:fall-17 18s -13s linear infinite}@keyframes fall-17{68.069%{transform:translate(83.3902vw,68.069vh) scale(.1971)}to{transform:translate(85.17985vw,100vh) scale(.1971)}}.snow:nth-child(18){opacity:.7112;transform:translate(39.369vw,-10px) scale(.6007);animation:fall-18 24s -4s linear infinite}@keyframes fall-18{33.128%{transform:translate(47.2645vw,33.128vh) scale(.6007)}to{transform:translate(43.31675vw,100vh) scale(.6007)}}.snow:nth-child(19){opacity:1.1662;transform:translate(37.2349vw,-10px) scale(.3625);animation:fall-19 22s -3s linear infinite}@keyframes fall-19{38.746%{transform:translate(36.5306vw,38.746vh) scale(.3625)}to{transform:translate(36.88275vw,100vh) scale(.3625)}}.snow:nth-child(20){opacity:1.9328;transform:translate(10.3555vw,-10px) scale(.9408);animation:fall-20 25s -4s linear infinite}@keyframes fall-20{61.666%{transform:translate(19.5253vw,61.666vh) scale(.9408)}to{transform:translate(14.9404vw,100vh) scale(.9408)}}.snow:nth-child(21){opacity:.98;transform:translate(8.4677vw,-10px) scale(.7497);animation:fall-21 11s -17s linear infinite}@keyframes fall-21{58.622%{transform:translate(18.0806vw,58.622vh) scale(.7497)}to{transform:translate(13.27415vw,100vh) scale(.7497)}}.snow:nth-child(22){opacity:.1506;transform:translate(15.2134vw,-10px) scale(.0407);animation:fall-22 20s -25s linear infinite}@keyframes fall-22{78.174%{transform:translate(20.3392vw,78.174vh) scale(.0407)}to{transform:translate(17.7763vw,100vh) scale(.0407)}}.snow:nth-child(23){opacity:1.5326;transform:translate(3.5625vw,-10px) scale(.5494);animation:fall-23 12s -3s linear infinite}@keyframes fall-23{72.779%{transform:translate(10.4917vw,72.779vh) scale(.5494)}to{transform:translate(7.0271vw,100vh) scale(.5494)}}.snow:nth-child(24){opacity:1.6782;transform:translate(32.9394vw,-10px) scale(.9654);animation:fall-24 29s -19s linear infinite}@keyframes fall-24{38.631%{transform:translate(38.2188vw,38.631vh) scale(.9654)}to{transform:translate(35.5791vw,100vh) scale(.9654)}}.snow:nth-child(25){opacity:.9762;transform:translate(13.5224vw,-10px) scale(.2587);animation:fall-25 30s -11s linear infinite}@keyframes fall-25{49.638%{transform:translate(18.9376vw,49.638vh) scale(.2587)}to{transform:translate(16.23vw,100vh) scale(.2587)}}.snow:nth-child(26){opacity:1.74;transform:translate(12.3334vw,-10px) scale(.618);animation:fall-26 15s -27s linear infinite}@keyframes fall-26{76.531%{transform:translate(7.6146vw,76.531vh) scale(.618)}to{transform:translate(9.974vw,100vh) scale(.618)}}.snow:nth-child(27){opacity:.7604;transform:translate(20.8099vw,-10px) scale(.2006);animation:fall-27 26s -28s linear infinite}@keyframes fall-27{72.662%{transform:translate(27.6873vw,72.662vh) scale(.2006)}to{transform:translate(24.2486vw,100vh) scale(.2006)}}.snow:nth-child(28){opacity:.7862;transform:translate(18.0034vw,-10px) scale(.3962);animation:fall-28 30s -25s linear infinite}@keyframes fall-28{74.539%{transform:translate(27.3825vw,74.539vh) scale(.3962)}to{transform:translate(22.69295vw,100vh) scale(.3962)}}.snow:nth-child(29){opacity:.8134;transform:translate(99.4354vw,-10px) scale(.1792);animation:fall-29 13s -4s linear infinite}@keyframes fall-29{69.406%{transform:translate(108.4882vw,69.406vh) scale(.1792)}to{transform:translate(103.9618vw,100vh) scale(.1792)}}.snow:nth-child(30){opacity:1.0372;transform:translate(77.1376vw,-10px) scale(.268);animation:fall-30 17s -27s linear infinite}@keyframes fall-30{36.254%{transform:translate(85.976vw,36.254vh) scale(.268)}to{transform:translate(81.5568vw,100vh) scale(.268)}}.snow:nth-child(31){opacity:1.3818;transform:translate(93.6861vw,-10px) scale(.1704);animation:fall-31 24s -27s linear infinite}@keyframes fall-31{61.355%{transform:translate(84.0768vw,61.355vh) scale(.1704)}to{transform:translate(88.88145vw,100vh) scale(.1704)}}.snow:nth-child(32){opacity:.6896;transform:translate(68.3953vw,-10px) scale(.4558);animation:fall-32 16s -1s linear infinite}@keyframes fall-32{76.344%{transform:translate(73.406vw,76.344vh) scale(.4558)}to{transform:translate(70.90065vw,100vh) scale(.4558)}}.snow:nth-child(33){opacity:.9314;transform:translate(62.8384vw,-10px) scale(.1164);animation:fall-33 22s -16s linear infinite}@keyframes fall-33{77.64%{transform:translate(67.7602vw,77.64vh) scale(.1164)}to{transform:translate(65.2993vw,100vh) scale(.1164)}}.snow:nth-child(34){opacity:1.2628;transform:translate(9.9831vw,-10px) scale(.7592);animation:fall-34 12s -29s linear infinite}@keyframes fall-34{39.738%{transform:translate(10.761vw,39.738vh) scale(.7592)}to{transform:translate(10.37205vw,100vh) scale(.7592)}}.snow:nth-child(35){opacity:.1462;transform:translate(37.0274vw,-10px) scale(.1727);animation:fall-35 25s -27s linear infinite}@keyframes fall-35{49.845%{transform:translate(33.0589vw,49.845vh) scale(.1727)}to{transform:translate(35.04315vw,100vh) scale(.1727)}}.snow:nth-child(36){opacity:1.582;transform:translate(48.5872vw,-10px) scale(.2391);animation:fall-36 18s -10s linear infinite}@keyframes fall-36{34.721%{transform:translate(58.1312vw,34.721vh) scale(.2391)}to{transform:translate(53.3592vw,100vh) scale(.2391)}}.snow:nth-child(37){opacity:1.5674;transform:translate(19.7655vw,-10px) scale(.1068);animation:fall-37 15s -3s linear infinite}@keyframes fall-37{37.29%{transform:translate(21.8838vw,37.29vh) scale(.1068)}to{transform:translate(20.82465vw,100vh) scale(.1068)}}.snow:nth-child(38){opacity:.2184;transform:translate(85.9432vw,-10px) scale(.007);animation:fall-38 30s -16s linear infinite}@keyframes fall-38{39.266%{transform:translate(76.9948vw,39.266vh) scale(.007)}to{transform:translate(81.469vw,100vh) scale(.007)}}.snow:nth-child(39){opacity:.0188;transform:translate(99.9646vw,-10px) scale(.2837);animation:fall-39 16s -25s linear infinite}@keyframes fall-39{60.42%{transform:translate(103.8946vw,60.42vh) scale(.2837)}to{transform:translate(101.9296vw,100vh) scale(.2837)}}.snow:nth-child(40){opacity:1.8852;transform:translate(63.9886vw,-10px) scale(.1392);animation:fall-40 22s -18s linear infinite}@keyframes fall-40{69.939%{transform:translate(73.3278vw,69.939vh) scale(.1392)}to{transform:translate(68.6582vw,100vh) scale(.1392)}}.snow:nth-child(41){opacity:.5942;transform:translate(79.7566vw,-10px) scale(.2245);animation:fall-41 19s -4s linear infinite}@keyframes fall-41{58.955%{transform:translate(70.5136vw,58.955vh) scale(.2245)}to{transform:translate(75.1351vw,100vh) scale(.2245)}}.snow:nth-child(42){opacity:1.2352;transform:translate(31.5388vw,-10px) scale(.627);animation:fall-42 28s -23s linear infinite}@keyframes fall-42{59.579%{transform:translate(24.3592vw,59.579vh) scale(.627)}to{transform:translate(27.949vw,100vh) scale(.627)}}.snow:nth-child(43){opacity:1.708;transform:translate(80.2659vw,-10px) scale(.5583);animation:fall-43 10s -7s linear infinite}@keyframes fall-43{59.63%{transform:translate(72.7609vw,59.63vh) scale(.5583)}to{transform:translate(76.5134vw,100vh) scale(.5583)}}.snow:nth-child(44){opacity:.9838;transform:translate(40.3169vw,-10px) scale(.0435);animation:fall-44 27s -15s linear infinite}@keyframes fall-44{33.177%{transform:translate(36.6244vw,33.177vh) scale(.0435)}to{transform:translate(38.47065vw,100vh) scale(.0435)}}.snow:nth-child(45){opacity:1.1784;transform:translate(85.7057vw,-10px) scale(.2244);animation:fall-45 19s -29s linear infinite}@keyframes fall-45{64.916%{transform:translate(93.498vw,64.916vh) scale(.2244)}to{transform:translate(89.60185vw,100vh) scale(.2244)}}.snow:nth-child(46){opacity:.3542;transform:translate(93.2433vw,-10px) scale(.8611);animation:fall-46 24s -24s linear infinite}@keyframes fall-46{61.832%{transform:translate(99.3087vw,61.832vh) scale(.8611)}to{transform:translate(96.276vw,100vh) scale(.8611)}}.snow:nth-child(47){opacity:.7074;transform:translate(22.4581vw,-10px) scale(.2827);animation:fall-47 12s -7s linear infinite}@keyframes fall-47{64.228%{transform:translate(17.871vw,64.228vh) scale(.2827)}to{transform:translate(20.16455vw,100vh) scale(.2827)}}.snow:nth-child(48){opacity:.7402;transform:translate(16.508vw,-10px) scale(.8265);animation:fall-48 27s -23s linear infinite}@keyframes fall-48{62.621%{transform:translate(26.1957vw,62.621vh) scale(.8265)}to{transform:translate(21.35185vw,100vh) scale(.8265)}}.snow:nth-child(49){opacity:.8366;transform:translate(93.6132vw,-10px) scale(.9417);animation:fall-49 29s -22s linear infinite}@keyframes fall-49{72.09%{transform:translate(100.4981vw,72.09vh) scale(.9417)}to{transform:translate(97.05565vw,100vh) scale(.9417)}}.snow:nth-child(50){opacity:.9494;transform:translate(6.4861vw,-10px) scale(.5922);animation:fall-50 22s -5s linear infinite}@keyframes fall-50{46.742%{transform:translate(11.7795vw,46.742vh) scale(.5922)}to{transform:translate(9.1328vw,100vh) scale(.5922)}}.snow:nth-child(51){opacity:.7554;transform:translate(16.9489vw,-10px) scale(.9175);animation:fall-51 24s -8s linear infinite}@keyframes fall-51{71.286%{transform:translate(11.5369vw,71.286vh) scale(.9175)}to{transform:translate(14.2429vw,100vh) scale(.9175)}}.snow:nth-child(52){opacity:1.4474;transform:translate(41.0599vw,-10px) scale(.0159);animation:fall-52 10s -29s linear infinite}@keyframes fall-52{71.916%{transform:translate(44.8851vw,71.916vh) scale(.0159)}to{transform:translate(42.9725vw,100vh) scale(.0159)}}.snow:nth-child(53){opacity:.0812;transform:translate(54.0526vw,-10px) scale(.6375);animation:fall-53 10s -9s linear infinite}@keyframes fall-53{68.318%{transform:translate(53.6301vw,68.318vh) scale(.6375)}to{transform:translate(53.84135vw,100vh) scale(.6375)}}.snow:nth-child(54){opacity:.5994;transform:translate(76.6169vw,-10px) scale(.5621);animation:fall-54 18s -17s linear infinite}@keyframes fall-54{55.373%{transform:translate(76.9644vw,55.373vh) scale(.5621)}to{transform:translate(76.79065vw,100vh) scale(.5621)}}.snow:nth-child(55){opacity:1.445;transform:translate(93.5602vw,-10px) scale(.0129);animation:fall-55 24s -20s linear infinite}@keyframes fall-55{74.765%{transform:translate(98.6346vw,74.765vh) scale(.0129)}to{transform:translate(96.0974vw,100vh) scale(.0129)}}.snow:nth-child(56){opacity:.4892;transform:translate(10.3544vw,-10px) scale(.496);animation:fall-56 18s -30s linear infinite}@keyframes fall-56{71.732%{transform:translate(11.2301vw,71.732vh) scale(.496)}to{transform:translate(10.79225vw,100vh) scale(.496)}}.snow:nth-child(57){opacity:1.531;transform:translate(56.5969vw,-10px) scale(.2129);animation:fall-57 21s -26s linear infinite}@keyframes fall-57{45.112%{transform:translate(51.6883vw,45.112vh) scale(.2129)}to{transform:translate(54.1426vw,100vh) scale(.2129)}}.snow:nth-child(58){opacity:1.98;transform:translate(69.7879vw,-10px) scale(.2494);animation:fall-58 21s -7s linear infinite}@keyframes fall-58{66.913%{transform:translate(63.3187vw,66.913vh) scale(.2494)}to{transform:translate(66.5533vw,100vh) scale(.2494)}}.snow:nth-child(59){opacity:.879;transform:translate(16.8125vw,-10px) scale(.5659);animation:fall-59 23s -13s linear infinite}@keyframes fall-59{61.723%{transform:translate(14.5337vw,61.723vh) scale(.5659)}to{transform:translate(15.6731vw,100vh) scale(.5659)}}.snow:nth-child(60){opacity:1.0814;transform:translate(19.9317vw,-10px) scale(.6697);animation:fall-60 25s -30s linear infinite}@keyframes fall-60{40.866%{transform:translate(11.6367vw,40.866vh) scale(.6697)}to{transform:translate(15.7842vw,100vh) scale(.6697)}}.snow:nth-child(61){opacity:1.771;transform:translate(35.5929vw,-10px) scale(.5856);animation:fall-61 12s -30s linear infinite}@keyframes fall-61{40.43%{transform:translate(45.4141vw,40.43vh) scale(.5856)}to{transform:translate(40.5035vw,100vh) scale(.5856)}}.snow:nth-child(62){opacity:1.1704;transform:translate(17.4914vw,-10px) scale(.6098);animation:fall-62 30s -30s linear infinite}@keyframes fall-62{68.932%{transform:translate(18.4933vw,68.932vh) scale(.6098)}to{transform:translate(17.99235vw,100vh) scale(.6098)}}.snow:nth-child(63){opacity:.8008;transform:translate(14.6477vw,-10px) scale(.699);animation:fall-63 16s -8s linear infinite}@keyframes fall-63{78.417%{transform:translate(15.6298vw,78.417vh) scale(.699)}to{transform:translate(15.13875vw,100vh) scale(.699)}}.snow:nth-child(64){opacity:1.3294;transform:translate(47.4097vw,-10px) scale(.1654);animation:fall-64 12s -7s linear infinite}@keyframes fall-64{55.912%{transform:translate(44.6297vw,55.912vh) scale(.1654)}to{transform:translate(46.0197vw,100vh) scale(.1654)}}.snow:nth-child(65){opacity:1.8806;transform:translate(18.7011vw,-10px) scale(.1777);animation:fall-65 27s -12s linear infinite}@keyframes fall-65{73.278%{transform:translate(11.433vw,73.278vh) scale(.1777)}to{transform:translate(15.06705vw,100vh) scale(.1777)}}.snow:nth-child(66){opacity:.0936;transform:translate(96.8962vw,-10px) scale(.716);animation:fall-66 11s -17s linear infinite}@keyframes fall-66{55.947%{transform:translate(102.6781vw,55.947vh) scale(.716)}to{transform:translate(99.78715vw,100vh) scale(.716)}}.snow:nth-child(67){opacity:1.2794;transform:translate(36.341vw,-10px) scale(.2474);animation:fall-67 24s -5s linear infinite}@keyframes fall-67{48.785%{transform:translate(37.4664vw,48.785vh) scale(.2474)}to{transform:translate(36.9037vw,100vh) scale(.2474)}}.snow:nth-child(68){opacity:.3622;transform:translate(31.7721vw,-10px) scale(.1522);animation:fall-68 13s -22s linear infinite}@keyframes fall-68{31.974%{transform:translate(22.5669vw,31.974vh) scale(.1522)}to{transform:translate(27.1695vw,100vh) scale(.1522)}}.snow:nth-child(69){opacity:1.2044;transform:translate(19.3436vw,-10px) scale(.5671);animation:fall-69 12s -6s linear infinite}@keyframes fall-69{67.208%{transform:translate(16.4835vw,67.208vh) scale(.5671)}to{transform:translate(17.91355vw,100vh) scale(.5671)}}.snow:nth-child(70){opacity:1.2388;transform:translate(34.3985vw,-10px) scale(.5464);animation:fall-70 16s -13s linear infinite}@keyframes fall-70{38.281%{transform:translate(25.0316vw,38.281vh) scale(.5464)}to{transform:translate(29.71505vw,100vh) scale(.5464)}}.snow:nth-child(71){opacity:.5758;transform:translate(37.1195vw,-10px) scale(.9926);animation:fall-71 26s -9s linear infinite}@keyframes fall-71{41.027%{transform:translate(28.9529vw,41.027vh) scale(.9926)}to{transform:translate(33.0362vw,100vh) scale(.9926)}}.snow:nth-child(72){opacity:1.2584;transform:translate(56.1977vw,-10px) scale(.1952);animation:fall-72 30s -14s linear infinite}@keyframes fall-72{66.436%{transform:translate(58.5041vw,66.436vh) scale(.1952)}to{transform:translate(57.3509vw,100vh) scale(.1952)}}.snow:nth-child(73){opacity:1.586;transform:translate(90.4693vw,-10px) scale(.4505);animation:fall-73 28s -9s linear infinite}@keyframes fall-73{62.433%{transform:translate(92.9495vw,62.433vh) scale(.4505)}to{transform:translate(91.7094vw,100vh) scale(.4505)}}.snow:nth-child(74){opacity:.8694;transform:translate(7.455vw,-10px) scale(.8103);animation:fall-74 17s -30s linear infinite}@keyframes fall-74{38.947%{transform:translate(13.0298vw,38.947vh) scale(.8103)}to{transform:translate(10.2424vw,100vh) scale(.8103)}}.snow:nth-child(75){opacity:.5304;transform:translate(71.04vw,-10px) scale(.2057);animation:fall-75 22s -24s linear infinite}@keyframes fall-75{57.437%{transform:translate(77.7105vw,57.437vh) scale(.2057)}to{transform:translate(74.37525vw,100vh) scale(.2057)}}.snow:nth-child(76){opacity:.183;transform:translate(9.382vw,-10px) scale(.4218);animation:fall-76 25s -2s linear infinite}@keyframes fall-76{40.73%{transform:translate(9.3856vw,40.73vh) scale(.4218)}to{transform:translate(9.3838vw,100vh) scale(.4218)}}.snow:nth-child(77){opacity:.9284;transform:translate(87.3147vw,-10px) scale(.311);animation:fall-77 14s -20s linear infinite}@keyframes fall-77{39.114%{transform:translate(83.6579vw,39.114vh) scale(.311)}to{transform:translate(85.4863vw,100vh) scale(.311)}}.snow:nth-child(78){opacity:1.5534;transform:translate(66.3345vw,-10px) scale(.5972);animation:fall-78 11s -19s linear infinite}@keyframes fall-78{50.006%{transform:translate(57.3304vw,50.006vh) scale(.5972)}to{transform:translate(61.83245vw,100vh) scale(.5972)}}.snow:nth-child(79){opacity:.261;transform:translate(88.8078vw,-10px) scale(.7287);animation:fall-79 12s -7s linear infinite}@keyframes fall-79{33.458%{transform:translate(87.7403vw,33.458vh) scale(.7287)}to{transform:translate(88.27405vw,100vh) scale(.7287)}}.snow:nth-child(80){opacity:1.095;transform:translate(12.2101vw,-10px) scale(.6532);animation:fall-80 29s -27s linear infinite}@keyframes fall-80{71.612%{transform:translate(18.6663vw,71.612vh) scale(.6532)}to{transform:translate(15.4382vw,100vh) scale(.6532)}}.snow:nth-child(81){opacity:.2986;transform:translate(13.3228vw,-10px) scale(.9077);animation:fall-81 25s -9s linear infinite}@keyframes fall-81{67.317%{transform:translate(9.4182vw,67.317vh) scale(.9077)}to{transform:translate(11.3705vw,100vh) scale(.9077)}}.snow:nth-child(82){opacity:.9896;transform:translate(57.843vw,-10px) scale(.6444);animation:fall-82 15s -30s linear infinite}@keyframes fall-82{41.535%{transform:translate(56.2589vw,41.535vh) scale(.6444)}to{transform:translate(57.05095vw,100vh) scale(.6444)}}.snow:nth-child(83){opacity:1.8044;transform:translate(54.6242vw,-10px) scale(.0775);animation:fall-83 15s -29s linear infinite}@keyframes fall-83{41.314%{transform:translate(54.7404vw,41.314vh) scale(.0775)}to{transform:translate(54.6823vw,100vh) scale(.0775)}}.snow:nth-child(84){opacity:1.0516;transform:translate(98.8409vw,-10px) scale(.5892);animation:fall-84 18s -1s linear infinite}@keyframes fall-84{54.094%{transform:translate(107.8891vw,54.094vh) scale(.5892)}to{transform:translate(103.365vw,100vh) scale(.5892)}}.snow:nth-child(85){opacity:.6076;transform:translate(84.312vw,-10px) scale(.9114);animation:fall-85 13s -17s linear infinite}@keyframes fall-85{50.324%{transform:translate(93.7546vw,50.324vh) scale(.9114)}to{transform:translate(89.0333vw,100vh) scale(.9114)}}.snow:nth-child(86){opacity:.5092;transform:translate(99.1121vw,-10px) scale(.9301);animation:fall-86 24s -5s linear infinite}@keyframes fall-86{62.619%{transform:translate(109.0734vw,62.619vh) scale(.9301)}to{transform:translate(104.09275vw,100vh) scale(.9301)}}.snow:nth-child(87){opacity:1.1248;transform:translate(47.574vw,-10px) scale(.2361);animation:fall-87 13s -10s linear infinite}@keyframes fall-87{39.915%{transform:translate(53.704vw,39.915vh) scale(.2361)}to{transform:translate(50.639vw,100vh) scale(.2361)}}.snow:nth-child(88){opacity:1.1906;transform:translate(72.4027vw,-10px) scale(.3831);animation:fall-88 22s -25s linear infinite}@keyframes fall-88{69.771%{transform:translate(75.0931vw,69.771vh) scale(.3831)}to{transform:translate(73.7479vw,100vh) scale(.3831)}}.snow:nth-child(89){opacity:1.778;transform:translate(20.2489vw,-10px) scale(.4538);animation:fall-89 29s -14s linear infinite}@keyframes fall-89{66.397%{transform:translate(19.5053vw,66.397vh) scale(.4538)}to{transform:translate(19.8771vw,100vh) scale(.4538)}}.snow:nth-child(90){opacity:1.0894;transform:translate(8.5373vw,-10px) scale(.6976);animation:fall-90 29s -29s linear infinite}@keyframes fall-90{67.036%{transform:translate(2.5511vw,67.036vh) scale(.6976)}to{transform:translate(5.5442vw,100vh) scale(.6976)}}.snow:nth-child(91){opacity:1.7776;transform:translate(61.6315vw,-10px) scale(.4258);animation:fall-91 15s -30s linear infinite}@keyframes fall-91{68.172%{transform:translate(60.1075vw,68.172vh) scale(.4258)}to{transform:translate(60.8695vw,100vh) scale(.4258)}}.snow:nth-child(92){opacity:1.3442;transform:translate(71.1651vw,-10px) scale(.8761);animation:fall-92 10s -29s linear infinite}@keyframes fall-92{71.836%{transform:translate(63.5527vw,71.836vh) scale(.8761)}to{transform:translate(67.3589vw,100vh) scale(.8761)}}.snow:nth-child(93){opacity:.3328;transform:translate(8.5565vw,-10px) scale(.7026);animation:fall-93 13s -23s linear infinite}@keyframes fall-93{78.913%{transform:translate(15.0353vw,78.913vh) scale(.7026)}to{transform:translate(11.7959vw,100vh) scale(.7026)}}.snow:nth-child(94){opacity:.2294;transform:translate(72.3582vw,-10px) scale(.0184);animation:fall-94 26s -7s linear infinite}@keyframes fall-94{50.269%{transform:translate(66.4515vw,50.269vh) scale(.0184)}to{transform:translate(69.40485vw,100vh) scale(.0184)}}.snow:nth-child(95){opacity:1.9434;transform:translate(88.1663vw,-10px) scale(.7908);animation:fall-95 15s -24s linear infinite}@keyframes fall-95{42.264%{transform:translate(97.8036vw,42.264vh) scale(.7908)}to{transform:translate(92.98495vw,100vh) scale(.7908)}}.snow:nth-child(96){opacity:.5424;transform:translate(61.8425vw,-10px) scale(.1296);animation:fall-96 18s -1s linear infinite}@keyframes fall-96{39.254%{transform:translate(53.4262vw,39.254vh) scale(.1296)}to{transform:translate(57.63435vw,100vh) scale(.1296)}}.snow:nth-child(97){opacity:1.4622;transform:translate(86.8326vw,-10px) scale(.876);animation:fall-97 15s -24s linear infinite}@keyframes fall-97{59.283%{transform:translate(79.8804vw,59.283vh) scale(.876)}to{transform:translate(83.3565vw,100vh) scale(.876)}}.snow:nth-child(98){opacity:.7004;transform:translate(85.0201vw,-10px) scale(.1556);animation:fall-98 17s -16s linear infinite}@keyframes fall-98{72.209%{transform:translate(91.8244vw,72.209vh) scale(.1556)}to{transform:translate(88.42225vw,100vh) scale(.1556)}}.snow:nth-child(99){opacity:1.147;transform:translate(97.852vw,-10px) scale(.5461);animation:fall-99 18s -11s linear infinite}@keyframes fall-99{36.346%{transform:translate(88.2372vw,36.346vh) scale(.5461)}to{transform:translate(93.0446vw,100vh) scale(.5461)}}.snow:nth-child(100){opacity:.143;transform:translate(54.1609vw,-10px) scale(.2289);animation:fall-100 17s -5s linear infinite}@keyframes fall-100{48.074%{transform:translate(60.9404vw,48.074vh) scale(.2289)}to{transform:translate(57.55065vw,100vh) scale(.2289)}}.snow:nth-child(101){opacity:1.8302;transform:translate(97.8956vw,-10px) scale(.3495);animation:fall-101 23s -8s linear infinite}@keyframes fall-101{60.972%{transform:translate(103.9087vw,60.972vh) scale(.3495)}to{transform:translate(100.90215vw,100vh) scale(.3495)}}.snow:nth-child(102){opacity:.5918;transform:translate(62.0704vw,-10px) scale(.7887);animation:fall-102 29s -26s linear infinite}@keyframes fall-102{39.603%{transform:translate(65.7008vw,39.603vh) scale(.7887)}to{transform:translate(63.8856vw,100vh) scale(.7887)}}.snow:nth-child(103){opacity:.7986;transform:translate(80.1736vw,-10px) scale(.2613);animation:fall-103 12s -22s linear infinite}@keyframes fall-103{40.075%{transform:translate(82.9645vw,40.075vh) scale(.2613)}to{transform:translate(81.56905vw,100vh) scale(.2613)}}.snow:nth-child(104){opacity:1.3918;transform:translate(37.4761vw,-10px) scale(.375);animation:fall-104 13s -28s linear infinite}@keyframes fall-104{31.912%{transform:translate(43.1267vw,31.912vh) scale(.375)}to{transform:translate(40.3014vw,100vh) scale(.375)}}.snow:nth-child(105){opacity:1.712;transform:translate(18.3513vw,-10px) scale(.3614);animation:fall-105 30s -26s linear infinite}@keyframes fall-105{51.799%{transform:translate(9.33vw,51.799vh) scale(.3614)}to{transform:translate(13.84065vw,100vh) scale(.3614)}}.snow:nth-child(106){opacity:.3522;transform:translate(51.2135vw,-10px) scale(.2618);animation:fall-106 14s -29s linear infinite}@keyframes fall-106{50.523%{transform:translate(56.8104vw,50.523vh) scale(.2618)}to{transform:translate(54.01195vw,100vh) scale(.2618)}}.snow:nth-child(107){opacity:1.0808;transform:translate(38.9604vw,-10px) scale(.0003);animation:fall-107 14s -3s linear infinite}@keyframes fall-107{57.693%{transform:translate(43.1478vw,57.693vh) scale(.0003)}to{transform:translate(41.0541vw,100vh) scale(.0003)}}.snow:nth-child(108){opacity:1.1486;transform:translate(50.7453vw,-10px) scale(.2794);animation:fall-108 13s -9s linear infinite}@keyframes fall-108{52.378%{transform:translate(44.8549vw,52.378vh) scale(.2794)}to{transform:translate(47.8001vw,100vh) scale(.2794)}}.snow:nth-child(109){opacity:.0648;transform:translate(41.6809vw,-10px) scale(.302);animation:fall-109 24s -14s linear infinite}@keyframes fall-109{53.294%{transform:translate(40.1002vw,53.294vh) scale(.302)}to{transform:translate(40.89055vw,100vh) scale(.302)}}.snow:nth-child(110){opacity:1.8768;transform:translate(3.7276vw,-10px) scale(.8981);animation:fall-110 15s -28s linear infinite}@keyframes fall-110{37.784%{transform:translate(7.5907vw,37.784vh) scale(.8981)}to{transform:translate(5.65915vw,100vh) scale(.8981)}}.snow:nth-child(111){opacity:.3642;transform:translate(6.0488vw,-10px) scale(.6624);animation:fall-111 13s -25s linear infinite}@keyframes fall-111{44.722%{transform:translate(9.9084vw,44.722vh) scale(.6624)}to{transform:translate(7.9786vw,100vh) scale(.6624)}}.snow:nth-child(112){opacity:.7094;transform:translate(91.9965vw,-10px) scale(.2649);animation:fall-112 17s -11s linear infinite}@keyframes fall-112{45.295%{transform:translate(83.234vw,45.295vh) scale(.2649)}to{transform:translate(87.61525vw,100vh) scale(.2649)}}.snow:nth-child(113){opacity:1.713;transform:translate(74.1698vw,-10px) scale(.5985);animation:fall-113 23s -3s linear infinite}@keyframes fall-113{74.853%{transform:translate(82.0192vw,74.853vh) scale(.5985)}to{transform:translate(78.0945vw,100vh) scale(.5985)}}.snow:nth-child(114){opacity:.2568;transform:translate(11.8389vw,-10px) scale(.2391);animation:fall-114 30s -16s linear infinite}@keyframes fall-114{34.156%{transform:translate(10.5082vw,34.156vh) scale(.2391)}to{transform:translate(11.17355vw,100vh) scale(.2391)}}.snow:nth-child(115){opacity:1.38;transform:translate(82.8013vw,-10px) scale(.1089);animation:fall-115 25s -24s linear infinite}@keyframes fall-115{46.399%{transform:translate(78.931vw,46.399vh) scale(.1089)}to{transform:translate(80.86615vw,100vh) scale(.1089)}}.snow:nth-child(116){opacity:1.8488;transform:translate(67.9061vw,-10px) scale(.5603);animation:fall-116 14s -25s linear infinite}@keyframes fall-116{62.36%{transform:translate(61.2338vw,62.36vh) scale(.5603)}to{transform:translate(64.56995vw,100vh) scale(.5603)}}.snow:nth-child(117){opacity:1.4698;transform:translate(71.9059vw,-10px) scale(.2361);animation:fall-117 30s -16s linear infinite}@keyframes fall-117{49.454%{transform:translate(63.1841vw,49.454vh) scale(.2361)}to{transform:translate(67.545vw,100vh) scale(.2361)}}.snow:nth-child(118){opacity:.9774;transform:translate(14.3492vw,-10px) scale(.3089);animation:fall-118 18s -24s linear infinite}@keyframes fall-118{43.532%{transform:translate(12.7354vw,43.532vh) scale(.3089)}to{transform:translate(13.5423vw,100vh) scale(.3089)}}.snow:nth-child(119){opacity:.636;transform:translate(77.809vw,-10px) scale(.1756);animation:fall-119 21s -20s linear infinite}@keyframes fall-119{48.948%{transform:translate(83.3456vw,48.948vh) scale(.1756)}to{transform:translate(80.5773vw,100vh) scale(.1756)}}.snow:nth-child(120){opacity:1.735;transform:translate(98.0507vw,-10px) scale(.4044);animation:fall-120 23s -27s linear infinite}@keyframes fall-120{70.214%{transform:translate(104.0539vw,70.214vh) scale(.4044)}to{transform:translate(101.0523vw,100vh) scale(.4044)}}.snow:nth-child(121){opacity:1.1716;transform:translate(73.7719vw,-10px) scale(.8333);animation:fall-121 27s -26s linear infinite}@keyframes fall-121{62.019%{transform:translate(72.2592vw,62.019vh) scale(.8333)}to{transform:translate(73.01555vw,100vh) scale(.8333)}}.snow:nth-child(122){opacity:1.386;transform:translate(23.6461vw,-10px) scale(.1826);animation:fall-122 24s -27s linear infinite}@keyframes fall-122{57.144%{transform:translate(20.3162vw,57.144vh) scale(.1826)}to{transform:translate(21.98115vw,100vh) scale(.1826)}}.snow:nth-child(123){opacity:1.8062;transform:translate(68.5837vw,-10px) scale(.693);animation:fall-123 11s -24s linear infinite}@keyframes fall-123{55.877%{transform:translate(64.2355vw,55.877vh) scale(.693)}to{transform:translate(66.4096vw,100vh) scale(.693)}}.snow:nth-child(124){opacity:.3378;transform:translate(43.4112vw,-10px) scale(.2891);animation:fall-124 22s -24s linear infinite}@keyframes fall-124{64.632%{transform:translate(52.6698vw,64.632vh) scale(.2891)}to{transform:translate(48.0405vw,100vh) scale(.2891)}}.snow:nth-child(125){opacity:1.2696;transform:translate(38.3422vw,-10px) scale(.8365);animation:fall-125 14s -11s linear infinite}@keyframes fall-125{42.692%{transform:translate(38.9292vw,42.692vh) scale(.8365)}to{transform:translate(38.6357vw,100vh) scale(.8365)}}.snow:nth-child(126){opacity:.893;transform:translate(9.6864vw,-10px) scale(.7417);animation:fall-126 26s -4s linear infinite}@keyframes fall-126{73.725%{transform:translate(19.3794vw,73.725vh) scale(.7417)}to{transform:translate(14.5329vw,100vh) scale(.7417)}}.snow:nth-child(127){opacity:.1964;transform:translate(31.1936vw,-10px) scale(.5925);animation:fall-127 19s -27s linear infinite}@keyframes fall-127{47.35%{transform:translate(33.869vw,47.35vh) scale(.5925)}to{transform:translate(32.5313vw,100vh) scale(.5925)}}.snow:nth-child(128){opacity:.4792;transform:translate(17.2019vw,-10px) scale(.4985);animation:fall-128 30s -11s linear infinite}@keyframes fall-128{66.054%{transform:translate(14.9559vw,66.054vh) scale(.4985)}to{transform:translate(16.0789vw,100vh) scale(.4985)}}.snow:nth-child(129){opacity:.9278;transform:translate(29.1635vw,-10px) scale(.0432);animation:fall-129 14s -9s linear infinite}@keyframes fall-129{66.152%{transform:translate(28.9359vw,66.152vh) scale(.0432)}to{transform:translate(29.0497vw,100vh) scale(.0432)}}.snow:nth-child(130){opacity:.0104;transform:translate(93.9798vw,-10px) scale(.4658);animation:fall-130 21s -28s linear infinite}@keyframes fall-130{64.055%{transform:translate(86.9925vw,64.055vh) scale(.4658)}to{transform:translate(90.48615vw,100vh) scale(.4658)}}.snow:nth-child(131){opacity:1.8742;transform:translate(16.6885vw,-10px) scale(.8952);animation:fall-131 27s -9s linear infinite}@keyframes fall-131{68.575%{transform:translate(12.5594vw,68.575vh) scale(.8952)}to{transform:translate(14.62395vw,100vh) scale(.8952)}}.snow:nth-child(132){opacity:1.3878;transform:translate(21.3544vw,-10px) scale(.5621);animation:fall-132 19s -28s linear infinite}@keyframes fall-132{78.382%{transform:translate(18.7448vw,78.382vh) scale(.5621)}to{transform:translate(20.0496vw,100vh) scale(.5621)}}.snow:nth-child(133){opacity:1.9006;transform:translate(45.1792vw,-10px) scale(.6382);animation:fall-133 29s -4s linear infinite}@keyframes fall-133{41.842%{transform:translate(45.2151vw,41.842vh) scale(.6382)}to{transform:translate(45.19715vw,100vh) scale(.6382)}}.snow:nth-child(134){opacity:1.6188;transform:translate(14.0009vw,-10px) scale(.8859);animation:fall-134 28s -2s linear infinite}@keyframes fall-134{58.996%{transform:translate(6.3114vw,58.996vh) scale(.8859)}to{transform:translate(10.15615vw,100vh) scale(.8859)}}.snow:nth-child(135){opacity:1.7686;transform:translate(35.0399vw,-10px) scale(.545);animation:fall-135 22s -30s linear infinite}@keyframes fall-135{72.397%{transform:translate(25.617vw,72.397vh) scale(.545)}to{transform:translate(30.32845vw,100vh) scale(.545)}}.snow:nth-child(136){opacity:.4676;transform:translate(78.1996vw,-10px) scale(.7724);animation:fall-136 15s -7s linear infinite}@keyframes fall-136{71.544%{transform:translate(73.4039vw,71.544vh) scale(.7724)}to{transform:translate(75.80175vw,100vh) scale(.7724)}}.snow:nth-child(137){opacity:1.5666;transform:translate(89.4894vw,-10px) scale(.2077);animation:fall-137 29s -2s linear infinite}@keyframes fall-137{35.25%{transform:translate(96.0593vw,35.25vh) scale(.2077)}to{transform:translate(92.77435vw,100vh) scale(.2077)}}.snow:nth-child(138){opacity:.7574;transform:translate(12.1329vw,-10px) scale(.2547);animation:fall-138 12s -19s linear infinite}@keyframes fall-138{49.802%{transform:translate(9.6845vw,49.802vh) scale(.2547)}to{transform:translate(10.9087vw,100vh) scale(.2547)}}.snow:nth-child(139){opacity:.4944;transform:translate(14.6131vw,-10px) scale(.0291);animation:fall-139 20s -11s linear infinite}@keyframes fall-139{53.732%{transform:translate(21.5935vw,53.732vh) scale(.0291)}to{transform:translate(18.1033vw,100vh) scale(.0291)}}.snow:nth-child(140){opacity:.3008;transform:translate(64.3526vw,-10px) scale(.9347);animation:fall-140 17s -15s linear infinite}@keyframes fall-140{67.297%{transform:translate(71.9944vw,67.297vh) scale(.9347)}to{transform:translate(68.1735vw,100vh) scale(.9347)}}.snow:nth-child(141){opacity:.7888;transform:translate(6.2427vw,-10px) scale(.9564);animation:fall-141 29s -5s linear infinite}@keyframes fall-141{73.99%{transform:translate(-3.3869vw,73.99vh) scale(.9564)}to{transform:translate(1.4279vw,100vh) scale(.9564)}}.snow:nth-child(142){opacity:1.452;transform:translate(14.2655vw,-10px) scale(.8203);animation:fall-142 12s -6s linear infinite}@keyframes fall-142{61.362%{transform:translate(8.1971vw,61.362vh) scale(.8203)}to{transform:translate(11.2313vw,100vh) scale(.8203)}}.snow:nth-child(143){opacity:1.548;transform:translate(17.5254vw,-10px) scale(.9113);animation:fall-143 17s -2s linear infinite}@keyframes fall-143{56.634%{transform:translate(22.2377vw,56.634vh) scale(.9113)}to{transform:translate(19.88155vw,100vh) scale(.9113)}}.snow:nth-child(144){opacity:1.9414;transform:translate(75.5228vw,-10px) scale(.5557);animation:fall-144 30s -12s linear infinite}@keyframes fall-144{74.242%{transform:translate(69.6906vw,74.242vh) scale(.5557)}to{transform:translate(72.6067vw,100vh) scale(.5557)}}.snow:nth-child(145){opacity:1.4808;transform:translate(42.7546vw,-10px) scale(.8201);animation:fall-145 28s -19s linear infinite}@keyframes fall-145{38.731%{transform:translate(42.8544vw,38.731vh) scale(.8201)}to{transform:translate(42.8045vw,100vh) scale(.8201)}}.snow:nth-child(146){opacity:1.5216;transform:translate(68.6199vw,-10px) scale(.6268);animation:fall-146 18s -1s linear infinite}@keyframes fall-146{77.11%{transform:translate(63.2293vw,77.11vh) scale(.6268)}to{transform:translate(65.9246vw,100vh) scale(.6268)}}.snow:nth-child(147){opacity:.9986;transform:translate(26.7716vw,-10px) scale(.5833);animation:fall-147 30s -8s linear infinite}@keyframes fall-147{60.599%{transform:translate(21.2181vw,60.599vh) scale(.5833)}to{transform:translate(23.99485vw,100vh) scale(.5833)}}.snow:nth-child(148){opacity:1.129;transform:translate(84.037vw,-10px) scale(.9102);animation:fall-148 18s -11s linear infinite}@keyframes fall-148{65.428%{transform:translate(83.8052vw,65.428vh) scale(.9102)}to{transform:translate(83.9211vw,100vh) scale(.9102)}}.snow:nth-child(149){opacity:1.2512;transform:translate(24.4449vw,-10px) scale(.0675);animation:fall-149 29s -13s linear infinite}@keyframes fall-149{53.157%{transform:translate(19.4809vw,53.157vh) scale(.0675)}to{transform:translate(21.9629vw,100vh) scale(.0675)}}.snow:nth-child(150){opacity:1.9568;transform:translate(47.141vw,-10px) scale(.7359);animation:fall-150 17s -7s linear infinite}@keyframes fall-150{57.236%{transform:translate(56.4234vw,57.236vh) scale(.7359)}to{transform:translate(51.7822vw,100vh) scale(.7359)}}.snow:nth-child(151){opacity:1.0968;transform:translate(25.3577vw,-10px) scale(.3539);animation:fall-151 26s -9s linear infinite}@keyframes fall-151{63.596%{transform:translate(25.4707vw,63.596vh) scale(.3539)}to{transform:translate(25.4142vw,100vh) scale(.3539)}}.snow:nth-child(152){opacity:1.7612;transform:translate(20.1779vw,-10px) scale(.9893);animation:fall-152 16s -25s linear infinite}@keyframes fall-152{35.106%{transform:translate(22.2799vw,35.106vh) scale(.9893)}to{transform:translate(21.2289vw,100vh) scale(.9893)}}.snow:nth-child(153){opacity:.078;transform:translate(68.0924vw,-10px) scale(.902);animation:fall-153 16s -9s linear infinite}@keyframes fall-153{79.642%{transform:translate(60.8565vw,79.642vh) scale(.902)}to{transform:translate(64.47445vw,100vh) scale(.902)}}.snow:nth-child(154){opacity:1.3866;transform:translate(69.2948vw,-10px) scale(.4521);animation:fall-154 17s -12s linear infinite}@keyframes fall-154{52.443%{transform:translate(65.1932vw,52.443vh) scale(.4521)}to{transform:translate(67.244vw,100vh) scale(.4521)}}.snow:nth-child(155){opacity:.6294;transform:translate(58.3893vw,-10px) scale(.1068);animation:fall-155 28s -6s linear infinite}@keyframes fall-155{77.789%{transform:translate(58.3802vw,77.789vh) scale(.1068)}to{transform:translate(58.38475vw,100vh) scale(.1068)}}.snow:nth-child(156){opacity:.5522;transform:translate(91.5554vw,-10px) scale(.5286);animation:fall-156 23s -13s linear infinite}@keyframes fall-156{73.886%{transform:translate(89.5545vw,73.886vh) scale(.5286)}to{transform:translate(90.55495vw,100vh) scale(.5286)}}.snow:nth-child(157){opacity:1.6368;transform:translate(80.4033vw,-10px) scale(.9681);animation:fall-157 13s -29s linear infinite}@keyframes fall-157{50.057%{transform:translate(84.4743vw,50.057vh) scale(.9681)}to{transform:translate(82.4388vw,100vh) scale(.9681)}}.snow:nth-child(158){opacity:1.3934;transform:translate(80.2494vw,-10px) scale(.2727);animation:fall-158 10s -26s linear infinite}@keyframes fall-158{70.728%{transform:translate(74.5512vw,70.728vh) scale(.2727)}to{transform:translate(77.4003vw,100vh) scale(.2727)}}.snow:nth-child(159){opacity:.235;transform:translate(35.0158vw,-10px) scale(.4264);animation:fall-159 17s -7s linear infinite}@keyframes fall-159{58.315%{transform:translate(28.9355vw,58.315vh) scale(.4264)}to{transform:translate(31.97565vw,100vh) scale(.4264)}}.snow:nth-child(160){opacity:1.4154;transform:translate(89.4488vw,-10px) scale(.8317);animation:fall-160 17s -28s linear infinite}@keyframes fall-160{71.392%{transform:translate(98.4199vw,71.392vh) scale(.8317)}to{transform:translate(93.93435vw,100vh) scale(.8317)}}.snow:nth-child(161){opacity:.37;transform:translate(40.7493vw,-10px) scale(.9593);animation:fall-161 17s -4s linear infinite}@keyframes fall-161{58.599%{transform:translate(31.0897vw,58.599vh) scale(.9593)}to{transform:translate(35.9195vw,100vh) scale(.9593)}}.snow:nth-child(162){opacity:1.9164;transform:translate(48.0064vw,-10px) scale(.5597);animation:fall-162 12s -18s linear infinite}@keyframes fall-162{30.531%{transform:translate(40.2097vw,30.531vh) scale(.5597)}to{transform:translate(44.10805vw,100vh) scale(.5597)}}.snow:nth-child(163){opacity:1.0444;transform:translate(13.4626vw,-10px) scale(.1059);animation:fall-163 26s -22s linear infinite}@keyframes fall-163{43.333%{transform:translate(4.7973vw,43.333vh) scale(.1059)}to{transform:translate(9.12995vw,100vh) scale(.1059)}}.snow:nth-child(164){opacity:1.0428;transform:translate(7.0637vw,-10px) scale(.8921);animation:fall-164 11s -27s linear infinite}@keyframes fall-164{41.283%{transform:translate(11.2687vw,41.283vh) scale(.8921)}to{transform:translate(9.1662vw,100vh) scale(.8921)}}.snow:nth-child(165){opacity:1.8272;transform:translate(79.5839vw,-10px) scale(.6604);animation:fall-165 29s -1s linear infinite}@keyframes fall-165{76.541%{transform:translate(76.6249vw,76.541vh) scale(.6604)}to{transform:translate(78.1044vw,100vh) scale(.6604)}}.snow:nth-child(166){opacity:1.4728;transform:translate(89.2443vw,-10px) scale(.8777);animation:fall-166 22s -24s linear infinite}@keyframes fall-166{68.708%{transform:translate(86.0524vw,68.708vh) scale(.8777)}to{transform:translate(87.64835vw,100vh) scale(.8777)}}.snow:nth-child(167){opacity:.1516;transform:translate(3.2932vw,-10px) scale(.3007);animation:fall-167 23s -11s linear infinite}@keyframes fall-167{46.069%{transform:translate(-2.2856vw,46.069vh) scale(.3007)}to{transform:translate(.5038vw,100vh) scale(.3007)}}.snow:nth-child(168){opacity:.7858;transform:translate(29.4309vw,-10px) scale(.8577);animation:fall-168 10s -5s linear infinite}@keyframes fall-168{41.344%{transform:translate(22.6971vw,41.344vh) scale(.8577)}to{transform:translate(26.064vw,100vh) scale(.8577)}}.snow:nth-child(169){opacity:1.3718;transform:translate(66.3837vw,-10px) scale(.4866);animation:fall-169 20s -29s linear infinite}@keyframes fall-169{39.385%{transform:translate(66.0673vw,39.385vh) scale(.4866)}to{transform:translate(66.2255vw,100vh) scale(.4866)}}.snow:nth-child(170){opacity:.2114;transform:translate(14.4064vw,-10px) scale(.8345);animation:fall-170 17s -22s linear infinite}@keyframes fall-170{68.815%{transform:translate(20.6356vw,68.815vh) scale(.8345)}to{transform:translate(17.521vw,100vh) scale(.8345)}}.snow:nth-child(171){opacity:1.5482;transform:translate(55.9534vw,-10px) scale(.7554);animation:fall-171 25s -14s linear infinite}@keyframes fall-171{31.937%{transform:translate(61.8648vw,31.937vh) scale(.7554)}to{transform:translate(58.9091vw,100vh) scale(.7554)}}.snow:nth-child(172){opacity:.2816;transform:translate(33.8682vw,-10px) scale(.7302);animation:fall-172 24s -13s linear infinite}@keyframes fall-172{65.278%{transform:translate(38.6686vw,65.278vh) scale(.7302)}to{transform:translate(36.2684vw,100vh) scale(.7302)}}.snow:nth-child(173){opacity:.1894;transform:translate(12.9314vw,-10px) scale(.9672);animation:fall-173 21s -7s linear infinite}@keyframes fall-173{41.427%{transform:translate(4.155vw,41.427vh) scale(.9672)}to{transform:translate(8.5432vw,100vh) scale(.9672)}}.snow:nth-child(174){opacity:.3858;transform:translate(99.7858vw,-10px) scale(.7044);animation:fall-174 18s -9s linear infinite}@keyframes fall-174{49.974%{transform:translate(106.3663vw,49.974vh) scale(.7044)}to{transform:translate(103.07605vw,100vh) scale(.7044)}}.snow:nth-child(175){opacity:1.3186;transform:translate(4.6201vw,-10px) scale(.186);animation:fall-175 26s -20s linear infinite}@keyframes fall-175{79.287%{transform:translate(1.928vw,79.287vh) scale(.186)}to{transform:translate(3.27405vw,100vh) scale(.186)}}.snow:nth-child(176){opacity:.3464;transform:translate(70.189vw,-10px) scale(.8651);animation:fall-176 10s -24s linear infinite}@keyframes fall-176{63.63%{transform:translate(77.5316vw,63.63vh) scale(.8651)}to{transform:translate(73.8603vw,100vh) scale(.8651)}}.snow:nth-child(177){opacity:.497;transform:translate(85.7381vw,-10px) scale(.6732);animation:fall-177 22s -24s linear infinite}@keyframes fall-177{66.85%{transform:translate(77.7433vw,66.85vh) scale(.6732)}to{transform:translate(81.7407vw,100vh) scale(.6732)}}.snow:nth-child(178){opacity:1.8878;transform:translate(85.7291vw,-10px) scale(.3115);animation:fall-178 23s -26s linear infinite}@keyframes fall-178{70.506%{transform:translate(87.5313vw,70.506vh) scale(.3115)}to{transform:translate(86.6302vw,100vh) scale(.3115)}}.snow:nth-child(179){opacity:1.6294;transform:translate(11.6697vw,-10px) scale(.2146);animation:fall-179 20s -16s linear infinite}@keyframes fall-179{44.797%{transform:translate(6.7331vw,44.797vh) scale(.2146)}to{transform:translate(9.2014vw,100vh) scale(.2146)}}.snow:nth-child(180){opacity:.26;transform:translate(19.1211vw,-10px) scale(.4526);animation:fall-180 22s -16s linear infinite}@keyframes fall-180{64.271%{transform:translate(12.3052vw,64.271vh) scale(.4526)}to{transform:translate(15.71315vw,100vh) scale(.4526)}}.snow:nth-child(181){opacity:.7066;transform:translate(24.1354vw,-10px) scale(.1386);animation:fall-181 25s -15s linear infinite}@keyframes fall-181{71.33%{transform:translate(29.8856vw,71.33vh) scale(.1386)}to{transform:translate(27.0105vw,100vh) scale(.1386)}}.snow:nth-child(182){opacity:1.8568;transform:translate(67.3065vw,-10px) scale(.7677);animation:fall-182 18s -3s linear infinite}@keyframes fall-182{73.836%{transform:translate(69.471vw,73.836vh) scale(.7677)}to{transform:translate(68.38875vw,100vh) scale(.7677)}}.snow:nth-child(183){opacity:.8276;transform:translate(19.932vw,-10px) scale(.8071);animation:fall-183 15s -21s linear infinite}@keyframes fall-183{46.988%{transform:translate(10.8698vw,46.988vh) scale(.8071)}to{transform:translate(15.4009vw,100vh) scale(.8071)}}.snow:nth-child(184){opacity:1.9678;transform:translate(8.0886vw,-10px) scale(.9939);animation:fall-184 28s -17s linear infinite}@keyframes fall-184{72.658%{transform:translate(9.1347vw,72.658vh) scale(.9939)}to{transform:translate(8.61165vw,100vh) scale(.9939)}}.snow:nth-child(185){opacity:.0664;transform:translate(80.2305vw,-10px) scale(.4682);animation:fall-185 15s -30s linear infinite}@keyframes fall-185{44.94%{transform:translate(74.4815vw,44.94vh) scale(.4682)}to{transform:translate(77.356vw,100vh) scale(.4682)}}.snow:nth-child(186){opacity:1.6952;transform:translate(73.1121vw,-10px) scale(.352);animation:fall-186 18s -20s linear infinite}@keyframes fall-186{41.062%{transform:translate(70.1534vw,41.062vh) scale(.352)}to{transform:translate(71.63275vw,100vh) scale(.352)}}.snow:nth-child(187){opacity:1.085;transform:translate(25.7933vw,-10px) scale(.8513);animation:fall-187 11s -6s linear infinite}@keyframes fall-187{67.78%{transform:translate(29.0465vw,67.78vh) scale(.8513)}to{transform:translate(27.4199vw,100vh) scale(.8513)}}.snow:nth-child(188){opacity:1.5672;transform:translate(5.7448vw,-10px) scale(.7877);animation:fall-188 21s -6s linear infinite}@keyframes fall-188{45.097%{transform:translate(15.5599vw,45.097vh) scale(.7877)}to{transform:translate(10.65235vw,100vh) scale(.7877)}}.snow:nth-child(189){opacity:.8966;transform:translate(21.4802vw,-10px) scale(.3339);animation:fall-189 13s -22s linear infinite}@keyframes fall-189{71.702%{transform:translate(28.5659vw,71.702vh) scale(.3339)}to{transform:translate(25.02305vw,100vh) scale(.3339)}}.snow:nth-child(190){opacity:1.5522;transform:translate(75.1004vw,-10px) scale(.7753);animation:fall-190 21s -13s linear infinite}@keyframes fall-190{52.996%{transform:translate(77.4153vw,52.996vh) scale(.7753)}to{transform:translate(76.25785vw,100vh) scale(.7753)}}.snow:nth-child(191){opacity:1.779;transform:translate(6.1199vw,-10px) scale(.3316);animation:fall-191 12s -23s linear infinite}@keyframes fall-191{47.021%{transform:translate(14.8449vw,47.021vh) scale(.3316)}to{transform:translate(10.4824vw,100vh) scale(.3316)}}.snow:nth-child(192){opacity:1.043;transform:translate(10.6193vw,-10px) scale(.5919);animation:fall-192 18s -21s linear infinite}@keyframes fall-192{75.809%{transform:translate(3.7701vw,75.809vh) scale(.5919)}to{transform:translate(7.1947vw,100vh) scale(.5919)}}.snow:nth-child(193){opacity:1.5396;transform:translate(70.2889vw,-10px) scale(.8598);animation:fall-193 19s -30s linear infinite}@keyframes fall-193{76.962%{transform:translate(75.6196vw,76.962vh) scale(.8598)}to{transform:translate(72.95425vw,100vh) scale(.8598)}}.snow:nth-child(194){opacity:.7256;transform:translate(31.9965vw,-10px) scale(.6856);animation:fall-194 13s -24s linear infinite}@keyframes fall-194{33.71%{transform:translate(38.5823vw,33.71vh) scale(.6856)}to{transform:translate(35.2894vw,100vh) scale(.6856)}}.snow:nth-child(195){opacity:.7434;transform:translate(88.6641vw,-10px) scale(.7174);animation:fall-195 16s -22s linear infinite}@keyframes fall-195{68.733%{transform:translate(81.5773vw,68.733vh) scale(.7174)}to{transform:translate(85.1207vw,100vh) scale(.7174)}}.snow:nth-child(196){opacity:.551;transform:translate(28.8052vw,-10px) scale(.4646);animation:fall-196 13s -11s linear infinite}@keyframes fall-196{44.728%{transform:translate(22.1996vw,44.728vh) scale(.4646)}to{transform:translate(25.5024vw,100vh) scale(.4646)}}.snow:nth-child(197){opacity:.8588;transform:translate(78.1663vw,-10px) scale(.7611);animation:fall-197 12s -19s linear infinite}@keyframes fall-197{61.815%{transform:translate(85.242vw,61.815vh) scale(.7611)}to{transform:translate(81.70415vw,100vh) scale(.7611)}}.snow:nth-child(198){opacity:1.4716;transform:translate(41.8135vw,-10px) scale(.8799);animation:fall-198 13s -8s linear infinite}@keyframes fall-198{31.477%{transform:translate(35.4694vw,31.477vh) scale(.8799)}to{transform:translate(38.64145vw,100vh) scale(.8799)}}.snow:nth-child(199){opacity:.2544;transform:translate(4.8705vw,-10px) scale(.0676);animation:fall-199 30s -1s linear infinite}@keyframes fall-199{55.444%{transform:translate(13.4582vw,55.444vh) scale(.0676)}to{transform:translate(9.16435vw,100vh) scale(.0676)}}.snow:nth-child(200){opacity:.6874;transform:translate(4.3264vw,-10px) scale(.6539);animation:fall-200 26s -29s linear infinite}@keyframes fall-200{65.53%{transform:translate(6.89vw,65.53vh) scale(.6539)}to{transform:translate(5.6082vw,100vh) scale(.6539)}}.snow:nth-child(201){opacity:.3402;transform:translate(67.6139vw,-10px) scale(.5647);animation:fall-201 22s -7s linear infinite}@keyframes fall-201{56.939%{transform:translate(67.852vw,56.939vh) scale(.5647)}to{transform:translate(67.73295vw,100vh) scale(.5647)}}.snow:nth-child(202){opacity:.081;transform:translate(39.8748vw,-10px) scale(.5121);animation:fall-202 12s -19s linear infinite}@keyframes fall-202{72.862%{transform:translate(33.5635vw,72.862vh) scale(.5121)}to{transform:translate(36.71915vw,100vh) scale(.5121)}}.snow:nth-child(203){opacity:1.0922;transform:translate(1.0725vw,-10px) scale(.8376);animation:fall-203 24s -14s linear infinite}@keyframes fall-203{40.458%{transform:translate(-7.1993vw,40.458vh) scale(.8376)}to{transform:translate(-3.0634vw,100vh) scale(.8376)}}.snow:nth-child(204){opacity:.9042;transform:translate(70.9954vw,-10px) scale(.0964);animation:fall-204 15s -21s linear infinite}@keyframes fall-204{67.709%{transform:translate(73.9387vw,67.709vh) scale(.0964)}to{transform:translate(72.46705vw,100vh) scale(.0964)}}.snow:nth-child(205){opacity:1.6524;transform:translate(62.7613vw,-10px) scale(.3469);animation:fall-205 13s -6s linear infinite}@keyframes fall-205{58.47%{transform:translate(70.8482vw,58.47vh) scale(.3469)}to{transform:translate(66.80475vw,100vh) scale(.3469)}}.snow:nth-child(206){opacity:.4696;transform:translate(35.9266vw,-10px) scale(.8031);animation:fall-206 11s -28s linear infinite}@keyframes fall-206{41.75%{transform:translate(39.0928vw,41.75vh) scale(.8031)}to{transform:translate(37.5097vw,100vh) scale(.8031)}}.snow:nth-child(207){opacity:1.828;transform:translate(41.2614vw,-10px) scale(.916);animation:fall-207 18s -25s linear infinite}@keyframes fall-207{62.606%{transform:translate(39.253vw,62.606vh) scale(.916)}to{transform:translate(40.2572vw,100vh) scale(.916)}}.snow:nth-child(208){opacity:1.1256;transform:translate(3.8647vw,-10px) scale(.1957);animation:fall-208 11s -12s linear infinite}@keyframes fall-208{68.443%{transform:translate(1.7479vw,68.443vh) scale(.1957)}to{transform:translate(2.8063vw,100vh) scale(.1957)}}.snow:nth-child(209){opacity:1.4456;transform:translate(47.6711vw,-10px) scale(.7782);animation:fall-209 25s -28s linear infinite}@keyframes fall-209{57.971%{transform:translate(40.2186vw,57.971vh) scale(.7782)}to{transform:translate(43.94485vw,100vh) scale(.7782)}}.snow:nth-child(210){opacity:1.3996;transform:translate(53.0338vw,-10px) scale(.7066);animation:fall-210 14s -4s linear infinite}@keyframes fall-210{49.608%{transform:translate(61.7623vw,49.608vh) scale(.7066)}to{transform:translate(57.39805vw,100vh) scale(.7066)}}.snow:nth-child(211){opacity:.2802;transform:translate(65.9676vw,-10px) scale(.0396);animation:fall-211 13s -22s linear infinite}@keyframes fall-211{43.156%{transform:translate(71.0611vw,43.156vh) scale(.0396)}to{transform:translate(68.51435vw,100vh) scale(.0396)}}.snow:nth-child(212){opacity:.9382;transform:translate(26.7432vw,-10px) scale(.7017);animation:fall-212 14s -15s linear infinite}@keyframes fall-212{56.893%{transform:translate(32.392vw,56.893vh) scale(.7017)}to{transform:translate(29.5676vw,100vh) scale(.7017)}}.snow:nth-child(213){opacity:.4342;transform:translate(51.359vw,-10px) scale(.6837);animation:fall-213 14s -10s linear infinite}@keyframes fall-213{68.396%{transform:translate(52.0205vw,68.396vh) scale(.6837)}to{transform:translate(51.68975vw,100vh) scale(.6837)}}.snow:nth-child(214){opacity:.7222;transform:translate(25.3305vw,-10px) scale(.014);animation:fall-214 24s -15s linear infinite}@keyframes fall-214{78.98%{transform:translate(18.4275vw,78.98vh) scale(.014)}to{transform:translate(21.879vw,100vh) scale(.014)}}.snow:nth-child(215){opacity:1.9352;transform:translate(23.3997vw,-10px) scale(.6049);animation:fall-215 27s -5s linear infinite}@keyframes fall-215{71.352%{transform:translate(23.0208vw,71.352vh) scale(.6049)}to{transform:translate(23.21025vw,100vh) scale(.6049)}}.snow:nth-child(216){opacity:.0768;transform:translate(40.5656vw,-10px) scale(.6087);animation:fall-216 17s -18s linear infinite}@keyframes fall-216{53.49%{transform:translate(41.4854vw,53.49vh) scale(.6087)}to{transform:translate(41.0255vw,100vh) scale(.6087)}}.snow:nth-child(217){opacity:.7464;transform:translate(94.8321vw,-10px) scale(.1669);animation:fall-217 15s -13s linear infinite}@keyframes fall-217{51.194%{transform:translate(97.4038vw,51.194vh) scale(.1669)}to{transform:translate(96.11795vw,100vh) scale(.1669)}}.snow:nth-child(218){opacity:.685;transform:translate(93.0398vw,-10px) scale(.6653);animation:fall-218 12s -24s linear infinite}@keyframes fall-218{67.413%{transform:translate(94.8586vw,67.413vh) scale(.6653)}to{transform:translate(93.9492vw,100vh) scale(.6653)}}.snow:nth-child(219){opacity:1.4882;transform:translate(78.8781vw,-10px) scale(.0165);animation:fall-219 23s -23s linear infinite}@keyframes fall-219{60.502%{transform:translate(80.3825vw,60.502vh) scale(.0165)}to{transform:translate(79.6303vw,100vh) scale(.0165)}}.snow:nth-child(220){opacity:1.7522;transform:translate(87.0416vw,-10px) scale(.0287);animation:fall-220 29s -19s linear infinite}@keyframes fall-220{55.641%{transform:translate(82.4608vw,55.641vh) scale(.0287)}to{transform:translate(84.7512vw,100vh) scale(.0287)}}.snow:nth-child(221){opacity:1.9758;transform:translate(20.0675vw,-10px) scale(.9916);animation:fall-221 25s -11s linear infinite}@keyframes fall-221{34.797%{transform:translate(27.8014vw,34.797vh) scale(.9916)}to{transform:translate(23.93445vw,100vh) scale(.9916)}}.snow:nth-child(222){opacity:.6566;transform:translate(14.0419vw,-10px) scale(.0208);animation:fall-222 16s -14s linear infinite}@keyframes fall-222{75.342%{transform:translate(18.7278vw,75.342vh) scale(.0208)}to{transform:translate(16.38485vw,100vh) scale(.0208)}}.snow:nth-child(223){opacity:.7106;transform:translate(38.554vw,-10px) scale(.8357);animation:fall-223 27s -23s linear infinite}@keyframes fall-223{47.667%{transform:translate(46.4438vw,47.667vh) scale(.8357)}to{transform:translate(42.4989vw,100vh) scale(.8357)}}.snow:nth-child(224){opacity:.0516;transform:translate(56.1187vw,-10px) scale(.4135);animation:fall-224 10s -4s linear infinite}@keyframes fall-224{37.914%{transform:translate(56.0635vw,37.914vh) scale(.4135)}to{transform:translate(56.0911vw,100vh) scale(.4135)}}.snow:nth-child(225){opacity:1.7458;transform:translate(58.5022vw,-10px) scale(.1735);animation:fall-225 18s -22s linear infinite}@keyframes fall-225{58.928%{transform:translate(51.3731vw,58.928vh) scale(.1735)}to{transform:translate(54.93765vw,100vh) scale(.1735)}}.snow:nth-child(226){opacity:.8154;transform:translate(23.3619vw,-10px) scale(.5237);animation:fall-226 20s -18s linear infinite}@keyframes fall-226{60.332%{transform:translate(29.3954vw,60.332vh) scale(.5237)}to{transform:translate(26.37865vw,100vh) scale(.5237)}}.snow:nth-child(227){opacity:.5426;transform:translate(11.7568vw,-10px) scale(.3041);animation:fall-227 21s -15s linear infinite}@keyframes fall-227{72.922%{transform:translate(4.5095vw,72.922vh) scale(.3041)}to{transform:translate(8.13315vw,100vh) scale(.3041)}}.snow:nth-child(228){opacity:.8072;transform:translate(80.7015vw,-10px) scale(.0643);animation:fall-228 21s -19s linear infinite}@keyframes fall-228{34.87%{transform:translate(77.3707vw,34.87vh) scale(.0643)}to{transform:translate(79.0361vw,100vh) scale(.0643)}}.snow:nth-child(229){opacity:1.529;transform:translate(83.0366vw,-10px) scale(.6791);animation:fall-229 12s -28s linear infinite}@keyframes fall-229{31.669%{transform:translate(81.1671vw,31.669vh) scale(.6791)}to{transform:translate(82.10185vw,100vh) scale(.6791)}}.snow:nth-child(230){opacity:1.11;transform:translate(16.3001vw,-10px) scale(.6238);animation:fall-230 28s -10s linear infinite}@keyframes fall-230{41.98%{transform:translate(21.2909vw,41.98vh) scale(.6238)}to{transform:translate(18.7955vw,100vh) scale(.6238)}}.snow:nth-child(231){opacity:1.4138;transform:translate(83.4587vw,-10px) scale(.9887);animation:fall-231 18s -1s linear infinite}@keyframes fall-231{61.129%{transform:translate(75.8684vw,61.129vh) scale(.9887)}to{transform:translate(79.66355vw,100vh) scale(.9887)}}.snow:nth-child(232){opacity:.4798;transform:translate(96.9657vw,-10px) scale(.345);animation:fall-232 28s -23s linear infinite}@keyframes fall-232{46.453%{transform:translate(88.446vw,46.453vh) scale(.345)}to{transform:translate(92.70585vw,100vh) scale(.345)}}.snow:nth-child(233){opacity:.9418;transform:translate(42.551vw,-10px) scale(.3699);animation:fall-233 26s -16s linear infinite}@keyframes fall-233{32.524%{transform:translate(37.9794vw,32.524vh) scale(.3699)}to{transform:translate(40.2652vw,100vh) scale(.3699)}}.snow:nth-child(234){opacity:1.3698;transform:translate(26.4388vw,-10px) scale(.2853);animation:fall-234 25s -20s linear infinite}@keyframes fall-234{30.651%{transform:translate(24.6925vw,30.651vh) scale(.2853)}to{transform:translate(25.56565vw,100vh) scale(.2853)}}.snow:nth-child(235){opacity:.539;transform:translate(70.3822vw,-10px) scale(.6994);animation:fall-235 24s -17s linear infinite}@keyframes fall-235{79.477%{transform:translate(67.173vw,79.477vh) scale(.6994)}to{transform:translate(68.7776vw,100vh) scale(.6994)}}.snow:nth-child(236){opacity:1.8438;transform:translate(45.2809vw,-10px) scale(.841);animation:fall-236 27s -18s linear infinite}@keyframes fall-236{68.877%{transform:translate(53.0995vw,68.877vh) scale(.841)}to{transform:translate(49.1902vw,100vh) scale(.841)}}.snow:nth-child(237){opacity:.7756;transform:translate(72.9431vw,-10px) scale(.8654);animation:fall-237 12s -14s linear infinite}@keyframes fall-237{76.447%{transform:translate(68.9303vw,76.447vh) scale(.8654)}to{transform:translate(70.9367vw,100vh) scale(.8654)}}.snow:nth-child(238){opacity:.7804;transform:translate(39.7526vw,-10px) scale(.5006);animation:fall-238 29s -13s linear infinite}@keyframes fall-238{34.007%{transform:translate(45.8209vw,34.007vh) scale(.5006)}to{transform:translate(42.78675vw,100vh) scale(.5006)}}.snow:nth-child(239){opacity:1.9044;transform:translate(34.4619vw,-10px) scale(.1251);animation:fall-239 27s -3s linear infinite}@keyframes fall-239{54.636%{transform:translate(43.1478vw,54.636vh) scale(.1251)}to{transform:translate(38.80485vw,100vh) scale(.1251)}}.snow:nth-child(240){opacity:1.4126;transform:translate(88.1936vw,-10px) scale(.4943);animation:fall-240 11s -12s linear infinite}@keyframes fall-240{61.256%{transform:translate(79.0448vw,61.256vh) scale(.4943)}to{transform:translate(83.6192vw,100vh) scale(.4943)}}.snow:nth-child(241){opacity:.5674;transform:translate(6.9192vw,-10px) scale(.9188);animation:fall-241 26s -30s linear infinite}@keyframes fall-241{73.942%{transform:translate(.1415vw,73.942vh) scale(.9188)}to{transform:translate(3.53035vw,100vh) scale(.9188)}}.snow:nth-child(242){opacity:1.5172;transform:translate(57.4369vw,-10px) scale(.2109);animation:fall-242 27s -25s linear infinite}@keyframes fall-242{62.091%{transform:translate(62.4224vw,62.091vh) scale(.2109)}to{transform:translate(59.92965vw,100vh) scale(.2109)}}.snow:nth-child(243){opacity:1.377;transform:translate(.7402vw,-10px) scale(.1199);animation:fall-243 16s -14s linear infinite}@keyframes fall-243{72.106%{transform:translate(10.6176vw,72.106vh) scale(.1199)}to{transform:translate(5.6789vw,100vh) scale(.1199)}}.snow:nth-child(244){opacity:.2016;transform:translate(75.8897vw,-10px) scale(.2945);animation:fall-244 28s -16s linear infinite}@keyframes fall-244{76.672%{transform:translate(85.4496vw,76.672vh) scale(.2945)}to{transform:translate(80.66965vw,100vh) scale(.2945)}}.snow:nth-child(245){opacity:1.9072;transform:translate(57.5555vw,-10px) scale(.74);animation:fall-245 19s -21s linear infinite}@keyframes fall-245{77.452%{transform:translate(58.9467vw,77.452vh) scale(.74)}to{transform:translate(58.2511vw,100vh) scale(.74)}}.snow:nth-child(246){opacity:1.9422;transform:translate(98.693vw,-10px) scale(.8573);animation:fall-246 26s -28s linear infinite}@keyframes fall-246{46.902%{transform:translate(103.6411vw,46.902vh) scale(.8573)}to{transform:translate(101.16705vw,100vh) scale(.8573)}}.snow:nth-child(247){opacity:.8848;transform:translate(61.1263vw,-10px) scale(.6237);animation:fall-247 28s -22s linear infinite}@keyframes fall-247{42.039%{transform:translate(52.5366vw,42.039vh) scale(.6237)}to{transform:translate(56.83145vw,100vh) scale(.6237)}}.snow:nth-child(248){opacity:.1392;transform:translate(76.6875vw,-10px) scale(.2896);animation:fall-248 30s -2s linear infinite}@keyframes fall-248{34.717%{transform:translate(83.1777vw,34.717vh) scale(.2896)}to{transform:translate(79.9326vw,100vh) scale(.2896)}}.snow:nth-child(249){opacity:.136;transform:translate(24.2443vw,-10px) scale(.9485);animation:fall-249 19s -23s linear infinite}@keyframes fall-249{69.152%{transform:translate(25.3692vw,69.152vh) scale(.9485)}to{transform:translate(24.80675vw,100vh) scale(.9485)}}.snow:nth-child(250){opacity:.8438;transform:translate(2.9621vw,-10px) scale(.1713);animation:fall-250 22s -17s linear infinite}@keyframes fall-250{47.79%{transform:translate(2.2209vw,47.79vh) scale(.1713)}to{transform:translate(2.5915vw,100vh) scale(.1713)}}.snow:nth-child(251){opacity:1.1288;transform:translate(2.1996vw,-10px) scale(.45);animation:fall-251 29s -19s linear infinite}@keyframes fall-251{44.606%{transform:translate(7.1881vw,44.606vh) scale(.45)}to{transform:translate(4.69385vw,100vh) scale(.45)}}.snow:nth-child(252){opacity:.6252;transform:translate(15.3371vw,-10px) scale(.8781);animation:fall-252 15s -9s linear infinite}@keyframes fall-252{39.868%{transform:translate(20.5345vw,39.868vh) scale(.8781)}to{transform:translate(17.9358vw,100vh) scale(.8781)}}.snow:nth-child(253){opacity:.5862;transform:translate(97.5425vw,-10px) scale(.2448);animation:fall-253 30s -24s linear infinite}@keyframes fall-253{59.758%{transform:translate(92.5693vw,59.758vh) scale(.2448)}to{transform:translate(95.0559vw,100vh) scale(.2448)}}.snow:nth-child(254){opacity:1.2976;transform:translate(78.7726vw,-10px) scale(.8973);animation:fall-254 29s -8s linear infinite}@keyframes fall-254{43.932%{transform:translate(88.7354vw,43.932vh) scale(.8973)}to{transform:translate(83.754vw,100vh) scale(.8973)}}.snow:nth-child(255){opacity:.2268;transform:translate(98.0142vw,-10px) scale(.9549);animation:fall-255 11s -3s linear infinite}@keyframes fall-255{71.806%{transform:translate(103.627vw,71.806vh) scale(.9549)}to{transform:translate(100.8206vw,100vh) scale(.9549)}}.snow:nth-child(256){opacity:1.1596;transform:translate(7.9245vw,-10px) scale(.6179);animation:fall-256 25s -28s linear infinite}@keyframes fall-256{55.635%{transform:translate(15.637vw,55.635vh) scale(.6179)}to{transform:translate(11.78075vw,100vh) scale(.6179)}}.snow:nth-child(257){opacity:1.0552;transform:translate(63.0047vw,-10px) scale(.0552);animation:fall-257 11s -24s linear infinite}@keyframes fall-257{30.48%{transform:translate(66.5617vw,30.48vh) scale(.0552)}to{transform:translate(64.7832vw,100vh) scale(.0552)}}.snow:nth-child(258){opacity:.4084;transform:translate(83.7845vw,-10px) scale(.818);animation:fall-258 13s -15s linear infinite}@keyframes fall-258{58.981%{transform:translate(88.7074vw,58.981vh) scale(.818)}to{transform:translate(86.24595vw,100vh) scale(.818)}}.snow:nth-child(259){opacity:.8984;transform:translate(79.2375vw,-10px) scale(.4309);animation:fall-259 28s -6s linear infinite}@keyframes fall-259{32.862%{transform:translate(74.3471vw,32.862vh) scale(.4309)}to{transform:translate(76.7923vw,100vh) scale(.4309)}}.snow:nth-child(260){opacity:.7264;transform:translate(12.4266vw,-10px) scale(.0409);animation:fall-260 20s -9s linear infinite}@keyframes fall-260{43.893%{transform:translate(18.3525vw,43.893vh) scale(.0409)}to{transform:translate(15.38955vw,100vh) scale(.0409)}}.snow:nth-child(261){opacity:.6524;transform:translate(74.5082vw,-10px) scale(.4875);animation:fall-261 25s -28s linear infinite}@keyframes fall-261{75.381%{transform:translate(81.897vw,75.381vh) scale(.4875)}to{transform:translate(78.2026vw,100vh) scale(.4875)}}.snow:nth-child(262){opacity:.4138;transform:translate(67.4282vw,-10px) scale(.2241);animation:fall-262 19s -7s linear infinite}@keyframes fall-262{65.871%{transform:translate(59.8097vw,65.871vh) scale(.2241)}to{transform:translate(63.61895vw,100vh) scale(.2241)}}.snow:nth-child(263){opacity:.1438;transform:translate(53.7307vw,-10px) scale(.8821);animation:fall-263 28s -25s linear infinite}@keyframes fall-263{78.267%{transform:translate(63.1767vw,78.267vh) scale(.8821)}to{transform:translate(58.4537vw,100vh) scale(.8821)}}.snow:nth-child(264){opacity:1.6632;transform:translate(98.2021vw,-10px) scale(.3884);animation:fall-264 12s -20s linear infinite}@keyframes fall-264{58.248%{transform:translate(90.9445vw,58.248vh) scale(.3884)}to{transform:translate(94.5733vw,100vh) scale(.3884)}}.snow:nth-child(265){opacity:1.5794;transform:translate(37.2485vw,-10px) scale(.6392);animation:fall-265 12s -15s linear infinite}@keyframes fall-265{41.834%{transform:translate(46.0501vw,41.834vh) scale(.6392)}to{transform:translate(41.6493vw,100vh) scale(.6392)}}.snow:nth-child(266){opacity:.4656;transform:translate(33.7339vw,-10px) scale(.7695);animation:fall-266 21s -10s linear infinite}@keyframes fall-266{69.333%{transform:translate(35.8581vw,69.333vh) scale(.7695)}to{transform:translate(34.796vw,100vh) scale(.7695)}}.snow:nth-child(267){opacity:1.5122;transform:translate(61.1231vw,-10px) scale(.751);animation:fall-267 24s -23s linear infinite}@keyframes fall-267{72.401%{transform:translate(67.4758vw,72.401vh) scale(.751)}to{transform:translate(64.29945vw,100vh) scale(.751)}}.snow:nth-child(268){opacity:.6382;transform:translate(11.3467vw,-10px) scale(.3948);animation:fall-268 26s -12s linear infinite}@keyframes fall-268{69.14%{transform:translate(2.8734vw,69.14vh) scale(.3948)}to{transform:translate(7.11005vw,100vh) scale(.3948)}}.snow:nth-child(269){opacity:.7602;transform:translate(32.2104vw,-10px) scale(.9602);animation:fall-269 26s -1s linear infinite}@keyframes fall-269{52.762%{transform:translate(25.6687vw,52.762vh) scale(.9602)}to{transform:translate(28.93955vw,100vh) scale(.9602)}}.snow:nth-child(270){opacity:1.8158;transform:translate(69.8251vw,-10px) scale(.2881);animation:fall-270 16s -5s linear infinite}@keyframes fall-270{66.917%{transform:translate(62.8767vw,66.917vh) scale(.2881)}to{transform:translate(66.3509vw,100vh) scale(.2881)}}.snow:nth-child(271){opacity:1.9594;transform:translate(54.3629vw,-10px) scale(.2547);animation:fall-271 18s -22s linear infinite}@keyframes fall-271{41.655%{transform:translate(59.9029vw,41.655vh) scale(.2547)}to{transform:translate(57.1329vw,100vh) scale(.2547)}}.snow:nth-child(272){opacity:1.8886;transform:translate(20.5475vw,-10px) scale(.7505);animation:fall-272 28s -18s linear infinite}@keyframes fall-272{77.109%{transform:translate(21.3781vw,77.109vh) scale(.7505)}to{transform:translate(20.9628vw,100vh) scale(.7505)}}.snow:nth-child(273){opacity:.1838;transform:translate(1.7132vw,-10px) scale(.3919);animation:fall-273 24s -23s linear infinite}@keyframes fall-273{54.213%{transform:translate(10.5513vw,54.213vh) scale(.3919)}to{transform:translate(6.13225vw,100vh) scale(.3919)}}.snow:nth-child(274){opacity:.2488;transform:translate(13.7305vw,-10px) scale(.1206);animation:fall-274 20s -5s linear infinite}@keyframes fall-274{35.673%{transform:translate(7.874vw,35.673vh) scale(.1206)}to{transform:translate(10.80225vw,100vh) scale(.1206)}}.snow:nth-child(275){opacity:.0558;transform:translate(4.1488vw,-10px) scale(.8219);animation:fall-275 13s -23s linear infinite}@keyframes fall-275{44.34%{transform:translate(.4974vw,44.34vh) scale(.8219)}to{transform:translate(2.3231vw,100vh) scale(.8219)}}.snow:nth-child(276){opacity:1.3086;transform:translate(57.5397vw,-10px) scale(.8799);animation:fall-276 30s -15s linear infinite}@keyframes fall-276{60.053%{transform:translate(50.1896vw,60.053vh) scale(.8799)}to{transform:translate(53.86465vw,100vh) scale(.8799)}}.snow:nth-child(277){opacity:.4308;transform:translate(53.1739vw,-10px) scale(.39);animation:fall-277 10s -2s linear infinite}@keyframes fall-277{50.843%{transform:translate(51.7893vw,50.843vh) scale(.39)}to{transform:translate(52.4816vw,100vh) scale(.39)}}.snow:nth-child(278){opacity:.5606;transform:translate(99.7072vw,-10px) scale(.0591);animation:fall-278 13s -12s linear infinite}@keyframes fall-278{72.974%{transform:translate(101.812vw,72.974vh) scale(.0591)}to{transform:translate(100.7596vw,100vh) scale(.0591)}}.snow:nth-child(279){opacity:1.8238;transform:translate(95.9284vw,-10px) scale(.0856);animation:fall-279 26s -8s linear infinite}@keyframes fall-279{40.845%{transform:translate(92.3401vw,40.845vh) scale(.0856)}to{transform:translate(94.13425vw,100vh) scale(.0856)}}.snow:nth-child(280){opacity:.0032;transform:translate(34.7065vw,-10px) scale(.1941);animation:fall-280 13s -10s linear infinite}@keyframes fall-280{75.605%{transform:translate(28.1138vw,75.605vh) scale(.1941)}to{transform:translate(31.41015vw,100vh) scale(.1941)}}.snow:nth-child(281){opacity:.2522;transform:translate(13.8444vw,-10px) scale(.2746);animation:fall-281 15s -19s linear infinite}@keyframes fall-281{71.578%{transform:translate(20.0246vw,71.578vh) scale(.2746)}to{transform:translate(16.9345vw,100vh) scale(.2746)}}.snow:nth-child(282){opacity:.4238;transform:translate(5.2256vw,-10px) scale(.6581);animation:fall-282 28s -4s linear infinite}@keyframes fall-282{61.194%{transform:translate(1.4767vw,61.194vh) scale(.6581)}to{transform:translate(3.35115vw,100vh) scale(.6581)}}.snow:nth-child(283){opacity:.1044;transform:translate(4.7853vw,-10px) scale(.6049);animation:fall-283 25s -14s linear infinite}@keyframes fall-283{35.607%{transform:translate(11.1062vw,35.607vh) scale(.6049)}to{transform:translate(7.94575vw,100vh) scale(.6049)}}.snow:nth-child(284){opacity:.007;transform:translate(24.4132vw,-10px) scale(.9733);animation:fall-284 19s -10s linear infinite}@keyframes fall-284{76.992%{transform:translate(18.737vw,76.992vh) scale(.9733)}to{transform:translate(21.5751vw,100vh) scale(.9733)}}.snow:nth-child(285){opacity:1.9096;transform:translate(11.8654vw,-10px) scale(.7842);animation:fall-285 18s -4s linear infinite}@keyframes fall-285{61.945%{transform:translate(13.7746vw,61.945vh) scale(.7842)}to{transform:translate(12.82vw,100vh) scale(.7842)}}.snow:nth-child(286){opacity:1.4422;transform:translate(84.0954vw,-10px) scale(.5708);animation:fall-286 10s -21s linear infinite}@keyframes fall-286{65.919%{transform:translate(82.7478vw,65.919vh) scale(.5708)}to{transform:translate(83.4216vw,100vh) scale(.5708)}}.snow:nth-child(287){opacity:.9578;transform:translate(53.4092vw,-10px) scale(.2428);animation:fall-287 15s -6s linear infinite}@keyframes fall-287{75.657%{transform:translate(55.8002vw,75.657vh) scale(.2428)}to{transform:translate(54.6047vw,100vh) scale(.2428)}}.snow:nth-child(288){opacity:1.7608;transform:translate(92.7404vw,-10px) scale(.4421);animation:fall-288 16s -12s linear infinite}@keyframes fall-288{58.56%{transform:translate(93.1509vw,58.56vh) scale(.4421)}to{transform:translate(92.94565vw,100vh) scale(.4421)}}.snow:nth-child(289){opacity:.5706;transform:translate(3.7073vw,-10px) scale(.8355);animation:fall-289 30s -7s linear infinite}@keyframes fall-289{46.316%{transform:translate(12.3216vw,46.316vh) scale(.8355)}to{transform:translate(8.01445vw,100vh) scale(.8355)}}.snow:nth-child(290){opacity:1.5866;transform:translate(40.8868vw,-10px) scale(.186);animation:fall-290 24s -18s linear infinite}@keyframes fall-290{42.789%{transform:translate(46.928vw,42.789vh) scale(.186)}to{transform:translate(43.9074vw,100vh) scale(.186)}}.snow:nth-child(291){opacity:1.9708;transform:translate(39.5964vw,-10px) scale(.4849);animation:fall-291 12s -6s linear infinite}@keyframes fall-291{33.517%{transform:translate(37.9787vw,33.517vh) scale(.4849)}to{transform:translate(38.78755vw,100vh) scale(.4849)}}.snow:nth-child(292){opacity:1.782;transform:translate(74.6033vw,-10px) scale(.4425);animation:fall-292 10s -14s linear infinite}@keyframes fall-292{63.687%{transform:translate(66.0708vw,63.687vh) scale(.4425)}to{transform:translate(70.33705vw,100vh) scale(.4425)}}.snow:nth-child(293){opacity:.5406;transform:translate(68.5705vw,-10px) scale(.4533);animation:fall-293 30s -23s linear infinite}@keyframes fall-293{38.998%{transform:translate(78.0368vw,38.998vh) scale(.4533)}to{transform:translate(73.30365vw,100vh) scale(.4533)}}.snow:nth-child(294){opacity:1.495;transform:translate(35.7228vw,-10px) scale(.5154);animation:fall-294 13s -14s linear infinite}@keyframes fall-294{74.464%{transform:translate(27.8028vw,74.464vh) scale(.5154)}to{transform:translate(31.7628vw,100vh) scale(.5154)}}.snow:nth-child(295){opacity:1.1206;transform:translate(69.9691vw,-10px) scale(.4196);animation:fall-295 24s -23s linear infinite}@keyframes fall-295{56.548%{transform:translate(76.5317vw,56.548vh) scale(.4196)}to{transform:translate(73.2504vw,100vh) scale(.4196)}}.snow:nth-child(296){opacity:.7466;transform:translate(54.9305vw,-10px) scale(.2021);animation:fall-296 14s -11s linear infinite}@keyframes fall-296{48.711%{transform:translate(50.1352vw,48.711vh) scale(.2021)}to{transform:translate(52.53285vw,100vh) scale(.2021)}}.snow:nth-child(297){opacity:.29;transform:translate(20.3691vw,-10px) scale(.6619);animation:fall-297 23s -8s linear infinite}@keyframes fall-297{59.958%{transform:translate(13.7178vw,59.958vh) scale(.6619)}to{transform:translate(17.04345vw,100vh) scale(.6619)}}.snow:nth-child(298){opacity:1.6366;transform:translate(29.0691vw,-10px) scale(.4865);animation:fall-298 24s -5s linear infinite}@keyframes fall-298{46.623%{transform:translate(38.4227vw,46.623vh) scale(.4865)}to{transform:translate(33.7459vw,100vh) scale(.4865)}}.snow:nth-child(299){opacity:1.7946;transform:translate(86.8428vw,-10px) scale(.1043);animation:fall-299 12s -21s linear infinite}@keyframes fall-299{74.223%{transform:translate(81.2645vw,74.223vh) scale(.1043)}to{transform:translate(84.05365vw,100vh) scale(.1043)}}.snow:nth-child(300){opacity:1.7732;transform:translate(17.0783vw,-10px) scale(.3319);animation:fall-300 22s -28s linear infinite}@keyframes fall-300{68.215%{transform:translate(21.9554vw,68.215vh) scale(.3319)}to{transform:translate(19.51685vw,100vh) scale(.3319)}}.snow:nth-child(301){opacity:1.2442;transform:translate(60.3607vw,-10px) scale(.3972);animation:fall-301 14s -30s linear infinite}@keyframes fall-301{50.151%{transform:translate(69.769vw,50.151vh) scale(.3972)}to{transform:translate(65.06485vw,100vh) scale(.3972)}}.snow:nth-child(302){opacity:1.7954;transform:translate(79.8026vw,-10px) scale(.4269);animation:fall-302 24s -15s linear infinite}@keyframes fall-302{52.708%{transform:translate(74.4496vw,52.708vh) scale(.4269)}to{transform:translate(77.1261vw,100vh) scale(.4269)}}.snow:nth-child(303){opacity:1.889;transform:translate(76.9721vw,-10px) scale(.6872);animation:fall-303 29s -7s linear infinite}@keyframes fall-303{79.993%{transform:translate(86.7893vw,79.993vh) scale(.6872)}to{transform:translate(81.8807vw,100vh) scale(.6872)}}.snow:nth-child(304){opacity:.1298;transform:translate(73.9496vw,-10px) scale(.4805);animation:fall-304 22s -28s linear infinite}@keyframes fall-304{45.568%{transform:translate(76.4073vw,45.568vh) scale(.4805)}to{transform:translate(75.17845vw,100vh) scale(.4805)}}.snow:nth-child(305){opacity:.0174;transform:translate(98.7003vw,-10px) scale(.5684);animation:fall-305 18s -22s linear infinite}@keyframes fall-305{73.594%{transform:translate(93.3284vw,73.594vh) scale(.5684)}to{transform:translate(96.01435vw,100vh) scale(.5684)}}.snow:nth-child(306){opacity:1.9162;transform:translate(54.4581vw,-10px) scale(.8392);animation:fall-306 29s -13s linear infinite}@keyframes fall-306{37.405%{transform:translate(59.1312vw,37.405vh) scale(.8392)}to{transform:translate(56.79465vw,100vh) scale(.8392)}}.snow:nth-child(307){opacity:.3336;transform:translate(2.6281vw,-10px) scale(.2476);animation:fall-307 29s -6s linear infinite}@keyframes fall-307{77.255%{transform:translate(8.4892vw,77.255vh) scale(.2476)}to{transform:translate(5.55865vw,100vh) scale(.2476)}}.snow:nth-child(308){opacity:.446;transform:translate(20.0319vw,-10px) scale(.0136);animation:fall-308 17s -18s linear infinite}@keyframes fall-308{67.907%{transform:translate(20.9506vw,67.907vh) scale(.0136)}to{transform:translate(20.49125vw,100vh) scale(.0136)}}.snow:nth-child(309){opacity:.149;transform:translate(29.3216vw,-10px) scale(.0225);animation:fall-309 14s -15s linear infinite}@keyframes fall-309{77.542%{transform:translate(36.9095vw,77.542vh) scale(.0225)}to{transform:translate(33.11555vw,100vh) scale(.0225)}}.snow:nth-child(310){opacity:.4634;transform:translate(37.1685vw,-10px) scale(.3205);animation:fall-310 22s -5s linear infinite}@keyframes fall-310{40.932%{transform:translate(36.3863vw,40.932vh) scale(.3205)}to{transform:translate(36.7774vw,100vh) scale(.3205)}}.snow:nth-child(311){opacity:1.4036;transform:translate(27.7105vw,-10px) scale(.0384);animation:fall-311 17s -27s linear infinite}@keyframes fall-311{62.832%{transform:translate(29.5468vw,62.832vh) scale(.0384)}to{transform:translate(28.62865vw,100vh) scale(.0384)}}.snow:nth-child(312){opacity:1.4068;transform:translate(45.3845vw,-10px) scale(.959);animation:fall-312 10s -23s linear infinite}@keyframes fall-312{37.235%{transform:translate(40.3161vw,37.235vh) scale(.959)}to{transform:translate(42.8503vw,100vh) scale(.959)}}.snow:nth-child(313){opacity:1.8954;transform:translate(42.2725vw,-10px) scale(.0452);animation:fall-313 16s -8s linear infinite}@keyframes fall-313{33.258%{transform:translate(51.7932vw,33.258vh) scale(.0452)}to{transform:translate(47.03285vw,100vh) scale(.0452)}}.snow:nth-child(314){opacity:1.6776;transform:translate(15.5361vw,-10px) scale(.4405);animation:fall-314 26s -1s linear infinite}@keyframes fall-314{76.622%{transform:translate(7.3796vw,76.622vh) scale(.4405)}to{transform:translate(11.45785vw,100vh) scale(.4405)}}.snow:nth-child(315){opacity:.1564;transform:translate(57.4462vw,-10px) scale(.0914);animation:fall-315 14s -27s linear infinite}@keyframes fall-315{58.27%{transform:translate(64.8083vw,58.27vh) scale(.0914)}to{transform:translate(61.12725vw,100vh) scale(.0914)}}.snow:nth-child(316){opacity:1.3244;transform:translate(21.0982vw,-10px) scale(.499);animation:fall-316 27s -7s linear infinite}@keyframes fall-316{53.076%{transform:translate(27.2874vw,53.076vh) scale(.499)}to{transform:translate(24.1928vw,100vh) scale(.499)}}.snow:nth-child(317){opacity:.4884;transform:translate(6.6123vw,-10px) scale(.1671);animation:fall-317 15s -5s linear infinite}@keyframes fall-317{63.778%{transform:translate(1.3467vw,63.778vh) scale(.1671)}to{transform:translate(3.9795vw,100vh) scale(.1671)}}.snow:nth-child(318){opacity:1.454;transform:translate(81.5231vw,-10px) scale(.1669);animation:fall-318 28s -29s linear infinite}@keyframes fall-318{38.662%{transform:translate(88.5249vw,38.662vh) scale(.1669)}to{transform:translate(85.024vw,100vh) scale(.1669)}}.snow:nth-child(319){opacity:1.5902;transform:translate(43.5084vw,-10px) scale(.5037);animation:fall-319 17s -19s linear infinite}@keyframes fall-319{48.702%{transform:translate(42.5054vw,48.702vh) scale(.5037)}to{transform:translate(43.0069vw,100vh) scale(.5037)}}.snow:nth-child(320){opacity:1.591;transform:translate(5.2148vw,-10px) scale(.855);animation:fall-320 13s -27s linear infinite}@keyframes fall-320{71.923%{transform:translate(.3697vw,71.923vh) scale(.855)}to{transform:translate(2.79225vw,100vh) scale(.855)}}.snow:nth-child(321){opacity:.0138;transform:translate(29.5368vw,-10px) scale(.9828);animation:fall-321 30s -24s linear infinite}@keyframes fall-321{39.101%{transform:translate(22.5849vw,39.101vh) scale(.9828)}to{transform:translate(26.06085vw,100vh) scale(.9828)}}.snow:nth-child(322){opacity:.8646;transform:translate(30.4164vw,-10px) scale(.3908);animation:fall-322 16s -21s linear infinite}@keyframes fall-322{62.999%{transform:translate(28.6856vw,62.999vh) scale(.3908)}to{transform:translate(29.551vw,100vh) scale(.3908)}}.snow:nth-child(323){opacity:1.9794;transform:translate(58.4797vw,-10px) scale(.6664);animation:fall-323 11s -20s linear infinite}@keyframes fall-323{74.802%{transform:translate(56.2408vw,74.802vh) scale(.6664)}to{transform:translate(57.36025vw,100vh) scale(.6664)}}.snow:nth-child(324){opacity:.0386;transform:translate(32.0021vw,-10px) scale(.9281);animation:fall-324 17s -12s linear infinite}@keyframes fall-324{48.56%{transform:translate(30.1632vw,48.56vh) scale(.9281)}to{transform:translate(31.08265vw,100vh) scale(.9281)}}.snow:nth-child(325){opacity:.0988;transform:translate(44.9509vw,-10px) scale(.9332);animation:fall-325 11s -25s linear infinite}@keyframes fall-325{47.547%{transform:translate(40.4507vw,47.547vh) scale(.9332)}to{transform:translate(42.7008vw,100vh) scale(.9332)}}.snow:nth-child(326){opacity:.6986;transform:translate(20.2395vw,-10px) scale(.1092);animation:fall-326 19s -18s linear infinite}@keyframes fall-326{31.985%{transform:translate(22.8365vw,31.985vh) scale(.1092)}to{transform:translate(21.538vw,100vh) scale(.1092)}}.snow:nth-child(327){opacity:.785;transform:translate(13.7521vw,-10px) scale(.4432);animation:fall-327 20s -5s linear infinite}@keyframes fall-327{64.655%{transform:translate(16.4562vw,64.655vh) scale(.4432)}to{transform:translate(15.10415vw,100vh) scale(.4432)}}.snow:nth-child(328){opacity:.8056;transform:translate(45.4698vw,-10px) scale(.1135);animation:fall-328 30s -20s linear infinite}@keyframes fall-328{76.192%{transform:translate(37.9665vw,76.192vh) scale(.1135)}to{transform:translate(41.71815vw,100vh) scale(.1135)}}.snow:nth-child(329){opacity:1.681;transform:translate(35.8547vw,-10px) scale(.9095);animation:fall-329 29s -22s linear infinite}@keyframes fall-329{34.228%{transform:translate(43.2671vw,34.228vh) scale(.9095)}to{transform:translate(39.5609vw,100vh) scale(.9095)}}.snow:nth-child(330){opacity:1.2636;transform:translate(98.007vw,-10px) scale(.9025);animation:fall-330 16s -20s linear infinite}@keyframes fall-330{77.81%{transform:translate(91.6198vw,77.81vh) scale(.9025)}to{transform:translate(94.8134vw,100vh) scale(.9025)}}.snow:nth-child(331){opacity:1.4886;transform:translate(93.7381vw,-10px) scale(.5455);animation:fall-331 25s -11s linear infinite}@keyframes fall-331{47.546%{transform:translate(85.2135vw,47.546vh) scale(.5455)}to{transform:translate(89.4758vw,100vh) scale(.5455)}}.snow:nth-child(332){opacity:.209;transform:translate(62.3897vw,-10px) scale(.6192);animation:fall-332 10s -28s linear infinite}@keyframes fall-332{52.294%{transform:translate(63.514vw,52.294vh) scale(.6192)}to{transform:translate(62.95185vw,100vh) scale(.6192)}}.snow:nth-child(333){opacity:1.2364;transform:translate(16.7282vw,-10px) scale(.1612);animation:fall-333 25s -30s linear infinite}@keyframes fall-333{67.227%{transform:translate(10.5171vw,67.227vh) scale(.1612)}to{transform:translate(13.62265vw,100vh) scale(.1612)}}.snow:nth-child(334){opacity:.5814;transform:translate(98.2925vw,-10px) scale(.991);animation:fall-334 18s -19s linear infinite}@keyframes fall-334{64.258%{transform:translate(92.0928vw,64.258vh) scale(.991)}to{transform:translate(95.19265vw,100vh) scale(.991)}}.snow:nth-child(335){opacity:.957;transform:translate(84.5999vw,-10px) scale(.7321);animation:fall-335 29s -12s linear infinite}@keyframes fall-335{61.261%{transform:translate(94.0246vw,61.261vh) scale(.7321)}to{transform:translate(89.31225vw,100vh) scale(.7321)}}.snow:nth-child(336){opacity:.2774;transform:translate(43.2471vw,-10px) scale(.8758);animation:fall-336 24s -11s linear infinite}@keyframes fall-336{57.777%{transform:translate(39.4889vw,57.777vh) scale(.8758)}to{transform:translate(41.368vw,100vh) scale(.8758)}}.snow:nth-child(337){opacity:1.4996;transform:translate(10.7754vw,-10px) scale(.1448);animation:fall-337 26s -6s linear infinite}@keyframes fall-337{72.771%{transform:translate(5.3885vw,72.771vh) scale(.1448)}to{transform:translate(8.08195vw,100vh) scale(.1448)}}.snow:nth-child(338){opacity:1.1576;transform:translate(48.9202vw,-10px) scale(.8301);animation:fall-338 14s -14s linear infinite}@keyframes fall-338{38.592%{transform:translate(57.1493vw,38.592vh) scale(.8301)}to{transform:translate(53.03475vw,100vh) scale(.8301)}}.snow:nth-child(339){opacity:.9854;transform:translate(79.9468vw,-10px) scale(.8154);animation:fall-339 27s -18s linear infinite}@keyframes fall-339{60.928%{transform:translate(73.5234vw,60.928vh) scale(.8154)}to{transform:translate(76.7351vw,100vh) scale(.8154)}}.snow:nth-child(340){opacity:1.4008;transform:translate(25.7684vw,-10px) scale(.606);animation:fall-340 15s -3s linear infinite}@keyframes fall-340{51.192%{transform:translate(34.4075vw,51.192vh) scale(.606)}to{transform:translate(30.08795vw,100vh) scale(.606)}}.snow:nth-child(341){opacity:.9668;transform:translate(91.0638vw,-10px) scale(.4513);animation:fall-341 10s -4s linear infinite}@keyframes fall-341{79.047%{transform:translate(81.1933vw,79.047vh) scale(.4513)}to{transform:translate(86.12855vw,100vh) scale(.4513)}}.snow:nth-child(342){opacity:1.1052;transform:translate(18.9232vw,-10px) scale(.1991);animation:fall-342 18s -1s linear infinite}@keyframes fall-342{48.138%{transform:translate(12.7368vw,48.138vh) scale(.1991)}to{transform:translate(15.83vw,100vh) scale(.1991)}}.snow:nth-child(343){opacity:.2652;transform:translate(63.2109vw,-10px) scale(.331);animation:fall-343 18s -30s linear infinite}@keyframes fall-343{55.16%{transform:translate(70.2264vw,55.16vh) scale(.331)}to{transform:translate(66.71865vw,100vh) scale(.331)}}.snow:nth-child(344){opacity:1.3178;transform:translate(9.231vw,-10px) scale(.895);animation:fall-344 16s -22s linear infinite}@keyframes fall-344{66.901%{transform:translate(17.5422vw,66.901vh) scale(.895)}to{transform:translate(13.3866vw,100vh) scale(.895)}}.snow:nth-child(345){opacity:1.9942;transform:translate(11.0702vw,-10px) scale(.0084);animation:fall-345 26s -24s linear infinite}@keyframes fall-345{78.722%{transform:translate(5.624vw,78.722vh) scale(.0084)}to{transform:translate(8.3471vw,100vh) scale(.0084)}}.snow:nth-child(346){opacity:.745;transform:translate(32.8287vw,-10px) scale(.4034);animation:fall-346 30s -22s linear infinite}@keyframes fall-346{37.74%{transform:translate(23.3906vw,37.74vh) scale(.4034)}to{transform:translate(28.10965vw,100vh) scale(.4034)}}.snow:nth-child(347){opacity:1.8832;transform:translate(52.2566vw,-10px) scale(.8993);animation:fall-347 12s -30s linear infinite}@keyframes fall-347{58.183%{transform:translate(48.3544vw,58.183vh) scale(.8993)}to{transform:translate(50.3055vw,100vh) scale(.8993)}}.snow:nth-child(348){opacity:1.8382;transform:translate(85.3585vw,-10px) scale(.9228);animation:fall-348 30s -21s linear infinite}@keyframes fall-348{33.277%{transform:translate(82.9003vw,33.277vh) scale(.9228)}to{transform:translate(84.1294vw,100vh) scale(.9228)}}.snow:nth-child(349){opacity:1.0088;transform:translate(9.2789vw,-10px) scale(.9066);animation:fall-349 17s -10s linear infinite}@keyframes fall-349{54.607%{transform:translate(19.1006vw,54.607vh) scale(.9066)}to{transform:translate(14.18975vw,100vh) scale(.9066)}}.snow:nth-child(350){opacity:1.9062;transform:translate(89.5619vw,-10px) scale(.4785);animation:fall-350 26s -24s linear infinite}@keyframes fall-350{44.227%{transform:translate(93.0518vw,44.227vh) scale(.4785)}to{transform:translate(91.30685vw,100vh) scale(.4785)}}.snow:nth-child(351){opacity:1.8716;transform:translate(68.3208vw,-10px) scale(.1639);animation:fall-351 30s -27s linear infinite}@keyframes fall-351{38.03%{transform:translate(75.6081vw,38.03vh) scale(.1639)}to{transform:translate(71.96445vw,100vh) scale(.1639)}}.snow:nth-child(352){opacity:.1508;transform:translate(24.959vw,-10px) scale(.1877);animation:fall-352 30s -15s linear infinite}@keyframes fall-352{69.566%{transform:translate(21.9082vw,69.566vh) scale(.1877)}to{transform:translate(23.4336vw,100vh) scale(.1877)}}.snow:nth-child(353){opacity:.556;transform:translate(31.6257vw,-10px) scale(.9056);animation:fall-353 24s -25s linear infinite}@keyframes fall-353{42.748%{transform:translate(33.7651vw,42.748vh) scale(.9056)}to{transform:translate(32.6954vw,100vh) scale(.9056)}}.snow:nth-child(354){opacity:1.2036;transform:translate(39.2069vw,-10px) scale(.5468);animation:fall-354 15s -19s linear infinite}@keyframes fall-354{61.011%{transform:translate(31.2331vw,61.011vh) scale(.5468)}to{transform:translate(35.22vw,100vh) scale(.5468)}}.snow:nth-child(355){opacity:.2282;transform:translate(11.6863vw,-10px) scale(.1061);animation:fall-355 15s -7s linear infinite}@keyframes fall-355{67.557%{transform:translate(6.0214vw,67.557vh) scale(.1061)}to{transform:translate(8.85385vw,100vh) scale(.1061)}}.snow:nth-child(356){opacity:.1186;transform:translate(21.3474vw,-10px) scale(.4593);animation:fall-356 19s -21s linear infinite}@keyframes fall-356{40.587%{transform:translate(24.0189vw,40.587vh) scale(.4593)}to{transform:translate(22.68315vw,100vh) scale(.4593)}}.snow:nth-child(357){opacity:1.207;transform:translate(92.1715vw,-10px) scale(.4067);animation:fall-357 14s -21s linear infinite}@keyframes fall-357{51.368%{transform:translate(91.5431vw,51.368vh) scale(.4067)}to{transform:translate(91.8573vw,100vh) scale(.4067)}}.snow:nth-child(358){opacity:.2026;transform:translate(21.8848vw,-10px) scale(.1725);animation:fall-358 28s -27s linear infinite}@keyframes fall-358{49.683%{transform:translate(22.5014vw,49.683vh) scale(.1725)}to{transform:translate(22.1931vw,100vh) scale(.1725)}}.snow:nth-child(359){opacity:.7568;transform:translate(65.4501vw,-10px) scale(.6664);animation:fall-359 12s -12s linear infinite}@keyframes fall-359{64.089%{transform:translate(56.181vw,64.089vh) scale(.6664)}to{transform:translate(60.81555vw,100vh) scale(.6664)}}.snow:nth-child(360){opacity:.0216;transform:translate(7.9279vw,-10px) scale(.5122);animation:fall-360 23s -7s linear infinite}@keyframes fall-360{74.411%{transform:translate(6.4445vw,74.411vh) scale(.5122)}to{transform:translate(7.1862vw,100vh) scale(.5122)}}.snow:nth-child(361){opacity:.308;transform:translate(21.6115vw,-10px) scale(.1016);animation:fall-361 16s -22s linear infinite}@keyframes fall-361{36.968%{transform:translate(18.8718vw,36.968vh) scale(.1016)}to{transform:translate(20.24165vw,100vh) scale(.1016)}}.snow:nth-child(362){opacity:1.3556;transform:translate(3.148vw,-10px) scale(.9115);animation:fall-362 21s -16s linear infinite}@keyframes fall-362{42.373%{transform:translate(11.4029vw,42.373vh) scale(.9115)}to{transform:translate(7.27545vw,100vh) scale(.9115)}}.snow:nth-child(363){opacity:1.4846;transform:translate(60.414vw,-10px) scale(.2298);animation:fall-363 27s -3s linear infinite}@keyframes fall-363{66.832%{transform:translate(66.0028vw,66.832vh) scale(.2298)}to{transform:translate(63.2084vw,100vh) scale(.2298)}}.snow:nth-child(364){opacity:.9338;transform:translate(12.2133vw,-10px) scale(.9528);animation:fall-364 20s -28s linear infinite}@keyframes fall-364{59.245%{transform:translate(6.1228vw,59.245vh) scale(.9528)}to{transform:translate(9.16805vw,100vh) scale(.9528)}}.snow:nth-child(365){opacity:.7372;transform:translate(64.9766vw,-10px) scale(.1022);animation:fall-365 10s -19s linear infinite}@keyframes fall-365{65.23%{transform:translate(63.0987vw,65.23vh) scale(.1022)}to{transform:translate(64.03765vw,100vh) scale(.1022)}}.snow:nth-child(366){opacity:1.3354;transform:translate(12.0119vw,-10px) scale(.2074);animation:fall-366 24s -14s linear infinite}@keyframes fall-366{67.707%{transform:translate(14.9088vw,67.707vh) scale(.2074)}to{transform:translate(13.46035vw,100vh) scale(.2074)}}.snow:nth-child(367){opacity:.6172;transform:translate(94.2609vw,-10px) scale(.8427);animation:fall-367 11s -2s linear infinite}@keyframes fall-367{37.845%{transform:translate(92.7081vw,37.845vh) scale(.8427)}to{transform:translate(93.4845vw,100vh) scale(.8427)}}.snow:nth-child(368){opacity:.8644;transform:translate(63.5229vw,-10px) scale(.8678);animation:fall-368 23s -28s linear infinite}@keyframes fall-368{30.388%{transform:translate(60.6435vw,30.388vh) scale(.8678)}to{transform:translate(62.0832vw,100vh) scale(.8678)}}.snow:nth-child(369){opacity:1.7622;transform:translate(72.3871vw,-10px) scale(.9221);animation:fall-369 26s -4s linear infinite}@keyframes fall-369{75.116%{transform:translate(64.4106vw,75.116vh) scale(.9221)}to{transform:translate(68.39885vw,100vh) scale(.9221)}}.snow:nth-child(370){opacity:.5844;transform:translate(95.6989vw,-10px) scale(.5919);animation:fall-370 23s -17s linear infinite}@keyframes fall-370{77.832%{transform:translate(95.3674vw,77.832vh) scale(.5919)}to{transform:translate(95.53315vw,100vh) scale(.5919)}}.snow:nth-child(371){opacity:.529;transform:translate(73.8553vw,-10px) scale(.0512);animation:fall-371 19s -18s linear infinite}@keyframes fall-371{73.096%{transform:translate(69.3767vw,73.096vh) scale(.0512)}to{transform:translate(71.616vw,100vh) scale(.0512)}}.snow:nth-child(372){opacity:.9452;transform:translate(29.8709vw,-10px) scale(.2606);animation:fall-372 14s -12s linear infinite}@keyframes fall-372{79.177%{transform:translate(25.1129vw,79.177vh) scale(.2606)}to{transform:translate(27.4919vw,100vh) scale(.2606)}}.snow:nth-child(373){opacity:.9708;transform:translate(52.139vw,-10px) scale(.5425);animation:fall-373 14s -24s linear infinite}@keyframes fall-373{58.759%{transform:translate(57.6479vw,58.759vh) scale(.5425)}to{transform:translate(54.89345vw,100vh) scale(.5425)}}.snow:nth-child(374){opacity:1.3598;transform:translate(69.8272vw,-10px) scale(.2981);animation:fall-374 18s -22s linear infinite}@keyframes fall-374{32.113%{transform:translate(73.0706vw,32.113vh) scale(.2981)}to{transform:translate(71.4489vw,100vh) scale(.2981)}}.snow:nth-child(375){opacity:.9826;transform:translate(75.2725vw,-10px) scale(.324);animation:fall-375 22s -25s linear infinite}@keyframes fall-375{40.613%{transform:translate(76.0659vw,40.613vh) scale(.324)}to{transform:translate(75.6692vw,100vh) scale(.324)}}.snow:nth-child(376){opacity:.1838;transform:translate(59.2885vw,-10px) scale(.1891);animation:fall-376 23s -24s linear infinite}@keyframes fall-376{64.778%{transform:translate(52.0916vw,64.778vh) scale(.1891)}to{transform:translate(55.69005vw,100vh) scale(.1891)}}.snow:nth-child(377){opacity:.8804;transform:translate(62.0036vw,-10px) scale(.9157);animation:fall-377 26s -2s linear infinite}@keyframes fall-377{66.298%{transform:translate(61.9686vw,66.298vh) scale(.9157)}to{transform:translate(61.9861vw,100vh) scale(.9157)}}.snow:nth-child(378){opacity:1.6558;transform:translate(17.4804vw,-10px) scale(.2666);animation:fall-378 21s -8s linear infinite}@keyframes fall-378{77.235%{transform:translate(15.705vw,77.235vh) scale(.2666)}to{transform:translate(16.5927vw,100vh) scale(.2666)}}.snow:nth-child(379){opacity:1.827;transform:translate(79.5127vw,-10px) scale(.9613);animation:fall-379 30s -3s linear infinite}@keyframes fall-379{69.039%{transform:translate(81.6807vw,69.039vh) scale(.9613)}to{transform:translate(80.5967vw,100vh) scale(.9613)}}.snow:nth-child(380){opacity:1.7986;transform:translate(15.1933vw,-10px) scale(.8005);animation:fall-380 10s -13s linear infinite}@keyframes fall-380{38.533%{transform:translate(16.4935vw,38.533vh) scale(.8005)}to{transform:translate(15.8434vw,100vh) scale(.8005)}}.snow:nth-child(381){opacity:1.4106;transform:translate(83.547vw,-10px) scale(.9902);animation:fall-381 23s -27s linear infinite}@keyframes fall-381{70.116%{transform:translate(79.5591vw,70.116vh) scale(.9902)}to{transform:translate(81.55305vw,100vh) scale(.9902)}}.snow:nth-child(382){opacity:1.0306;transform:translate(86.434vw,-10px) scale(.4724);animation:fall-382 23s -5s linear infinite}@keyframes fall-382{53.121%{transform:translate(95.1996vw,53.121vh) scale(.4724)}to{transform:translate(90.8168vw,100vh) scale(.4724)}}.snow:nth-child(383){opacity:.5164;transform:translate(26.0509vw,-10px) scale(.8401);animation:fall-383 17s -23s linear infinite}@keyframes fall-383{69.334%{transform:translate(16.0561vw,69.334vh) scale(.8401)}to{transform:translate(21.0535vw,100vh) scale(.8401)}}.snow:nth-child(384){opacity:1.5464;transform:translate(63.3982vw,-10px) scale(.319);animation:fall-384 28s -13s linear infinite}@keyframes fall-384{54.919%{transform:translate(60.5296vw,54.919vh) scale(.319)}to{transform:translate(61.9639vw,100vh) scale(.319)}}.snow:nth-child(385){opacity:.195;transform:translate(54.3707vw,-10px) scale(.2882);animation:fall-385 14s -1s linear infinite}@keyframes fall-385{73.655%{transform:translate(59.2173vw,73.655vh) scale(.2882)}to{transform:translate(56.794vw,100vh) scale(.2882)}}.snow:nth-child(386){opacity:.7754;transform:translate(14.9485vw,-10px) scale(.5605);animation:fall-386 18s -7s linear infinite}@keyframes fall-386{59.636%{transform:translate(7.4807vw,59.636vh) scale(.5605)}to{transform:translate(11.2146vw,100vh) scale(.5605)}}.snow:nth-child(387){opacity:.579;transform:translate(52.1733vw,-10px) scale(.8783);animation:fall-387 13s -16s linear infinite}@keyframes fall-387{67.26%{transform:translate(62.1544vw,67.26vh) scale(.8783)}to{transform:translate(57.16385vw,100vh) scale(.8783)}}.snow:nth-child(388){opacity:.3696;transform:translate(50.4634vw,-10px) scale(.5533);animation:fall-388 11s -6s linear infinite}@keyframes fall-388{44.315%{transform:translate(46.2021vw,44.315vh) scale(.5533)}to{transform:translate(48.33275vw,100vh) scale(.5533)}}.snow:nth-child(389){opacity:.0444;transform:translate(45.053vw,-10px) scale(.4569);animation:fall-389 23s -17s linear infinite}@keyframes fall-389{57.272%{transform:translate(36.8206vw,57.272vh) scale(.4569)}to{transform:translate(40.9368vw,100vh) scale(.4569)}}.snow:nth-child(390){opacity:.8858;transform:translate(73.7921vw,-10px) scale(.555);animation:fall-390 22s -10s linear infinite}@keyframes fall-390{52.304%{transform:translate(67.7764vw,52.304vh) scale(.555)}to{transform:translate(70.78425vw,100vh) scale(.555)}}.snow:nth-child(391){opacity:.1832;transform:translate(56.0865vw,-10px) scale(.0583);animation:fall-391 24s -17s linear infinite}@keyframes fall-391{67.002%{transform:translate(54.9279vw,67.002vh) scale(.0583)}to{transform:translate(55.5072vw,100vh) scale(.0583)}}.snow:nth-child(392){opacity:.5446;transform:translate(49.2294vw,-10px) scale(.5508);animation:fall-392 29s -11s linear infinite}@keyframes fall-392{54.249%{transform:translate(53.3213vw,54.249vh) scale(.5508)}to{transform:translate(51.27535vw,100vh) scale(.5508)}}.snow:nth-child(393){opacity:1.025;transform:translate(63.8441vw,-10px) scale(.4622);animation:fall-393 20s -25s linear infinite}@keyframes fall-393{77.621%{transform:translate(64.6714vw,77.621vh) scale(.4622)}to{transform:translate(64.25775vw,100vh) scale(.4622)}}.snow:nth-child(394){opacity:.0356;transform:translate(75.5928vw,-10px) scale(.1765);animation:fall-394 28s -30s linear infinite}@keyframes fall-394{61.557%{transform:translate(75.9746vw,61.557vh) scale(.1765)}to{transform:translate(75.7837vw,100vh) scale(.1765)}}.snow:nth-child(395){opacity:1.6278;transform:translate(82.0706vw,-10px) scale(.818);animation:fall-395 28s -18s linear infinite}@keyframes fall-395{46.813%{transform:translate(81.1958vw,46.813vh) scale(.818)}to{transform:translate(81.6332vw,100vh) scale(.818)}}.snow:nth-child(396){opacity:.622;transform:translate(2.8109vw,-10px) scale(.2468);animation:fall-396 11s -12s linear infinite}@keyframes fall-396{32.028%{transform:translate(-6.9746vw,32.028vh) scale(.2468)}to{transform:translate(-2.08185vw,100vh) scale(.2468)}}.snow:nth-child(397){opacity:.1734;transform:translate(55.8485vw,-10px) scale(.0287);animation:fall-397 23s -3s linear infinite}@keyframes fall-397{43.461%{transform:translate(56.0488vw,43.461vh) scale(.0287)}to{transform:translate(55.94865vw,100vh) scale(.0287)}}.snow:nth-child(398){opacity:.5782;transform:translate(45.49vw,-10px) scale(.4649);animation:fall-398 18s -15s linear infinite}@keyframes fall-398{55.009%{transform:translate(46.4599vw,55.009vh) scale(.4649)}to{transform:translate(45.97495vw,100vh) scale(.4649)}}.snow:nth-child(399){opacity:.5474;transform:translate(19.3477vw,-10px) scale(.4042);animation:fall-399 11s -10s linear infinite}@keyframes fall-399{56.349%{transform:translate(12.9884vw,56.349vh) scale(.4042)}to{transform:translate(16.16805vw,100vh) scale(.4042)}}.snow:nth-child(400){opacity:1.3204;transform:translate(.7045vw,-10px) scale(.5356);animation:fall-400 28s -6s linear infinite}@keyframes fall-400{34.275%{transform:translate(-.5287vw,34.275vh) scale(.5356)}to{transform:translate(.0879vw,100vh) scale(.5356)}}\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 });
77
77
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AppComponent, decorators: [{
78
78
  type: Component,
79
- args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: ["@import\"https://fonts.googleapis.com/css2?family=Lato&family=Sora&display=swap\";.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:#fffac2}.progress.progress-primary[value]::-moz-progress-bar{background-color:#fffac2}.progress.progress-primary[value]::-ms-fill{background-color:#fffac2}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#fffac2}}.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:#ef4444}.progress.progress-danger[value]::-moz-progress-bar{background-color:#ef4444}.progress.progress-danger[value]::-ms-fill{background-color:#ef4444}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#ef4444}}.progress.progress-success[value]::-webkit-progress-value{background-color:#84cc16}.progress.progress-success[value]::-moz-progress-bar{background-color:#84cc16}.progress.progress-success[value]::-ms-fill{background-color:#84cc16}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#84cc16}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#fbbf24}.progress.progress-warning[value]::-moz-progress-bar{background-color:#fbbf24}.progress.progress-warning[value]::-ms-fill{background-color:#fbbf24}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#fbbf24}}.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:#fffac2}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#ef4444}.tag.tag-success{background-color:#84cc16}.tag.tag-warning{background-color:#fbbf24}.tag.tag-dark{background-color:#344154}.tag.tag-main{background-color:#0056b3}.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:#fff8a9;color:#191e29;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#191e29}.card .card-header a:hover{color:#191e29cc}.card .card-footer{background:#fff8a9;color:#191e29;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #191E29}.card.card-primary{background:#fffac2}.card.card-primary.medium-opacity{background:rgba(255,250,194,.5)}.card.card-outline-primary{background:transparent;border:1px solid #fffac2}.card.card-success{background:#84cc16;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(132,204,22,.5)}.card.card-outline-success{background:transparent;border:1px solid #84CC16}.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:#fbbf24;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(251,191,36,.5)}.card.card-outline-warning{background:transparent;border:1px solid #FBBF24}.card.card-danger{background:#ef4444;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(239,68,68,.5)}.card.card-outline-danger{background:transparent;border:1px solid #EF4444}.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(52,65,84,.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:#191e29}.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(52,65,84,.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:#191e29}.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(0,86,179,.8)!important;border-color:#0056b3cc!important}.btn-primary.medium-opacity{background:rgba(0,86,179,.5);border-color:#0056b31a}.btn-primary:hover,.btn-primary:focus{background:#0056b3;border-color:#0056b3}.btn-primary:active{background:rgba(0,86,179,.95)!important;border-color:#0056b3f2!important}.btn-success{background:rgba(132,204,22,.8);border-color:#84cc16cc}.btn-success.medium-opacity{background:rgba(132,204,22,.5);border-color:#84cc161a}.btn-success:hover,.btn-success:focus{background:#84cc16;border-color:#84cc16}.btn-success:active{background:rgba(132,204,22,.95)!important;border-color:#84cc16f2!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(251,191,36,.8);border-color:#fbbf24cc}.btn-warning.medium-opacity{background:rgba(251,191,36,.5);border-color:#fbbf241a}.btn-warning:hover,.btn-warning:focus{background:#fbbf24;border-color:#fbbf24}.btn-warning:active{background:rgba(251,191,36,.95)!important;border-color:#fbbf24f2!important}.btn-danger{background:rgba(239,68,68,.8);border-color:#ef4444cc}.btn-danger.medium-opacity{background:rgba(239,68,68,.5);border-color:#ef44441a}.btn-danger:hover,.btn-danger:focus{background:#ef4444;border-color:#ef4444}.btn-danger:active{background:rgba(239,68,68,.95)!important;border-color:#ef4444f2!important}.btn-dark{background:rgba(52,65,84,.8);border-color:#344154cc;color:#191e29}.btn-dark.medium-opacity{background:rgba(52,65,84,.5);border-color:#3441541a}.btn-dark:hover{background:#344154;border-color:#344154}.btn-dark:active{background:rgba(52,65,84,.95)!important;border-color:#344154f2!important}.btn-main{background:rgba(0,86,179,.8);border-color:#0056b3cc;color:#191e29}.btn-main.medium-opacity{background:rgba(0,86,179,.5);border-color:#0056b31a}.btn-main:hover{color:#191e29!important;background:#0056b3;border-color:#0056b3}.btn-main:active{background:rgba(0,86,179,.95)!important;border-color:#0056b3f2!important}.btn-outline-primary{color:#fffac2;border-color:#fffac2}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#191e29;background:#fffac2;border-color:#fffac2}.btn-outline-primary:active,.btn-outline-primary.active{color:#191e29!important;background:#fffac2!important;border-color:#fffac2!important}.btn-outline-success{color:#84cc16;border-color:#84cc16}.btn-outline-success:hover,.btn-outline-success:focus{color:#191e29;background:#84CC16;border-color:#84cc16}.btn-outline-success:active,.btn-outline-success.active{color:#191e29!important;background:#84CC16!important;border-color:#84cc16!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#191e29;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#191e29!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#fbbf24;border-color:#fbbf24}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#191e29;background:#FBBF24;border-color:#fbbf24}.btn-outline-warning:active,.btn-outline-warning.active{color:#191e29!important;background:#FBBF24!important;border-color:#fbbf24!important}.btn-outline-danger{color:#ef4444;border-color:#ef4444}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#191e29;background:#EF4444;border-color:#ef4444}.btn-outline-danger:active,.btn-outline-danger.active{color:#191e29!important;background:#EF4444!important;border-color:#ef4444!important}.btn-outline-dark{color:#344154;border-color:#344154;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#191e29;background:#344154;border-color:#344154}.btn-outline-main{color:#0056b3;border-color:#0056b3;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#191e29;background:#0056b3;border-color:#0056b3}.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:#fffac2!important}.text-success{color:#84cc16!important}.text-info{color:#248dad!important}.text-warning{color:#fbbf24!important}.text-danger{color:#ef4444!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:#0056b3cc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#191e29;color:#0056b3}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#0056b3;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:#fffac266;border:1px solid #fffac2}.nav-tabs.tabs-primary .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#fffac2;color:#191e29}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-success{background-color:#84cc1666;border:1px solid #84CC16}.nav-tabs.tabs-success .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#84cc16;color:#191e29}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#191e29}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-warning{background-color:#fbbf2466;border:1px solid #FBBF24}.nav-tabs.tabs-warning .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#fbbf24;color:#191e29}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-danger{background-color:#ef444466;border:1px solid #EF4444}.nav-tabs.tabs-danger .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#ef4444;color:#191e29}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#191e29}.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:#fffac2;color:#191e29;border-color:#fffac2}.tab-content.tab-content-success{background-color:#84cc16;color:#191e29;border-color:#84cc16}.tab-content.tab-content-info{background-color:#248dad;color:#191e29;border-color:#248dad}.tab-content.tab-content-warning{background-color:#fbbf24;color:#191e29;border-color:#fbbf24}.tab-content.tab-content-danger{background-color:#ef4444;color:#191e29;border-color:#ef4444}.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:#0056b3cc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#191e29}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#0056b3;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#0056b399;cursor:not-allowed!important}.alert.alert-success{background-color:#84cc16;border-color:#84cc16;color:#191e29}.alert.alert-success.medium-opacity{background:rgba(132,204,22,.5);border-color:#84cc1699}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#191e29}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#fbbf24;border-color:#fbbf24;color:#191e29}.alert.alert-warning.medium-opacity{background-color:#fbbf2480;border-color:#fbbf2499}.alert.alert-danger{background-color:#ef4444;border-color:#ef4444;color:#191e29}.alert.alert-danger.medium-opacity{background-color:#ef444480;border-color:#ef444499}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#344154}.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:#191e29;background-color:#fffac2}.modal-dialog .modal-content .modal-header.modal-success{color:#191e29;background-color:#84cc16}.modal-dialog .modal-content .modal-header.modal-info{color:#191e29;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#191e29;background-color:#fbbf24}.modal-dialog .modal-content .modal-header.modal-danger{color:#191e29;background-color:#ef4444}.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:#344154cc}.list-group .list-group-item.active{color:#191e29e6;background-color:#fffac2;border-color:#fffac2}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#191e29!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#344154}.list-group .list-group-item.list-group-item-primary{color:#191e29;background-color:#fffac2}.list-group .list-group-item.list-group-item-success{color:#191e29;background-color:#84cc16}.list-group .list-group-item.list-group-item-info{color:#191e29;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#191e29;background-color:#fbbf24}.list-group .list-group-item.list-group-item-danger{color:#191e29;background-color:#ef4444}.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='%2384CC16' 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:#84cc16cc}.has-success .form-control:focus{box-shadow:none;border-color:#84cc1680}.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:#84cc16}.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='%23FBBF24' 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:#fbbf24cc}.has-warning .form-control:focus{box-shadow:none;border-color:#fbbf2480}.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:#fbbf24}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444cc}.has-danger .form-control:focus{box-shadow:none;border-color:#ef444480}.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:#ef4444}.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:#ef4444!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#84cc16;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='%2384CC16' 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:#ef4444;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#84cc16;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='%2384CC16' 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:#344154cc}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:#0056b3}.dropdown-menu a:hover{color:#191e29;background-color:#0056b3}.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:#fffac2}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fffac2}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#84CC16}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #84cc16}.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:#FBBF24}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fbbf24}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#EF4444}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #ef4444}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#0056b3}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #0056b3}.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:#fffac2}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fffac2}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#84CC16}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #84cc16}.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:#FBBF24}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fbbf24}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#EF4444}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #ef4444}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#0056b3}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #0056b3}.custom-select,.custom-select:focus{background:rgba(25,30,41,.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:#fffac2!important}.bg-primary.medium-opacity{background:rgba(255,250,194,.5)!important}.bg-success{background:#84cc16!important}.bg-success.medium-opacity{background:rgba(132,204,22,.5)!important}.bg-info{background:#248dad!important}.bg-info.medium-opacity{background:rgba(36,141,173,.5)!important}.bg-warning{background:#fbbf24!important}.bg-warning.medium-opacity{background:rgba(251,191,36,.5)!important}.bg-danger{background:#ef4444!important}.bg-danger.medium-opacity{background:rgba(239,68,68,.5)!important}.bg-main{background:#0056b3!important}.bg-main.medium-opacity{background:rgba(0,86,179,.5)!important}.bg-dark{background:#344154!important}.bg-dark.medium-opacity{background:rgba(52,65,84,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#84cc16;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='%2384CC16' 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}.pull-right{float:right!important}.pull-left{float:left!important}.es-table{background-color:#f2f2f2}.table-responsive{margin-bottom:0!important}.table-responsive .est-table-dotted-menu{background-color:#2a3544!important;padding:10px 5px!important}.table-responsive .est-sticky-last-column,.table-responsive .est-sticky-last-column-alt{background-color:#0000}.table-responsive th{font-family:Sora,sans-serif;color:#fff;background-color:#2a3544;padding:10px 15px}.table-responsive td{padding:10px 15px}.table-responsive .table-striped tbody tr:nth-of-type(odd){background-color:#fff}.table-responsive table{color:#000;margin-bottom:0!important}.table-responsive .table-hover tbody tr:hover{color:#000}.est-relative>div:nth-child(2){padding:15px;border-top:10px solid #e9ebee;background-color:#fff}.est-relative>div:nth-child(2)>div:nth-child(1){margin-top:3px}.est-relative>div:nth-child(2)>div:nth-child(2){margin-top:4px;margin-bottom:-4px}.pace .pace-progress{background:#fffac2;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:#0056b3;border-left-color:#0056b3}.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}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}.app-ck-height-400 .ck-editor__editable{max-height:400px}.lazyContainer{position:relative}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Lato,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-family:Sora,sans-serif;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:#191e29;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:#191e29b3}.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:#0056b3;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#0056b3}.widget-controls ul.dropdown-menu li:hover a{color:#191e29}.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:#fffac2}.card.fullscreened.card-success{background:#84CC16}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#FBBF24}.card.fullscreened.card-danger{background:#EF4444}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.2414;transform:translate(84.479vw,-10px) scale(.0251);animation:fall-1 27s -16s linear infinite}@keyframes fall-1{46.296%{transform:translate(85.8874vw,46.296vh) scale(.0251)}to{transform:translate(85.1832vw,100vh) scale(.0251)}}.snow:nth-child(2){opacity:1.7418;transform:translate(89.3491vw,-10px) scale(.0778);animation:fall-2 19s -30s linear infinite}@keyframes fall-2{74.391%{transform:translate(82.4847vw,74.391vh) scale(.0778)}to{transform:translate(85.9169vw,100vh) scale(.0778)}}.snow:nth-child(3){opacity:.096;transform:translate(69.144vw,-10px) scale(.2235);animation:fall-3 28s -16s linear infinite}@keyframes fall-3{35.031%{transform:translate(61.9175vw,35.031vh) scale(.2235)}to{transform:translate(65.53075vw,100vh) scale(.2235)}}.snow:nth-child(4){opacity:.0544;transform:translate(10.2061vw,-10px) scale(.4707);animation:fall-4 24s -11s linear infinite}@keyframes fall-4{72.077%{transform:translate(14.8509vw,72.077vh) scale(.4707)}to{transform:translate(12.5285vw,100vh) scale(.4707)}}.snow:nth-child(5){opacity:1.6988;transform:translate(51.5223vw,-10px) scale(.1278);animation:fall-5 28s -28s linear infinite}@keyframes fall-5{77.047%{transform:translate(52.5434vw,77.047vh) scale(.1278)}to{transform:translate(52.03285vw,100vh) scale(.1278)}}.snow:nth-child(6){opacity:.563;transform:translate(29.4772vw,-10px) scale(.353);animation:fall-6 30s -8s linear infinite}@keyframes fall-6{51.913%{transform:translate(24.5065vw,51.913vh) scale(.353)}to{transform:translate(26.99185vw,100vh) scale(.353)}}.snow:nth-child(7){opacity:1.884;transform:translate(66.6107vw,-10px) scale(.8838);animation:fall-7 22s -12s linear infinite}@keyframes fall-7{30.942%{transform:translate(74.1543vw,30.942vh) scale(.8838)}to{transform:translate(70.3825vw,100vh) scale(.8838)}}.snow:nth-child(8){opacity:1.643;transform:translate(69.7452vw,-10px) scale(.1319);animation:fall-8 26s -30s linear infinite}@keyframes fall-8{31.781%{transform:translate(60.6652vw,31.781vh) scale(.1319)}to{transform:translate(65.2052vw,100vh) scale(.1319)}}.snow:nth-child(9){opacity:1.3348;transform:translate(38.7047vw,-10px) scale(.1573);animation:fall-9 30s -26s linear infinite}@keyframes fall-9{70.529%{transform:translate(39.4195vw,70.529vh) scale(.1573)}to{transform:translate(39.0621vw,100vh) scale(.1573)}}.snow:nth-child(10){opacity:1.8756;transform:translate(15.4713vw,-10px) scale(.6905);animation:fall-10 12s -21s linear infinite}@keyframes fall-10{70.703%{transform:translate(21.9998vw,70.703vh) scale(.6905)}to{transform:translate(18.73555vw,100vh) scale(.6905)}}.snow:nth-child(11){opacity:.6734;transform:translate(43.0224vw,-10px) scale(.8259);animation:fall-11 20s -23s linear infinite}@keyframes fall-11{64.292%{transform:translate(49.7091vw,64.292vh) scale(.8259)}to{transform:translate(46.36575vw,100vh) scale(.8259)}}.snow:nth-child(12){opacity:1.2524;transform:translate(20.368vw,-10px) scale(.5766);animation:fall-12 26s -23s linear infinite}@keyframes fall-12{72.245%{transform:translate(14.1823vw,72.245vh) scale(.5766)}to{transform:translate(17.27515vw,100vh) scale(.5766)}}.snow:nth-child(13){opacity:.6172;transform:translate(9.1316vw,-10px) scale(.994);animation:fall-13 19s -19s linear infinite}@keyframes fall-13{31.785%{transform:translate(13.8892vw,31.785vh) scale(.994)}to{transform:translate(11.5104vw,100vh) scale(.994)}}.snow:nth-child(14){opacity:1.3954;transform:translate(9.1232vw,-10px) scale(.0529);animation:fall-14 28s -8s linear infinite}@keyframes fall-14{70.351%{transform:translate(10.0961vw,70.351vh) scale(.0529)}to{transform:translate(9.60965vw,100vh) scale(.0529)}}.snow:nth-child(15){opacity:.2976;transform:translate(32.4975vw,-10px) scale(.3194);animation:fall-15 21s -23s linear infinite}@keyframes fall-15{30.243%{transform:translate(31.5233vw,30.243vh) scale(.3194)}to{transform:translate(32.0104vw,100vh) scale(.3194)}}.snow:nth-child(16){opacity:.07;transform:translate(23.5512vw,-10px) scale(.8093);animation:fall-16 29s -4s linear infinite}@keyframes fall-16{75.593%{transform:translate(21.6641vw,75.593vh) scale(.8093)}to{transform:translate(22.60765vw,100vh) scale(.8093)}}.snow:nth-child(17){opacity:1.5478;transform:translate(52.1125vw,-10px) scale(.4655);animation:fall-17 20s -8s linear infinite}@keyframes fall-17{51.837%{transform:translate(53.183vw,51.837vh) scale(.4655)}to{transform:translate(52.64775vw,100vh) scale(.4655)}}.snow:nth-child(18){opacity:.2968;transform:translate(46.9328vw,-10px) scale(.8928);animation:fall-18 30s -21s linear infinite}@keyframes fall-18{43.367%{transform:translate(46.447vw,43.367vh) scale(.8928)}to{transform:translate(46.6899vw,100vh) scale(.8928)}}.snow:nth-child(19){opacity:1.1432;transform:translate(60.9247vw,-10px) scale(.073);animation:fall-19 10s -9s linear infinite}@keyframes fall-19{63.548%{transform:translate(58.7919vw,63.548vh) scale(.073)}to{transform:translate(59.8583vw,100vh) scale(.073)}}.snow:nth-child(20){opacity:1.088;transform:translate(22.4607vw,-10px) scale(.8433);animation:fall-20 27s -1s linear infinite}@keyframes fall-20{39.928%{transform:translate(19.0003vw,39.928vh) scale(.8433)}to{transform:translate(20.7305vw,100vh) scale(.8433)}}.snow:nth-child(21){opacity:1.8702;transform:translate(31.8316vw,-10px) scale(.4358);animation:fall-21 10s -28s linear infinite}@keyframes fall-21{78.09%{transform:translate(34.2732vw,78.09vh) scale(.4358)}to{transform:translate(33.0524vw,100vh) scale(.4358)}}.snow:nth-child(22){opacity:.0366;transform:translate(52.3003vw,-10px) scale(.1636);animation:fall-22 15s -24s linear infinite}@keyframes fall-22{63.582%{transform:translate(49.0802vw,63.582vh) scale(.1636)}to{transform:translate(50.69025vw,100vh) scale(.1636)}}.snow:nth-child(23){opacity:1.3902;transform:translate(10.4839vw,-10px) scale(.737);animation:fall-23 12s -29s linear infinite}@keyframes fall-23{74.901%{transform:translate(19.817vw,74.901vh) scale(.737)}to{transform:translate(15.15045vw,100vh) scale(.737)}}.snow:nth-child(24){opacity:1.961;transform:translate(87.3177vw,-10px) scale(.4326);animation:fall-24 11s -18s linear infinite}@keyframes fall-24{73.166%{transform:translate(83.6488vw,73.166vh) scale(.4326)}to{transform:translate(85.48325vw,100vh) scale(.4326)}}.snow:nth-child(25){opacity:1.0706;transform:translate(58.7935vw,-10px) scale(.1018);animation:fall-25 17s -1s linear infinite}@keyframes fall-25{67.968%{transform:translate(59.3948vw,67.968vh) scale(.1018)}to{transform:translate(59.09415vw,100vh) scale(.1018)}}.snow:nth-child(26){opacity:1.0722;transform:translate(55.0425vw,-10px) scale(.7686);animation:fall-26 15s -26s linear infinite}@keyframes fall-26{79.874%{transform:translate(52.739vw,79.874vh) scale(.7686)}to{transform:translate(53.89075vw,100vh) scale(.7686)}}.snow:nth-child(27){opacity:.2696;transform:translate(92.8188vw,-10px) scale(.6976);animation:fall-27 12s -6s linear infinite}@keyframes fall-27{61.746%{transform:translate(91.4193vw,61.746vh) scale(.6976)}to{transform:translate(92.11905vw,100vh) scale(.6976)}}.snow:nth-child(28){opacity:.9444;transform:translate(69.2782vw,-10px) scale(.5459);animation:fall-28 24s -5s linear infinite}@keyframes fall-28{50.698%{transform:translate(67.7168vw,50.698vh) scale(.5459)}to{transform:translate(68.4975vw,100vh) scale(.5459)}}.snow:nth-child(29){opacity:.9202;transform:translate(4.1865vw,-10px) scale(.866);animation:fall-29 16s -23s linear infinite}@keyframes fall-29{51.535%{transform:translate(-1.1644vw,51.535vh) scale(.866)}to{transform:translate(1.51105vw,100vh) scale(.866)}}.snow:nth-child(30){opacity:.5586;transform:translate(67.7779vw,-10px) scale(.052);animation:fall-30 18s -19s linear infinite}@keyframes fall-30{43.706%{transform:translate(58.0599vw,43.706vh) scale(.052)}to{transform:translate(62.9189vw,100vh) scale(.052)}}.snow:nth-child(31){opacity:1.7062;transform:translate(24.6222vw,-10px) scale(.8038);animation:fall-31 22s -1s linear infinite}@keyframes fall-31{48.478%{transform:translate(30.4276vw,48.478vh) scale(.8038)}to{transform:translate(27.5249vw,100vh) scale(.8038)}}.snow:nth-child(32){opacity:1.3996;transform:translate(38.6959vw,-10px) scale(.3123);animation:fall-32 14s -1s linear infinite}@keyframes fall-32{31.096%{transform:translate(29.4324vw,31.096vh) scale(.3123)}to{transform:translate(34.06415vw,100vh) scale(.3123)}}.snow:nth-child(33){opacity:.9222;transform:translate(28.6608vw,-10px) scale(.5996);animation:fall-33 23s -9s linear infinite}@keyframes fall-33{78.785%{transform:translate(37.2798vw,78.785vh) scale(.5996)}to{transform:translate(32.9703vw,100vh) scale(.5996)}}.snow:nth-child(34){opacity:.7372;transform:translate(37.8725vw,-10px) scale(.6346);animation:fall-34 10s -28s linear infinite}@keyframes fall-34{73.936%{transform:translate(44.6352vw,73.936vh) scale(.6346)}to{transform:translate(41.25385vw,100vh) scale(.6346)}}.snow:nth-child(35){opacity:.9922;transform:translate(95.4748vw,-10px) scale(.8039);animation:fall-35 11s -5s linear infinite}@keyframes fall-35{34.002%{transform:translate(104.4752vw,34.002vh) scale(.8039)}to{transform:translate(99.975vw,100vh) scale(.8039)}}.snow:nth-child(36){opacity:1.2976;transform:translate(29.1085vw,-10px) scale(.8118);animation:fall-36 17s -15s linear infinite}@keyframes fall-36{57.555%{transform:translate(32.7972vw,57.555vh) scale(.8118)}to{transform:translate(30.95285vw,100vh) scale(.8118)}}.snow:nth-child(37){opacity:.9394;transform:translate(86.684vw,-10px) scale(.0938);animation:fall-37 12s -5s linear infinite}@keyframes fall-37{66.991%{transform:translate(91.233vw,66.991vh) scale(.0938)}to{transform:translate(88.9585vw,100vh) scale(.0938)}}.snow:nth-child(38){opacity:1.1966;transform:translate(43.9948vw,-10px) scale(.1208);animation:fall-38 16s -24s linear infinite}@keyframes fall-38{77.221%{transform:translate(34.7005vw,77.221vh) scale(.1208)}to{transform:translate(39.34765vw,100vh) scale(.1208)}}.snow:nth-child(39){opacity:.401;transform:translate(57.6178vw,-10px) scale(.4857);animation:fall-39 29s -30s linear infinite}@keyframes fall-39{75.92%{transform:translate(57.9077vw,75.92vh) scale(.4857)}to{transform:translate(57.76275vw,100vh) scale(.4857)}}.snow:nth-child(40){opacity:1.071;transform:translate(37.1708vw,-10px) scale(.3478);animation:fall-40 24s -10s linear infinite}@keyframes fall-40{32.958%{transform:translate(30.3487vw,32.958vh) scale(.3478)}to{transform:translate(33.75975vw,100vh) scale(.3478)}}.snow:nth-child(41){opacity:1.394;transform:translate(7.5263vw,-10px) scale(.9759);animation:fall-41 21s -3s linear infinite}@keyframes fall-41{45.242%{transform:translate(16.3414vw,45.242vh) scale(.9759)}to{transform:translate(11.93385vw,100vh) scale(.9759)}}.snow:nth-child(42){opacity:.6032;transform:translate(37.9604vw,-10px) scale(.5185);animation:fall-42 16s -8s linear infinite}@keyframes fall-42{75.422%{transform:translate(44.565vw,75.422vh) scale(.5185)}to{transform:translate(41.2627vw,100vh) scale(.5185)}}.snow:nth-child(43){opacity:1.5672;transform:translate(14.4763vw,-10px) scale(.6805);animation:fall-43 22s -21s linear infinite}@keyframes fall-43{33.88%{transform:translate(4.9165vw,33.88vh) scale(.6805)}to{transform:translate(9.6964vw,100vh) scale(.6805)}}.snow:nth-child(44){opacity:1.0796;transform:translate(71.3264vw,-10px) scale(.7592);animation:fall-44 23s -16s linear infinite}@keyframes fall-44{65.506%{transform:translate(67.0474vw,65.506vh) scale(.7592)}to{transform:translate(69.1869vw,100vh) scale(.7592)}}.snow:nth-child(45){opacity:1.779;transform:translate(13.6354vw,-10px) scale(.0729);animation:fall-45 26s -10s linear infinite}@keyframes fall-45{43.037%{transform:translate(21.5799vw,43.037vh) scale(.0729)}to{transform:translate(17.60765vw,100vh) scale(.0729)}}.snow:nth-child(46){opacity:.3424;transform:translate(88.2328vw,-10px) scale(.3862);animation:fall-46 24s -7s linear infinite}@keyframes fall-46{41.852%{transform:translate(86.2355vw,41.852vh) scale(.3862)}to{transform:translate(87.23415vw,100vh) scale(.3862)}}.snow:nth-child(47){opacity:1.4786;transform:translate(58.5342vw,-10px) scale(.2644);animation:fall-47 17s -1s linear infinite}@keyframes fall-47{34.05%{transform:translate(51.8512vw,34.05vh) scale(.2644)}to{transform:translate(55.1927vw,100vh) scale(.2644)}}.snow:nth-child(48){opacity:.759;transform:translate(64.4434vw,-10px) scale(.4885);animation:fall-48 22s -6s linear infinite}@keyframes fall-48{72.602%{transform:translate(69.2545vw,72.602vh) scale(.4885)}to{transform:translate(66.84895vw,100vh) scale(.4885)}}.snow:nth-child(49){opacity:1.042;transform:translate(18.5127vw,-10px) scale(.3894);animation:fall-49 28s -4s linear infinite}@keyframes fall-49{77.37%{transform:translate(13.74vw,77.37vh) scale(.3894)}to{transform:translate(16.12635vw,100vh) scale(.3894)}}.snow:nth-child(50){opacity:.263;transform:translate(20.283vw,-10px) scale(.7568);animation:fall-50 15s -5s linear infinite}@keyframes fall-50{54.999%{transform:translate(26.4339vw,54.999vh) scale(.7568)}to{transform:translate(23.35845vw,100vh) scale(.7568)}}.snow:nth-child(51){opacity:.808;transform:translate(65.0611vw,-10px) scale(.0927);animation:fall-51 20s -13s linear infinite}@keyframes fall-51{45.469%{transform:translate(74.2293vw,45.469vh) scale(.0927)}to{transform:translate(69.6452vw,100vh) scale(.0927)}}.snow:nth-child(52){opacity:1.4416;transform:translate(61.1322vw,-10px) scale(.8879);animation:fall-52 26s -13s linear infinite}@keyframes fall-52{30.724%{transform:translate(56.3855vw,30.724vh) scale(.8879)}to{transform:translate(58.75885vw,100vh) scale(.8879)}}.snow:nth-child(53){opacity:1.4466;transform:translate(55.8305vw,-10px) scale(.665);animation:fall-53 24s -8s linear infinite}@keyframes fall-53{37.892%{transform:translate(64.4836vw,37.892vh) scale(.665)}to{transform:translate(60.15705vw,100vh) scale(.665)}}.snow:nth-child(54){opacity:.2268;transform:translate(58.05vw,-10px) scale(.8219);animation:fall-54 19s -17s linear infinite}@keyframes fall-54{74.788%{transform:translate(53.4115vw,74.788vh) scale(.8219)}to{transform:translate(55.73075vw,100vh) scale(.8219)}}.snow:nth-child(55){opacity:1.5966;transform:translate(4.9777vw,-10px) scale(.3133);animation:fall-55 13s -13s linear infinite}@keyframes fall-55{78.732%{transform:translate(-2.0181vw,78.732vh) scale(.3133)}to{transform:translate(1.4798vw,100vh) scale(.3133)}}.snow:nth-child(56){opacity:.9394;transform:translate(83.1541vw,-10px) scale(.441);animation:fall-56 11s -16s linear infinite}@keyframes fall-56{45.302%{transform:translate(74.6167vw,45.302vh) scale(.441)}to{transform:translate(78.8854vw,100vh) scale(.441)}}.snow:nth-child(57){opacity:1.8814;transform:translate(43.5896vw,-10px) scale(.9513);animation:fall-57 13s -8s linear infinite}@keyframes fall-57{63.443%{transform:translate(48.261vw,63.443vh) scale(.9513)}to{transform:translate(45.9253vw,100vh) scale(.9513)}}.snow:nth-child(58){opacity:.5218;transform:translate(92.0338vw,-10px) scale(.6828);animation:fall-58 30s -29s linear infinite}@keyframes fall-58{41.419%{transform:translate(101.686vw,41.419vh) scale(.6828)}to{transform:translate(96.8599vw,100vh) scale(.6828)}}.snow:nth-child(59){opacity:.0404;transform:translate(8.6152vw,-10px) scale(.7775);animation:fall-59 20s -17s linear infinite}@keyframes fall-59{70.985%{transform:translate(.6617vw,70.985vh) scale(.7775)}to{transform:translate(4.63845vw,100vh) scale(.7775)}}.snow:nth-child(60){opacity:1.4048;transform:translate(81.4533vw,-10px) scale(.7744);animation:fall-60 17s -8s linear infinite}@keyframes fall-60{35.984%{transform:translate(74.2344vw,35.984vh) scale(.7744)}to{transform:translate(77.84385vw,100vh) scale(.7744)}}.snow:nth-child(61){opacity:1.968;transform:translate(52.2408vw,-10px) scale(.4824);animation:fall-61 24s -16s linear infinite}@keyframes fall-61{59.869%{transform:translate(57.9279vw,59.869vh) scale(.4824)}to{transform:translate(55.08435vw,100vh) scale(.4824)}}.snow:nth-child(62){opacity:1.6714;transform:translate(96.8481vw,-10px) scale(.4427);animation:fall-62 14s -18s linear infinite}@keyframes fall-62{52.324%{transform:translate(90.9061vw,52.324vh) scale(.4427)}to{transform:translate(93.8771vw,100vh) scale(.4427)}}.snow:nth-child(63){opacity:.9714;transform:translate(22.9096vw,-10px) scale(.2837);animation:fall-63 18s -7s linear infinite}@keyframes fall-63{41.554%{transform:translate(26.7027vw,41.554vh) scale(.2837)}to{transform:translate(24.80615vw,100vh) scale(.2837)}}.snow:nth-child(64){opacity:.8226;transform:translate(99.333vw,-10px) scale(.814);animation:fall-64 22s -2s linear infinite}@keyframes fall-64{35.095%{transform:translate(95.7218vw,35.095vh) scale(.814)}to{transform:translate(97.5274vw,100vh) scale(.814)}}.snow:nth-child(65){opacity:.1582;transform:translate(33.7441vw,-10px) scale(.8091);animation:fall-65 28s -30s linear infinite}@keyframes fall-65{68.205%{transform:translate(37.5404vw,68.205vh) scale(.8091)}to{transform:translate(35.64225vw,100vh) scale(.8091)}}.snow:nth-child(66){opacity:1.9944;transform:translate(27.9106vw,-10px) scale(.7078);animation:fall-66 21s -25s linear infinite}@keyframes fall-66{45.925%{transform:translate(37.8816vw,45.925vh) scale(.7078)}to{transform:translate(32.8961vw,100vh) scale(.7078)}}.snow:nth-child(67){opacity:.6616;transform:translate(24.2091vw,-10px) scale(.3084);animation:fall-67 26s -8s linear infinite}@keyframes fall-67{67.39%{transform:translate(15.9037vw,67.39vh) scale(.3084)}to{transform:translate(20.0564vw,100vh) scale(.3084)}}.snow:nth-child(68){opacity:1.0792;transform:translate(89.7037vw,-10px) scale(.5694);animation:fall-68 12s -12s linear infinite}@keyframes fall-68{44.51%{transform:translate(88.1855vw,44.51vh) scale(.5694)}to{transform:translate(88.9446vw,100vh) scale(.5694)}}.snow:nth-child(69){opacity:1;transform:translate(61.3704vw,-10px) scale(.4413);animation:fall-69 18s -22s linear infinite}@keyframes fall-69{72.858%{transform:translate(55.6313vw,72.858vh) scale(.4413)}to{transform:translate(58.50085vw,100vh) scale(.4413)}}.snow:nth-child(70){opacity:.6328;transform:translate(66.6678vw,-10px) scale(.7407);animation:fall-70 24s -3s linear infinite}@keyframes fall-70{68.011%{transform:translate(66.5504vw,68.011vh) scale(.7407)}to{transform:translate(66.6091vw,100vh) scale(.7407)}}.snow:nth-child(71){opacity:1.0002;transform:translate(81.2665vw,-10px) scale(.0975);animation:fall-71 18s -27s linear infinite}@keyframes fall-71{41.065%{transform:translate(86.9448vw,41.065vh) scale(.0975)}to{transform:translate(84.10565vw,100vh) scale(.0975)}}.snow:nth-child(72){opacity:.4798;transform:translate(15.1362vw,-10px) scale(.0085);animation:fall-72 30s -15s linear infinite}@keyframes fall-72{64.099%{transform:translate(5.3933vw,64.099vh) scale(.0085)}to{transform:translate(10.26475vw,100vh) scale(.0085)}}.snow:nth-child(73){opacity:.2342;transform:translate(86.3968vw,-10px) scale(.7459);animation:fall-73 27s -9s linear infinite}@keyframes fall-73{30.394%{transform:translate(95.7515vw,30.394vh) scale(.7459)}to{transform:translate(91.07415vw,100vh) scale(.7459)}}.snow:nth-child(74){opacity:.3814;transform:translate(42.0363vw,-10px) scale(.4059);animation:fall-74 16s -2s linear infinite}@keyframes fall-74{70.362%{transform:translate(32.1766vw,70.362vh) scale(.4059)}to{transform:translate(37.10645vw,100vh) scale(.4059)}}.snow:nth-child(75){opacity:1.8108;transform:translate(22.5444vw,-10px) scale(.2065);animation:fall-75 21s -11s linear infinite}@keyframes fall-75{54.986%{transform:translate(18.2518vw,54.986vh) scale(.2065)}to{transform:translate(20.3981vw,100vh) scale(.2065)}}.snow:nth-child(76){opacity:.742;transform:translate(14.7729vw,-10px) scale(.4981);animation:fall-76 12s -24s linear infinite}@keyframes fall-76{37.033%{transform:translate(10.7269vw,37.033vh) scale(.4981)}to{transform:translate(12.7499vw,100vh) scale(.4981)}}.snow:nth-child(77){opacity:1.264;transform:translate(64.9095vw,-10px) scale(.2937);animation:fall-77 28s -10s linear infinite}@keyframes fall-77{73.3%{transform:translate(57.2408vw,73.3vh) scale(.2937)}to{transform:translate(61.07515vw,100vh) scale(.2937)}}.snow:nth-child(78){opacity:1.5528;transform:translate(28.5316vw,-10px) scale(.6152);animation:fall-78 28s -22s linear infinite}@keyframes fall-78{74.461%{transform:translate(37.3982vw,74.461vh) scale(.6152)}to{transform:translate(32.9649vw,100vh) scale(.6152)}}.snow:nth-child(79){opacity:1.6702;transform:translate(69.9511vw,-10px) scale(.0153);animation:fall-79 19s -6s linear infinite}@keyframes fall-79{46.958%{transform:translate(78.2196vw,46.958vh) scale(.0153)}to{transform:translate(74.08535vw,100vh) scale(.0153)}}.snow:nth-child(80){opacity:1.0678;transform:translate(69.2957vw,-10px) scale(.787);animation:fall-80 11s -26s linear infinite}@keyframes fall-80{40.392%{transform:translate(69.1723vw,40.392vh) scale(.787)}to{transform:translate(69.234vw,100vh) scale(.787)}}.snow:nth-child(81){opacity:1.052;transform:translate(21.4331vw,-10px) scale(.171);animation:fall-81 27s -19s linear infinite}@keyframes fall-81{46.559%{transform:translate(11.9148vw,46.559vh) scale(.171)}to{transform:translate(16.67395vw,100vh) scale(.171)}}.snow:nth-child(82){opacity:1.8842;transform:translate(62.6093vw,-10px) scale(.9067);animation:fall-82 16s -17s linear infinite}@keyframes fall-82{58.887%{transform:translate(56.6774vw,58.887vh) scale(.9067)}to{transform:translate(59.64335vw,100vh) scale(.9067)}}.snow:nth-child(83){opacity:.7132;transform:translate(50.9452vw,-10px) scale(.4118);animation:fall-83 28s -29s linear infinite}@keyframes fall-83{56.254%{transform:translate(53.6921vw,56.254vh) scale(.4118)}to{transform:translate(52.31865vw,100vh) scale(.4118)}}.snow:nth-child(84){opacity:1.5208;transform:translate(43.6609vw,-10px) scale(.9107);animation:fall-84 26s -4s linear infinite}@keyframes fall-84{47.214%{transform:translate(38.5317vw,47.214vh) scale(.9107)}to{transform:translate(41.0963vw,100vh) scale(.9107)}}.snow:nth-child(85){opacity:.43;transform:translate(48.4378vw,-10px) scale(.3361);animation:fall-85 22s -7s linear infinite}@keyframes fall-85{77.543%{transform:translate(50.4884vw,77.543vh) scale(.3361)}to{transform:translate(49.4631vw,100vh) scale(.3361)}}.snow:nth-child(86){opacity:.0276;transform:translate(62.6912vw,-10px) scale(.2202);animation:fall-86 19s -2s linear infinite}@keyframes fall-86{59.754%{transform:translate(70.63vw,59.754vh) scale(.2202)}to{transform:translate(66.6606vw,100vh) scale(.2202)}}.snow:nth-child(87){opacity:.4912;transform:translate(51.304vw,-10px) scale(.9237);animation:fall-87 16s -29s linear infinite}@keyframes fall-87{32.844%{transform:translate(42.5813vw,32.844vh) scale(.9237)}to{transform:translate(46.94265vw,100vh) scale(.9237)}}.snow:nth-child(88){opacity:1.784;transform:translate(34.6842vw,-10px) scale(.3261);animation:fall-88 19s -18s linear infinite}@keyframes fall-88{50.96%{transform:translate(33.4748vw,50.96vh) scale(.3261)}to{transform:translate(34.0795vw,100vh) scale(.3261)}}.snow:nth-child(89){opacity:1.1912;transform:translate(1.7779vw,-10px) scale(.3091);animation:fall-89 26s -6s linear infinite}@keyframes fall-89{34.603%{transform:translate(2.1166vw,34.603vh) scale(.3091)}to{transform:translate(1.94725vw,100vh) scale(.3091)}}.snow:nth-child(90){opacity:.873;transform:translate(68.6275vw,-10px) scale(.0196);animation:fall-90 18s -8s linear infinite}@keyframes fall-90{47.223%{transform:translate(70.6657vw,47.223vh) scale(.0196)}to{transform:translate(69.6466vw,100vh) scale(.0196)}}.snow:nth-child(91){opacity:1.278;transform:translate(15.536vw,-10px) scale(.9297);animation:fall-91 26s -3s linear infinite}@keyframes fall-91{78.372%{transform:translate(14.6871vw,78.372vh) scale(.9297)}to{transform:translate(15.11155vw,100vh) scale(.9297)}}.snow:nth-child(92){opacity:1.7272;transform:translate(95.1151vw,-10px) scale(.0496);animation:fall-92 26s -4s linear infinite}@keyframes fall-92{43.656%{transform:translate(89.6895vw,43.656vh) scale(.0496)}to{transform:translate(92.4023vw,100vh) scale(.0496)}}.snow:nth-child(93){opacity:1.7168;transform:translate(58.4011vw,-10px) scale(.6555);animation:fall-93 23s -10s linear infinite}@keyframes fall-93{34.38%{transform:translate(48.9901vw,34.38vh) scale(.6555)}to{transform:translate(53.6956vw,100vh) scale(.6555)}}.snow:nth-child(94){opacity:.196;transform:translate(89.1606vw,-10px) scale(.9942);animation:fall-94 28s -15s linear infinite}@keyframes fall-94{48.075%{transform:translate(86.8247vw,48.075vh) scale(.9942)}to{transform:translate(87.99265vw,100vh) scale(.9942)}}.snow:nth-child(95){opacity:.2012;transform:translate(53.9359vw,-10px) scale(.512);animation:fall-95 26s -7s linear infinite}@keyframes fall-95{58.201%{transform:translate(54.9232vw,58.201vh) scale(.512)}to{transform:translate(54.42955vw,100vh) scale(.512)}}.snow:nth-child(96){opacity:1.6974;transform:translate(15.4489vw,-10px) scale(.8076);animation:fall-96 29s -28s linear infinite}@keyframes fall-96{71.859%{transform:translate(14.1967vw,71.859vh) scale(.8076)}to{transform:translate(14.8228vw,100vh) scale(.8076)}}.snow:nth-child(97){opacity:.7732;transform:translate(14.2167vw,-10px) scale(.231);animation:fall-97 15s -18s linear infinite}@keyframes fall-97{33.67%{transform:translate(24.1204vw,33.67vh) scale(.231)}to{transform:translate(19.16855vw,100vh) scale(.231)}}.snow:nth-child(98){opacity:1.9488;transform:translate(99.6295vw,-10px) scale(.2066);animation:fall-98 26s -29s linear infinite}@keyframes fall-98{49.605%{transform:translate(96.7967vw,49.605vh) scale(.2066)}to{transform:translate(98.2131vw,100vh) scale(.2066)}}.snow:nth-child(99){opacity:1.0894;transform:translate(84.3043vw,-10px) scale(.3282);animation:fall-99 24s -16s linear infinite}@keyframes fall-99{64.899%{transform:translate(80.479vw,64.899vh) scale(.3282)}to{transform:translate(82.39165vw,100vh) scale(.3282)}}.snow:nth-child(100){opacity:.4832;transform:translate(97.7312vw,-10px) scale(.6732);animation:fall-100 28s -26s linear infinite}@keyframes fall-100{53.077%{transform:translate(97.6403vw,53.077vh) scale(.6732)}to{transform:translate(97.68575vw,100vh) scale(.6732)}}.snow:nth-child(101){opacity:.0056;transform:translate(26.8789vw,-10px) scale(.8239);animation:fall-101 17s -15s linear infinite}@keyframes fall-101{50.003%{transform:translate(25.6364vw,50.003vh) scale(.8239)}to{transform:translate(26.25765vw,100vh) scale(.8239)}}.snow:nth-child(102){opacity:.3298;transform:translate(86.6979vw,-10px) scale(.9603);animation:fall-102 22s -4s linear infinite}@keyframes fall-102{70.052%{transform:translate(77.5499vw,70.052vh) scale(.9603)}to{transform:translate(82.1239vw,100vh) scale(.9603)}}.snow:nth-child(103){opacity:1.8994;transform:translate(13.0629vw,-10px) scale(.0352);animation:fall-103 23s -24s linear infinite}@keyframes fall-103{79.617%{transform:translate(7.02vw,79.617vh) scale(.0352)}to{transform:translate(10.04145vw,100vh) scale(.0352)}}.snow:nth-child(104){opacity:1.2464;transform:translate(85.1871vw,-10px) scale(.1882);animation:fall-104 16s -2s linear infinite}@keyframes fall-104{75.512%{transform:translate(89.9625vw,75.512vh) scale(.1882)}to{transform:translate(87.5748vw,100vh) scale(.1882)}}.snow:nth-child(105){opacity:1.118;transform:translate(14.5855vw,-10px) scale(.2605);animation:fall-105 21s -25s linear infinite}@keyframes fall-105{35.485%{transform:translate(14.3886vw,35.485vh) scale(.2605)}to{transform:translate(14.48705vw,100vh) scale(.2605)}}.snow:nth-child(106){opacity:1.0584;transform:translate(12.1007vw,-10px) scale(.8826);animation:fall-106 12s -5s linear infinite}@keyframes fall-106{70.865%{transform:translate(7.0126vw,70.865vh) scale(.8826)}to{transform:translate(9.55665vw,100vh) scale(.8826)}}.snow:nth-child(107){opacity:1.0196;transform:translate(38.8028vw,-10px) scale(.0638);animation:fall-107 13s -3s linear infinite}@keyframes fall-107{30.894%{transform:translate(38.6484vw,30.894vh) scale(.0638)}to{transform:translate(38.7256vw,100vh) scale(.0638)}}.snow:nth-child(108){opacity:1;transform:translate(78.8535vw,-10px) scale(.6304);animation:fall-108 25s -19s linear infinite}@keyframes fall-108{72.434%{transform:translate(85.6889vw,72.434vh) scale(.6304)}to{transform:translate(82.2712vw,100vh) scale(.6304)}}.snow:nth-child(109){opacity:1.6456;transform:translate(6.1915vw,-10px) scale(.4015);animation:fall-109 19s -27s linear infinite}@keyframes fall-109{31.369%{transform:translate(2.9173vw,31.369vh) scale(.4015)}to{transform:translate(4.5544vw,100vh) scale(.4015)}}.snow:nth-child(110){opacity:1.1896;transform:translate(32.9461vw,-10px) scale(.6922);animation:fall-110 25s -10s linear infinite}@keyframes fall-110{43.727%{transform:translate(33.8856vw,43.727vh) scale(.6922)}to{transform:translate(33.41585vw,100vh) scale(.6922)}}.snow:nth-child(111){opacity:.0342;transform:translate(43.0613vw,-10px) scale(.4963);animation:fall-111 30s -10s linear infinite}@keyframes fall-111{37.162%{transform:translate(34.1475vw,37.162vh) scale(.4963)}to{transform:translate(38.6044vw,100vh) scale(.4963)}}.snow:nth-child(112){opacity:1.8864;transform:translate(72.0244vw,-10px) scale(.2613);animation:fall-112 16s -22s linear infinite}@keyframes fall-112{51.293%{transform:translate(67.3029vw,51.293vh) scale(.2613)}to{transform:translate(69.66365vw,100vh) scale(.2613)}}.snow:nth-child(113){opacity:.6004;transform:translate(16.1388vw,-10px) scale(.3555);animation:fall-113 24s -22s linear infinite}@keyframes fall-113{53.403%{transform:translate(16.3756vw,53.403vh) scale(.3555)}to{transform:translate(16.2572vw,100vh) scale(.3555)}}.snow:nth-child(114){opacity:1.8028;transform:translate(90.7548vw,-10px) scale(.3462);animation:fall-114 10s -8s linear infinite}@keyframes fall-114{54.527%{transform:translate(88.9981vw,54.527vh) scale(.3462)}to{transform:translate(89.87645vw,100vh) scale(.3462)}}.snow:nth-child(115){opacity:1.5314;transform:translate(28.8828vw,-10px) scale(.4679);animation:fall-115 22s -27s linear infinite}@keyframes fall-115{35.317%{transform:translate(29.4857vw,35.317vh) scale(.4679)}to{transform:translate(29.18425vw,100vh) scale(.4679)}}.snow:nth-child(116){opacity:1.7744;transform:translate(59.2498vw,-10px) scale(.026);animation:fall-116 18s -23s linear infinite}@keyframes fall-116{65.822%{transform:translate(49.3674vw,65.822vh) scale(.026)}to{transform:translate(54.3086vw,100vh) scale(.026)}}.snow:nth-child(117){opacity:.9634;transform:translate(20.7289vw,-10px) scale(.7736);animation:fall-117 13s -12s linear infinite}@keyframes fall-117{42.576%{transform:translate(13.9552vw,42.576vh) scale(.7736)}to{transform:translate(17.34205vw,100vh) scale(.7736)}}.snow:nth-child(118){opacity:1.5706;transform:translate(73.277vw,-10px) scale(.9461);animation:fall-118 10s -16s linear infinite}@keyframes fall-118{37.484%{transform:translate(69.7184vw,37.484vh) scale(.9461)}to{transform:translate(71.4977vw,100vh) scale(.9461)}}.snow:nth-child(119){opacity:.3188;transform:translate(64.7924vw,-10px) scale(.1357);animation:fall-119 23s -6s linear infinite}@keyframes fall-119{62.193%{transform:translate(74.6312vw,62.193vh) scale(.1357)}to{transform:translate(69.7118vw,100vh) scale(.1357)}}.snow:nth-child(120){opacity:1.5824;transform:translate(97.6801vw,-10px) scale(.329);animation:fall-120 13s -6s linear infinite}@keyframes fall-120{56.509%{transform:translate(100.648vw,56.509vh) scale(.329)}to{transform:translate(99.16405vw,100vh) scale(.329)}}.snow:nth-child(121){opacity:1.306;transform:translate(88.0387vw,-10px) scale(.3391);animation:fall-121 13s -19s linear infinite}@keyframes fall-121{57.087%{transform:translate(85.7102vw,57.087vh) scale(.3391)}to{transform:translate(86.87445vw,100vh) scale(.3391)}}.snow:nth-child(122){opacity:.4746;transform:translate(7.0496vw,-10px) scale(.9577);animation:fall-122 11s -4s linear infinite}@keyframes fall-122{56.164%{transform:translate(.7483vw,56.164vh) scale(.9577)}to{transform:translate(3.89895vw,100vh) scale(.9577)}}.snow:nth-child(123){opacity:1.7422;transform:translate(24.3248vw,-10px) scale(.304);animation:fall-123 24s -2s linear infinite}@keyframes fall-123{42.74%{transform:translate(15.2253vw,42.74vh) scale(.304)}to{transform:translate(19.77505vw,100vh) scale(.304)}}.snow:nth-child(124){opacity:1.8408;transform:translate(17.0275vw,-10px) scale(.8514);animation:fall-124 12s -30s linear infinite}@keyframes fall-124{39.632%{transform:translate(21.7871vw,39.632vh) scale(.8514)}to{transform:translate(19.4073vw,100vh) scale(.8514)}}.snow:nth-child(125){opacity:1.0592;transform:translate(49.3298vw,-10px) scale(.0751);animation:fall-125 20s -18s linear infinite}@keyframes fall-125{55.48%{transform:translate(56.6129vw,55.48vh) scale(.0751)}to{transform:translate(52.97135vw,100vh) scale(.0751)}}.snow:nth-child(126){opacity:.911;transform:translate(79.6766vw,-10px) scale(.0088);animation:fall-126 21s -22s linear infinite}@keyframes fall-126{52.954%{transform:translate(80.0924vw,52.954vh) scale(.0088)}to{transform:translate(79.8845vw,100vh) scale(.0088)}}.snow:nth-child(127){opacity:.6072;transform:translate(77.9881vw,-10px) scale(.5558);animation:fall-127 27s -17s linear infinite}@keyframes fall-127{73.46%{transform:translate(82.3944vw,73.46vh) scale(.5558)}to{transform:translate(80.19125vw,100vh) scale(.5558)}}.snow:nth-child(128){opacity:1.1682;transform:translate(99.5685vw,-10px) scale(.3073);animation:fall-128 27s -19s linear infinite}@keyframes fall-128{72.359%{transform:translate(97.1888vw,72.359vh) scale(.3073)}to{transform:translate(98.37865vw,100vh) scale(.3073)}}.snow:nth-child(129){opacity:1.1052;transform:translate(52.0456vw,-10px) scale(.7634);animation:fall-129 24s -13s linear infinite}@keyframes fall-129{34.431%{transform:translate(50.458vw,34.431vh) scale(.7634)}to{transform:translate(51.2518vw,100vh) scale(.7634)}}.snow:nth-child(130){opacity:.7908;transform:translate(73.2629vw,-10px) scale(.4213);animation:fall-130 13s -5s linear infinite}@keyframes fall-130{38.351%{transform:translate(64.013vw,38.351vh) scale(.4213)}to{transform:translate(68.63795vw,100vh) scale(.4213)}}.snow:nth-child(131){opacity:1.1644;transform:translate(50.3968vw,-10px) scale(.5917);animation:fall-131 29s -17s linear infinite}@keyframes fall-131{58.006%{transform:translate(40.4615vw,58.006vh) scale(.5917)}to{transform:translate(45.42915vw,100vh) scale(.5917)}}.snow:nth-child(132){opacity:.3408;transform:translate(72.3206vw,-10px) scale(.6484);animation:fall-132 24s -13s linear infinite}@keyframes fall-132{66.749%{transform:translate(63.3684vw,66.749vh) scale(.6484)}to{transform:translate(67.8445vw,100vh) scale(.6484)}}.snow:nth-child(133){opacity:.7686;transform:translate(15.4761vw,-10px) scale(.6054);animation:fall-133 13s -2s linear infinite}@keyframes fall-133{78.831%{transform:translate(8.7088vw,78.831vh) scale(.6054)}to{transform:translate(12.09245vw,100vh) scale(.6054)}}.snow:nth-child(134){opacity:.7896;transform:translate(54.7404vw,-10px) scale(.3226);animation:fall-134 17s -30s linear infinite}@keyframes fall-134{48.904%{transform:translate(51.051vw,48.904vh) scale(.3226)}to{transform:translate(52.8957vw,100vh) scale(.3226)}}.snow:nth-child(135){opacity:1.1984;transform:translate(21.182vw,-10px) scale(.4897);animation:fall-135 25s -27s linear infinite}@keyframes fall-135{78.829%{transform:translate(29.1618vw,78.829vh) scale(.4897)}to{transform:translate(25.1719vw,100vh) scale(.4897)}}.snow:nth-child(136){opacity:1.3736;transform:translate(95.5744vw,-10px) scale(.0527);animation:fall-136 17s -28s linear infinite}@keyframes fall-136{37.9%{transform:translate(88.3309vw,37.9vh) scale(.0527)}to{transform:translate(91.95265vw,100vh) scale(.0527)}}.snow:nth-child(137){opacity:.102;transform:translate(99.9876vw,-10px) scale(.8396);animation:fall-137 20s -9s linear infinite}@keyframes fall-137{32.324%{transform:translate(107.1251vw,32.324vh) scale(.8396)}to{transform:translate(103.55635vw,100vh) scale(.8396)}}.snow:nth-child(138){opacity:.2498;transform:translate(12.5027vw,-10px) scale(.6602);animation:fall-138 15s -10s linear infinite}@keyframes fall-138{79.911%{transform:translate(8.117vw,79.911vh) scale(.6602)}to{transform:translate(10.30985vw,100vh) scale(.6602)}}.snow:nth-child(139){opacity:.1052;transform:translate(53.1097vw,-10px) scale(.5893);animation:fall-139 14s -4s linear infinite}@keyframes fall-139{76.098%{transform:translate(59.8534vw,76.098vh) scale(.5893)}to{transform:translate(56.48155vw,100vh) scale(.5893)}}.snow:nth-child(140){opacity:.3554;transform:translate(13.7207vw,-10px) scale(.0338);animation:fall-140 29s -22s linear infinite}@keyframes fall-140{69.238%{transform:translate(11.2034vw,69.238vh) scale(.0338)}to{transform:translate(12.46205vw,100vh) scale(.0338)}}.snow:nth-child(141){opacity:.2748;transform:translate(29.5382vw,-10px) scale(.807);animation:fall-141 18s -6s linear infinite}@keyframes fall-141{65.798%{transform:translate(25.3528vw,65.798vh) scale(.807)}to{transform:translate(27.4455vw,100vh) scale(.807)}}.snow:nth-child(142){opacity:.554;transform:translate(49.2606vw,-10px) scale(.3007);animation:fall-142 21s -10s linear infinite}@keyframes fall-142{42.772%{transform:translate(55.1784vw,42.772vh) scale(.3007)}to{transform:translate(52.2195vw,100vh) scale(.3007)}}.snow:nth-child(143){opacity:.4572;transform:translate(77.4059vw,-10px) scale(.5606);animation:fall-143 12s -26s linear infinite}@keyframes fall-143{74.364%{transform:translate(77.3771vw,74.364vh) scale(.5606)}to{transform:translate(77.3915vw,100vh) scale(.5606)}}.snow:nth-child(144){opacity:1.4958;transform:translate(10.5891vw,-10px) scale(.8884);animation:fall-144 22s -18s linear infinite}@keyframes fall-144{74.011%{transform:translate(5.7802vw,74.011vh) scale(.8884)}to{transform:translate(8.18465vw,100vh) scale(.8884)}}.snow:nth-child(145){opacity:1.3224;transform:translate(53.1401vw,-10px) scale(.5875);animation:fall-145 13s -4s linear infinite}@keyframes fall-145{57.23%{transform:translate(54.486vw,57.23vh) scale(.5875)}to{transform:translate(53.81305vw,100vh) scale(.5875)}}.snow:nth-child(146){opacity:.4118;transform:translate(25.5562vw,-10px) scale(.8112);animation:fall-146 13s -24s linear infinite}@keyframes fall-146{75.751%{transform:translate(27.4346vw,75.751vh) scale(.8112)}to{transform:translate(26.4954vw,100vh) scale(.8112)}}.snow:nth-child(147){opacity:.4794;transform:translate(12.0612vw,-10px) scale(.2913);animation:fall-147 18s -2s linear infinite}@keyframes fall-147{54.85%{transform:translate(8.5675vw,54.85vh) scale(.2913)}to{transform:translate(10.31435vw,100vh) scale(.2913)}}.snow:nth-child(148){opacity:.3538;transform:translate(97.7511vw,-10px) scale(.2977);animation:fall-148 19s -18s linear infinite}@keyframes fall-148{48.386%{transform:translate(97.2266vw,48.386vh) scale(.2977)}to{transform:translate(97.48885vw,100vh) scale(.2977)}}.snow:nth-child(149){opacity:.6946;transform:translate(5.1346vw,-10px) scale(.4726);animation:fall-149 22s -2s linear infinite}@keyframes fall-149{79.469%{transform:translate(6.3975vw,79.469vh) scale(.4726)}to{transform:translate(5.76605vw,100vh) scale(.4726)}}.snow:nth-child(150){opacity:1.8898;transform:translate(86.4075vw,-10px) scale(.7179);animation:fall-150 10s -22s linear infinite}@keyframes fall-150{63.136%{transform:translate(78.4782vw,63.136vh) scale(.7179)}to{transform:translate(82.44285vw,100vh) scale(.7179)}}.snow:nth-child(151){opacity:.3798;transform:translate(83.0107vw,-10px) scale(.156);animation:fall-151 23s -19s linear infinite}@keyframes fall-151{67.937%{transform:translate(78.3359vw,67.937vh) scale(.156)}to{transform:translate(80.6733vw,100vh) scale(.156)}}.snow:nth-child(152){opacity:1.587;transform:translate(61.7615vw,-10px) scale(.1108);animation:fall-152 21s -11s linear infinite}@keyframes fall-152{52.48%{transform:translate(55.5377vw,52.48vh) scale(.1108)}to{transform:translate(58.6496vw,100vh) scale(.1108)}}.snow:nth-child(153){opacity:.28;transform:translate(41.0139vw,-10px) scale(.7614);animation:fall-153 20s -19s linear infinite}@keyframes fall-153{45.647%{transform:translate(31.6033vw,45.647vh) scale(.7614)}to{transform:translate(36.3086vw,100vh) scale(.7614)}}.snow:nth-child(154){opacity:1.6574;transform:translate(83.6853vw,-10px) scale(.5243);animation:fall-154 29s -15s linear infinite}@keyframes fall-154{37.111%{transform:translate(75.375vw,37.111vh) scale(.5243)}to{transform:translate(79.53015vw,100vh) scale(.5243)}}.snow:nth-child(155){opacity:.3822;transform:translate(79.047vw,-10px) scale(.4528);animation:fall-155 24s -20s linear infinite}@keyframes fall-155{58.116%{transform:translate(81.0559vw,58.116vh) scale(.4528)}to{transform:translate(80.05145vw,100vh) scale(.4528)}}.snow:nth-child(156){opacity:1.1608;transform:translate(60.0394vw,-10px) scale(.5433);animation:fall-156 22s -30s linear infinite}@keyframes fall-156{55.408%{transform:translate(52.3013vw,55.408vh) scale(.5433)}to{transform:translate(56.17035vw,100vh) scale(.5433)}}.snow:nth-child(157){opacity:.7588;transform:translate(57.4584vw,-10px) scale(.9357);animation:fall-157 14s -12s linear infinite}@keyframes fall-157{47.459%{transform:translate(58.8609vw,47.459vh) scale(.9357)}to{transform:translate(58.15965vw,100vh) scale(.9357)}}.snow:nth-child(158){opacity:1.2364;transform:translate(26.9062vw,-10px) scale(.9034);animation:fall-158 10s -9s linear infinite}@keyframes fall-158{74.929%{transform:translate(16.9437vw,74.929vh) scale(.9034)}to{transform:translate(21.92495vw,100vh) scale(.9034)}}.snow:nth-child(159){opacity:.3012;transform:translate(42.1111vw,-10px) scale(.7009);animation:fall-159 19s -19s linear infinite}@keyframes fall-159{66.992%{transform:translate(48.2835vw,66.992vh) scale(.7009)}to{transform:translate(45.1973vw,100vh) scale(.7009)}}.snow:nth-child(160){opacity:1.1236;transform:translate(17.6395vw,-10px) scale(.5386);animation:fall-160 27s -14s linear infinite}@keyframes fall-160{68.518%{transform:translate(8.3681vw,68.518vh) scale(.5386)}to{transform:translate(13.0038vw,100vh) scale(.5386)}}.snow:nth-child(161){opacity:1.0922;transform:translate(13.5557vw,-10px) scale(.9228);animation:fall-161 29s -7s linear infinite}@keyframes fall-161{77.369%{transform:translate(13.5087vw,77.369vh) scale(.9228)}to{transform:translate(13.5322vw,100vh) scale(.9228)}}.snow:nth-child(162){opacity:1.0738;transform:translate(99.9529vw,-10px) scale(.458);animation:fall-162 21s -17s linear infinite}@keyframes fall-162{52.665%{transform:translate(106.2027vw,52.665vh) scale(.458)}to{transform:translate(103.0778vw,100vh) scale(.458)}}.snow:nth-child(163){opacity:1.216;transform:translate(68.6504vw,-10px) scale(.5072);animation:fall-163 24s -25s linear infinite}@keyframes fall-163{34.39%{transform:translate(70.9717vw,34.39vh) scale(.5072)}to{transform:translate(69.81105vw,100vh) scale(.5072)}}.snow:nth-child(164){opacity:.0638;transform:translate(60.5718vw,-10px) scale(.188);animation:fall-164 27s -7s linear infinite}@keyframes fall-164{68.163%{transform:translate(53.3714vw,68.163vh) scale(.188)}to{transform:translate(56.9716vw,100vh) scale(.188)}}.snow:nth-child(165){opacity:1.6354;transform:translate(41.0587vw,-10px) scale(.0796);animation:fall-165 20s -25s linear infinite}@keyframes fall-165{51.475%{transform:translate(37.7093vw,51.475vh) scale(.0796)}to{transform:translate(39.384vw,100vh) scale(.0796)}}.snow:nth-child(166){opacity:1.106;transform:translate(48.3864vw,-10px) scale(.7404);animation:fall-166 27s -5s linear infinite}@keyframes fall-166{41.762%{transform:translate(57.0551vw,41.762vh) scale(.7404)}to{transform:translate(52.72075vw,100vh) scale(.7404)}}.snow:nth-child(167){opacity:1.3632;transform:translate(11.9151vw,-10px) scale(.7714);animation:fall-167 10s -28s linear infinite}@keyframes fall-167{58.996%{transform:translate(17.9084vw,58.996vh) scale(.7714)}to{transform:translate(14.91175vw,100vh) scale(.7714)}}.snow:nth-child(168){opacity:1.4336;transform:translate(30.4041vw,-10px) scale(.7509);animation:fall-168 20s -7s linear infinite}@keyframes fall-168{57.91%{transform:translate(26.0856vw,57.91vh) scale(.7509)}to{transform:translate(28.24485vw,100vh) scale(.7509)}}.snow:nth-child(169){opacity:.666;transform:translate(31.3893vw,-10px) scale(.9876);animation:fall-169 15s -3s linear infinite}@keyframes fall-169{33.442%{transform:translate(38.6083vw,33.442vh) scale(.9876)}to{transform:translate(34.9988vw,100vh) scale(.9876)}}.snow:nth-child(170){opacity:.3264;transform:translate(87.4169vw,-10px) scale(.49);animation:fall-170 17s -12s linear infinite}@keyframes fall-170{59.095%{transform:translate(84.0929vw,59.095vh) scale(.49)}to{transform:translate(85.7549vw,100vh) scale(.49)}}.snow:nth-child(171){opacity:.0726;transform:translate(14.2041vw,-10px) scale(.9607);animation:fall-171 21s -16s linear infinite}@keyframes fall-171{48.844%{transform:translate(18.9748vw,48.844vh) scale(.9607)}to{transform:translate(16.58945vw,100vh) scale(.9607)}}.snow:nth-child(172){opacity:1.9862;transform:translate(9.319vw,-10px) scale(.8956);animation:fall-172 27s -20s linear infinite}@keyframes fall-172{79.786%{transform:translate(.1813vw,79.786vh) scale(.8956)}to{transform:translate(4.75015vw,100vh) scale(.8956)}}.snow:nth-child(173){opacity:1.9228;transform:translate(89.7405vw,-10px) scale(.8099);animation:fall-173 20s -3s linear infinite}@keyframes fall-173{60.249%{transform:translate(86.1426vw,60.249vh) scale(.8099)}to{transform:translate(87.94155vw,100vh) scale(.8099)}}.snow:nth-child(174){opacity:1.1562;transform:translate(16.4411vw,-10px) scale(.9301);animation:fall-174 10s -17s linear infinite}@keyframes fall-174{71.242%{transform:translate(10.7853vw,71.242vh) scale(.9301)}to{transform:translate(13.6132vw,100vh) scale(.9301)}}.snow:nth-child(175){opacity:.2292;transform:translate(7.0594vw,-10px) scale(.5784);animation:fall-175 29s -30s linear infinite}@keyframes fall-175{61.58%{transform:translate(12.1833vw,61.58vh) scale(.5784)}to{transform:translate(9.62135vw,100vh) scale(.5784)}}.snow:nth-child(176){opacity:.3198;transform:translate(96.8622vw,-10px) scale(.9632);animation:fall-176 25s -17s linear infinite}@keyframes fall-176{43.689%{transform:translate(102.9644vw,43.689vh) scale(.9632)}to{transform:translate(99.9133vw,100vh) scale(.9632)}}.snow:nth-child(177){opacity:1.7764;transform:translate(43.9053vw,-10px) scale(.4704);animation:fall-177 30s -14s linear infinite}@keyframes fall-177{45.67%{transform:translate(46.5417vw,45.67vh) scale(.4704)}to{transform:translate(45.2235vw,100vh) scale(.4704)}}.snow:nth-child(178){opacity:.735;transform:translate(79.11vw,-10px) scale(.2623);animation:fall-178 22s -12s linear infinite}@keyframes fall-178{39.532%{transform:translate(82.1061vw,39.532vh) scale(.2623)}to{transform:translate(80.60805vw,100vh) scale(.2623)}}.snow:nth-child(179){opacity:.8644;transform:translate(71.8061vw,-10px) scale(.7799);animation:fall-179 26s -9s linear infinite}@keyframes fall-179{54.742%{transform:translate(69.8953vw,54.742vh) scale(.7799)}to{transform:translate(70.8507vw,100vh) scale(.7799)}}.snow:nth-child(180){opacity:1.7936;transform:translate(81.8748vw,-10px) scale(.8383);animation:fall-180 28s -30s linear infinite}@keyframes fall-180{41.805%{transform:translate(83.0682vw,41.805vh) scale(.8383)}to{transform:translate(82.4715vw,100vh) scale(.8383)}}.snow:nth-child(181){opacity:1.76;transform:translate(32.4558vw,-10px) scale(.122);animation:fall-181 19s -8s linear infinite}@keyframes fall-181{64.912%{transform:translate(29.5335vw,64.912vh) scale(.122)}to{transform:translate(30.99465vw,100vh) scale(.122)}}.snow:nth-child(182){opacity:1.9262;transform:translate(45.0277vw,-10px) scale(.6155);animation:fall-182 14s -19s linear infinite}@keyframes fall-182{33.155%{transform:translate(54.1342vw,33.155vh) scale(.6155)}to{transform:translate(49.58095vw,100vh) scale(.6155)}}.snow:nth-child(183){opacity:1.0536;transform:translate(21.2571vw,-10px) scale(.319);animation:fall-183 25s -10s linear infinite}@keyframes fall-183{60.605%{transform:translate(13.0484vw,60.605vh) scale(.319)}to{transform:translate(17.15275vw,100vh) scale(.319)}}.snow:nth-child(184){opacity:.8896;transform:translate(17.2244vw,-10px) scale(.4615);animation:fall-184 18s -16s linear infinite}@keyframes fall-184{52.643%{transform:translate(8.9749vw,52.643vh) scale(.4615)}to{transform:translate(13.09965vw,100vh) scale(.4615)}}.snow:nth-child(185){opacity:.8418;transform:translate(83.6459vw,-10px) scale(.8822);animation:fall-185 17s -15s linear infinite}@keyframes fall-185{51.585%{transform:translate(88.5982vw,51.585vh) scale(.8822)}to{transform:translate(86.12205vw,100vh) scale(.8822)}}.snow:nth-child(186){opacity:1.999;transform:translate(57.8158vw,-10px) scale(.5048);animation:fall-186 24s -19s linear infinite}@keyframes fall-186{52.646%{transform:translate(57.6259vw,52.646vh) scale(.5048)}to{transform:translate(57.72085vw,100vh) scale(.5048)}}.snow:nth-child(187){opacity:.2552;transform:translate(47.1137vw,-10px) scale(.7388);animation:fall-187 12s -11s linear infinite}@keyframes fall-187{50.595%{transform:translate(40.989vw,50.595vh) scale(.7388)}to{transform:translate(44.05135vw,100vh) scale(.7388)}}.snow:nth-child(188){opacity:1.6936;transform:translate(38.0726vw,-10px) scale(.9031);animation:fall-188 15s -24s linear infinite}@keyframes fall-188{70.176%{transform:translate(35.9181vw,70.176vh) scale(.9031)}to{transform:translate(36.99535vw,100vh) scale(.9031)}}.snow:nth-child(189){opacity:.912;transform:translate(80.4783vw,-10px) scale(.2611);animation:fall-189 14s -6s linear infinite}@keyframes fall-189{53.818%{transform:translate(89.9441vw,53.818vh) scale(.2611)}to{transform:translate(85.2112vw,100vh) scale(.2611)}}.snow:nth-child(190){opacity:.11;transform:translate(84.7416vw,-10px) scale(.6176);animation:fall-190 24s -8s linear infinite}@keyframes fall-190{30.444%{transform:translate(90.4139vw,30.444vh) scale(.6176)}to{transform:translate(87.57775vw,100vh) scale(.6176)}}.snow:nth-child(191){opacity:.765;transform:translate(98.3019vw,-10px) scale(.5157);animation:fall-191 23s -23s linear infinite}@keyframes fall-191{60.227%{transform:translate(98.2079vw,60.227vh) scale(.5157)}to{transform:translate(98.2549vw,100vh) scale(.5157)}}.snow:nth-child(192){opacity:1.9124;transform:translate(54.0532vw,-10px) scale(.167);animation:fall-192 16s -11s linear infinite}@keyframes fall-192{41.149%{transform:translate(61.575vw,41.149vh) scale(.167)}to{transform:translate(57.8141vw,100vh) scale(.167)}}.snow:nth-child(193){opacity:.1656;transform:translate(33.3537vw,-10px) scale(.7876);animation:fall-193 22s -14s linear infinite}@keyframes fall-193{55.16%{transform:translate(27.8499vw,55.16vh) scale(.7876)}to{transform:translate(30.6018vw,100vh) scale(.7876)}}.snow:nth-child(194){opacity:.2838;transform:translate(24.1668vw,-10px) scale(.9884);animation:fall-194 22s -2s linear infinite}@keyframes fall-194{37.419%{transform:translate(31.6572vw,37.419vh) scale(.9884)}to{transform:translate(27.912vw,100vh) scale(.9884)}}.snow:nth-child(195){opacity:.6176;transform:translate(90.3473vw,-10px) scale(.9211);animation:fall-195 28s -5s linear infinite}@keyframes fall-195{38.746%{transform:translate(83.2746vw,38.746vh) scale(.9211)}to{transform:translate(86.81095vw,100vh) scale(.9211)}}.snow:nth-child(196){opacity:1.4666;transform:translate(25.6574vw,-10px) scale(.6224);animation:fall-196 15s -28s linear infinite}@keyframes fall-196{60.403%{transform:translate(28.991vw,60.403vh) scale(.6224)}to{transform:translate(27.3242vw,100vh) scale(.6224)}}.snow:nth-child(197){opacity:.3332;transform:translate(32.5546vw,-10px) scale(.5294);animation:fall-197 19s -3s linear infinite}@keyframes fall-197{69.061%{transform:translate(41.3288vw,69.061vh) scale(.5294)}to{transform:translate(36.9417vw,100vh) scale(.5294)}}.snow:nth-child(198){opacity:.9072;transform:translate(18.7679vw,-10px) scale(.3353);animation:fall-198 23s -19s linear infinite}@keyframes fall-198{30.516%{transform:translate(24.9548vw,30.516vh) scale(.3353)}to{transform:translate(21.86135vw,100vh) scale(.3353)}}.snow:nth-child(199){opacity:1.2282;transform:translate(90.3233vw,-10px) scale(.3036);animation:fall-199 14s -4s linear infinite}@keyframes fall-199{34.462%{transform:translate(81.9848vw,34.462vh) scale(.3036)}to{transform:translate(86.15405vw,100vh) scale(.3036)}}.snow:nth-child(200){opacity:.791;transform:translate(3.7349vw,-10px) scale(.3093);animation:fall-200 21s -19s linear infinite}@keyframes fall-200{64.352%{transform:translate(10.0325vw,64.352vh) scale(.3093)}to{transform:translate(6.8837vw,100vh) scale(.3093)}}.snow:nth-child(201){opacity:1.1266;transform:translate(33.6436vw,-10px) scale(.7121);animation:fall-201 11s -7s linear infinite}@keyframes fall-201{45.126%{transform:translate(27.8482vw,45.126vh) scale(.7121)}to{transform:translate(30.7459vw,100vh) scale(.7121)}}.snow:nth-child(202){opacity:1.4308;transform:translate(50.881vw,-10px) scale(.4503);animation:fall-202 12s -7s linear infinite}@keyframes fall-202{33.135%{transform:translate(48.7569vw,33.135vh) scale(.4503)}to{transform:translate(49.81895vw,100vh) scale(.4503)}}.snow:nth-child(203){opacity:.9008;transform:translate(41.3794vw,-10px) scale(.1664);animation:fall-203 17s -2s linear infinite}@keyframes fall-203{41.449%{transform:translate(31.4763vw,41.449vh) scale(.1664)}to{transform:translate(36.42785vw,100vh) scale(.1664)}}.snow:nth-child(204){opacity:1.8566;transform:translate(45.4784vw,-10px) scale(.383);animation:fall-204 23s -7s linear infinite}@keyframes fall-204{64.551%{transform:translate(41.2248vw,64.551vh) scale(.383)}to{transform:translate(43.3516vw,100vh) scale(.383)}}.snow:nth-child(205){opacity:.5014;transform:translate(81.592vw,-10px) scale(.7123);animation:fall-205 12s -1s linear infinite}@keyframes fall-205{42.619%{transform:translate(81.1985vw,42.619vh) scale(.7123)}to{transform:translate(81.39525vw,100vh) scale(.7123)}}.snow:nth-child(206){opacity:.6738;transform:translate(74.184vw,-10px) scale(.9107);animation:fall-206 26s -1s linear infinite}@keyframes fall-206{44.558%{transform:translate(74.2365vw,44.558vh) scale(.9107)}to{transform:translate(74.21025vw,100vh) scale(.9107)}}.snow:nth-child(207){opacity:.2228;transform:translate(49.9268vw,-10px) scale(.7791);animation:fall-207 15s -13s linear infinite}@keyframes fall-207{54.049%{transform:translate(55.9772vw,54.049vh) scale(.7791)}to{transform:translate(52.952vw,100vh) scale(.7791)}}.snow:nth-child(208){opacity:.198;transform:translate(85.7399vw,-10px) scale(.3281);animation:fall-208 10s -26s linear infinite}@keyframes fall-208{47.94%{transform:translate(88.9303vw,47.94vh) scale(.3281)}to{transform:translate(87.3351vw,100vh) scale(.3281)}}.snow:nth-child(209){opacity:.9474;transform:translate(46.4348vw,-10px) scale(.3245);animation:fall-209 11s -3s linear infinite}@keyframes fall-209{47.304%{transform:translate(43.4828vw,47.304vh) scale(.3245)}to{transform:translate(44.9588vw,100vh) scale(.3245)}}.snow:nth-child(210){opacity:1.2456;transform:translate(21.4573vw,-10px) scale(.8261);animation:fall-210 30s -23s linear infinite}@keyframes fall-210{61.916%{transform:translate(23.7223vw,61.916vh) scale(.8261)}to{transform:translate(22.5898vw,100vh) scale(.8261)}}.snow:nth-child(211){opacity:.5624;transform:translate(97.0851vw,-10px) scale(.7115);animation:fall-211 22s -19s linear infinite}@keyframes fall-211{31.998%{transform:translate(94.0568vw,31.998vh) scale(.7115)}to{transform:translate(95.57095vw,100vh) scale(.7115)}}.snow:nth-child(212){opacity:.8974;transform:translate(70.8155vw,-10px) scale(.5473);animation:fall-212 28s -7s linear infinite}@keyframes fall-212{40.746%{transform:translate(68.1754vw,40.746vh) scale(.5473)}to{transform:translate(69.49545vw,100vh) scale(.5473)}}.snow:nth-child(213){opacity:1.6722;transform:translate(81.6781vw,-10px) scale(.3473);animation:fall-213 17s -5s linear infinite}@keyframes fall-213{44.952%{transform:translate(84.4746vw,44.952vh) scale(.3473)}to{transform:translate(83.07635vw,100vh) scale(.3473)}}.snow:nth-child(214){opacity:1.5564;transform:translate(81.3356vw,-10px) scale(.0396);animation:fall-214 29s -25s linear infinite}@keyframes fall-214{36.505%{transform:translate(77.894vw,36.505vh) scale(.0396)}to{transform:translate(79.6148vw,100vh) scale(.0396)}}.snow:nth-child(215){opacity:.1624;transform:translate(90.2041vw,-10px) scale(.5176);animation:fall-215 21s -22s linear infinite}@keyframes fall-215{38.905%{transform:translate(89.8746vw,38.905vh) scale(.5176)}to{transform:translate(90.03935vw,100vh) scale(.5176)}}.snow:nth-child(216){opacity:1.8844;transform:translate(4.7511vw,-10px) scale(.8259);animation:fall-216 26s -25s linear infinite}@keyframes fall-216{46.107%{transform:translate(-1.1649vw,46.107vh) scale(.8259)}to{transform:translate(1.7931vw,100vh) scale(.8259)}}.snow:nth-child(217){opacity:.616;transform:translate(62.8761vw,-10px) scale(.9195);animation:fall-217 15s -11s linear infinite}@keyframes fall-217{52.512%{transform:translate(57.104vw,52.512vh) scale(.9195)}to{transform:translate(59.99005vw,100vh) scale(.9195)}}.snow:nth-child(218){opacity:1.8996;transform:translate(51.8475vw,-10px) scale(.6658);animation:fall-218 17s -18s linear infinite}@keyframes fall-218{39.952%{transform:translate(57.2262vw,39.952vh) scale(.6658)}to{transform:translate(54.53685vw,100vh) scale(.6658)}}.snow:nth-child(219){opacity:.1494;transform:translate(75.9128vw,-10px) scale(.0002);animation:fall-219 20s -25s linear infinite}@keyframes fall-219{63.964%{transform:translate(78.4853vw,63.964vh) scale(.0002)}to{transform:translate(77.19905vw,100vh) scale(.0002)}}.snow:nth-child(220){opacity:.4998;transform:translate(8.385vw,-10px) scale(.9005);animation:fall-220 19s -30s linear infinite}@keyframes fall-220{62.056%{transform:translate(12.6724vw,62.056vh) scale(.9005)}to{transform:translate(10.5287vw,100vh) scale(.9005)}}.snow:nth-child(221){opacity:.814;transform:translate(56.1336vw,-10px) scale(.2006);animation:fall-221 16s -11s linear infinite}@keyframes fall-221{43.75%{transform:translate(55.1874vw,43.75vh) scale(.2006)}to{transform:translate(55.6605vw,100vh) scale(.2006)}}.snow:nth-child(222){opacity:1.915;transform:translate(41.8782vw,-10px) scale(.1775);animation:fall-222 24s -8s linear infinite}@keyframes fall-222{72.37%{transform:translate(40.1182vw,72.37vh) scale(.1775)}to{transform:translate(40.9982vw,100vh) scale(.1775)}}.snow:nth-child(223){opacity:.0208;transform:translate(82.2416vw,-10px) scale(.9095);animation:fall-223 28s -24s linear infinite}@keyframes fall-223{72.886%{transform:translate(79.7315vw,72.886vh) scale(.9095)}to{transform:translate(80.98655vw,100vh) scale(.9095)}}.snow:nth-child(224){opacity:.847;transform:translate(77.3893vw,-10px) scale(.3602);animation:fall-224 14s -14s linear infinite}@keyframes fall-224{42.48%{transform:translate(68.9265vw,42.48vh) scale(.3602)}to{transform:translate(73.1579vw,100vh) scale(.3602)}}.snow:nth-child(225){opacity:1.0922;transform:translate(78.4776vw,-10px) scale(.1685);animation:fall-225 22s -11s linear infinite}@keyframes fall-225{47.379%{transform:translate(73.5305vw,47.379vh) scale(.1685)}to{transform:translate(76.00405vw,100vh) scale(.1685)}}.snow:nth-child(226){opacity:1.8842;transform:translate(77.5466vw,-10px) scale(.3267);animation:fall-226 14s -5s linear infinite}@keyframes fall-226{48.611%{transform:translate(83.394vw,48.611vh) scale(.3267)}to{transform:translate(80.4703vw,100vh) scale(.3267)}}.snow:nth-child(227){opacity:1.9716;transform:translate(37.7394vw,-10px) scale(.8319);animation:fall-227 10s -28s linear infinite}@keyframes fall-227{73.13%{transform:translate(45.822vw,73.13vh) scale(.8319)}to{transform:translate(41.7807vw,100vh) scale(.8319)}}.snow:nth-child(228){opacity:.8844;transform:translate(82.2784vw,-10px) scale(.8384);animation:fall-228 12s -29s linear infinite}@keyframes fall-228{59.4%{transform:translate(85.7601vw,59.4vh) scale(.8384)}to{transform:translate(84.01925vw,100vh) scale(.8384)}}.snow:nth-child(229){opacity:1.0508;transform:translate(50.2329vw,-10px) scale(.2145);animation:fall-229 17s -26s linear infinite}@keyframes fall-229{55.314%{transform:translate(54.7883vw,55.314vh) scale(.2145)}to{transform:translate(52.5106vw,100vh) scale(.2145)}}.snow:nth-child(230){opacity:.119;transform:translate(71.1525vw,-10px) scale(.3961);animation:fall-230 29s -11s linear infinite}@keyframes fall-230{61.952%{transform:translate(80.026vw,61.952vh) scale(.3961)}to{transform:translate(75.58925vw,100vh) scale(.3961)}}.snow:nth-child(231){opacity:.7726;transform:translate(87.1558vw,-10px) scale(.1876);animation:fall-231 20s -11s linear infinite}@keyframes fall-231{72.382%{transform:translate(87.7058vw,72.382vh) scale(.1876)}to{transform:translate(87.4308vw,100vh) scale(.1876)}}.snow:nth-child(232){opacity:.9624;transform:translate(99.6896vw,-10px) scale(.775);animation:fall-232 19s -20s linear infinite}@keyframes fall-232{79.846%{transform:translate(102.0786vw,79.846vh) scale(.775)}to{transform:translate(100.8841vw,100vh) scale(.775)}}.snow:nth-child(233){opacity:1.1672;transform:translate(69.4967vw,-10px) scale(.608);animation:fall-233 27s -22s linear infinite}@keyframes fall-233{67.024%{transform:translate(78.1696vw,67.024vh) scale(.608)}to{transform:translate(73.83315vw,100vh) scale(.608)}}.snow:nth-child(234){opacity:1.8296;transform:translate(4.1936vw,-10px) scale(.5821);animation:fall-234 23s -13s linear infinite}@keyframes fall-234{59.038%{transform:translate(12.5758vw,59.038vh) scale(.5821)}to{transform:translate(8.3847vw,100vh) scale(.5821)}}.snow:nth-child(235){opacity:1.2108;transform:translate(25.7108vw,-10px) scale(.7692);animation:fall-235 12s -27s linear infinite}@keyframes fall-235{77.058%{transform:translate(21.8741vw,77.058vh) scale(.7692)}to{transform:translate(23.79245vw,100vh) scale(.7692)}}.snow:nth-child(236){opacity:1.2952;transform:translate(41.4495vw,-10px) scale(.3718);animation:fall-236 28s -10s linear infinite}@keyframes fall-236{46.321%{transform:translate(34.7813vw,46.321vh) scale(.3718)}to{transform:translate(38.1154vw,100vh) scale(.3718)}}.snow:nth-child(237){opacity:.9214;transform:translate(91.4236vw,-10px) scale(.0002);animation:fall-237 13s -6s linear infinite}@keyframes fall-237{53.469%{transform:translate(93.8576vw,53.469vh) scale(.0002)}to{transform:translate(92.6406vw,100vh) scale(.0002)}}.snow:nth-child(238){opacity:.79;transform:translate(70.4043vw,-10px) scale(.1699);animation:fall-238 26s -8s linear infinite}@keyframes fall-238{34.037%{transform:translate(70.8487vw,34.037vh) scale(.1699)}to{transform:translate(70.6265vw,100vh) scale(.1699)}}.snow:nth-child(239){opacity:.7934;transform:translate(29.3942vw,-10px) scale(.6299);animation:fall-239 27s -29s linear infinite}@keyframes fall-239{50.216%{transform:translate(23.3883vw,50.216vh) scale(.6299)}to{transform:translate(26.39125vw,100vh) scale(.6299)}}.snow:nth-child(240){opacity:1.7438;transform:translate(94.9186vw,-10px) scale(.4147);animation:fall-240 18s -17s linear infinite}@keyframes fall-240{38.157%{transform:translate(94.7492vw,38.157vh) scale(.4147)}to{transform:translate(94.8339vw,100vh) scale(.4147)}}.snow:nth-child(241){opacity:.8298;transform:translate(57.1107vw,-10px) scale(.9473);animation:fall-241 17s -11s linear infinite}@keyframes fall-241{66.75%{transform:translate(56.6889vw,66.75vh) scale(.9473)}to{transform:translate(56.8998vw,100vh) scale(.9473)}}.snow:nth-child(242){opacity:.605;transform:translate(92.7213vw,-10px) scale(.5735);animation:fall-242 10s -1s linear infinite}@keyframes fall-242{71.693%{transform:translate(100.5679vw,71.693vh) scale(.5735)}to{transform:translate(96.6446vw,100vh) scale(.5735)}}.snow:nth-child(243){opacity:.5748;transform:translate(41.4855vw,-10px) scale(.9107);animation:fall-243 15s -19s linear infinite}@keyframes fall-243{53.435%{transform:translate(44.9626vw,53.435vh) scale(.9107)}to{transform:translate(43.22405vw,100vh) scale(.9107)}}.snow:nth-child(244){opacity:.1732;transform:translate(34.0942vw,-10px) scale(.1132);animation:fall-244 15s -12s linear infinite}@keyframes fall-244{49.08%{transform:translate(36.9031vw,49.08vh) scale(.1132)}to{transform:translate(35.49865vw,100vh) scale(.1132)}}.snow:nth-child(245){opacity:1.911;transform:translate(48.3361vw,-10px) scale(.0404);animation:fall-245 10s -13s linear infinite}@keyframes fall-245{64.754%{transform:translate(47.7501vw,64.754vh) scale(.0404)}to{transform:translate(48.0431vw,100vh) scale(.0404)}}.snow:nth-child(246){opacity:1.7732;transform:translate(23.4822vw,-10px) scale(.9211);animation:fall-246 12s -13s linear infinite}@keyframes fall-246{45.224%{transform:translate(26.7893vw,45.224vh) scale(.9211)}to{transform:translate(25.13575vw,100vh) scale(.9211)}}.snow:nth-child(247){opacity:.9754;transform:translate(50.5777vw,-10px) scale(.723);animation:fall-247 29s -11s linear infinite}@keyframes fall-247{55.482%{transform:translate(56.0877vw,55.482vh) scale(.723)}to{transform:translate(53.3327vw,100vh) scale(.723)}}.snow:nth-child(248){opacity:1.3924;transform:translate(85.5497vw,-10px) scale(.7559);animation:fall-248 21s -9s linear infinite}@keyframes fall-248{48.67%{transform:translate(83.7458vw,48.67vh) scale(.7559)}to{transform:translate(84.64775vw,100vh) scale(.7559)}}.snow:nth-child(249){opacity:1.9892;transform:translate(79.0776vw,-10px) scale(.9088);animation:fall-249 19s -19s linear infinite}@keyframes fall-249{75.939%{transform:translate(79.4673vw,75.939vh) scale(.9088)}to{transform:translate(79.27245vw,100vh) scale(.9088)}}.snow:nth-child(250){opacity:.9246;transform:translate(70.3488vw,-10px) scale(.1722);animation:fall-250 26s -12s linear infinite}@keyframes fall-250{79.306%{transform:translate(78.8123vw,79.306vh) scale(.1722)}to{transform:translate(74.58055vw,100vh) scale(.1722)}}.snow:nth-child(251){opacity:.5386;transform:translate(21.1146vw,-10px) scale(.8148);animation:fall-251 24s -28s linear infinite}@keyframes fall-251{67.018%{transform:translate(22.9508vw,67.018vh) scale(.8148)}to{transform:translate(22.0327vw,100vh) scale(.8148)}}.snow:nth-child(252){opacity:1.8186;transform:translate(20.7703vw,-10px) scale(.8803);animation:fall-252 14s -12s linear infinite}@keyframes fall-252{64.594%{transform:translate(15.3944vw,64.594vh) scale(.8803)}to{transform:translate(18.08235vw,100vh) scale(.8803)}}.snow:nth-child(253){opacity:1.121;transform:translate(38.3263vw,-10px) scale(.745);animation:fall-253 20s -6s linear infinite}@keyframes fall-253{62.514%{transform:translate(41.826vw,62.514vh) scale(.745)}to{transform:translate(40.07615vw,100vh) scale(.745)}}.snow:nth-child(254){opacity:.6392;transform:translate(36.4797vw,-10px) scale(.3228);animation:fall-254 26s -22s linear infinite}@keyframes fall-254{50.589%{transform:translate(41.83vw,50.589vh) scale(.3228)}to{transform:translate(39.15485vw,100vh) scale(.3228)}}.snow:nth-child(255){opacity:1.357;transform:translate(60.7796vw,-10px) scale(.7923);animation:fall-255 15s -15s linear infinite}@keyframes fall-255{61.221%{transform:translate(68.5873vw,61.221vh) scale(.7923)}to{transform:translate(64.68345vw,100vh) scale(.7923)}}.snow:nth-child(256){opacity:1.5698;transform:translate(71.4239vw,-10px) scale(.415);animation:fall-256 10s -15s linear infinite}@keyframes fall-256{34.301%{transform:translate(62.2666vw,34.301vh) scale(.415)}to{transform:translate(66.84525vw,100vh) scale(.415)}}.snow:nth-child(257){opacity:.1794;transform:translate(86.4054vw,-10px) scale(.7944);animation:fall-257 18s -25s linear infinite}@keyframes fall-257{47.834%{transform:translate(92.7454vw,47.834vh) scale(.7944)}to{transform:translate(89.5754vw,100vh) scale(.7944)}}.snow:nth-child(258){opacity:.8022;transform:translate(34.7638vw,-10px) scale(.5564);animation:fall-258 22s -13s linear infinite}@keyframes fall-258{48.61%{transform:translate(41.3852vw,48.61vh) scale(.5564)}to{transform:translate(38.0745vw,100vh) scale(.5564)}}.snow:nth-child(259){opacity:1.0192;transform:translate(39.6463vw,-10px) scale(.4079);animation:fall-259 10s -13s linear infinite}@keyframes fall-259{67.826%{transform:translate(41.2703vw,67.826vh) scale(.4079)}to{transform:translate(40.4583vw,100vh) scale(.4079)}}.snow:nth-child(260){opacity:1.914;transform:translate(41.116vw,-10px) scale(.6025);animation:fall-260 19s -16s linear infinite}@keyframes fall-260{55.541%{transform:translate(48.5627vw,55.541vh) scale(.6025)}to{transform:translate(44.83935vw,100vh) scale(.6025)}}.snow:nth-child(261){opacity:.2296;transform:translate(5.3507vw,-10px) scale(.1911);animation:fall-261 26s -14s linear infinite}@keyframes fall-261{57.56%{transform:translate(12.0347vw,57.56vh) scale(.1911)}to{transform:translate(8.6927vw,100vh) scale(.1911)}}.snow:nth-child(262){opacity:1.1312;transform:translate(42.5043vw,-10px) scale(.3188);animation:fall-262 19s -22s linear infinite}@keyframes fall-262{50.466%{transform:translate(44.4895vw,50.466vh) scale(.3188)}to{transform:translate(43.4969vw,100vh) scale(.3188)}}.snow:nth-child(263){opacity:.6134;transform:translate(72.7243vw,-10px) scale(.2773);animation:fall-263 28s -30s linear infinite}@keyframes fall-263{34.861%{transform:translate(79.8785vw,34.861vh) scale(.2773)}to{transform:translate(76.3014vw,100vh) scale(.2773)}}.snow:nth-child(264){opacity:.7408;transform:translate(98.6468vw,-10px) scale(.45);animation:fall-264 19s -12s linear infinite}@keyframes fall-264{31.82%{transform:translate(90.0261vw,31.82vh) scale(.45)}to{transform:translate(94.33645vw,100vh) scale(.45)}}.snow:nth-child(265){opacity:.522;transform:translate(31.4566vw,-10px) scale(.3788);animation:fall-265 27s -19s linear infinite}@keyframes fall-265{75.559%{transform:translate(29.0555vw,75.559vh) scale(.3788)}to{transform:translate(30.25605vw,100vh) scale(.3788)}}.snow:nth-child(266){opacity:.461;transform:translate(30.2296vw,-10px) scale(.3848);animation:fall-266 17s -2s linear infinite}@keyframes fall-266{55.414%{transform:translate(30.2362vw,55.414vh) scale(.3848)}to{transform:translate(30.2329vw,100vh) scale(.3848)}}.snow:nth-child(267){opacity:.95;transform:translate(93.5726vw,-10px) scale(.8678);animation:fall-267 25s -27s linear infinite}@keyframes fall-267{46.681%{transform:translate(89.7429vw,46.681vh) scale(.8678)}to{transform:translate(91.65775vw,100vh) scale(.8678)}}.snow:nth-child(268){opacity:1.2652;transform:translate(15.4543vw,-10px) scale(.4968);animation:fall-268 22s -14s linear infinite}@keyframes fall-268{79.945%{transform:translate(7.6157vw,79.945vh) scale(.4968)}to{transform:translate(11.535vw,100vh) scale(.4968)}}.snow:nth-child(269){opacity:1.815;transform:translate(83.302vw,-10px) scale(.4375);animation:fall-269 25s -1s linear infinite}@keyframes fall-269{62.354%{transform:translate(87.7286vw,62.354vh) scale(.4375)}to{transform:translate(85.5153vw,100vh) scale(.4375)}}.snow:nth-child(270){opacity:.35;transform:translate(21.2166vw,-10px) scale(.8604);animation:fall-270 25s -12s linear infinite}@keyframes fall-270{58.709%{transform:translate(26.9626vw,58.709vh) scale(.8604)}to{transform:translate(24.0896vw,100vh) scale(.8604)}}.snow:nth-child(271){opacity:.2666;transform:translate(.0818vw,-10px) scale(.8349);animation:fall-271 15s -14s linear infinite}@keyframes fall-271{42.084%{transform:translate(.482vw,42.084vh) scale(.8349)}to{transform:translate(.2819vw,100vh) scale(.8349)}}.snow:nth-child(272){opacity:.1152;transform:translate(55.7797vw,-10px) scale(.7964);animation:fall-272 11s -30s linear infinite}@keyframes fall-272{63.318%{transform:translate(64.8399vw,63.318vh) scale(.7964)}to{transform:translate(60.3098vw,100vh) scale(.7964)}}.snow:nth-child(273){opacity:.7918;transform:translate(80.285vw,-10px) scale(.1488);animation:fall-273 24s -3s linear infinite}@keyframes fall-273{49.167%{transform:translate(87.2755vw,49.167vh) scale(.1488)}to{transform:translate(83.78025vw,100vh) scale(.1488)}}.snow:nth-child(274){opacity:1.8874;transform:translate(12.0913vw,-10px) scale(.9842);animation:fall-274 24s -24s linear infinite}@keyframes fall-274{39.889%{transform:translate(21.1983vw,39.889vh) scale(.9842)}to{transform:translate(16.6448vw,100vh) scale(.9842)}}.snow:nth-child(275){opacity:1.179;transform:translate(44.6505vw,-10px) scale(.824);animation:fall-275 10s -1s linear infinite}@keyframes fall-275{43.702%{transform:translate(41.6282vw,43.702vh) scale(.824)}to{transform:translate(43.13935vw,100vh) scale(.824)}}.snow:nth-child(276){opacity:.6044;transform:translate(63.6035vw,-10px) scale(.4094);animation:fall-276 26s -19s linear infinite}@keyframes fall-276{44.737%{transform:translate(58.3351vw,44.737vh) scale(.4094)}to{transform:translate(60.9693vw,100vh) scale(.4094)}}.snow:nth-child(277){opacity:.6452;transform:translate(30.5085vw,-10px) scale(.3451);animation:fall-277 14s -3s linear infinite}@keyframes fall-277{63.972%{transform:translate(25.2875vw,63.972vh) scale(.3451)}to{transform:translate(27.898vw,100vh) scale(.3451)}}.snow:nth-child(278){opacity:.275;transform:translate(76.4668vw,-10px) scale(.9125);animation:fall-278 11s -23s linear infinite}@keyframes fall-278{40.609%{transform:translate(82.4543vw,40.609vh) scale(.9125)}to{transform:translate(79.46055vw,100vh) scale(.9125)}}.snow:nth-child(279){opacity:1.825;transform:translate(58.2535vw,-10px) scale(.9847);animation:fall-279 14s -15s linear infinite}@keyframes fall-279{57%{transform:translate(67.1325vw,57vh) scale(.9847)}to{transform:translate(62.693vw,100vh) scale(.9847)}}.snow:nth-child(280){opacity:.6078;transform:translate(55.091vw,-10px) scale(.7996);animation:fall-280 29s -27s linear infinite}@keyframes fall-280{53.147%{transform:translate(54.5587vw,53.147vh) scale(.7996)}to{transform:translate(54.82485vw,100vh) scale(.7996)}}.snow:nth-child(281){opacity:1.584;transform:translate(20.4489vw,-10px) scale(.3527);animation:fall-281 23s -28s linear infinite}@keyframes fall-281{79.118%{transform:translate(24.8833vw,79.118vh) scale(.3527)}to{transform:translate(22.6661vw,100vh) scale(.3527)}}.snow:nth-child(282){opacity:1.903;transform:translate(12.8691vw,-10px) scale(.7032);animation:fall-282 23s -3s linear infinite}@keyframes fall-282{45.287%{transform:translate(18.7712vw,45.287vh) scale(.7032)}to{transform:translate(15.82015vw,100vh) scale(.7032)}}.snow:nth-child(283){opacity:1.2554;transform:translate(88.0041vw,-10px) scale(.0122);animation:fall-283 24s -29s linear infinite}@keyframes fall-283{54.918%{transform:translate(92.7355vw,54.918vh) scale(.0122)}to{transform:translate(90.3698vw,100vh) scale(.0122)}}.snow:nth-child(284){opacity:1.2148;transform:translate(53.5013vw,-10px) scale(.0205);animation:fall-284 20s -23s linear infinite}@keyframes fall-284{68.702%{transform:translate(52.3913vw,68.702vh) scale(.0205)}to{transform:translate(52.9463vw,100vh) scale(.0205)}}.snow:nth-child(285){opacity:1.8976;transform:translate(34.1138vw,-10px) scale(.4722);animation:fall-285 26s -15s linear infinite}@keyframes fall-285{39.38%{transform:translate(34.9982vw,39.38vh) scale(.4722)}to{transform:translate(34.556vw,100vh) scale(.4722)}}.snow:nth-child(286){opacity:1.3412;transform:translate(1.7106vw,-10px) scale(.3937);animation:fall-286 25s -10s linear infinite}@keyframes fall-286{69.528%{transform:translate(-5.2422vw,69.528vh) scale(.3937)}to{transform:translate(-1.7658vw,100vh) scale(.3937)}}.snow:nth-child(287){opacity:1.3802;transform:translate(74.4551vw,-10px) scale(.9542);animation:fall-287 24s -29s linear infinite}@keyframes fall-287{59.809%{transform:translate(81.0794vw,59.809vh) scale(.9542)}to{transform:translate(77.76725vw,100vh) scale(.9542)}}.snow:nth-child(288){opacity:1.9524;transform:translate(84.0282vw,-10px) scale(.7273);animation:fall-288 19s -1s linear infinite}@keyframes fall-288{59.006%{transform:translate(75.7902vw,59.006vh) scale(.7273)}to{transform:translate(79.9092vw,100vh) scale(.7273)}}.snow:nth-child(289){opacity:.382;transform:translate(90.5073vw,-10px) scale(.4182);animation:fall-289 12s -6s linear infinite}@keyframes fall-289{73.529%{transform:translate(97.2345vw,73.529vh) scale(.4182)}to{transform:translate(93.8709vw,100vh) scale(.4182)}}.snow:nth-child(290){opacity:1.0242;transform:translate(59.887vw,-10px) scale(.088);animation:fall-290 27s -23s linear infinite}@keyframes fall-290{65.916%{transform:translate(61.5391vw,65.916vh) scale(.088)}to{transform:translate(60.71305vw,100vh) scale(.088)}}.snow:nth-child(291){opacity:1.8436;transform:translate(31.6179vw,-10px) scale(.2201);animation:fall-291 13s -17s linear infinite}@keyframes fall-291{60.853%{transform:translate(29.244vw,60.853vh) scale(.2201)}to{transform:translate(30.43095vw,100vh) scale(.2201)}}.snow:nth-child(292){opacity:1.7314;transform:translate(24.3971vw,-10px) scale(.3082);animation:fall-292 12s -30s linear infinite}@keyframes fall-292{47.49%{transform:translate(34.2271vw,47.49vh) scale(.3082)}to{transform:translate(29.3121vw,100vh) scale(.3082)}}.snow:nth-child(293){opacity:1.2272;transform:translate(90.1741vw,-10px) scale(.4708);animation:fall-293 27s -28s linear infinite}@keyframes fall-293{35.163%{transform:translate(86.7226vw,35.163vh) scale(.4708)}to{transform:translate(88.44835vw,100vh) scale(.4708)}}.snow:nth-child(294){opacity:.3792;transform:translate(86.5993vw,-10px) scale(.5979);animation:fall-294 12s -23s linear infinite}@keyframes fall-294{52.318%{transform:translate(88.1801vw,52.318vh) scale(.5979)}to{transform:translate(87.3897vw,100vh) scale(.5979)}}.snow:nth-child(295){opacity:1.7086;transform:translate(26.5802vw,-10px) scale(.0936);animation:fall-295 11s -14s linear infinite}@keyframes fall-295{50.505%{transform:translate(22.6743vw,50.505vh) scale(.0936)}to{transform:translate(24.62725vw,100vh) scale(.0936)}}.snow:nth-child(296){opacity:1.4094;transform:translate(20.0199vw,-10px) scale(.8706);animation:fall-296 14s -8s linear infinite}@keyframes fall-296{59.814%{transform:translate(18.2308vw,59.814vh) scale(.8706)}to{transform:translate(19.12535vw,100vh) scale(.8706)}}.snow:nth-child(297){opacity:.2186;transform:translate(33.8752vw,-10px) scale(.8109);animation:fall-297 27s -21s linear infinite}@keyframes fall-297{38.424%{transform:translate(25.4304vw,38.424vh) scale(.8109)}to{transform:translate(29.6528vw,100vh) scale(.8109)}}.snow:nth-child(298){opacity:.785;transform:translate(35.9342vw,-10px) scale(.8207);animation:fall-298 21s -30s linear infinite}@keyframes fall-298{39.136%{transform:translate(31.4718vw,39.136vh) scale(.8207)}to{transform:translate(33.703vw,100vh) scale(.8207)}}.snow:nth-child(299){opacity:1.107;transform:translate(63.7874vw,-10px) scale(.9171);animation:fall-299 17s -29s linear infinite}@keyframes fall-299{76.559%{transform:translate(62.4034vw,76.559vh) scale(.9171)}to{transform:translate(63.0954vw,100vh) scale(.9171)}}.snow:nth-child(300){opacity:.0298;transform:translate(43.6352vw,-10px) scale(.7784);animation:fall-300 21s -13s linear infinite}@keyframes fall-300{58.657%{transform:translate(36.0083vw,58.657vh) scale(.7784)}to{transform:translate(39.82175vw,100vh) scale(.7784)}}.snow:nth-child(301){opacity:1.6386;transform:translate(89.9082vw,-10px) scale(.0816);animation:fall-301 26s -16s linear infinite}@keyframes fall-301{32.364%{transform:translate(86.6436vw,32.364vh) scale(.0816)}to{transform:translate(88.2759vw,100vh) scale(.0816)}}.snow:nth-child(302){opacity:1.732;transform:translate(45.7203vw,-10px) scale(.5791);animation:fall-302 15s -24s linear infinite}@keyframes fall-302{39.245%{transform:translate(50.9783vw,39.245vh) scale(.5791)}to{transform:translate(48.3493vw,100vh) scale(.5791)}}.snow:nth-child(303){opacity:.044;transform:translate(71.499vw,-10px) scale(.2237);animation:fall-303 15s -10s linear infinite}@keyframes fall-303{57.2%{transform:translate(64.3738vw,57.2vh) scale(.2237)}to{transform:translate(67.9364vw,100vh) scale(.2237)}}.snow:nth-child(304){opacity:.6214;transform:translate(23.4477vw,-10px) scale(.2291);animation:fall-304 16s -10s linear infinite}@keyframes fall-304{70.501%{transform:translate(23.775vw,70.501vh) scale(.2291)}to{transform:translate(23.61135vw,100vh) scale(.2291)}}.snow:nth-child(305){opacity:.4616;transform:translate(54.8338vw,-10px) scale(.1208);animation:fall-305 29s -6s linear infinite}@keyframes fall-305{51.199%{transform:translate(51.4581vw,51.199vh) scale(.1208)}to{transform:translate(53.14595vw,100vh) scale(.1208)}}.snow:nth-child(306){opacity:1.3718;transform:translate(58.2378vw,-10px) scale(.664);animation:fall-306 12s -4s linear infinite}@keyframes fall-306{32.149%{transform:translate(59.9167vw,32.149vh) scale(.664)}to{transform:translate(59.07725vw,100vh) scale(.664)}}.snow:nth-child(307){opacity:.9616;transform:translate(66.1465vw,-10px) scale(.3831);animation:fall-307 20s -28s linear infinite}@keyframes fall-307{35.305%{transform:translate(65.1247vw,35.305vh) scale(.3831)}to{transform:translate(65.6356vw,100vh) scale(.3831)}}.snow:nth-child(308){opacity:1.0482;transform:translate(60.0498vw,-10px) scale(.0413);animation:fall-308 28s -18s linear infinite}@keyframes fall-308{55.304%{transform:translate(61.383vw,55.304vh) scale(.0413)}to{transform:translate(60.7164vw,100vh) scale(.0413)}}.snow:nth-child(309){opacity:1.9804;transform:translate(98.6435vw,-10px) scale(.2118);animation:fall-309 26s -19s linear infinite}@keyframes fall-309{68.614%{transform:translate(96.1613vw,68.614vh) scale(.2118)}to{transform:translate(97.4024vw,100vh) scale(.2118)}}.snow:nth-child(310){opacity:1.2458;transform:translate(95.8392vw,-10px) scale(.9035);animation:fall-310 15s -25s linear infinite}@keyframes fall-310{79.015%{transform:translate(88.1864vw,79.015vh) scale(.9035)}to{transform:translate(92.0128vw,100vh) scale(.9035)}}.snow:nth-child(311){opacity:1.0408;transform:translate(30.9058vw,-10px) scale(.3821);animation:fall-311 24s -19s linear infinite}@keyframes fall-311{38.886%{transform:translate(33.9897vw,38.886vh) scale(.3821)}to{transform:translate(32.44775vw,100vh) scale(.3821)}}.snow:nth-child(312){opacity:.0498;transform:translate(68.3231vw,-10px) scale(.1826);animation:fall-312 16s -21s linear infinite}@keyframes fall-312{73.073%{transform:translate(73.765vw,73.073vh) scale(.1826)}to{transform:translate(71.04405vw,100vh) scale(.1826)}}.snow:nth-child(313){opacity:1.739;transform:translate(7.1682vw,-10px) scale(.9384);animation:fall-313 23s -11s linear infinite}@keyframes fall-313{66.837%{transform:translate(6.7188vw,66.837vh) scale(.9384)}to{transform:translate(6.9435vw,100vh) scale(.9384)}}.snow:nth-child(314){opacity:1.2976;transform:translate(40.5123vw,-10px) scale(.8124);animation:fall-314 11s -21s linear infinite}@keyframes fall-314{56.303%{transform:translate(30.6637vw,56.303vh) scale(.8124)}to{transform:translate(35.588vw,100vh) scale(.8124)}}.snow:nth-child(315){opacity:.713;transform:translate(88.968vw,-10px) scale(.6808);animation:fall-315 25s -12s linear infinite}@keyframes fall-315{73.61%{transform:translate(97.046vw,73.61vh) scale(.6808)}to{transform:translate(93.007vw,100vh) scale(.6808)}}.snow:nth-child(316){opacity:.9742;transform:translate(.4151vw,-10px) scale(.2779);animation:fall-316 20s -22s linear infinite}@keyframes fall-316{57.875%{transform:translate(9.3986vw,57.875vh) scale(.2779)}to{transform:translate(4.90685vw,100vh) scale(.2779)}}.snow:nth-child(317){opacity:1.8206;transform:translate(26.0041vw,-10px) scale(.6268);animation:fall-317 14s -19s linear infinite}@keyframes fall-317{75.204%{transform:translate(17.0188vw,75.204vh) scale(.6268)}to{transform:translate(21.51145vw,100vh) scale(.6268)}}.snow:nth-child(318){opacity:.157;transform:translate(14.6138vw,-10px) scale(.4222);animation:fall-318 23s -21s linear infinite}@keyframes fall-318{68.462%{transform:translate(9.968vw,68.462vh) scale(.4222)}to{transform:translate(12.2909vw,100vh) scale(.4222)}}.snow:nth-child(319){opacity:.6428;transform:translate(58.7888vw,-10px) scale(.0597);animation:fall-319 11s -4s linear infinite}@keyframes fall-319{60.703%{transform:translate(57.3254vw,60.703vh) scale(.0597)}to{transform:translate(58.0571vw,100vh) scale(.0597)}}.snow:nth-child(320){opacity:.3402;transform:translate(77.1065vw,-10px) scale(.3192);animation:fall-320 26s -29s linear infinite}@keyframes fall-320{76.431%{transform:translate(76.1628vw,76.431vh) scale(.3192)}to{transform:translate(76.63465vw,100vh) scale(.3192)}}.snow:nth-child(321){opacity:.2548;transform:translate(90.0126vw,-10px) scale(.1879);animation:fall-321 19s -14s linear infinite}@keyframes fall-321{59.816%{transform:translate(95.9933vw,59.816vh) scale(.1879)}to{transform:translate(93.00295vw,100vh) scale(.1879)}}.snow:nth-child(322){opacity:1.937;transform:translate(28.6894vw,-10px) scale(.7074);animation:fall-322 14s -18s linear infinite}@keyframes fall-322{48.999%{transform:translate(21.4171vw,48.999vh) scale(.7074)}to{transform:translate(25.05325vw,100vh) scale(.7074)}}.snow:nth-child(323){opacity:1.1508;transform:translate(8.905vw,-10px) scale(.6915);animation:fall-323 27s -19s linear infinite}@keyframes fall-323{62.568%{transform:translate(8.5482vw,62.568vh) scale(.6915)}to{transform:translate(8.7266vw,100vh) scale(.6915)}}.snow:nth-child(324){opacity:.1686;transform:translate(13.5297vw,-10px) scale(.7617);animation:fall-324 13s -22s linear infinite}@keyframes fall-324{71.485%{transform:translate(19.5756vw,71.485vh) scale(.7617)}to{transform:translate(16.55265vw,100vh) scale(.7617)}}.snow:nth-child(325){opacity:1.5544;transform:translate(19.8244vw,-10px) scale(.1923);animation:fall-325 29s -23s linear infinite}@keyframes fall-325{52.277%{transform:translate(28.1818vw,52.277vh) scale(.1923)}to{transform:translate(24.0031vw,100vh) scale(.1923)}}.snow:nth-child(326){opacity:.224;transform:translate(40.9846vw,-10px) scale(.9595);animation:fall-326 14s -26s linear infinite}@keyframes fall-326{51.494%{transform:translate(45.5351vw,51.494vh) scale(.9595)}to{transform:translate(43.25985vw,100vh) scale(.9595)}}.snow:nth-child(327){opacity:.8204;transform:translate(2.4277vw,-10px) scale(.2158);animation:fall-327 10s -13s linear infinite}@keyframes fall-327{77.344%{transform:translate(11.2989vw,77.344vh) scale(.2158)}to{transform:translate(6.8633vw,100vh) scale(.2158)}}.snow:nth-child(328){opacity:.5922;transform:translate(28.139vw,-10px) scale(.9222);animation:fall-328 21s -29s linear infinite}@keyframes fall-328{66.847%{transform:translate(22.8092vw,66.847vh) scale(.9222)}to{transform:translate(25.4741vw,100vh) scale(.9222)}}.snow:nth-child(329){opacity:.7906;transform:translate(41.5717vw,-10px) scale(.9993);animation:fall-329 16s -10s linear infinite}@keyframes fall-329{36.582%{transform:translate(50.002vw,36.582vh) scale(.9993)}to{transform:translate(45.78685vw,100vh) scale(.9993)}}.snow:nth-child(330){opacity:.1798;transform:translate(34.6138vw,-10px) scale(.8504);animation:fall-330 11s -11s linear infinite}@keyframes fall-330{47.857%{transform:translate(25.607vw,47.857vh) scale(.8504)}to{transform:translate(30.1104vw,100vh) scale(.8504)}}.snow:nth-child(331){opacity:1.9262;transform:translate(30.5661vw,-10px) scale(.7643);animation:fall-331 23s -5s linear infinite}@keyframes fall-331{49.764%{transform:translate(36.3405vw,49.764vh) scale(.7643)}to{transform:translate(33.4533vw,100vh) scale(.7643)}}.snow:nth-child(332){opacity:1.0134;transform:translate(14.7316vw,-10px) scale(.3315);animation:fall-332 13s -1s linear infinite}@keyframes fall-332{30.115%{transform:translate(16.6123vw,30.115vh) scale(.3315)}to{transform:translate(15.67195vw,100vh) scale(.3315)}}.snow:nth-child(333){opacity:.917;transform:translate(89.2102vw,-10px) scale(.6368);animation:fall-333 29s -11s linear infinite}@keyframes fall-333{76.892%{transform:translate(83.9798vw,76.892vh) scale(.6368)}to{transform:translate(86.595vw,100vh) scale(.6368)}}.snow:nth-child(334){opacity:.5546;transform:translate(87.6444vw,-10px) scale(.8063);animation:fall-334 12s -2s linear infinite}@keyframes fall-334{72.421%{transform:translate(83.5324vw,72.421vh) scale(.8063)}to{transform:translate(85.5884vw,100vh) scale(.8063)}}.snow:nth-child(335){opacity:.267;transform:translate(19.05vw,-10px) scale(.1434);animation:fall-335 20s -21s linear infinite}@keyframes fall-335{70.86%{transform:translate(17.9195vw,70.86vh) scale(.1434)}to{transform:translate(18.48475vw,100vh) scale(.1434)}}.snow:nth-child(336){opacity:1.3724;transform:translate(26.2126vw,-10px) scale(.9993);animation:fall-336 12s -6s linear infinite}@keyframes fall-336{78.683%{transform:translate(30.8195vw,78.683vh) scale(.9993)}to{transform:translate(28.51605vw,100vh) scale(.9993)}}.snow:nth-child(337){opacity:.835;transform:translate(.9128vw,-10px) scale(.3763);animation:fall-337 25s -11s linear infinite}@keyframes fall-337{32.934%{transform:translate(7.6328vw,32.934vh) scale(.3763)}to{transform:translate(4.2728vw,100vh) scale(.3763)}}.snow:nth-child(338){opacity:.1814;transform:translate(1.642vw,-10px) scale(.4474);animation:fall-338 21s -27s linear infinite}@keyframes fall-338{39.547%{transform:translate(7.2463vw,39.547vh) scale(.4474)}to{transform:translate(4.44415vw,100vh) scale(.4474)}}.snow:nth-child(339){opacity:1.9394;transform:translate(3.2573vw,-10px) scale(.4784);animation:fall-339 11s -28s linear infinite}@keyframes fall-339{48.987%{transform:translate(.7643vw,48.987vh) scale(.4784)}to{transform:translate(2.0108vw,100vh) scale(.4784)}}.snow:nth-child(340){opacity:.7042;transform:translate(13.6643vw,-10px) scale(.9357);animation:fall-340 10s -7s linear infinite}@keyframes fall-340{78.076%{transform:translate(9.6472vw,78.076vh) scale(.9357)}to{transform:translate(11.65575vw,100vh) scale(.9357)}}.snow:nth-child(341){opacity:1.0268;transform:translate(35.3679vw,-10px) scale(.6016);animation:fall-341 11s -4s linear infinite}@keyframes fall-341{65.992%{transform:translate(44.5189vw,65.992vh) scale(.6016)}to{transform:translate(39.9434vw,100vh) scale(.6016)}}.snow:nth-child(342){opacity:1.202;transform:translate(22.7898vw,-10px) scale(.4635);animation:fall-342 30s -8s linear infinite}@keyframes fall-342{43.866%{transform:translate(13.3806vw,43.866vh) scale(.4635)}to{transform:translate(18.0852vw,100vh) scale(.4635)}}.snow:nth-child(343){opacity:.7212;transform:translate(37.6903vw,-10px) scale(.5279);animation:fall-343 12s -22s linear infinite}@keyframes fall-343{66.074%{transform:translate(42.5925vw,66.074vh) scale(.5279)}to{transform:translate(40.1414vw,100vh) scale(.5279)}}.snow:nth-child(344){opacity:.184;transform:translate(96.6513vw,-10px) scale(.1837);animation:fall-344 16s -26s linear infinite}@keyframes fall-344{38.924%{transform:translate(94.7925vw,38.924vh) scale(.1837)}to{transform:translate(95.7219vw,100vh) scale(.1837)}}.snow:nth-child(345){opacity:1.0192;transform:translate(71.0912vw,-10px) scale(.9218);animation:fall-345 10s -2s linear infinite}@keyframes fall-345{57.991%{transform:translate(76.8374vw,57.991vh) scale(.9218)}to{transform:translate(73.9643vw,100vh) scale(.9218)}}.snow:nth-child(346){opacity:1.8694;transform:translate(84.124vw,-10px) scale(.8337);animation:fall-346 22s -30s linear infinite}@keyframes fall-346{67.799%{transform:translate(93.0559vw,67.799vh) scale(.8337)}to{transform:translate(88.58995vw,100vh) scale(.8337)}}.snow:nth-child(347){opacity:.7962;transform:translate(7.5104vw,-10px) scale(.0842);animation:fall-347 18s -24s linear infinite}@keyframes fall-347{62.132%{transform:translate(.5909vw,62.132vh) scale(.0842)}to{transform:translate(4.05065vw,100vh) scale(.0842)}}.snow:nth-child(348){opacity:.1898;transform:translate(47.0582vw,-10px) scale(.7096);animation:fall-348 26s -29s linear infinite}@keyframes fall-348{53.023%{transform:translate(44.0673vw,53.023vh) scale(.7096)}to{transform:translate(45.56275vw,100vh) scale(.7096)}}.snow:nth-child(349){opacity:1.5944;transform:translate(95.8075vw,-10px) scale(.6374);animation:fall-349 26s -10s linear infinite}@keyframes fall-349{68.514%{transform:translate(105.4522vw,68.514vh) scale(.6374)}to{transform:translate(100.62985vw,100vh) scale(.6374)}}.snow:nth-child(350){opacity:.1208;transform:translate(74.3531vw,-10px) scale(.8837);animation:fall-350 23s -24s linear infinite}@keyframes fall-350{44.649%{transform:translate(82.8611vw,44.649vh) scale(.8837)}to{transform:translate(78.6071vw,100vh) scale(.8837)}}.snow:nth-child(351){opacity:.6476;transform:translate(60.6825vw,-10px) scale(.5707);animation:fall-351 27s -10s linear infinite}@keyframes fall-351{55.58%{transform:translate(62.7616vw,55.58vh) scale(.5707)}to{transform:translate(61.72205vw,100vh) scale(.5707)}}.snow:nth-child(352){opacity:1.9138;transform:translate(44.2699vw,-10px) scale(.1809);animation:fall-352 12s -25s linear infinite}@keyframes fall-352{44.196%{transform:translate(48.1461vw,44.196vh) scale(.1809)}to{transform:translate(46.208vw,100vh) scale(.1809)}}.snow:nth-child(353){opacity:1.1652;transform:translate(42.9722vw,-10px) scale(.8645);animation:fall-353 27s -9s linear infinite}@keyframes fall-353{44.024%{transform:translate(42.3521vw,44.024vh) scale(.8645)}to{transform:translate(42.66215vw,100vh) scale(.8645)}}.snow:nth-child(354){opacity:1.1606;transform:translate(90.5254vw,-10px) scale(.7841);animation:fall-354 30s -7s linear infinite}@keyframes fall-354{39.992%{transform:translate(93.8037vw,39.992vh) scale(.7841)}to{transform:translate(92.16455vw,100vh) scale(.7841)}}.snow:nth-child(355){opacity:1.8928;transform:translate(72.323vw,-10px) scale(.4126);animation:fall-355 28s -10s linear infinite}@keyframes fall-355{76.185%{transform:translate(81.2776vw,76.185vh) scale(.4126)}to{transform:translate(76.8003vw,100vh) scale(.4126)}}.snow:nth-child(356){opacity:.816;transform:translate(63.684vw,-10px) scale(.2633);animation:fall-356 24s -4s linear infinite}@keyframes fall-356{47.151%{transform:translate(68.7045vw,47.151vh) scale(.2633)}to{transform:translate(66.19425vw,100vh) scale(.2633)}}.snow:nth-child(357){opacity:.7844;transform:translate(91.705vw,-10px) scale(.6684);animation:fall-357 13s -15s linear infinite}@keyframes fall-357{72.413%{transform:translate(95.5153vw,72.413vh) scale(.6684)}to{transform:translate(93.61015vw,100vh) scale(.6684)}}.snow:nth-child(358){opacity:1.9722;transform:translate(46.7764vw,-10px) scale(.4632);animation:fall-358 11s -23s linear infinite}@keyframes fall-358{72.722%{transform:translate(43.4934vw,72.722vh) scale(.4632)}to{transform:translate(45.1349vw,100vh) scale(.4632)}}.snow:nth-child(359){opacity:1.4278;transform:translate(80.7438vw,-10px) scale(.9836);animation:fall-359 27s -27s linear infinite}@keyframes fall-359{70.466%{transform:translate(72.3398vw,70.466vh) scale(.9836)}to{transform:translate(76.5418vw,100vh) scale(.9836)}}.snow:nth-child(360){opacity:1.9364;transform:translate(54.0237vw,-10px) scale(.3093);animation:fall-360 29s -14s linear infinite}@keyframes fall-360{47.938%{transform:translate(49.2818vw,47.938vh) scale(.3093)}to{transform:translate(51.65275vw,100vh) scale(.3093)}}.snow:nth-child(361){opacity:1.451;transform:translate(22.7623vw,-10px) scale(.8119);animation:fall-361 23s -9s linear infinite}@keyframes fall-361{60.37%{transform:translate(13.8903vw,60.37vh) scale(.8119)}to{transform:translate(18.3263vw,100vh) scale(.8119)}}.snow:nth-child(362){opacity:.4136;transform:translate(62.2594vw,-10px) scale(.5671);animation:fall-362 16s -25s linear infinite}@keyframes fall-362{78.193%{transform:translate(70.6981vw,78.193vh) scale(.5671)}to{transform:translate(66.47875vw,100vh) scale(.5671)}}.snow:nth-child(363){opacity:1.5732;transform:translate(59.592vw,-10px) scale(.9836);animation:fall-363 28s -24s linear infinite}@keyframes fall-363{52.142%{transform:translate(55.2997vw,52.142vh) scale(.9836)}to{transform:translate(57.44585vw,100vh) scale(.9836)}}.snow:nth-child(364){opacity:1.7156;transform:translate(97.7429vw,-10px) scale(.5916);animation:fall-364 24s -7s linear infinite}@keyframes fall-364{45.623%{transform:translate(101.5351vw,45.623vh) scale(.5916)}to{transform:translate(99.639vw,100vh) scale(.5916)}}.snow:nth-child(365){opacity:1.438;transform:translate(57.3615vw,-10px) scale(.5097);animation:fall-365 13s -26s linear infinite}@keyframes fall-365{48.322%{transform:translate(62.5612vw,48.322vh) scale(.5097)}to{transform:translate(59.96135vw,100vh) scale(.5097)}}.snow:nth-child(366){opacity:1.0094;transform:translate(85.1808vw,-10px) scale(.625);animation:fall-366 23s -17s linear infinite}@keyframes fall-366{46.94%{transform:translate(77.5156vw,46.94vh) scale(.625)}to{transform:translate(81.3482vw,100vh) scale(.625)}}.snow:nth-child(367){opacity:1.4472;transform:translate(1.3865vw,-10px) scale(.7277);animation:fall-367 28s -5s linear infinite}@keyframes fall-367{40.277%{transform:translate(1.3537vw,40.277vh) scale(.7277)}to{transform:translate(1.3701vw,100vh) scale(.7277)}}.snow:nth-child(368){opacity:.1828;transform:translate(38.8104vw,-10px) scale(.7684);animation:fall-368 25s -22s linear infinite}@keyframes fall-368{73.491%{transform:translate(35.5714vw,73.491vh) scale(.7684)}to{transform:translate(37.1909vw,100vh) scale(.7684)}}.snow:nth-child(369){opacity:1.0548;transform:translate(38.6873vw,-10px) scale(.8481);animation:fall-369 14s -14s linear infinite}@keyframes fall-369{34.148%{transform:translate(46.7545vw,34.148vh) scale(.8481)}to{transform:translate(42.7209vw,100vh) scale(.8481)}}.snow:nth-child(370){opacity:.3996;transform:translate(84.6856vw,-10px) scale(.9593);animation:fall-370 29s -15s linear infinite}@keyframes fall-370{40.827%{transform:translate(84.2156vw,40.827vh) scale(.9593)}to{transform:translate(84.4506vw,100vh) scale(.9593)}}.snow:nth-child(371){opacity:.815;transform:translate(41.1475vw,-10px) scale(.9276);animation:fall-371 28s -21s linear infinite}@keyframes fall-371{57.714%{transform:translate(43.7496vw,57.714vh) scale(.9276)}to{transform:translate(42.44855vw,100vh) scale(.9276)}}.snow:nth-child(372){opacity:.1614;transform:translate(70.8548vw,-10px) scale(.7244);animation:fall-372 12s -23s linear infinite}@keyframes fall-372{34.157%{transform:translate(63.9258vw,34.157vh) scale(.7244)}to{transform:translate(67.3903vw,100vh) scale(.7244)}}.snow:nth-child(373){opacity:.3006;transform:translate(78.6292vw,-10px) scale(.9175);animation:fall-373 29s -20s linear infinite}@keyframes fall-373{66.593%{transform:translate(75.6828vw,66.593vh) scale(.9175)}to{transform:translate(77.156vw,100vh) scale(.9175)}}.snow:nth-child(374){opacity:1.517;transform:translate(44.9878vw,-10px) scale(.7392);animation:fall-374 28s -23s linear infinite}@keyframes fall-374{74.12%{transform:translate(38.7876vw,74.12vh) scale(.7392)}to{transform:translate(41.8877vw,100vh) scale(.7392)}}.snow:nth-child(375){opacity:1.9818;transform:translate(39.5802vw,-10px) scale(.4573);animation:fall-375 24s -11s linear infinite}@keyframes fall-375{73.651%{transform:translate(34.8872vw,73.651vh) scale(.4573)}to{transform:translate(37.2337vw,100vh) scale(.4573)}}.snow:nth-child(376){opacity:.5844;transform:translate(48.5004vw,-10px) scale(.5397);animation:fall-376 14s -6s linear infinite}@keyframes fall-376{41.186%{transform:translate(50.8073vw,41.186vh) scale(.5397)}to{transform:translate(49.65385vw,100vh) scale(.5397)}}.snow:nth-child(377){opacity:1.7146;transform:translate(10.7593vw,-10px) scale(.0551);animation:fall-377 15s -9s linear infinite}@keyframes fall-377{58.042%{transform:translate(1.7942vw,58.042vh) scale(.0551)}to{transform:translate(6.27675vw,100vh) scale(.0551)}}.snow:nth-child(378){opacity:.8608;transform:translate(69.3782vw,-10px) scale(.3113);animation:fall-378 14s -23s linear infinite}@keyframes fall-378{44.283%{transform:translate(71.4183vw,44.283vh) scale(.3113)}to{transform:translate(70.39825vw,100vh) scale(.3113)}}.snow:nth-child(379){opacity:1.8134;transform:translate(60.2039vw,-10px) scale(.8653);animation:fall-379 16s -2s linear infinite}@keyframes fall-379{57.859%{transform:translate(67.8135vw,57.859vh) scale(.8653)}to{transform:translate(64.0087vw,100vh) scale(.8653)}}.snow:nth-child(380){opacity:1.0672;transform:translate(55.3361vw,-10px) scale(.0149);animation:fall-380 27s -2s linear infinite}@keyframes fall-380{53.398%{transform:translate(48.6146vw,53.398vh) scale(.0149)}to{transform:translate(51.97535vw,100vh) scale(.0149)}}.snow:nth-child(381){opacity:1.7846;transform:translate(40.2297vw,-10px) scale(.3679);animation:fall-381 17s -13s linear infinite}@keyframes fall-381{47.774%{transform:translate(41.044vw,47.774vh) scale(.3679)}to{transform:translate(40.63685vw,100vh) scale(.3679)}}.snow:nth-child(382){opacity:1.2874;transform:translate(49.8266vw,-10px) scale(.0003);animation:fall-382 14s -23s linear infinite}@keyframes fall-382{56.603%{transform:translate(49.0541vw,56.603vh) scale(.0003)}to{transform:translate(49.44035vw,100vh) scale(.0003)}}.snow:nth-child(383){opacity:.4878;transform:translate(29.6493vw,-10px) scale(.0059);animation:fall-383 22s -7s linear infinite}@keyframes fall-383{46.621%{transform:translate(24.7834vw,46.621vh) scale(.0059)}to{transform:translate(27.21635vw,100vh) scale(.0059)}}.snow:nth-child(384){opacity:1.7786;transform:translate(23.5713vw,-10px) scale(.4436);animation:fall-384 17s -10s linear infinite}@keyframes fall-384{68.529%{transform:translate(15.7064vw,68.529vh) scale(.4436)}to{transform:translate(19.63885vw,100vh) scale(.4436)}}.snow:nth-child(385){opacity:1.113;transform:translate(2.9867vw,-10px) scale(.008);animation:fall-385 23s -11s linear infinite}@keyframes fall-385{30.887%{transform:translate(11.525vw,30.887vh) scale(.008)}to{transform:translate(7.25585vw,100vh) scale(.008)}}.snow:nth-child(386){opacity:.124;transform:translate(11.898vw,-10px) scale(.5539);animation:fall-386 28s -22s linear infinite}@keyframes fall-386{56.526%{transform:translate(18.7612vw,56.526vh) scale(.5539)}to{transform:translate(15.3296vw,100vh) scale(.5539)}}.snow:nth-child(387){opacity:1.8342;transform:translate(11.5951vw,-10px) scale(.207);animation:fall-387 29s -13s linear infinite}@keyframes fall-387{78.115%{transform:translate(12.8615vw,78.115vh) scale(.207)}to{transform:translate(12.2283vw,100vh) scale(.207)}}.snow:nth-child(388){opacity:1.5218;transform:translate(41.0512vw,-10px) scale(.66);animation:fall-388 22s -14s linear infinite}@keyframes fall-388{54.919%{transform:translate(32.7289vw,54.919vh) scale(.66)}to{transform:translate(36.89005vw,100vh) scale(.66)}}.snow:nth-child(389){opacity:.6446;transform:translate(58.7506vw,-10px) scale(.6659);animation:fall-389 27s -30s linear infinite}@keyframes fall-389{65.104%{transform:translate(68.3418vw,65.104vh) scale(.6659)}to{transform:translate(63.5462vw,100vh) scale(.6659)}}.snow:nth-child(390){opacity:.841;transform:translate(15.85vw,-10px) scale(.3698);animation:fall-390 13s -18s linear infinite}@keyframes fall-390{46.864%{transform:translate(15.1126vw,46.864vh) scale(.3698)}to{transform:translate(15.4813vw,100vh) scale(.3698)}}.snow:nth-child(391){opacity:.1934;transform:translate(45.9043vw,-10px) scale(.4996);animation:fall-391 24s -7s linear infinite}@keyframes fall-391{62.602%{transform:translate(50.8497vw,62.602vh) scale(.4996)}to{transform:translate(48.377vw,100vh) scale(.4996)}}.snow:nth-child(392){opacity:.7838;transform:translate(49.3289vw,-10px) scale(.3078);animation:fall-392 11s -18s linear infinite}@keyframes fall-392{48.268%{transform:translate(52.6817vw,48.268vh) scale(.3078)}to{transform:translate(51.0053vw,100vh) scale(.3078)}}.snow:nth-child(393){opacity:.671;transform:translate(39.1744vw,-10px) scale(.1209);animation:fall-393 16s -26s linear infinite}@keyframes fall-393{69.327%{transform:translate(38.3395vw,69.327vh) scale(.1209)}to{transform:translate(38.75695vw,100vh) scale(.1209)}}.snow:nth-child(394){opacity:.3606;transform:translate(74.0672vw,-10px) scale(.2449);animation:fall-394 11s -21s linear infinite}@keyframes fall-394{72.279%{transform:translate(75.0486vw,72.279vh) scale(.2449)}to{transform:translate(74.5579vw,100vh) scale(.2449)}}.snow:nth-child(395){opacity:.6242;transform:translate(72.1262vw,-10px) scale(.1493);animation:fall-395 28s -20s linear infinite}@keyframes fall-395{66.482%{transform:translate(63.6008vw,66.482vh) scale(.1493)}to{transform:translate(67.8635vw,100vh) scale(.1493)}}.snow:nth-child(396){opacity:1.2012;transform:translate(8.5515vw,-10px) scale(.9459);animation:fall-396 30s -3s linear infinite}@keyframes fall-396{41.046%{transform:translate(16.5161vw,41.046vh) scale(.9459)}to{transform:translate(12.5338vw,100vh) scale(.9459)}}.snow:nth-child(397){opacity:1.7992;transform:translate(20.413vw,-10px) scale(.4806);animation:fall-397 13s -23s linear infinite}@keyframes fall-397{63.314%{transform:translate(16.6585vw,63.314vh) scale(.4806)}to{transform:translate(18.53575vw,100vh) scale(.4806)}}.snow:nth-child(398){opacity:.7384;transform:translate(65.0293vw,-10px) scale(.8103);animation:fall-398 30s -17s linear infinite}@keyframes fall-398{79.012%{transform:translate(55.8805vw,79.012vh) scale(.8103)}to{transform:translate(60.4549vw,100vh) scale(.8103)}}.snow:nth-child(399){opacity:1.7756;transform:translate(61.6069vw,-10px) scale(.8129);animation:fall-399 23s -12s linear infinite}@keyframes fall-399{64.524%{transform:translate(56.3297vw,64.524vh) scale(.8129)}to{transform:translate(58.9683vw,100vh) scale(.8129)}}.snow:nth-child(400){opacity:1.3234;transform:translate(57.8058vw,-10px) scale(.5598);animation:fall-400 18s -4s linear infinite}@keyframes fall-400{32.918%{transform:translate(62.2006vw,32.918vh) scale(.5598)}to{transform:translate(60.0032vw,100vh) scale(.5598)}}\n"] }]
79
+ args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: ["@import\"https://fonts.googleapis.com/css2?family=Lato&family=Sora&display=swap\";.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:#fffac2}.progress.progress-primary[value]::-moz-progress-bar{background-color:#fffac2}.progress.progress-primary[value]::-ms-fill{background-color:#fffac2}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#fffac2}}.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:#ef4444}.progress.progress-danger[value]::-moz-progress-bar{background-color:#ef4444}.progress.progress-danger[value]::-ms-fill{background-color:#ef4444}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#ef4444}}.progress.progress-success[value]::-webkit-progress-value{background-color:#84cc16}.progress.progress-success[value]::-moz-progress-bar{background-color:#84cc16}.progress.progress-success[value]::-ms-fill{background-color:#84cc16}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#84cc16}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#fbbf24}.progress.progress-warning[value]::-moz-progress-bar{background-color:#fbbf24}.progress.progress-warning[value]::-ms-fill{background-color:#fbbf24}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#fbbf24}}.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:#fffac2}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#ef4444}.tag.tag-success{background-color:#84cc16}.tag.tag-warning{background-color:#fbbf24}.tag.tag-dark{background-color:#344154}.tag.tag-main{background-color:#0056b3}.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:#fff8a9;color:#191e29;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#191e29}.card .card-header a:hover{color:#191e29cc}.card .card-footer{background:#fff8a9;color:#191e29;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #191E29}.card.card-primary{background:#fffac2}.card.card-primary.medium-opacity{background:rgba(255,250,194,.5)}.card.card-outline-primary{background:transparent;border:1px solid #fffac2}.card.card-success{background:#84cc16;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(132,204,22,.5)}.card.card-outline-success{background:transparent;border:1px solid #84CC16}.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:#fbbf24;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(251,191,36,.5)}.card.card-outline-warning{background:transparent;border:1px solid #FBBF24}.card.card-danger{background:#ef4444;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(239,68,68,.5)}.card.card-outline-danger{background:transparent;border:1px solid #EF4444}.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(52,65,84,.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:#191e29}.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(52,65,84,.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:#191e29}.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(0,86,179,.8)!important;border-color:#0056b3cc!important}.btn-primary.medium-opacity{background:rgba(0,86,179,.5);border-color:#0056b31a}.btn-primary:hover,.btn-primary:focus{background:#0056b3;border-color:#0056b3}.btn-primary:active{background:rgba(0,86,179,.95)!important;border-color:#0056b3f2!important}.btn-success{background:rgba(132,204,22,.8);border-color:#84cc16cc}.btn-success.medium-opacity{background:rgba(132,204,22,.5);border-color:#84cc161a}.btn-success:hover,.btn-success:focus{background:#84cc16;border-color:#84cc16}.btn-success:active{background:rgba(132,204,22,.95)!important;border-color:#84cc16f2!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(251,191,36,.8);border-color:#fbbf24cc}.btn-warning.medium-opacity{background:rgba(251,191,36,.5);border-color:#fbbf241a}.btn-warning:hover,.btn-warning:focus{background:#fbbf24;border-color:#fbbf24}.btn-warning:active{background:rgba(251,191,36,.95)!important;border-color:#fbbf24f2!important}.btn-danger{background:rgba(239,68,68,.8);border-color:#ef4444cc}.btn-danger.medium-opacity{background:rgba(239,68,68,.5);border-color:#ef44441a}.btn-danger:hover,.btn-danger:focus{background:#ef4444;border-color:#ef4444}.btn-danger:active{background:rgba(239,68,68,.95)!important;border-color:#ef4444f2!important}.btn-dark{background:rgba(52,65,84,.8);border-color:#344154cc;color:#191e29}.btn-dark.medium-opacity{background:rgba(52,65,84,.5);border-color:#3441541a}.btn-dark:hover{background:#344154;border-color:#344154}.btn-dark:active{background:rgba(52,65,84,.95)!important;border-color:#344154f2!important}.btn-main{background:rgba(0,86,179,.8);border-color:#0056b3cc;color:#191e29}.btn-main.medium-opacity{background:rgba(0,86,179,.5);border-color:#0056b31a}.btn-main:hover{color:#191e29!important;background:#0056b3;border-color:#0056b3}.btn-main:active{background:rgba(0,86,179,.95)!important;border-color:#0056b3f2!important}.btn-outline-primary{color:#fffac2;border-color:#fffac2}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#191e29;background:#fffac2;border-color:#fffac2}.btn-outline-primary:active,.btn-outline-primary.active{color:#191e29!important;background:#fffac2!important;border-color:#fffac2!important}.btn-outline-success{color:#84cc16;border-color:#84cc16}.btn-outline-success:hover,.btn-outline-success:focus{color:#191e29;background:#84CC16;border-color:#84cc16}.btn-outline-success:active,.btn-outline-success.active{color:#191e29!important;background:#84CC16!important;border-color:#84cc16!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#191e29;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#191e29!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#fbbf24;border-color:#fbbf24}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#191e29;background:#FBBF24;border-color:#fbbf24}.btn-outline-warning:active,.btn-outline-warning.active{color:#191e29!important;background:#FBBF24!important;border-color:#fbbf24!important}.btn-outline-danger{color:#ef4444;border-color:#ef4444}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#191e29;background:#EF4444;border-color:#ef4444}.btn-outline-danger:active,.btn-outline-danger.active{color:#191e29!important;background:#EF4444!important;border-color:#ef4444!important}.btn-outline-dark{color:#344154;border-color:#344154;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#191e29;background:#344154;border-color:#344154}.btn-outline-main{color:#0056b3;border-color:#0056b3;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#191e29;background:#0056b3;border-color:#0056b3}.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:#fffac2!important}.text-success{color:#84cc16!important}.text-info{color:#248dad!important}.text-warning{color:#fbbf24!important}.text-danger{color:#ef4444!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:#0056b3cc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#191e29;color:#0056b3}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#0056b3;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:#fffac266;border:1px solid #fffac2}.nav-tabs.tabs-primary .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#fffac2;color:#191e29}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-success{background-color:#84cc1666;border:1px solid #84CC16}.nav-tabs.tabs-success .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#84cc16;color:#191e29}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#191e29}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-warning{background-color:#fbbf2466;border:1px solid #FBBF24}.nav-tabs.tabs-warning .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#fbbf24;color:#191e29}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#191e29}.nav-tabs.tabs-danger{background-color:#ef444466;border:1px solid #EF4444}.nav-tabs.tabs-danger .nav-item .nav-link{color:#191e29cc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#ef4444;color:#191e29}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#191e29}.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:#fffac2;color:#191e29;border-color:#fffac2}.tab-content.tab-content-success{background-color:#84cc16;color:#191e29;border-color:#84cc16}.tab-content.tab-content-info{background-color:#248dad;color:#191e29;border-color:#248dad}.tab-content.tab-content-warning{background-color:#fbbf24;color:#191e29;border-color:#fbbf24}.tab-content.tab-content-danger{background-color:#ef4444;color:#191e29;border-color:#ef4444}.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:#0056b3cc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#191e29}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#0056b3;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#0056b399;cursor:not-allowed!important}.alert.alert-success{background-color:#84cc16;border-color:#84cc16;color:#191e29}.alert.alert-success.medium-opacity{background:rgba(132,204,22,.5);border-color:#84cc1699}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#191e29}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#fbbf24;border-color:#fbbf24;color:#191e29}.alert.alert-warning.medium-opacity{background-color:#fbbf2480;border-color:#fbbf2499}.alert.alert-danger{background-color:#ef4444;border-color:#ef4444;color:#191e29}.alert.alert-danger.medium-opacity{background-color:#ef444480;border-color:#ef444499}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#344154}.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:#191e29;background-color:#fffac2}.modal-dialog .modal-content .modal-header.modal-success{color:#191e29;background-color:#84cc16}.modal-dialog .modal-content .modal-header.modal-info{color:#191e29;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#191e29;background-color:#fbbf24}.modal-dialog .modal-content .modal-header.modal-danger{color:#191e29;background-color:#ef4444}.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:#344154cc}.list-group .list-group-item.active{color:#191e29e6;background-color:#fffac2;border-color:#fffac2}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#191e29!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#344154}.list-group .list-group-item.list-group-item-primary{color:#191e29;background-color:#fffac2}.list-group .list-group-item.list-group-item-success{color:#191e29;background-color:#84cc16}.list-group .list-group-item.list-group-item-info{color:#191e29;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#191e29;background-color:#fbbf24}.list-group .list-group-item.list-group-item-danger{color:#191e29;background-color:#ef4444}.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='%2384CC16' 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:#84cc16cc}.has-success .form-control:focus{box-shadow:none;border-color:#84cc1680}.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:#84cc16}.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='%23FBBF24' 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:#fbbf24cc}.has-warning .form-control:focus{box-shadow:none;border-color:#fbbf2480}.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:#fbbf24}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444cc}.has-danger .form-control:focus{box-shadow:none;border-color:#ef444480}.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:#ef4444}.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:#ef4444!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#ef4444;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#84cc16;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='%2384CC16' 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:#ef4444;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23EF4444' 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:#84cc16;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='%2384CC16' 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:#344154cc}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:#0056b3}.dropdown-menu a:hover{color:#191e29;background-color:#0056b3}.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:#fffac2}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fffac2}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#84CC16}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #84cc16}.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:#FBBF24}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fbbf24}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#EF4444}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #ef4444}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#0056b3}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #0056b3}.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:#fffac2}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fffac2}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#84CC16}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #84cc16}.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:#FBBF24}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #fbbf24}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#EF4444}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #ef4444}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#0056b3}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #0056b3}.custom-select,.custom-select:focus{background:rgba(25,30,41,.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:#fffac2!important}.bg-primary.medium-opacity{background:rgba(255,250,194,.5)!important}.bg-success{background:#84cc16!important}.bg-success.medium-opacity{background:rgba(132,204,22,.5)!important}.bg-info{background:#248dad!important}.bg-info.medium-opacity{background:rgba(36,141,173,.5)!important}.bg-warning{background:#fbbf24!important}.bg-warning.medium-opacity{background:rgba(251,191,36,.5)!important}.bg-danger{background:#ef4444!important}.bg-danger.medium-opacity{background:rgba(239,68,68,.5)!important}.bg-main{background:#0056b3!important}.bg-main.medium-opacity{background:rgba(0,86,179,.5)!important}.bg-dark{background:#344154!important}.bg-dark.medium-opacity{background:rgba(52,65,84,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#84cc16;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='%2384CC16' 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}.pull-right{float:right!important}.pull-left{float:left!important}.es-table{background-color:#f2f2f2}.table-responsive{margin-bottom:0!important}.table-responsive .est-table-dotted-menu{background-color:#2a3544!important;padding:10px 5px!important}.table-responsive .est-sticky-last-column,.table-responsive .est-sticky-last-column-alt{background-color:#0000}.table-responsive th{font-family:Sora,sans-serif;color:#fff;background-color:#2a3544;padding:10px 15px}.table-responsive td{padding:10px 15px}.table-responsive .table-striped tbody tr:nth-of-type(odd){background-color:#fff}.table-responsive table{color:#000;margin-bottom:0!important}.table-responsive .table-hover tbody tr:hover{color:#000}.est-relative>div:nth-child(2){padding:15px;border-top:10px solid #e9ebee;background-color:#fff}.est-relative>div:nth-child(2)>div:nth-child(1){margin-top:3px}.est-relative>div:nth-child(2)>div:nth-child(2){margin-top:4px;margin-bottom:-4px}.pace .pace-progress{background:#fffac2;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:#0056b3;border-left-color:#0056b3}.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}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}.app-ck-height-400 .ck-editor__editable{max-height:400px}.lazyContainer{position:relative}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/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(/dist/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Lato,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-family:Sora,sans-serif;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:#191e29;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:#191e29b3}.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:#0056b3;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#0056b3}.widget-controls ul.dropdown-menu li:hover a{color:#191e29}.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:#fffac2}.card.fullscreened.card-success{background:#84CC16}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#FBBF24}.card.fullscreened.card-danger{background:#EF4444}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.2584;transform:translate(24.8601vw,-10px) scale(.5335);animation:fall-1 22s -29s linear infinite}@keyframes fall-1{70.43%{transform:translate(32.2991vw,70.43vh) scale(.5335)}to{transform:translate(28.5796vw,100vh) scale(.5335)}}.snow:nth-child(2){opacity:.6136;transform:translate(58.152vw,-10px) scale(.1027);animation:fall-2 20s -9s linear infinite}@keyframes fall-2{33.843%{transform:translate(64.3127vw,33.843vh) scale(.1027)}to{transform:translate(61.23235vw,100vh) scale(.1027)}}.snow:nth-child(3){opacity:.1366;transform:translate(2.1986vw,-10px) scale(.5597);animation:fall-3 29s -13s linear infinite}@keyframes fall-3{72.001%{transform:translate(-7.4898vw,72.001vh) scale(.5597)}to{transform:translate(-2.6456vw,100vh) scale(.5597)}}.snow:nth-child(4){opacity:.4894;transform:translate(45.7376vw,-10px) scale(.1804);animation:fall-4 15s -25s linear infinite}@keyframes fall-4{62.65%{transform:translate(38.0506vw,62.65vh) scale(.1804)}to{transform:translate(41.8941vw,100vh) scale(.1804)}}.snow:nth-child(5){opacity:1.5612;transform:translate(96.691vw,-10px) scale(.4962);animation:fall-5 18s -22s linear infinite}@keyframes fall-5{60.949%{transform:translate(95.3274vw,60.949vh) scale(.4962)}to{transform:translate(96.0092vw,100vh) scale(.4962)}}.snow:nth-child(6){opacity:.755;transform:translate(92.2509vw,-10px) scale(.165);animation:fall-6 17s -11s linear infinite}@keyframes fall-6{63.63%{transform:translate(89.4587vw,63.63vh) scale(.165)}to{transform:translate(90.8548vw,100vh) scale(.165)}}.snow:nth-child(7){opacity:1.685;transform:translate(19.9777vw,-10px) scale(.996);animation:fall-7 27s -25s linear infinite}@keyframes fall-7{74.409%{transform:translate(29.8907vw,74.409vh) scale(.996)}to{transform:translate(24.9342vw,100vh) scale(.996)}}.snow:nth-child(8){opacity:.241;transform:translate(78.673vw,-10px) scale(.8524);animation:fall-8 10s -8s linear infinite}@keyframes fall-8{76.099%{transform:translate(78.8229vw,76.099vh) scale(.8524)}to{transform:translate(78.74795vw,100vh) scale(.8524)}}.snow:nth-child(9){opacity:.566;transform:translate(88.8641vw,-10px) scale(.8936);animation:fall-9 12s -23s linear infinite}@keyframes fall-9{30.682%{transform:translate(92.1905vw,30.682vh) scale(.8936)}to{transform:translate(90.5273vw,100vh) scale(.8936)}}.snow:nth-child(10){opacity:1.114;transform:translate(71.3418vw,-10px) scale(.5505);animation:fall-10 21s -13s linear infinite}@keyframes fall-10{41.474%{transform:translate(78.4549vw,41.474vh) scale(.5505)}to{transform:translate(74.89835vw,100vh) scale(.5505)}}.snow:nth-child(11){opacity:1.1262;transform:translate(80.8718vw,-10px) scale(.4782);animation:fall-11 20s -8s linear infinite}@keyframes fall-11{68.986%{transform:translate(89.147vw,68.986vh) scale(.4782)}to{transform:translate(85.0094vw,100vh) scale(.4782)}}.snow:nth-child(12){opacity:1.0056;transform:translate(36.2505vw,-10px) scale(.8795);animation:fall-12 20s -6s linear infinite}@keyframes fall-12{44.325%{transform:translate(28.9545vw,44.325vh) scale(.8795)}to{transform:translate(32.6025vw,100vh) scale(.8795)}}.snow:nth-child(13){opacity:1.5778;transform:translate(37.9893vw,-10px) scale(.2082);animation:fall-13 21s -19s linear infinite}@keyframes fall-13{31.356%{transform:translate(34.4542vw,31.356vh) scale(.2082)}to{transform:translate(36.22175vw,100vh) scale(.2082)}}.snow:nth-child(14){opacity:1.825;transform:translate(23.6995vw,-10px) scale(.182);animation:fall-14 23s -7s linear infinite}@keyframes fall-14{43.323%{transform:translate(30.6495vw,43.323vh) scale(.182)}to{transform:translate(27.1745vw,100vh) scale(.182)}}.snow:nth-child(15){opacity:.3566;transform:translate(55.8069vw,-10px) scale(.2043);animation:fall-15 25s -20s linear infinite}@keyframes fall-15{51.877%{transform:translate(51.7516vw,51.877vh) scale(.2043)}to{transform:translate(53.77925vw,100vh) scale(.2043)}}.snow:nth-child(16){opacity:1.086;transform:translate(18.9825vw,-10px) scale(.4956);animation:fall-16 20s -28s linear infinite}@keyframes fall-16{38.032%{transform:translate(18.4332vw,38.032vh) scale(.4956)}to{transform:translate(18.70785vw,100vh) scale(.4956)}}.snow:nth-child(17){opacity:1.0544;transform:translate(86.9695vw,-10px) scale(.1971);animation:fall-17 18s -13s linear infinite}@keyframes fall-17{68.069%{transform:translate(83.3902vw,68.069vh) scale(.1971)}to{transform:translate(85.17985vw,100vh) scale(.1971)}}.snow:nth-child(18){opacity:.7112;transform:translate(39.369vw,-10px) scale(.6007);animation:fall-18 24s -4s linear infinite}@keyframes fall-18{33.128%{transform:translate(47.2645vw,33.128vh) scale(.6007)}to{transform:translate(43.31675vw,100vh) scale(.6007)}}.snow:nth-child(19){opacity:1.1662;transform:translate(37.2349vw,-10px) scale(.3625);animation:fall-19 22s -3s linear infinite}@keyframes fall-19{38.746%{transform:translate(36.5306vw,38.746vh) scale(.3625)}to{transform:translate(36.88275vw,100vh) scale(.3625)}}.snow:nth-child(20){opacity:1.9328;transform:translate(10.3555vw,-10px) scale(.9408);animation:fall-20 25s -4s linear infinite}@keyframes fall-20{61.666%{transform:translate(19.5253vw,61.666vh) scale(.9408)}to{transform:translate(14.9404vw,100vh) scale(.9408)}}.snow:nth-child(21){opacity:.98;transform:translate(8.4677vw,-10px) scale(.7497);animation:fall-21 11s -17s linear infinite}@keyframes fall-21{58.622%{transform:translate(18.0806vw,58.622vh) scale(.7497)}to{transform:translate(13.27415vw,100vh) scale(.7497)}}.snow:nth-child(22){opacity:.1506;transform:translate(15.2134vw,-10px) scale(.0407);animation:fall-22 20s -25s linear infinite}@keyframes fall-22{78.174%{transform:translate(20.3392vw,78.174vh) scale(.0407)}to{transform:translate(17.7763vw,100vh) scale(.0407)}}.snow:nth-child(23){opacity:1.5326;transform:translate(3.5625vw,-10px) scale(.5494);animation:fall-23 12s -3s linear infinite}@keyframes fall-23{72.779%{transform:translate(10.4917vw,72.779vh) scale(.5494)}to{transform:translate(7.0271vw,100vh) scale(.5494)}}.snow:nth-child(24){opacity:1.6782;transform:translate(32.9394vw,-10px) scale(.9654);animation:fall-24 29s -19s linear infinite}@keyframes fall-24{38.631%{transform:translate(38.2188vw,38.631vh) scale(.9654)}to{transform:translate(35.5791vw,100vh) scale(.9654)}}.snow:nth-child(25){opacity:.9762;transform:translate(13.5224vw,-10px) scale(.2587);animation:fall-25 30s -11s linear infinite}@keyframes fall-25{49.638%{transform:translate(18.9376vw,49.638vh) scale(.2587)}to{transform:translate(16.23vw,100vh) scale(.2587)}}.snow:nth-child(26){opacity:1.74;transform:translate(12.3334vw,-10px) scale(.618);animation:fall-26 15s -27s linear infinite}@keyframes fall-26{76.531%{transform:translate(7.6146vw,76.531vh) scale(.618)}to{transform:translate(9.974vw,100vh) scale(.618)}}.snow:nth-child(27){opacity:.7604;transform:translate(20.8099vw,-10px) scale(.2006);animation:fall-27 26s -28s linear infinite}@keyframes fall-27{72.662%{transform:translate(27.6873vw,72.662vh) scale(.2006)}to{transform:translate(24.2486vw,100vh) scale(.2006)}}.snow:nth-child(28){opacity:.7862;transform:translate(18.0034vw,-10px) scale(.3962);animation:fall-28 30s -25s linear infinite}@keyframes fall-28{74.539%{transform:translate(27.3825vw,74.539vh) scale(.3962)}to{transform:translate(22.69295vw,100vh) scale(.3962)}}.snow:nth-child(29){opacity:.8134;transform:translate(99.4354vw,-10px) scale(.1792);animation:fall-29 13s -4s linear infinite}@keyframes fall-29{69.406%{transform:translate(108.4882vw,69.406vh) scale(.1792)}to{transform:translate(103.9618vw,100vh) scale(.1792)}}.snow:nth-child(30){opacity:1.0372;transform:translate(77.1376vw,-10px) scale(.268);animation:fall-30 17s -27s linear infinite}@keyframes fall-30{36.254%{transform:translate(85.976vw,36.254vh) scale(.268)}to{transform:translate(81.5568vw,100vh) scale(.268)}}.snow:nth-child(31){opacity:1.3818;transform:translate(93.6861vw,-10px) scale(.1704);animation:fall-31 24s -27s linear infinite}@keyframes fall-31{61.355%{transform:translate(84.0768vw,61.355vh) scale(.1704)}to{transform:translate(88.88145vw,100vh) scale(.1704)}}.snow:nth-child(32){opacity:.6896;transform:translate(68.3953vw,-10px) scale(.4558);animation:fall-32 16s -1s linear infinite}@keyframes fall-32{76.344%{transform:translate(73.406vw,76.344vh) scale(.4558)}to{transform:translate(70.90065vw,100vh) scale(.4558)}}.snow:nth-child(33){opacity:.9314;transform:translate(62.8384vw,-10px) scale(.1164);animation:fall-33 22s -16s linear infinite}@keyframes fall-33{77.64%{transform:translate(67.7602vw,77.64vh) scale(.1164)}to{transform:translate(65.2993vw,100vh) scale(.1164)}}.snow:nth-child(34){opacity:1.2628;transform:translate(9.9831vw,-10px) scale(.7592);animation:fall-34 12s -29s linear infinite}@keyframes fall-34{39.738%{transform:translate(10.761vw,39.738vh) scale(.7592)}to{transform:translate(10.37205vw,100vh) scale(.7592)}}.snow:nth-child(35){opacity:.1462;transform:translate(37.0274vw,-10px) scale(.1727);animation:fall-35 25s -27s linear infinite}@keyframes fall-35{49.845%{transform:translate(33.0589vw,49.845vh) scale(.1727)}to{transform:translate(35.04315vw,100vh) scale(.1727)}}.snow:nth-child(36){opacity:1.582;transform:translate(48.5872vw,-10px) scale(.2391);animation:fall-36 18s -10s linear infinite}@keyframes fall-36{34.721%{transform:translate(58.1312vw,34.721vh) scale(.2391)}to{transform:translate(53.3592vw,100vh) scale(.2391)}}.snow:nth-child(37){opacity:1.5674;transform:translate(19.7655vw,-10px) scale(.1068);animation:fall-37 15s -3s linear infinite}@keyframes fall-37{37.29%{transform:translate(21.8838vw,37.29vh) scale(.1068)}to{transform:translate(20.82465vw,100vh) scale(.1068)}}.snow:nth-child(38){opacity:.2184;transform:translate(85.9432vw,-10px) scale(.007);animation:fall-38 30s -16s linear infinite}@keyframes fall-38{39.266%{transform:translate(76.9948vw,39.266vh) scale(.007)}to{transform:translate(81.469vw,100vh) scale(.007)}}.snow:nth-child(39){opacity:.0188;transform:translate(99.9646vw,-10px) scale(.2837);animation:fall-39 16s -25s linear infinite}@keyframes fall-39{60.42%{transform:translate(103.8946vw,60.42vh) scale(.2837)}to{transform:translate(101.9296vw,100vh) scale(.2837)}}.snow:nth-child(40){opacity:1.8852;transform:translate(63.9886vw,-10px) scale(.1392);animation:fall-40 22s -18s linear infinite}@keyframes fall-40{69.939%{transform:translate(73.3278vw,69.939vh) scale(.1392)}to{transform:translate(68.6582vw,100vh) scale(.1392)}}.snow:nth-child(41){opacity:.5942;transform:translate(79.7566vw,-10px) scale(.2245);animation:fall-41 19s -4s linear infinite}@keyframes fall-41{58.955%{transform:translate(70.5136vw,58.955vh) scale(.2245)}to{transform:translate(75.1351vw,100vh) scale(.2245)}}.snow:nth-child(42){opacity:1.2352;transform:translate(31.5388vw,-10px) scale(.627);animation:fall-42 28s -23s linear infinite}@keyframes fall-42{59.579%{transform:translate(24.3592vw,59.579vh) scale(.627)}to{transform:translate(27.949vw,100vh) scale(.627)}}.snow:nth-child(43){opacity:1.708;transform:translate(80.2659vw,-10px) scale(.5583);animation:fall-43 10s -7s linear infinite}@keyframes fall-43{59.63%{transform:translate(72.7609vw,59.63vh) scale(.5583)}to{transform:translate(76.5134vw,100vh) scale(.5583)}}.snow:nth-child(44){opacity:.9838;transform:translate(40.3169vw,-10px) scale(.0435);animation:fall-44 27s -15s linear infinite}@keyframes fall-44{33.177%{transform:translate(36.6244vw,33.177vh) scale(.0435)}to{transform:translate(38.47065vw,100vh) scale(.0435)}}.snow:nth-child(45){opacity:1.1784;transform:translate(85.7057vw,-10px) scale(.2244);animation:fall-45 19s -29s linear infinite}@keyframes fall-45{64.916%{transform:translate(93.498vw,64.916vh) scale(.2244)}to{transform:translate(89.60185vw,100vh) scale(.2244)}}.snow:nth-child(46){opacity:.3542;transform:translate(93.2433vw,-10px) scale(.8611);animation:fall-46 24s -24s linear infinite}@keyframes fall-46{61.832%{transform:translate(99.3087vw,61.832vh) scale(.8611)}to{transform:translate(96.276vw,100vh) scale(.8611)}}.snow:nth-child(47){opacity:.7074;transform:translate(22.4581vw,-10px) scale(.2827);animation:fall-47 12s -7s linear infinite}@keyframes fall-47{64.228%{transform:translate(17.871vw,64.228vh) scale(.2827)}to{transform:translate(20.16455vw,100vh) scale(.2827)}}.snow:nth-child(48){opacity:.7402;transform:translate(16.508vw,-10px) scale(.8265);animation:fall-48 27s -23s linear infinite}@keyframes fall-48{62.621%{transform:translate(26.1957vw,62.621vh) scale(.8265)}to{transform:translate(21.35185vw,100vh) scale(.8265)}}.snow:nth-child(49){opacity:.8366;transform:translate(93.6132vw,-10px) scale(.9417);animation:fall-49 29s -22s linear infinite}@keyframes fall-49{72.09%{transform:translate(100.4981vw,72.09vh) scale(.9417)}to{transform:translate(97.05565vw,100vh) scale(.9417)}}.snow:nth-child(50){opacity:.9494;transform:translate(6.4861vw,-10px) scale(.5922);animation:fall-50 22s -5s linear infinite}@keyframes fall-50{46.742%{transform:translate(11.7795vw,46.742vh) scale(.5922)}to{transform:translate(9.1328vw,100vh) scale(.5922)}}.snow:nth-child(51){opacity:.7554;transform:translate(16.9489vw,-10px) scale(.9175);animation:fall-51 24s -8s linear infinite}@keyframes fall-51{71.286%{transform:translate(11.5369vw,71.286vh) scale(.9175)}to{transform:translate(14.2429vw,100vh) scale(.9175)}}.snow:nth-child(52){opacity:1.4474;transform:translate(41.0599vw,-10px) scale(.0159);animation:fall-52 10s -29s linear infinite}@keyframes fall-52{71.916%{transform:translate(44.8851vw,71.916vh) scale(.0159)}to{transform:translate(42.9725vw,100vh) scale(.0159)}}.snow:nth-child(53){opacity:.0812;transform:translate(54.0526vw,-10px) scale(.6375);animation:fall-53 10s -9s linear infinite}@keyframes fall-53{68.318%{transform:translate(53.6301vw,68.318vh) scale(.6375)}to{transform:translate(53.84135vw,100vh) scale(.6375)}}.snow:nth-child(54){opacity:.5994;transform:translate(76.6169vw,-10px) scale(.5621);animation:fall-54 18s -17s linear infinite}@keyframes fall-54{55.373%{transform:translate(76.9644vw,55.373vh) scale(.5621)}to{transform:translate(76.79065vw,100vh) scale(.5621)}}.snow:nth-child(55){opacity:1.445;transform:translate(93.5602vw,-10px) scale(.0129);animation:fall-55 24s -20s linear infinite}@keyframes fall-55{74.765%{transform:translate(98.6346vw,74.765vh) scale(.0129)}to{transform:translate(96.0974vw,100vh) scale(.0129)}}.snow:nth-child(56){opacity:.4892;transform:translate(10.3544vw,-10px) scale(.496);animation:fall-56 18s -30s linear infinite}@keyframes fall-56{71.732%{transform:translate(11.2301vw,71.732vh) scale(.496)}to{transform:translate(10.79225vw,100vh) scale(.496)}}.snow:nth-child(57){opacity:1.531;transform:translate(56.5969vw,-10px) scale(.2129);animation:fall-57 21s -26s linear infinite}@keyframes fall-57{45.112%{transform:translate(51.6883vw,45.112vh) scale(.2129)}to{transform:translate(54.1426vw,100vh) scale(.2129)}}.snow:nth-child(58){opacity:1.98;transform:translate(69.7879vw,-10px) scale(.2494);animation:fall-58 21s -7s linear infinite}@keyframes fall-58{66.913%{transform:translate(63.3187vw,66.913vh) scale(.2494)}to{transform:translate(66.5533vw,100vh) scale(.2494)}}.snow:nth-child(59){opacity:.879;transform:translate(16.8125vw,-10px) scale(.5659);animation:fall-59 23s -13s linear infinite}@keyframes fall-59{61.723%{transform:translate(14.5337vw,61.723vh) scale(.5659)}to{transform:translate(15.6731vw,100vh) scale(.5659)}}.snow:nth-child(60){opacity:1.0814;transform:translate(19.9317vw,-10px) scale(.6697);animation:fall-60 25s -30s linear infinite}@keyframes fall-60{40.866%{transform:translate(11.6367vw,40.866vh) scale(.6697)}to{transform:translate(15.7842vw,100vh) scale(.6697)}}.snow:nth-child(61){opacity:1.771;transform:translate(35.5929vw,-10px) scale(.5856);animation:fall-61 12s -30s linear infinite}@keyframes fall-61{40.43%{transform:translate(45.4141vw,40.43vh) scale(.5856)}to{transform:translate(40.5035vw,100vh) scale(.5856)}}.snow:nth-child(62){opacity:1.1704;transform:translate(17.4914vw,-10px) scale(.6098);animation:fall-62 30s -30s linear infinite}@keyframes fall-62{68.932%{transform:translate(18.4933vw,68.932vh) scale(.6098)}to{transform:translate(17.99235vw,100vh) scale(.6098)}}.snow:nth-child(63){opacity:.8008;transform:translate(14.6477vw,-10px) scale(.699);animation:fall-63 16s -8s linear infinite}@keyframes fall-63{78.417%{transform:translate(15.6298vw,78.417vh) scale(.699)}to{transform:translate(15.13875vw,100vh) scale(.699)}}.snow:nth-child(64){opacity:1.3294;transform:translate(47.4097vw,-10px) scale(.1654);animation:fall-64 12s -7s linear infinite}@keyframes fall-64{55.912%{transform:translate(44.6297vw,55.912vh) scale(.1654)}to{transform:translate(46.0197vw,100vh) scale(.1654)}}.snow:nth-child(65){opacity:1.8806;transform:translate(18.7011vw,-10px) scale(.1777);animation:fall-65 27s -12s linear infinite}@keyframes fall-65{73.278%{transform:translate(11.433vw,73.278vh) scale(.1777)}to{transform:translate(15.06705vw,100vh) scale(.1777)}}.snow:nth-child(66){opacity:.0936;transform:translate(96.8962vw,-10px) scale(.716);animation:fall-66 11s -17s linear infinite}@keyframes fall-66{55.947%{transform:translate(102.6781vw,55.947vh) scale(.716)}to{transform:translate(99.78715vw,100vh) scale(.716)}}.snow:nth-child(67){opacity:1.2794;transform:translate(36.341vw,-10px) scale(.2474);animation:fall-67 24s -5s linear infinite}@keyframes fall-67{48.785%{transform:translate(37.4664vw,48.785vh) scale(.2474)}to{transform:translate(36.9037vw,100vh) scale(.2474)}}.snow:nth-child(68){opacity:.3622;transform:translate(31.7721vw,-10px) scale(.1522);animation:fall-68 13s -22s linear infinite}@keyframes fall-68{31.974%{transform:translate(22.5669vw,31.974vh) scale(.1522)}to{transform:translate(27.1695vw,100vh) scale(.1522)}}.snow:nth-child(69){opacity:1.2044;transform:translate(19.3436vw,-10px) scale(.5671);animation:fall-69 12s -6s linear infinite}@keyframes fall-69{67.208%{transform:translate(16.4835vw,67.208vh) scale(.5671)}to{transform:translate(17.91355vw,100vh) scale(.5671)}}.snow:nth-child(70){opacity:1.2388;transform:translate(34.3985vw,-10px) scale(.5464);animation:fall-70 16s -13s linear infinite}@keyframes fall-70{38.281%{transform:translate(25.0316vw,38.281vh) scale(.5464)}to{transform:translate(29.71505vw,100vh) scale(.5464)}}.snow:nth-child(71){opacity:.5758;transform:translate(37.1195vw,-10px) scale(.9926);animation:fall-71 26s -9s linear infinite}@keyframes fall-71{41.027%{transform:translate(28.9529vw,41.027vh) scale(.9926)}to{transform:translate(33.0362vw,100vh) scale(.9926)}}.snow:nth-child(72){opacity:1.2584;transform:translate(56.1977vw,-10px) scale(.1952);animation:fall-72 30s -14s linear infinite}@keyframes fall-72{66.436%{transform:translate(58.5041vw,66.436vh) scale(.1952)}to{transform:translate(57.3509vw,100vh) scale(.1952)}}.snow:nth-child(73){opacity:1.586;transform:translate(90.4693vw,-10px) scale(.4505);animation:fall-73 28s -9s linear infinite}@keyframes fall-73{62.433%{transform:translate(92.9495vw,62.433vh) scale(.4505)}to{transform:translate(91.7094vw,100vh) scale(.4505)}}.snow:nth-child(74){opacity:.8694;transform:translate(7.455vw,-10px) scale(.8103);animation:fall-74 17s -30s linear infinite}@keyframes fall-74{38.947%{transform:translate(13.0298vw,38.947vh) scale(.8103)}to{transform:translate(10.2424vw,100vh) scale(.8103)}}.snow:nth-child(75){opacity:.5304;transform:translate(71.04vw,-10px) scale(.2057);animation:fall-75 22s -24s linear infinite}@keyframes fall-75{57.437%{transform:translate(77.7105vw,57.437vh) scale(.2057)}to{transform:translate(74.37525vw,100vh) scale(.2057)}}.snow:nth-child(76){opacity:.183;transform:translate(9.382vw,-10px) scale(.4218);animation:fall-76 25s -2s linear infinite}@keyframes fall-76{40.73%{transform:translate(9.3856vw,40.73vh) scale(.4218)}to{transform:translate(9.3838vw,100vh) scale(.4218)}}.snow:nth-child(77){opacity:.9284;transform:translate(87.3147vw,-10px) scale(.311);animation:fall-77 14s -20s linear infinite}@keyframes fall-77{39.114%{transform:translate(83.6579vw,39.114vh) scale(.311)}to{transform:translate(85.4863vw,100vh) scale(.311)}}.snow:nth-child(78){opacity:1.5534;transform:translate(66.3345vw,-10px) scale(.5972);animation:fall-78 11s -19s linear infinite}@keyframes fall-78{50.006%{transform:translate(57.3304vw,50.006vh) scale(.5972)}to{transform:translate(61.83245vw,100vh) scale(.5972)}}.snow:nth-child(79){opacity:.261;transform:translate(88.8078vw,-10px) scale(.7287);animation:fall-79 12s -7s linear infinite}@keyframes fall-79{33.458%{transform:translate(87.7403vw,33.458vh) scale(.7287)}to{transform:translate(88.27405vw,100vh) scale(.7287)}}.snow:nth-child(80){opacity:1.095;transform:translate(12.2101vw,-10px) scale(.6532);animation:fall-80 29s -27s linear infinite}@keyframes fall-80{71.612%{transform:translate(18.6663vw,71.612vh) scale(.6532)}to{transform:translate(15.4382vw,100vh) scale(.6532)}}.snow:nth-child(81){opacity:.2986;transform:translate(13.3228vw,-10px) scale(.9077);animation:fall-81 25s -9s linear infinite}@keyframes fall-81{67.317%{transform:translate(9.4182vw,67.317vh) scale(.9077)}to{transform:translate(11.3705vw,100vh) scale(.9077)}}.snow:nth-child(82){opacity:.9896;transform:translate(57.843vw,-10px) scale(.6444);animation:fall-82 15s -30s linear infinite}@keyframes fall-82{41.535%{transform:translate(56.2589vw,41.535vh) scale(.6444)}to{transform:translate(57.05095vw,100vh) scale(.6444)}}.snow:nth-child(83){opacity:1.8044;transform:translate(54.6242vw,-10px) scale(.0775);animation:fall-83 15s -29s linear infinite}@keyframes fall-83{41.314%{transform:translate(54.7404vw,41.314vh) scale(.0775)}to{transform:translate(54.6823vw,100vh) scale(.0775)}}.snow:nth-child(84){opacity:1.0516;transform:translate(98.8409vw,-10px) scale(.5892);animation:fall-84 18s -1s linear infinite}@keyframes fall-84{54.094%{transform:translate(107.8891vw,54.094vh) scale(.5892)}to{transform:translate(103.365vw,100vh) scale(.5892)}}.snow:nth-child(85){opacity:.6076;transform:translate(84.312vw,-10px) scale(.9114);animation:fall-85 13s -17s linear infinite}@keyframes fall-85{50.324%{transform:translate(93.7546vw,50.324vh) scale(.9114)}to{transform:translate(89.0333vw,100vh) scale(.9114)}}.snow:nth-child(86){opacity:.5092;transform:translate(99.1121vw,-10px) scale(.9301);animation:fall-86 24s -5s linear infinite}@keyframes fall-86{62.619%{transform:translate(109.0734vw,62.619vh) scale(.9301)}to{transform:translate(104.09275vw,100vh) scale(.9301)}}.snow:nth-child(87){opacity:1.1248;transform:translate(47.574vw,-10px) scale(.2361);animation:fall-87 13s -10s linear infinite}@keyframes fall-87{39.915%{transform:translate(53.704vw,39.915vh) scale(.2361)}to{transform:translate(50.639vw,100vh) scale(.2361)}}.snow:nth-child(88){opacity:1.1906;transform:translate(72.4027vw,-10px) scale(.3831);animation:fall-88 22s -25s linear infinite}@keyframes fall-88{69.771%{transform:translate(75.0931vw,69.771vh) scale(.3831)}to{transform:translate(73.7479vw,100vh) scale(.3831)}}.snow:nth-child(89){opacity:1.778;transform:translate(20.2489vw,-10px) scale(.4538);animation:fall-89 29s -14s linear infinite}@keyframes fall-89{66.397%{transform:translate(19.5053vw,66.397vh) scale(.4538)}to{transform:translate(19.8771vw,100vh) scale(.4538)}}.snow:nth-child(90){opacity:1.0894;transform:translate(8.5373vw,-10px) scale(.6976);animation:fall-90 29s -29s linear infinite}@keyframes fall-90{67.036%{transform:translate(2.5511vw,67.036vh) scale(.6976)}to{transform:translate(5.5442vw,100vh) scale(.6976)}}.snow:nth-child(91){opacity:1.7776;transform:translate(61.6315vw,-10px) scale(.4258);animation:fall-91 15s -30s linear infinite}@keyframes fall-91{68.172%{transform:translate(60.1075vw,68.172vh) scale(.4258)}to{transform:translate(60.8695vw,100vh) scale(.4258)}}.snow:nth-child(92){opacity:1.3442;transform:translate(71.1651vw,-10px) scale(.8761);animation:fall-92 10s -29s linear infinite}@keyframes fall-92{71.836%{transform:translate(63.5527vw,71.836vh) scale(.8761)}to{transform:translate(67.3589vw,100vh) scale(.8761)}}.snow:nth-child(93){opacity:.3328;transform:translate(8.5565vw,-10px) scale(.7026);animation:fall-93 13s -23s linear infinite}@keyframes fall-93{78.913%{transform:translate(15.0353vw,78.913vh) scale(.7026)}to{transform:translate(11.7959vw,100vh) scale(.7026)}}.snow:nth-child(94){opacity:.2294;transform:translate(72.3582vw,-10px) scale(.0184);animation:fall-94 26s -7s linear infinite}@keyframes fall-94{50.269%{transform:translate(66.4515vw,50.269vh) scale(.0184)}to{transform:translate(69.40485vw,100vh) scale(.0184)}}.snow:nth-child(95){opacity:1.9434;transform:translate(88.1663vw,-10px) scale(.7908);animation:fall-95 15s -24s linear infinite}@keyframes fall-95{42.264%{transform:translate(97.8036vw,42.264vh) scale(.7908)}to{transform:translate(92.98495vw,100vh) scale(.7908)}}.snow:nth-child(96){opacity:.5424;transform:translate(61.8425vw,-10px) scale(.1296);animation:fall-96 18s -1s linear infinite}@keyframes fall-96{39.254%{transform:translate(53.4262vw,39.254vh) scale(.1296)}to{transform:translate(57.63435vw,100vh) scale(.1296)}}.snow:nth-child(97){opacity:1.4622;transform:translate(86.8326vw,-10px) scale(.876);animation:fall-97 15s -24s linear infinite}@keyframes fall-97{59.283%{transform:translate(79.8804vw,59.283vh) scale(.876)}to{transform:translate(83.3565vw,100vh) scale(.876)}}.snow:nth-child(98){opacity:.7004;transform:translate(85.0201vw,-10px) scale(.1556);animation:fall-98 17s -16s linear infinite}@keyframes fall-98{72.209%{transform:translate(91.8244vw,72.209vh) scale(.1556)}to{transform:translate(88.42225vw,100vh) scale(.1556)}}.snow:nth-child(99){opacity:1.147;transform:translate(97.852vw,-10px) scale(.5461);animation:fall-99 18s -11s linear infinite}@keyframes fall-99{36.346%{transform:translate(88.2372vw,36.346vh) scale(.5461)}to{transform:translate(93.0446vw,100vh) scale(.5461)}}.snow:nth-child(100){opacity:.143;transform:translate(54.1609vw,-10px) scale(.2289);animation:fall-100 17s -5s linear infinite}@keyframes fall-100{48.074%{transform:translate(60.9404vw,48.074vh) scale(.2289)}to{transform:translate(57.55065vw,100vh) scale(.2289)}}.snow:nth-child(101){opacity:1.8302;transform:translate(97.8956vw,-10px) scale(.3495);animation:fall-101 23s -8s linear infinite}@keyframes fall-101{60.972%{transform:translate(103.9087vw,60.972vh) scale(.3495)}to{transform:translate(100.90215vw,100vh) scale(.3495)}}.snow:nth-child(102){opacity:.5918;transform:translate(62.0704vw,-10px) scale(.7887);animation:fall-102 29s -26s linear infinite}@keyframes fall-102{39.603%{transform:translate(65.7008vw,39.603vh) scale(.7887)}to{transform:translate(63.8856vw,100vh) scale(.7887)}}.snow:nth-child(103){opacity:.7986;transform:translate(80.1736vw,-10px) scale(.2613);animation:fall-103 12s -22s linear infinite}@keyframes fall-103{40.075%{transform:translate(82.9645vw,40.075vh) scale(.2613)}to{transform:translate(81.56905vw,100vh) scale(.2613)}}.snow:nth-child(104){opacity:1.3918;transform:translate(37.4761vw,-10px) scale(.375);animation:fall-104 13s -28s linear infinite}@keyframes fall-104{31.912%{transform:translate(43.1267vw,31.912vh) scale(.375)}to{transform:translate(40.3014vw,100vh) scale(.375)}}.snow:nth-child(105){opacity:1.712;transform:translate(18.3513vw,-10px) scale(.3614);animation:fall-105 30s -26s linear infinite}@keyframes fall-105{51.799%{transform:translate(9.33vw,51.799vh) scale(.3614)}to{transform:translate(13.84065vw,100vh) scale(.3614)}}.snow:nth-child(106){opacity:.3522;transform:translate(51.2135vw,-10px) scale(.2618);animation:fall-106 14s -29s linear infinite}@keyframes fall-106{50.523%{transform:translate(56.8104vw,50.523vh) scale(.2618)}to{transform:translate(54.01195vw,100vh) scale(.2618)}}.snow:nth-child(107){opacity:1.0808;transform:translate(38.9604vw,-10px) scale(.0003);animation:fall-107 14s -3s linear infinite}@keyframes fall-107{57.693%{transform:translate(43.1478vw,57.693vh) scale(.0003)}to{transform:translate(41.0541vw,100vh) scale(.0003)}}.snow:nth-child(108){opacity:1.1486;transform:translate(50.7453vw,-10px) scale(.2794);animation:fall-108 13s -9s linear infinite}@keyframes fall-108{52.378%{transform:translate(44.8549vw,52.378vh) scale(.2794)}to{transform:translate(47.8001vw,100vh) scale(.2794)}}.snow:nth-child(109){opacity:.0648;transform:translate(41.6809vw,-10px) scale(.302);animation:fall-109 24s -14s linear infinite}@keyframes fall-109{53.294%{transform:translate(40.1002vw,53.294vh) scale(.302)}to{transform:translate(40.89055vw,100vh) scale(.302)}}.snow:nth-child(110){opacity:1.8768;transform:translate(3.7276vw,-10px) scale(.8981);animation:fall-110 15s -28s linear infinite}@keyframes fall-110{37.784%{transform:translate(7.5907vw,37.784vh) scale(.8981)}to{transform:translate(5.65915vw,100vh) scale(.8981)}}.snow:nth-child(111){opacity:.3642;transform:translate(6.0488vw,-10px) scale(.6624);animation:fall-111 13s -25s linear infinite}@keyframes fall-111{44.722%{transform:translate(9.9084vw,44.722vh) scale(.6624)}to{transform:translate(7.9786vw,100vh) scale(.6624)}}.snow:nth-child(112){opacity:.7094;transform:translate(91.9965vw,-10px) scale(.2649);animation:fall-112 17s -11s linear infinite}@keyframes fall-112{45.295%{transform:translate(83.234vw,45.295vh) scale(.2649)}to{transform:translate(87.61525vw,100vh) scale(.2649)}}.snow:nth-child(113){opacity:1.713;transform:translate(74.1698vw,-10px) scale(.5985);animation:fall-113 23s -3s linear infinite}@keyframes fall-113{74.853%{transform:translate(82.0192vw,74.853vh) scale(.5985)}to{transform:translate(78.0945vw,100vh) scale(.5985)}}.snow:nth-child(114){opacity:.2568;transform:translate(11.8389vw,-10px) scale(.2391);animation:fall-114 30s -16s linear infinite}@keyframes fall-114{34.156%{transform:translate(10.5082vw,34.156vh) scale(.2391)}to{transform:translate(11.17355vw,100vh) scale(.2391)}}.snow:nth-child(115){opacity:1.38;transform:translate(82.8013vw,-10px) scale(.1089);animation:fall-115 25s -24s linear infinite}@keyframes fall-115{46.399%{transform:translate(78.931vw,46.399vh) scale(.1089)}to{transform:translate(80.86615vw,100vh) scale(.1089)}}.snow:nth-child(116){opacity:1.8488;transform:translate(67.9061vw,-10px) scale(.5603);animation:fall-116 14s -25s linear infinite}@keyframes fall-116{62.36%{transform:translate(61.2338vw,62.36vh) scale(.5603)}to{transform:translate(64.56995vw,100vh) scale(.5603)}}.snow:nth-child(117){opacity:1.4698;transform:translate(71.9059vw,-10px) scale(.2361);animation:fall-117 30s -16s linear infinite}@keyframes fall-117{49.454%{transform:translate(63.1841vw,49.454vh) scale(.2361)}to{transform:translate(67.545vw,100vh) scale(.2361)}}.snow:nth-child(118){opacity:.9774;transform:translate(14.3492vw,-10px) scale(.3089);animation:fall-118 18s -24s linear infinite}@keyframes fall-118{43.532%{transform:translate(12.7354vw,43.532vh) scale(.3089)}to{transform:translate(13.5423vw,100vh) scale(.3089)}}.snow:nth-child(119){opacity:.636;transform:translate(77.809vw,-10px) scale(.1756);animation:fall-119 21s -20s linear infinite}@keyframes fall-119{48.948%{transform:translate(83.3456vw,48.948vh) scale(.1756)}to{transform:translate(80.5773vw,100vh) scale(.1756)}}.snow:nth-child(120){opacity:1.735;transform:translate(98.0507vw,-10px) scale(.4044);animation:fall-120 23s -27s linear infinite}@keyframes fall-120{70.214%{transform:translate(104.0539vw,70.214vh) scale(.4044)}to{transform:translate(101.0523vw,100vh) scale(.4044)}}.snow:nth-child(121){opacity:1.1716;transform:translate(73.7719vw,-10px) scale(.8333);animation:fall-121 27s -26s linear infinite}@keyframes fall-121{62.019%{transform:translate(72.2592vw,62.019vh) scale(.8333)}to{transform:translate(73.01555vw,100vh) scale(.8333)}}.snow:nth-child(122){opacity:1.386;transform:translate(23.6461vw,-10px) scale(.1826);animation:fall-122 24s -27s linear infinite}@keyframes fall-122{57.144%{transform:translate(20.3162vw,57.144vh) scale(.1826)}to{transform:translate(21.98115vw,100vh) scale(.1826)}}.snow:nth-child(123){opacity:1.8062;transform:translate(68.5837vw,-10px) scale(.693);animation:fall-123 11s -24s linear infinite}@keyframes fall-123{55.877%{transform:translate(64.2355vw,55.877vh) scale(.693)}to{transform:translate(66.4096vw,100vh) scale(.693)}}.snow:nth-child(124){opacity:.3378;transform:translate(43.4112vw,-10px) scale(.2891);animation:fall-124 22s -24s linear infinite}@keyframes fall-124{64.632%{transform:translate(52.6698vw,64.632vh) scale(.2891)}to{transform:translate(48.0405vw,100vh) scale(.2891)}}.snow:nth-child(125){opacity:1.2696;transform:translate(38.3422vw,-10px) scale(.8365);animation:fall-125 14s -11s linear infinite}@keyframes fall-125{42.692%{transform:translate(38.9292vw,42.692vh) scale(.8365)}to{transform:translate(38.6357vw,100vh) scale(.8365)}}.snow:nth-child(126){opacity:.893;transform:translate(9.6864vw,-10px) scale(.7417);animation:fall-126 26s -4s linear infinite}@keyframes fall-126{73.725%{transform:translate(19.3794vw,73.725vh) scale(.7417)}to{transform:translate(14.5329vw,100vh) scale(.7417)}}.snow:nth-child(127){opacity:.1964;transform:translate(31.1936vw,-10px) scale(.5925);animation:fall-127 19s -27s linear infinite}@keyframes fall-127{47.35%{transform:translate(33.869vw,47.35vh) scale(.5925)}to{transform:translate(32.5313vw,100vh) scale(.5925)}}.snow:nth-child(128){opacity:.4792;transform:translate(17.2019vw,-10px) scale(.4985);animation:fall-128 30s -11s linear infinite}@keyframes fall-128{66.054%{transform:translate(14.9559vw,66.054vh) scale(.4985)}to{transform:translate(16.0789vw,100vh) scale(.4985)}}.snow:nth-child(129){opacity:.9278;transform:translate(29.1635vw,-10px) scale(.0432);animation:fall-129 14s -9s linear infinite}@keyframes fall-129{66.152%{transform:translate(28.9359vw,66.152vh) scale(.0432)}to{transform:translate(29.0497vw,100vh) scale(.0432)}}.snow:nth-child(130){opacity:.0104;transform:translate(93.9798vw,-10px) scale(.4658);animation:fall-130 21s -28s linear infinite}@keyframes fall-130{64.055%{transform:translate(86.9925vw,64.055vh) scale(.4658)}to{transform:translate(90.48615vw,100vh) scale(.4658)}}.snow:nth-child(131){opacity:1.8742;transform:translate(16.6885vw,-10px) scale(.8952);animation:fall-131 27s -9s linear infinite}@keyframes fall-131{68.575%{transform:translate(12.5594vw,68.575vh) scale(.8952)}to{transform:translate(14.62395vw,100vh) scale(.8952)}}.snow:nth-child(132){opacity:1.3878;transform:translate(21.3544vw,-10px) scale(.5621);animation:fall-132 19s -28s linear infinite}@keyframes fall-132{78.382%{transform:translate(18.7448vw,78.382vh) scale(.5621)}to{transform:translate(20.0496vw,100vh) scale(.5621)}}.snow:nth-child(133){opacity:1.9006;transform:translate(45.1792vw,-10px) scale(.6382);animation:fall-133 29s -4s linear infinite}@keyframes fall-133{41.842%{transform:translate(45.2151vw,41.842vh) scale(.6382)}to{transform:translate(45.19715vw,100vh) scale(.6382)}}.snow:nth-child(134){opacity:1.6188;transform:translate(14.0009vw,-10px) scale(.8859);animation:fall-134 28s -2s linear infinite}@keyframes fall-134{58.996%{transform:translate(6.3114vw,58.996vh) scale(.8859)}to{transform:translate(10.15615vw,100vh) scale(.8859)}}.snow:nth-child(135){opacity:1.7686;transform:translate(35.0399vw,-10px) scale(.545);animation:fall-135 22s -30s linear infinite}@keyframes fall-135{72.397%{transform:translate(25.617vw,72.397vh) scale(.545)}to{transform:translate(30.32845vw,100vh) scale(.545)}}.snow:nth-child(136){opacity:.4676;transform:translate(78.1996vw,-10px) scale(.7724);animation:fall-136 15s -7s linear infinite}@keyframes fall-136{71.544%{transform:translate(73.4039vw,71.544vh) scale(.7724)}to{transform:translate(75.80175vw,100vh) scale(.7724)}}.snow:nth-child(137){opacity:1.5666;transform:translate(89.4894vw,-10px) scale(.2077);animation:fall-137 29s -2s linear infinite}@keyframes fall-137{35.25%{transform:translate(96.0593vw,35.25vh) scale(.2077)}to{transform:translate(92.77435vw,100vh) scale(.2077)}}.snow:nth-child(138){opacity:.7574;transform:translate(12.1329vw,-10px) scale(.2547);animation:fall-138 12s -19s linear infinite}@keyframes fall-138{49.802%{transform:translate(9.6845vw,49.802vh) scale(.2547)}to{transform:translate(10.9087vw,100vh) scale(.2547)}}.snow:nth-child(139){opacity:.4944;transform:translate(14.6131vw,-10px) scale(.0291);animation:fall-139 20s -11s linear infinite}@keyframes fall-139{53.732%{transform:translate(21.5935vw,53.732vh) scale(.0291)}to{transform:translate(18.1033vw,100vh) scale(.0291)}}.snow:nth-child(140){opacity:.3008;transform:translate(64.3526vw,-10px) scale(.9347);animation:fall-140 17s -15s linear infinite}@keyframes fall-140{67.297%{transform:translate(71.9944vw,67.297vh) scale(.9347)}to{transform:translate(68.1735vw,100vh) scale(.9347)}}.snow:nth-child(141){opacity:.7888;transform:translate(6.2427vw,-10px) scale(.9564);animation:fall-141 29s -5s linear infinite}@keyframes fall-141{73.99%{transform:translate(-3.3869vw,73.99vh) scale(.9564)}to{transform:translate(1.4279vw,100vh) scale(.9564)}}.snow:nth-child(142){opacity:1.452;transform:translate(14.2655vw,-10px) scale(.8203);animation:fall-142 12s -6s linear infinite}@keyframes fall-142{61.362%{transform:translate(8.1971vw,61.362vh) scale(.8203)}to{transform:translate(11.2313vw,100vh) scale(.8203)}}.snow:nth-child(143){opacity:1.548;transform:translate(17.5254vw,-10px) scale(.9113);animation:fall-143 17s -2s linear infinite}@keyframes fall-143{56.634%{transform:translate(22.2377vw,56.634vh) scale(.9113)}to{transform:translate(19.88155vw,100vh) scale(.9113)}}.snow:nth-child(144){opacity:1.9414;transform:translate(75.5228vw,-10px) scale(.5557);animation:fall-144 30s -12s linear infinite}@keyframes fall-144{74.242%{transform:translate(69.6906vw,74.242vh) scale(.5557)}to{transform:translate(72.6067vw,100vh) scale(.5557)}}.snow:nth-child(145){opacity:1.4808;transform:translate(42.7546vw,-10px) scale(.8201);animation:fall-145 28s -19s linear infinite}@keyframes fall-145{38.731%{transform:translate(42.8544vw,38.731vh) scale(.8201)}to{transform:translate(42.8045vw,100vh) scale(.8201)}}.snow:nth-child(146){opacity:1.5216;transform:translate(68.6199vw,-10px) scale(.6268);animation:fall-146 18s -1s linear infinite}@keyframes fall-146{77.11%{transform:translate(63.2293vw,77.11vh) scale(.6268)}to{transform:translate(65.9246vw,100vh) scale(.6268)}}.snow:nth-child(147){opacity:.9986;transform:translate(26.7716vw,-10px) scale(.5833);animation:fall-147 30s -8s linear infinite}@keyframes fall-147{60.599%{transform:translate(21.2181vw,60.599vh) scale(.5833)}to{transform:translate(23.99485vw,100vh) scale(.5833)}}.snow:nth-child(148){opacity:1.129;transform:translate(84.037vw,-10px) scale(.9102);animation:fall-148 18s -11s linear infinite}@keyframes fall-148{65.428%{transform:translate(83.8052vw,65.428vh) scale(.9102)}to{transform:translate(83.9211vw,100vh) scale(.9102)}}.snow:nth-child(149){opacity:1.2512;transform:translate(24.4449vw,-10px) scale(.0675);animation:fall-149 29s -13s linear infinite}@keyframes fall-149{53.157%{transform:translate(19.4809vw,53.157vh) scale(.0675)}to{transform:translate(21.9629vw,100vh) scale(.0675)}}.snow:nth-child(150){opacity:1.9568;transform:translate(47.141vw,-10px) scale(.7359);animation:fall-150 17s -7s linear infinite}@keyframes fall-150{57.236%{transform:translate(56.4234vw,57.236vh) scale(.7359)}to{transform:translate(51.7822vw,100vh) scale(.7359)}}.snow:nth-child(151){opacity:1.0968;transform:translate(25.3577vw,-10px) scale(.3539);animation:fall-151 26s -9s linear infinite}@keyframes fall-151{63.596%{transform:translate(25.4707vw,63.596vh) scale(.3539)}to{transform:translate(25.4142vw,100vh) scale(.3539)}}.snow:nth-child(152){opacity:1.7612;transform:translate(20.1779vw,-10px) scale(.9893);animation:fall-152 16s -25s linear infinite}@keyframes fall-152{35.106%{transform:translate(22.2799vw,35.106vh) scale(.9893)}to{transform:translate(21.2289vw,100vh) scale(.9893)}}.snow:nth-child(153){opacity:.078;transform:translate(68.0924vw,-10px) scale(.902);animation:fall-153 16s -9s linear infinite}@keyframes fall-153{79.642%{transform:translate(60.8565vw,79.642vh) scale(.902)}to{transform:translate(64.47445vw,100vh) scale(.902)}}.snow:nth-child(154){opacity:1.3866;transform:translate(69.2948vw,-10px) scale(.4521);animation:fall-154 17s -12s linear infinite}@keyframes fall-154{52.443%{transform:translate(65.1932vw,52.443vh) scale(.4521)}to{transform:translate(67.244vw,100vh) scale(.4521)}}.snow:nth-child(155){opacity:.6294;transform:translate(58.3893vw,-10px) scale(.1068);animation:fall-155 28s -6s linear infinite}@keyframes fall-155{77.789%{transform:translate(58.3802vw,77.789vh) scale(.1068)}to{transform:translate(58.38475vw,100vh) scale(.1068)}}.snow:nth-child(156){opacity:.5522;transform:translate(91.5554vw,-10px) scale(.5286);animation:fall-156 23s -13s linear infinite}@keyframes fall-156{73.886%{transform:translate(89.5545vw,73.886vh) scale(.5286)}to{transform:translate(90.55495vw,100vh) scale(.5286)}}.snow:nth-child(157){opacity:1.6368;transform:translate(80.4033vw,-10px) scale(.9681);animation:fall-157 13s -29s linear infinite}@keyframes fall-157{50.057%{transform:translate(84.4743vw,50.057vh) scale(.9681)}to{transform:translate(82.4388vw,100vh) scale(.9681)}}.snow:nth-child(158){opacity:1.3934;transform:translate(80.2494vw,-10px) scale(.2727);animation:fall-158 10s -26s linear infinite}@keyframes fall-158{70.728%{transform:translate(74.5512vw,70.728vh) scale(.2727)}to{transform:translate(77.4003vw,100vh) scale(.2727)}}.snow:nth-child(159){opacity:.235;transform:translate(35.0158vw,-10px) scale(.4264);animation:fall-159 17s -7s linear infinite}@keyframes fall-159{58.315%{transform:translate(28.9355vw,58.315vh) scale(.4264)}to{transform:translate(31.97565vw,100vh) scale(.4264)}}.snow:nth-child(160){opacity:1.4154;transform:translate(89.4488vw,-10px) scale(.8317);animation:fall-160 17s -28s linear infinite}@keyframes fall-160{71.392%{transform:translate(98.4199vw,71.392vh) scale(.8317)}to{transform:translate(93.93435vw,100vh) scale(.8317)}}.snow:nth-child(161){opacity:.37;transform:translate(40.7493vw,-10px) scale(.9593);animation:fall-161 17s -4s linear infinite}@keyframes fall-161{58.599%{transform:translate(31.0897vw,58.599vh) scale(.9593)}to{transform:translate(35.9195vw,100vh) scale(.9593)}}.snow:nth-child(162){opacity:1.9164;transform:translate(48.0064vw,-10px) scale(.5597);animation:fall-162 12s -18s linear infinite}@keyframes fall-162{30.531%{transform:translate(40.2097vw,30.531vh) scale(.5597)}to{transform:translate(44.10805vw,100vh) scale(.5597)}}.snow:nth-child(163){opacity:1.0444;transform:translate(13.4626vw,-10px) scale(.1059);animation:fall-163 26s -22s linear infinite}@keyframes fall-163{43.333%{transform:translate(4.7973vw,43.333vh) scale(.1059)}to{transform:translate(9.12995vw,100vh) scale(.1059)}}.snow:nth-child(164){opacity:1.0428;transform:translate(7.0637vw,-10px) scale(.8921);animation:fall-164 11s -27s linear infinite}@keyframes fall-164{41.283%{transform:translate(11.2687vw,41.283vh) scale(.8921)}to{transform:translate(9.1662vw,100vh) scale(.8921)}}.snow:nth-child(165){opacity:1.8272;transform:translate(79.5839vw,-10px) scale(.6604);animation:fall-165 29s -1s linear infinite}@keyframes fall-165{76.541%{transform:translate(76.6249vw,76.541vh) scale(.6604)}to{transform:translate(78.1044vw,100vh) scale(.6604)}}.snow:nth-child(166){opacity:1.4728;transform:translate(89.2443vw,-10px) scale(.8777);animation:fall-166 22s -24s linear infinite}@keyframes fall-166{68.708%{transform:translate(86.0524vw,68.708vh) scale(.8777)}to{transform:translate(87.64835vw,100vh) scale(.8777)}}.snow:nth-child(167){opacity:.1516;transform:translate(3.2932vw,-10px) scale(.3007);animation:fall-167 23s -11s linear infinite}@keyframes fall-167{46.069%{transform:translate(-2.2856vw,46.069vh) scale(.3007)}to{transform:translate(.5038vw,100vh) scale(.3007)}}.snow:nth-child(168){opacity:.7858;transform:translate(29.4309vw,-10px) scale(.8577);animation:fall-168 10s -5s linear infinite}@keyframes fall-168{41.344%{transform:translate(22.6971vw,41.344vh) scale(.8577)}to{transform:translate(26.064vw,100vh) scale(.8577)}}.snow:nth-child(169){opacity:1.3718;transform:translate(66.3837vw,-10px) scale(.4866);animation:fall-169 20s -29s linear infinite}@keyframes fall-169{39.385%{transform:translate(66.0673vw,39.385vh) scale(.4866)}to{transform:translate(66.2255vw,100vh) scale(.4866)}}.snow:nth-child(170){opacity:.2114;transform:translate(14.4064vw,-10px) scale(.8345);animation:fall-170 17s -22s linear infinite}@keyframes fall-170{68.815%{transform:translate(20.6356vw,68.815vh) scale(.8345)}to{transform:translate(17.521vw,100vh) scale(.8345)}}.snow:nth-child(171){opacity:1.5482;transform:translate(55.9534vw,-10px) scale(.7554);animation:fall-171 25s -14s linear infinite}@keyframes fall-171{31.937%{transform:translate(61.8648vw,31.937vh) scale(.7554)}to{transform:translate(58.9091vw,100vh) scale(.7554)}}.snow:nth-child(172){opacity:.2816;transform:translate(33.8682vw,-10px) scale(.7302);animation:fall-172 24s -13s linear infinite}@keyframes fall-172{65.278%{transform:translate(38.6686vw,65.278vh) scale(.7302)}to{transform:translate(36.2684vw,100vh) scale(.7302)}}.snow:nth-child(173){opacity:.1894;transform:translate(12.9314vw,-10px) scale(.9672);animation:fall-173 21s -7s linear infinite}@keyframes fall-173{41.427%{transform:translate(4.155vw,41.427vh) scale(.9672)}to{transform:translate(8.5432vw,100vh) scale(.9672)}}.snow:nth-child(174){opacity:.3858;transform:translate(99.7858vw,-10px) scale(.7044);animation:fall-174 18s -9s linear infinite}@keyframes fall-174{49.974%{transform:translate(106.3663vw,49.974vh) scale(.7044)}to{transform:translate(103.07605vw,100vh) scale(.7044)}}.snow:nth-child(175){opacity:1.3186;transform:translate(4.6201vw,-10px) scale(.186);animation:fall-175 26s -20s linear infinite}@keyframes fall-175{79.287%{transform:translate(1.928vw,79.287vh) scale(.186)}to{transform:translate(3.27405vw,100vh) scale(.186)}}.snow:nth-child(176){opacity:.3464;transform:translate(70.189vw,-10px) scale(.8651);animation:fall-176 10s -24s linear infinite}@keyframes fall-176{63.63%{transform:translate(77.5316vw,63.63vh) scale(.8651)}to{transform:translate(73.8603vw,100vh) scale(.8651)}}.snow:nth-child(177){opacity:.497;transform:translate(85.7381vw,-10px) scale(.6732);animation:fall-177 22s -24s linear infinite}@keyframes fall-177{66.85%{transform:translate(77.7433vw,66.85vh) scale(.6732)}to{transform:translate(81.7407vw,100vh) scale(.6732)}}.snow:nth-child(178){opacity:1.8878;transform:translate(85.7291vw,-10px) scale(.3115);animation:fall-178 23s -26s linear infinite}@keyframes fall-178{70.506%{transform:translate(87.5313vw,70.506vh) scale(.3115)}to{transform:translate(86.6302vw,100vh) scale(.3115)}}.snow:nth-child(179){opacity:1.6294;transform:translate(11.6697vw,-10px) scale(.2146);animation:fall-179 20s -16s linear infinite}@keyframes fall-179{44.797%{transform:translate(6.7331vw,44.797vh) scale(.2146)}to{transform:translate(9.2014vw,100vh) scale(.2146)}}.snow:nth-child(180){opacity:.26;transform:translate(19.1211vw,-10px) scale(.4526);animation:fall-180 22s -16s linear infinite}@keyframes fall-180{64.271%{transform:translate(12.3052vw,64.271vh) scale(.4526)}to{transform:translate(15.71315vw,100vh) scale(.4526)}}.snow:nth-child(181){opacity:.7066;transform:translate(24.1354vw,-10px) scale(.1386);animation:fall-181 25s -15s linear infinite}@keyframes fall-181{71.33%{transform:translate(29.8856vw,71.33vh) scale(.1386)}to{transform:translate(27.0105vw,100vh) scale(.1386)}}.snow:nth-child(182){opacity:1.8568;transform:translate(67.3065vw,-10px) scale(.7677);animation:fall-182 18s -3s linear infinite}@keyframes fall-182{73.836%{transform:translate(69.471vw,73.836vh) scale(.7677)}to{transform:translate(68.38875vw,100vh) scale(.7677)}}.snow:nth-child(183){opacity:.8276;transform:translate(19.932vw,-10px) scale(.8071);animation:fall-183 15s -21s linear infinite}@keyframes fall-183{46.988%{transform:translate(10.8698vw,46.988vh) scale(.8071)}to{transform:translate(15.4009vw,100vh) scale(.8071)}}.snow:nth-child(184){opacity:1.9678;transform:translate(8.0886vw,-10px) scale(.9939);animation:fall-184 28s -17s linear infinite}@keyframes fall-184{72.658%{transform:translate(9.1347vw,72.658vh) scale(.9939)}to{transform:translate(8.61165vw,100vh) scale(.9939)}}.snow:nth-child(185){opacity:.0664;transform:translate(80.2305vw,-10px) scale(.4682);animation:fall-185 15s -30s linear infinite}@keyframes fall-185{44.94%{transform:translate(74.4815vw,44.94vh) scale(.4682)}to{transform:translate(77.356vw,100vh) scale(.4682)}}.snow:nth-child(186){opacity:1.6952;transform:translate(73.1121vw,-10px) scale(.352);animation:fall-186 18s -20s linear infinite}@keyframes fall-186{41.062%{transform:translate(70.1534vw,41.062vh) scale(.352)}to{transform:translate(71.63275vw,100vh) scale(.352)}}.snow:nth-child(187){opacity:1.085;transform:translate(25.7933vw,-10px) scale(.8513);animation:fall-187 11s -6s linear infinite}@keyframes fall-187{67.78%{transform:translate(29.0465vw,67.78vh) scale(.8513)}to{transform:translate(27.4199vw,100vh) scale(.8513)}}.snow:nth-child(188){opacity:1.5672;transform:translate(5.7448vw,-10px) scale(.7877);animation:fall-188 21s -6s linear infinite}@keyframes fall-188{45.097%{transform:translate(15.5599vw,45.097vh) scale(.7877)}to{transform:translate(10.65235vw,100vh) scale(.7877)}}.snow:nth-child(189){opacity:.8966;transform:translate(21.4802vw,-10px) scale(.3339);animation:fall-189 13s -22s linear infinite}@keyframes fall-189{71.702%{transform:translate(28.5659vw,71.702vh) scale(.3339)}to{transform:translate(25.02305vw,100vh) scale(.3339)}}.snow:nth-child(190){opacity:1.5522;transform:translate(75.1004vw,-10px) scale(.7753);animation:fall-190 21s -13s linear infinite}@keyframes fall-190{52.996%{transform:translate(77.4153vw,52.996vh) scale(.7753)}to{transform:translate(76.25785vw,100vh) scale(.7753)}}.snow:nth-child(191){opacity:1.779;transform:translate(6.1199vw,-10px) scale(.3316);animation:fall-191 12s -23s linear infinite}@keyframes fall-191{47.021%{transform:translate(14.8449vw,47.021vh) scale(.3316)}to{transform:translate(10.4824vw,100vh) scale(.3316)}}.snow:nth-child(192){opacity:1.043;transform:translate(10.6193vw,-10px) scale(.5919);animation:fall-192 18s -21s linear infinite}@keyframes fall-192{75.809%{transform:translate(3.7701vw,75.809vh) scale(.5919)}to{transform:translate(7.1947vw,100vh) scale(.5919)}}.snow:nth-child(193){opacity:1.5396;transform:translate(70.2889vw,-10px) scale(.8598);animation:fall-193 19s -30s linear infinite}@keyframes fall-193{76.962%{transform:translate(75.6196vw,76.962vh) scale(.8598)}to{transform:translate(72.95425vw,100vh) scale(.8598)}}.snow:nth-child(194){opacity:.7256;transform:translate(31.9965vw,-10px) scale(.6856);animation:fall-194 13s -24s linear infinite}@keyframes fall-194{33.71%{transform:translate(38.5823vw,33.71vh) scale(.6856)}to{transform:translate(35.2894vw,100vh) scale(.6856)}}.snow:nth-child(195){opacity:.7434;transform:translate(88.6641vw,-10px) scale(.7174);animation:fall-195 16s -22s linear infinite}@keyframes fall-195{68.733%{transform:translate(81.5773vw,68.733vh) scale(.7174)}to{transform:translate(85.1207vw,100vh) scale(.7174)}}.snow:nth-child(196){opacity:.551;transform:translate(28.8052vw,-10px) scale(.4646);animation:fall-196 13s -11s linear infinite}@keyframes fall-196{44.728%{transform:translate(22.1996vw,44.728vh) scale(.4646)}to{transform:translate(25.5024vw,100vh) scale(.4646)}}.snow:nth-child(197){opacity:.8588;transform:translate(78.1663vw,-10px) scale(.7611);animation:fall-197 12s -19s linear infinite}@keyframes fall-197{61.815%{transform:translate(85.242vw,61.815vh) scale(.7611)}to{transform:translate(81.70415vw,100vh) scale(.7611)}}.snow:nth-child(198){opacity:1.4716;transform:translate(41.8135vw,-10px) scale(.8799);animation:fall-198 13s -8s linear infinite}@keyframes fall-198{31.477%{transform:translate(35.4694vw,31.477vh) scale(.8799)}to{transform:translate(38.64145vw,100vh) scale(.8799)}}.snow:nth-child(199){opacity:.2544;transform:translate(4.8705vw,-10px) scale(.0676);animation:fall-199 30s -1s linear infinite}@keyframes fall-199{55.444%{transform:translate(13.4582vw,55.444vh) scale(.0676)}to{transform:translate(9.16435vw,100vh) scale(.0676)}}.snow:nth-child(200){opacity:.6874;transform:translate(4.3264vw,-10px) scale(.6539);animation:fall-200 26s -29s linear infinite}@keyframes fall-200{65.53%{transform:translate(6.89vw,65.53vh) scale(.6539)}to{transform:translate(5.6082vw,100vh) scale(.6539)}}.snow:nth-child(201){opacity:.3402;transform:translate(67.6139vw,-10px) scale(.5647);animation:fall-201 22s -7s linear infinite}@keyframes fall-201{56.939%{transform:translate(67.852vw,56.939vh) scale(.5647)}to{transform:translate(67.73295vw,100vh) scale(.5647)}}.snow:nth-child(202){opacity:.081;transform:translate(39.8748vw,-10px) scale(.5121);animation:fall-202 12s -19s linear infinite}@keyframes fall-202{72.862%{transform:translate(33.5635vw,72.862vh) scale(.5121)}to{transform:translate(36.71915vw,100vh) scale(.5121)}}.snow:nth-child(203){opacity:1.0922;transform:translate(1.0725vw,-10px) scale(.8376);animation:fall-203 24s -14s linear infinite}@keyframes fall-203{40.458%{transform:translate(-7.1993vw,40.458vh) scale(.8376)}to{transform:translate(-3.0634vw,100vh) scale(.8376)}}.snow:nth-child(204){opacity:.9042;transform:translate(70.9954vw,-10px) scale(.0964);animation:fall-204 15s -21s linear infinite}@keyframes fall-204{67.709%{transform:translate(73.9387vw,67.709vh) scale(.0964)}to{transform:translate(72.46705vw,100vh) scale(.0964)}}.snow:nth-child(205){opacity:1.6524;transform:translate(62.7613vw,-10px) scale(.3469);animation:fall-205 13s -6s linear infinite}@keyframes fall-205{58.47%{transform:translate(70.8482vw,58.47vh) scale(.3469)}to{transform:translate(66.80475vw,100vh) scale(.3469)}}.snow:nth-child(206){opacity:.4696;transform:translate(35.9266vw,-10px) scale(.8031);animation:fall-206 11s -28s linear infinite}@keyframes fall-206{41.75%{transform:translate(39.0928vw,41.75vh) scale(.8031)}to{transform:translate(37.5097vw,100vh) scale(.8031)}}.snow:nth-child(207){opacity:1.828;transform:translate(41.2614vw,-10px) scale(.916);animation:fall-207 18s -25s linear infinite}@keyframes fall-207{62.606%{transform:translate(39.253vw,62.606vh) scale(.916)}to{transform:translate(40.2572vw,100vh) scale(.916)}}.snow:nth-child(208){opacity:1.1256;transform:translate(3.8647vw,-10px) scale(.1957);animation:fall-208 11s -12s linear infinite}@keyframes fall-208{68.443%{transform:translate(1.7479vw,68.443vh) scale(.1957)}to{transform:translate(2.8063vw,100vh) scale(.1957)}}.snow:nth-child(209){opacity:1.4456;transform:translate(47.6711vw,-10px) scale(.7782);animation:fall-209 25s -28s linear infinite}@keyframes fall-209{57.971%{transform:translate(40.2186vw,57.971vh) scale(.7782)}to{transform:translate(43.94485vw,100vh) scale(.7782)}}.snow:nth-child(210){opacity:1.3996;transform:translate(53.0338vw,-10px) scale(.7066);animation:fall-210 14s -4s linear infinite}@keyframes fall-210{49.608%{transform:translate(61.7623vw,49.608vh) scale(.7066)}to{transform:translate(57.39805vw,100vh) scale(.7066)}}.snow:nth-child(211){opacity:.2802;transform:translate(65.9676vw,-10px) scale(.0396);animation:fall-211 13s -22s linear infinite}@keyframes fall-211{43.156%{transform:translate(71.0611vw,43.156vh) scale(.0396)}to{transform:translate(68.51435vw,100vh) scale(.0396)}}.snow:nth-child(212){opacity:.9382;transform:translate(26.7432vw,-10px) scale(.7017);animation:fall-212 14s -15s linear infinite}@keyframes fall-212{56.893%{transform:translate(32.392vw,56.893vh) scale(.7017)}to{transform:translate(29.5676vw,100vh) scale(.7017)}}.snow:nth-child(213){opacity:.4342;transform:translate(51.359vw,-10px) scale(.6837);animation:fall-213 14s -10s linear infinite}@keyframes fall-213{68.396%{transform:translate(52.0205vw,68.396vh) scale(.6837)}to{transform:translate(51.68975vw,100vh) scale(.6837)}}.snow:nth-child(214){opacity:.7222;transform:translate(25.3305vw,-10px) scale(.014);animation:fall-214 24s -15s linear infinite}@keyframes fall-214{78.98%{transform:translate(18.4275vw,78.98vh) scale(.014)}to{transform:translate(21.879vw,100vh) scale(.014)}}.snow:nth-child(215){opacity:1.9352;transform:translate(23.3997vw,-10px) scale(.6049);animation:fall-215 27s -5s linear infinite}@keyframes fall-215{71.352%{transform:translate(23.0208vw,71.352vh) scale(.6049)}to{transform:translate(23.21025vw,100vh) scale(.6049)}}.snow:nth-child(216){opacity:.0768;transform:translate(40.5656vw,-10px) scale(.6087);animation:fall-216 17s -18s linear infinite}@keyframes fall-216{53.49%{transform:translate(41.4854vw,53.49vh) scale(.6087)}to{transform:translate(41.0255vw,100vh) scale(.6087)}}.snow:nth-child(217){opacity:.7464;transform:translate(94.8321vw,-10px) scale(.1669);animation:fall-217 15s -13s linear infinite}@keyframes fall-217{51.194%{transform:translate(97.4038vw,51.194vh) scale(.1669)}to{transform:translate(96.11795vw,100vh) scale(.1669)}}.snow:nth-child(218){opacity:.685;transform:translate(93.0398vw,-10px) scale(.6653);animation:fall-218 12s -24s linear infinite}@keyframes fall-218{67.413%{transform:translate(94.8586vw,67.413vh) scale(.6653)}to{transform:translate(93.9492vw,100vh) scale(.6653)}}.snow:nth-child(219){opacity:1.4882;transform:translate(78.8781vw,-10px) scale(.0165);animation:fall-219 23s -23s linear infinite}@keyframes fall-219{60.502%{transform:translate(80.3825vw,60.502vh) scale(.0165)}to{transform:translate(79.6303vw,100vh) scale(.0165)}}.snow:nth-child(220){opacity:1.7522;transform:translate(87.0416vw,-10px) scale(.0287);animation:fall-220 29s -19s linear infinite}@keyframes fall-220{55.641%{transform:translate(82.4608vw,55.641vh) scale(.0287)}to{transform:translate(84.7512vw,100vh) scale(.0287)}}.snow:nth-child(221){opacity:1.9758;transform:translate(20.0675vw,-10px) scale(.9916);animation:fall-221 25s -11s linear infinite}@keyframes fall-221{34.797%{transform:translate(27.8014vw,34.797vh) scale(.9916)}to{transform:translate(23.93445vw,100vh) scale(.9916)}}.snow:nth-child(222){opacity:.6566;transform:translate(14.0419vw,-10px) scale(.0208);animation:fall-222 16s -14s linear infinite}@keyframes fall-222{75.342%{transform:translate(18.7278vw,75.342vh) scale(.0208)}to{transform:translate(16.38485vw,100vh) scale(.0208)}}.snow:nth-child(223){opacity:.7106;transform:translate(38.554vw,-10px) scale(.8357);animation:fall-223 27s -23s linear infinite}@keyframes fall-223{47.667%{transform:translate(46.4438vw,47.667vh) scale(.8357)}to{transform:translate(42.4989vw,100vh) scale(.8357)}}.snow:nth-child(224){opacity:.0516;transform:translate(56.1187vw,-10px) scale(.4135);animation:fall-224 10s -4s linear infinite}@keyframes fall-224{37.914%{transform:translate(56.0635vw,37.914vh) scale(.4135)}to{transform:translate(56.0911vw,100vh) scale(.4135)}}.snow:nth-child(225){opacity:1.7458;transform:translate(58.5022vw,-10px) scale(.1735);animation:fall-225 18s -22s linear infinite}@keyframes fall-225{58.928%{transform:translate(51.3731vw,58.928vh) scale(.1735)}to{transform:translate(54.93765vw,100vh) scale(.1735)}}.snow:nth-child(226){opacity:.8154;transform:translate(23.3619vw,-10px) scale(.5237);animation:fall-226 20s -18s linear infinite}@keyframes fall-226{60.332%{transform:translate(29.3954vw,60.332vh) scale(.5237)}to{transform:translate(26.37865vw,100vh) scale(.5237)}}.snow:nth-child(227){opacity:.5426;transform:translate(11.7568vw,-10px) scale(.3041);animation:fall-227 21s -15s linear infinite}@keyframes fall-227{72.922%{transform:translate(4.5095vw,72.922vh) scale(.3041)}to{transform:translate(8.13315vw,100vh) scale(.3041)}}.snow:nth-child(228){opacity:.8072;transform:translate(80.7015vw,-10px) scale(.0643);animation:fall-228 21s -19s linear infinite}@keyframes fall-228{34.87%{transform:translate(77.3707vw,34.87vh) scale(.0643)}to{transform:translate(79.0361vw,100vh) scale(.0643)}}.snow:nth-child(229){opacity:1.529;transform:translate(83.0366vw,-10px) scale(.6791);animation:fall-229 12s -28s linear infinite}@keyframes fall-229{31.669%{transform:translate(81.1671vw,31.669vh) scale(.6791)}to{transform:translate(82.10185vw,100vh) scale(.6791)}}.snow:nth-child(230){opacity:1.11;transform:translate(16.3001vw,-10px) scale(.6238);animation:fall-230 28s -10s linear infinite}@keyframes fall-230{41.98%{transform:translate(21.2909vw,41.98vh) scale(.6238)}to{transform:translate(18.7955vw,100vh) scale(.6238)}}.snow:nth-child(231){opacity:1.4138;transform:translate(83.4587vw,-10px) scale(.9887);animation:fall-231 18s -1s linear infinite}@keyframes fall-231{61.129%{transform:translate(75.8684vw,61.129vh) scale(.9887)}to{transform:translate(79.66355vw,100vh) scale(.9887)}}.snow:nth-child(232){opacity:.4798;transform:translate(96.9657vw,-10px) scale(.345);animation:fall-232 28s -23s linear infinite}@keyframes fall-232{46.453%{transform:translate(88.446vw,46.453vh) scale(.345)}to{transform:translate(92.70585vw,100vh) scale(.345)}}.snow:nth-child(233){opacity:.9418;transform:translate(42.551vw,-10px) scale(.3699);animation:fall-233 26s -16s linear infinite}@keyframes fall-233{32.524%{transform:translate(37.9794vw,32.524vh) scale(.3699)}to{transform:translate(40.2652vw,100vh) scale(.3699)}}.snow:nth-child(234){opacity:1.3698;transform:translate(26.4388vw,-10px) scale(.2853);animation:fall-234 25s -20s linear infinite}@keyframes fall-234{30.651%{transform:translate(24.6925vw,30.651vh) scale(.2853)}to{transform:translate(25.56565vw,100vh) scale(.2853)}}.snow:nth-child(235){opacity:.539;transform:translate(70.3822vw,-10px) scale(.6994);animation:fall-235 24s -17s linear infinite}@keyframes fall-235{79.477%{transform:translate(67.173vw,79.477vh) scale(.6994)}to{transform:translate(68.7776vw,100vh) scale(.6994)}}.snow:nth-child(236){opacity:1.8438;transform:translate(45.2809vw,-10px) scale(.841);animation:fall-236 27s -18s linear infinite}@keyframes fall-236{68.877%{transform:translate(53.0995vw,68.877vh) scale(.841)}to{transform:translate(49.1902vw,100vh) scale(.841)}}.snow:nth-child(237){opacity:.7756;transform:translate(72.9431vw,-10px) scale(.8654);animation:fall-237 12s -14s linear infinite}@keyframes fall-237{76.447%{transform:translate(68.9303vw,76.447vh) scale(.8654)}to{transform:translate(70.9367vw,100vh) scale(.8654)}}.snow:nth-child(238){opacity:.7804;transform:translate(39.7526vw,-10px) scale(.5006);animation:fall-238 29s -13s linear infinite}@keyframes fall-238{34.007%{transform:translate(45.8209vw,34.007vh) scale(.5006)}to{transform:translate(42.78675vw,100vh) scale(.5006)}}.snow:nth-child(239){opacity:1.9044;transform:translate(34.4619vw,-10px) scale(.1251);animation:fall-239 27s -3s linear infinite}@keyframes fall-239{54.636%{transform:translate(43.1478vw,54.636vh) scale(.1251)}to{transform:translate(38.80485vw,100vh) scale(.1251)}}.snow:nth-child(240){opacity:1.4126;transform:translate(88.1936vw,-10px) scale(.4943);animation:fall-240 11s -12s linear infinite}@keyframes fall-240{61.256%{transform:translate(79.0448vw,61.256vh) scale(.4943)}to{transform:translate(83.6192vw,100vh) scale(.4943)}}.snow:nth-child(241){opacity:.5674;transform:translate(6.9192vw,-10px) scale(.9188);animation:fall-241 26s -30s linear infinite}@keyframes fall-241{73.942%{transform:translate(.1415vw,73.942vh) scale(.9188)}to{transform:translate(3.53035vw,100vh) scale(.9188)}}.snow:nth-child(242){opacity:1.5172;transform:translate(57.4369vw,-10px) scale(.2109);animation:fall-242 27s -25s linear infinite}@keyframes fall-242{62.091%{transform:translate(62.4224vw,62.091vh) scale(.2109)}to{transform:translate(59.92965vw,100vh) scale(.2109)}}.snow:nth-child(243){opacity:1.377;transform:translate(.7402vw,-10px) scale(.1199);animation:fall-243 16s -14s linear infinite}@keyframes fall-243{72.106%{transform:translate(10.6176vw,72.106vh) scale(.1199)}to{transform:translate(5.6789vw,100vh) scale(.1199)}}.snow:nth-child(244){opacity:.2016;transform:translate(75.8897vw,-10px) scale(.2945);animation:fall-244 28s -16s linear infinite}@keyframes fall-244{76.672%{transform:translate(85.4496vw,76.672vh) scale(.2945)}to{transform:translate(80.66965vw,100vh) scale(.2945)}}.snow:nth-child(245){opacity:1.9072;transform:translate(57.5555vw,-10px) scale(.74);animation:fall-245 19s -21s linear infinite}@keyframes fall-245{77.452%{transform:translate(58.9467vw,77.452vh) scale(.74)}to{transform:translate(58.2511vw,100vh) scale(.74)}}.snow:nth-child(246){opacity:1.9422;transform:translate(98.693vw,-10px) scale(.8573);animation:fall-246 26s -28s linear infinite}@keyframes fall-246{46.902%{transform:translate(103.6411vw,46.902vh) scale(.8573)}to{transform:translate(101.16705vw,100vh) scale(.8573)}}.snow:nth-child(247){opacity:.8848;transform:translate(61.1263vw,-10px) scale(.6237);animation:fall-247 28s -22s linear infinite}@keyframes fall-247{42.039%{transform:translate(52.5366vw,42.039vh) scale(.6237)}to{transform:translate(56.83145vw,100vh) scale(.6237)}}.snow:nth-child(248){opacity:.1392;transform:translate(76.6875vw,-10px) scale(.2896);animation:fall-248 30s -2s linear infinite}@keyframes fall-248{34.717%{transform:translate(83.1777vw,34.717vh) scale(.2896)}to{transform:translate(79.9326vw,100vh) scale(.2896)}}.snow:nth-child(249){opacity:.136;transform:translate(24.2443vw,-10px) scale(.9485);animation:fall-249 19s -23s linear infinite}@keyframes fall-249{69.152%{transform:translate(25.3692vw,69.152vh) scale(.9485)}to{transform:translate(24.80675vw,100vh) scale(.9485)}}.snow:nth-child(250){opacity:.8438;transform:translate(2.9621vw,-10px) scale(.1713);animation:fall-250 22s -17s linear infinite}@keyframes fall-250{47.79%{transform:translate(2.2209vw,47.79vh) scale(.1713)}to{transform:translate(2.5915vw,100vh) scale(.1713)}}.snow:nth-child(251){opacity:1.1288;transform:translate(2.1996vw,-10px) scale(.45);animation:fall-251 29s -19s linear infinite}@keyframes fall-251{44.606%{transform:translate(7.1881vw,44.606vh) scale(.45)}to{transform:translate(4.69385vw,100vh) scale(.45)}}.snow:nth-child(252){opacity:.6252;transform:translate(15.3371vw,-10px) scale(.8781);animation:fall-252 15s -9s linear infinite}@keyframes fall-252{39.868%{transform:translate(20.5345vw,39.868vh) scale(.8781)}to{transform:translate(17.9358vw,100vh) scale(.8781)}}.snow:nth-child(253){opacity:.5862;transform:translate(97.5425vw,-10px) scale(.2448);animation:fall-253 30s -24s linear infinite}@keyframes fall-253{59.758%{transform:translate(92.5693vw,59.758vh) scale(.2448)}to{transform:translate(95.0559vw,100vh) scale(.2448)}}.snow:nth-child(254){opacity:1.2976;transform:translate(78.7726vw,-10px) scale(.8973);animation:fall-254 29s -8s linear infinite}@keyframes fall-254{43.932%{transform:translate(88.7354vw,43.932vh) scale(.8973)}to{transform:translate(83.754vw,100vh) scale(.8973)}}.snow:nth-child(255){opacity:.2268;transform:translate(98.0142vw,-10px) scale(.9549);animation:fall-255 11s -3s linear infinite}@keyframes fall-255{71.806%{transform:translate(103.627vw,71.806vh) scale(.9549)}to{transform:translate(100.8206vw,100vh) scale(.9549)}}.snow:nth-child(256){opacity:1.1596;transform:translate(7.9245vw,-10px) scale(.6179);animation:fall-256 25s -28s linear infinite}@keyframes fall-256{55.635%{transform:translate(15.637vw,55.635vh) scale(.6179)}to{transform:translate(11.78075vw,100vh) scale(.6179)}}.snow:nth-child(257){opacity:1.0552;transform:translate(63.0047vw,-10px) scale(.0552);animation:fall-257 11s -24s linear infinite}@keyframes fall-257{30.48%{transform:translate(66.5617vw,30.48vh) scale(.0552)}to{transform:translate(64.7832vw,100vh) scale(.0552)}}.snow:nth-child(258){opacity:.4084;transform:translate(83.7845vw,-10px) scale(.818);animation:fall-258 13s -15s linear infinite}@keyframes fall-258{58.981%{transform:translate(88.7074vw,58.981vh) scale(.818)}to{transform:translate(86.24595vw,100vh) scale(.818)}}.snow:nth-child(259){opacity:.8984;transform:translate(79.2375vw,-10px) scale(.4309);animation:fall-259 28s -6s linear infinite}@keyframes fall-259{32.862%{transform:translate(74.3471vw,32.862vh) scale(.4309)}to{transform:translate(76.7923vw,100vh) scale(.4309)}}.snow:nth-child(260){opacity:.7264;transform:translate(12.4266vw,-10px) scale(.0409);animation:fall-260 20s -9s linear infinite}@keyframes fall-260{43.893%{transform:translate(18.3525vw,43.893vh) scale(.0409)}to{transform:translate(15.38955vw,100vh) scale(.0409)}}.snow:nth-child(261){opacity:.6524;transform:translate(74.5082vw,-10px) scale(.4875);animation:fall-261 25s -28s linear infinite}@keyframes fall-261{75.381%{transform:translate(81.897vw,75.381vh) scale(.4875)}to{transform:translate(78.2026vw,100vh) scale(.4875)}}.snow:nth-child(262){opacity:.4138;transform:translate(67.4282vw,-10px) scale(.2241);animation:fall-262 19s -7s linear infinite}@keyframes fall-262{65.871%{transform:translate(59.8097vw,65.871vh) scale(.2241)}to{transform:translate(63.61895vw,100vh) scale(.2241)}}.snow:nth-child(263){opacity:.1438;transform:translate(53.7307vw,-10px) scale(.8821);animation:fall-263 28s -25s linear infinite}@keyframes fall-263{78.267%{transform:translate(63.1767vw,78.267vh) scale(.8821)}to{transform:translate(58.4537vw,100vh) scale(.8821)}}.snow:nth-child(264){opacity:1.6632;transform:translate(98.2021vw,-10px) scale(.3884);animation:fall-264 12s -20s linear infinite}@keyframes fall-264{58.248%{transform:translate(90.9445vw,58.248vh) scale(.3884)}to{transform:translate(94.5733vw,100vh) scale(.3884)}}.snow:nth-child(265){opacity:1.5794;transform:translate(37.2485vw,-10px) scale(.6392);animation:fall-265 12s -15s linear infinite}@keyframes fall-265{41.834%{transform:translate(46.0501vw,41.834vh) scale(.6392)}to{transform:translate(41.6493vw,100vh) scale(.6392)}}.snow:nth-child(266){opacity:.4656;transform:translate(33.7339vw,-10px) scale(.7695);animation:fall-266 21s -10s linear infinite}@keyframes fall-266{69.333%{transform:translate(35.8581vw,69.333vh) scale(.7695)}to{transform:translate(34.796vw,100vh) scale(.7695)}}.snow:nth-child(267){opacity:1.5122;transform:translate(61.1231vw,-10px) scale(.751);animation:fall-267 24s -23s linear infinite}@keyframes fall-267{72.401%{transform:translate(67.4758vw,72.401vh) scale(.751)}to{transform:translate(64.29945vw,100vh) scale(.751)}}.snow:nth-child(268){opacity:.6382;transform:translate(11.3467vw,-10px) scale(.3948);animation:fall-268 26s -12s linear infinite}@keyframes fall-268{69.14%{transform:translate(2.8734vw,69.14vh) scale(.3948)}to{transform:translate(7.11005vw,100vh) scale(.3948)}}.snow:nth-child(269){opacity:.7602;transform:translate(32.2104vw,-10px) scale(.9602);animation:fall-269 26s -1s linear infinite}@keyframes fall-269{52.762%{transform:translate(25.6687vw,52.762vh) scale(.9602)}to{transform:translate(28.93955vw,100vh) scale(.9602)}}.snow:nth-child(270){opacity:1.8158;transform:translate(69.8251vw,-10px) scale(.2881);animation:fall-270 16s -5s linear infinite}@keyframes fall-270{66.917%{transform:translate(62.8767vw,66.917vh) scale(.2881)}to{transform:translate(66.3509vw,100vh) scale(.2881)}}.snow:nth-child(271){opacity:1.9594;transform:translate(54.3629vw,-10px) scale(.2547);animation:fall-271 18s -22s linear infinite}@keyframes fall-271{41.655%{transform:translate(59.9029vw,41.655vh) scale(.2547)}to{transform:translate(57.1329vw,100vh) scale(.2547)}}.snow:nth-child(272){opacity:1.8886;transform:translate(20.5475vw,-10px) scale(.7505);animation:fall-272 28s -18s linear infinite}@keyframes fall-272{77.109%{transform:translate(21.3781vw,77.109vh) scale(.7505)}to{transform:translate(20.9628vw,100vh) scale(.7505)}}.snow:nth-child(273){opacity:.1838;transform:translate(1.7132vw,-10px) scale(.3919);animation:fall-273 24s -23s linear infinite}@keyframes fall-273{54.213%{transform:translate(10.5513vw,54.213vh) scale(.3919)}to{transform:translate(6.13225vw,100vh) scale(.3919)}}.snow:nth-child(274){opacity:.2488;transform:translate(13.7305vw,-10px) scale(.1206);animation:fall-274 20s -5s linear infinite}@keyframes fall-274{35.673%{transform:translate(7.874vw,35.673vh) scale(.1206)}to{transform:translate(10.80225vw,100vh) scale(.1206)}}.snow:nth-child(275){opacity:.0558;transform:translate(4.1488vw,-10px) scale(.8219);animation:fall-275 13s -23s linear infinite}@keyframes fall-275{44.34%{transform:translate(.4974vw,44.34vh) scale(.8219)}to{transform:translate(2.3231vw,100vh) scale(.8219)}}.snow:nth-child(276){opacity:1.3086;transform:translate(57.5397vw,-10px) scale(.8799);animation:fall-276 30s -15s linear infinite}@keyframes fall-276{60.053%{transform:translate(50.1896vw,60.053vh) scale(.8799)}to{transform:translate(53.86465vw,100vh) scale(.8799)}}.snow:nth-child(277){opacity:.4308;transform:translate(53.1739vw,-10px) scale(.39);animation:fall-277 10s -2s linear infinite}@keyframes fall-277{50.843%{transform:translate(51.7893vw,50.843vh) scale(.39)}to{transform:translate(52.4816vw,100vh) scale(.39)}}.snow:nth-child(278){opacity:.5606;transform:translate(99.7072vw,-10px) scale(.0591);animation:fall-278 13s -12s linear infinite}@keyframes fall-278{72.974%{transform:translate(101.812vw,72.974vh) scale(.0591)}to{transform:translate(100.7596vw,100vh) scale(.0591)}}.snow:nth-child(279){opacity:1.8238;transform:translate(95.9284vw,-10px) scale(.0856);animation:fall-279 26s -8s linear infinite}@keyframes fall-279{40.845%{transform:translate(92.3401vw,40.845vh) scale(.0856)}to{transform:translate(94.13425vw,100vh) scale(.0856)}}.snow:nth-child(280){opacity:.0032;transform:translate(34.7065vw,-10px) scale(.1941);animation:fall-280 13s -10s linear infinite}@keyframes fall-280{75.605%{transform:translate(28.1138vw,75.605vh) scale(.1941)}to{transform:translate(31.41015vw,100vh) scale(.1941)}}.snow:nth-child(281){opacity:.2522;transform:translate(13.8444vw,-10px) scale(.2746);animation:fall-281 15s -19s linear infinite}@keyframes fall-281{71.578%{transform:translate(20.0246vw,71.578vh) scale(.2746)}to{transform:translate(16.9345vw,100vh) scale(.2746)}}.snow:nth-child(282){opacity:.4238;transform:translate(5.2256vw,-10px) scale(.6581);animation:fall-282 28s -4s linear infinite}@keyframes fall-282{61.194%{transform:translate(1.4767vw,61.194vh) scale(.6581)}to{transform:translate(3.35115vw,100vh) scale(.6581)}}.snow:nth-child(283){opacity:.1044;transform:translate(4.7853vw,-10px) scale(.6049);animation:fall-283 25s -14s linear infinite}@keyframes fall-283{35.607%{transform:translate(11.1062vw,35.607vh) scale(.6049)}to{transform:translate(7.94575vw,100vh) scale(.6049)}}.snow:nth-child(284){opacity:.007;transform:translate(24.4132vw,-10px) scale(.9733);animation:fall-284 19s -10s linear infinite}@keyframes fall-284{76.992%{transform:translate(18.737vw,76.992vh) scale(.9733)}to{transform:translate(21.5751vw,100vh) scale(.9733)}}.snow:nth-child(285){opacity:1.9096;transform:translate(11.8654vw,-10px) scale(.7842);animation:fall-285 18s -4s linear infinite}@keyframes fall-285{61.945%{transform:translate(13.7746vw,61.945vh) scale(.7842)}to{transform:translate(12.82vw,100vh) scale(.7842)}}.snow:nth-child(286){opacity:1.4422;transform:translate(84.0954vw,-10px) scale(.5708);animation:fall-286 10s -21s linear infinite}@keyframes fall-286{65.919%{transform:translate(82.7478vw,65.919vh) scale(.5708)}to{transform:translate(83.4216vw,100vh) scale(.5708)}}.snow:nth-child(287){opacity:.9578;transform:translate(53.4092vw,-10px) scale(.2428);animation:fall-287 15s -6s linear infinite}@keyframes fall-287{75.657%{transform:translate(55.8002vw,75.657vh) scale(.2428)}to{transform:translate(54.6047vw,100vh) scale(.2428)}}.snow:nth-child(288){opacity:1.7608;transform:translate(92.7404vw,-10px) scale(.4421);animation:fall-288 16s -12s linear infinite}@keyframes fall-288{58.56%{transform:translate(93.1509vw,58.56vh) scale(.4421)}to{transform:translate(92.94565vw,100vh) scale(.4421)}}.snow:nth-child(289){opacity:.5706;transform:translate(3.7073vw,-10px) scale(.8355);animation:fall-289 30s -7s linear infinite}@keyframes fall-289{46.316%{transform:translate(12.3216vw,46.316vh) scale(.8355)}to{transform:translate(8.01445vw,100vh) scale(.8355)}}.snow:nth-child(290){opacity:1.5866;transform:translate(40.8868vw,-10px) scale(.186);animation:fall-290 24s -18s linear infinite}@keyframes fall-290{42.789%{transform:translate(46.928vw,42.789vh) scale(.186)}to{transform:translate(43.9074vw,100vh) scale(.186)}}.snow:nth-child(291){opacity:1.9708;transform:translate(39.5964vw,-10px) scale(.4849);animation:fall-291 12s -6s linear infinite}@keyframes fall-291{33.517%{transform:translate(37.9787vw,33.517vh) scale(.4849)}to{transform:translate(38.78755vw,100vh) scale(.4849)}}.snow:nth-child(292){opacity:1.782;transform:translate(74.6033vw,-10px) scale(.4425);animation:fall-292 10s -14s linear infinite}@keyframes fall-292{63.687%{transform:translate(66.0708vw,63.687vh) scale(.4425)}to{transform:translate(70.33705vw,100vh) scale(.4425)}}.snow:nth-child(293){opacity:.5406;transform:translate(68.5705vw,-10px) scale(.4533);animation:fall-293 30s -23s linear infinite}@keyframes fall-293{38.998%{transform:translate(78.0368vw,38.998vh) scale(.4533)}to{transform:translate(73.30365vw,100vh) scale(.4533)}}.snow:nth-child(294){opacity:1.495;transform:translate(35.7228vw,-10px) scale(.5154);animation:fall-294 13s -14s linear infinite}@keyframes fall-294{74.464%{transform:translate(27.8028vw,74.464vh) scale(.5154)}to{transform:translate(31.7628vw,100vh) scale(.5154)}}.snow:nth-child(295){opacity:1.1206;transform:translate(69.9691vw,-10px) scale(.4196);animation:fall-295 24s -23s linear infinite}@keyframes fall-295{56.548%{transform:translate(76.5317vw,56.548vh) scale(.4196)}to{transform:translate(73.2504vw,100vh) scale(.4196)}}.snow:nth-child(296){opacity:.7466;transform:translate(54.9305vw,-10px) scale(.2021);animation:fall-296 14s -11s linear infinite}@keyframes fall-296{48.711%{transform:translate(50.1352vw,48.711vh) scale(.2021)}to{transform:translate(52.53285vw,100vh) scale(.2021)}}.snow:nth-child(297){opacity:.29;transform:translate(20.3691vw,-10px) scale(.6619);animation:fall-297 23s -8s linear infinite}@keyframes fall-297{59.958%{transform:translate(13.7178vw,59.958vh) scale(.6619)}to{transform:translate(17.04345vw,100vh) scale(.6619)}}.snow:nth-child(298){opacity:1.6366;transform:translate(29.0691vw,-10px) scale(.4865);animation:fall-298 24s -5s linear infinite}@keyframes fall-298{46.623%{transform:translate(38.4227vw,46.623vh) scale(.4865)}to{transform:translate(33.7459vw,100vh) scale(.4865)}}.snow:nth-child(299){opacity:1.7946;transform:translate(86.8428vw,-10px) scale(.1043);animation:fall-299 12s -21s linear infinite}@keyframes fall-299{74.223%{transform:translate(81.2645vw,74.223vh) scale(.1043)}to{transform:translate(84.05365vw,100vh) scale(.1043)}}.snow:nth-child(300){opacity:1.7732;transform:translate(17.0783vw,-10px) scale(.3319);animation:fall-300 22s -28s linear infinite}@keyframes fall-300{68.215%{transform:translate(21.9554vw,68.215vh) scale(.3319)}to{transform:translate(19.51685vw,100vh) scale(.3319)}}.snow:nth-child(301){opacity:1.2442;transform:translate(60.3607vw,-10px) scale(.3972);animation:fall-301 14s -30s linear infinite}@keyframes fall-301{50.151%{transform:translate(69.769vw,50.151vh) scale(.3972)}to{transform:translate(65.06485vw,100vh) scale(.3972)}}.snow:nth-child(302){opacity:1.7954;transform:translate(79.8026vw,-10px) scale(.4269);animation:fall-302 24s -15s linear infinite}@keyframes fall-302{52.708%{transform:translate(74.4496vw,52.708vh) scale(.4269)}to{transform:translate(77.1261vw,100vh) scale(.4269)}}.snow:nth-child(303){opacity:1.889;transform:translate(76.9721vw,-10px) scale(.6872);animation:fall-303 29s -7s linear infinite}@keyframes fall-303{79.993%{transform:translate(86.7893vw,79.993vh) scale(.6872)}to{transform:translate(81.8807vw,100vh) scale(.6872)}}.snow:nth-child(304){opacity:.1298;transform:translate(73.9496vw,-10px) scale(.4805);animation:fall-304 22s -28s linear infinite}@keyframes fall-304{45.568%{transform:translate(76.4073vw,45.568vh) scale(.4805)}to{transform:translate(75.17845vw,100vh) scale(.4805)}}.snow:nth-child(305){opacity:.0174;transform:translate(98.7003vw,-10px) scale(.5684);animation:fall-305 18s -22s linear infinite}@keyframes fall-305{73.594%{transform:translate(93.3284vw,73.594vh) scale(.5684)}to{transform:translate(96.01435vw,100vh) scale(.5684)}}.snow:nth-child(306){opacity:1.9162;transform:translate(54.4581vw,-10px) scale(.8392);animation:fall-306 29s -13s linear infinite}@keyframes fall-306{37.405%{transform:translate(59.1312vw,37.405vh) scale(.8392)}to{transform:translate(56.79465vw,100vh) scale(.8392)}}.snow:nth-child(307){opacity:.3336;transform:translate(2.6281vw,-10px) scale(.2476);animation:fall-307 29s -6s linear infinite}@keyframes fall-307{77.255%{transform:translate(8.4892vw,77.255vh) scale(.2476)}to{transform:translate(5.55865vw,100vh) scale(.2476)}}.snow:nth-child(308){opacity:.446;transform:translate(20.0319vw,-10px) scale(.0136);animation:fall-308 17s -18s linear infinite}@keyframes fall-308{67.907%{transform:translate(20.9506vw,67.907vh) scale(.0136)}to{transform:translate(20.49125vw,100vh) scale(.0136)}}.snow:nth-child(309){opacity:.149;transform:translate(29.3216vw,-10px) scale(.0225);animation:fall-309 14s -15s linear infinite}@keyframes fall-309{77.542%{transform:translate(36.9095vw,77.542vh) scale(.0225)}to{transform:translate(33.11555vw,100vh) scale(.0225)}}.snow:nth-child(310){opacity:.4634;transform:translate(37.1685vw,-10px) scale(.3205);animation:fall-310 22s -5s linear infinite}@keyframes fall-310{40.932%{transform:translate(36.3863vw,40.932vh) scale(.3205)}to{transform:translate(36.7774vw,100vh) scale(.3205)}}.snow:nth-child(311){opacity:1.4036;transform:translate(27.7105vw,-10px) scale(.0384);animation:fall-311 17s -27s linear infinite}@keyframes fall-311{62.832%{transform:translate(29.5468vw,62.832vh) scale(.0384)}to{transform:translate(28.62865vw,100vh) scale(.0384)}}.snow:nth-child(312){opacity:1.4068;transform:translate(45.3845vw,-10px) scale(.959);animation:fall-312 10s -23s linear infinite}@keyframes fall-312{37.235%{transform:translate(40.3161vw,37.235vh) scale(.959)}to{transform:translate(42.8503vw,100vh) scale(.959)}}.snow:nth-child(313){opacity:1.8954;transform:translate(42.2725vw,-10px) scale(.0452);animation:fall-313 16s -8s linear infinite}@keyframes fall-313{33.258%{transform:translate(51.7932vw,33.258vh) scale(.0452)}to{transform:translate(47.03285vw,100vh) scale(.0452)}}.snow:nth-child(314){opacity:1.6776;transform:translate(15.5361vw,-10px) scale(.4405);animation:fall-314 26s -1s linear infinite}@keyframes fall-314{76.622%{transform:translate(7.3796vw,76.622vh) scale(.4405)}to{transform:translate(11.45785vw,100vh) scale(.4405)}}.snow:nth-child(315){opacity:.1564;transform:translate(57.4462vw,-10px) scale(.0914);animation:fall-315 14s -27s linear infinite}@keyframes fall-315{58.27%{transform:translate(64.8083vw,58.27vh) scale(.0914)}to{transform:translate(61.12725vw,100vh) scale(.0914)}}.snow:nth-child(316){opacity:1.3244;transform:translate(21.0982vw,-10px) scale(.499);animation:fall-316 27s -7s linear infinite}@keyframes fall-316{53.076%{transform:translate(27.2874vw,53.076vh) scale(.499)}to{transform:translate(24.1928vw,100vh) scale(.499)}}.snow:nth-child(317){opacity:.4884;transform:translate(6.6123vw,-10px) scale(.1671);animation:fall-317 15s -5s linear infinite}@keyframes fall-317{63.778%{transform:translate(1.3467vw,63.778vh) scale(.1671)}to{transform:translate(3.9795vw,100vh) scale(.1671)}}.snow:nth-child(318){opacity:1.454;transform:translate(81.5231vw,-10px) scale(.1669);animation:fall-318 28s -29s linear infinite}@keyframes fall-318{38.662%{transform:translate(88.5249vw,38.662vh) scale(.1669)}to{transform:translate(85.024vw,100vh) scale(.1669)}}.snow:nth-child(319){opacity:1.5902;transform:translate(43.5084vw,-10px) scale(.5037);animation:fall-319 17s -19s linear infinite}@keyframes fall-319{48.702%{transform:translate(42.5054vw,48.702vh) scale(.5037)}to{transform:translate(43.0069vw,100vh) scale(.5037)}}.snow:nth-child(320){opacity:1.591;transform:translate(5.2148vw,-10px) scale(.855);animation:fall-320 13s -27s linear infinite}@keyframes fall-320{71.923%{transform:translate(.3697vw,71.923vh) scale(.855)}to{transform:translate(2.79225vw,100vh) scale(.855)}}.snow:nth-child(321){opacity:.0138;transform:translate(29.5368vw,-10px) scale(.9828);animation:fall-321 30s -24s linear infinite}@keyframes fall-321{39.101%{transform:translate(22.5849vw,39.101vh) scale(.9828)}to{transform:translate(26.06085vw,100vh) scale(.9828)}}.snow:nth-child(322){opacity:.8646;transform:translate(30.4164vw,-10px) scale(.3908);animation:fall-322 16s -21s linear infinite}@keyframes fall-322{62.999%{transform:translate(28.6856vw,62.999vh) scale(.3908)}to{transform:translate(29.551vw,100vh) scale(.3908)}}.snow:nth-child(323){opacity:1.9794;transform:translate(58.4797vw,-10px) scale(.6664);animation:fall-323 11s -20s linear infinite}@keyframes fall-323{74.802%{transform:translate(56.2408vw,74.802vh) scale(.6664)}to{transform:translate(57.36025vw,100vh) scale(.6664)}}.snow:nth-child(324){opacity:.0386;transform:translate(32.0021vw,-10px) scale(.9281);animation:fall-324 17s -12s linear infinite}@keyframes fall-324{48.56%{transform:translate(30.1632vw,48.56vh) scale(.9281)}to{transform:translate(31.08265vw,100vh) scale(.9281)}}.snow:nth-child(325){opacity:.0988;transform:translate(44.9509vw,-10px) scale(.9332);animation:fall-325 11s -25s linear infinite}@keyframes fall-325{47.547%{transform:translate(40.4507vw,47.547vh) scale(.9332)}to{transform:translate(42.7008vw,100vh) scale(.9332)}}.snow:nth-child(326){opacity:.6986;transform:translate(20.2395vw,-10px) scale(.1092);animation:fall-326 19s -18s linear infinite}@keyframes fall-326{31.985%{transform:translate(22.8365vw,31.985vh) scale(.1092)}to{transform:translate(21.538vw,100vh) scale(.1092)}}.snow:nth-child(327){opacity:.785;transform:translate(13.7521vw,-10px) scale(.4432);animation:fall-327 20s -5s linear infinite}@keyframes fall-327{64.655%{transform:translate(16.4562vw,64.655vh) scale(.4432)}to{transform:translate(15.10415vw,100vh) scale(.4432)}}.snow:nth-child(328){opacity:.8056;transform:translate(45.4698vw,-10px) scale(.1135);animation:fall-328 30s -20s linear infinite}@keyframes fall-328{76.192%{transform:translate(37.9665vw,76.192vh) scale(.1135)}to{transform:translate(41.71815vw,100vh) scale(.1135)}}.snow:nth-child(329){opacity:1.681;transform:translate(35.8547vw,-10px) scale(.9095);animation:fall-329 29s -22s linear infinite}@keyframes fall-329{34.228%{transform:translate(43.2671vw,34.228vh) scale(.9095)}to{transform:translate(39.5609vw,100vh) scale(.9095)}}.snow:nth-child(330){opacity:1.2636;transform:translate(98.007vw,-10px) scale(.9025);animation:fall-330 16s -20s linear infinite}@keyframes fall-330{77.81%{transform:translate(91.6198vw,77.81vh) scale(.9025)}to{transform:translate(94.8134vw,100vh) scale(.9025)}}.snow:nth-child(331){opacity:1.4886;transform:translate(93.7381vw,-10px) scale(.5455);animation:fall-331 25s -11s linear infinite}@keyframes fall-331{47.546%{transform:translate(85.2135vw,47.546vh) scale(.5455)}to{transform:translate(89.4758vw,100vh) scale(.5455)}}.snow:nth-child(332){opacity:.209;transform:translate(62.3897vw,-10px) scale(.6192);animation:fall-332 10s -28s linear infinite}@keyframes fall-332{52.294%{transform:translate(63.514vw,52.294vh) scale(.6192)}to{transform:translate(62.95185vw,100vh) scale(.6192)}}.snow:nth-child(333){opacity:1.2364;transform:translate(16.7282vw,-10px) scale(.1612);animation:fall-333 25s -30s linear infinite}@keyframes fall-333{67.227%{transform:translate(10.5171vw,67.227vh) scale(.1612)}to{transform:translate(13.62265vw,100vh) scale(.1612)}}.snow:nth-child(334){opacity:.5814;transform:translate(98.2925vw,-10px) scale(.991);animation:fall-334 18s -19s linear infinite}@keyframes fall-334{64.258%{transform:translate(92.0928vw,64.258vh) scale(.991)}to{transform:translate(95.19265vw,100vh) scale(.991)}}.snow:nth-child(335){opacity:.957;transform:translate(84.5999vw,-10px) scale(.7321);animation:fall-335 29s -12s linear infinite}@keyframes fall-335{61.261%{transform:translate(94.0246vw,61.261vh) scale(.7321)}to{transform:translate(89.31225vw,100vh) scale(.7321)}}.snow:nth-child(336){opacity:.2774;transform:translate(43.2471vw,-10px) scale(.8758);animation:fall-336 24s -11s linear infinite}@keyframes fall-336{57.777%{transform:translate(39.4889vw,57.777vh) scale(.8758)}to{transform:translate(41.368vw,100vh) scale(.8758)}}.snow:nth-child(337){opacity:1.4996;transform:translate(10.7754vw,-10px) scale(.1448);animation:fall-337 26s -6s linear infinite}@keyframes fall-337{72.771%{transform:translate(5.3885vw,72.771vh) scale(.1448)}to{transform:translate(8.08195vw,100vh) scale(.1448)}}.snow:nth-child(338){opacity:1.1576;transform:translate(48.9202vw,-10px) scale(.8301);animation:fall-338 14s -14s linear infinite}@keyframes fall-338{38.592%{transform:translate(57.1493vw,38.592vh) scale(.8301)}to{transform:translate(53.03475vw,100vh) scale(.8301)}}.snow:nth-child(339){opacity:.9854;transform:translate(79.9468vw,-10px) scale(.8154);animation:fall-339 27s -18s linear infinite}@keyframes fall-339{60.928%{transform:translate(73.5234vw,60.928vh) scale(.8154)}to{transform:translate(76.7351vw,100vh) scale(.8154)}}.snow:nth-child(340){opacity:1.4008;transform:translate(25.7684vw,-10px) scale(.606);animation:fall-340 15s -3s linear infinite}@keyframes fall-340{51.192%{transform:translate(34.4075vw,51.192vh) scale(.606)}to{transform:translate(30.08795vw,100vh) scale(.606)}}.snow:nth-child(341){opacity:.9668;transform:translate(91.0638vw,-10px) scale(.4513);animation:fall-341 10s -4s linear infinite}@keyframes fall-341{79.047%{transform:translate(81.1933vw,79.047vh) scale(.4513)}to{transform:translate(86.12855vw,100vh) scale(.4513)}}.snow:nth-child(342){opacity:1.1052;transform:translate(18.9232vw,-10px) scale(.1991);animation:fall-342 18s -1s linear infinite}@keyframes fall-342{48.138%{transform:translate(12.7368vw,48.138vh) scale(.1991)}to{transform:translate(15.83vw,100vh) scale(.1991)}}.snow:nth-child(343){opacity:.2652;transform:translate(63.2109vw,-10px) scale(.331);animation:fall-343 18s -30s linear infinite}@keyframes fall-343{55.16%{transform:translate(70.2264vw,55.16vh) scale(.331)}to{transform:translate(66.71865vw,100vh) scale(.331)}}.snow:nth-child(344){opacity:1.3178;transform:translate(9.231vw,-10px) scale(.895);animation:fall-344 16s -22s linear infinite}@keyframes fall-344{66.901%{transform:translate(17.5422vw,66.901vh) scale(.895)}to{transform:translate(13.3866vw,100vh) scale(.895)}}.snow:nth-child(345){opacity:1.9942;transform:translate(11.0702vw,-10px) scale(.0084);animation:fall-345 26s -24s linear infinite}@keyframes fall-345{78.722%{transform:translate(5.624vw,78.722vh) scale(.0084)}to{transform:translate(8.3471vw,100vh) scale(.0084)}}.snow:nth-child(346){opacity:.745;transform:translate(32.8287vw,-10px) scale(.4034);animation:fall-346 30s -22s linear infinite}@keyframes fall-346{37.74%{transform:translate(23.3906vw,37.74vh) scale(.4034)}to{transform:translate(28.10965vw,100vh) scale(.4034)}}.snow:nth-child(347){opacity:1.8832;transform:translate(52.2566vw,-10px) scale(.8993);animation:fall-347 12s -30s linear infinite}@keyframes fall-347{58.183%{transform:translate(48.3544vw,58.183vh) scale(.8993)}to{transform:translate(50.3055vw,100vh) scale(.8993)}}.snow:nth-child(348){opacity:1.8382;transform:translate(85.3585vw,-10px) scale(.9228);animation:fall-348 30s -21s linear infinite}@keyframes fall-348{33.277%{transform:translate(82.9003vw,33.277vh) scale(.9228)}to{transform:translate(84.1294vw,100vh) scale(.9228)}}.snow:nth-child(349){opacity:1.0088;transform:translate(9.2789vw,-10px) scale(.9066);animation:fall-349 17s -10s linear infinite}@keyframes fall-349{54.607%{transform:translate(19.1006vw,54.607vh) scale(.9066)}to{transform:translate(14.18975vw,100vh) scale(.9066)}}.snow:nth-child(350){opacity:1.9062;transform:translate(89.5619vw,-10px) scale(.4785);animation:fall-350 26s -24s linear infinite}@keyframes fall-350{44.227%{transform:translate(93.0518vw,44.227vh) scale(.4785)}to{transform:translate(91.30685vw,100vh) scale(.4785)}}.snow:nth-child(351){opacity:1.8716;transform:translate(68.3208vw,-10px) scale(.1639);animation:fall-351 30s -27s linear infinite}@keyframes fall-351{38.03%{transform:translate(75.6081vw,38.03vh) scale(.1639)}to{transform:translate(71.96445vw,100vh) scale(.1639)}}.snow:nth-child(352){opacity:.1508;transform:translate(24.959vw,-10px) scale(.1877);animation:fall-352 30s -15s linear infinite}@keyframes fall-352{69.566%{transform:translate(21.9082vw,69.566vh) scale(.1877)}to{transform:translate(23.4336vw,100vh) scale(.1877)}}.snow:nth-child(353){opacity:.556;transform:translate(31.6257vw,-10px) scale(.9056);animation:fall-353 24s -25s linear infinite}@keyframes fall-353{42.748%{transform:translate(33.7651vw,42.748vh) scale(.9056)}to{transform:translate(32.6954vw,100vh) scale(.9056)}}.snow:nth-child(354){opacity:1.2036;transform:translate(39.2069vw,-10px) scale(.5468);animation:fall-354 15s -19s linear infinite}@keyframes fall-354{61.011%{transform:translate(31.2331vw,61.011vh) scale(.5468)}to{transform:translate(35.22vw,100vh) scale(.5468)}}.snow:nth-child(355){opacity:.2282;transform:translate(11.6863vw,-10px) scale(.1061);animation:fall-355 15s -7s linear infinite}@keyframes fall-355{67.557%{transform:translate(6.0214vw,67.557vh) scale(.1061)}to{transform:translate(8.85385vw,100vh) scale(.1061)}}.snow:nth-child(356){opacity:.1186;transform:translate(21.3474vw,-10px) scale(.4593);animation:fall-356 19s -21s linear infinite}@keyframes fall-356{40.587%{transform:translate(24.0189vw,40.587vh) scale(.4593)}to{transform:translate(22.68315vw,100vh) scale(.4593)}}.snow:nth-child(357){opacity:1.207;transform:translate(92.1715vw,-10px) scale(.4067);animation:fall-357 14s -21s linear infinite}@keyframes fall-357{51.368%{transform:translate(91.5431vw,51.368vh) scale(.4067)}to{transform:translate(91.8573vw,100vh) scale(.4067)}}.snow:nth-child(358){opacity:.2026;transform:translate(21.8848vw,-10px) scale(.1725);animation:fall-358 28s -27s linear infinite}@keyframes fall-358{49.683%{transform:translate(22.5014vw,49.683vh) scale(.1725)}to{transform:translate(22.1931vw,100vh) scale(.1725)}}.snow:nth-child(359){opacity:.7568;transform:translate(65.4501vw,-10px) scale(.6664);animation:fall-359 12s -12s linear infinite}@keyframes fall-359{64.089%{transform:translate(56.181vw,64.089vh) scale(.6664)}to{transform:translate(60.81555vw,100vh) scale(.6664)}}.snow:nth-child(360){opacity:.0216;transform:translate(7.9279vw,-10px) scale(.5122);animation:fall-360 23s -7s linear infinite}@keyframes fall-360{74.411%{transform:translate(6.4445vw,74.411vh) scale(.5122)}to{transform:translate(7.1862vw,100vh) scale(.5122)}}.snow:nth-child(361){opacity:.308;transform:translate(21.6115vw,-10px) scale(.1016);animation:fall-361 16s -22s linear infinite}@keyframes fall-361{36.968%{transform:translate(18.8718vw,36.968vh) scale(.1016)}to{transform:translate(20.24165vw,100vh) scale(.1016)}}.snow:nth-child(362){opacity:1.3556;transform:translate(3.148vw,-10px) scale(.9115);animation:fall-362 21s -16s linear infinite}@keyframes fall-362{42.373%{transform:translate(11.4029vw,42.373vh) scale(.9115)}to{transform:translate(7.27545vw,100vh) scale(.9115)}}.snow:nth-child(363){opacity:1.4846;transform:translate(60.414vw,-10px) scale(.2298);animation:fall-363 27s -3s linear infinite}@keyframes fall-363{66.832%{transform:translate(66.0028vw,66.832vh) scale(.2298)}to{transform:translate(63.2084vw,100vh) scale(.2298)}}.snow:nth-child(364){opacity:.9338;transform:translate(12.2133vw,-10px) scale(.9528);animation:fall-364 20s -28s linear infinite}@keyframes fall-364{59.245%{transform:translate(6.1228vw,59.245vh) scale(.9528)}to{transform:translate(9.16805vw,100vh) scale(.9528)}}.snow:nth-child(365){opacity:.7372;transform:translate(64.9766vw,-10px) scale(.1022);animation:fall-365 10s -19s linear infinite}@keyframes fall-365{65.23%{transform:translate(63.0987vw,65.23vh) scale(.1022)}to{transform:translate(64.03765vw,100vh) scale(.1022)}}.snow:nth-child(366){opacity:1.3354;transform:translate(12.0119vw,-10px) scale(.2074);animation:fall-366 24s -14s linear infinite}@keyframes fall-366{67.707%{transform:translate(14.9088vw,67.707vh) scale(.2074)}to{transform:translate(13.46035vw,100vh) scale(.2074)}}.snow:nth-child(367){opacity:.6172;transform:translate(94.2609vw,-10px) scale(.8427);animation:fall-367 11s -2s linear infinite}@keyframes fall-367{37.845%{transform:translate(92.7081vw,37.845vh) scale(.8427)}to{transform:translate(93.4845vw,100vh) scale(.8427)}}.snow:nth-child(368){opacity:.8644;transform:translate(63.5229vw,-10px) scale(.8678);animation:fall-368 23s -28s linear infinite}@keyframes fall-368{30.388%{transform:translate(60.6435vw,30.388vh) scale(.8678)}to{transform:translate(62.0832vw,100vh) scale(.8678)}}.snow:nth-child(369){opacity:1.7622;transform:translate(72.3871vw,-10px) scale(.9221);animation:fall-369 26s -4s linear infinite}@keyframes fall-369{75.116%{transform:translate(64.4106vw,75.116vh) scale(.9221)}to{transform:translate(68.39885vw,100vh) scale(.9221)}}.snow:nth-child(370){opacity:.5844;transform:translate(95.6989vw,-10px) scale(.5919);animation:fall-370 23s -17s linear infinite}@keyframes fall-370{77.832%{transform:translate(95.3674vw,77.832vh) scale(.5919)}to{transform:translate(95.53315vw,100vh) scale(.5919)}}.snow:nth-child(371){opacity:.529;transform:translate(73.8553vw,-10px) scale(.0512);animation:fall-371 19s -18s linear infinite}@keyframes fall-371{73.096%{transform:translate(69.3767vw,73.096vh) scale(.0512)}to{transform:translate(71.616vw,100vh) scale(.0512)}}.snow:nth-child(372){opacity:.9452;transform:translate(29.8709vw,-10px) scale(.2606);animation:fall-372 14s -12s linear infinite}@keyframes fall-372{79.177%{transform:translate(25.1129vw,79.177vh) scale(.2606)}to{transform:translate(27.4919vw,100vh) scale(.2606)}}.snow:nth-child(373){opacity:.9708;transform:translate(52.139vw,-10px) scale(.5425);animation:fall-373 14s -24s linear infinite}@keyframes fall-373{58.759%{transform:translate(57.6479vw,58.759vh) scale(.5425)}to{transform:translate(54.89345vw,100vh) scale(.5425)}}.snow:nth-child(374){opacity:1.3598;transform:translate(69.8272vw,-10px) scale(.2981);animation:fall-374 18s -22s linear infinite}@keyframes fall-374{32.113%{transform:translate(73.0706vw,32.113vh) scale(.2981)}to{transform:translate(71.4489vw,100vh) scale(.2981)}}.snow:nth-child(375){opacity:.9826;transform:translate(75.2725vw,-10px) scale(.324);animation:fall-375 22s -25s linear infinite}@keyframes fall-375{40.613%{transform:translate(76.0659vw,40.613vh) scale(.324)}to{transform:translate(75.6692vw,100vh) scale(.324)}}.snow:nth-child(376){opacity:.1838;transform:translate(59.2885vw,-10px) scale(.1891);animation:fall-376 23s -24s linear infinite}@keyframes fall-376{64.778%{transform:translate(52.0916vw,64.778vh) scale(.1891)}to{transform:translate(55.69005vw,100vh) scale(.1891)}}.snow:nth-child(377){opacity:.8804;transform:translate(62.0036vw,-10px) scale(.9157);animation:fall-377 26s -2s linear infinite}@keyframes fall-377{66.298%{transform:translate(61.9686vw,66.298vh) scale(.9157)}to{transform:translate(61.9861vw,100vh) scale(.9157)}}.snow:nth-child(378){opacity:1.6558;transform:translate(17.4804vw,-10px) scale(.2666);animation:fall-378 21s -8s linear infinite}@keyframes fall-378{77.235%{transform:translate(15.705vw,77.235vh) scale(.2666)}to{transform:translate(16.5927vw,100vh) scale(.2666)}}.snow:nth-child(379){opacity:1.827;transform:translate(79.5127vw,-10px) scale(.9613);animation:fall-379 30s -3s linear infinite}@keyframes fall-379{69.039%{transform:translate(81.6807vw,69.039vh) scale(.9613)}to{transform:translate(80.5967vw,100vh) scale(.9613)}}.snow:nth-child(380){opacity:1.7986;transform:translate(15.1933vw,-10px) scale(.8005);animation:fall-380 10s -13s linear infinite}@keyframes fall-380{38.533%{transform:translate(16.4935vw,38.533vh) scale(.8005)}to{transform:translate(15.8434vw,100vh) scale(.8005)}}.snow:nth-child(381){opacity:1.4106;transform:translate(83.547vw,-10px) scale(.9902);animation:fall-381 23s -27s linear infinite}@keyframes fall-381{70.116%{transform:translate(79.5591vw,70.116vh) scale(.9902)}to{transform:translate(81.55305vw,100vh) scale(.9902)}}.snow:nth-child(382){opacity:1.0306;transform:translate(86.434vw,-10px) scale(.4724);animation:fall-382 23s -5s linear infinite}@keyframes fall-382{53.121%{transform:translate(95.1996vw,53.121vh) scale(.4724)}to{transform:translate(90.8168vw,100vh) scale(.4724)}}.snow:nth-child(383){opacity:.5164;transform:translate(26.0509vw,-10px) scale(.8401);animation:fall-383 17s -23s linear infinite}@keyframes fall-383{69.334%{transform:translate(16.0561vw,69.334vh) scale(.8401)}to{transform:translate(21.0535vw,100vh) scale(.8401)}}.snow:nth-child(384){opacity:1.5464;transform:translate(63.3982vw,-10px) scale(.319);animation:fall-384 28s -13s linear infinite}@keyframes fall-384{54.919%{transform:translate(60.5296vw,54.919vh) scale(.319)}to{transform:translate(61.9639vw,100vh) scale(.319)}}.snow:nth-child(385){opacity:.195;transform:translate(54.3707vw,-10px) scale(.2882);animation:fall-385 14s -1s linear infinite}@keyframes fall-385{73.655%{transform:translate(59.2173vw,73.655vh) scale(.2882)}to{transform:translate(56.794vw,100vh) scale(.2882)}}.snow:nth-child(386){opacity:.7754;transform:translate(14.9485vw,-10px) scale(.5605);animation:fall-386 18s -7s linear infinite}@keyframes fall-386{59.636%{transform:translate(7.4807vw,59.636vh) scale(.5605)}to{transform:translate(11.2146vw,100vh) scale(.5605)}}.snow:nth-child(387){opacity:.579;transform:translate(52.1733vw,-10px) scale(.8783);animation:fall-387 13s -16s linear infinite}@keyframes fall-387{67.26%{transform:translate(62.1544vw,67.26vh) scale(.8783)}to{transform:translate(57.16385vw,100vh) scale(.8783)}}.snow:nth-child(388){opacity:.3696;transform:translate(50.4634vw,-10px) scale(.5533);animation:fall-388 11s -6s linear infinite}@keyframes fall-388{44.315%{transform:translate(46.2021vw,44.315vh) scale(.5533)}to{transform:translate(48.33275vw,100vh) scale(.5533)}}.snow:nth-child(389){opacity:.0444;transform:translate(45.053vw,-10px) scale(.4569);animation:fall-389 23s -17s linear infinite}@keyframes fall-389{57.272%{transform:translate(36.8206vw,57.272vh) scale(.4569)}to{transform:translate(40.9368vw,100vh) scale(.4569)}}.snow:nth-child(390){opacity:.8858;transform:translate(73.7921vw,-10px) scale(.555);animation:fall-390 22s -10s linear infinite}@keyframes fall-390{52.304%{transform:translate(67.7764vw,52.304vh) scale(.555)}to{transform:translate(70.78425vw,100vh) scale(.555)}}.snow:nth-child(391){opacity:.1832;transform:translate(56.0865vw,-10px) scale(.0583);animation:fall-391 24s -17s linear infinite}@keyframes fall-391{67.002%{transform:translate(54.9279vw,67.002vh) scale(.0583)}to{transform:translate(55.5072vw,100vh) scale(.0583)}}.snow:nth-child(392){opacity:.5446;transform:translate(49.2294vw,-10px) scale(.5508);animation:fall-392 29s -11s linear infinite}@keyframes fall-392{54.249%{transform:translate(53.3213vw,54.249vh) scale(.5508)}to{transform:translate(51.27535vw,100vh) scale(.5508)}}.snow:nth-child(393){opacity:1.025;transform:translate(63.8441vw,-10px) scale(.4622);animation:fall-393 20s -25s linear infinite}@keyframes fall-393{77.621%{transform:translate(64.6714vw,77.621vh) scale(.4622)}to{transform:translate(64.25775vw,100vh) scale(.4622)}}.snow:nth-child(394){opacity:.0356;transform:translate(75.5928vw,-10px) scale(.1765);animation:fall-394 28s -30s linear infinite}@keyframes fall-394{61.557%{transform:translate(75.9746vw,61.557vh) scale(.1765)}to{transform:translate(75.7837vw,100vh) scale(.1765)}}.snow:nth-child(395){opacity:1.6278;transform:translate(82.0706vw,-10px) scale(.818);animation:fall-395 28s -18s linear infinite}@keyframes fall-395{46.813%{transform:translate(81.1958vw,46.813vh) scale(.818)}to{transform:translate(81.6332vw,100vh) scale(.818)}}.snow:nth-child(396){opacity:.622;transform:translate(2.8109vw,-10px) scale(.2468);animation:fall-396 11s -12s linear infinite}@keyframes fall-396{32.028%{transform:translate(-6.9746vw,32.028vh) scale(.2468)}to{transform:translate(-2.08185vw,100vh) scale(.2468)}}.snow:nth-child(397){opacity:.1734;transform:translate(55.8485vw,-10px) scale(.0287);animation:fall-397 23s -3s linear infinite}@keyframes fall-397{43.461%{transform:translate(56.0488vw,43.461vh) scale(.0287)}to{transform:translate(55.94865vw,100vh) scale(.0287)}}.snow:nth-child(398){opacity:.5782;transform:translate(45.49vw,-10px) scale(.4649);animation:fall-398 18s -15s linear infinite}@keyframes fall-398{55.009%{transform:translate(46.4599vw,55.009vh) scale(.4649)}to{transform:translate(45.97495vw,100vh) scale(.4649)}}.snow:nth-child(399){opacity:.5474;transform:translate(19.3477vw,-10px) scale(.4042);animation:fall-399 11s -10s linear infinite}@keyframes fall-399{56.349%{transform:translate(12.9884vw,56.349vh) scale(.4042)}to{transform:translate(16.16805vw,100vh) scale(.4042)}}.snow:nth-child(400){opacity:1.3204;transform:translate(.7045vw,-10px) scale(.5356);animation:fall-400 28s -6s linear infinite}@keyframes fall-400{34.275%{transform:translate(-.5287vw,34.275vh) scale(.5356)}to{transform:translate(.0879vw,100vh) scale(.5356)}}\n"] }]
80
80
  }], ctorParameters: function () { return [{ type: i1.TokenService }, { type: i1.AppState }, { type: i2.Router }]; } });
81
81
 
82
82
  // Angular
@@ -153,7 +153,9 @@ class EsFaenzaCoreModule {
153
153
  static forRoot(config) {
154
154
  if (config.routes) {
155
155
  baseAppRoutes[0].redirectTo = `pages/${config.emptyRouteRedirect || 'dashboard'}`;
156
- baseAppRoutes.filter(t => ["pages", "pages_ext"].includes(t.path)).forEach(path => { path.children = config.routes; });
156
+ baseAppRoutes.filter(t => ["pages", "pages_ext"].includes(t.path)).forEach(path => {
157
+ path.children = [{ path: "profile", component: UserInfosComponent, data: { InternalNavigation: true, title: "profilo" } }, ...config.routes];
158
+ });
157
159
  }
158
160
  config.debugMode = (!isDevMode() && !config.forceDebugModeForProdBuilds) ? DebugFlags.None : (config.debugMode || DebugFlags.All);
159
161
  let mergedAppInitializer = (http, bts, aac) => {
@@ -205,6 +207,7 @@ class EsFaenzaCoreModule {
205
207
  { provide: GlobalSearchService, useClass: (config === null || config === void 0 ? void 0 : config.globalSearchService) || GlobalSearchService },
206
208
  { provide: CompletedJobRedirectionService, useClass: (config === null || config === void 0 ? void 0 : config.completedJobRedirectionService) || CompletedJobRedirectionService },
207
209
  { provide: MenuFilteringService, useClass: (config === null || config === void 0 ? void 0 : config.menuFilteringService) || MenuFilteringService },
210
+ { provide: UserPreferencesService, useClass: (config === null || config === void 0 ? void 0 : config.userPreferencesProvider) || UserPreferencesService },
208
211
  { provide: MENU_LOCALIZATION, useValue: config.menuLoc || null },
209
212
  { provide: MENU, useValue: config.menu },
210
213
  { provide: USE_FAKE_ACCESS_TOKEN, useValue: !!config.fakeAccessToken },