@esfaenza/core 15.2.4 → 15.2.6

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 (119) hide show
  1. package/components/base/navigable.component.d.ts +17 -0
  2. package/components/base/reactive.component.d.ts +9 -0
  3. package/components/breadcrumb/breadcrumb.component.d.ts +4 -0
  4. package/components/components.module.d.ts +11 -9
  5. package/components/jace-resource/jace-resource.component.d.ts +22 -0
  6. package/components/navbar/navbar.component.d.ts +22 -17
  7. package/components/public-api.d.ts +3 -0
  8. package/components/sidebar/sidebar.component.d.ts +13 -8
  9. package/domain/models/core/ApplicationJob.d.ts +12 -0
  10. package/domain/models/core/GenericItem.d.ts +10 -0
  11. package/domain/models/core/KeyValue.d.ts +5 -0
  12. package/domain/models/global_search/SaerchResultContainer.d.ts +5 -0
  13. package/domain/models/global_search/SearchResult.d.ts +10 -0
  14. package/domain/models/jace/{classes/ActiveModuleView.d.ts → ActiveModuleView.d.ts} +0 -5
  15. package/domain/models/jace/CategoriesWithModules.d.ts +6 -0
  16. package/domain/models/jace/{classes/JaceAccount.d.ts → JaceAccount.d.ts} +0 -9
  17. package/domain/models/jace/{classes/JaceIdentity.d.ts → JaceIdentity.d.ts} +1 -3
  18. package/domain/models/jace/JaceUser.d.ts +9 -0
  19. package/domain/public-api.d.ts +16 -10
  20. package/domain/tokens.d.ts +1 -1
  21. package/esm2020/components/base/navigable.component.mjs +43 -0
  22. package/esm2020/components/base/reactive.component.mjs +26 -0
  23. package/esm2020/components/breadcrumb/breadcrumb.component.mjs +34 -29
  24. package/esm2020/components/components.module.mjs +15 -8
  25. package/esm2020/components/error/Angular/angularerror.component.mjs +7 -5
  26. package/esm2020/components/external-page/external_pages.component.mjs +1 -2
  27. package/esm2020/components/jace-resource/jace-resource.component.mjs +65 -0
  28. package/esm2020/components/navbar/modules-board/jace-modules-board.component.mjs +1 -1
  29. package/esm2020/components/navbar/navbar.component.mjs +85 -68
  30. package/esm2020/components/public-api.mjs +4 -1
  31. package/esm2020/components/sidebar/sidebar.component.mjs +67 -39
  32. package/esm2020/domain/models/core/ApplicationJob.mjs +3 -0
  33. package/esm2020/domain/models/core/ApplicationMenu.mjs +26 -0
  34. package/esm2020/domain/models/core/EnvOptions.mjs +13 -0
  35. package/esm2020/domain/models/core/GenericItem.mjs +12 -0
  36. package/esm2020/domain/models/core/KeyValue.mjs +15 -0
  37. package/esm2020/domain/models/global_search/SaerchResultContainer.mjs +6 -0
  38. package/esm2020/domain/models/global_search/SearchResult.mjs +8 -0
  39. package/esm2020/domain/models/jace/AccountScope.mjs +8 -0
  40. package/esm2020/domain/models/jace/ActiveModuleView.mjs +3 -0
  41. package/esm2020/domain/models/jace/CategoriesWithModules.mjs +7 -0
  42. package/esm2020/domain/models/jace/JaceAccount.mjs +3 -0
  43. package/esm2020/domain/models/jace/JaceIdentity.mjs +13 -0
  44. package/esm2020/domain/models/jace/JaceModule.mjs +3 -0
  45. package/esm2020/domain/models/jace/JacePermission.mjs +3 -0
  46. package/esm2020/domain/models/jace/JaceRole.mjs +8 -0
  47. package/esm2020/domain/models/jace/JaceUser.mjs +3 -0
  48. package/esm2020/domain/public-api.mjs +17 -11
  49. package/esm2020/domain/tokens.mjs +1 -1
  50. package/esm2020/lib/app.component.mjs +2 -2
  51. package/esm2020/lib/core.module.mjs +8 -7
  52. package/esm2020/pipes/classes/included_in.pipe.mjs +17 -0
  53. package/esm2020/pipes/{safe_html → classes}/safe_html.pipe.mjs +1 -1
  54. package/esm2020/pipes/{safe_script → classes}/safe_script.pipe.mjs +1 -1
  55. package/esm2020/pipes/{safe_style → classes}/safe_style.pipe.mjs +1 -1
  56. package/esm2020/pipes/classes/safe_url.pipe.mjs +18 -0
  57. package/esm2020/pipes/pipes.module.mjs +6 -6
  58. package/esm2020/pipes/public-api.mjs +6 -6
  59. package/esm2020/services/classes/app.completedjobredirection.mjs +18 -0
  60. package/esm2020/services/classes/app.globalsearch.mjs +34 -0
  61. package/esm2020/services/classes/app.menufilter.mjs +21 -0
  62. package/esm2020/services/classes/app.state.mjs +101 -9
  63. package/esm2020/services/public-api.mjs +4 -1
  64. package/fesm2015/esfaenza-core-components.mjs +336 -216
  65. package/fesm2015/esfaenza-core-components.mjs.map +1 -1
  66. package/fesm2015/esfaenza-core-domain.mjs +55 -15
  67. package/fesm2015/esfaenza-core-domain.mjs.map +1 -1
  68. package/fesm2015/esfaenza-core-pipes.mjs +2 -2
  69. package/fesm2015/esfaenza-core-pipes.mjs.map +1 -1
  70. package/fesm2015/esfaenza-core-services.mjs +168 -10
  71. package/fesm2015/esfaenza-core-services.mjs.map +1 -1
  72. package/fesm2015/esfaenza-core.mjs +11 -10
  73. package/fesm2015/esfaenza-core.mjs.map +1 -1
  74. package/fesm2020/esfaenza-core-components.mjs +328 -209
  75. package/fesm2020/esfaenza-core-components.mjs.map +1 -1
  76. package/fesm2020/esfaenza-core-domain.mjs +54 -14
  77. package/fesm2020/esfaenza-core-domain.mjs.map +1 -1
  78. package/fesm2020/esfaenza-core-pipes.mjs +2 -2
  79. package/fesm2020/esfaenza-core-pipes.mjs.map +1 -1
  80. package/fesm2020/esfaenza-core-services.mjs +167 -10
  81. package/fesm2020/esfaenza-core-services.mjs.map +1 -1
  82. package/fesm2020/esfaenza-core.mjs +11 -10
  83. package/fesm2020/esfaenza-core.mjs.map +1 -1
  84. package/lib/core.module.d.ts +6 -8
  85. package/package.json +1 -1
  86. package/pipes/{safe_url → classes}/safe_url.pipe.d.ts +1 -1
  87. package/pipes/pipes.module.d.ts +5 -5
  88. package/pipes/public-api.d.ts +5 -5
  89. package/services/classes/app.completedjobredirection.d.ts +12 -0
  90. package/services/classes/app.globalsearch.d.ts +25 -0
  91. package/services/classes/app.menufilter.d.ts +14 -0
  92. package/services/classes/app.state.d.ts +10 -17
  93. package/services/public-api.d.ts +3 -0
  94. package/theme/initial.scss +0 -8
  95. package/components/sidebar/sidebar.component.service.d.ts +0 -27
  96. package/domain/models/jace/classes/User.d.ts +0 -4
  97. package/esm2020/components/sidebar/sidebar.component.service.mjs +0 -58
  98. package/esm2020/domain/models/core/classes/ApplicationMenu.mjs +0 -26
  99. package/esm2020/domain/models/core/classes/EnvOptions.mjs +0 -13
  100. package/esm2020/domain/models/jace/classes/AccountScope.mjs +0 -8
  101. package/esm2020/domain/models/jace/classes/ActiveModuleView.mjs +0 -9
  102. package/esm2020/domain/models/jace/classes/JaceAccount.mjs +0 -5
  103. package/esm2020/domain/models/jace/classes/JaceIdentity.mjs +0 -16
  104. package/esm2020/domain/models/jace/classes/JaceModule.mjs +0 -3
  105. package/esm2020/domain/models/jace/classes/JacePermission.mjs +0 -3
  106. package/esm2020/domain/models/jace/classes/JaceRole.mjs +0 -8
  107. package/esm2020/domain/models/jace/classes/User.mjs +0 -3
  108. package/esm2020/pipes/included_in/included_in.pipe.mjs +0 -17
  109. package/esm2020/pipes/safe_url/safe_url.pipe.mjs +0 -18
  110. /package/domain/models/core/{classes/ApplicationMenu.d.ts → ApplicationMenu.d.ts} +0 -0
  111. /package/domain/models/core/{classes/EnvOptions.d.ts → EnvOptions.d.ts} +0 -0
  112. /package/domain/models/jace/{classes/AccountScope.d.ts → AccountScope.d.ts} +0 -0
  113. /package/domain/models/jace/{classes/JaceModule.d.ts → JaceModule.d.ts} +0 -0
  114. /package/domain/models/jace/{classes/JacePermission.d.ts → JacePermission.d.ts} +0 -0
  115. /package/domain/models/jace/{classes/JaceRole.d.ts → JaceRole.d.ts} +0 -0
  116. /package/pipes/{included_in → classes}/included_in.pipe.d.ts +0 -0
  117. /package/pipes/{safe_html → classes}/safe_html.pipe.d.ts +0 -0
  118. /package/pipes/{safe_script → classes}/safe_script.pipe.d.ts +0 -0
  119. /package/pipes/{safe_style → classes}/safe_style.pipe.d.ts +0 -0
@@ -1,7 +1,7 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Component, ViewEncapsulation, isDevMode, LOCALE_ID, APP_INITIALIZER, ErrorHandler, NgModule } from '@angular/core';
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, OutZoneEventPlugin, HTTPServiceExtensions, TokenService, APPErrorHandler } from '@esfaenza/core/services';
4
+ import { SessionRetriever, ApplicationPreferencesPersistor, ApplicationCachePersistor, APPErrorHandler, OutZoneEventPlugin, HTTPServiceExtensions, TokenService, GlobalSearchService, CompletedJobRedirectionService, MenuFilteringService } 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';
@@ -17,10 +17,10 @@ import { CookieService } from 'ngx-cookie-service';
17
17
  import * as i16 from 'ngx-toastr';
18
18
  import { ToastrModule } from 'ngx-toastr';
19
19
  import 'widgster/widgster.js';
20
- import * as i6 from '@esfaenza/localizations';
21
- import { LocalizationModule, LocalizationMissingPolicy, LocalizationService, LOC_DEBUG_MODE } from '@esfaenza/localizations';
22
20
  import * as i8 from '@esfaenza/httpservice';
23
21
  import { HttpserviceModule, HttpServiceExtensions, HTTPService, HTTP_DEBUG_MODE, HTTP_INVALIDATION } from '@esfaenza/httpservice';
22
+ import * as i6 from '@esfaenza/localizations';
23
+ import { LocalizationModule, LocalizationMissingPolicy, LocalizationService, LOC_DEBUG_MODE } from '@esfaenza/localizations';
24
24
  import * as i9 from '@esfaenza/signalr-notifications';
25
25
  import { SignalrNotificationsModule, SGR_DEBUG_MODE, BaseMessageService } from '@esfaenza/signalr-notifications';
26
26
  import * as i4 from '@esfaenza/forms-and-validations';
@@ -70,10 +70,10 @@ class AppComponent {
70
70
  }
71
71
  }
72
72
  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 });
73
- AppComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AppComponent, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: [".table-borderless>tbody>tr>td,.table-borderless>tbody>tr>th,.table-borderless>tfoot>tr>td,.table-borderless>tfoot>tr>th,.table-borderless>thead>tr>td,.table-borderless>thead>tr>th{border:none}.table,.table-responsive{margin-bottom:5px}a:hover,a:focus{text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}*{outline:none!important}.modal-title{width:calc(100% - 20px)}.progress{height:20px}.progress.progress-primary[value]::-webkit-progress-value{background-color:#024a88}.progress.progress-primary[value]::-moz-progress-bar{background-color:#024a88}.progress.progress-primary[value]::-ms-fill{background-color:#024a88}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#024a88}}.progress.progress-info[value]::-webkit-progress-value{background-color:#248dad}.progress.progress-info[value]::-moz-progress-bar{background-color:#248dad}.progress.progress-info[value]::-ms-fill{background-color:#248dad}@media screen and (min-width: 0\\fffd){.progress.progress-info .progress-bar{background-color:#248dad}}.progress.progress-danger[value]::-webkit-progress-value{background-color:#bf1725}.progress.progress-danger[value]::-moz-progress-bar{background-color:#bf1725}.progress.progress-danger[value]::-ms-fill{background-color:#bf1725}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#bf1725}}.progress.progress-success[value]::-webkit-progress-value{background-color:#2d922d}.progress.progress-success[value]::-moz-progress-bar{background-color:#2d922d}.progress.progress-success[value]::-ms-fill{background-color:#2d922d}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#2d922d}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#f79a17}.progress.progress-warning[value]::-moz-progress-bar{background-color:#f79a17}.progress.progress-warning[value]::-ms-fill{background-color:#f79a17}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#f79a17}}.progress[value]::-moz-progress-bar{border-radius:0}.progress[value]::-webkit-progress-value{border-radius:0}.progress[value=\"100\"]::-moz-progress-bar{border-radius:0}.progress[value=\"100\"]::-webkit-progress-value{border-radius:0}.progress-xs{height:7px}.progress-sm{height:10px}.progress-md{height:13px}.progress-bar-info-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem;background-color:#5bc0de!important}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:1.5588;transform:translate(94.8201vw,-10px) scale(.6643);animation:fall-1 20s -24s linear infinite}@keyframes fall-1{39.157%{transform:translate(102.4357vw,39.157vh) scale(.6643)}to{transform:translate(98.6279vw,100vh) scale(.6643)}}.snow:nth-child(2){opacity:.7326;transform:translate(80.3191vw,-10px) scale(.0515);animation:fall-2 30s -9s linear infinite}@keyframes fall-2{60.279%{transform:translate(88.5749vw,60.279vh) scale(.0515)}to{transform:translate(84.447vw,100vh) scale(.0515)}}.snow:nth-child(3){opacity:.2936;transform:translate(26.963vw,-10px) scale(.414);animation:fall-3 14s -9s linear infinite}@keyframes fall-3{41.594%{transform:translate(23.3927vw,41.594vh) scale(.414)}to{transform:translate(25.17785vw,100vh) scale(.414)}}.snow:nth-child(4){opacity:.1398;transform:translate(27.5808vw,-10px) scale(.2645);animation:fall-4 16s -7s linear infinite}@keyframes fall-4{72.741%{transform:translate(17.9543vw,72.741vh) scale(.2645)}to{transform:translate(22.76755vw,100vh) scale(.2645)}}.snow:nth-child(5){opacity:1.4136;transform:translate(32.8648vw,-10px) scale(.6218);animation:fall-5 21s -28s linear infinite}@keyframes fall-5{64.433%{transform:translate(26.8753vw,64.433vh) scale(.6218)}to{transform:translate(29.87005vw,100vh) scale(.6218)}}.snow:nth-child(6){opacity:1.0732;transform:translate(55.0433vw,-10px) scale(.2178);animation:fall-6 17s -2s linear infinite}@keyframes fall-6{32.865%{transform:translate(63.2852vw,32.865vh) scale(.2178)}to{transform:translate(59.16425vw,100vh) scale(.2178)}}.snow:nth-child(7){opacity:.894;transform:translate(44.3017vw,-10px) scale(.0092);animation:fall-7 22s -4s linear infinite}@keyframes fall-7{61.238%{transform:translate(51.4343vw,61.238vh) scale(.0092)}to{transform:translate(47.868vw,100vh) scale(.0092)}}.snow:nth-child(8){opacity:.1618;transform:translate(67.9496vw,-10px) scale(.9236);animation:fall-8 22s -2s linear infinite}@keyframes fall-8{62.687%{transform:translate(62.7891vw,62.687vh) scale(.9236)}to{transform:translate(65.36935vw,100vh) scale(.9236)}}.snow:nth-child(9){opacity:.9934;transform:translate(74.9808vw,-10px) scale(.1295);animation:fall-9 10s -5s linear infinite}@keyframes fall-9{71.83%{transform:translate(67.0429vw,71.83vh) scale(.1295)}to{transform:translate(71.01185vw,100vh) scale(.1295)}}.snow:nth-child(10){opacity:.0158;transform:translate(26.8551vw,-10px) scale(.4321);animation:fall-10 21s -26s linear infinite}@keyframes fall-10{70.552%{transform:translate(26.1307vw,70.552vh) scale(.4321)}to{transform:translate(26.4929vw,100vh) scale(.4321)}}.snow:nth-child(11){opacity:.4438;transform:translate(15.1098vw,-10px) scale(.8053);animation:fall-11 30s -13s linear infinite}@keyframes fall-11{45.387%{transform:translate(21.6539vw,45.387vh) scale(.8053)}to{transform:translate(18.38185vw,100vh) scale(.8053)}}.snow:nth-child(12){opacity:1.038;transform:translate(75.142vw,-10px) scale(.1371);animation:fall-12 23s -10s linear infinite}@keyframes fall-12{42.506%{transform:translate(70.0173vw,42.506vh) scale(.1371)}to{transform:translate(72.57965vw,100vh) scale(.1371)}}.snow:nth-child(13){opacity:.2518;transform:translate(30.6893vw,-10px) scale(.1966);animation:fall-13 23s -22s linear infinite}@keyframes fall-13{68.248%{transform:translate(32.8962vw,68.248vh) scale(.1966)}to{transform:translate(31.79275vw,100vh) scale(.1966)}}.snow:nth-child(14){opacity:1.4358;transform:translate(37.2203vw,-10px) scale(.5419);animation:fall-14 20s -14s linear infinite}@keyframes fall-14{30.21%{transform:translate(44.9286vw,30.21vh) scale(.5419)}to{transform:translate(41.07445vw,100vh) scale(.5419)}}.snow:nth-child(15){opacity:1.525;transform:translate(25.7392vw,-10px) scale(.2646);animation:fall-15 16s -23s linear infinite}@keyframes fall-15{67.064%{transform:translate(18.0357vw,67.064vh) scale(.2646)}to{transform:translate(21.88745vw,100vh) scale(.2646)}}.snow:nth-child(16){opacity:.8134;transform:translate(18.7278vw,-10px) scale(.897);animation:fall-16 28s -7s linear infinite}@keyframes fall-16{70.248%{transform:translate(21.8593vw,70.248vh) scale(.897)}to{transform:translate(20.29355vw,100vh) scale(.897)}}.snow:nth-child(17){opacity:.0852;transform:translate(51.3095vw,-10px) scale(.2958);animation:fall-17 18s -29s linear infinite}@keyframes fall-17{34.437%{transform:translate(43.855vw,34.437vh) scale(.2958)}to{transform:translate(47.58225vw,100vh) scale(.2958)}}.snow:nth-child(18){opacity:.4214;transform:translate(59.1367vw,-10px) scale(.8731);animation:fall-18 30s -23s linear infinite}@keyframes fall-18{41.349%{transform:translate(58.0078vw,41.349vh) scale(.8731)}to{transform:translate(58.57225vw,100vh) scale(.8731)}}.snow:nth-child(19){opacity:1.642;transform:translate(71.4566vw,-10px) scale(.1508);animation:fall-19 26s -23s linear infinite}@keyframes fall-19{70.233%{transform:translate(72.1725vw,70.233vh) scale(.1508)}to{transform:translate(71.81455vw,100vh) scale(.1508)}}.snow:nth-child(20){opacity:1.4344;transform:translate(28.2732vw,-10px) scale(.3183);animation:fall-20 13s -30s linear infinite}@keyframes fall-20{57.309%{transform:translate(27.2537vw,57.309vh) scale(.3183)}to{transform:translate(27.76345vw,100vh) scale(.3183)}}.snow:nth-child(21){opacity:1.0552;transform:translate(34.7487vw,-10px) scale(.1686);animation:fall-21 24s -15s linear infinite}@keyframes fall-21{58.458%{transform:translate(25.0315vw,58.458vh) scale(.1686)}to{transform:translate(29.8901vw,100vh) scale(.1686)}}.snow:nth-child(22){opacity:1.2698;transform:translate(63.3146vw,-10px) scale(.5403);animation:fall-22 20s -20s linear infinite}@keyframes fall-22{53.405%{transform:translate(70.5129vw,53.405vh) scale(.5403)}to{transform:translate(66.91375vw,100vh) scale(.5403)}}.snow:nth-child(23){opacity:.9998;transform:translate(27.8958vw,-10px) scale(.5609);animation:fall-23 17s -6s linear infinite}@keyframes fall-23{49.1%{transform:translate(26.6551vw,49.1vh) scale(.5609)}to{transform:translate(27.27545vw,100vh) scale(.5609)}}.snow:nth-child(24){opacity:.4382;transform:translate(81.2101vw,-10px) scale(.5183);animation:fall-24 12s -6s linear infinite}@keyframes fall-24{31.434%{transform:translate(78.2352vw,31.434vh) scale(.5183)}to{transform:translate(79.72265vw,100vh) scale(.5183)}}.snow:nth-child(25){opacity:.608;transform:translate(59.6349vw,-10px) scale(.0008);animation:fall-25 13s -6s linear infinite}@keyframes fall-25{33.5%{transform:translate(64.5037vw,33.5vh) scale(.0008)}to{transform:translate(62.0693vw,100vh) scale(.0008)}}.snow:nth-child(26){opacity:1.8882;transform:translate(28.238vw,-10px) scale(.2265);animation:fall-26 29s -4s linear infinite}@keyframes fall-26{72.039%{transform:translate(37.9544vw,72.039vh) scale(.2265)}to{transform:translate(33.0962vw,100vh) scale(.2265)}}.snow:nth-child(27){opacity:1.5804;transform:translate(19.8671vw,-10px) scale(.3716);animation:fall-27 28s -8s linear infinite}@keyframes fall-27{76.078%{transform:translate(27.7015vw,76.078vh) scale(.3716)}to{transform:translate(23.7843vw,100vh) scale(.3716)}}.snow:nth-child(28){opacity:.2056;transform:translate(62.6549vw,-10px) scale(.231);animation:fall-28 25s -3s linear infinite}@keyframes fall-28{77.058%{transform:translate(67.0919vw,77.058vh) scale(.231)}to{transform:translate(64.8734vw,100vh) scale(.231)}}.snow:nth-child(29){opacity:.2724;transform:translate(35.2709vw,-10px) scale(.2862);animation:fall-29 21s -26s linear infinite}@keyframes fall-29{70.203%{transform:translate(34.7511vw,70.203vh) scale(.2862)}to{transform:translate(35.011vw,100vh) scale(.2862)}}.snow:nth-child(30){opacity:.3422;transform:translate(93.4652vw,-10px) scale(.757);animation:fall-30 17s -7s linear infinite}@keyframes fall-30{79.693%{transform:translate(94.3001vw,79.693vh) scale(.757)}to{transform:translate(93.88265vw,100vh) scale(.757)}}.snow:nth-child(31){opacity:1.4134;transform:translate(94.3221vw,-10px) scale(.2163);animation:fall-31 20s -27s linear infinite}@keyframes fall-31{37.905%{transform:translate(89.1096vw,37.905vh) scale(.2163)}to{transform:translate(91.71585vw,100vh) scale(.2163)}}.snow:nth-child(32){opacity:.2634;transform:translate(48.4384vw,-10px) scale(.102);animation:fall-32 21s -6s linear infinite}@keyframes fall-32{30.85%{transform:translate(39.4493vw,30.85vh) scale(.102)}to{transform:translate(43.94385vw,100vh) scale(.102)}}.snow:nth-child(33){opacity:.9804;transform:translate(66.9139vw,-10px) scale(.8158);animation:fall-33 30s -4s linear infinite}@keyframes fall-33{59.02%{transform:translate(57.6991vw,59.02vh) scale(.8158)}to{transform:translate(62.3065vw,100vh) scale(.8158)}}.snow:nth-child(34){opacity:1.8664;transform:translate(37.1795vw,-10px) scale(.964);animation:fall-34 24s -26s linear infinite}@keyframes fall-34{62.483%{transform:translate(35.5331vw,62.483vh) scale(.964)}to{transform:translate(36.3563vw,100vh) scale(.964)}}.snow:nth-child(35){opacity:.7908;transform:translate(2.1606vw,-10px) scale(.3702);animation:fall-35 13s -8s linear infinite}@keyframes fall-35{33.981%{transform:translate(2.0301vw,33.981vh) scale(.3702)}to{transform:translate(2.09535vw,100vh) scale(.3702)}}.snow:nth-child(36){opacity:1.469;transform:translate(35.8064vw,-10px) scale(.6481);animation:fall-36 28s -29s linear infinite}@keyframes fall-36{66.126%{transform:translate(36.4504vw,66.126vh) scale(.6481)}to{transform:translate(36.1284vw,100vh) scale(.6481)}}.snow:nth-child(37){opacity:.1428;transform:translate(6.0239vw,-10px) scale(.3119);animation:fall-37 20s -28s linear infinite}@keyframes fall-37{37.806%{transform:translate(.2634vw,37.806vh) scale(.3119)}to{transform:translate(3.14365vw,100vh) scale(.3119)}}.snow:nth-child(38){opacity:1.689;transform:translate(84.1325vw,-10px) scale(.6786);animation:fall-38 18s -5s linear infinite}@keyframes fall-38{51.481%{transform:translate(77.5566vw,51.481vh) scale(.6786)}to{transform:translate(80.84455vw,100vh) scale(.6786)}}.snow:nth-child(39){opacity:.4732;transform:translate(28.5967vw,-10px) scale(.3128);animation:fall-39 16s -24s linear infinite}@keyframes fall-39{78.034%{transform:translate(18.758vw,78.034vh) scale(.3128)}to{transform:translate(23.67735vw,100vh) scale(.3128)}}.snow:nth-child(40){opacity:.3004;transform:translate(84.3274vw,-10px) scale(.5634);animation:fall-40 23s -30s linear infinite}@keyframes fall-40{74.008%{transform:translate(74.9339vw,74.008vh) scale(.5634)}to{transform:translate(79.63065vw,100vh) scale(.5634)}}.snow:nth-child(41){opacity:1.3616;transform:translate(81.7909vw,-10px) scale(.7139);animation:fall-41 13s -26s linear infinite}@keyframes fall-41{66.224%{transform:translate(84.9057vw,66.224vh) scale(.7139)}to{transform:translate(83.3483vw,100vh) scale(.7139)}}.snow:nth-child(42){opacity:1.634;transform:translate(11.6907vw,-10px) scale(.3026);animation:fall-42 14s -4s linear infinite}@keyframes fall-42{73.776%{transform:translate(3.6902vw,73.776vh) scale(.3026)}to{transform:translate(7.69045vw,100vh) scale(.3026)}}.snow:nth-child(43){opacity:.2204;transform:translate(33.4139vw,-10px) scale(.4903);animation:fall-43 27s -13s linear infinite}@keyframes fall-43{33.397%{transform:translate(24.9094vw,33.397vh) scale(.4903)}to{transform:translate(29.16165vw,100vh) scale(.4903)}}.snow:nth-child(44){opacity:1.8676;transform:translate(53.9514vw,-10px) scale(.2036);animation:fall-44 20s -21s linear infinite}@keyframes fall-44{36.132%{transform:translate(53.2735vw,36.132vh) scale(.2036)}to{transform:translate(53.61245vw,100vh) scale(.2036)}}.snow:nth-child(45){opacity:1.5442;transform:translate(9.7537vw,-10px) scale(.9852);animation:fall-45 26s -7s linear infinite}@keyframes fall-45{62.526%{transform:translate(18.2087vw,62.526vh) scale(.9852)}to{transform:translate(13.9812vw,100vh) scale(.9852)}}.snow:nth-child(46){opacity:.0088;transform:translate(43.5176vw,-10px) scale(.0638);animation:fall-46 16s -26s linear infinite}@keyframes fall-46{67.154%{transform:translate(41.0116vw,67.154vh) scale(.0638)}to{transform:translate(42.2646vw,100vh) scale(.0638)}}.snow:nth-child(47){opacity:.3028;transform:translate(21.6873vw,-10px) scale(.2821);animation:fall-47 16s -25s linear infinite}@keyframes fall-47{42.675%{transform:translate(14.6368vw,42.675vh) scale(.2821)}to{transform:translate(18.16205vw,100vh) scale(.2821)}}.snow:nth-child(48){opacity:1.755;transform:translate(5.7021vw,-10px) scale(.1286);animation:fall-48 27s -28s linear infinite}@keyframes fall-48{62.774%{transform:translate(-3.8714vw,62.774vh) scale(.1286)}to{transform:translate(.91535vw,100vh) scale(.1286)}}.snow:nth-child(49){opacity:.1036;transform:translate(64.2158vw,-10px) scale(.254);animation:fall-49 16s -19s linear infinite}@keyframes fall-49{73.465%{transform:translate(58.1134vw,73.465vh) scale(.254)}to{transform:translate(61.1646vw,100vh) scale(.254)}}.snow:nth-child(50){opacity:.1292;transform:translate(83.081vw,-10px) scale(.583);animation:fall-50 26s -14s linear infinite}@keyframes fall-50{63.69%{transform:translate(82.3443vw,63.69vh) scale(.583)}to{transform:translate(82.71265vw,100vh) scale(.583)}}.snow:nth-child(51){opacity:1.1322;transform:translate(37.5754vw,-10px) scale(.5821);animation:fall-51 17s -25s linear infinite}@keyframes fall-51{66.02%{transform:translate(30.8234vw,66.02vh) scale(.5821)}to{transform:translate(34.1994vw,100vh) scale(.5821)}}.snow:nth-child(52){opacity:1.3832;transform:translate(44.1737vw,-10px) scale(.8226);animation:fall-52 13s -3s linear infinite}@keyframes fall-52{68.086%{transform:translate(45.4762vw,68.086vh) scale(.8226)}to{transform:translate(44.82495vw,100vh) scale(.8226)}}.snow:nth-child(53){opacity:1.21;transform:translate(93.9377vw,-10px) scale(.6339);animation:fall-53 14s -20s linear infinite}@keyframes fall-53{68.426%{transform:translate(94.3839vw,68.426vh) scale(.6339)}to{transform:translate(94.1608vw,100vh) scale(.6339)}}.snow:nth-child(54){opacity:1.9128;transform:translate(87.9883vw,-10px) scale(.5956);animation:fall-54 26s -23s linear infinite}@keyframes fall-54{63.318%{transform:translate(78.9374vw,63.318vh) scale(.5956)}to{transform:translate(83.46285vw,100vh) scale(.5956)}}.snow:nth-child(55){opacity:1.0156;transform:translate(60.9483vw,-10px) scale(.1633);animation:fall-55 22s -6s linear infinite}@keyframes fall-55{41.635%{transform:translate(63.4967vw,41.635vh) scale(.1633)}to{transform:translate(62.2225vw,100vh) scale(.1633)}}.snow:nth-child(56){opacity:1.8322;transform:translate(96.5796vw,-10px) scale(.6932);animation:fall-56 16s -10s linear infinite}@keyframes fall-56{47.032%{transform:translate(97.2597vw,47.032vh) scale(.6932)}to{transform:translate(96.91965vw,100vh) scale(.6932)}}.snow:nth-child(57){opacity:.8654;transform:translate(76.9324vw,-10px) scale(.4449);animation:fall-57 13s -27s linear infinite}@keyframes fall-57{57.909%{transform:translate(79.9932vw,57.909vh) scale(.4449)}to{transform:translate(78.4628vw,100vh) scale(.4449)}}.snow:nth-child(58){opacity:1.3618;transform:translate(65.1919vw,-10px) scale(.2168);animation:fall-58 22s -11s linear infinite}@keyframes fall-58{46.458%{transform:translate(70.6353vw,46.458vh) scale(.2168)}to{transform:translate(67.9136vw,100vh) scale(.2168)}}.snow:nth-child(59){opacity:.8244;transform:translate(59.2519vw,-10px) scale(.682);animation:fall-59 14s -25s linear infinite}@keyframes fall-59{36.495%{transform:translate(63.7444vw,36.495vh) scale(.682)}to{transform:translate(61.49815vw,100vh) scale(.682)}}.snow:nth-child(60){opacity:.2432;transform:translate(.6125vw,-10px) scale(.0586);animation:fall-60 20s -21s linear infinite}@keyframes fall-60{76.183%{transform:translate(-6.5816vw,76.183vh) scale(.0586)}to{transform:translate(-2.98455vw,100vh) scale(.0586)}}.snow:nth-child(61){opacity:1.5908;transform:translate(64.5391vw,-10px) scale(.0091);animation:fall-61 20s -22s linear infinite}@keyframes fall-61{55.679%{transform:translate(66.4458vw,55.679vh) scale(.0091)}to{transform:translate(65.49245vw,100vh) scale(.0091)}}.snow:nth-child(62){opacity:1.7726;transform:translate(49.2191vw,-10px) scale(.0277);animation:fall-62 12s -29s linear infinite}@keyframes fall-62{48.745%{transform:translate(54.9136vw,48.745vh) scale(.0277)}to{transform:translate(52.06635vw,100vh) scale(.0277)}}.snow:nth-child(63){opacity:1.5552;transform:translate(96.2241vw,-10px) scale(.24);animation:fall-63 30s -8s linear infinite}@keyframes fall-63{53.571%{transform:translate(96.7553vw,53.571vh) scale(.24)}to{transform:translate(96.4897vw,100vh) scale(.24)}}.snow:nth-child(64){opacity:.829;transform:translate(37.601vw,-10px) scale(.8699);animation:fall-64 21s -18s linear infinite}@keyframes fall-64{79.373%{transform:translate(35.1609vw,79.373vh) scale(.8699)}to{transform:translate(36.38095vw,100vh) scale(.8699)}}.snow:nth-child(65){opacity:1.8816;transform:translate(42.5406vw,-10px) scale(.8492);animation:fall-65 19s -12s linear infinite}@keyframes fall-65{79.595%{transform:translate(33.7966vw,79.595vh) scale(.8492)}to{transform:translate(38.1686vw,100vh) scale(.8492)}}.snow:nth-child(66){opacity:1.4606;transform:translate(61.6306vw,-10px) scale(.5219);animation:fall-66 14s -28s linear infinite}@keyframes fall-66{43.949%{transform:translate(63.059vw,43.949vh) scale(.5219)}to{transform:translate(62.3448vw,100vh) scale(.5219)}}.snow:nth-child(67){opacity:1.3914;transform:translate(54.7521vw,-10px) scale(.5532);animation:fall-67 24s -30s linear infinite}@keyframes fall-67{45.873%{transform:translate(59.0889vw,45.873vh) scale(.5532)}to{transform:translate(56.9205vw,100vh) scale(.5532)}}.snow:nth-child(68){opacity:.332;transform:translate(41.6388vw,-10px) scale(.4396);animation:fall-68 30s -24s linear infinite}@keyframes fall-68{62.853%{transform:translate(45.9531vw,62.853vh) scale(.4396)}to{transform:translate(43.79595vw,100vh) scale(.4396)}}.snow:nth-child(69){opacity:1.284;transform:translate(68.8881vw,-10px) scale(.7252);animation:fall-69 17s -1s linear infinite}@keyframes fall-69{78.666%{transform:translate(68.0625vw,78.666vh) scale(.7252)}to{transform:translate(68.4753vw,100vh) scale(.7252)}}.snow:nth-child(70){opacity:.9258;transform:translate(50.8009vw,-10px) scale(.5821);animation:fall-70 16s -17s linear infinite}@keyframes fall-70{52.489%{transform:translate(51.4813vw,52.489vh) scale(.5821)}to{transform:translate(51.1411vw,100vh) scale(.5821)}}.snow:nth-child(71){opacity:1.328;transform:translate(50.3089vw,-10px) scale(.3126);animation:fall-71 29s -7s linear infinite}@keyframes fall-71{31.266%{transform:translate(45.7755vw,31.266vh) scale(.3126)}to{transform:translate(48.0422vw,100vh) scale(.3126)}}.snow:nth-child(72){opacity:.9966;transform:translate(45.7438vw,-10px) scale(.109);animation:fall-72 11s -20s linear infinite}@keyframes fall-72{40.383%{transform:translate(40.0679vw,40.383vh) scale(.109)}to{transform:translate(42.90585vw,100vh) scale(.109)}}.snow:nth-child(73){opacity:1.106;transform:translate(70.0957vw,-10px) scale(.5809);animation:fall-73 18s -7s linear infinite}@keyframes fall-73{57.541%{transform:translate(65.7968vw,57.541vh) scale(.5809)}to{transform:translate(67.94625vw,100vh) scale(.5809)}}.snow:nth-child(74){opacity:1.4338;transform:translate(76.8894vw,-10px) scale(.1459);animation:fall-74 14s -20s linear infinite}@keyframes fall-74{35.197%{transform:translate(79.2726vw,35.197vh) scale(.1459)}to{transform:translate(78.081vw,100vh) scale(.1459)}}.snow:nth-child(75){opacity:1.9796;transform:translate(47.0334vw,-10px) scale(.5234);animation:fall-75 29s -1s linear infinite}@keyframes fall-75{62.856%{transform:translate(53.2326vw,62.856vh) scale(.5234)}to{transform:translate(50.133vw,100vh) scale(.5234)}}.snow:nth-child(76){opacity:1.3078;transform:translate(24.7587vw,-10px) scale(.7381);animation:fall-76 11s -16s linear infinite}@keyframes fall-76{37.591%{transform:translate(31.2166vw,37.591vh) scale(.7381)}to{transform:translate(27.98765vw,100vh) scale(.7381)}}.snow:nth-child(77){opacity:1.4926;transform:translate(63.9129vw,-10px) scale(.2942);animation:fall-77 20s -6s linear infinite}@keyframes fall-77{76.937%{transform:translate(70.2734vw,76.937vh) scale(.2942)}to{transform:translate(67.09315vw,100vh) scale(.2942)}}.snow:nth-child(78){opacity:1.6994;transform:translate(31.8617vw,-10px) scale(.9627);animation:fall-78 26s -25s linear infinite}@keyframes fall-78{65.149%{transform:translate(34.8449vw,65.149vh) scale(.9627)}to{transform:translate(33.3533vw,100vh) scale(.9627)}}.snow:nth-child(79){opacity:1.7636;transform:translate(95.5842vw,-10px) scale(.2232);animation:fall-79 22s -9s linear infinite}@keyframes fall-79{45.375%{transform:translate(99.4214vw,45.375vh) scale(.2232)}to{transform:translate(97.5028vw,100vh) scale(.2232)}}.snow:nth-child(80){opacity:.3652;transform:translate(28.4648vw,-10px) scale(.1721);animation:fall-80 14s -21s linear infinite}@keyframes fall-80{64.727%{transform:translate(28.4175vw,64.727vh) scale(.1721)}to{transform:translate(28.44115vw,100vh) scale(.1721)}}.snow:nth-child(81){opacity:.2248;transform:translate(85.6294vw,-10px) scale(.4876);animation:fall-81 10s -19s linear infinite}@keyframes fall-81{62.283%{transform:translate(78.836vw,62.283vh) scale(.4876)}to{transform:translate(82.2327vw,100vh) scale(.4876)}}.snow:nth-child(82){opacity:.4018;transform:translate(46.3873vw,-10px) scale(.2936);animation:fall-82 19s -27s linear infinite}@keyframes fall-82{70.507%{transform:translate(54.1317vw,70.507vh) scale(.2936)}to{transform:translate(50.2595vw,100vh) scale(.2936)}}.snow:nth-child(83){opacity:.6162;transform:translate(16.829vw,-10px) scale(.2928);animation:fall-83 11s -21s linear infinite}@keyframes fall-83{53.32%{transform:translate(15.3365vw,53.32vh) scale(.2928)}to{transform:translate(16.08275vw,100vh) scale(.2928)}}.snow:nth-child(84){opacity:1.2878;transform:translate(41.2391vw,-10px) scale(.2035);animation:fall-84 15s -12s linear infinite}@keyframes fall-84{35.688%{transform:translate(48.5264vw,35.688vh) scale(.2035)}to{transform:translate(44.88275vw,100vh) scale(.2035)}}.snow:nth-child(85){opacity:1.6182;transform:translate(10.4455vw,-10px) scale(.2582);animation:fall-85 15s -12s linear infinite}@keyframes fall-85{77.956%{transform:translate(1.9299vw,77.956vh) scale(.2582)}to{transform:translate(6.1877vw,100vh) scale(.2582)}}.snow:nth-child(86){opacity:1.6802;transform:translate(7.0229vw,-10px) scale(.7269);animation:fall-86 27s -17s linear infinite}@keyframes fall-86{70.358%{transform:translate(2.8944vw,70.358vh) scale(.7269)}to{transform:translate(4.95865vw,100vh) scale(.7269)}}.snow:nth-child(87){opacity:.0748;transform:translate(91.514vw,-10px) scale(.7516);animation:fall-87 13s -2s linear infinite}@keyframes fall-87{71.648%{transform:translate(87.3554vw,71.648vh) scale(.7516)}to{transform:translate(89.4347vw,100vh) scale(.7516)}}.snow:nth-child(88){opacity:.3182;transform:translate(67.428vw,-10px) scale(.1907);animation:fall-88 21s -26s linear infinite}@keyframes fall-88{51.486%{transform:translate(66.8424vw,51.486vh) scale(.1907)}to{transform:translate(67.1352vw,100vh) scale(.1907)}}.snow:nth-child(89){opacity:1.5324;transform:translate(94.8141vw,-10px) scale(.5426);animation:fall-89 14s -4s linear infinite}@keyframes fall-89{58.324%{transform:translate(104.6433vw,58.324vh) scale(.5426)}to{transform:translate(99.7287vw,100vh) scale(.5426)}}.snow:nth-child(90){opacity:1.8934;transform:translate(26.9751vw,-10px) scale(.5349);animation:fall-90 25s -19s linear infinite}@keyframes fall-90{34.331%{transform:translate(18.0797vw,34.331vh) scale(.5349)}to{transform:translate(22.5274vw,100vh) scale(.5349)}}.snow:nth-child(91){opacity:.57;transform:translate(63.199vw,-10px) scale(.6385);animation:fall-91 21s -24s linear infinite}@keyframes fall-91{57.382%{transform:translate(65.0593vw,57.382vh) scale(.6385)}to{transform:translate(64.12915vw,100vh) scale(.6385)}}.snow:nth-child(92){opacity:1.9708;transform:translate(65.0832vw,-10px) scale(.1038);animation:fall-92 22s -27s linear infinite}@keyframes fall-92{55.479%{transform:translate(55.6073vw,55.479vh) scale(.1038)}to{transform:translate(60.34525vw,100vh) scale(.1038)}}.snow:nth-child(93){opacity:.7464;transform:translate(52.4298vw,-10px) scale(.2953);animation:fall-93 22s -4s linear infinite}@keyframes fall-93{59.332%{transform:translate(46.267vw,59.332vh) scale(.2953)}to{transform:translate(49.3484vw,100vh) scale(.2953)}}.snow:nth-child(94){opacity:.093;transform:translate(34.1926vw,-10px) scale(.5264);animation:fall-94 11s -22s linear infinite}@keyframes fall-94{79.703%{transform:translate(28.5192vw,79.703vh) scale(.5264)}to{transform:translate(31.3559vw,100vh) scale(.5264)}}.snow:nth-child(95){opacity:1.1606;transform:translate(37.069vw,-10px) scale(.1977);animation:fall-95 14s -4s linear infinite}@keyframes fall-95{78.807%{transform:translate(39.788vw,78.807vh) scale(.1977)}to{transform:translate(38.4285vw,100vh) scale(.1977)}}.snow:nth-child(96){opacity:1.238;transform:translate(32.3651vw,-10px) scale(.1774);animation:fall-96 19s -9s linear infinite}@keyframes fall-96{64.28%{transform:translate(31.3326vw,64.28vh) scale(.1774)}to{transform:translate(31.84885vw,100vh) scale(.1774)}}.snow:nth-child(97){opacity:1.763;transform:translate(53.9629vw,-10px) scale(.5617);animation:fall-97 12s -22s linear infinite}@keyframes fall-97{42.795%{transform:translate(63.5523vw,42.795vh) scale(.5617)}to{transform:translate(58.7576vw,100vh) scale(.5617)}}.snow:nth-child(98){opacity:.399;transform:translate(83.7115vw,-10px) scale(.768);animation:fall-98 17s -14s linear infinite}@keyframes fall-98{75.029%{transform:translate(85.8894vw,75.029vh) scale(.768)}to{transform:translate(84.80045vw,100vh) scale(.768)}}.snow:nth-child(99){opacity:1.6554;transform:translate(91.2383vw,-10px) scale(.1535);animation:fall-99 12s -5s linear infinite}@keyframes fall-99{32.329%{transform:translate(89.5088vw,32.329vh) scale(.1535)}to{transform:translate(90.37355vw,100vh) scale(.1535)}}.snow:nth-child(100){opacity:.6972;transform:translate(44.7158vw,-10px) scale(.1319);animation:fall-100 25s -27s linear infinite}@keyframes fall-100{43.498%{transform:translate(41.7549vw,43.498vh) scale(.1319)}to{transform:translate(43.23535vw,100vh) scale(.1319)}}.snow:nth-child(101){opacity:1.2112;transform:translate(33.1884vw,-10px) scale(.4337);animation:fall-101 13s -21s linear infinite}@keyframes fall-101{32.121%{transform:translate(32.092vw,32.121vh) scale(.4337)}to{transform:translate(32.6402vw,100vh) scale(.4337)}}.snow:nth-child(102){opacity:.5372;transform:translate(55.8434vw,-10px) scale(.8311);animation:fall-102 20s -12s linear infinite}@keyframes fall-102{40.122%{transform:translate(65.6885vw,40.122vh) scale(.8311)}to{transform:translate(60.76595vw,100vh) scale(.8311)}}.snow:nth-child(103){opacity:1.0948;transform:translate(7.6148vw,-10px) scale(.6458);animation:fall-103 16s -2s linear infinite}@keyframes fall-103{37.432%{transform:translate(13.2672vw,37.432vh) scale(.6458)}to{transform:translate(10.441vw,100vh) scale(.6458)}}.snow:nth-child(104){opacity:.3928;transform:translate(44.1699vw,-10px) scale(.7652);animation:fall-104 17s -9s linear infinite}@keyframes fall-104{30.562%{transform:translate(45.37vw,30.562vh) scale(.7652)}to{transform:translate(44.76995vw,100vh) scale(.7652)}}.snow:nth-child(105){opacity:.5854;transform:translate(19.6965vw,-10px) scale(.1519);animation:fall-105 11s -18s linear infinite}@keyframes fall-105{74.266%{transform:translate(28.0549vw,74.266vh) scale(.1519)}to{transform:translate(23.8757vw,100vh) scale(.1519)}}.snow:nth-child(106){opacity:1.3694;transform:translate(97.7214vw,-10px) scale(.6973);animation:fall-106 18s -2s linear infinite}@keyframes fall-106{38.892%{transform:translate(102.9209vw,38.892vh) scale(.6973)}to{transform:translate(100.32115vw,100vh) scale(.6973)}}.snow:nth-child(107){opacity:.312;transform:translate(46.9464vw,-10px) scale(.4837);animation:fall-107 26s -15s linear infinite}@keyframes fall-107{33.64%{transform:translate(47.1764vw,33.64vh) scale(.4837)}to{transform:translate(47.0614vw,100vh) scale(.4837)}}.snow:nth-child(108){opacity:.2698;transform:translate(72.6463vw,-10px) scale(.294);animation:fall-108 18s -9s linear infinite}@keyframes fall-108{41.948%{transform:translate(73.9007vw,41.948vh) scale(.294)}to{transform:translate(73.2735vw,100vh) scale(.294)}}.snow:nth-child(109){opacity:1.5118;transform:translate(6.2844vw,-10px) scale(.551);animation:fall-109 13s -16s linear infinite}@keyframes fall-109{74.737%{transform:translate(4.8245vw,74.737vh) scale(.551)}to{transform:translate(5.55445vw,100vh) scale(.551)}}.snow:nth-child(110){opacity:.3472;transform:translate(32.6219vw,-10px) scale(.8985);animation:fall-110 17s -19s linear infinite}@keyframes fall-110{67.892%{transform:translate(33.2445vw,67.892vh) scale(.8985)}to{transform:translate(32.9332vw,100vh) scale(.8985)}}.snow:nth-child(111){opacity:1.7782;transform:translate(48.8723vw,-10px) scale(.5366);animation:fall-111 17s -13s linear infinite}@keyframes fall-111{66.193%{transform:translate(52.7919vw,66.193vh) scale(.5366)}to{transform:translate(50.8321vw,100vh) scale(.5366)}}.snow:nth-child(112){opacity:.9806;transform:translate(17.468vw,-10px) scale(.685);animation:fall-112 21s -27s linear infinite}@keyframes fall-112{43.635%{transform:translate(15.8571vw,43.635vh) scale(.685)}to{transform:translate(16.66255vw,100vh) scale(.685)}}.snow:nth-child(113){opacity:.6274;transform:translate(37.6304vw,-10px) scale(.0747);animation:fall-113 27s -27s linear infinite}@keyframes fall-113{47.048%{transform:translate(44.0467vw,47.048vh) scale(.0747)}to{transform:translate(40.83855vw,100vh) scale(.0747)}}.snow:nth-child(114){opacity:1.989;transform:translate(36.735vw,-10px) scale(.746);animation:fall-114 28s -19s linear infinite}@keyframes fall-114{76.825%{transform:translate(38.7873vw,76.825vh) scale(.746)}to{transform:translate(37.76115vw,100vh) scale(.746)}}.snow:nth-child(115){opacity:1.0896;transform:translate(21.5048vw,-10px) scale(.3727);animation:fall-115 20s -4s linear infinite}@keyframes fall-115{39.278%{transform:translate(16.7537vw,39.278vh) scale(.3727)}to{transform:translate(19.12925vw,100vh) scale(.3727)}}.snow:nth-child(116){opacity:.1656;transform:translate(98.8049vw,-10px) scale(.5188);animation:fall-116 23s -15s linear infinite}@keyframes fall-116{35.924%{transform:translate(91.6656vw,35.924vh) scale(.5188)}to{transform:translate(95.23525vw,100vh) scale(.5188)}}.snow:nth-child(117){opacity:.3288;transform:translate(48.9328vw,-10px) scale(.0782);animation:fall-117 29s -21s linear infinite}@keyframes fall-117{57.477%{transform:translate(45.0169vw,57.477vh) scale(.0782)}to{transform:translate(46.97485vw,100vh) scale(.0782)}}.snow:nth-child(118){opacity:1.9452;transform:translate(.4175vw,-10px) scale(.2596);animation:fall-118 11s -5s linear infinite}@keyframes fall-118{42.47%{transform:translate(7.463vw,42.47vh) scale(.2596)}to{transform:translate(3.94025vw,100vh) scale(.2596)}}.snow:nth-child(119){opacity:.3874;transform:translate(93.1162vw,-10px) scale(.9703);animation:fall-119 11s -9s linear infinite}@keyframes fall-119{49.912%{transform:translate(92.3369vw,49.912vh) scale(.9703)}to{transform:translate(92.72655vw,100vh) scale(.9703)}}.snow:nth-child(120){opacity:1.4858;transform:translate(65.1951vw,-10px) scale(.6999);animation:fall-120 30s -4s linear infinite}@keyframes fall-120{46.054%{transform:translate(62.673vw,46.054vh) scale(.6999)}to{transform:translate(63.93405vw,100vh) scale(.6999)}}.snow:nth-child(121){opacity:.978;transform:translate(92.9043vw,-10px) scale(.4076);animation:fall-121 14s -21s linear infinite}@keyframes fall-121{49.579%{transform:translate(99.4847vw,49.579vh) scale(.4076)}to{transform:translate(96.1945vw,100vh) scale(.4076)}}.snow:nth-child(122){opacity:1.7606;transform:translate(98.5029vw,-10px) scale(.3244);animation:fall-122 12s -2s linear infinite}@keyframes fall-122{34.653%{transform:translate(90.8494vw,34.653vh) scale(.3244)}to{transform:translate(94.67615vw,100vh) scale(.3244)}}.snow:nth-child(123){opacity:1.717;transform:translate(3.357vw,-10px) scale(.3403);animation:fall-123 16s -21s linear infinite}@keyframes fall-123{51.742%{transform:translate(11.0663vw,51.742vh) scale(.3403)}to{transform:translate(7.21165vw,100vh) scale(.3403)}}.snow:nth-child(124){opacity:.0144;transform:translate(26.0883vw,-10px) scale(.5216);animation:fall-124 19s -29s linear infinite}@keyframes fall-124{39.413%{transform:translate(22.0773vw,39.413vh) scale(.5216)}to{transform:translate(24.0828vw,100vh) scale(.5216)}}.snow:nth-child(125){opacity:.7944;transform:translate(4.8576vw,-10px) scale(.0491);animation:fall-125 15s -24s linear infinite}@keyframes fall-125{58.467%{transform:translate(12.3682vw,58.467vh) scale(.0491)}to{transform:translate(8.6129vw,100vh) scale(.0491)}}.snow:nth-child(126){opacity:1.8486;transform:translate(72.7416vw,-10px) scale(.8851);animation:fall-126 21s -17s linear infinite}@keyframes fall-126{76.639%{transform:translate(79.0765vw,76.639vh) scale(.8851)}to{transform:translate(75.90905vw,100vh) scale(.8851)}}.snow:nth-child(127){opacity:.7352;transform:translate(28.9754vw,-10px) scale(.974);animation:fall-127 16s -3s linear infinite}@keyframes fall-127{49.938%{transform:translate(30.4748vw,49.938vh) scale(.974)}to{transform:translate(29.7251vw,100vh) scale(.974)}}.snow:nth-child(128){opacity:1.939;transform:translate(57.7691vw,-10px) scale(.5779);animation:fall-128 22s -25s linear infinite}@keyframes fall-128{53.089%{transform:translate(59.7594vw,53.089vh) scale(.5779)}to{transform:translate(58.76425vw,100vh) scale(.5779)}}.snow:nth-child(129){opacity:1.61;transform:translate(19.0808vw,-10px) scale(.8774);animation:fall-129 22s -4s linear infinite}@keyframes fall-129{37.026%{transform:translate(16.928vw,37.026vh) scale(.8774)}to{transform:translate(18.0044vw,100vh) scale(.8774)}}.snow:nth-child(130){opacity:.6942;transform:translate(97.9044vw,-10px) scale(.4535);animation:fall-130 14s -21s linear infinite}@keyframes fall-130{39.889%{transform:translate(99.7161vw,39.889vh) scale(.4535)}to{transform:translate(98.81025vw,100vh) scale(.4535)}}.snow:nth-child(131){opacity:1.63;transform:translate(28.3606vw,-10px) scale(.5052);animation:fall-131 21s -3s linear infinite}@keyframes fall-131{51.959%{transform:translate(27.7944vw,51.959vh) scale(.5052)}to{transform:translate(28.0775vw,100vh) scale(.5052)}}.snow:nth-child(132){opacity:1.5046;transform:translate(51.0494vw,-10px) scale(.6186);animation:fall-132 26s -9s linear infinite}@keyframes fall-132{62.174%{transform:translate(54.8578vw,62.174vh) scale(.6186)}to{transform:translate(52.9536vw,100vh) scale(.6186)}}.snow:nth-child(133){opacity:.0446;transform:translate(41.3321vw,-10px) scale(.1664);animation:fall-133 27s -16s linear infinite}@keyframes fall-133{66.142%{transform:translate(44.4459vw,66.142vh) scale(.1664)}to{transform:translate(42.889vw,100vh) scale(.1664)}}.snow:nth-child(134){opacity:1.1954;transform:translate(24.7953vw,-10px) scale(.1659);animation:fall-134 13s -26s linear infinite}@keyframes fall-134{71.696%{transform:translate(32.4368vw,71.696vh) scale(.1659)}to{transform:translate(28.61605vw,100vh) scale(.1659)}}.snow:nth-child(135){opacity:.5768;transform:translate(5.3411vw,-10px) scale(.42);animation:fall-135 11s -15s linear infinite}@keyframes fall-135{79.141%{transform:translate(8.7555vw,79.141vh) scale(.42)}to{transform:translate(7.0483vw,100vh) scale(.42)}}.snow:nth-child(136){opacity:1.5178;transform:translate(86.2117vw,-10px) scale(.0841);animation:fall-136 17s -1s linear infinite}@keyframes fall-136{69.497%{transform:translate(81.3771vw,69.497vh) scale(.0841)}to{transform:translate(83.7944vw,100vh) scale(.0841)}}.snow:nth-child(137){opacity:1.1164;transform:translate(77.514vw,-10px) scale(.9713);animation:fall-137 10s -26s linear infinite}@keyframes fall-137{46.866%{transform:translate(80.8265vw,46.866vh) scale(.9713)}to{transform:translate(79.17025vw,100vh) scale(.9713)}}.snow:nth-child(138){opacity:1.265;transform:translate(99.2272vw,-10px) scale(.9879);animation:fall-138 19s -21s linear infinite}@keyframes fall-138{59.662%{transform:translate(106.8876vw,59.662vh) scale(.9879)}to{transform:translate(103.0574vw,100vh) scale(.9879)}}.snow:nth-child(139){opacity:.6126;transform:translate(8.8648vw,-10px) scale(.0078);animation:fall-139 22s -25s linear infinite}@keyframes fall-139{69.428%{transform:translate(2.4512vw,69.428vh) scale(.0078)}to{transform:translate(5.658vw,100vh) scale(.0078)}}.snow:nth-child(140){opacity:1.822;transform:translate(73.754vw,-10px) scale(.1618);animation:fall-140 18s -6s linear infinite}@keyframes fall-140{36.634%{transform:translate(65.1137vw,36.634vh) scale(.1618)}to{transform:translate(69.43385vw,100vh) scale(.1618)}}.snow:nth-child(141){opacity:.5896;transform:translate(11.7606vw,-10px) scale(.8288);animation:fall-141 27s -23s linear infinite}@keyframes fall-141{47.653%{transform:translate(19.9922vw,47.653vh) scale(.8288)}to{transform:translate(15.8764vw,100vh) scale(.8288)}}.snow:nth-child(142){opacity:.9188;transform:translate(40.9467vw,-10px) scale(.1979);animation:fall-142 28s -5s linear infinite}@keyframes fall-142{30.889%{transform:translate(38.1831vw,30.889vh) scale(.1979)}to{transform:translate(39.5649vw,100vh) scale(.1979)}}.snow:nth-child(143){opacity:.4576;transform:translate(81.7412vw,-10px) scale(.4575);animation:fall-143 13s -22s linear infinite}@keyframes fall-143{44.819%{transform:translate(75.3536vw,44.819vh) scale(.4575)}to{transform:translate(78.5474vw,100vh) scale(.4575)}}.snow:nth-child(144){opacity:.3652;transform:translate(54.5712vw,-10px) scale(.5474);animation:fall-144 10s -26s linear infinite}@keyframes fall-144{71.261%{transform:translate(44.8413vw,71.261vh) scale(.5474)}to{transform:translate(49.70625vw,100vh) scale(.5474)}}.snow:nth-child(145){opacity:1.9658;transform:translate(66.1457vw,-10px) scale(.5653);animation:fall-145 13s -30s linear infinite}@keyframes fall-145{64.692%{transform:translate(68.5436vw,64.692vh) scale(.5653)}to{transform:translate(67.34465vw,100vh) scale(.5653)}}.snow:nth-child(146){opacity:1.3404;transform:translate(83.0792vw,-10px) scale(.6708);animation:fall-146 12s -4s linear infinite}@keyframes fall-146{53.505%{transform:translate(75.151vw,53.505vh) scale(.6708)}to{transform:translate(79.1151vw,100vh) scale(.6708)}}.snow:nth-child(147){opacity:.0282;transform:translate(46.0181vw,-10px) scale(.3949);animation:fall-147 11s -22s linear infinite}@keyframes fall-147{66.14%{transform:translate(48.3204vw,66.14vh) scale(.3949)}to{transform:translate(47.16925vw,100vh) scale(.3949)}}.snow:nth-child(148){opacity:.0082;transform:translate(58.0388vw,-10px) scale(.1936);animation:fall-148 11s -25s linear infinite}@keyframes fall-148{75.788%{transform:translate(62.3769vw,75.788vh) scale(.1936)}to{transform:translate(60.20785vw,100vh) scale(.1936)}}.snow:nth-child(149){opacity:.3698;transform:translate(51.887vw,-10px) scale(.6052);animation:fall-149 26s -16s linear infinite}@keyframes fall-149{45.696%{transform:translate(51.0359vw,45.696vh) scale(.6052)}to{transform:translate(51.46145vw,100vh) scale(.6052)}}.snow:nth-child(150){opacity:1.5188;transform:translate(27.7368vw,-10px) scale(.2308);animation:fall-150 30s -7s linear infinite}@keyframes fall-150{31.56%{transform:translate(18.6721vw,31.56vh) scale(.2308)}to{transform:translate(23.20445vw,100vh) scale(.2308)}}.snow:nth-child(151){opacity:.4142;transform:translate(95.9868vw,-10px) scale(.2025);animation:fall-151 10s -16s linear infinite}@keyframes fall-151{38.846%{transform:translate(95.2533vw,38.846vh) scale(.2025)}to{transform:translate(95.62005vw,100vh) scale(.2025)}}.snow:nth-child(152){opacity:1.9868;transform:translate(22.8742vw,-10px) scale(.0928);animation:fall-152 30s -27s linear infinite}@keyframes fall-152{44.344%{transform:translate(30.4819vw,44.344vh) scale(.0928)}to{transform:translate(26.67805vw,100vh) scale(.0928)}}.snow:nth-child(153){opacity:1.9642;transform:translate(36.1725vw,-10px) scale(.32);animation:fall-153 29s -26s linear infinite}@keyframes fall-153{33.063%{transform:translate(41.0407vw,33.063vh) scale(.32)}to{transform:translate(38.6066vw,100vh) scale(.32)}}.snow:nth-child(154){opacity:.8624;transform:translate(63.6317vw,-10px) scale(.1697);animation:fall-154 25s -22s linear infinite}@keyframes fall-154{56.354%{transform:translate(54.3761vw,56.354vh) scale(.1697)}to{transform:translate(59.0039vw,100vh) scale(.1697)}}.snow:nth-child(155){opacity:1.0102;transform:translate(91.2296vw,-10px) scale(.5234);animation:fall-155 11s -24s linear infinite}@keyframes fall-155{40.142%{transform:translate(82.5875vw,40.142vh) scale(.5234)}to{transform:translate(86.90855vw,100vh) scale(.5234)}}.snow:nth-child(156){opacity:.3724;transform:translate(73.2972vw,-10px) scale(.7098);animation:fall-156 24s -23s linear infinite}@keyframes fall-156{62.562%{transform:translate(67.3065vw,62.562vh) scale(.7098)}to{transform:translate(70.30185vw,100vh) scale(.7098)}}.snow:nth-child(157){opacity:.7406;transform:translate(15.2531vw,-10px) scale(.5013);animation:fall-157 26s -9s linear infinite}@keyframes fall-157{52.452%{transform:translate(23.3305vw,52.452vh) scale(.5013)}to{transform:translate(19.2918vw,100vh) scale(.5013)}}.snow:nth-child(158){opacity:.7408;transform:translate(12.5758vw,-10px) scale(.6462);animation:fall-158 17s -29s linear infinite}@keyframes fall-158{46.313%{transform:translate(4.0495vw,46.313vh) scale(.6462)}to{transform:translate(8.31265vw,100vh) scale(.6462)}}.snow:nth-child(159){opacity:.4662;transform:translate(63.7306vw,-10px) scale(.7424);animation:fall-159 15s -21s linear infinite}@keyframes fall-159{32.286%{transform:translate(71.0056vw,32.286vh) scale(.7424)}to{transform:translate(67.3681vw,100vh) scale(.7424)}}.snow:nth-child(160){opacity:1.579;transform:translate(35.8405vw,-10px) scale(.8378);animation:fall-160 11s -25s linear infinite}@keyframes fall-160{53.712%{transform:translate(31.9149vw,53.712vh) scale(.8378)}to{transform:translate(33.8777vw,100vh) scale(.8378)}}.snow:nth-child(161){opacity:1.7216;transform:translate(80.9263vw,-10px) scale(.9321);animation:fall-161 17s -30s linear infinite}@keyframes fall-161{35.172%{transform:translate(79.2196vw,35.172vh) scale(.9321)}to{transform:translate(80.07295vw,100vh) scale(.9321)}}.snow:nth-child(162){opacity:1.2016;transform:translate(54.9034vw,-10px) scale(.2518);animation:fall-162 11s -12s linear infinite}@keyframes fall-162{79.716%{transform:translate(45.1738vw,79.716vh) scale(.2518)}to{transform:translate(50.0386vw,100vh) scale(.2518)}}.snow:nth-child(163){opacity:.5774;transform:translate(43.0494vw,-10px) scale(.8972);animation:fall-163 19s -25s linear infinite}@keyframes fall-163{34.847%{transform:translate(50.7277vw,34.847vh) scale(.8972)}to{transform:translate(46.88855vw,100vh) scale(.8972)}}.snow:nth-child(164){opacity:1.883;transform:translate(35.0467vw,-10px) scale(.7166);animation:fall-164 14s -26s linear infinite}@keyframes fall-164{66.091%{transform:translate(42.0783vw,66.091vh) scale(.7166)}to{transform:translate(38.5625vw,100vh) scale(.7166)}}.snow:nth-child(165){opacity:.162;transform:translate(59.7744vw,-10px) scale(.9104);animation:fall-165 16s -26s linear infinite}@keyframes fall-165{66.302%{transform:translate(56.4574vw,66.302vh) scale(.9104)}to{transform:translate(58.1159vw,100vh) scale(.9104)}}.snow:nth-child(166){opacity:.1208;transform:translate(45.2719vw,-10px) scale(.7874);animation:fall-166 13s -20s linear infinite}@keyframes fall-166{73.093%{transform:translate(36.8427vw,73.093vh) scale(.7874)}to{transform:translate(41.0573vw,100vh) scale(.7874)}}.snow:nth-child(167){opacity:1.9294;transform:translate(23.2281vw,-10px) scale(.5107);animation:fall-167 13s -8s linear infinite}@keyframes fall-167{62.071%{transform:translate(31.6726vw,62.071vh) scale(.5107)}to{transform:translate(27.45035vw,100vh) scale(.5107)}}.snow:nth-child(168){opacity:.951;transform:translate(28.2403vw,-10px) scale(.0149);animation:fall-168 16s -20s linear infinite}@keyframes fall-168{55.277%{transform:translate(20.6856vw,55.277vh) scale(.0149)}to{transform:translate(24.46295vw,100vh) scale(.0149)}}.snow:nth-child(169){opacity:.4554;transform:translate(14.736vw,-10px) scale(.9489);animation:fall-169 19s -9s linear infinite}@keyframes fall-169{45.593%{transform:translate(7.7891vw,45.593vh) scale(.9489)}to{transform:translate(11.26255vw,100vh) scale(.9489)}}.snow:nth-child(170){opacity:1.034;transform:translate(94.2345vw,-10px) scale(.9681);animation:fall-170 26s -4s linear infinite}@keyframes fall-170{51.67%{transform:translate(93.838vw,51.67vh) scale(.9681)}to{transform:translate(94.03625vw,100vh) scale(.9681)}}.snow:nth-child(171){opacity:.173;transform:translate(94.6135vw,-10px) scale(.5955);animation:fall-171 10s -22s linear infinite}@keyframes fall-171{69.394%{transform:translate(97.3385vw,69.394vh) scale(.5955)}to{transform:translate(95.976vw,100vh) scale(.5955)}}.snow:nth-child(172){opacity:.5066;transform:translate(37.1632vw,-10px) scale(.7133);animation:fall-172 28s -8s linear infinite}@keyframes fall-172{48.951%{transform:translate(42.4688vw,48.951vh) scale(.7133)}to{transform:translate(39.816vw,100vh) scale(.7133)}}.snow:nth-child(173){opacity:1.563;transform:translate(90.5448vw,-10px) scale(.2552);animation:fall-173 16s -27s linear infinite}@keyframes fall-173{70.645%{transform:translate(86.0681vw,70.645vh) scale(.2552)}to{transform:translate(88.30645vw,100vh) scale(.2552)}}.snow:nth-child(174){opacity:.926;transform:translate(12.9491vw,-10px) scale(.0911);animation:fall-174 13s -25s linear infinite}@keyframes fall-174{78.225%{transform:translate(7.0334vw,78.225vh) scale(.0911)}to{transform:translate(9.99125vw,100vh) scale(.0911)}}.snow:nth-child(175){opacity:.4966;transform:translate(28.7203vw,-10px) scale(.5234);animation:fall-175 27s -18s linear infinite}@keyframes fall-175{41.986%{transform:translate(27.047vw,41.986vh) scale(.5234)}to{transform:translate(27.88365vw,100vh) scale(.5234)}}.snow:nth-child(176){opacity:1.9098;transform:translate(26.7237vw,-10px) scale(.2607);animation:fall-176 10s -26s linear infinite}@keyframes fall-176{44.925%{transform:translate(32.9018vw,44.925vh) scale(.2607)}to{transform:translate(29.81275vw,100vh) scale(.2607)}}.snow:nth-child(177){opacity:.1;transform:translate(18.4303vw,-10px) scale(.7391);animation:fall-177 11s -25s linear infinite}@keyframes fall-177{72.262%{transform:translate(20.4523vw,72.262vh) scale(.7391)}to{transform:translate(19.4413vw,100vh) scale(.7391)}}.snow:nth-child(178){opacity:1.1808;transform:translate(15.4147vw,-10px) scale(.4062);animation:fall-178 13s -8s linear infinite}@keyframes fall-178{59.183%{transform:translate(10.1213vw,59.183vh) scale(.4062)}to{transform:translate(12.768vw,100vh) scale(.4062)}}.snow:nth-child(179){opacity:.2158;transform:translate(51.481vw,-10px) scale(.4794);animation:fall-179 12s -27s linear infinite}@keyframes fall-179{66.915%{transform:translate(52.9848vw,66.915vh) scale(.4794)}to{transform:translate(52.2329vw,100vh) scale(.4794)}}.snow:nth-child(180){opacity:1.827;transform:translate(5.5404vw,-10px) scale(.8942);animation:fall-180 23s -20s linear infinite}@keyframes fall-180{31.299%{transform:translate(3.8455vw,31.299vh) scale(.8942)}to{transform:translate(4.69295vw,100vh) scale(.8942)}}.snow:nth-child(181){opacity:.367;transform:translate(12.7302vw,-10px) scale(.2185);animation:fall-181 12s -22s linear infinite}@keyframes fall-181{32.058%{transform:translate(20.8189vw,32.058vh) scale(.2185)}to{transform:translate(16.77455vw,100vh) scale(.2185)}}.snow:nth-child(182){opacity:.307;transform:translate(59.0385vw,-10px) scale(.3542);animation:fall-182 24s -20s linear infinite}@keyframes fall-182{39.093%{transform:translate(63.4706vw,39.093vh) scale(.3542)}to{transform:translate(61.25455vw,100vh) scale(.3542)}}.snow:nth-child(183){opacity:1.4668;transform:translate(95.345vw,-10px) scale(.52);animation:fall-183 23s -22s linear infinite}@keyframes fall-183{51.373%{transform:translate(95.4153vw,51.373vh) scale(.52)}to{transform:translate(95.38015vw,100vh) scale(.52)}}.snow:nth-child(184){opacity:.674;transform:translate(24.3007vw,-10px) scale(.3039);animation:fall-184 11s -27s linear infinite}@keyframes fall-184{58.745%{transform:translate(29.9383vw,58.745vh) scale(.3039)}to{transform:translate(27.1195vw,100vh) scale(.3039)}}.snow:nth-child(185){opacity:1.7266;transform:translate(22.0796vw,-10px) scale(.5936);animation:fall-185 21s -2s linear infinite}@keyframes fall-185{75.371%{transform:translate(25.2753vw,75.371vh) scale(.5936)}to{transform:translate(23.67745vw,100vh) scale(.5936)}}.snow:nth-child(186){opacity:.172;transform:translate(9.6276vw,-10px) scale(.9847);animation:fall-186 17s -30s linear infinite}@keyframes fall-186{75.814%{transform:translate(16.6317vw,75.814vh) scale(.9847)}to{transform:translate(13.12965vw,100vh) scale(.9847)}}.snow:nth-child(187){opacity:1.1006;transform:translate(2.1848vw,-10px) scale(.5942);animation:fall-187 24s -20s linear infinite}@keyframes fall-187{48.584%{transform:translate(-2.9528vw,48.584vh) scale(.5942)}to{transform:translate(-.384vw,100vh) scale(.5942)}}.snow:nth-child(188){opacity:.4144;transform:translate(46.8732vw,-10px) scale(.0523);animation:fall-188 14s -13s linear infinite}@keyframes fall-188{61.861%{transform:translate(56.0614vw,61.861vh) scale(.0523)}to{transform:translate(51.4673vw,100vh) scale(.0523)}}.snow:nth-child(189){opacity:1.4008;transform:translate(73.4259vw,-10px) scale(.3628);animation:fall-189 17s -7s linear infinite}@keyframes fall-189{67.914%{transform:translate(69.5248vw,67.914vh) scale(.3628)}to{transform:translate(71.47535vw,100vh) scale(.3628)}}.snow:nth-child(190){opacity:.1354;transform:translate(91.7381vw,-10px) scale(.861);animation:fall-190 27s -6s linear infinite}@keyframes fall-190{47.371%{transform:translate(93.9931vw,47.371vh) scale(.861)}to{transform:translate(92.8656vw,100vh) scale(.861)}}.snow:nth-child(191){opacity:1.4016;transform:translate(42.5453vw,-10px) scale(.4267);animation:fall-191 29s -11s linear infinite}@keyframes fall-191{72.88%{transform:translate(48.7207vw,72.88vh) scale(.4267)}to{transform:translate(45.633vw,100vh) scale(.4267)}}.snow:nth-child(192){opacity:1.9518;transform:translate(44.9103vw,-10px) scale(.5417);animation:fall-192 30s -9s linear infinite}@keyframes fall-192{63.349%{transform:translate(40.8034vw,63.349vh) scale(.5417)}to{transform:translate(42.85685vw,100vh) scale(.5417)}}.snow:nth-child(193){opacity:.9738;transform:translate(54.2824vw,-10px) scale(.3694);animation:fall-193 23s -6s linear infinite}@keyframes fall-193{52.136%{transform:translate(62.3646vw,52.136vh) scale(.3694)}to{transform:translate(58.3235vw,100vh) scale(.3694)}}.snow:nth-child(194){opacity:1.857;transform:translate(45.8281vw,-10px) scale(.1709);animation:fall-194 15s -23s linear infinite}@keyframes fall-194{64.646%{transform:translate(37.0612vw,64.646vh) scale(.1709)}to{transform:translate(41.44465vw,100vh) scale(.1709)}}.snow:nth-child(195){opacity:1.723;transform:translate(54.9288vw,-10px) scale(.4169);animation:fall-195 11s -20s linear infinite}@keyframes fall-195{78.66%{transform:translate(52.426vw,78.66vh) scale(.4169)}to{transform:translate(53.6774vw,100vh) scale(.4169)}}.snow:nth-child(196){opacity:1.3086;transform:translate(4.8617vw,-10px) scale(.1101);animation:fall-196 22s -1s linear infinite}@keyframes fall-196{61.313%{transform:translate(8.9677vw,61.313vh) scale(.1101)}to{transform:translate(6.9147vw,100vh) scale(.1101)}}.snow:nth-child(197){opacity:1.8534;transform:translate(53.988vw,-10px) scale(.2638);animation:fall-197 30s -6s linear infinite}@keyframes fall-197{54.197%{transform:translate(48.5042vw,54.197vh) scale(.2638)}to{transform:translate(51.2461vw,100vh) scale(.2638)}}.snow:nth-child(198){opacity:.3578;transform:translate(96.6763vw,-10px) scale(.4615);animation:fall-198 21s -9s linear infinite}@keyframes fall-198{57.321%{transform:translate(88.6247vw,57.321vh) scale(.4615)}to{transform:translate(92.6505vw,100vh) scale(.4615)}}.snow:nth-child(199){opacity:1.0488;transform:translate(85.7399vw,-10px) scale(.2474);animation:fall-199 28s -28s linear infinite}@keyframes fall-199{43.334%{transform:translate(76.2961vw,43.334vh) scale(.2474)}to{transform:translate(81.018vw,100vh) scale(.2474)}}.snow:nth-child(200){opacity:.3172;transform:translate(3.7944vw,-10px) scale(.5257);animation:fall-200 20s -15s linear infinite}@keyframes fall-200{49.515%{transform:translate(13.5401vw,49.515vh) scale(.5257)}to{transform:translate(8.66725vw,100vh) scale(.5257)}}.snow:nth-child(201){opacity:.3872;transform:translate(92.797vw,-10px) scale(.8685);animation:fall-201 15s -30s linear infinite}@keyframes fall-201{62.701%{transform:translate(90.7249vw,62.701vh) scale(.8685)}to{transform:translate(91.76095vw,100vh) scale(.8685)}}.snow:nth-child(202){opacity:1.412;transform:translate(27.0378vw,-10px) scale(.9187);animation:fall-202 24s -1s linear infinite}@keyframes fall-202{67.364%{transform:translate(32.1207vw,67.364vh) scale(.9187)}to{transform:translate(29.57925vw,100vh) scale(.9187)}}.snow:nth-child(203){opacity:1.8452;transform:translate(82.6848vw,-10px) scale(.2757);animation:fall-203 23s -22s linear infinite}@keyframes fall-203{74.828%{transform:translate(75.803vw,74.828vh) scale(.2757)}to{transform:translate(79.2439vw,100vh) scale(.2757)}}.snow:nth-child(204){opacity:1.8938;transform:translate(62.9545vw,-10px) scale(.8547);animation:fall-204 23s -26s linear infinite}@keyframes fall-204{53.127%{transform:translate(64.1239vw,53.127vh) scale(.8547)}to{transform:translate(63.5392vw,100vh) scale(.8547)}}.snow:nth-child(205){opacity:.4512;transform:translate(43.6855vw,-10px) scale(.427);animation:fall-205 14s -3s linear infinite}@keyframes fall-205{45.459%{transform:translate(46.1768vw,45.459vh) scale(.427)}to{transform:translate(44.93115vw,100vh) scale(.427)}}.snow:nth-child(206){opacity:1.6718;transform:translate(80.8341vw,-10px) scale(.3727);animation:fall-206 15s -30s linear infinite}@keyframes fall-206{48.226%{transform:translate(78.8739vw,48.226vh) scale(.3727)}to{transform:translate(79.854vw,100vh) scale(.3727)}}.snow:nth-child(207){opacity:.9596;transform:translate(29.0124vw,-10px) scale(.5223);animation:fall-207 30s -7s linear infinite}@keyframes fall-207{42.95%{transform:translate(31.5513vw,42.95vh) scale(.5223)}to{transform:translate(30.28185vw,100vh) scale(.5223)}}.snow:nth-child(208){opacity:1.5932;transform:translate(90.5593vw,-10px) scale(.7284);animation:fall-208 30s -25s linear infinite}@keyframes fall-208{37.373%{transform:translate(90.1668vw,37.373vh) scale(.7284)}to{transform:translate(90.36305vw,100vh) scale(.7284)}}.snow:nth-child(209){opacity:1.8496;transform:translate(8.3596vw,-10px) scale(.7685);animation:fall-209 15s -19s linear infinite}@keyframes fall-209{50.488%{transform:translate(8.9224vw,50.488vh) scale(.7685)}to{transform:translate(8.641vw,100vh) scale(.7685)}}.snow:nth-child(210){opacity:.3794;transform:translate(80.4535vw,-10px) scale(.8338);animation:fall-210 23s -26s linear infinite}@keyframes fall-210{35.24%{transform:translate(89.374vw,35.24vh) scale(.8338)}to{transform:translate(84.91375vw,100vh) scale(.8338)}}.snow:nth-child(211){opacity:.9398;transform:translate(16.4085vw,-10px) scale(.6838);animation:fall-211 17s -26s linear infinite}@keyframes fall-211{37.375%{transform:translate(15.3753vw,37.375vh) scale(.6838)}to{transform:translate(15.8919vw,100vh) scale(.6838)}}.snow:nth-child(212){opacity:.403;transform:translate(24.2344vw,-10px) scale(.2773);animation:fall-212 25s -11s linear infinite}@keyframes fall-212{58.832%{transform:translate(27.0569vw,58.832vh) scale(.2773)}to{transform:translate(25.64565vw,100vh) scale(.2773)}}.snow:nth-child(213){opacity:1.4934;transform:translate(96.8474vw,-10px) scale(.9948);animation:fall-213 15s -28s linear infinite}@keyframes fall-213{40.919%{transform:translate(99.1215vw,40.919vh) scale(.9948)}to{transform:translate(97.98445vw,100vh) scale(.9948)}}.snow:nth-child(214){opacity:1.424;transform:translate(44.438vw,-10px) scale(.5358);animation:fall-214 23s -27s linear infinite}@keyframes fall-214{73.958%{transform:translate(51.7418vw,73.958vh) scale(.5358)}to{transform:translate(48.0899vw,100vh) scale(.5358)}}.snow:nth-child(215){opacity:1.6952;transform:translate(41.8966vw,-10px) scale(.909);animation:fall-215 22s -24s linear infinite}@keyframes fall-215{65.899%{transform:translate(36.2726vw,65.899vh) scale(.909)}to{transform:translate(39.0846vw,100vh) scale(.909)}}.snow:nth-child(216){opacity:.0702;transform:translate(82.7481vw,-10px) scale(.7918);animation:fall-216 23s -4s linear infinite}@keyframes fall-216{72.207%{transform:translate(79.9992vw,72.207vh) scale(.7918)}to{transform:translate(81.37365vw,100vh) scale(.7918)}}.snow:nth-child(217){opacity:1.6868;transform:translate(56.3888vw,-10px) scale(.1607);animation:fall-217 13s -1s linear infinite}@keyframes fall-217{55.694%{transform:translate(58.3845vw,55.694vh) scale(.1607)}to{transform:translate(57.38665vw,100vh) scale(.1607)}}.snow:nth-child(218){opacity:1.7954;transform:translate(78.5203vw,-10px) scale(.6157);animation:fall-218 10s -12s linear infinite}@keyframes fall-218{57.224%{transform:translate(87.3909vw,57.224vh) scale(.6157)}to{transform:translate(82.9556vw,100vh) scale(.6157)}}.snow:nth-child(219){opacity:1.027;transform:translate(20.5988vw,-10px) scale(.0003);animation:fall-219 26s -8s linear infinite}@keyframes fall-219{78.386%{transform:translate(28.3794vw,78.386vh) scale(.0003)}to{transform:translate(24.4891vw,100vh) scale(.0003)}}.snow:nth-child(220){opacity:1.4054;transform:translate(82.514vw,-10px) scale(.9973);animation:fall-220 24s -16s linear infinite}@keyframes fall-220{41.788%{transform:translate(87.0817vw,41.788vh) scale(.9973)}to{transform:translate(84.79785vw,100vh) scale(.9973)}}.snow:nth-child(221){opacity:1.2116;transform:translate(3.5749vw,-10px) scale(.714);animation:fall-221 27s -30s linear infinite}@keyframes fall-221{38.064%{transform:translate(8.0005vw,38.064vh) scale(.714)}to{transform:translate(5.7877vw,100vh) scale(.714)}}.snow:nth-child(222){opacity:.0306;transform:translate(66.6742vw,-10px) scale(.9414);animation:fall-222 28s -18s linear infinite}@keyframes fall-222{40.257%{transform:translate(70.245vw,40.257vh) scale(.9414)}to{transform:translate(68.4596vw,100vh) scale(.9414)}}.snow:nth-child(223){opacity:1.4426;transform:translate(36.8019vw,-10px) scale(.497);animation:fall-223 13s -28s linear infinite}@keyframes fall-223{66.41%{transform:translate(30.8472vw,66.41vh) scale(.497)}to{transform:translate(33.82455vw,100vh) scale(.497)}}.snow:nth-child(224){opacity:1.9978;transform:translate(95.658vw,-10px) scale(.7243);animation:fall-224 10s -2s linear infinite}@keyframes fall-224{35.591%{transform:translate(88.6221vw,35.591vh) scale(.7243)}to{transform:translate(92.14005vw,100vh) scale(.7243)}}.snow:nth-child(225){opacity:.0728;transform:translate(25.7491vw,-10px) scale(.0611);animation:fall-225 16s -11s linear infinite}@keyframes fall-225{32.794%{transform:translate(30.1387vw,32.794vh) scale(.0611)}to{transform:translate(27.9439vw,100vh) scale(.0611)}}.snow:nth-child(226){opacity:.4006;transform:translate(10.6915vw,-10px) scale(.3273);animation:fall-226 16s -20s linear infinite}@keyframes fall-226{71.139%{transform:translate(7.0403vw,71.139vh) scale(.3273)}to{transform:translate(8.8659vw,100vh) scale(.3273)}}.snow:nth-child(227){opacity:.498;transform:translate(31.6405vw,-10px) scale(.935);animation:fall-227 27s -22s linear infinite}@keyframes fall-227{34.366%{transform:translate(39.7042vw,34.366vh) scale(.935)}to{transform:translate(35.67235vw,100vh) scale(.935)}}.snow:nth-child(228){opacity:.5072;transform:translate(54.2339vw,-10px) scale(.6916);animation:fall-228 30s -9s linear infinite}@keyframes fall-228{74.646%{transform:translate(46.1385vw,74.646vh) scale(.6916)}to{transform:translate(50.1862vw,100vh) scale(.6916)}}.snow:nth-child(229){opacity:1.202;transform:translate(12.0854vw,-10px) scale(.8339);animation:fall-229 30s -12s linear infinite}@keyframes fall-229{63.611%{transform:translate(17.6395vw,63.611vh) scale(.8339)}to{transform:translate(14.86245vw,100vh) scale(.8339)}}.snow:nth-child(230){opacity:1.1242;transform:translate(22.0359vw,-10px) scale(.0062);animation:fall-230 21s -29s linear infinite}@keyframes fall-230{68.152%{transform:translate(13.1104vw,68.152vh) scale(.0062)}to{transform:translate(17.57315vw,100vh) scale(.0062)}}.snow:nth-child(231){opacity:1.6556;transform:translate(4.0086vw,-10px) scale(.42);animation:fall-231 14s -24s linear infinite}@keyframes fall-231{49.509%{transform:translate(12.538vw,49.509vh) scale(.42)}to{transform:translate(8.2733vw,100vh) scale(.42)}}.snow:nth-child(232){opacity:.6476;transform:translate(59.0826vw,-10px) scale(.6269);animation:fall-232 12s -16s linear infinite}@keyframes fall-232{58.908%{transform:translate(51.2038vw,58.908vh) scale(.6269)}to{transform:translate(55.1432vw,100vh) scale(.6269)}}.snow:nth-child(233){opacity:1.302;transform:translate(92.077vw,-10px) scale(.8149);animation:fall-233 15s -19s linear infinite}@keyframes fall-233{78.543%{transform:translate(93.557vw,78.543vh) scale(.8149)}to{transform:translate(92.817vw,100vh) scale(.8149)}}.snow:nth-child(234){opacity:1.221;transform:translate(95.9722vw,-10px) scale(.3099);animation:fall-234 18s -17s linear infinite}@keyframes fall-234{75.005%{transform:translate(91.9814vw,75.005vh) scale(.3099)}to{transform:translate(93.9768vw,100vh) scale(.3099)}}.snow:nth-child(235){opacity:.6918;transform:translate(83.3378vw,-10px) scale(.044);animation:fall-235 25s -24s linear infinite}@keyframes fall-235{67.713%{transform:translate(87.0717vw,67.713vh) scale(.044)}to{transform:translate(85.20475vw,100vh) scale(.044)}}.snow:nth-child(236){opacity:1.9036;transform:translate(99.4769vw,-10px) scale(.3536);animation:fall-236 22s -20s linear infinite}@keyframes fall-236{46.556%{transform:translate(97.4777vw,46.556vh) scale(.3536)}to{transform:translate(98.4773vw,100vh) scale(.3536)}}.snow:nth-child(237){opacity:1.3782;transform:translate(82.019vw,-10px) scale(.068);animation:fall-237 11s -30s linear infinite}@keyframes fall-237{59.294%{transform:translate(88.0203vw,59.294vh) scale(.068)}to{transform:translate(85.01965vw,100vh) scale(.068)}}.snow:nth-child(238){opacity:1.4382;transform:translate(38.1678vw,-10px) scale(.1915);animation:fall-238 30s -18s linear infinite}@keyframes fall-238{67.259%{transform:translate(41.1929vw,67.259vh) scale(.1915)}to{transform:translate(39.68035vw,100vh) scale(.1915)}}.snow:nth-child(239){opacity:1.7952;transform:translate(74.3349vw,-10px) scale(.8891);animation:fall-239 18s -30s linear infinite}@keyframes fall-239{77.121%{transform:translate(81.6357vw,77.121vh) scale(.8891)}to{transform:translate(77.9853vw,100vh) scale(.8891)}}.snow:nth-child(240){opacity:.0812;transform:translate(69.2472vw,-10px) scale(.0156);animation:fall-240 20s -9s linear infinite}@keyframes fall-240{36.228%{transform:translate(70.0645vw,36.228vh) scale(.0156)}to{transform:translate(69.65585vw,100vh) scale(.0156)}}.snow:nth-child(241){opacity:1.7862;transform:translate(33.0189vw,-10px) scale(.1923);animation:fall-241 26s -16s linear infinite}@keyframes fall-241{54.071%{transform:translate(38.1314vw,54.071vh) scale(.1923)}to{transform:translate(35.57515vw,100vh) scale(.1923)}}.snow:nth-child(242){opacity:1.637;transform:translate(5.6504vw,-10px) scale(.5016);animation:fall-242 17s -25s linear infinite}@keyframes fall-242{60.965%{transform:translate(11.2384vw,60.965vh) scale(.5016)}to{transform:translate(8.4444vw,100vh) scale(.5016)}}.snow:nth-child(243){opacity:.1382;transform:translate(82.8424vw,-10px) scale(.7614);animation:fall-243 28s -3s linear infinite}@keyframes fall-243{75.445%{transform:translate(77.8058vw,75.445vh) scale(.7614)}to{transform:translate(80.3241vw,100vh) scale(.7614)}}.snow:nth-child(244){opacity:1.3506;transform:translate(14.1933vw,-10px) scale(.4583);animation:fall-244 14s -25s linear infinite}@keyframes fall-244{47.37%{transform:translate(22.9336vw,47.37vh) scale(.4583)}to{transform:translate(18.56345vw,100vh) scale(.4583)}}.snow:nth-child(245){opacity:1.2418;transform:translate(56.7877vw,-10px) scale(.1697);animation:fall-245 14s -12s linear infinite}@keyframes fall-245{50.304%{transform:translate(56.6534vw,50.304vh) scale(.1697)}to{transform:translate(56.72055vw,100vh) scale(.1697)}}.snow:nth-child(246){opacity:.2568;transform:translate(65.5607vw,-10px) scale(.6947);animation:fall-246 23s -9s linear infinite}@keyframes fall-246{79.594%{transform:translate(60.4747vw,79.594vh) scale(.6947)}to{transform:translate(63.0177vw,100vh) scale(.6947)}}.snow:nth-child(247){opacity:1.0222;transform:translate(24.4683vw,-10px) scale(.8484);animation:fall-247 16s -7s linear infinite}@keyframes fall-247{59.078%{transform:translate(19.1774vw,59.078vh) scale(.8484)}to{transform:translate(21.82285vw,100vh) scale(.8484)}}.snow:nth-child(248){opacity:1.6552;transform:translate(43.8137vw,-10px) scale(.574);animation:fall-248 22s -13s linear infinite}@keyframes fall-248{72.099%{transform:translate(42.9023vw,72.099vh) scale(.574)}to{transform:translate(43.358vw,100vh) scale(.574)}}.snow:nth-child(249){opacity:.6024;transform:translate(89.703vw,-10px) scale(.8846);animation:fall-249 16s -15s linear infinite}@keyframes fall-249{40.093%{transform:translate(90.1564vw,40.093vh) scale(.8846)}to{transform:translate(89.9297vw,100vh) scale(.8846)}}.snow:nth-child(250){opacity:1.3078;transform:translate(16.6519vw,-10px) scale(.1863);animation:fall-250 23s -21s linear infinite}@keyframes fall-250{63.493%{transform:translate(14.8115vw,63.493vh) scale(.1863)}to{transform:translate(15.7317vw,100vh) scale(.1863)}}.snow:nth-child(251){opacity:.8476;transform:translate(81.507vw,-10px) scale(.2598);animation:fall-251 30s -23s linear infinite}@keyframes fall-251{63.652%{transform:translate(75.3345vw,63.652vh) scale(.2598)}to{transform:translate(78.42075vw,100vh) scale(.2598)}}.snow:nth-child(252){opacity:1.674;transform:translate(8.2064vw,-10px) scale(.5146);animation:fall-252 30s -12s linear infinite}@keyframes fall-252{66.841%{transform:translate(4.0527vw,66.841vh) scale(.5146)}to{transform:translate(6.12955vw,100vh) scale(.5146)}}.snow:nth-child(253){opacity:.0356;transform:translate(23.3012vw,-10px) scale(.7317);animation:fall-253 14s -22s linear infinite}@keyframes fall-253{63.673%{transform:translate(24.7413vw,63.673vh) scale(.7317)}to{transform:translate(24.02125vw,100vh) scale(.7317)}}.snow:nth-child(254){opacity:.779;transform:translate(55.1415vw,-10px) scale(.6726);animation:fall-254 19s -6s linear infinite}@keyframes fall-254{59.465%{transform:translate(60.3719vw,59.465vh) scale(.6726)}to{transform:translate(57.7567vw,100vh) scale(.6726)}}.snow:nth-child(255){opacity:1.7226;transform:translate(82.3225vw,-10px) scale(.7047);animation:fall-255 15s -17s linear infinite}@keyframes fall-255{32.365%{transform:translate(81.2713vw,32.365vh) scale(.7047)}to{transform:translate(81.7969vw,100vh) scale(.7047)}}.snow:nth-child(256){opacity:1.6482;transform:translate(2.2253vw,-10px) scale(.5655);animation:fall-256 24s -18s linear infinite}@keyframes fall-256{61.401%{transform:translate(11.0048vw,61.401vh) scale(.5655)}to{transform:translate(6.61505vw,100vh) scale(.5655)}}.snow:nth-child(257){opacity:.35;transform:translate(1.7899vw,-10px) scale(.3886);animation:fall-257 23s -28s linear infinite}@keyframes fall-257{55.919%{transform:translate(-6.8924vw,55.919vh) scale(.3886)}to{transform:translate(-2.55125vw,100vh) scale(.3886)}}.snow:nth-child(258){opacity:.9142;transform:translate(25.754vw,-10px) scale(.4989);animation:fall-258 27s -4s linear infinite}@keyframes fall-258{65.879%{transform:translate(23.9551vw,65.879vh) scale(.4989)}to{transform:translate(24.85455vw,100vh) scale(.4989)}}.snow:nth-child(259){opacity:1.8014;transform:translate(22.7324vw,-10px) scale(.809);animation:fall-259 17s -15s linear infinite}@keyframes fall-259{77.74%{transform:translate(26.3633vw,77.74vh) scale(.809)}to{transform:translate(24.54785vw,100vh) scale(.809)}}.snow:nth-child(260){opacity:.895;transform:translate(48.0427vw,-10px) scale(.3587);animation:fall-260 29s -5s linear infinite}@keyframes fall-260{73.91%{transform:translate(39.1027vw,73.91vh) scale(.3587)}to{transform:translate(43.5727vw,100vh) scale(.3587)}}.snow:nth-child(261){opacity:1.061;transform:translate(43.0922vw,-10px) scale(.5863);animation:fall-261 14s -14s linear infinite}@keyframes fall-261{48.806%{transform:translate(43.3552vw,48.806vh) scale(.5863)}to{transform:translate(43.2237vw,100vh) scale(.5863)}}.snow:nth-child(262){opacity:1.975;transform:translate(68.912vw,-10px) scale(.1078);animation:fall-262 25s -5s linear infinite}@keyframes fall-262{59.834%{transform:translate(73.1835vw,59.834vh) scale(.1078)}to{transform:translate(71.04775vw,100vh) scale(.1078)}}.snow:nth-child(263){opacity:1.7122;transform:translate(58.7437vw,-10px) scale(.8433);animation:fall-263 22s -5s linear infinite}@keyframes fall-263{31.797%{transform:translate(56.3443vw,31.797vh) scale(.8433)}to{transform:translate(57.544vw,100vh) scale(.8433)}}.snow:nth-child(264){opacity:.0702;transform:translate(35.1696vw,-10px) scale(.0263);animation:fall-264 27s -5s linear infinite}@keyframes fall-264{68.284%{transform:translate(31.7655vw,68.284vh) scale(.0263)}to{transform:translate(33.46755vw,100vh) scale(.0263)}}.snow:nth-child(265){opacity:1.5902;transform:translate(91.381vw,-10px) scale(.6331);animation:fall-265 26s -16s linear infinite}@keyframes fall-265{73.871%{transform:translate(99.9231vw,73.871vh) scale(.6331)}to{transform:translate(95.65205vw,100vh) scale(.6331)}}.snow:nth-child(266){opacity:.5416;transform:translate(61.4415vw,-10px) scale(.9216);animation:fall-266 20s -8s linear infinite}@keyframes fall-266{70.427%{transform:translate(60.482vw,70.427vh) scale(.9216)}to{transform:translate(60.96175vw,100vh) scale(.9216)}}.snow:nth-child(267){opacity:1.2008;transform:translate(31.0771vw,-10px) scale(.5909);animation:fall-267 10s -12s linear infinite}@keyframes fall-267{42.123%{transform:translate(28.5139vw,42.123vh) scale(.5909)}to{transform:translate(29.7955vw,100vh) scale(.5909)}}.snow:nth-child(268){opacity:.336;transform:translate(19.4484vw,-10px) scale(.2961);animation:fall-268 18s -8s linear infinite}@keyframes fall-268{71.452%{transform:translate(24.1002vw,71.452vh) scale(.2961)}to{transform:translate(21.7743vw,100vh) scale(.2961)}}.snow:nth-child(269){opacity:.4218;transform:translate(55.0805vw,-10px) scale(.8206);animation:fall-269 15s -27s linear infinite}@keyframes fall-269{36.098%{transform:translate(63.1385vw,36.098vh) scale(.8206)}to{transform:translate(59.1095vw,100vh) scale(.8206)}}.snow:nth-child(270){opacity:.118;transform:translate(13.2304vw,-10px) scale(.3636);animation:fall-270 29s -16s linear infinite}@keyframes fall-270{57.044%{transform:translate(11.5791vw,57.044vh) scale(.3636)}to{transform:translate(12.40475vw,100vh) scale(.3636)}}.snow:nth-child(271){opacity:.277;transform:translate(16.0711vw,-10px) scale(.398);animation:fall-271 21s -6s linear infinite}@keyframes fall-271{59.63%{transform:translate(15.0076vw,59.63vh) scale(.398)}to{transform:translate(15.53935vw,100vh) scale(.398)}}.snow:nth-child(272){opacity:.5678;transform:translate(29.7855vw,-10px) scale(.6277);animation:fall-272 20s -3s linear infinite}@keyframes fall-272{38.256%{transform:translate(34.9014vw,38.256vh) scale(.6277)}to{transform:translate(32.34345vw,100vh) scale(.6277)}}.snow:nth-child(273){opacity:1.225;transform:translate(50.9353vw,-10px) scale(.2716);animation:fall-273 17s -7s linear infinite}@keyframes fall-273{72.38%{transform:translate(59.855vw,72.38vh) scale(.2716)}to{transform:translate(55.39515vw,100vh) scale(.2716)}}.snow:nth-child(274){opacity:.5222;transform:translate(20.5397vw,-10px) scale(.206);animation:fall-274 30s -19s linear infinite}@keyframes fall-274{32.094%{transform:translate(21.5435vw,32.094vh) scale(.206)}to{transform:translate(21.0416vw,100vh) scale(.206)}}.snow:nth-child(275){opacity:.1712;transform:translate(79.1277vw,-10px) scale(.2812);animation:fall-275 14s -11s linear infinite}@keyframes fall-275{58.235%{transform:translate(78.9533vw,58.235vh) scale(.2812)}to{transform:translate(79.0405vw,100vh) scale(.2812)}}.snow:nth-child(276){opacity:.96;transform:translate(40.9928vw,-10px) scale(.405);animation:fall-276 19s -13s linear infinite}@keyframes fall-276{56.331%{transform:translate(32.9898vw,56.331vh) scale(.405)}to{transform:translate(36.9913vw,100vh) scale(.405)}}.snow:nth-child(277){opacity:1.5888;transform:translate(28.0297vw,-10px) scale(.4325);animation:fall-277 15s -16s linear infinite}@keyframes fall-277{54.834%{transform:translate(34.3319vw,54.834vh) scale(.4325)}to{transform:translate(31.1808vw,100vh) scale(.4325)}}.snow:nth-child(278){opacity:.3792;transform:translate(86.6151vw,-10px) scale(.11);animation:fall-278 26s -25s linear infinite}@keyframes fall-278{36.775%{transform:translate(77.736vw,36.775vh) scale(.11)}to{transform:translate(82.17555vw,100vh) scale(.11)}}.snow:nth-child(279){opacity:.2666;transform:translate(40.1582vw,-10px) scale(.9131);animation:fall-279 11s -6s linear infinite}@keyframes fall-279{72.125%{transform:translate(32.3946vw,72.125vh) scale(.9131)}to{transform:translate(36.2764vw,100vh) scale(.9131)}}.snow:nth-child(280){opacity:1.2322;transform:translate(39.8603vw,-10px) scale(.5978);animation:fall-280 18s -1s linear infinite}@keyframes fall-280{74.973%{transform:translate(37.1803vw,74.973vh) scale(.5978)}to{transform:translate(38.5203vw,100vh) scale(.5978)}}.snow:nth-child(281){opacity:.622;transform:translate(3.479vw,-10px) scale(.7319);animation:fall-281 23s -18s linear infinite}@keyframes fall-281{66.004%{transform:translate(10.3528vw,66.004vh) scale(.7319)}to{transform:translate(6.9159vw,100vh) scale(.7319)}}.snow:nth-child(282){opacity:.0682;transform:translate(97.6553vw,-10px) scale(.1545);animation:fall-282 18s -11s linear infinite}@keyframes fall-282{70.662%{transform:translate(95.6467vw,70.662vh) scale(.1545)}to{transform:translate(96.651vw,100vh) scale(.1545)}}.snow:nth-child(283){opacity:.9352;transform:translate(63.1957vw,-10px) scale(.075);animation:fall-283 30s -7s linear infinite}@keyframes fall-283{72.527%{transform:translate(70.7996vw,72.527vh) scale(.075)}to{transform:translate(66.99765vw,100vh) scale(.075)}}.snow:nth-child(284){opacity:.5646;transform:translate(42.5881vw,-10px) scale(.138);animation:fall-284 27s -26s linear infinite}@keyframes fall-284{38.041%{transform:translate(49.8385vw,38.041vh) scale(.138)}to{transform:translate(46.2133vw,100vh) scale(.138)}}.snow:nth-child(285){opacity:1.6892;transform:translate(22.6674vw,-10px) scale(.1659);animation:fall-285 12s -4s linear infinite}@keyframes fall-285{43.117%{transform:translate(17.9722vw,43.117vh) scale(.1659)}to{transform:translate(20.3198vw,100vh) scale(.1659)}}.snow:nth-child(286){opacity:1.0204;transform:translate(53.9924vw,-10px) scale(.7961);animation:fall-286 26s -8s linear infinite}@keyframes fall-286{56.63%{transform:translate(54.0777vw,56.63vh) scale(.7961)}to{transform:translate(54.03505vw,100vh) scale(.7961)}}.snow:nth-child(287){opacity:.8958;transform:translate(63.9617vw,-10px) scale(.4293);animation:fall-287 26s -15s linear infinite}@keyframes fall-287{39.785%{transform:translate(58.8081vw,39.785vh) scale(.4293)}to{transform:translate(61.3849vw,100vh) scale(.4293)}}.snow:nth-child(288){opacity:.4892;transform:translate(65.9908vw,-10px) scale(.6777);animation:fall-288 19s -4s linear infinite}@keyframes fall-288{52.85%{transform:translate(56.4228vw,52.85vh) scale(.6777)}to{transform:translate(61.2068vw,100vh) scale(.6777)}}.snow:nth-child(289){opacity:1.128;transform:translate(72.8179vw,-10px) scale(.7821);animation:fall-289 24s -12s linear infinite}@keyframes fall-289{33.709%{transform:translate(77.8094vw,33.709vh) scale(.7821)}to{transform:translate(75.31365vw,100vh) scale(.7821)}}.snow:nth-child(290){opacity:1.7862;transform:translate(66.0776vw,-10px) scale(.6123);animation:fall-290 20s -25s linear infinite}@keyframes fall-290{42.036%{transform:translate(75.3411vw,42.036vh) scale(.6123)}to{transform:translate(70.70935vw,100vh) scale(.6123)}}.snow:nth-child(291){opacity:1.7314;transform:translate(60.4071vw,-10px) scale(.7186);animation:fall-291 21s -28s linear infinite}@keyframes fall-291{46.463%{transform:translate(51.4315vw,46.463vh) scale(.7186)}to{transform:translate(55.9193vw,100vh) scale(.7186)}}.snow:nth-child(292){opacity:.779;transform:translate(69.4309vw,-10px) scale(.9765);animation:fall-292 25s -4s linear infinite}@keyframes fall-292{67.819%{transform:translate(78.9329vw,67.819vh) scale(.9765)}to{transform:translate(74.1819vw,100vh) scale(.9765)}}.snow:nth-child(293){opacity:.7968;transform:translate(97.6649vw,-10px) scale(.5748);animation:fall-293 12s -20s linear infinite}@keyframes fall-293{49.727%{transform:translate(105.2483vw,49.727vh) scale(.5748)}to{transform:translate(101.4566vw,100vh) scale(.5748)}}.snow:nth-child(294){opacity:.5258;transform:translate(53.2493vw,-10px) scale(.9444);animation:fall-294 29s -8s linear infinite}@keyframes fall-294{75.616%{transform:translate(56.9689vw,75.616vh) scale(.9444)}to{transform:translate(55.1091vw,100vh) scale(.9444)}}.snow:nth-child(295){opacity:.007;transform:translate(27.038vw,-10px) scale(.0008);animation:fall-295 18s -15s linear infinite}@keyframes fall-295{79.26%{transform:translate(30.8147vw,79.26vh) scale(.0008)}to{transform:translate(28.92635vw,100vh) scale(.0008)}}.snow:nth-child(296){opacity:1.071;transform:translate(65.5936vw,-10px) scale(.0231);animation:fall-296 23s -21s linear infinite}@keyframes fall-296{35.871%{transform:translate(59.6956vw,35.871vh) scale(.0231)}to{transform:translate(62.6446vw,100vh) scale(.0231)}}.snow:nth-child(297){opacity:1.5292;transform:translate(.8008vw,-10px) scale(.777);animation:fall-297 14s -21s linear infinite}@keyframes fall-297{59.655%{transform:translate(-6.2153vw,59.655vh) scale(.777)}to{transform:translate(-2.70725vw,100vh) scale(.777)}}.snow:nth-child(298){opacity:1.9484;transform:translate(79.7618vw,-10px) scale(.2702);animation:fall-298 14s -4s linear infinite}@keyframes fall-298{65.519%{transform:translate(89.6478vw,65.519vh) scale(.2702)}to{transform:translate(84.7048vw,100vh) scale(.2702)}}.snow:nth-child(299){opacity:.7924;transform:translate(7.1252vw,-10px) scale(.1974);animation:fall-299 16s -27s linear infinite}@keyframes fall-299{39.81%{transform:translate(7.3619vw,39.81vh) scale(.1974)}to{transform:translate(7.24355vw,100vh) scale(.1974)}}.snow:nth-child(300){opacity:1.5908;transform:translate(87.9784vw,-10px) scale(.9065);animation:fall-300 29s -20s linear infinite}@keyframes fall-300{63.362%{transform:translate(89.2529vw,63.362vh) scale(.9065)}to{transform:translate(88.61565vw,100vh) scale(.9065)}}.snow:nth-child(301){opacity:1.2098;transform:translate(50.4403vw,-10px) scale(.805);animation:fall-301 19s -16s linear infinite}@keyframes fall-301{63.827%{transform:translate(44.3253vw,63.827vh) scale(.805)}to{transform:translate(47.3828vw,100vh) scale(.805)}}.snow:nth-child(302){opacity:1.6068;transform:translate(48.6069vw,-10px) scale(.4579);animation:fall-302 26s -16s linear infinite}@keyframes fall-302{62.345%{transform:translate(47.0869vw,62.345vh) scale(.4579)}to{transform:translate(47.8469vw,100vh) scale(.4579)}}.snow:nth-child(303){opacity:1.034;transform:translate(73.4481vw,-10px) scale(.0961);animation:fall-303 22s -15s linear infinite}@keyframes fall-303{77.08%{transform:translate(73.3489vw,77.08vh) scale(.0961)}to{transform:translate(73.3985vw,100vh) scale(.0961)}}.snow:nth-child(304){opacity:1.71;transform:translate(22.5867vw,-10px) scale(.7428);animation:fall-304 13s -24s linear infinite}@keyframes fall-304{70.686%{transform:translate(15.6286vw,70.686vh) scale(.7428)}to{transform:translate(19.10765vw,100vh) scale(.7428)}}.snow:nth-child(305){opacity:1.4438;transform:translate(43.4534vw,-10px) scale(.6966);animation:fall-305 21s -28s linear infinite}@keyframes fall-305{31.337%{transform:translate(50.8327vw,31.337vh) scale(.6966)}to{transform:translate(47.14305vw,100vh) scale(.6966)}}.snow:nth-child(306){opacity:1.4224;transform:translate(14.5523vw,-10px) scale(.5685);animation:fall-306 24s -16s linear infinite}@keyframes fall-306{41.138%{transform:translate(14.2852vw,41.138vh) scale(.5685)}to{transform:translate(14.41875vw,100vh) scale(.5685)}}.snow:nth-child(307){opacity:1.7224;transform:translate(61.5806vw,-10px) scale(.1396);animation:fall-307 28s -3s linear infinite}@keyframes fall-307{57.152%{transform:translate(53.4103vw,57.152vh) scale(.1396)}to{transform:translate(57.49545vw,100vh) scale(.1396)}}.snow:nth-child(308){opacity:.3786;transform:translate(77.5311vw,-10px) scale(.1481);animation:fall-308 15s -11s linear infinite}@keyframes fall-308{65.438%{transform:translate(81.6405vw,65.438vh) scale(.1481)}to{transform:translate(79.5858vw,100vh) scale(.1481)}}.snow:nth-child(309){opacity:1.4254;transform:translate(69.0704vw,-10px) scale(.7947);animation:fall-309 23s -1s linear infinite}@keyframes fall-309{48.353%{transform:translate(59.9048vw,48.353vh) scale(.7947)}to{transform:translate(64.4876vw,100vh) scale(.7947)}}.snow:nth-child(310){opacity:1.2282;transform:translate(91.9599vw,-10px) scale(.7263);animation:fall-310 17s -19s linear infinite}@keyframes fall-310{38.793%{transform:translate(99.5352vw,38.793vh) scale(.7263)}to{transform:translate(95.74755vw,100vh) scale(.7263)}}.snow:nth-child(311){opacity:.0984;transform:translate(91.8486vw,-10px) scale(.7169);animation:fall-311 13s -11s linear infinite}@keyframes fall-311{37.017%{transform:translate(98.0524vw,37.017vh) scale(.7169)}to{transform:translate(94.9505vw,100vh) scale(.7169)}}.snow:nth-child(312){opacity:1.1142;transform:translate(64.1684vw,-10px) scale(.6936);animation:fall-312 15s -28s linear infinite}@keyframes fall-312{47.087%{transform:translate(57.4839vw,47.087vh) scale(.6936)}to{transform:translate(60.82615vw,100vh) scale(.6936)}}.snow:nth-child(313){opacity:1.9506;transform:translate(63.7372vw,-10px) scale(.8402);animation:fall-313 26s -6s linear infinite}@keyframes fall-313{74.975%{transform:translate(56.2379vw,74.975vh) scale(.8402)}to{transform:translate(59.98755vw,100vh) scale(.8402)}}.snow:nth-child(314){opacity:1.158;transform:translate(24.8629vw,-10px) scale(.2143);animation:fall-314 23s -24s linear infinite}@keyframes fall-314{70.302%{transform:translate(15.794vw,70.302vh) scale(.2143)}to{transform:translate(20.32845vw,100vh) scale(.2143)}}.snow:nth-child(315){opacity:1.7664;transform:translate(8.657vw,-10px) scale(.0248);animation:fall-315 30s -29s linear infinite}@keyframes fall-315{72.142%{transform:translate(9.873vw,72.142vh) scale(.0248)}to{transform:translate(9.265vw,100vh) scale(.0248)}}.snow:nth-child(316){opacity:.4222;transform:translate(26.5984vw,-10px) scale(.4191);animation:fall-316 24s -28s linear infinite}@keyframes fall-316{71.728%{transform:translate(31.2108vw,71.728vh) scale(.4191)}to{transform:translate(28.9046vw,100vh) scale(.4191)}}.snow:nth-child(317){opacity:1.7934;transform:translate(59.2685vw,-10px) scale(.1872);animation:fall-317 25s -27s linear infinite}@keyframes fall-317{41.155%{transform:translate(63.2858vw,41.155vh) scale(.1872)}to{transform:translate(61.27715vw,100vh) scale(.1872)}}.snow:nth-child(318){opacity:1.274;transform:translate(49.2191vw,-10px) scale(.1274);animation:fall-318 28s -24s linear infinite}@keyframes fall-318{34.648%{transform:translate(50.7163vw,34.648vh) scale(.1274)}to{transform:translate(49.9677vw,100vh) scale(.1274)}}.snow:nth-child(319){opacity:1.4514;transform:translate(91.9093vw,-10px) scale(.9224);animation:fall-319 17s -18s linear infinite}@keyframes fall-319{40.647%{transform:translate(97.6189vw,40.647vh) scale(.9224)}to{transform:translate(94.7641vw,100vh) scale(.9224)}}.snow:nth-child(320){opacity:.509;transform:translate(99.4735vw,-10px) scale(.4422);animation:fall-320 10s -6s linear infinite}@keyframes fall-320{51.224%{transform:translate(107.5145vw,51.224vh) scale(.4422)}to{transform:translate(103.494vw,100vh) scale(.4422)}}.snow:nth-child(321){opacity:1.0182;transform:translate(24.658vw,-10px) scale(.26);animation:fall-321 24s -14s linear infinite}@keyframes fall-321{32.759%{transform:translate(17.6598vw,32.759vh) scale(.26)}to{transform:translate(21.1589vw,100vh) scale(.26)}}.snow:nth-child(322){opacity:.2652;transform:translate(98.8063vw,-10px) scale(.1022);animation:fall-322 10s -15s linear infinite}@keyframes fall-322{72.392%{transform:translate(108.7946vw,72.392vh) scale(.1022)}to{transform:translate(103.80045vw,100vh) scale(.1022)}}.snow:nth-child(323){opacity:.336;transform:translate(93.773vw,-10px) scale(.1869);animation:fall-323 17s -27s linear infinite}@keyframes fall-323{70.764%{transform:translate(97.8641vw,70.764vh) scale(.1869)}to{transform:translate(95.81855vw,100vh) scale(.1869)}}.snow:nth-child(324){opacity:1.3002;transform:translate(14.8421vw,-10px) scale(.6877);animation:fall-324 15s -16s linear infinite}@keyframes fall-324{37.637%{transform:translate(16.5392vw,37.637vh) scale(.6877)}to{transform:translate(15.69065vw,100vh) scale(.6877)}}.snow:nth-child(325){opacity:.6264;transform:translate(97.5121vw,-10px) scale(.83);animation:fall-325 19s -19s linear infinite}@keyframes fall-325{65.353%{transform:translate(99.0552vw,65.353vh) scale(.83)}to{transform:translate(98.28365vw,100vh) scale(.83)}}.snow:nth-child(326){opacity:.8366;transform:translate(90.4491vw,-10px) scale(.7114);animation:fall-326 24s -21s linear infinite}@keyframes fall-326{46.862%{transform:translate(94.2973vw,46.862vh) scale(.7114)}to{transform:translate(92.3732vw,100vh) scale(.7114)}}.snow:nth-child(327){opacity:1.9388;transform:translate(64.0793vw,-10px) scale(.2795);animation:fall-327 23s -13s linear infinite}@keyframes fall-327{67.277%{transform:translate(66.7392vw,67.277vh) scale(.2795)}to{transform:translate(65.40925vw,100vh) scale(.2795)}}.snow:nth-child(328){opacity:1.512;transform:translate(41.312vw,-10px) scale(.3764);animation:fall-328 20s -10s linear infinite}@keyframes fall-328{71.241%{transform:translate(44.0592vw,71.241vh) scale(.3764)}to{transform:translate(42.6856vw,100vh) scale(.3764)}}.snow:nth-child(329){opacity:.0278;transform:translate(14.4762vw,-10px) scale(.004);animation:fall-329 11s -21s linear infinite}@keyframes fall-329{42.356%{transform:translate(15.603vw,42.356vh) scale(.004)}to{transform:translate(15.0396vw,100vh) scale(.004)}}.snow:nth-child(330){opacity:.724;transform:translate(3.0104vw,-10px) scale(.1156);animation:fall-330 20s -4s linear infinite}@keyframes fall-330{51.357%{transform:translate(7.587vw,51.357vh) scale(.1156)}to{transform:translate(5.2987vw,100vh) scale(.1156)}}.snow:nth-child(331){opacity:1.6968;transform:translate(48.8895vw,-10px) scale(.9756);animation:fall-331 11s -12s linear infinite}@keyframes fall-331{60.44%{transform:translate(48.0384vw,60.44vh) scale(.9756)}to{transform:translate(48.46395vw,100vh) scale(.9756)}}.snow:nth-child(332){opacity:.1798;transform:translate(85.0489vw,-10px) scale(.6252);animation:fall-332 21s -14s linear infinite}@keyframes fall-332{36.317%{transform:translate(87.2552vw,36.317vh) scale(.6252)}to{transform:translate(86.15205vw,100vh) scale(.6252)}}.snow:nth-child(333){opacity:.497;transform:translate(31.0766vw,-10px) scale(.0529);animation:fall-333 15s -14s linear infinite}@keyframes fall-333{40.522%{transform:translate(40.3096vw,40.522vh) scale(.0529)}to{transform:translate(35.6931vw,100vh) scale(.0529)}}.snow:nth-child(334){opacity:1.4274;transform:translate(45.8304vw,-10px) scale(.358);animation:fall-334 20s -18s linear infinite}@keyframes fall-334{61.997%{transform:translate(44.5422vw,61.997vh) scale(.358)}to{transform:translate(45.1863vw,100vh) scale(.358)}}.snow:nth-child(335){opacity:.984;transform:translate(11.5285vw,-10px) scale(.0299);animation:fall-335 24s -3s linear infinite}@keyframes fall-335{77.852%{transform:translate(3.6237vw,77.852vh) scale(.0299)}to{transform:translate(7.5761vw,100vh) scale(.0299)}}.snow:nth-child(336){opacity:1.916;transform:translate(71.5042vw,-10px) scale(.3682);animation:fall-336 12s -2s linear infinite}@keyframes fall-336{30.117%{transform:translate(78.1999vw,30.117vh) scale(.3682)}to{transform:translate(74.85205vw,100vh) scale(.3682)}}.snow:nth-child(337){opacity:.8066;transform:translate(19.4656vw,-10px) scale(.6019);animation:fall-337 18s -27s linear infinite}@keyframes fall-337{48.669%{transform:translate(26.4178vw,48.669vh) scale(.6019)}to{transform:translate(22.9417vw,100vh) scale(.6019)}}.snow:nth-child(338){opacity:.2846;transform:translate(42.2809vw,-10px) scale(.3895);animation:fall-338 26s -27s linear infinite}@keyframes fall-338{65.981%{transform:translate(51.8111vw,65.981vh) scale(.3895)}to{transform:translate(47.046vw,100vh) scale(.3895)}}.snow:nth-child(339){opacity:1.751;transform:translate(37.4489vw,-10px) scale(.1069);animation:fall-339 19s -21s linear infinite}@keyframes fall-339{54.066%{transform:translate(45.8688vw,54.066vh) scale(.1069)}to{transform:translate(41.65885vw,100vh) scale(.1069)}}.snow:nth-child(340){opacity:.8154;transform:translate(92.0104vw,-10px) scale(.4802);animation:fall-340 19s -22s linear infinite}@keyframes fall-340{35.132%{transform:translate(100.8291vw,35.132vh) scale(.4802)}to{transform:translate(96.41975vw,100vh) scale(.4802)}}.snow:nth-child(341){opacity:.4024;transform:translate(6.8288vw,-10px) scale(.5979);animation:fall-341 20s -8s linear infinite}@keyframes fall-341{69.054%{transform:translate(14.788vw,69.054vh) scale(.5979)}to{transform:translate(10.8084vw,100vh) scale(.5979)}}.snow:nth-child(342){opacity:1.6068;transform:translate(58.009vw,-10px) scale(.3814);animation:fall-342 17s -22s linear infinite}@keyframes fall-342{63.431%{transform:translate(53.1277vw,63.431vh) scale(.3814)}to{transform:translate(55.56835vw,100vh) scale(.3814)}}.snow:nth-child(343){opacity:1.8384;transform:translate(49.8329vw,-10px) scale(.877);animation:fall-343 16s -16s linear infinite}@keyframes fall-343{72.588%{transform:translate(42.6117vw,72.588vh) scale(.877)}to{transform:translate(46.2223vw,100vh) scale(.877)}}.snow:nth-child(344){opacity:1.0424;transform:translate(59.6401vw,-10px) scale(.1865);animation:fall-344 30s -5s linear infinite}@keyframes fall-344{61.794%{transform:translate(65.2726vw,61.794vh) scale(.1865)}to{transform:translate(62.45635vw,100vh) scale(.1865)}}.snow:nth-child(345){opacity:1.9288;transform:translate(25.6691vw,-10px) scale(.5113);animation:fall-345 12s -16s linear infinite}@keyframes fall-345{54.208%{transform:translate(16.4049vw,54.208vh) scale(.5113)}to{transform:translate(21.037vw,100vh) scale(.5113)}}.snow:nth-child(346){opacity:1.7282;transform:translate(3.5734vw,-10px) scale(.1985);animation:fall-346 16s -13s linear infinite}@keyframes fall-346{61.559%{transform:translate(12.206vw,61.559vh) scale(.1985)}to{transform:translate(7.8897vw,100vh) scale(.1985)}}.snow:nth-child(347){opacity:.1532;transform:translate(31.7038vw,-10px) scale(.4554);animation:fall-347 20s -6s linear infinite}@keyframes fall-347{70.328%{transform:translate(39.5109vw,70.328vh) scale(.4554)}to{transform:translate(35.60735vw,100vh) scale(.4554)}}.snow:nth-child(348){opacity:.736;transform:translate(97.1846vw,-10px) scale(.2385);animation:fall-348 10s -13s linear infinite}@keyframes fall-348{55.256%{transform:translate(99.0974vw,55.256vh) scale(.2385)}to{transform:translate(98.141vw,100vh) scale(.2385)}}.snow:nth-child(349){opacity:1.9818;transform:translate(69.6654vw,-10px) scale(.4094);animation:fall-349 25s -11s linear infinite}@keyframes fall-349{34.658%{transform:translate(61.3688vw,34.658vh) scale(.4094)}to{transform:translate(65.5171vw,100vh) scale(.4094)}}.snow:nth-child(350){opacity:.5212;transform:translate(20.011vw,-10px) scale(.8925);animation:fall-350 13s -13s linear infinite}@keyframes fall-350{55.463%{transform:translate(24.7526vw,55.463vh) scale(.8925)}to{transform:translate(22.3818vw,100vh) scale(.8925)}}.snow:nth-child(351){opacity:1.5536;transform:translate(27.7487vw,-10px) scale(.9566);animation:fall-351 25s -1s linear infinite}@keyframes fall-351{64.377%{transform:translate(31.2061vw,64.377vh) scale(.9566)}to{transform:translate(29.4774vw,100vh) scale(.9566)}}.snow:nth-child(352){opacity:.7696;transform:translate(17.4591vw,-10px) scale(.6556);animation:fall-352 20s -25s linear infinite}@keyframes fall-352{66.673%{transform:translate(23.9292vw,66.673vh) scale(.6556)}to{transform:translate(20.69415vw,100vh) scale(.6556)}}.snow:nth-child(353){opacity:.295;transform:translate(56.0947vw,-10px) scale(.4942);animation:fall-353 14s -14s linear infinite}@keyframes fall-353{55.49%{transform:translate(60.8674vw,55.49vh) scale(.4942)}to{transform:translate(58.48105vw,100vh) scale(.4942)}}.snow:nth-child(354){opacity:.9924;transform:translate(82.0821vw,-10px) scale(.0385);animation:fall-354 20s -14s linear infinite}@keyframes fall-354{32.803%{transform:translate(76.2063vw,32.803vh) scale(.0385)}to{transform:translate(79.1442vw,100vh) scale(.0385)}}.snow:nth-child(355){opacity:1.4884;transform:translate(39.8169vw,-10px) scale(.0419);animation:fall-355 14s -21s linear infinite}@keyframes fall-355{44.737%{transform:translate(33.247vw,44.737vh) scale(.0419)}to{transform:translate(36.53195vw,100vh) scale(.0419)}}.snow:nth-child(356){opacity:.0162;transform:translate(29.6348vw,-10px) scale(.1195);animation:fall-356 23s -20s linear infinite}@keyframes fall-356{34.573%{transform:translate(32.0461vw,34.573vh) scale(.1195)}to{transform:translate(30.84045vw,100vh) scale(.1195)}}.snow:nth-child(357){opacity:.2892;transform:translate(11.5253vw,-10px) scale(.6078);animation:fall-357 10s -20s linear infinite}@keyframes fall-357{60.645%{transform:translate(8.7697vw,60.645vh) scale(.6078)}to{transform:translate(10.1475vw,100vh) scale(.6078)}}.snow:nth-child(358){opacity:.0218;transform:translate(35.3603vw,-10px) scale(.8228);animation:fall-358 16s -9s linear infinite}@keyframes fall-358{36.461%{transform:translate(40.1193vw,36.461vh) scale(.8228)}to{transform:translate(37.7398vw,100vh) scale(.8228)}}.snow:nth-child(359){opacity:.2314;transform:translate(14.7127vw,-10px) scale(.4464);animation:fall-359 24s -12s linear infinite}@keyframes fall-359{56.34%{transform:translate(12.7763vw,56.34vh) scale(.4464)}to{transform:translate(13.7445vw,100vh) scale(.4464)}}.snow:nth-child(360){opacity:.3108;transform:translate(15.2444vw,-10px) scale(.168);animation:fall-360 20s -7s linear infinite}@keyframes fall-360{38.681%{transform:translate(15.6152vw,38.681vh) scale(.168)}to{transform:translate(15.4298vw,100vh) scale(.168)}}.snow:nth-child(361){opacity:.7324;transform:translate(50.8183vw,-10px) scale(.6735);animation:fall-361 25s -6s linear infinite}@keyframes fall-361{30.434%{transform:translate(53.7317vw,30.434vh) scale(.6735)}to{transform:translate(52.275vw,100vh) scale(.6735)}}.snow:nth-child(362){opacity:.5106;transform:translate(16.1963vw,-10px) scale(.0811);animation:fall-362 25s -24s linear infinite}@keyframes fall-362{44.71%{transform:translate(7.3435vw,44.71vh) scale(.0811)}to{transform:translate(11.7699vw,100vh) scale(.0811)}}.snow:nth-child(363){opacity:.5934;transform:translate(75.3382vw,-10px) scale(.1585);animation:fall-363 26s -20s linear infinite}@keyframes fall-363{56.304%{transform:translate(67.1062vw,56.304vh) scale(.1585)}to{transform:translate(71.2222vw,100vh) scale(.1585)}}.snow:nth-child(364){opacity:1.9524;transform:translate(28.001vw,-10px) scale(.2999);animation:fall-364 10s -25s linear infinite}@keyframes fall-364{77.884%{transform:translate(19.0551vw,77.884vh) scale(.2999)}to{transform:translate(23.52805vw,100vh) scale(.2999)}}.snow:nth-child(365){opacity:1.4614;transform:translate(90.3502vw,-10px) scale(.7799);animation:fall-365 14s -14s linear infinite}@keyframes fall-365{38.974%{transform:translate(88.9604vw,38.974vh) scale(.7799)}to{transform:translate(89.6553vw,100vh) scale(.7799)}}.snow:nth-child(366){opacity:.807;transform:translate(27.3525vw,-10px) scale(.1981);animation:fall-366 15s -1s linear infinite}@keyframes fall-366{45.596%{transform:translate(19.5291vw,45.596vh) scale(.1981)}to{transform:translate(23.4408vw,100vh) scale(.1981)}}.snow:nth-child(367){opacity:.8006;transform:translate(26.318vw,-10px) scale(.1316);animation:fall-367 24s -10s linear infinite}@keyframes fall-367{68.409%{transform:translate(31.1797vw,68.409vh) scale(.1316)}to{transform:translate(28.74885vw,100vh) scale(.1316)}}.snow:nth-child(368){opacity:.3426;transform:translate(13.1916vw,-10px) scale(.7831);animation:fall-368 29s -2s linear infinite}@keyframes fall-368{73.608%{transform:translate(17.0014vw,73.608vh) scale(.7831)}to{transform:translate(15.0965vw,100vh) scale(.7831)}}.snow:nth-child(369){opacity:.1872;transform:translate(2.6877vw,-10px) scale(.9031);animation:fall-369 17s -12s linear infinite}@keyframes fall-369{66.166%{transform:translate(11.2953vw,66.166vh) scale(.9031)}to{transform:translate(6.9915vw,100vh) scale(.9031)}}.snow:nth-child(370){opacity:.9272;transform:translate(87.0457vw,-10px) scale(.6682);animation:fall-370 27s -7s linear infinite}@keyframes fall-370{60.797%{transform:translate(81.8814vw,60.797vh) scale(.6682)}to{transform:translate(84.46355vw,100vh) scale(.6682)}}.snow:nth-child(371){opacity:.2378;transform:translate(56.4119vw,-10px) scale(.4455);animation:fall-371 15s -24s linear infinite}@keyframes fall-371{52.5%{transform:translate(58.9822vw,52.5vh) scale(.4455)}to{transform:translate(57.69705vw,100vh) scale(.4455)}}.snow:nth-child(372){opacity:.301;transform:translate(9.3012vw,-10px) scale(.2365);animation:fall-372 13s -3s linear infinite}@keyframes fall-372{57.234%{transform:translate(-.1076vw,57.234vh) scale(.2365)}to{transform:translate(4.5968vw,100vh) scale(.2365)}}.snow:nth-child(373){opacity:.8854;transform:translate(80.8711vw,-10px) scale(.334);animation:fall-373 10s -2s linear infinite}@keyframes fall-373{63.365%{transform:translate(83.643vw,63.365vh) scale(.334)}to{transform:translate(82.25705vw,100vh) scale(.334)}}.snow:nth-child(374){opacity:1.3462;transform:translate(2.5236vw,-10px) scale(.5303);animation:fall-374 22s -8s linear infinite}@keyframes fall-374{74.824%{transform:translate(-6.7371vw,74.824vh) scale(.5303)}to{transform:translate(-2.10675vw,100vh) scale(.5303)}}.snow:nth-child(375){opacity:1.6902;transform:translate(76.7272vw,-10px) scale(.5258);animation:fall-375 12s -5s linear infinite}@keyframes fall-375{58.616%{transform:translate(72.7362vw,58.616vh) scale(.5258)}to{transform:translate(74.7317vw,100vh) scale(.5258)}}.snow:nth-child(376){opacity:.111;transform:translate(.7426vw,-10px) scale(.5302);animation:fall-376 13s -8s linear infinite}@keyframes fall-376{60.405%{transform:translate(-7.5666vw,60.405vh) scale(.5302)}to{transform:translate(-3.412vw,100vh) scale(.5302)}}.snow:nth-child(377){opacity:.2108;transform:translate(7.7822vw,-10px) scale(.328);animation:fall-377 12s -8s linear infinite}@keyframes fall-377{47.333%{transform:translate(7.1639vw,47.333vh) scale(.328)}to{transform:translate(7.47305vw,100vh) scale(.328)}}.snow:nth-child(378){opacity:.9746;transform:translate(15.5253vw,-10px) scale(.9067);animation:fall-378 21s -20s linear infinite}@keyframes fall-378{45.767%{transform:translate(14.4736vw,45.767vh) scale(.9067)}to{transform:translate(14.99945vw,100vh) scale(.9067)}}.snow:nth-child(379){opacity:.831;transform:translate(19.2261vw,-10px) scale(.3699);animation:fall-379 29s -23s linear infinite}@keyframes fall-379{69.895%{transform:translate(28.1354vw,69.895vh) scale(.3699)}to{transform:translate(23.68075vw,100vh) scale(.3699)}}.snow:nth-child(380){opacity:1.9202;transform:translate(2.7774vw,-10px) scale(.9548);animation:fall-380 12s -9s linear infinite}@keyframes fall-380{53.27%{transform:translate(-4.3113vw,53.27vh) scale(.9548)}to{transform:translate(-.76695vw,100vh) scale(.9548)}}.snow:nth-child(381){opacity:.5678;transform:translate(5.0526vw,-10px) scale(.8746);animation:fall-381 26s -9s linear infinite}@keyframes fall-381{58.684%{transform:translate(11.9305vw,58.684vh) scale(.8746)}to{transform:translate(8.49155vw,100vh) scale(.8746)}}.snow:nth-child(382){opacity:1.6372;transform:translate(43.7961vw,-10px) scale(.462);animation:fall-382 19s -1s linear infinite}@keyframes fall-382{53.199%{transform:translate(47.4263vw,53.199vh) scale(.462)}to{transform:translate(45.6112vw,100vh) scale(.462)}}.snow:nth-child(383){opacity:1.0498;transform:translate(67.5829vw,-10px) scale(.4696);animation:fall-383 30s -20s linear infinite}@keyframes fall-383{34.923%{transform:translate(71.5462vw,34.923vh) scale(.4696)}to{transform:translate(69.56455vw,100vh) scale(.4696)}}.snow:nth-child(384){opacity:1.1974;transform:translate(41.3573vw,-10px) scale(.056);animation:fall-384 30s -11s linear infinite}@keyframes fall-384{47.764%{transform:translate(43.878vw,47.764vh) scale(.056)}to{transform:translate(42.61765vw,100vh) scale(.056)}}.snow:nth-child(385){opacity:.697;transform:translate(91.453vw,-10px) scale(.3781);animation:fall-385 10s -4s linear infinite}@keyframes fall-385{59.609%{transform:translate(94.1057vw,59.609vh) scale(.3781)}to{transform:translate(92.77935vw,100vh) scale(.3781)}}.snow:nth-child(386){opacity:1.8242;transform:translate(22.9566vw,-10px) scale(.7774);animation:fall-386 18s -15s linear infinite}@keyframes fall-386{68.254%{transform:translate(13.5902vw,68.254vh) scale(.7774)}to{transform:translate(18.2734vw,100vh) scale(.7774)}}.snow:nth-child(387){opacity:1.4004;transform:translate(44.8161vw,-10px) scale(.26);animation:fall-387 30s -22s linear infinite}@keyframes fall-387{71.345%{transform:translate(42.7264vw,71.345vh) scale(.26)}to{transform:translate(43.77125vw,100vh) scale(.26)}}.snow:nth-child(388){opacity:.9292;transform:translate(42.7874vw,-10px) scale(.3454);animation:fall-388 27s -25s linear infinite}@keyframes fall-388{50.313%{transform:translate(37.265vw,50.313vh) scale(.3454)}to{transform:translate(40.0262vw,100vh) scale(.3454)}}.snow:nth-child(389){opacity:1.8732;transform:translate(81.7645vw,-10px) scale(.4566);animation:fall-389 20s -20s linear infinite}@keyframes fall-389{59.121%{transform:translate(76.4948vw,59.121vh) scale(.4566)}to{transform:translate(79.12965vw,100vh) scale(.4566)}}.snow:nth-child(390){opacity:.4924;transform:translate(54.823vw,-10px) scale(.0413);animation:fall-390 20s -5s linear infinite}@keyframes fall-390{57.362%{transform:translate(53.489vw,57.362vh) scale(.0413)}to{transform:translate(54.156vw,100vh) scale(.0413)}}.snow:nth-child(391){opacity:.5836;transform:translate(46.5549vw,-10px) scale(.0095);animation:fall-391 11s -10s linear infinite}@keyframes fall-391{71.747%{transform:translate(39.9158vw,71.747vh) scale(.0095)}to{transform:translate(43.23535vw,100vh) scale(.0095)}}.snow:nth-child(392){opacity:.588;transform:translate(85.6139vw,-10px) scale(.9424);animation:fall-392 16s -20s linear infinite}@keyframes fall-392{60.86%{transform:translate(82.47vw,60.86vh) scale(.9424)}to{transform:translate(84.04195vw,100vh) scale(.9424)}}.snow:nth-child(393){opacity:1.196;transform:translate(99.2492vw,-10px) scale(.4212);animation:fall-393 13s -9s linear infinite}@keyframes fall-393{52.371%{transform:translate(91.6689vw,52.371vh) scale(.4212)}to{transform:translate(95.45905vw,100vh) scale(.4212)}}.snow:nth-child(394){opacity:.537;transform:translate(95.9311vw,-10px) scale(.9117);animation:fall-394 11s -3s linear infinite}@keyframes fall-394{78.456%{transform:translate(102.4698vw,78.456vh) scale(.9117)}to{transform:translate(99.20045vw,100vh) scale(.9117)}}.snow:nth-child(395){opacity:1.354;transform:translate(52.7443vw,-10px) scale(.3789);animation:fall-395 29s -23s linear infinite}@keyframes fall-395{67.511%{transform:translate(48.6009vw,67.511vh) scale(.3789)}to{transform:translate(50.6726vw,100vh) scale(.3789)}}.snow:nth-child(396){opacity:.52;transform:translate(43.0323vw,-10px) scale(.0809);animation:fall-396 30s -20s linear infinite}@keyframes fall-396{52.334%{transform:translate(40.9928vw,52.334vh) scale(.0809)}to{transform:translate(42.01255vw,100vh) scale(.0809)}}.snow:nth-child(397){opacity:1.7346;transform:translate(22.1736vw,-10px) scale(.662);animation:fall-397 25s -21s linear infinite}@keyframes fall-397{42.62%{transform:translate(15.5631vw,42.62vh) scale(.662)}to{transform:translate(18.86835vw,100vh) scale(.662)}}.snow:nth-child(398){opacity:1.6896;transform:translate(44.0027vw,-10px) scale(.8305);animation:fall-398 13s -1s linear infinite}@keyframes fall-398{57.746%{transform:translate(37.1025vw,57.746vh) scale(.8305)}to{transform:translate(40.5526vw,100vh) scale(.8305)}}.snow:nth-child(399){opacity:.4472;transform:translate(61.6309vw,-10px) scale(.072);animation:fall-399 18s -14s linear infinite}@keyframes fall-399{57.547%{transform:translate(53.201vw,57.547vh) scale(.072)}to{transform:translate(57.41595vw,100vh) scale(.072)}}.snow:nth-child(400){opacity:1.741;transform:translate(81.2683vw,-10px) scale(.8993);animation:fall-400 28s -6s linear infinite}@keyframes fall-400{61.899%{transform:translate(90.8642vw,61.899vh) scale(.8993)}to{transform:translate(86.06625vw,100vh) scale(.8993)}}\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 });
73
+ AppComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AppComponent, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: [".table-borderless>tbody>tr>td,.table-borderless>tbody>tr>th,.table-borderless>tfoot>tr>td,.table-borderless>tfoot>tr>th,.table-borderless>thead>tr>td,.table-borderless>thead>tr>th{border:none}.table,.table-responsive{margin-bottom:5px}a:hover,a:focus{text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}*{outline:none!important}.modal-title{width:calc(100% - 20px)}.progress{height:20px}.progress.progress-primary[value]::-webkit-progress-value{background-color:#024a88}.progress.progress-primary[value]::-moz-progress-bar{background-color:#024a88}.progress.progress-primary[value]::-ms-fill{background-color:#024a88}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#024a88}}.progress.progress-info[value]::-webkit-progress-value{background-color:#248dad}.progress.progress-info[value]::-moz-progress-bar{background-color:#248dad}.progress.progress-info[value]::-ms-fill{background-color:#248dad}@media screen and (min-width: 0\\fffd){.progress.progress-info .progress-bar{background-color:#248dad}}.progress.progress-danger[value]::-webkit-progress-value{background-color:#bf1725}.progress.progress-danger[value]::-moz-progress-bar{background-color:#bf1725}.progress.progress-danger[value]::-ms-fill{background-color:#bf1725}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#bf1725}}.progress.progress-success[value]::-webkit-progress-value{background-color:#2d922d}.progress.progress-success[value]::-moz-progress-bar{background-color:#2d922d}.progress.progress-success[value]::-ms-fill{background-color:#2d922d}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#2d922d}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#f79a17}.progress.progress-warning[value]::-moz-progress-bar{background-color:#f79a17}.progress.progress-warning[value]::-ms-fill{background-color:#f79a17}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#f79a17}}.progress[value]::-moz-progress-bar{border-radius:0}.progress[value]::-webkit-progress-value{border-radius:0}.progress[value=\"100\"]::-moz-progress-bar{border-radius:0}.progress[value=\"100\"]::-webkit-progress-value{border-radius:0}.progress-xs{height:7px}.progress-sm{height:10px}.progress-md{height:13px}.progress-bar-info-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem;background-color:#5bc0de!important}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.9632;transform:translate(93.6173vw,-10px) scale(.669);animation:fall-1 15s -17s linear infinite}@keyframes fall-1{38.732%{transform:translate(97.7407vw,38.732vh) scale(.669)}to{transform:translate(95.679vw,100vh) scale(.669)}}.snow:nth-child(2){opacity:1.3288;transform:translate(3.3182vw,-10px) scale(.0844);animation:fall-2 18s -11s linear infinite}@keyframes fall-2{46.552%{transform:translate(-1.4553vw,46.552vh) scale(.0844)}to{transform:translate(.93145vw,100vh) scale(.0844)}}.snow:nth-child(3){opacity:.2764;transform:translate(53.8548vw,-10px) scale(.7699);animation:fall-3 23s -1s linear infinite}@keyframes fall-3{34.23%{transform:translate(55.0884vw,34.23vh) scale(.7699)}to{transform:translate(54.4716vw,100vh) scale(.7699)}}.snow:nth-child(4){opacity:.7918;transform:translate(54.8941vw,-10px) scale(.6999);animation:fall-4 21s -14s linear infinite}@keyframes fall-4{36.917%{transform:translate(53.5547vw,36.917vh) scale(.6999)}to{transform:translate(54.2244vw,100vh) scale(.6999)}}.snow:nth-child(5){opacity:.7742;transform:translate(97.5228vw,-10px) scale(.0715);animation:fall-5 13s -6s linear infinite}@keyframes fall-5{48.86%{transform:translate(88.0193vw,48.86vh) scale(.0715)}to{transform:translate(92.77105vw,100vh) scale(.0715)}}.snow:nth-child(6){opacity:.1014;transform:translate(19.1982vw,-10px) scale(.8585);animation:fall-6 13s -7s linear infinite}@keyframes fall-6{69.642%{transform:translate(24.4556vw,69.642vh) scale(.8585)}to{transform:translate(21.8269vw,100vh) scale(.8585)}}.snow:nth-child(7){opacity:.8016;transform:translate(49.0991vw,-10px) scale(.2942);animation:fall-7 30s -25s linear infinite}@keyframes fall-7{30.494%{transform:translate(48.9933vw,30.494vh) scale(.2942)}to{transform:translate(49.0462vw,100vh) scale(.2942)}}.snow:nth-child(8){opacity:1.4494;transform:translate(4.2406vw,-10px) scale(.3153);animation:fall-8 29s -9s linear infinite}@keyframes fall-8{59.997%{transform:translate(12.4485vw,59.997vh) scale(.3153)}to{transform:translate(8.34455vw,100vh) scale(.3153)}}.snow:nth-child(9){opacity:.0892;transform:translate(55.7308vw,-10px) scale(.6567);animation:fall-9 27s -4s linear infinite}@keyframes fall-9{61.941%{transform:translate(46.8089vw,61.941vh) scale(.6567)}to{transform:translate(51.26985vw,100vh) scale(.6567)}}.snow:nth-child(10){opacity:1.2882;transform:translate(47.4774vw,-10px) scale(.9806);animation:fall-10 19s -12s linear infinite}@keyframes fall-10{75.107%{transform:translate(45.5791vw,75.107vh) scale(.9806)}to{transform:translate(46.52825vw,100vh) scale(.9806)}}.snow:nth-child(11){opacity:1.7212;transform:translate(51.8707vw,-10px) scale(.986);animation:fall-11 29s -17s linear infinite}@keyframes fall-11{77.991%{transform:translate(54.257vw,77.991vh) scale(.986)}to{transform:translate(53.06385vw,100vh) scale(.986)}}.snow:nth-child(12){opacity:.466;transform:translate(82.8102vw,-10px) scale(.1246);animation:fall-12 25s -13s linear infinite}@keyframes fall-12{44.273%{transform:translate(79.2164vw,44.273vh) scale(.1246)}to{transform:translate(81.0133vw,100vh) scale(.1246)}}.snow:nth-child(13){opacity:.5778;transform:translate(91.0261vw,-10px) scale(.0515);animation:fall-13 19s -21s linear infinite}@keyframes fall-13{63.99%{transform:translate(95.6774vw,63.99vh) scale(.0515)}to{transform:translate(93.35175vw,100vh) scale(.0515)}}.snow:nth-child(14){opacity:1.687;transform:translate(3.6685vw,-10px) scale(.6848);animation:fall-14 11s -29s linear infinite}@keyframes fall-14{31.17%{transform:translate(-1.7656vw,31.17vh) scale(.6848)}to{transform:translate(.95145vw,100vh) scale(.6848)}}.snow:nth-child(15){opacity:.784;transform:translate(81.0329vw,-10px) scale(.304);animation:fall-15 23s -15s linear infinite}@keyframes fall-15{51.197%{transform:translate(82.3258vw,51.197vh) scale(.304)}to{transform:translate(81.67935vw,100vh) scale(.304)}}.snow:nth-child(16){opacity:.6408;transform:translate(90.8418vw,-10px) scale(.7786);animation:fall-16 18s -6s linear infinite}@keyframes fall-16{48.707%{transform:translate(82.8946vw,48.707vh) scale(.7786)}to{transform:translate(86.8682vw,100vh) scale(.7786)}}.snow:nth-child(17){opacity:1.6772;transform:translate(37.3816vw,-10px) scale(.7156);animation:fall-17 11s -11s linear infinite}@keyframes fall-17{56.267%{transform:translate(42.7377vw,56.267vh) scale(.7156)}to{transform:translate(40.05965vw,100vh) scale(.7156)}}.snow:nth-child(18){opacity:.9416;transform:translate(10.7178vw,-10px) scale(.2418);animation:fall-18 18s -9s linear infinite}@keyframes fall-18{43.448%{transform:translate(12.7944vw,43.448vh) scale(.2418)}to{transform:translate(11.7561vw,100vh) scale(.2418)}}.snow:nth-child(19){opacity:.3478;transform:translate(93.1149vw,-10px) scale(.4454);animation:fall-19 18s -19s linear infinite}@keyframes fall-19{61.391%{transform:translate(89.703vw,61.391vh) scale(.4454)}to{transform:translate(91.40895vw,100vh) scale(.4454)}}.snow:nth-child(20){opacity:.7932;transform:translate(99.157vw,-10px) scale(.0145);animation:fall-20 11s -12s linear infinite}@keyframes fall-20{72.293%{transform:translate(91.1116vw,72.293vh) scale(.0145)}to{transform:translate(95.1343vw,100vh) scale(.0145)}}.snow:nth-child(21){opacity:.228;transform:translate(63.4004vw,-10px) scale(.9192);animation:fall-21 21s -16s linear infinite}@keyframes fall-21{61.186%{transform:translate(70.883vw,61.186vh) scale(.9192)}to{transform:translate(67.1417vw,100vh) scale(.9192)}}.snow:nth-child(22){opacity:.5106;transform:translate(1.6686vw,-10px) scale(.0726);animation:fall-22 17s -24s linear infinite}@keyframes fall-22{64.926%{transform:translate(9.2765vw,64.926vh) scale(.0726)}to{transform:translate(5.47255vw,100vh) scale(.0726)}}.snow:nth-child(23){opacity:.8864;transform:translate(48.6442vw,-10px) scale(.9272);animation:fall-23 22s -18s linear infinite}@keyframes fall-23{31.75%{transform:translate(44.832vw,31.75vh) scale(.9272)}to{transform:translate(46.7381vw,100vh) scale(.9272)}}.snow:nth-child(24){opacity:.0154;transform:translate(17.25vw,-10px) scale(.7521);animation:fall-24 12s -30s linear infinite}@keyframes fall-24{77.022%{transform:translate(10.9925vw,77.022vh) scale(.7521)}to{transform:translate(14.12125vw,100vh) scale(.7521)}}.snow:nth-child(25){opacity:.922;transform:translate(69.8314vw,-10px) scale(.511);animation:fall-25 16s -28s linear infinite}@keyframes fall-25{53.4%{transform:translate(62.9437vw,53.4vh) scale(.511)}to{transform:translate(66.38755vw,100vh) scale(.511)}}.snow:nth-child(26){opacity:.3266;transform:translate(97.3704vw,-10px) scale(.163);animation:fall-26 22s -13s linear infinite}@keyframes fall-26{60.923%{transform:translate(97.9941vw,60.923vh) scale(.163)}to{transform:translate(97.68225vw,100vh) scale(.163)}}.snow:nth-child(27){opacity:.611;transform:translate(99.7622vw,-10px) scale(.324);animation:fall-27 22s -29s linear infinite}@keyframes fall-27{67.632%{transform:translate(96.4833vw,67.632vh) scale(.324)}to{transform:translate(98.12275vw,100vh) scale(.324)}}.snow:nth-child(28){opacity:.1392;transform:translate(28.9352vw,-10px) scale(.7504);animation:fall-28 30s -13s linear infinite}@keyframes fall-28{55.362%{transform:translate(38.1466vw,55.362vh) scale(.7504)}to{transform:translate(33.5409vw,100vh) scale(.7504)}}.snow:nth-child(29){opacity:.5746;transform:translate(48.9262vw,-10px) scale(.6507);animation:fall-29 30s -6s linear infinite}@keyframes fall-29{72.394%{transform:translate(46.0096vw,72.394vh) scale(.6507)}to{transform:translate(47.4679vw,100vh) scale(.6507)}}.snow:nth-child(30){opacity:1.7606;transform:translate(7.5656vw,-10px) scale(.6312);animation:fall-30 29s -26s linear infinite}@keyframes fall-30{37.773%{transform:translate(11.2545vw,37.773vh) scale(.6312)}to{transform:translate(9.41005vw,100vh) scale(.6312)}}.snow:nth-child(31){opacity:1.9552;transform:translate(42.642vw,-10px) scale(.0715);animation:fall-31 17s -9s linear infinite}@keyframes fall-31{64.602%{transform:translate(37.1957vw,64.602vh) scale(.0715)}to{transform:translate(39.91885vw,100vh) scale(.0715)}}.snow:nth-child(32){opacity:1.9856;transform:translate(19.5484vw,-10px) scale(.1841);animation:fall-32 22s -20s linear infinite}@keyframes fall-32{77.803%{transform:translate(16.5438vw,77.803vh) scale(.1841)}to{transform:translate(18.0461vw,100vh) scale(.1841)}}.snow:nth-child(33){opacity:.9488;transform:translate(59.6992vw,-10px) scale(.3837);animation:fall-33 16s -23s linear infinite}@keyframes fall-33{48.644%{transform:translate(61.821vw,48.644vh) scale(.3837)}to{transform:translate(60.7601vw,100vh) scale(.3837)}}.snow:nth-child(34){opacity:.1114;transform:translate(41.522vw,-10px) scale(.262);animation:fall-34 25s -17s linear infinite}@keyframes fall-34{62.486%{transform:translate(36.177vw,62.486vh) scale(.262)}to{transform:translate(38.8495vw,100vh) scale(.262)}}.snow:nth-child(35){opacity:.417;transform:translate(82.9698vw,-10px) scale(.0853);animation:fall-35 27s -10s linear infinite}@keyframes fall-35{36.687%{transform:translate(90.4859vw,36.687vh) scale(.0853)}to{transform:translate(86.72785vw,100vh) scale(.0853)}}.snow:nth-child(36){opacity:.0028;transform:translate(4.1878vw,-10px) scale(.4466);animation:fall-36 21s -13s linear infinite}@keyframes fall-36{62.468%{transform:translate(12.9878vw,62.468vh) scale(.4466)}to{transform:translate(8.5878vw,100vh) scale(.4466)}}.snow:nth-child(37){opacity:.7332;transform:translate(1.9689vw,-10px) scale(.755);animation:fall-37 28s -8s linear infinite}@keyframes fall-37{43.099%{transform:translate(3.844vw,43.099vh) scale(.755)}to{transform:translate(2.90645vw,100vh) scale(.755)}}.snow:nth-child(38){opacity:1.8794;transform:translate(57.4435vw,-10px) scale(.9137);animation:fall-38 27s -22s linear infinite}@keyframes fall-38{55.478%{transform:translate(49.5852vw,55.478vh) scale(.9137)}to{transform:translate(53.51435vw,100vh) scale(.9137)}}.snow:nth-child(39){opacity:.764;transform:translate(84.4574vw,-10px) scale(.2976);animation:fall-39 26s -26s linear infinite}@keyframes fall-39{72.277%{transform:translate(75.3201vw,72.277vh) scale(.2976)}to{transform:translate(79.88875vw,100vh) scale(.2976)}}.snow:nth-child(40){opacity:.7186;transform:translate(36.8715vw,-10px) scale(.5327);animation:fall-40 21s -3s linear infinite}@keyframes fall-40{40.259%{transform:translate(39.3503vw,40.259vh) scale(.5327)}to{transform:translate(38.1109vw,100vh) scale(.5327)}}.snow:nth-child(41){opacity:1.8538;transform:translate(78.1135vw,-10px) scale(.9435);animation:fall-41 27s -26s linear infinite}@keyframes fall-41{44.911%{transform:translate(76.445vw,44.911vh) scale(.9435)}to{transform:translate(77.27925vw,100vh) scale(.9435)}}.snow:nth-child(42){opacity:1.3926;transform:translate(36.6895vw,-10px) scale(.8116);animation:fall-42 14s -16s linear infinite}@keyframes fall-42{31.457%{transform:translate(42.7175vw,31.457vh) scale(.8116)}to{transform:translate(39.7035vw,100vh) scale(.8116)}}.snow:nth-child(43){opacity:1.4014;transform:translate(23.6944vw,-10px) scale(.7066);animation:fall-43 27s -22s linear infinite}@keyframes fall-43{64.039%{transform:translate(22.2557vw,64.039vh) scale(.7066)}to{transform:translate(22.97505vw,100vh) scale(.7066)}}.snow:nth-child(44){opacity:.6274;transform:translate(48.2813vw,-10px) scale(.1359);animation:fall-44 17s -18s linear infinite}@keyframes fall-44{55.844%{transform:translate(57.8368vw,55.844vh) scale(.1359)}to{transform:translate(53.05905vw,100vh) scale(.1359)}}.snow:nth-child(45){opacity:1.3568;transform:translate(59.3315vw,-10px) scale(.1816);animation:fall-45 24s -10s linear infinite}@keyframes fall-45{45.066%{transform:translate(52.1687vw,45.066vh) scale(.1816)}to{transform:translate(55.7501vw,100vh) scale(.1816)}}.snow:nth-child(46){opacity:.6028;transform:translate(34.3868vw,-10px) scale(.3118);animation:fall-46 14s -25s linear infinite}@keyframes fall-46{35.12%{transform:translate(26.9474vw,35.12vh) scale(.3118)}to{transform:translate(30.6671vw,100vh) scale(.3118)}}.snow:nth-child(47){opacity:.9628;transform:translate(96.1091vw,-10px) scale(.1935);animation:fall-47 15s -22s linear infinite}@keyframes fall-47{70.502%{transform:translate(87.1791vw,70.502vh) scale(.1935)}to{transform:translate(91.6441vw,100vh) scale(.1935)}}.snow:nth-child(48){opacity:.3776;transform:translate(97.8261vw,-10px) scale(.9344);animation:fall-48 12s -28s linear infinite}@keyframes fall-48{37.157%{transform:translate(99.8927vw,37.157vh) scale(.9344)}to{transform:translate(98.8594vw,100vh) scale(.9344)}}.snow:nth-child(49){opacity:.485;transform:translate(.257vw,-10px) scale(.493);animation:fall-49 15s -19s linear infinite}@keyframes fall-49{69.417%{transform:translate(3.4874vw,69.417vh) scale(.493)}to{transform:translate(1.8722vw,100vh) scale(.493)}}.snow:nth-child(50){opacity:.19;transform:translate(55.3401vw,-10px) scale(.8236);animation:fall-50 11s -27s linear infinite}@keyframes fall-50{51.209%{transform:translate(62.1048vw,51.209vh) scale(.8236)}to{transform:translate(58.72245vw,100vh) scale(.8236)}}.snow:nth-child(51){opacity:.2764;transform:translate(24.8313vw,-10px) scale(.0953);animation:fall-51 30s -18s linear infinite}@keyframes fall-51{35.961%{transform:translate(26.8963vw,35.961vh) scale(.0953)}to{transform:translate(25.8638vw,100vh) scale(.0953)}}.snow:nth-child(52){opacity:.1122;transform:translate(8.0384vw,-10px) scale(.6481);animation:fall-52 22s -10s linear infinite}@keyframes fall-52{58.642%{transform:translate(5.7528vw,58.642vh) scale(.6481)}to{transform:translate(6.8956vw,100vh) scale(.6481)}}.snow:nth-child(53){opacity:1.0078;transform:translate(47.0784vw,-10px) scale(.9034);animation:fall-53 25s -28s linear infinite}@keyframes fall-53{63.375%{transform:translate(42.8438vw,63.375vh) scale(.9034)}to{transform:translate(44.9611vw,100vh) scale(.9034)}}.snow:nth-child(54){opacity:1.4862;transform:translate(78.904vw,-10px) scale(.6938);animation:fall-54 18s -14s linear infinite}@keyframes fall-54{69.6%{transform:translate(72.8292vw,69.6vh) scale(.6938)}to{transform:translate(75.8666vw,100vh) scale(.6938)}}.snow:nth-child(55){opacity:.8528;transform:translate(95.8822vw,-10px) scale(.0259);animation:fall-55 18s -29s linear infinite}@keyframes fall-55{68.873%{transform:translate(92.6708vw,68.873vh) scale(.0259)}to{transform:translate(94.2765vw,100vh) scale(.0259)}}.snow:nth-child(56){opacity:.028;transform:translate(84.1895vw,-10px) scale(.5516);animation:fall-56 26s -2s linear infinite}@keyframes fall-56{65.752%{transform:translate(89.5638vw,65.752vh) scale(.5516)}to{transform:translate(86.87665vw,100vh) scale(.5516)}}.snow:nth-child(57){opacity:.5312;transform:translate(24.1782vw,-10px) scale(.0483);animation:fall-57 30s -16s linear infinite}@keyframes fall-57{59.304%{transform:translate(24.1076vw,59.304vh) scale(.0483)}to{transform:translate(24.1429vw,100vh) scale(.0483)}}.snow:nth-child(58){opacity:1.7728;transform:translate(37.5378vw,-10px) scale(.5364);animation:fall-58 19s -17s linear infinite}@keyframes fall-58{58.311%{transform:translate(38.3276vw,58.311vh) scale(.5364)}to{transform:translate(37.9327vw,100vh) scale(.5364)}}.snow:nth-child(59){opacity:.2866;transform:translate(77.8281vw,-10px) scale(.4082);animation:fall-59 28s -17s linear infinite}@keyframes fall-59{41.524%{transform:translate(87.674vw,41.524vh) scale(.4082)}to{transform:translate(82.75105vw,100vh) scale(.4082)}}.snow:nth-child(60){opacity:1.9932;transform:translate(43.0351vw,-10px) scale(.4465);animation:fall-60 26s -9s linear infinite}@keyframes fall-60{58.399%{transform:translate(42.8291vw,58.399vh) scale(.4465)}to{transform:translate(42.9321vw,100vh) scale(.4465)}}.snow:nth-child(61){opacity:1.2854;transform:translate(32.8605vw,-10px) scale(.8827);animation:fall-61 23s -4s linear infinite}@keyframes fall-61{68.775%{transform:translate(25.9808vw,68.775vh) scale(.8827)}to{transform:translate(29.42065vw,100vh) scale(.8827)}}.snow:nth-child(62){opacity:.0564;transform:translate(25.959vw,-10px) scale(.5021);animation:fall-62 18s -11s linear infinite}@keyframes fall-62{73.456%{transform:translate(30.6928vw,73.456vh) scale(.5021)}to{transform:translate(28.3259vw,100vh) scale(.5021)}}.snow:nth-child(63){opacity:.0762;transform:translate(70.6385vw,-10px) scale(.3517);animation:fall-63 17s -19s linear infinite}@keyframes fall-63{66.646%{transform:translate(61.5452vw,66.646vh) scale(.3517)}to{transform:translate(66.09185vw,100vh) scale(.3517)}}.snow:nth-child(64){opacity:1.9548;transform:translate(28.8799vw,-10px) scale(.167);animation:fall-64 30s -24s linear infinite}@keyframes fall-64{44.45%{transform:translate(27.1395vw,44.45vh) scale(.167)}to{transform:translate(28.0097vw,100vh) scale(.167)}}.snow:nth-child(65){opacity:1.0552;transform:translate(5.9722vw,-10px) scale(.2392);animation:fall-65 21s -17s linear infinite}@keyframes fall-65{64.726%{transform:translate(10.4382vw,64.726vh) scale(.2392)}to{transform:translate(8.2052vw,100vh) scale(.2392)}}.snow:nth-child(66){opacity:.5966;transform:translate(31.622vw,-10px) scale(.4582);animation:fall-66 11s -25s linear infinite}@keyframes fall-66{70.499%{transform:translate(21.6409vw,70.499vh) scale(.4582)}to{transform:translate(26.63145vw,100vh) scale(.4582)}}.snow:nth-child(67){opacity:1.873;transform:translate(81.827vw,-10px) scale(.5334);animation:fall-67 23s -10s linear infinite}@keyframes fall-67{38.136%{transform:translate(76.8803vw,38.136vh) scale(.5334)}to{transform:translate(79.35365vw,100vh) scale(.5334)}}.snow:nth-child(68){opacity:1.5714;transform:translate(54.8317vw,-10px) scale(.7329);animation:fall-68 16s -26s linear infinite}@keyframes fall-68{52.415%{transform:translate(61.2872vw,52.415vh) scale(.7329)}to{transform:translate(58.05945vw,100vh) scale(.7329)}}.snow:nth-child(69){opacity:1.4724;transform:translate(44.1141vw,-10px) scale(.6344);animation:fall-69 24s -8s linear infinite}@keyframes fall-69{33.621%{transform:translate(37.0668vw,33.621vh) scale(.6344)}to{transform:translate(40.59045vw,100vh) scale(.6344)}}.snow:nth-child(70){opacity:1.454;transform:translate(50.5863vw,-10px) scale(.4402);animation:fall-70 28s -26s linear infinite}@keyframes fall-70{36.192%{transform:translate(57.5377vw,36.192vh) scale(.4402)}to{transform:translate(54.062vw,100vh) scale(.4402)}}.snow:nth-child(71){opacity:.7322;transform:translate(72.1684vw,-10px) scale(.9856);animation:fall-71 26s -6s linear infinite}@keyframes fall-71{77.687%{transform:translate(66.2522vw,77.687vh) scale(.9856)}to{transform:translate(69.2103vw,100vh) scale(.9856)}}.snow:nth-child(72){opacity:.6052;transform:translate(52.5963vw,-10px) scale(.5135);animation:fall-72 27s -29s linear infinite}@keyframes fall-72{64.653%{transform:translate(52.0235vw,64.653vh) scale(.5135)}to{transform:translate(52.3099vw,100vh) scale(.5135)}}.snow:nth-child(73){opacity:.448;transform:translate(29.777vw,-10px) scale(.9399);animation:fall-73 25s -22s linear infinite}@keyframes fall-73{38.255%{transform:translate(24.0706vw,38.255vh) scale(.9399)}to{transform:translate(26.9238vw,100vh) scale(.9399)}}.snow:nth-child(74){opacity:1.2508;transform:translate(84.7553vw,-10px) scale(.6577);animation:fall-74 23s -6s linear infinite}@keyframes fall-74{71.028%{transform:translate(93.9175vw,71.028vh) scale(.6577)}to{transform:translate(89.3364vw,100vh) scale(.6577)}}.snow:nth-child(75){opacity:1.0604;transform:translate(52.679vw,-10px) scale(.0046);animation:fall-75 20s -2s linear infinite}@keyframes fall-75{45.846%{transform:translate(45.5392vw,45.846vh) scale(.0046)}to{transform:translate(49.1091vw,100vh) scale(.0046)}}.snow:nth-child(76){opacity:.278;transform:translate(81.6126vw,-10px) scale(.4347);animation:fall-76 20s -26s linear infinite}@keyframes fall-76{39.805%{transform:translate(86.7263vw,39.805vh) scale(.4347)}to{transform:translate(84.16945vw,100vh) scale(.4347)}}.snow:nth-child(77){opacity:.3806;transform:translate(81.076vw,-10px) scale(.0828);animation:fall-77 30s -22s linear infinite}@keyframes fall-77{35.395%{transform:translate(84.6286vw,35.395vh) scale(.0828)}to{transform:translate(82.8523vw,100vh) scale(.0828)}}.snow:nth-child(78){opacity:.1138;transform:translate(95.6195vw,-10px) scale(.0325);animation:fall-78 18s -11s linear infinite}@keyframes fall-78{45.699%{transform:translate(101.8837vw,45.699vh) scale(.0325)}to{transform:translate(98.7516vw,100vh) scale(.0325)}}.snow:nth-child(79){opacity:1.9292;transform:translate(55.0295vw,-10px) scale(.4822);animation:fall-79 21s -13s linear infinite}@keyframes fall-79{57.123%{transform:translate(51.2071vw,57.123vh) scale(.4822)}to{transform:translate(53.1183vw,100vh) scale(.4822)}}.snow:nth-child(80){opacity:1.7156;transform:translate(81.001vw,-10px) scale(.5896);animation:fall-80 23s -5s linear infinite}@keyframes fall-80{42.708%{transform:translate(79.9847vw,42.708vh) scale(.5896)}to{transform:translate(80.49285vw,100vh) scale(.5896)}}.snow:nth-child(81){opacity:.726;transform:translate(24.068vw,-10px) scale(.1275);animation:fall-81 24s -3s linear infinite}@keyframes fall-81{67.654%{transform:translate(28.3752vw,67.654vh) scale(.1275)}to{transform:translate(26.2216vw,100vh) scale(.1275)}}.snow:nth-child(82){opacity:1.1646;transform:translate(63.9669vw,-10px) scale(.6407);animation:fall-82 25s -22s linear infinite}@keyframes fall-82{57.497%{transform:translate(67.9602vw,57.497vh) scale(.6407)}to{transform:translate(65.96355vw,100vh) scale(.6407)}}.snow:nth-child(83){opacity:.9864;transform:translate(15.0343vw,-10px) scale(.2603);animation:fall-83 18s -10s linear infinite}@keyframes fall-83{53.305%{transform:translate(14.9927vw,53.305vh) scale(.2603)}to{transform:translate(15.0135vw,100vh) scale(.2603)}}.snow:nth-child(84){opacity:1.3436;transform:translate(16.5139vw,-10px) scale(.6645);animation:fall-84 12s -4s linear infinite}@keyframes fall-84{71.016%{transform:translate(13.7185vw,71.016vh) scale(.6645)}to{transform:translate(15.1162vw,100vh) scale(.6645)}}.snow:nth-child(85){opacity:1.5082;transform:translate(47.4232vw,-10px) scale(1);animation:fall-85 28s -9s linear infinite}@keyframes fall-85{46.077%{transform:translate(52.3955vw,46.077vh) scale(1)}to{transform:translate(49.90935vw,100vh) scale(1)}}.snow:nth-child(86){opacity:1.0116;transform:translate(34.297vw,-10px) scale(.3478);animation:fall-86 27s -5s linear infinite}@keyframes fall-86{60.197%{transform:translate(42.4404vw,60.197vh) scale(.3478)}to{transform:translate(38.3687vw,100vh) scale(.3478)}}.snow:nth-child(87){opacity:1.7718;transform:translate(8.6385vw,-10px) scale(.6472);animation:fall-87 26s -3s linear infinite}@keyframes fall-87{67.773%{transform:translate(15.7843vw,67.773vh) scale(.6472)}to{transform:translate(12.2114vw,100vh) scale(.6472)}}.snow:nth-child(88){opacity:1.9636;transform:translate(61.5034vw,-10px) scale(.1807);animation:fall-88 16s -16s linear infinite}@keyframes fall-88{44.93%{transform:translate(54.463vw,44.93vh) scale(.1807)}to{transform:translate(57.9832vw,100vh) scale(.1807)}}.snow:nth-child(89){opacity:.0846;transform:translate(7.2881vw,-10px) scale(.246);animation:fall-89 14s -13s linear infinite}@keyframes fall-89{50.331%{transform:translate(13.5424vw,50.331vh) scale(.246)}to{transform:translate(10.41525vw,100vh) scale(.246)}}.snow:nth-child(90){opacity:.0088;transform:translate(89.651vw,-10px) scale(.9686);animation:fall-90 30s -15s linear infinite}@keyframes fall-90{49.789%{transform:translate(98.0216vw,49.789vh) scale(.9686)}to{transform:translate(93.8363vw,100vh) scale(.9686)}}.snow:nth-child(91){opacity:1.9288;transform:translate(4.773vw,-10px) scale(.3159);animation:fall-91 19s -19s linear infinite}@keyframes fall-91{62.701%{transform:translate(2.7348vw,62.701vh) scale(.3159)}to{transform:translate(3.7539vw,100vh) scale(.3159)}}.snow:nth-child(92){opacity:.514;transform:translate(40.0888vw,-10px) scale(.3499);animation:fall-92 12s -7s linear infinite}@keyframes fall-92{58.441%{transform:translate(36.239vw,58.441vh) scale(.3499)}to{transform:translate(38.1639vw,100vh) scale(.3499)}}.snow:nth-child(93){opacity:1.6098;transform:translate(31.8664vw,-10px) scale(.388);animation:fall-93 10s -8s linear infinite}@keyframes fall-93{74.781%{transform:translate(30.4785vw,74.781vh) scale(.388)}to{transform:translate(31.17245vw,100vh) scale(.388)}}.snow:nth-child(94){opacity:1.7792;transform:translate(74.3081vw,-10px) scale(.3731);animation:fall-94 28s -14s linear infinite}@keyframes fall-94{71.476%{transform:translate(80.3195vw,71.476vh) scale(.3731)}to{transform:translate(77.3138vw,100vh) scale(.3731)}}.snow:nth-child(95){opacity:1.1014;transform:translate(83.6885vw,-10px) scale(.3634);animation:fall-95 16s -21s linear infinite}@keyframes fall-95{52.348%{transform:translate(74.3296vw,52.348vh) scale(.3634)}to{transform:translate(79.00905vw,100vh) scale(.3634)}}.snow:nth-child(96){opacity:1.4122;transform:translate(81.8355vw,-10px) scale(.5702);animation:fall-96 26s -23s linear infinite}@keyframes fall-96{35.961%{transform:translate(80.1635vw,35.961vh) scale(.5702)}to{transform:translate(80.9995vw,100vh) scale(.5702)}}.snow:nth-child(97){opacity:.8132;transform:translate(69.5238vw,-10px) scale(.5093);animation:fall-97 20s -28s linear infinite}@keyframes fall-97{77.115%{transform:translate(65.6784vw,77.115vh) scale(.5093)}to{transform:translate(67.6011vw,100vh) scale(.5093)}}.snow:nth-child(98){opacity:.6276;transform:translate(75.6689vw,-10px) scale(.9419);animation:fall-98 29s -2s linear infinite}@keyframes fall-98{66.89%{transform:translate(69.8631vw,66.89vh) scale(.9419)}to{transform:translate(72.766vw,100vh) scale(.9419)}}.snow:nth-child(99){opacity:1.0552;transform:translate(35.0607vw,-10px) scale(.2435);animation:fall-99 12s -13s linear infinite}@keyframes fall-99{47.914%{transform:translate(25.1517vw,47.914vh) scale(.2435)}to{transform:translate(30.1062vw,100vh) scale(.2435)}}.snow:nth-child(100){opacity:.8144;transform:translate(3.3347vw,-10px) scale(.9377);animation:fall-100 25s -2s linear infinite}@keyframes fall-100{76.44%{transform:translate(6.5892vw,76.44vh) scale(.9377)}to{transform:translate(4.96195vw,100vh) scale(.9377)}}.snow:nth-child(101){opacity:1.1808;transform:translate(14.8006vw,-10px) scale(.8707);animation:fall-101 19s -25s linear infinite}@keyframes fall-101{63.238%{transform:translate(12.8069vw,63.238vh) scale(.8707)}to{transform:translate(13.80375vw,100vh) scale(.8707)}}.snow:nth-child(102){opacity:.9322;transform:translate(86.9308vw,-10px) scale(.8158);animation:fall-102 15s -5s linear infinite}@keyframes fall-102{69.62%{transform:translate(81.7661vw,69.62vh) scale(.8158)}to{transform:translate(84.34845vw,100vh) scale(.8158)}}.snow:nth-child(103){opacity:1.2812;transform:translate(43.3082vw,-10px) scale(.3594);animation:fall-103 22s -16s linear infinite}@keyframes fall-103{48.543%{transform:translate(45.8438vw,48.543vh) scale(.3594)}to{transform:translate(44.576vw,100vh) scale(.3594)}}.snow:nth-child(104){opacity:.116;transform:translate(64.9707vw,-10px) scale(.654);animation:fall-104 11s -16s linear infinite}@keyframes fall-104{66.306%{transform:translate(55.0408vw,66.306vh) scale(.654)}to{transform:translate(60.00575vw,100vh) scale(.654)}}.snow:nth-child(105){opacity:.0546;transform:translate(39.4155vw,-10px) scale(.6033);animation:fall-105 10s -5s linear infinite}@keyframes fall-105{66.298%{transform:translate(34.8924vw,66.298vh) scale(.6033)}to{transform:translate(37.15395vw,100vh) scale(.6033)}}.snow:nth-child(106){opacity:1.9522;transform:translate(84.5256vw,-10px) scale(.0575);animation:fall-106 28s -8s linear infinite}@keyframes fall-106{59.063%{transform:translate(85.3105vw,59.063vh) scale(.0575)}to{transform:translate(84.91805vw,100vh) scale(.0575)}}.snow:nth-child(107){opacity:1.1774;transform:translate(73.1783vw,-10px) scale(.0889);animation:fall-107 30s -28s linear infinite}@keyframes fall-107{61.481%{transform:translate(77.4631vw,61.481vh) scale(.0889)}to{transform:translate(75.3207vw,100vh) scale(.0889)}}.snow:nth-child(108){opacity:.1672;transform:translate(95.8744vw,-10px) scale(.4306);animation:fall-108 15s -2s linear infinite}@keyframes fall-108{38.798%{transform:translate(105.0027vw,38.798vh) scale(.4306)}to{transform:translate(100.43855vw,100vh) scale(.4306)}}.snow:nth-child(109){opacity:1.9004;transform:translate(43.904vw,-10px) scale(.6459);animation:fall-109 27s -30s linear infinite}@keyframes fall-109{35.371%{transform:translate(49.5351vw,35.371vh) scale(.6459)}to{transform:translate(46.71955vw,100vh) scale(.6459)}}.snow:nth-child(110){opacity:.4606;transform:translate(83.3093vw,-10px) scale(.4792);animation:fall-110 11s -13s linear infinite}@keyframes fall-110{64.337%{transform:translate(73.6624vw,64.337vh) scale(.4792)}to{transform:translate(78.48585vw,100vh) scale(.4792)}}.snow:nth-child(111){opacity:.21;transform:translate(50.2049vw,-10px) scale(.1538);animation:fall-111 27s -21s linear infinite}@keyframes fall-111{33.496%{transform:translate(43.9531vw,33.496vh) scale(.1538)}to{transform:translate(47.079vw,100vh) scale(.1538)}}.snow:nth-child(112){opacity:1.7346;transform:translate(80.6928vw,-10px) scale(.5085);animation:fall-112 28s -23s linear infinite}@keyframes fall-112{56.102%{transform:translate(76.2215vw,56.102vh) scale(.5085)}to{transform:translate(78.45715vw,100vh) scale(.5085)}}.snow:nth-child(113){opacity:.7518;transform:translate(50.6304vw,-10px) scale(.3771);animation:fall-113 21s -22s linear infinite}@keyframes fall-113{70.162%{transform:translate(54.3208vw,70.162vh) scale(.3771)}to{transform:translate(52.4756vw,100vh) scale(.3771)}}.snow:nth-child(114){opacity:1.9528;transform:translate(18.4589vw,-10px) scale(.2945);animation:fall-114 18s -19s linear infinite}@keyframes fall-114{67.242%{transform:translate(9.6478vw,67.242vh) scale(.2945)}to{transform:translate(14.05335vw,100vh) scale(.2945)}}.snow:nth-child(115){opacity:1.3052;transform:translate(50.1841vw,-10px) scale(.0699);animation:fall-115 22s -8s linear infinite}@keyframes fall-115{31.209%{transform:translate(44.3864vw,31.209vh) scale(.0699)}to{transform:translate(47.28525vw,100vh) scale(.0699)}}.snow:nth-child(116){opacity:.3656;transform:translate(36.0657vw,-10px) scale(.9124);animation:fall-116 23s -26s linear infinite}@keyframes fall-116{76.329%{transform:translate(32.9929vw,76.329vh) scale(.9124)}to{transform:translate(34.5293vw,100vh) scale(.9124)}}.snow:nth-child(117){opacity:.7412;transform:translate(35.9591vw,-10px) scale(.1298);animation:fall-117 24s -27s linear infinite}@keyframes fall-117{75.872%{transform:translate(32.2452vw,75.872vh) scale(.1298)}to{transform:translate(34.10215vw,100vh) scale(.1298)}}.snow:nth-child(118){opacity:.8916;transform:translate(73.3113vw,-10px) scale(.3643);animation:fall-118 26s -25s linear infinite}@keyframes fall-118{49.841%{transform:translate(82.4242vw,49.841vh) scale(.3643)}to{transform:translate(77.86775vw,100vh) scale(.3643)}}.snow:nth-child(119){opacity:1.0058;transform:translate(29.8398vw,-10px) scale(.1609);animation:fall-119 26s -5s linear infinite}@keyframes fall-119{45.353%{transform:translate(30.7962vw,45.353vh) scale(.1609)}to{transform:translate(30.318vw,100vh) scale(.1609)}}.snow:nth-child(120){opacity:.133;transform:translate(67.0792vw,-10px) scale(.6602);animation:fall-120 30s -17s linear infinite}@keyframes fall-120{60.38%{transform:translate(74.6664vw,60.38vh) scale(.6602)}to{transform:translate(70.8728vw,100vh) scale(.6602)}}.snow:nth-child(121){opacity:1.016;transform:translate(30.7612vw,-10px) scale(.4698);animation:fall-121 23s -22s linear infinite}@keyframes fall-121{78.633%{transform:translate(38.4849vw,78.633vh) scale(.4698)}to{transform:translate(34.62305vw,100vh) scale(.4698)}}.snow:nth-child(122){opacity:1.5692;transform:translate(55.4663vw,-10px) scale(.0445);animation:fall-122 27s -18s linear infinite}@keyframes fall-122{70.77%{transform:translate(53.904vw,70.77vh) scale(.0445)}to{transform:translate(54.68515vw,100vh) scale(.0445)}}.snow:nth-child(123){opacity:.0468;transform:translate(19.4253vw,-10px) scale(.3842);animation:fall-123 16s -21s linear infinite}@keyframes fall-123{36.322%{transform:translate(26.7029vw,36.322vh) scale(.3842)}to{transform:translate(23.0641vw,100vh) scale(.3842)}}.snow:nth-child(124){opacity:.8762;transform:translate(68.3036vw,-10px) scale(.7089);animation:fall-124 19s -12s linear infinite}@keyframes fall-124{42.72%{transform:translate(69.8925vw,42.72vh) scale(.7089)}to{transform:translate(69.09805vw,100vh) scale(.7089)}}.snow:nth-child(125){opacity:.2868;transform:translate(80.0478vw,-10px) scale(.3682);animation:fall-125 23s -15s linear infinite}@keyframes fall-125{79.733%{transform:translate(84.6282vw,79.733vh) scale(.3682)}to{transform:translate(82.338vw,100vh) scale(.3682)}}.snow:nth-child(126){opacity:.6284;transform:translate(98.4631vw,-10px) scale(.8942);animation:fall-126 19s -28s linear infinite}@keyframes fall-126{77.67%{transform:translate(105.6004vw,77.67vh) scale(.8942)}to{transform:translate(102.03175vw,100vh) scale(.8942)}}.snow:nth-child(127){opacity:1.43;transform:translate(58.9409vw,-10px) scale(.353);animation:fall-127 13s -21s linear infinite}@keyframes fall-127{61.003%{transform:translate(62.237vw,61.003vh) scale(.353)}to{transform:translate(60.58895vw,100vh) scale(.353)}}.snow:nth-child(128){opacity:1.0898;transform:translate(79.1765vw,-10px) scale(.8458);animation:fall-128 18s -26s linear infinite}@keyframes fall-128{66.638%{transform:translate(74.6525vw,66.638vh) scale(.8458)}to{transform:translate(76.9145vw,100vh) scale(.8458)}}.snow:nth-child(129){opacity:1.319;transform:translate(55.5889vw,-10px) scale(.4109);animation:fall-129 25s -11s linear infinite}@keyframes fall-129{34.108%{transform:translate(55.608vw,34.108vh) scale(.4109)}to{transform:translate(55.59845vw,100vh) scale(.4109)}}.snow:nth-child(130){opacity:.7728;transform:translate(86.1121vw,-10px) scale(.4319);animation:fall-130 17s -27s linear infinite}@keyframes fall-130{54.667%{transform:translate(94.774vw,54.667vh) scale(.4319)}to{transform:translate(90.44305vw,100vh) scale(.4319)}}.snow:nth-child(131){opacity:1.8808;transform:translate(46.4254vw,-10px) scale(.1845);animation:fall-131 12s -12s linear infinite}@keyframes fall-131{62.737%{transform:translate(40.7132vw,62.737vh) scale(.1845)}to{transform:translate(43.5693vw,100vh) scale(.1845)}}.snow:nth-child(132){opacity:.63;transform:translate(98.9038vw,-10px) scale(.5454);animation:fall-132 25s -1s linear infinite}@keyframes fall-132{54.308%{transform:translate(91.9118vw,54.308vh) scale(.5454)}to{transform:translate(95.4078vw,100vh) scale(.5454)}}.snow:nth-child(133){opacity:.4422;transform:translate(67.6036vw,-10px) scale(.1435);animation:fall-133 25s -21s linear infinite}@keyframes fall-133{77.893%{transform:translate(73.9688vw,77.893vh) scale(.1435)}to{transform:translate(70.7862vw,100vh) scale(.1435)}}.snow:nth-child(134){opacity:.9394;transform:translate(49.9829vw,-10px) scale(.231);animation:fall-134 25s -9s linear infinite}@keyframes fall-134{47.945%{transform:translate(56.2552vw,47.945vh) scale(.231)}to{transform:translate(53.11905vw,100vh) scale(.231)}}.snow:nth-child(135){opacity:.5396;transform:translate(6.7744vw,-10px) scale(.3504);animation:fall-135 23s -19s linear infinite}@keyframes fall-135{32.097%{transform:translate(4.1284vw,32.097vh) scale(.3504)}to{transform:translate(5.4514vw,100vh) scale(.3504)}}.snow:nth-child(136){opacity:.9284;transform:translate(99.0956vw,-10px) scale(.3099);animation:fall-136 15s -14s linear infinite}@keyframes fall-136{51.242%{transform:translate(106.5258vw,51.242vh) scale(.3099)}to{transform:translate(102.8107vw,100vh) scale(.3099)}}.snow:nth-child(137){opacity:1.8464;transform:translate(83.3382vw,-10px) scale(.8134);animation:fall-137 26s -25s linear infinite}@keyframes fall-137{51.44%{transform:translate(91.5594vw,51.44vh) scale(.8134)}to{transform:translate(87.4488vw,100vh) scale(.8134)}}.snow:nth-child(138){opacity:.0784;transform:translate(53.4267vw,-10px) scale(.0635);animation:fall-138 21s -6s linear infinite}@keyframes fall-138{59.849%{transform:translate(51.6819vw,59.849vh) scale(.0635)}to{transform:translate(52.5543vw,100vh) scale(.0635)}}.snow:nth-child(139){opacity:1.6328;transform:translate(53.4069vw,-10px) scale(.9617);animation:fall-139 14s -19s linear infinite}@keyframes fall-139{76.05%{transform:translate(56.879vw,76.05vh) scale(.9617)}to{transform:translate(55.14295vw,100vh) scale(.9617)}}.snow:nth-child(140){opacity:.1788;transform:translate(60.2504vw,-10px) scale(.5471);animation:fall-140 20s -4s linear infinite}@keyframes fall-140{68.937%{transform:translate(57.8515vw,68.937vh) scale(.5471)}to{transform:translate(59.05095vw,100vh) scale(.5471)}}.snow:nth-child(141){opacity:.3336;transform:translate(99.413vw,-10px) scale(.9107);animation:fall-141 26s -4s linear infinite}@keyframes fall-141{51.924%{transform:translate(104.3853vw,51.924vh) scale(.9107)}to{transform:translate(101.89915vw,100vh) scale(.9107)}}.snow:nth-child(142){opacity:1.2262;transform:translate(46.2355vw,-10px) scale(.1177);animation:fall-142 16s -24s linear infinite}@keyframes fall-142{55.266%{transform:translate(44.2918vw,55.266vh) scale(.1177)}to{transform:translate(45.26365vw,100vh) scale(.1177)}}.snow:nth-child(143){opacity:1.6042;transform:translate(1.0363vw,-10px) scale(.1906);animation:fall-143 28s -22s linear infinite}@keyframes fall-143{47.326%{transform:translate(1.0318vw,47.326vh) scale(.1906)}to{transform:translate(1.03405vw,100vh) scale(.1906)}}.snow:nth-child(144){opacity:.993;transform:translate(75.402vw,-10px) scale(.5394);animation:fall-144 24s -11s linear infinite}@keyframes fall-144{56.313%{transform:translate(78.4955vw,56.313vh) scale(.5394)}to{transform:translate(76.94875vw,100vh) scale(.5394)}}.snow:nth-child(145){opacity:1.0584;transform:translate(85.8175vw,-10px) scale(.3064);animation:fall-145 15s -6s linear infinite}@keyframes fall-145{65.731%{transform:translate(79.2481vw,65.731vh) scale(.3064)}to{transform:translate(82.5328vw,100vh) scale(.3064)}}.snow:nth-child(146){opacity:1.4026;transform:translate(17.6682vw,-10px) scale(.4081);animation:fall-146 11s -27s linear infinite}@keyframes fall-146{77.866%{transform:translate(18.8803vw,77.866vh) scale(.4081)}to{transform:translate(18.27425vw,100vh) scale(.4081)}}.snow:nth-child(147){opacity:.279;transform:translate(80.6434vw,-10px) scale(.666);animation:fall-147 28s -9s linear infinite}@keyframes fall-147{72.24%{transform:translate(77.5209vw,72.24vh) scale(.666)}to{transform:translate(79.08215vw,100vh) scale(.666)}}.snow:nth-child(148){opacity:.3736;transform:translate(59.1111vw,-10px) scale(.8032);animation:fall-148 13s -21s linear infinite}@keyframes fall-148{40.812%{transform:translate(65.4682vw,40.812vh) scale(.8032)}to{transform:translate(62.28965vw,100vh) scale(.8032)}}.snow:nth-child(149){opacity:1.8672;transform:translate(19.0151vw,-10px) scale(.6978);animation:fall-149 22s -5s linear infinite}@keyframes fall-149{58.497%{transform:translate(15.0444vw,58.497vh) scale(.6978)}to{transform:translate(17.02975vw,100vh) scale(.6978)}}.snow:nth-child(150){opacity:1.359;transform:translate(74.6456vw,-10px) scale(.0678);animation:fall-150 20s -15s linear infinite}@keyframes fall-150{37.882%{transform:translate(80.9973vw,37.882vh) scale(.0678)}to{transform:translate(77.82145vw,100vh) scale(.0678)}}.snow:nth-child(151){opacity:.903;transform:translate(14.7192vw,-10px) scale(.6303);animation:fall-151 10s -6s linear infinite}@keyframes fall-151{48.829%{transform:translate(18.8271vw,48.829vh) scale(.6303)}to{transform:translate(16.77315vw,100vh) scale(.6303)}}.snow:nth-child(152){opacity:.5812;transform:translate(77.0897vw,-10px) scale(.6228);animation:fall-152 27s -30s linear infinite}@keyframes fall-152{67.569%{transform:translate(73.8463vw,67.569vh) scale(.6228)}to{transform:translate(75.468vw,100vh) scale(.6228)}}.snow:nth-child(153){opacity:.688;transform:translate(95.1162vw,-10px) scale(.4659);animation:fall-153 19s -4s linear infinite}@keyframes fall-153{64.565%{transform:translate(85.833vw,64.565vh) scale(.4659)}to{transform:translate(90.4746vw,100vh) scale(.4659)}}.snow:nth-child(154){opacity:1.3666;transform:translate(8.0353vw,-10px) scale(.3637);animation:fall-154 25s -6s linear infinite}@keyframes fall-154{79.126%{transform:translate(10.1471vw,79.126vh) scale(.3637)}to{transform:translate(9.0912vw,100vh) scale(.3637)}}.snow:nth-child(155){opacity:1.2362;transform:translate(51.3446vw,-10px) scale(.0075);animation:fall-155 24s -8s linear infinite}@keyframes fall-155{68.101%{transform:translate(49.921vw,68.101vh) scale(.0075)}to{transform:translate(50.6328vw,100vh) scale(.0075)}}.snow:nth-child(156){opacity:.3112;transform:translate(31.1149vw,-10px) scale(.7264);animation:fall-156 29s -7s linear infinite}@keyframes fall-156{71.679%{transform:translate(33.6785vw,71.679vh) scale(.7264)}to{transform:translate(32.3967vw,100vh) scale(.7264)}}.snow:nth-child(157){opacity:1.9032;transform:translate(91.1986vw,-10px) scale(.1521);animation:fall-157 12s -25s linear infinite}@keyframes fall-157{75.795%{transform:translate(82.7282vw,75.795vh) scale(.1521)}to{transform:translate(86.9634vw,100vh) scale(.1521)}}.snow:nth-child(158){opacity:1.1322;transform:translate(89.3644vw,-10px) scale(.374);animation:fall-158 27s -26s linear infinite}@keyframes fall-158{48.619%{transform:translate(81.8842vw,48.619vh) scale(.374)}to{transform:translate(85.6243vw,100vh) scale(.374)}}.snow:nth-child(159){opacity:.827;transform:translate(40.6811vw,-10px) scale(.8843);animation:fall-159 13s -9s linear infinite}@keyframes fall-159{78.478%{transform:translate(40.8261vw,78.478vh) scale(.8843)}to{transform:translate(40.7536vw,100vh) scale(.8843)}}.snow:nth-child(160){opacity:.7528;transform:translate(77.8215vw,-10px) scale(.1981);animation:fall-160 27s -17s linear infinite}@keyframes fall-160{36.733%{transform:translate(82.2205vw,36.733vh) scale(.1981)}to{transform:translate(80.021vw,100vh) scale(.1981)}}.snow:nth-child(161){opacity:1.5294;transform:translate(16.607vw,-10px) scale(.5136);animation:fall-161 13s -4s linear infinite}@keyframes fall-161{33.242%{transform:translate(10.4127vw,33.242vh) scale(.5136)}to{transform:translate(13.50985vw,100vh) scale(.5136)}}.snow:nth-child(162){opacity:.4836;transform:translate(27.1326vw,-10px) scale(.9208);animation:fall-162 16s -19s linear infinite}@keyframes fall-162{63.503%{transform:translate(17.2964vw,63.503vh) scale(.9208)}to{transform:translate(22.2145vw,100vh) scale(.9208)}}.snow:nth-child(163){opacity:.293;transform:translate(33.0672vw,-10px) scale(.2467);animation:fall-163 26s -27s linear infinite}@keyframes fall-163{62.159%{transform:translate(29.4927vw,62.159vh) scale(.2467)}to{transform:translate(31.27995vw,100vh) scale(.2467)}}.snow:nth-child(164){opacity:.509;transform:translate(40.1168vw,-10px) scale(.6554);animation:fall-164 15s -11s linear infinite}@keyframes fall-164{53.133%{transform:translate(47.1627vw,53.133vh) scale(.6554)}to{transform:translate(43.63975vw,100vh) scale(.6554)}}.snow:nth-child(165){opacity:.368;transform:translate(86.0152vw,-10px) scale(.4564);animation:fall-165 12s -21s linear infinite}@keyframes fall-165{47.407%{transform:translate(77.1432vw,47.407vh) scale(.4564)}to{transform:translate(81.5792vw,100vh) scale(.4564)}}.snow:nth-child(166){opacity:1.1028;transform:translate(49.8653vw,-10px) scale(.2914);animation:fall-166 15s -17s linear infinite}@keyframes fall-166{36.909%{transform:translate(49.1299vw,36.909vh) scale(.2914)}to{transform:translate(49.4976vw,100vh) scale(.2914)}}.snow:nth-child(167){opacity:1.4704;transform:translate(49.178vw,-10px) scale(.663);animation:fall-167 14s -6s linear infinite}@keyframes fall-167{72.88%{transform:translate(45.0466vw,72.88vh) scale(.663)}to{transform:translate(47.1123vw,100vh) scale(.663)}}.snow:nth-child(168){opacity:1.6796;transform:translate(38.9583vw,-10px) scale(.951);animation:fall-168 13s -12s linear infinite}@keyframes fall-168{35.27%{transform:translate(36.0274vw,35.27vh) scale(.951)}to{transform:translate(37.49285vw,100vh) scale(.951)}}.snow:nth-child(169){opacity:.5476;transform:translate(22.7753vw,-10px) scale(.9492);animation:fall-169 18s -3s linear infinite}@keyframes fall-169{40.441%{transform:translate(14.5477vw,40.441vh) scale(.9492)}to{transform:translate(18.6615vw,100vh) scale(.9492)}}.snow:nth-child(170){opacity:.576;transform:translate(51.9754vw,-10px) scale(.2038);animation:fall-170 11s -2s linear infinite}@keyframes fall-170{47.857%{transform:translate(43.0013vw,47.857vh) scale(.2038)}to{transform:translate(47.48835vw,100vh) scale(.2038)}}.snow:nth-child(171){opacity:1.237;transform:translate(2.5187vw,-10px) scale(.8953);animation:fall-171 20s -5s linear infinite}@keyframes fall-171{59.02%{transform:translate(10.5082vw,59.02vh) scale(.8953)}to{transform:translate(6.51345vw,100vh) scale(.8953)}}.snow:nth-child(172){opacity:1.384;transform:translate(96.3512vw,-10px) scale(.5096);animation:fall-172 28s -30s linear infinite}@keyframes fall-172{30.597%{transform:translate(94.3306vw,30.597vh) scale(.5096)}to{transform:translate(95.3409vw,100vh) scale(.5096)}}.snow:nth-child(173){opacity:1.8362;transform:translate(79.0606vw,-10px) scale(.9603);animation:fall-173 18s -5s linear infinite}@keyframes fall-173{78.409%{transform:translate(72.3543vw,78.409vh) scale(.9603)}to{transform:translate(75.70745vw,100vh) scale(.9603)}}.snow:nth-child(174){opacity:1.8298;transform:translate(7.6997vw,-10px) scale(.9854);animation:fall-174 30s -11s linear infinite}@keyframes fall-174{60.546%{transform:translate(10.8963vw,60.546vh) scale(.9854)}to{transform:translate(9.298vw,100vh) scale(.9854)}}.snow:nth-child(175){opacity:.2038;transform:translate(53.2449vw,-10px) scale(.6317);animation:fall-175 17s -18s linear infinite}@keyframes fall-175{76.078%{transform:translate(55.9569vw,76.078vh) scale(.6317)}to{transform:translate(54.6009vw,100vh) scale(.6317)}}.snow:nth-child(176){opacity:1.1666;transform:translate(68.1242vw,-10px) scale(.9321);animation:fall-176 12s -4s linear infinite}@keyframes fall-176{54.402%{transform:translate(59.4555vw,54.402vh) scale(.9321)}to{transform:translate(63.78985vw,100vh) scale(.9321)}}.snow:nth-child(177){opacity:1.0288;transform:translate(90.5059vw,-10px) scale(.4986);animation:fall-177 12s -16s linear infinite}@keyframes fall-177{34.582%{transform:translate(86.8722vw,34.582vh) scale(.4986)}to{transform:translate(88.68905vw,100vh) scale(.4986)}}.snow:nth-child(178){opacity:1.3532;transform:translate(92.5499vw,-10px) scale(.8706);animation:fall-178 15s -5s linear infinite}@keyframes fall-178{67.598%{transform:translate(90.7559vw,67.598vh) scale(.8706)}to{transform:translate(91.6529vw,100vh) scale(.8706)}}.snow:nth-child(179){opacity:.5512;transform:translate(16.2994vw,-10px) scale(.3384);animation:fall-179 28s -30s linear infinite}@keyframes fall-179{74.719%{transform:translate(21.1179vw,74.719vh) scale(.3384)}to{transform:translate(18.70865vw,100vh) scale(.3384)}}.snow:nth-child(180){opacity:.8992;transform:translate(60.6062vw,-10px) scale(.3265);animation:fall-180 15s -28s linear infinite}@keyframes fall-180{48.305%{transform:translate(65.0087vw,48.305vh) scale(.3265)}to{transform:translate(62.80745vw,100vh) scale(.3265)}}.snow:nth-child(181){opacity:.5256;transform:translate(69.522vw,-10px) scale(.86);animation:fall-181 14s -1s linear infinite}@keyframes fall-181{36.527%{transform:translate(67.6525vw,36.527vh) scale(.86)}to{transform:translate(68.58725vw,100vh) scale(.86)}}.snow:nth-child(182){opacity:.7932;transform:translate(88.1828vw,-10px) scale(.7364);animation:fall-182 17s -13s linear infinite}@keyframes fall-182{77.495%{transform:translate(96.4967vw,77.495vh) scale(.7364)}to{transform:translate(92.33975vw,100vh) scale(.7364)}}.snow:nth-child(183){opacity:.3988;transform:translate(22.409vw,-10px) scale(.4972);animation:fall-183 28s -9s linear infinite}@keyframes fall-183{41.408%{transform:translate(22.7115vw,41.408vh) scale(.4972)}to{transform:translate(22.56025vw,100vh) scale(.4972)}}.snow:nth-child(184){opacity:1.087;transform:translate(70.7808vw,-10px) scale(.4353);animation:fall-184 13s -26s linear infinite}@keyframes fall-184{62.184%{transform:translate(78.7399vw,62.184vh) scale(.4353)}to{transform:translate(74.76035vw,100vh) scale(.4353)}}.snow:nth-child(185){opacity:1.68;transform:translate(22.3775vw,-10px) scale(.5805);animation:fall-185 19s -1s linear infinite}@keyframes fall-185{43.634%{transform:translate(17.7261vw,43.634vh) scale(.5805)}to{transform:translate(20.0518vw,100vh) scale(.5805)}}.snow:nth-child(186){opacity:1.8508;transform:translate(50.8462vw,-10px) scale(.5798);animation:fall-186 15s -11s linear infinite}@keyframes fall-186{54.512%{transform:translate(51.1325vw,54.512vh) scale(.5798)}to{transform:translate(50.98935vw,100vh) scale(.5798)}}.snow:nth-child(187){opacity:.6362;transform:translate(99.1558vw,-10px) scale(.1577);animation:fall-187 11s -29s linear infinite}@keyframes fall-187{30.598%{transform:translate(101.8993vw,30.598vh) scale(.1577)}to{transform:translate(100.52755vw,100vh) scale(.1577)}}.snow:nth-child(188){opacity:1.1042;transform:translate(95.4531vw,-10px) scale(.7869);animation:fall-188 29s -14s linear infinite}@keyframes fall-188{41.807%{transform:translate(105.3304vw,41.807vh) scale(.7869)}to{transform:translate(100.39175vw,100vh) scale(.7869)}}.snow:nth-child(189){opacity:1.7614;transform:translate(66.8265vw,-10px) scale(.7936);animation:fall-189 29s -25s linear infinite}@keyframes fall-189{76.28%{transform:translate(66.2006vw,76.28vh) scale(.7936)}to{transform:translate(66.51355vw,100vh) scale(.7936)}}.snow:nth-child(190){opacity:.8604;transform:translate(39.6491vw,-10px) scale(.906);animation:fall-190 19s -19s linear infinite}@keyframes fall-190{47.168%{transform:translate(39.0054vw,47.168vh) scale(.906)}to{transform:translate(39.32725vw,100vh) scale(.906)}}.snow:nth-child(191){opacity:.3702;transform:translate(14.6354vw,-10px) scale(.1151);animation:fall-191 11s -27s linear infinite}@keyframes fall-191{59.492%{transform:translate(13.9771vw,59.492vh) scale(.1151)}to{transform:translate(14.30625vw,100vh) scale(.1151)}}.snow:nth-child(192){opacity:1.3946;transform:translate(31.8003vw,-10px) scale(.1778);animation:fall-192 15s -18s linear infinite}@keyframes fall-192{76.683%{transform:translate(26.693vw,76.683vh) scale(.1778)}to{transform:translate(29.24665vw,100vh) scale(.1778)}}.snow:nth-child(193){opacity:1.3044;transform:translate(28.93vw,-10px) scale(.8252);animation:fall-193 12s -8s linear infinite}@keyframes fall-193{54.796%{transform:translate(19.1917vw,54.796vh) scale(.8252)}to{transform:translate(24.06085vw,100vh) scale(.8252)}}.snow:nth-child(194){opacity:.9586;transform:translate(36.3671vw,-10px) scale(.0367);animation:fall-194 17s -19s linear infinite}@keyframes fall-194{33.686%{transform:translate(33.9295vw,33.686vh) scale(.0367)}to{transform:translate(35.1483vw,100vh) scale(.0367)}}.snow:nth-child(195){opacity:.8492;transform:translate(44.3772vw,-10px) scale(.2162);animation:fall-195 26s -25s linear infinite}@keyframes fall-195{54.986%{transform:translate(54.3548vw,54.986vh) scale(.2162)}to{transform:translate(49.366vw,100vh) scale(.2162)}}.snow:nth-child(196){opacity:1.2266;transform:translate(61.2262vw,-10px) scale(.9537);animation:fall-196 13s -4s linear infinite}@keyframes fall-196{30.871%{transform:translate(59.3334vw,30.871vh) scale(.9537)}to{transform:translate(60.2798vw,100vh) scale(.9537)}}.snow:nth-child(197){opacity:1.0794;transform:translate(89.76vw,-10px) scale(.8463);animation:fall-197 12s -17s linear infinite}@keyframes fall-197{37.42%{transform:translate(88.5314vw,37.42vh) scale(.8463)}to{transform:translate(89.1457vw,100vh) scale(.8463)}}.snow:nth-child(198){opacity:1.5054;transform:translate(73.1062vw,-10px) scale(.4595);animation:fall-198 12s -15s linear infinite}@keyframes fall-198{75.581%{transform:translate(72.3902vw,75.581vh) scale(.4595)}to{transform:translate(72.7482vw,100vh) scale(.4595)}}.snow:nth-child(199){opacity:1.8056;transform:translate(54.5938vw,-10px) scale(.2065);animation:fall-199 21s -3s linear infinite}@keyframes fall-199{72.169%{transform:translate(59.1811vw,72.169vh) scale(.2065)}to{transform:translate(56.88745vw,100vh) scale(.2065)}}.snow:nth-child(200){opacity:1.199;transform:translate(54.3096vw,-10px) scale(.0562);animation:fall-200 29s -19s linear infinite}@keyframes fall-200{75.049%{transform:translate(60.2539vw,75.049vh) scale(.0562)}to{transform:translate(57.28175vw,100vh) scale(.0562)}}.snow:nth-child(201){opacity:1.4314;transform:translate(97.9862vw,-10px) scale(.6986);animation:fall-201 11s -13s linear infinite}@keyframes fall-201{55.973%{transform:translate(107.9724vw,55.973vh) scale(.6986)}to{transform:translate(102.9793vw,100vh) scale(.6986)}}.snow:nth-child(202){opacity:.6038;transform:translate(88.985vw,-10px) scale(.7082);animation:fall-202 20s -1s linear infinite}@keyframes fall-202{35.63%{transform:translate(92.0233vw,35.63vh) scale(.7082)}to{transform:translate(90.50415vw,100vh) scale(.7082)}}.snow:nth-child(203){opacity:1.5892;transform:translate(86.6987vw,-10px) scale(.1819);animation:fall-203 10s -5s linear infinite}@keyframes fall-203{78.123%{transform:translate(88.0677vw,78.123vh) scale(.1819)}to{transform:translate(87.3832vw,100vh) scale(.1819)}}.snow:nth-child(204){opacity:1.1468;transform:translate(83.8222vw,-10px) scale(.3658);animation:fall-204 30s -13s linear infinite}@keyframes fall-204{65.914%{transform:translate(78.4998vw,65.914vh) scale(.3658)}to{transform:translate(81.161vw,100vh) scale(.3658)}}.snow:nth-child(205){opacity:.4634;transform:translate(46.5295vw,-10px) scale(.392);animation:fall-205 22s -23s linear infinite}@keyframes fall-205{77.162%{transform:translate(50.3559vw,77.162vh) scale(.392)}to{transform:translate(48.4427vw,100vh) scale(.392)}}.snow:nth-child(206){opacity:.2688;transform:translate(36.3019vw,-10px) scale(.955);animation:fall-206 14s -25s linear infinite}@keyframes fall-206{48.18%{transform:translate(33.1791vw,48.18vh) scale(.955)}to{transform:translate(34.7405vw,100vh) scale(.955)}}.snow:nth-child(207){opacity:.6248;transform:translate(69.1324vw,-10px) scale(.8101);animation:fall-207 28s -17s linear infinite}@keyframes fall-207{74.572%{transform:translate(69.7523vw,74.572vh) scale(.8101)}to{transform:translate(69.44235vw,100vh) scale(.8101)}}.snow:nth-child(208){opacity:.7054;transform:translate(41.0532vw,-10px) scale(.1065);animation:fall-208 22s -6s linear infinite}@keyframes fall-208{74.633%{transform:translate(48.45vw,74.633vh) scale(.1065)}to{transform:translate(44.7516vw,100vh) scale(.1065)}}.snow:nth-child(209){opacity:1.926;transform:translate(55.5195vw,-10px) scale(.0259);animation:fall-209 14s -27s linear infinite}@keyframes fall-209{31.805%{transform:translate(60.2278vw,31.805vh) scale(.0259)}to{transform:translate(57.87365vw,100vh) scale(.0259)}}.snow:nth-child(210){opacity:.778;transform:translate(54.2802vw,-10px) scale(.3563);animation:fall-210 20s -23s linear infinite}@keyframes fall-210{77.426%{transform:translate(52.1643vw,77.426vh) scale(.3563)}to{transform:translate(53.22225vw,100vh) scale(.3563)}}.snow:nth-child(211){opacity:1.2116;transform:translate(63.4174vw,-10px) scale(.3444);animation:fall-211 23s -20s linear infinite}@keyframes fall-211{52.391%{transform:translate(63.5192vw,52.391vh) scale(.3444)}to{transform:translate(63.4683vw,100vh) scale(.3444)}}.snow:nth-child(212){opacity:.061;transform:translate(69.7074vw,-10px) scale(.3082);animation:fall-212 11s -25s linear infinite}@keyframes fall-212{57.387%{transform:translate(78.8263vw,57.387vh) scale(.3082)}to{transform:translate(74.26685vw,100vh) scale(.3082)}}.snow:nth-child(213){opacity:1.77;transform:translate(75.3356vw,-10px) scale(.042);animation:fall-213 23s -3s linear infinite}@keyframes fall-213{73.182%{transform:translate(80.7018vw,73.182vh) scale(.042)}to{transform:translate(78.0187vw,100vh) scale(.042)}}.snow:nth-child(214){opacity:.7634;transform:translate(10.2966vw,-10px) scale(.0053);animation:fall-214 13s -20s linear infinite}@keyframes fall-214{45.632%{transform:translate(3.7024vw,45.632vh) scale(.0053)}to{transform:translate(6.9995vw,100vh) scale(.0053)}}.snow:nth-child(215){opacity:.8772;transform:translate(36.7797vw,-10px) scale(.4012);animation:fall-215 21s -13s linear infinite}@keyframes fall-215{62.073%{transform:translate(28.9497vw,62.073vh) scale(.4012)}to{transform:translate(32.8647vw,100vh) scale(.4012)}}.snow:nth-child(216){opacity:1.0614;transform:translate(29.229vw,-10px) scale(.3809);animation:fall-216 20s -14s linear infinite}@keyframes fall-216{43.27%{transform:translate(32.5551vw,43.27vh) scale(.3809)}to{transform:translate(30.89205vw,100vh) scale(.3809)}}.snow:nth-child(217){opacity:.1036;transform:translate(45.4249vw,-10px) scale(.8892);animation:fall-217 18s -8s linear infinite}@keyframes fall-217{67.929%{transform:translate(45.737vw,67.929vh) scale(.8892)}to{transform:translate(45.58095vw,100vh) scale(.8892)}}.snow:nth-child(218){opacity:1.9972;transform:translate(73.5161vw,-10px) scale(.7472);animation:fall-218 19s -4s linear infinite}@keyframes fall-218{58.013%{transform:translate(82.3664vw,58.013vh) scale(.7472)}to{transform:translate(77.94125vw,100vh) scale(.7472)}}.snow:nth-child(219){opacity:.1164;transform:translate(49.3009vw,-10px) scale(.7196);animation:fall-219 30s -18s linear infinite}@keyframes fall-219{61.645%{transform:translate(47.7942vw,61.645vh) scale(.7196)}to{transform:translate(48.54755vw,100vh) scale(.7196)}}.snow:nth-child(220){opacity:1.0618;transform:translate(7.4418vw,-10px) scale(.592);animation:fall-220 20s -6s linear infinite}@keyframes fall-220{63.209%{transform:translate(8.7151vw,63.209vh) scale(.592)}to{transform:translate(8.07845vw,100vh) scale(.592)}}.snow:nth-child(221){opacity:1.629;transform:translate(66.9173vw,-10px) scale(.4486);animation:fall-221 17s -14s linear infinite}@keyframes fall-221{42.607%{transform:translate(76.3124vw,42.607vh) scale(.4486)}to{transform:translate(71.61485vw,100vh) scale(.4486)}}.snow:nth-child(222){opacity:1.3682;transform:translate(20.2868vw,-10px) scale(.2402);animation:fall-222 21s -9s linear infinite}@keyframes fall-222{59.044%{transform:translate(29.6031vw,59.044vh) scale(.2402)}to{transform:translate(24.94495vw,100vh) scale(.2402)}}.snow:nth-child(223){opacity:.361;transform:translate(23.5895vw,-10px) scale(.7048);animation:fall-223 29s -25s linear infinite}@keyframes fall-223{71.277%{transform:translate(30.359vw,71.277vh) scale(.7048)}to{transform:translate(26.97425vw,100vh) scale(.7048)}}.snow:nth-child(224){opacity:1.1814;transform:translate(64.8778vw,-10px) scale(.211);animation:fall-224 16s -15s linear infinite}@keyframes fall-224{48.416%{transform:translate(65.5521vw,48.416vh) scale(.211)}to{transform:translate(65.21495vw,100vh) scale(.211)}}.snow:nth-child(225){opacity:1.865;transform:translate(42.5078vw,-10px) scale(.6947);animation:fall-225 12s -23s linear infinite}@keyframes fall-225{34.887%{transform:translate(32.6352vw,34.887vh) scale(.6947)}to{transform:translate(37.5715vw,100vh) scale(.6947)}}.snow:nth-child(226){opacity:1.1214;transform:translate(29.6572vw,-10px) scale(.5529);animation:fall-226 23s -17s linear infinite}@keyframes fall-226{65.694%{transform:translate(30.2798vw,65.694vh) scale(.5529)}to{transform:translate(29.9685vw,100vh) scale(.5529)}}.snow:nth-child(227){opacity:1.3222;transform:translate(29.6141vw,-10px) scale(.4761);animation:fall-227 22s -5s linear infinite}@keyframes fall-227{59.879%{transform:translate(34.8922vw,59.879vh) scale(.4761)}to{transform:translate(32.25315vw,100vh) scale(.4761)}}.snow:nth-child(228){opacity:1.4702;transform:translate(11.8689vw,-10px) scale(.5769);animation:fall-228 30s -12s linear infinite}@keyframes fall-228{70.936%{transform:translate(20.348vw,70.936vh) scale(.5769)}to{transform:translate(16.10845vw,100vh) scale(.5769)}}.snow:nth-child(229){opacity:.3764;transform:translate(9.2861vw,-10px) scale(.7813);animation:fall-229 28s -24s linear infinite}@keyframes fall-229{33.287%{transform:translate(4.2811vw,33.287vh) scale(.7813)}to{transform:translate(6.7836vw,100vh) scale(.7813)}}.snow:nth-child(230){opacity:.3524;transform:translate(41.8665vw,-10px) scale(.9659);animation:fall-230 24s -11s linear infinite}@keyframes fall-230{48.192%{transform:translate(37.6312vw,48.192vh) scale(.9659)}to{transform:translate(39.74885vw,100vh) scale(.9659)}}.snow:nth-child(231){opacity:1.407;transform:translate(77.6548vw,-10px) scale(.3485);animation:fall-231 16s -8s linear infinite}@keyframes fall-231{38.777%{transform:translate(68.2728vw,38.777vh) scale(.3485)}to{transform:translate(72.9638vw,100vh) scale(.3485)}}.snow:nth-child(232){opacity:.5308;transform:translate(99.5988vw,-10px) scale(.3944);animation:fall-232 30s -2s linear infinite}@keyframes fall-232{62.52%{transform:translate(96.1184vw,62.52vh) scale(.3944)}to{transform:translate(97.8586vw,100vh) scale(.3944)}}.snow:nth-child(233){opacity:1.0998;transform:translate(18.5761vw,-10px) scale(.875);animation:fall-233 28s -9s linear infinite}@keyframes fall-233{68.032%{transform:translate(19.5954vw,68.032vh) scale(.875)}to{transform:translate(19.08575vw,100vh) scale(.875)}}.snow:nth-child(234){opacity:1.678;transform:translate(72.9925vw,-10px) scale(.0289);animation:fall-234 11s -17s linear infinite}@keyframes fall-234{47.398%{transform:translate(74.4707vw,47.398vh) scale(.0289)}to{transform:translate(73.7316vw,100vh) scale(.0289)}}.snow:nth-child(235){opacity:.9502;transform:translate(97.1645vw,-10px) scale(.4513);animation:fall-235 19s -19s linear infinite}@keyframes fall-235{46.591%{transform:translate(99.5453vw,46.591vh) scale(.4513)}to{transform:translate(98.3549vw,100vh) scale(.4513)}}.snow:nth-child(236){opacity:1.4284;transform:translate(87.3193vw,-10px) scale(.3664);animation:fall-236 17s -8s linear infinite}@keyframes fall-236{50.144%{transform:translate(78.6145vw,50.144vh) scale(.3664)}to{transform:translate(82.9669vw,100vh) scale(.3664)}}.snow:nth-child(237){opacity:1.6146;transform:translate(97.3722vw,-10px) scale(.6151);animation:fall-237 19s -4s linear infinite}@keyframes fall-237{40.606%{transform:translate(89.5077vw,40.606vh) scale(.6151)}to{transform:translate(93.43995vw,100vh) scale(.6151)}}.snow:nth-child(238){opacity:1.6022;transform:translate(79.715vw,-10px) scale(.9106);animation:fall-238 21s -12s linear infinite}@keyframes fall-238{66.197%{transform:translate(85.6845vw,66.197vh) scale(.9106)}to{transform:translate(82.69975vw,100vh) scale(.9106)}}.snow:nth-child(239){opacity:.393;transform:translate(18.8382vw,-10px) scale(.1549);animation:fall-239 19s -20s linear infinite}@keyframes fall-239{36.716%{transform:translate(18.2558vw,36.716vh) scale(.1549)}to{transform:translate(18.547vw,100vh) scale(.1549)}}.snow:nth-child(240){opacity:.95;transform:translate(46.988vw,-10px) scale(.18);animation:fall-240 13s -19s linear infinite}@keyframes fall-240{50.766%{transform:translate(42.0788vw,50.766vh) scale(.18)}to{transform:translate(44.5334vw,100vh) scale(.18)}}.snow:nth-child(241){opacity:1.082;transform:translate(53.9649vw,-10px) scale(.0577);animation:fall-241 17s -22s linear infinite}@keyframes fall-241{70.352%{transform:translate(63.2554vw,70.352vh) scale(.0577)}to{transform:translate(58.61015vw,100vh) scale(.0577)}}.snow:nth-child(242){opacity:1.5412;transform:translate(26.4489vw,-10px) scale(.9457);animation:fall-242 17s -11s linear infinite}@keyframes fall-242{40.85%{transform:translate(35.3058vw,40.85vh) scale(.9457)}to{transform:translate(30.87735vw,100vh) scale(.9457)}}.snow:nth-child(243){opacity:.7332;transform:translate(60.1306vw,-10px) scale(.2171);animation:fall-243 26s -5s linear infinite}@keyframes fall-243{43.861%{transform:translate(64.006vw,43.861vh) scale(.2171)}to{transform:translate(62.0683vw,100vh) scale(.2171)}}.snow:nth-child(244){opacity:1.919;transform:translate(15.2367vw,-10px) scale(.1204);animation:fall-244 15s -7s linear infinite}@keyframes fall-244{68.884%{transform:translate(8.5785vw,68.884vh) scale(.1204)}to{transform:translate(11.9076vw,100vh) scale(.1204)}}.snow:nth-child(245){opacity:1.9144;transform:translate(1.9574vw,-10px) scale(.4101);animation:fall-245 27s -16s linear infinite}@keyframes fall-245{58.034%{transform:translate(-6.1332vw,58.034vh) scale(.4101)}to{transform:translate(-2.0879vw,100vh) scale(.4101)}}.snow:nth-child(246){opacity:1.4852;transform:translate(96.9571vw,-10px) scale(.9665);animation:fall-246 17s -17s linear infinite}@keyframes fall-246{56.188%{transform:translate(90.4656vw,56.188vh) scale(.9665)}to{transform:translate(93.71135vw,100vh) scale(.9665)}}.snow:nth-child(247){opacity:.8204;transform:translate(78.455vw,-10px) scale(.2552);animation:fall-247 26s -28s linear infinite}@keyframes fall-247{48.208%{transform:translate(85.4837vw,48.208vh) scale(.2552)}to{transform:translate(81.96935vw,100vh) scale(.2552)}}.snow:nth-child(248){opacity:.2622;transform:translate(54.3777vw,-10px) scale(.4603);animation:fall-248 25s -5s linear infinite}@keyframes fall-248{58.2%{transform:translate(50.066vw,58.2vh) scale(.4603)}to{transform:translate(52.22185vw,100vh) scale(.4603)}}.snow:nth-child(249){opacity:.847;transform:translate(83.5581vw,-10px) scale(.173);animation:fall-249 23s -9s linear infinite}@keyframes fall-249{36.766%{transform:translate(92.1987vw,36.766vh) scale(.173)}to{transform:translate(87.8784vw,100vh) scale(.173)}}.snow:nth-child(250){opacity:.206;transform:translate(71.0039vw,-10px) scale(.2001);animation:fall-250 10s -27s linear infinite}@keyframes fall-250{63.43%{transform:translate(76.9714vw,63.43vh) scale(.2001)}to{transform:translate(73.98765vw,100vh) scale(.2001)}}.snow:nth-child(251){opacity:.4568;transform:translate(4.179vw,-10px) scale(.205);animation:fall-251 26s -13s linear infinite}@keyframes fall-251{34.831%{transform:translate(6.9522vw,34.831vh) scale(.205)}to{transform:translate(5.5656vw,100vh) scale(.205)}}.snow:nth-child(252){opacity:.8448;transform:translate(38.6855vw,-10px) scale(.52);animation:fall-252 28s -29s linear infinite}@keyframes fall-252{57.94%{transform:translate(29.4011vw,57.94vh) scale(.52)}to{transform:translate(34.0433vw,100vh) scale(.52)}}.snow:nth-child(253){opacity:.145;transform:translate(75.058vw,-10px) scale(.1044);animation:fall-253 18s -26s linear infinite}@keyframes fall-253{51.104%{transform:translate(77.1793vw,51.104vh) scale(.1044)}to{transform:translate(76.11865vw,100vh) scale(.1044)}}.snow:nth-child(254){opacity:1.7248;transform:translate(.1038vw,-10px) scale(.5956);animation:fall-254 27s -16s linear infinite}@keyframes fall-254{56.24%{transform:translate(7.7075vw,56.24vh) scale(.5956)}to{transform:translate(3.90565vw,100vh) scale(.5956)}}.snow:nth-child(255){opacity:.6624;transform:translate(95.0596vw,-10px) scale(.4723);animation:fall-255 28s -26s linear infinite}@keyframes fall-255{45.991%{transform:translate(87.8133vw,45.991vh) scale(.4723)}to{transform:translate(91.43645vw,100vh) scale(.4723)}}.snow:nth-child(256){opacity:.2494;transform:translate(72.7226vw,-10px) scale(.1111);animation:fall-256 27s -23s linear infinite}@keyframes fall-256{45.741%{transform:translate(78.0899vw,45.741vh) scale(.1111)}to{transform:translate(75.40625vw,100vh) scale(.1111)}}.snow:nth-child(257){opacity:1.4152;transform:translate(35.5542vw,-10px) scale(.0709);animation:fall-257 12s -12s linear infinite}@keyframes fall-257{32.45%{transform:translate(35.7705vw,32.45vh) scale(.0709)}to{transform:translate(35.66235vw,100vh) scale(.0709)}}.snow:nth-child(258){opacity:1.4932;transform:translate(82.0045vw,-10px) scale(.4437);animation:fall-258 18s -9s linear infinite}@keyframes fall-258{49.07%{transform:translate(89.9228vw,49.07vh) scale(.4437)}to{transform:translate(85.96365vw,100vh) scale(.4437)}}.snow:nth-child(259){opacity:1.7278;transform:translate(81.1442vw,-10px) scale(.3304);animation:fall-259 27s -20s linear infinite}@keyframes fall-259{36.485%{transform:translate(82.4986vw,36.485vh) scale(.3304)}to{transform:translate(81.8214vw,100vh) scale(.3304)}}.snow:nth-child(260){opacity:.4408;transform:translate(69.155vw,-10px) scale(.2386);animation:fall-260 21s -9s linear infinite}@keyframes fall-260{66.214%{transform:translate(60.4823vw,66.214vh) scale(.2386)}to{transform:translate(64.81865vw,100vh) scale(.2386)}}.snow:nth-child(261){opacity:1.5806;transform:translate(53.2822vw,-10px) scale(.3324);animation:fall-261 28s -5s linear infinite}@keyframes fall-261{31.651%{transform:translate(46.9253vw,31.651vh) scale(.3324)}to{transform:translate(50.10375vw,100vh) scale(.3324)}}.snow:nth-child(262){opacity:1.8566;transform:translate(27.3188vw,-10px) scale(.2669);animation:fall-262 19s -6s linear infinite}@keyframes fall-262{51.273%{transform:translate(35.9705vw,51.273vh) scale(.2669)}to{transform:translate(31.64465vw,100vh) scale(.2669)}}.snow:nth-child(263){opacity:.516;transform:translate(81.8283vw,-10px) scale(.2668);animation:fall-263 12s -28s linear infinite}@keyframes fall-263{32.596%{transform:translate(90.2564vw,32.596vh) scale(.2668)}to{transform:translate(86.04235vw,100vh) scale(.2668)}}.snow:nth-child(264){opacity:.1774;transform:translate(76.7791vw,-10px) scale(.344);animation:fall-264 22s -23s linear infinite}@keyframes fall-264{61.33%{transform:translate(68.7972vw,61.33vh) scale(.344)}to{transform:translate(72.78815vw,100vh) scale(.344)}}.snow:nth-child(265){opacity:1.3444;transform:translate(7.1542vw,-10px) scale(.8033);animation:fall-265 29s -28s linear infinite}@keyframes fall-265{39.4%{transform:translate(7.5201vw,39.4vh) scale(.8033)}to{transform:translate(7.33715vw,100vh) scale(.8033)}}.snow:nth-child(266){opacity:.1246;transform:translate(9.8094vw,-10px) scale(.0438);animation:fall-266 26s -8s linear infinite}@keyframes fall-266{48.92%{transform:translate(9.7283vw,48.92vh) scale(.0438)}to{transform:translate(9.76885vw,100vh) scale(.0438)}}.snow:nth-child(267){opacity:1.5012;transform:translate(43.0297vw,-10px) scale(.3958);animation:fall-267 18s -19s linear infinite}@keyframes fall-267{32.29%{transform:translate(40.6551vw,32.29vh) scale(.3958)}to{transform:translate(41.8424vw,100vh) scale(.3958)}}.snow:nth-child(268){opacity:1.7616;transform:translate(97.0857vw,-10px) scale(.6841);animation:fall-268 19s -30s linear infinite}@keyframes fall-268{69.379%{transform:translate(95.848vw,69.379vh) scale(.6841)}to{transform:translate(96.46685vw,100vh) scale(.6841)}}.snow:nth-child(269){opacity:.7764;transform:translate(43.998vw,-10px) scale(.7788);animation:fall-269 28s -27s linear infinite}@keyframes fall-269{59.797%{transform:translate(51.7633vw,59.797vh) scale(.7788)}to{transform:translate(47.88065vw,100vh) scale(.7788)}}.snow:nth-child(270){opacity:.9526;transform:translate(12.2701vw,-10px) scale(.656);animation:fall-270 18s -27s linear infinite}@keyframes fall-270{68.435%{transform:translate(14.2103vw,68.435vh) scale(.656)}to{transform:translate(13.2402vw,100vh) scale(.656)}}.snow:nth-child(271){opacity:.7922;transform:translate(51.2644vw,-10px) scale(.3219);animation:fall-271 20s -6s linear infinite}@keyframes fall-271{46.855%{transform:translate(49.4121vw,46.855vh) scale(.3219)}to{transform:translate(50.33825vw,100vh) scale(.3219)}}.snow:nth-child(272){opacity:.1554;transform:translate(99.9271vw,-10px) scale(.5876);animation:fall-272 12s -27s linear infinite}@keyframes fall-272{53.315%{transform:translate(95.0689vw,53.315vh) scale(.5876)}to{transform:translate(97.498vw,100vh) scale(.5876)}}.snow:nth-child(273){opacity:1.9376;transform:translate(49.2578vw,-10px) scale(.6001);animation:fall-273 13s -1s linear infinite}@keyframes fall-273{35.385%{transform:translate(56.1229vw,35.385vh) scale(.6001)}to{transform:translate(52.69035vw,100vh) scale(.6001)}}.snow:nth-child(274){opacity:.5048;transform:translate(76.5699vw,-10px) scale(.7155);animation:fall-274 18s -19s linear infinite}@keyframes fall-274{38.308%{transform:translate(69.1287vw,38.308vh) scale(.7155)}to{transform:translate(72.8493vw,100vh) scale(.7155)}}.snow:nth-child(275){opacity:.6692;transform:translate(95.6551vw,-10px) scale(.8158);animation:fall-275 24s -1s linear infinite}@keyframes fall-275{74.428%{transform:translate(101.3528vw,74.428vh) scale(.8158)}to{transform:translate(98.50395vw,100vh) scale(.8158)}}.snow:nth-child(276){opacity:1.0028;transform:translate(78.2239vw,-10px) scale(.8448);animation:fall-276 29s -23s linear infinite}@keyframes fall-276{63.575%{transform:translate(85.9761vw,63.575vh) scale(.8448)}to{transform:translate(82.1vw,100vh) scale(.8448)}}.snow:nth-child(277){opacity:1.0032;transform:translate(66.5788vw,-10px) scale(.7195);animation:fall-277 26s -18s linear infinite}@keyframes fall-277{38.488%{transform:translate(64.2828vw,38.488vh) scale(.7195)}to{transform:translate(65.4308vw,100vh) scale(.7195)}}.snow:nth-child(278){opacity:.4856;transform:translate(25.8693vw,-10px) scale(.4442);animation:fall-278 11s -11s linear infinite}@keyframes fall-278{75.701%{transform:translate(31.5267vw,75.701vh) scale(.4442)}to{transform:translate(28.698vw,100vh) scale(.4442)}}.snow:nth-child(279){opacity:1.047;transform:translate(12.2663vw,-10px) scale(.2372);animation:fall-279 21s -23s linear infinite}@keyframes fall-279{52.453%{transform:translate(13.9847vw,52.453vh) scale(.2372)}to{transform:translate(13.1255vw,100vh) scale(.2372)}}.snow:nth-child(280){opacity:1.8852;transform:translate(50.8218vw,-10px) scale(.6164);animation:fall-280 19s -17s linear infinite}@keyframes fall-280{46.496%{transform:translate(51.1665vw,46.496vh) scale(.6164)}to{transform:translate(50.99415vw,100vh) scale(.6164)}}.snow:nth-child(281){opacity:1.6394;transform:translate(81.9762vw,-10px) scale(.0512);animation:fall-281 22s -2s linear infinite}@keyframes fall-281{73.493%{transform:translate(88.2192vw,73.493vh) scale(.0512)}to{transform:translate(85.0977vw,100vh) scale(.0512)}}.snow:nth-child(282){opacity:.614;transform:translate(28.6123vw,-10px) scale(.7212);animation:fall-282 24s -16s linear infinite}@keyframes fall-282{53.226%{transform:translate(33.803vw,53.226vh) scale(.7212)}to{transform:translate(31.20765vw,100vh) scale(.7212)}}.snow:nth-child(283){opacity:.3124;transform:translate(82.8473vw,-10px) scale(.1028);animation:fall-283 18s -5s linear infinite}@keyframes fall-283{36.139%{transform:translate(74.9644vw,36.139vh) scale(.1028)}to{transform:translate(78.90585vw,100vh) scale(.1028)}}.snow:nth-child(284){opacity:.0542;transform:translate(64.6013vw,-10px) scale(.706);animation:fall-284 15s -16s linear infinite}@keyframes fall-284{43.26%{transform:translate(60.024vw,43.26vh) scale(.706)}to{transform:translate(62.31265vw,100vh) scale(.706)}}.snow:nth-child(285){opacity:.7408;transform:translate(88.4814vw,-10px) scale(.247);animation:fall-285 28s -27s linear infinite}@keyframes fall-285{36.873%{transform:translate(95.6389vw,36.873vh) scale(.247)}to{transform:translate(92.06015vw,100vh) scale(.247)}}.snow:nth-child(286){opacity:1.5858;transform:translate(92.6279vw,-10px) scale(.6229);animation:fall-286 26s -27s linear infinite}@keyframes fall-286{68.031%{transform:translate(97.0511vw,68.031vh) scale(.6229)}to{transform:translate(94.8395vw,100vh) scale(.6229)}}.snow:nth-child(287){opacity:.5224;transform:translate(62.9247vw,-10px) scale(.731);animation:fall-287 14s -24s linear infinite}@keyframes fall-287{33.218%{transform:translate(55.7229vw,33.218vh) scale(.731)}to{transform:translate(59.3238vw,100vh) scale(.731)}}.snow:nth-child(288){opacity:.7302;transform:translate(99.0153vw,-10px) scale(.3831);animation:fall-288 18s -4s linear infinite}@keyframes fall-288{47.599%{transform:translate(103.7644vw,47.599vh) scale(.3831)}to{transform:translate(101.38985vw,100vh) scale(.3831)}}.snow:nth-child(289){opacity:.6706;transform:translate(90.1453vw,-10px) scale(.3473);animation:fall-289 12s -7s linear infinite}@keyframes fall-289{72.977%{transform:translate(96.0414vw,72.977vh) scale(.3473)}to{transform:translate(93.09335vw,100vh) scale(.3473)}}.snow:nth-child(290){opacity:.135;transform:translate(52.4198vw,-10px) scale(.8206);animation:fall-290 18s -1s linear infinite}@keyframes fall-290{65.803%{transform:translate(60.7816vw,65.803vh) scale(.8206)}to{transform:translate(56.6007vw,100vh) scale(.8206)}}.snow:nth-child(291){opacity:.0768;transform:translate(23.3351vw,-10px) scale(.7382);animation:fall-291 18s -3s linear infinite}@keyframes fall-291{60.531%{transform:translate(29.9059vw,60.531vh) scale(.7382)}to{transform:translate(26.6205vw,100vh) scale(.7382)}}.snow:nth-child(292){opacity:.031;transform:translate(37.9638vw,-10px) scale(.0027);animation:fall-292 28s -27s linear infinite}@keyframes fall-292{40.104%{transform:translate(33.3622vw,40.104vh) scale(.0027)}to{transform:translate(35.663vw,100vh) scale(.0027)}}.snow:nth-child(293){opacity:1.7108;transform:translate(77.2716vw,-10px) scale(.9543);animation:fall-293 21s -22s linear infinite}@keyframes fall-293{37.902%{transform:translate(72.5082vw,37.902vh) scale(.9543)}to{transform:translate(74.8899vw,100vh) scale(.9543)}}.snow:nth-child(294){opacity:1.4484;transform:translate(47.5325vw,-10px) scale(.6307);animation:fall-294 17s -28s linear infinite}@keyframes fall-294{77.268%{transform:translate(39.1866vw,77.268vh) scale(.6307)}to{transform:translate(43.35955vw,100vh) scale(.6307)}}.snow:nth-child(295){opacity:.6774;transform:translate(40.8534vw,-10px) scale(.9637);animation:fall-295 19s -14s linear infinite}@keyframes fall-295{33.277%{transform:translate(49.9563vw,33.277vh) scale(.9637)}to{transform:translate(45.40485vw,100vh) scale(.9637)}}.snow:nth-child(296){opacity:1.858;transform:translate(14.0818vw,-10px) scale(.0841);animation:fall-296 26s -7s linear infinite}@keyframes fall-296{73.72%{transform:translate(11.6305vw,73.72vh) scale(.0841)}to{transform:translate(12.85615vw,100vh) scale(.0841)}}.snow:nth-child(297){opacity:.2178;transform:translate(59.823vw,-10px) scale(.7442);animation:fall-297 14s -11s linear infinite}@keyframes fall-297{50.694%{transform:translate(63.3173vw,50.694vh) scale(.7442)}to{transform:translate(61.57015vw,100vh) scale(.7442)}}.snow:nth-child(298){opacity:1.4902;transform:translate(5.0694vw,-10px) scale(.8171);animation:fall-298 24s -17s linear infinite}@keyframes fall-298{69.552%{transform:translate(12.8624vw,69.552vh) scale(.8171)}to{transform:translate(8.9659vw,100vh) scale(.8171)}}.snow:nth-child(299){opacity:.3974;transform:translate(54.1451vw,-10px) scale(.7896);animation:fall-299 17s -7s linear infinite}@keyframes fall-299{79.05%{transform:translate(45.3473vw,79.05vh) scale(.7896)}to{transform:translate(49.7462vw,100vh) scale(.7896)}}.snow:nth-child(300){opacity:1.895;transform:translate(74.1915vw,-10px) scale(.7556);animation:fall-300 19s -19s linear infinite}@keyframes fall-300{36.906%{transform:translate(74.7763vw,36.906vh) scale(.7556)}to{transform:translate(74.4839vw,100vh) scale(.7556)}}.snow:nth-child(301){opacity:1.8634;transform:translate(7.3761vw,-10px) scale(.2065);animation:fall-301 15s -24s linear infinite}@keyframes fall-301{64.614%{transform:translate(-.0375vw,64.614vh) scale(.2065)}to{transform:translate(3.6693vw,100vh) scale(.2065)}}.snow:nth-child(302){opacity:.7488;transform:translate(57.621vw,-10px) scale(.2934);animation:fall-302 14s -5s linear infinite}@keyframes fall-302{79.096%{transform:translate(61.9618vw,79.096vh) scale(.2934)}to{transform:translate(59.7914vw,100vh) scale(.2934)}}.snow:nth-child(303){opacity:.4388;transform:translate(19.6402vw,-10px) scale(.672);animation:fall-303 16s -1s linear infinite}@keyframes fall-303{39.457%{transform:translate(19.1039vw,39.457vh) scale(.672)}to{transform:translate(19.37205vw,100vh) scale(.672)}}.snow:nth-child(304){opacity:.1048;transform:translate(36.5292vw,-10px) scale(.6508);animation:fall-304 19s -12s linear infinite}@keyframes fall-304{30.558%{transform:translate(44.2457vw,30.558vh) scale(.6508)}to{transform:translate(40.38745vw,100vh) scale(.6508)}}.snow:nth-child(305){opacity:1.5998;transform:translate(7.5814vw,-10px) scale(.9247);animation:fall-305 29s -12s linear infinite}@keyframes fall-305{65.493%{transform:translate(12.7432vw,65.493vh) scale(.9247)}to{transform:translate(10.1623vw,100vh) scale(.9247)}}.snow:nth-child(306){opacity:1.0556;transform:translate(73.3794vw,-10px) scale(.4531);animation:fall-306 25s -15s linear infinite}@keyframes fall-306{61.186%{transform:translate(66.6834vw,61.186vh) scale(.4531)}to{transform:translate(70.0314vw,100vh) scale(.4531)}}.snow:nth-child(307){opacity:1.1848;transform:translate(5.666vw,-10px) scale(.0502);animation:fall-307 11s -30s linear infinite}@keyframes fall-307{36.609%{transform:translate(13.853vw,36.609vh) scale(.0502)}to{transform:translate(9.7595vw,100vh) scale(.0502)}}.snow:nth-child(308){opacity:1.4554;transform:translate(86.7356vw,-10px) scale(.9009);animation:fall-308 14s -19s linear infinite}@keyframes fall-308{78.288%{transform:translate(91.0284vw,78.288vh) scale(.9009)}to{transform:translate(88.882vw,100vh) scale(.9009)}}.snow:nth-child(309){opacity:1.5508;transform:translate(3.3494vw,-10px) scale(.7625);animation:fall-309 16s -7s linear infinite}@keyframes fall-309{71.809%{transform:translate(-3.9318vw,71.809vh) scale(.7625)}to{transform:translate(-.2912vw,100vh) scale(.7625)}}.snow:nth-child(310){opacity:.3826;transform:translate(56.285vw,-10px) scale(.4312);animation:fall-310 21s -23s linear infinite}@keyframes fall-310{75.446%{transform:translate(64.8508vw,75.446vh) scale(.4312)}to{transform:translate(60.5679vw,100vh) scale(.4312)}}.snow:nth-child(311){opacity:1.8214;transform:translate(11.9902vw,-10px) scale(.5658);animation:fall-311 28s -21s linear infinite}@keyframes fall-311{65.298%{transform:translate(9.3309vw,65.298vh) scale(.5658)}to{transform:translate(10.66055vw,100vh) scale(.5658)}}.snow:nth-child(312){opacity:.0064;transform:translate(17.8505vw,-10px) scale(.6521);animation:fall-312 30s -12s linear infinite}@keyframes fall-312{32.518%{transform:translate(9.7766vw,32.518vh) scale(.6521)}to{transform:translate(13.81355vw,100vh) scale(.6521)}}.snow:nth-child(313){opacity:1.4394;transform:translate(88.1049vw,-10px) scale(.1295);animation:fall-313 24s -29s linear infinite}@keyframes fall-313{73.56%{transform:translate(97.4972vw,73.56vh) scale(.1295)}to{transform:translate(92.80105vw,100vh) scale(.1295)}}.snow:nth-child(314){opacity:.8744;transform:translate(83.0937vw,-10px) scale(.8369);animation:fall-314 24s -28s linear infinite}@keyframes fall-314{60.337%{transform:translate(86.2341vw,60.337vh) scale(.8369)}to{transform:translate(84.6639vw,100vh) scale(.8369)}}.snow:nth-child(315){opacity:1.515;transform:translate(33.0489vw,-10px) scale(.2379);animation:fall-315 27s -27s linear infinite}@keyframes fall-315{42.492%{transform:translate(23.5047vw,42.492vh) scale(.2379)}to{transform:translate(28.2768vw,100vh) scale(.2379)}}.snow:nth-child(316){opacity:1.098;transform:translate(62.8266vw,-10px) scale(.6448);animation:fall-316 22s -1s linear infinite}@keyframes fall-316{32.195%{transform:translate(57.2397vw,32.195vh) scale(.6448)}to{transform:translate(60.03315vw,100vh) scale(.6448)}}.snow:nth-child(317){opacity:.7592;transform:translate(80.2625vw,-10px) scale(.2557);animation:fall-317 30s -2s linear infinite}@keyframes fall-317{39.551%{transform:translate(81.8842vw,39.551vh) scale(.2557)}to{transform:translate(81.07335vw,100vh) scale(.2557)}}.snow:nth-child(318){opacity:1.2816;transform:translate(18.6286vw,-10px) scale(.2501);animation:fall-318 22s -28s linear infinite}@keyframes fall-318{49.236%{transform:translate(24.2144vw,49.236vh) scale(.2501)}to{transform:translate(21.4215vw,100vh) scale(.2501)}}.snow:nth-child(319){opacity:1.892;transform:translate(60.3226vw,-10px) scale(.8444);animation:fall-319 23s -22s linear infinite}@keyframes fall-319{32.804%{transform:translate(56.8268vw,32.804vh) scale(.8444)}to{transform:translate(58.5747vw,100vh) scale(.8444)}}.snow:nth-child(320){opacity:1.3058;transform:translate(60.0696vw,-10px) scale(.1324);animation:fall-320 26s -10s linear infinite}@keyframes fall-320{47.92%{transform:translate(50.2084vw,47.92vh) scale(.1324)}to{transform:translate(55.139vw,100vh) scale(.1324)}}.snow:nth-child(321){opacity:.5316;transform:translate(95.0056vw,-10px) scale(.7699);animation:fall-321 19s -10s linear infinite}@keyframes fall-321{53.483%{transform:translate(92.8113vw,53.483vh) scale(.7699)}to{transform:translate(93.90845vw,100vh) scale(.7699)}}.snow:nth-child(322){opacity:1.5038;transform:translate(63.3404vw,-10px) scale(.223);animation:fall-322 16s -16s linear infinite}@keyframes fall-322{60.666%{transform:translate(62.1912vw,60.666vh) scale(.223)}to{transform:translate(62.7658vw,100vh) scale(.223)}}.snow:nth-child(323){opacity:1.5732;transform:translate(54.3163vw,-10px) scale(.1815);animation:fall-323 14s -19s linear infinite}@keyframes fall-323{66.309%{transform:translate(53.1636vw,66.309vh) scale(.1815)}to{transform:translate(53.73995vw,100vh) scale(.1815)}}.snow:nth-child(324){opacity:.226;transform:translate(23.4559vw,-10px) scale(.4184);animation:fall-324 30s -21s linear infinite}@keyframes fall-324{30.073%{transform:translate(24.8061vw,30.073vh) scale(.4184)}to{transform:translate(24.131vw,100vh) scale(.4184)}}.snow:nth-child(325){opacity:.1514;transform:translate(17.616vw,-10px) scale(.9273);animation:fall-325 14s -20s linear infinite}@keyframes fall-325{39.471%{transform:translate(24.5283vw,39.471vh) scale(.9273)}to{transform:translate(21.07215vw,100vh) scale(.9273)}}.snow:nth-child(326){opacity:.754;transform:translate(76.5678vw,-10px) scale(.1538);animation:fall-326 10s -1s linear infinite}@keyframes fall-326{40.887%{transform:translate(81.9467vw,40.887vh) scale(.1538)}to{transform:translate(79.25725vw,100vh) scale(.1538)}}.snow:nth-child(327){opacity:1.892;transform:translate(20.9966vw,-10px) scale(.5583);animation:fall-327 16s -4s linear infinite}@keyframes fall-327{74.201%{transform:translate(12.9892vw,74.201vh) scale(.5583)}to{transform:translate(16.9929vw,100vh) scale(.5583)}}.snow:nth-child(328){opacity:1.9426;transform:translate(36.5324vw,-10px) scale(.9941);animation:fall-328 26s -14s linear infinite}@keyframes fall-328{54.738%{transform:translate(40.3288vw,54.738vh) scale(.9941)}to{transform:translate(38.4306vw,100vh) scale(.9941)}}.snow:nth-child(329){opacity:1.8572;transform:translate(47.28vw,-10px) scale(.8763);animation:fall-329 13s -7s linear infinite}@keyframes fall-329{41.381%{transform:translate(40.9774vw,41.381vh) scale(.8763)}to{transform:translate(44.1287vw,100vh) scale(.8763)}}.snow:nth-child(330){opacity:1.685;transform:translate(70.8127vw,-10px) scale(.5416);animation:fall-330 14s -13s linear infinite}@keyframes fall-330{71.41%{transform:translate(73.6683vw,71.41vh) scale(.5416)}to{transform:translate(72.2405vw,100vh) scale(.5416)}}.snow:nth-child(331){opacity:.8536;transform:translate(97.0904vw,-10px) scale(.5408);animation:fall-331 22s -11s linear infinite}@keyframes fall-331{64.105%{transform:translate(105.959vw,64.105vh) scale(.5408)}to{transform:translate(101.5247vw,100vh) scale(.5408)}}.snow:nth-child(332){opacity:.8626;transform:translate(49.8643vw,-10px) scale(.93);animation:fall-332 13s -9s linear infinite}@keyframes fall-332{75.151%{transform:translate(46.901vw,75.151vh) scale(.93)}to{transform:translate(48.38265vw,100vh) scale(.93)}}.snow:nth-child(333){opacity:.01;transform:translate(51.4058vw,-10px) scale(.8416);animation:fall-333 20s -13s linear infinite}@keyframes fall-333{37.063%{transform:translate(46.2242vw,37.063vh) scale(.8416)}to{transform:translate(48.815vw,100vh) scale(.8416)}}.snow:nth-child(334){opacity:.8724;transform:translate(60.2594vw,-10px) scale(.219);animation:fall-334 22s -29s linear infinite}@keyframes fall-334{49.34%{transform:translate(51.8039vw,49.34vh) scale(.219)}to{transform:translate(56.03165vw,100vh) scale(.219)}}.snow:nth-child(335){opacity:.1876;transform:translate(72.0034vw,-10px) scale(.9094);animation:fall-335 12s -3s linear infinite}@keyframes fall-335{33.83%{transform:translate(68.521vw,33.83vh) scale(.9094)}to{transform:translate(70.2622vw,100vh) scale(.9094)}}.snow:nth-child(336){opacity:1.6346;transform:translate(66.4661vw,-10px) scale(.8485);animation:fall-336 17s -13s linear infinite}@keyframes fall-336{40.21%{transform:translate(61.3812vw,40.21vh) scale(.8485)}to{transform:translate(63.92365vw,100vh) scale(.8485)}}.snow:nth-child(337){opacity:.7204;transform:translate(73.9649vw,-10px) scale(.4005);animation:fall-337 12s -9s linear infinite}@keyframes fall-337{54.002%{transform:translate(79.9416vw,54.002vh) scale(.4005)}to{transform:translate(76.95325vw,100vh) scale(.4005)}}.snow:nth-child(338){opacity:.6722;transform:translate(.7461vw,-10px) scale(.0716);animation:fall-338 29s -24s linear infinite}@keyframes fall-338{50.013%{transform:translate(2.1272vw,50.013vh) scale(.0716)}to{transform:translate(1.43665vw,100vh) scale(.0716)}}.snow:nth-child(339){opacity:.2332;transform:translate(31.1065vw,-10px) scale(.0428);animation:fall-339 30s -22s linear infinite}@keyframes fall-339{53.917%{transform:translate(30.1334vw,53.917vh) scale(.0428)}to{transform:translate(30.61995vw,100vh) scale(.0428)}}.snow:nth-child(340){opacity:1.102;transform:translate(23.9696vw,-10px) scale(.1855);animation:fall-340 20s -1s linear infinite}@keyframes fall-340{61.427%{transform:translate(16.3941vw,61.427vh) scale(.1855)}to{transform:translate(20.18185vw,100vh) scale(.1855)}}.snow:nth-child(341){opacity:.0338;transform:translate(71.4735vw,-10px) scale(.2637);animation:fall-341 27s -3s linear infinite}@keyframes fall-341{71.777%{transform:translate(66.7957vw,71.777vh) scale(.2637)}to{transform:translate(69.1346vw,100vh) scale(.2637)}}.snow:nth-child(342){opacity:.6804;transform:translate(93.4585vw,-10px) scale(.9077);animation:fall-342 29s -10s linear infinite}@keyframes fall-342{34.249%{transform:translate(100.1266vw,34.249vh) scale(.9077)}to{transform:translate(96.79255vw,100vh) scale(.9077)}}.snow:nth-child(343){opacity:1.6034;transform:translate(3.8045vw,-10px) scale(.8227);animation:fall-343 10s -30s linear infinite}@keyframes fall-343{76.842%{transform:translate(8.1453vw,76.842vh) scale(.8227)}to{transform:translate(5.9749vw,100vh) scale(.8227)}}.snow:nth-child(344){opacity:.833;transform:translate(83.4755vw,-10px) scale(.2674);animation:fall-344 19s -7s linear infinite}@keyframes fall-344{52.82%{transform:translate(73.7001vw,52.82vh) scale(.2674)}to{transform:translate(78.5878vw,100vh) scale(.2674)}}.snow:nth-child(345){opacity:1.9448;transform:translate(94.0268vw,-10px) scale(.7049);animation:fall-345 10s -19s linear infinite}@keyframes fall-345{77.216%{transform:translate(88.7139vw,77.216vh) scale(.7049)}to{transform:translate(91.37035vw,100vh) scale(.7049)}}.snow:nth-child(346){opacity:.3458;transform:translate(38.2308vw,-10px) scale(.625);animation:fall-346 11s -4s linear infinite}@keyframes fall-346{52.273%{transform:translate(36.4627vw,52.273vh) scale(.625)}to{transform:translate(37.34675vw,100vh) scale(.625)}}.snow:nth-child(347){opacity:.949;transform:translate(6.6502vw,-10px) scale(.7357);animation:fall-347 27s -27s linear infinite}@keyframes fall-347{32.499%{transform:translate(2.8494vw,32.499vh) scale(.7357)}to{transform:translate(4.7498vw,100vh) scale(.7357)}}.snow:nth-child(348){opacity:.0318;transform:translate(26.3951vw,-10px) scale(.5552);animation:fall-348 22s -24s linear infinite}@keyframes fall-348{59.361%{transform:translate(32.1213vw,59.361vh) scale(.5552)}to{transform:translate(29.2582vw,100vh) scale(.5552)}}.snow:nth-child(349){opacity:.6774;transform:translate(78.9379vw,-10px) scale(.4853);animation:fall-349 14s -6s linear infinite}@keyframes fall-349{67.704%{transform:translate(77.983vw,67.704vh) scale(.4853)}to{transform:translate(78.46045vw,100vh) scale(.4853)}}.snow:nth-child(350){opacity:.807;transform:translate(93.0717vw,-10px) scale(.1935);animation:fall-350 29s -4s linear infinite}@keyframes fall-350{51.346%{transform:translate(100.2361vw,51.346vh) scale(.1935)}to{transform:translate(96.6539vw,100vh) scale(.1935)}}.snow:nth-child(351){opacity:.5156;transform:translate(82.2221vw,-10px) scale(.2299);animation:fall-351 10s -22s linear infinite}@keyframes fall-351{49.524%{transform:translate(82.7065vw,49.524vh) scale(.2299)}to{transform:translate(82.4643vw,100vh) scale(.2299)}}.snow:nth-child(352){opacity:1.4064;transform:translate(27.6144vw,-10px) scale(.3689);animation:fall-352 26s -27s linear infinite}@keyframes fall-352{79.819%{transform:translate(24.7994vw,79.819vh) scale(.3689)}to{transform:translate(26.2069vw,100vh) scale(.3689)}}.snow:nth-child(353){opacity:.0278;transform:translate(28.5508vw,-10px) scale(.9724);animation:fall-353 11s -24s linear infinite}@keyframes fall-353{30.489%{transform:translate(28.8707vw,30.489vh) scale(.9724)}to{transform:translate(28.71075vw,100vh) scale(.9724)}}.snow:nth-child(354){opacity:1.9936;transform:translate(2.0271vw,-10px) scale(.9631);animation:fall-354 13s -5s linear infinite}@keyframes fall-354{36.361%{transform:translate(-5.652vw,36.361vh) scale(.9631)}to{transform:translate(-1.81245vw,100vh) scale(.9631)}}.snow:nth-child(355){opacity:1.5048;transform:translate(13.0027vw,-10px) scale(.8052);animation:fall-355 23s -28s linear infinite}@keyframes fall-355{63.087%{transform:translate(6.0468vw,63.087vh) scale(.8052)}to{transform:translate(9.52475vw,100vh) scale(.8052)}}.snow:nth-child(356){opacity:.261;transform:translate(29.9345vw,-10px) scale(.0971);animation:fall-356 15s -23s linear infinite}@keyframes fall-356{77.881%{transform:translate(23.076vw,77.881vh) scale(.0971)}to{transform:translate(26.50525vw,100vh) scale(.0971)}}.snow:nth-child(357){opacity:1.5482;transform:translate(76.2885vw,-10px) scale(.6822);animation:fall-357 27s -16s linear infinite}@keyframes fall-357{44.549%{transform:translate(74.0538vw,44.549vh) scale(.6822)}to{transform:translate(75.17115vw,100vh) scale(.6822)}}.snow:nth-child(358){opacity:.951;transform:translate(40.767vw,-10px) scale(.1649);animation:fall-358 20s -23s linear infinite}@keyframes fall-358{43.979%{transform:translate(40.8403vw,43.979vh) scale(.1649)}to{transform:translate(40.80365vw,100vh) scale(.1649)}}.snow:nth-child(359){opacity:.2548;transform:translate(66.075vw,-10px) scale(.2905);animation:fall-359 19s -1s linear infinite}@keyframes fall-359{61.439%{transform:translate(57.629vw,61.439vh) scale(.2905)}to{transform:translate(61.852vw,100vh) scale(.2905)}}.snow:nth-child(360){opacity:.6798;transform:translate(4.9199vw,-10px) scale(.9225);animation:fall-360 14s -18s linear infinite}@keyframes fall-360{69.928%{transform:translate(2.3925vw,69.928vh) scale(.9225)}to{transform:translate(3.6562vw,100vh) scale(.9225)}}.snow:nth-child(361){opacity:1.4512;transform:translate(36.7578vw,-10px) scale(.0951);animation:fall-361 18s -10s linear infinite}@keyframes fall-361{30.293%{transform:translate(37.1323vw,30.293vh) scale(.0951)}to{transform:translate(36.94505vw,100vh) scale(.0951)}}.snow:nth-child(362){opacity:.7884;transform:translate(48.6445vw,-10px) scale(.658);animation:fall-362 14s -15s linear infinite}@keyframes fall-362{52.269%{transform:translate(50.7876vw,52.269vh) scale(.658)}to{transform:translate(49.71605vw,100vh) scale(.658)}}.snow:nth-child(363){opacity:.9208;transform:translate(94.6784vw,-10px) scale(.4217);animation:fall-363 17s -11s linear infinite}@keyframes fall-363{53.972%{transform:translate(100.6546vw,53.972vh) scale(.4217)}to{transform:translate(97.6665vw,100vh) scale(.4217)}}.snow:nth-child(364){opacity:1.2264;transform:translate(39.8769vw,-10px) scale(.5245);animation:fall-364 21s -10s linear infinite}@keyframes fall-364{55.775%{transform:translate(45.7782vw,55.775vh) scale(.5245)}to{transform:translate(42.82755vw,100vh) scale(.5245)}}.snow:nth-child(365){opacity:.2702;transform:translate(44.4737vw,-10px) scale(.1519);animation:fall-365 10s -4s linear infinite}@keyframes fall-365{52.825%{transform:translate(47.8845vw,52.825vh) scale(.1519)}to{transform:translate(46.1791vw,100vh) scale(.1519)}}.snow:nth-child(366){opacity:.0834;transform:translate(13.6469vw,-10px) scale(.8437);animation:fall-366 16s -7s linear infinite}@keyframes fall-366{46.942%{transform:translate(5.305vw,46.942vh) scale(.8437)}to{transform:translate(9.47595vw,100vh) scale(.8437)}}.snow:nth-child(367){opacity:.7136;transform:translate(13.8791vw,-10px) scale(.6252);animation:fall-367 20s -23s linear infinite}@keyframes fall-367{38.406%{transform:translate(19.0499vw,38.406vh) scale(.6252)}to{transform:translate(16.4645vw,100vh) scale(.6252)}}.snow:nth-child(368){opacity:.5294;transform:translate(43.218vw,-10px) scale(.7983);animation:fall-368 22s -12s linear infinite}@keyframes fall-368{59.859%{transform:translate(36.7161vw,59.859vh) scale(.7983)}to{transform:translate(39.96705vw,100vh) scale(.7983)}}.snow:nth-child(369){opacity:1.2486;transform:translate(60.5085vw,-10px) scale(.0962);animation:fall-369 19s -29s linear infinite}@keyframes fall-369{31.809%{transform:translate(63.7377vw,31.809vh) scale(.0962)}to{transform:translate(62.1231vw,100vh) scale(.0962)}}.snow:nth-child(370){opacity:1.2128;transform:translate(88.6855vw,-10px) scale(.6622);animation:fall-370 12s -2s linear infinite}@keyframes fall-370{32.54%{transform:translate(90.4909vw,32.54vh) scale(.6622)}to{transform:translate(89.5882vw,100vh) scale(.6622)}}.snow:nth-child(371){opacity:1.5986;transform:translate(72.3796vw,-10px) scale(.4441);animation:fall-371 16s -3s linear infinite}@keyframes fall-371{59.805%{transform:translate(72.0199vw,59.805vh) scale(.4441)}to{transform:translate(72.19975vw,100vh) scale(.4441)}}.snow:nth-child(372){opacity:.624;transform:translate(54.4238vw,-10px) scale(.4656);animation:fall-372 26s -27s linear infinite}@keyframes fall-372{31.255%{transform:translate(64.198vw,31.255vh) scale(.4656)}to{transform:translate(59.3109vw,100vh) scale(.4656)}}.snow:nth-child(373){opacity:1.1884;transform:translate(66.808vw,-10px) scale(.282);animation:fall-373 23s -21s linear infinite}@keyframes fall-373{53.108%{transform:translate(56.9468vw,53.108vh) scale(.282)}to{transform:translate(61.8774vw,100vh) scale(.282)}}.snow:nth-child(374){opacity:1.2498;transform:translate(61.6476vw,-10px) scale(.818);animation:fall-374 27s -22s linear infinite}@keyframes fall-374{51.73%{transform:translate(60.509vw,51.73vh) scale(.818)}to{transform:translate(61.0783vw,100vh) scale(.818)}}.snow:nth-child(375){opacity:.2258;transform:translate(30.5827vw,-10px) scale(.6148);animation:fall-375 16s -26s linear infinite}@keyframes fall-375{41.307%{transform:translate(31.2382vw,41.307vh) scale(.6148)}to{transform:translate(30.91045vw,100vh) scale(.6148)}}.snow:nth-child(376){opacity:.789;transform:translate(88.7089vw,-10px) scale(.4631);animation:fall-376 21s -25s linear infinite}@keyframes fall-376{79.982%{transform:translate(93.1979vw,79.982vh) scale(.4631)}to{transform:translate(90.9534vw,100vh) scale(.4631)}}.snow:nth-child(377){opacity:1.6446;transform:translate(61.4291vw,-10px) scale(.1836);animation:fall-377 13s -30s linear infinite}@keyframes fall-377{43.356%{transform:translate(69.4514vw,43.356vh) scale(.1836)}to{transform:translate(65.44025vw,100vh) scale(.1836)}}.snow:nth-child(378){opacity:1.8154;transform:translate(78.4228vw,-10px) scale(.8669);animation:fall-378 12s -16s linear infinite}@keyframes fall-378{50.908%{transform:translate(75.9475vw,50.908vh) scale(.8669)}to{transform:translate(77.18515vw,100vh) scale(.8669)}}.snow:nth-child(379){opacity:.1776;transform:translate(8.1751vw,-10px) scale(.6509);animation:fall-379 11s -12s linear infinite}@keyframes fall-379{79.702%{transform:translate(2.9263vw,79.702vh) scale(.6509)}to{transform:translate(5.5507vw,100vh) scale(.6509)}}.snow:nth-child(380){opacity:1.4592;transform:translate(38.3692vw,-10px) scale(.7752);animation:fall-380 10s -4s linear infinite}@keyframes fall-380{54.99%{transform:translate(43.3876vw,54.99vh) scale(.7752)}to{transform:translate(40.8784vw,100vh) scale(.7752)}}.snow:nth-child(381){opacity:1.0858;transform:translate(98.0681vw,-10px) scale(.2863);animation:fall-381 13s -12s linear infinite}@keyframes fall-381{46.481%{transform:translate(99.5999vw,46.481vh) scale(.2863)}to{transform:translate(98.834vw,100vh) scale(.2863)}}.snow:nth-child(382){opacity:.2246;transform:translate(21.454vw,-10px) scale(.297);animation:fall-382 20s -16s linear infinite}@keyframes fall-382{74.022%{transform:translate(24.8454vw,74.022vh) scale(.297)}to{transform:translate(23.1497vw,100vh) scale(.297)}}.snow:nth-child(383){opacity:1.9414;transform:translate(85.8724vw,-10px) scale(.9183);animation:fall-383 21s -22s linear infinite}@keyframes fall-383{32.495%{transform:translate(89.5452vw,32.495vh) scale(.9183)}to{transform:translate(87.7088vw,100vh) scale(.9183)}}.snow:nth-child(384){opacity:.3392;transform:translate(67.8923vw,-10px) scale(.4736);animation:fall-384 25s -28s linear infinite}@keyframes fall-384{46.769%{transform:translate(59.6636vw,46.769vh) scale(.4736)}to{transform:translate(63.77795vw,100vh) scale(.4736)}}.snow:nth-child(385){opacity:.1674;transform:translate(56.5316vw,-10px) scale(.8415);animation:fall-385 21s -2s linear infinite}@keyframes fall-385{62.308%{transform:translate(51.5583vw,62.308vh) scale(.8415)}to{transform:translate(54.04495vw,100vh) scale(.8415)}}.snow:nth-child(386){opacity:.3604;transform:translate(32.1366vw,-10px) scale(.8012);animation:fall-386 24s -2s linear infinite}@keyframes fall-386{51.497%{transform:translate(40.8843vw,51.497vh) scale(.8012)}to{transform:translate(36.51045vw,100vh) scale(.8012)}}.snow:nth-child(387){opacity:.0586;transform:translate(49.0957vw,-10px) scale(.7047);animation:fall-387 18s -5s linear infinite}@keyframes fall-387{33.118%{transform:translate(58.0968vw,33.118vh) scale(.7047)}to{transform:translate(53.59625vw,100vh) scale(.7047)}}.snow:nth-child(388){opacity:1.6628;transform:translate(3.9104vw,-10px) scale(.1212);animation:fall-388 22s -6s linear infinite}@keyframes fall-388{38.297%{transform:translate(13.8378vw,38.297vh) scale(.1212)}to{transform:translate(8.8741vw,100vh) scale(.1212)}}.snow:nth-child(389){opacity:1.8132;transform:translate(76.6919vw,-10px) scale(.2913);animation:fall-389 12s -12s linear infinite}@keyframes fall-389{45.181%{transform:translate(67.1302vw,45.181vh) scale(.2913)}to{transform:translate(71.91105vw,100vh) scale(.2913)}}.snow:nth-child(390){opacity:.9094;transform:translate(97.3952vw,-10px) scale(.8904);animation:fall-390 24s -23s linear infinite}@keyframes fall-390{45.714%{transform:translate(107.3079vw,45.714vh) scale(.8904)}to{transform:translate(102.35155vw,100vh) scale(.8904)}}.snow:nth-child(391){opacity:.6084;transform:translate(62.6758vw,-10px) scale(.6075);animation:fall-391 27s -19s linear infinite}@keyframes fall-391{55.658%{transform:translate(63.3686vw,55.658vh) scale(.6075)}to{transform:translate(63.0222vw,100vh) scale(.6075)}}.snow:nth-child(392){opacity:.9532;transform:translate(57.7924vw,-10px) scale(.0245);animation:fall-392 11s -10s linear infinite}@keyframes fall-392{35.23%{transform:translate(66.9014vw,35.23vh) scale(.0245)}to{transform:translate(62.3469vw,100vh) scale(.0245)}}.snow:nth-child(393){opacity:.5256;transform:translate(82.7572vw,-10px) scale(.9312);animation:fall-393 22s -9s linear infinite}@keyframes fall-393{56.582%{transform:translate(90.7544vw,56.582vh) scale(.9312)}to{transform:translate(86.7558vw,100vh) scale(.9312)}}.snow:nth-child(394){opacity:1.745;transform:translate(55.3075vw,-10px) scale(.674);animation:fall-394 22s -4s linear infinite}@keyframes fall-394{44.137%{transform:translate(59.9182vw,44.137vh) scale(.674)}to{transform:translate(57.61285vw,100vh) scale(.674)}}.snow:nth-child(395){opacity:1.4124;transform:translate(60.5055vw,-10px) scale(.3261);animation:fall-395 27s -1s linear infinite}@keyframes fall-395{37.56%{transform:translate(65.0004vw,37.56vh) scale(.3261)}to{transform:translate(62.75295vw,100vh) scale(.3261)}}.snow:nth-child(396){opacity:.625;transform:translate(76.4897vw,-10px) scale(.1578);animation:fall-396 19s -22s linear infinite}@keyframes fall-396{56.201%{transform:translate(79.1402vw,56.201vh) scale(.1578)}to{transform:translate(77.81495vw,100vh) scale(.1578)}}.snow:nth-child(397){opacity:.8776;transform:translate(3.9742vw,-10px) scale(.4485);animation:fall-397 19s -16s linear infinite}@keyframes fall-397{41.437%{transform:translate(1.7916vw,41.437vh) scale(.4485)}to{transform:translate(2.8829vw,100vh) scale(.4485)}}.snow:nth-child(398){opacity:.0136;transform:translate(73.2522vw,-10px) scale(.5537);animation:fall-398 27s -12s linear infinite}@keyframes fall-398{76.553%{transform:translate(70.0124vw,76.553vh) scale(.5537)}to{transform:translate(71.6323vw,100vh) scale(.5537)}}.snow:nth-child(399){opacity:1.1178;transform:translate(80.0883vw,-10px) scale(.5365);animation:fall-399 29s -3s linear infinite}@keyframes fall-399{73.656%{transform:translate(78.9709vw,73.656vh) scale(.5365)}to{transform:translate(79.5296vw,100vh) scale(.5365)}}.snow:nth-child(400){opacity:1.123;transform:translate(24.4589vw,-10px) scale(.9185);animation:fall-400 11s -25s linear infinite}@keyframes fall-400{53.81%{transform:translate(33.0362vw,53.81vh) scale(.9185)}to{transform:translate(28.74755vw,100vh) scale(.9185)}}\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 });
74
74
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AppComponent, decorators: [{
75
75
  type: Component,
76
- args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: [".table-borderless>tbody>tr>td,.table-borderless>tbody>tr>th,.table-borderless>tfoot>tr>td,.table-borderless>tfoot>tr>th,.table-borderless>thead>tr>td,.table-borderless>thead>tr>th{border:none}.table,.table-responsive{margin-bottom:5px}a:hover,a:focus{text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}*{outline:none!important}.modal-title{width:calc(100% - 20px)}.progress{height:20px}.progress.progress-primary[value]::-webkit-progress-value{background-color:#024a88}.progress.progress-primary[value]::-moz-progress-bar{background-color:#024a88}.progress.progress-primary[value]::-ms-fill{background-color:#024a88}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#024a88}}.progress.progress-info[value]::-webkit-progress-value{background-color:#248dad}.progress.progress-info[value]::-moz-progress-bar{background-color:#248dad}.progress.progress-info[value]::-ms-fill{background-color:#248dad}@media screen and (min-width: 0\\fffd){.progress.progress-info .progress-bar{background-color:#248dad}}.progress.progress-danger[value]::-webkit-progress-value{background-color:#bf1725}.progress.progress-danger[value]::-moz-progress-bar{background-color:#bf1725}.progress.progress-danger[value]::-ms-fill{background-color:#bf1725}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#bf1725}}.progress.progress-success[value]::-webkit-progress-value{background-color:#2d922d}.progress.progress-success[value]::-moz-progress-bar{background-color:#2d922d}.progress.progress-success[value]::-ms-fill{background-color:#2d922d}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#2d922d}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#f79a17}.progress.progress-warning[value]::-moz-progress-bar{background-color:#f79a17}.progress.progress-warning[value]::-ms-fill{background-color:#f79a17}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#f79a17}}.progress[value]::-moz-progress-bar{border-radius:0}.progress[value]::-webkit-progress-value{border-radius:0}.progress[value=\"100\"]::-moz-progress-bar{border-radius:0}.progress[value=\"100\"]::-webkit-progress-value{border-radius:0}.progress-xs{height:7px}.progress-sm{height:10px}.progress-md{height:13px}.progress-bar-info-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem;background-color:#5bc0de!important}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:1.5588;transform:translate(94.8201vw,-10px) scale(.6643);animation:fall-1 20s -24s linear infinite}@keyframes fall-1{39.157%{transform:translate(102.4357vw,39.157vh) scale(.6643)}to{transform:translate(98.6279vw,100vh) scale(.6643)}}.snow:nth-child(2){opacity:.7326;transform:translate(80.3191vw,-10px) scale(.0515);animation:fall-2 30s -9s linear infinite}@keyframes fall-2{60.279%{transform:translate(88.5749vw,60.279vh) scale(.0515)}to{transform:translate(84.447vw,100vh) scale(.0515)}}.snow:nth-child(3){opacity:.2936;transform:translate(26.963vw,-10px) scale(.414);animation:fall-3 14s -9s linear infinite}@keyframes fall-3{41.594%{transform:translate(23.3927vw,41.594vh) scale(.414)}to{transform:translate(25.17785vw,100vh) scale(.414)}}.snow:nth-child(4){opacity:.1398;transform:translate(27.5808vw,-10px) scale(.2645);animation:fall-4 16s -7s linear infinite}@keyframes fall-4{72.741%{transform:translate(17.9543vw,72.741vh) scale(.2645)}to{transform:translate(22.76755vw,100vh) scale(.2645)}}.snow:nth-child(5){opacity:1.4136;transform:translate(32.8648vw,-10px) scale(.6218);animation:fall-5 21s -28s linear infinite}@keyframes fall-5{64.433%{transform:translate(26.8753vw,64.433vh) scale(.6218)}to{transform:translate(29.87005vw,100vh) scale(.6218)}}.snow:nth-child(6){opacity:1.0732;transform:translate(55.0433vw,-10px) scale(.2178);animation:fall-6 17s -2s linear infinite}@keyframes fall-6{32.865%{transform:translate(63.2852vw,32.865vh) scale(.2178)}to{transform:translate(59.16425vw,100vh) scale(.2178)}}.snow:nth-child(7){opacity:.894;transform:translate(44.3017vw,-10px) scale(.0092);animation:fall-7 22s -4s linear infinite}@keyframes fall-7{61.238%{transform:translate(51.4343vw,61.238vh) scale(.0092)}to{transform:translate(47.868vw,100vh) scale(.0092)}}.snow:nth-child(8){opacity:.1618;transform:translate(67.9496vw,-10px) scale(.9236);animation:fall-8 22s -2s linear infinite}@keyframes fall-8{62.687%{transform:translate(62.7891vw,62.687vh) scale(.9236)}to{transform:translate(65.36935vw,100vh) scale(.9236)}}.snow:nth-child(9){opacity:.9934;transform:translate(74.9808vw,-10px) scale(.1295);animation:fall-9 10s -5s linear infinite}@keyframes fall-9{71.83%{transform:translate(67.0429vw,71.83vh) scale(.1295)}to{transform:translate(71.01185vw,100vh) scale(.1295)}}.snow:nth-child(10){opacity:.0158;transform:translate(26.8551vw,-10px) scale(.4321);animation:fall-10 21s -26s linear infinite}@keyframes fall-10{70.552%{transform:translate(26.1307vw,70.552vh) scale(.4321)}to{transform:translate(26.4929vw,100vh) scale(.4321)}}.snow:nth-child(11){opacity:.4438;transform:translate(15.1098vw,-10px) scale(.8053);animation:fall-11 30s -13s linear infinite}@keyframes fall-11{45.387%{transform:translate(21.6539vw,45.387vh) scale(.8053)}to{transform:translate(18.38185vw,100vh) scale(.8053)}}.snow:nth-child(12){opacity:1.038;transform:translate(75.142vw,-10px) scale(.1371);animation:fall-12 23s -10s linear infinite}@keyframes fall-12{42.506%{transform:translate(70.0173vw,42.506vh) scale(.1371)}to{transform:translate(72.57965vw,100vh) scale(.1371)}}.snow:nth-child(13){opacity:.2518;transform:translate(30.6893vw,-10px) scale(.1966);animation:fall-13 23s -22s linear infinite}@keyframes fall-13{68.248%{transform:translate(32.8962vw,68.248vh) scale(.1966)}to{transform:translate(31.79275vw,100vh) scale(.1966)}}.snow:nth-child(14){opacity:1.4358;transform:translate(37.2203vw,-10px) scale(.5419);animation:fall-14 20s -14s linear infinite}@keyframes fall-14{30.21%{transform:translate(44.9286vw,30.21vh) scale(.5419)}to{transform:translate(41.07445vw,100vh) scale(.5419)}}.snow:nth-child(15){opacity:1.525;transform:translate(25.7392vw,-10px) scale(.2646);animation:fall-15 16s -23s linear infinite}@keyframes fall-15{67.064%{transform:translate(18.0357vw,67.064vh) scale(.2646)}to{transform:translate(21.88745vw,100vh) scale(.2646)}}.snow:nth-child(16){opacity:.8134;transform:translate(18.7278vw,-10px) scale(.897);animation:fall-16 28s -7s linear infinite}@keyframes fall-16{70.248%{transform:translate(21.8593vw,70.248vh) scale(.897)}to{transform:translate(20.29355vw,100vh) scale(.897)}}.snow:nth-child(17){opacity:.0852;transform:translate(51.3095vw,-10px) scale(.2958);animation:fall-17 18s -29s linear infinite}@keyframes fall-17{34.437%{transform:translate(43.855vw,34.437vh) scale(.2958)}to{transform:translate(47.58225vw,100vh) scale(.2958)}}.snow:nth-child(18){opacity:.4214;transform:translate(59.1367vw,-10px) scale(.8731);animation:fall-18 30s -23s linear infinite}@keyframes fall-18{41.349%{transform:translate(58.0078vw,41.349vh) scale(.8731)}to{transform:translate(58.57225vw,100vh) scale(.8731)}}.snow:nth-child(19){opacity:1.642;transform:translate(71.4566vw,-10px) scale(.1508);animation:fall-19 26s -23s linear infinite}@keyframes fall-19{70.233%{transform:translate(72.1725vw,70.233vh) scale(.1508)}to{transform:translate(71.81455vw,100vh) scale(.1508)}}.snow:nth-child(20){opacity:1.4344;transform:translate(28.2732vw,-10px) scale(.3183);animation:fall-20 13s -30s linear infinite}@keyframes fall-20{57.309%{transform:translate(27.2537vw,57.309vh) scale(.3183)}to{transform:translate(27.76345vw,100vh) scale(.3183)}}.snow:nth-child(21){opacity:1.0552;transform:translate(34.7487vw,-10px) scale(.1686);animation:fall-21 24s -15s linear infinite}@keyframes fall-21{58.458%{transform:translate(25.0315vw,58.458vh) scale(.1686)}to{transform:translate(29.8901vw,100vh) scale(.1686)}}.snow:nth-child(22){opacity:1.2698;transform:translate(63.3146vw,-10px) scale(.5403);animation:fall-22 20s -20s linear infinite}@keyframes fall-22{53.405%{transform:translate(70.5129vw,53.405vh) scale(.5403)}to{transform:translate(66.91375vw,100vh) scale(.5403)}}.snow:nth-child(23){opacity:.9998;transform:translate(27.8958vw,-10px) scale(.5609);animation:fall-23 17s -6s linear infinite}@keyframes fall-23{49.1%{transform:translate(26.6551vw,49.1vh) scale(.5609)}to{transform:translate(27.27545vw,100vh) scale(.5609)}}.snow:nth-child(24){opacity:.4382;transform:translate(81.2101vw,-10px) scale(.5183);animation:fall-24 12s -6s linear infinite}@keyframes fall-24{31.434%{transform:translate(78.2352vw,31.434vh) scale(.5183)}to{transform:translate(79.72265vw,100vh) scale(.5183)}}.snow:nth-child(25){opacity:.608;transform:translate(59.6349vw,-10px) scale(.0008);animation:fall-25 13s -6s linear infinite}@keyframes fall-25{33.5%{transform:translate(64.5037vw,33.5vh) scale(.0008)}to{transform:translate(62.0693vw,100vh) scale(.0008)}}.snow:nth-child(26){opacity:1.8882;transform:translate(28.238vw,-10px) scale(.2265);animation:fall-26 29s -4s linear infinite}@keyframes fall-26{72.039%{transform:translate(37.9544vw,72.039vh) scale(.2265)}to{transform:translate(33.0962vw,100vh) scale(.2265)}}.snow:nth-child(27){opacity:1.5804;transform:translate(19.8671vw,-10px) scale(.3716);animation:fall-27 28s -8s linear infinite}@keyframes fall-27{76.078%{transform:translate(27.7015vw,76.078vh) scale(.3716)}to{transform:translate(23.7843vw,100vh) scale(.3716)}}.snow:nth-child(28){opacity:.2056;transform:translate(62.6549vw,-10px) scale(.231);animation:fall-28 25s -3s linear infinite}@keyframes fall-28{77.058%{transform:translate(67.0919vw,77.058vh) scale(.231)}to{transform:translate(64.8734vw,100vh) scale(.231)}}.snow:nth-child(29){opacity:.2724;transform:translate(35.2709vw,-10px) scale(.2862);animation:fall-29 21s -26s linear infinite}@keyframes fall-29{70.203%{transform:translate(34.7511vw,70.203vh) scale(.2862)}to{transform:translate(35.011vw,100vh) scale(.2862)}}.snow:nth-child(30){opacity:.3422;transform:translate(93.4652vw,-10px) scale(.757);animation:fall-30 17s -7s linear infinite}@keyframes fall-30{79.693%{transform:translate(94.3001vw,79.693vh) scale(.757)}to{transform:translate(93.88265vw,100vh) scale(.757)}}.snow:nth-child(31){opacity:1.4134;transform:translate(94.3221vw,-10px) scale(.2163);animation:fall-31 20s -27s linear infinite}@keyframes fall-31{37.905%{transform:translate(89.1096vw,37.905vh) scale(.2163)}to{transform:translate(91.71585vw,100vh) scale(.2163)}}.snow:nth-child(32){opacity:.2634;transform:translate(48.4384vw,-10px) scale(.102);animation:fall-32 21s -6s linear infinite}@keyframes fall-32{30.85%{transform:translate(39.4493vw,30.85vh) scale(.102)}to{transform:translate(43.94385vw,100vh) scale(.102)}}.snow:nth-child(33){opacity:.9804;transform:translate(66.9139vw,-10px) scale(.8158);animation:fall-33 30s -4s linear infinite}@keyframes fall-33{59.02%{transform:translate(57.6991vw,59.02vh) scale(.8158)}to{transform:translate(62.3065vw,100vh) scale(.8158)}}.snow:nth-child(34){opacity:1.8664;transform:translate(37.1795vw,-10px) scale(.964);animation:fall-34 24s -26s linear infinite}@keyframes fall-34{62.483%{transform:translate(35.5331vw,62.483vh) scale(.964)}to{transform:translate(36.3563vw,100vh) scale(.964)}}.snow:nth-child(35){opacity:.7908;transform:translate(2.1606vw,-10px) scale(.3702);animation:fall-35 13s -8s linear infinite}@keyframes fall-35{33.981%{transform:translate(2.0301vw,33.981vh) scale(.3702)}to{transform:translate(2.09535vw,100vh) scale(.3702)}}.snow:nth-child(36){opacity:1.469;transform:translate(35.8064vw,-10px) scale(.6481);animation:fall-36 28s -29s linear infinite}@keyframes fall-36{66.126%{transform:translate(36.4504vw,66.126vh) scale(.6481)}to{transform:translate(36.1284vw,100vh) scale(.6481)}}.snow:nth-child(37){opacity:.1428;transform:translate(6.0239vw,-10px) scale(.3119);animation:fall-37 20s -28s linear infinite}@keyframes fall-37{37.806%{transform:translate(.2634vw,37.806vh) scale(.3119)}to{transform:translate(3.14365vw,100vh) scale(.3119)}}.snow:nth-child(38){opacity:1.689;transform:translate(84.1325vw,-10px) scale(.6786);animation:fall-38 18s -5s linear infinite}@keyframes fall-38{51.481%{transform:translate(77.5566vw,51.481vh) scale(.6786)}to{transform:translate(80.84455vw,100vh) scale(.6786)}}.snow:nth-child(39){opacity:.4732;transform:translate(28.5967vw,-10px) scale(.3128);animation:fall-39 16s -24s linear infinite}@keyframes fall-39{78.034%{transform:translate(18.758vw,78.034vh) scale(.3128)}to{transform:translate(23.67735vw,100vh) scale(.3128)}}.snow:nth-child(40){opacity:.3004;transform:translate(84.3274vw,-10px) scale(.5634);animation:fall-40 23s -30s linear infinite}@keyframes fall-40{74.008%{transform:translate(74.9339vw,74.008vh) scale(.5634)}to{transform:translate(79.63065vw,100vh) scale(.5634)}}.snow:nth-child(41){opacity:1.3616;transform:translate(81.7909vw,-10px) scale(.7139);animation:fall-41 13s -26s linear infinite}@keyframes fall-41{66.224%{transform:translate(84.9057vw,66.224vh) scale(.7139)}to{transform:translate(83.3483vw,100vh) scale(.7139)}}.snow:nth-child(42){opacity:1.634;transform:translate(11.6907vw,-10px) scale(.3026);animation:fall-42 14s -4s linear infinite}@keyframes fall-42{73.776%{transform:translate(3.6902vw,73.776vh) scale(.3026)}to{transform:translate(7.69045vw,100vh) scale(.3026)}}.snow:nth-child(43){opacity:.2204;transform:translate(33.4139vw,-10px) scale(.4903);animation:fall-43 27s -13s linear infinite}@keyframes fall-43{33.397%{transform:translate(24.9094vw,33.397vh) scale(.4903)}to{transform:translate(29.16165vw,100vh) scale(.4903)}}.snow:nth-child(44){opacity:1.8676;transform:translate(53.9514vw,-10px) scale(.2036);animation:fall-44 20s -21s linear infinite}@keyframes fall-44{36.132%{transform:translate(53.2735vw,36.132vh) scale(.2036)}to{transform:translate(53.61245vw,100vh) scale(.2036)}}.snow:nth-child(45){opacity:1.5442;transform:translate(9.7537vw,-10px) scale(.9852);animation:fall-45 26s -7s linear infinite}@keyframes fall-45{62.526%{transform:translate(18.2087vw,62.526vh) scale(.9852)}to{transform:translate(13.9812vw,100vh) scale(.9852)}}.snow:nth-child(46){opacity:.0088;transform:translate(43.5176vw,-10px) scale(.0638);animation:fall-46 16s -26s linear infinite}@keyframes fall-46{67.154%{transform:translate(41.0116vw,67.154vh) scale(.0638)}to{transform:translate(42.2646vw,100vh) scale(.0638)}}.snow:nth-child(47){opacity:.3028;transform:translate(21.6873vw,-10px) scale(.2821);animation:fall-47 16s -25s linear infinite}@keyframes fall-47{42.675%{transform:translate(14.6368vw,42.675vh) scale(.2821)}to{transform:translate(18.16205vw,100vh) scale(.2821)}}.snow:nth-child(48){opacity:1.755;transform:translate(5.7021vw,-10px) scale(.1286);animation:fall-48 27s -28s linear infinite}@keyframes fall-48{62.774%{transform:translate(-3.8714vw,62.774vh) scale(.1286)}to{transform:translate(.91535vw,100vh) scale(.1286)}}.snow:nth-child(49){opacity:.1036;transform:translate(64.2158vw,-10px) scale(.254);animation:fall-49 16s -19s linear infinite}@keyframes fall-49{73.465%{transform:translate(58.1134vw,73.465vh) scale(.254)}to{transform:translate(61.1646vw,100vh) scale(.254)}}.snow:nth-child(50){opacity:.1292;transform:translate(83.081vw,-10px) scale(.583);animation:fall-50 26s -14s linear infinite}@keyframes fall-50{63.69%{transform:translate(82.3443vw,63.69vh) scale(.583)}to{transform:translate(82.71265vw,100vh) scale(.583)}}.snow:nth-child(51){opacity:1.1322;transform:translate(37.5754vw,-10px) scale(.5821);animation:fall-51 17s -25s linear infinite}@keyframes fall-51{66.02%{transform:translate(30.8234vw,66.02vh) scale(.5821)}to{transform:translate(34.1994vw,100vh) scale(.5821)}}.snow:nth-child(52){opacity:1.3832;transform:translate(44.1737vw,-10px) scale(.8226);animation:fall-52 13s -3s linear infinite}@keyframes fall-52{68.086%{transform:translate(45.4762vw,68.086vh) scale(.8226)}to{transform:translate(44.82495vw,100vh) scale(.8226)}}.snow:nth-child(53){opacity:1.21;transform:translate(93.9377vw,-10px) scale(.6339);animation:fall-53 14s -20s linear infinite}@keyframes fall-53{68.426%{transform:translate(94.3839vw,68.426vh) scale(.6339)}to{transform:translate(94.1608vw,100vh) scale(.6339)}}.snow:nth-child(54){opacity:1.9128;transform:translate(87.9883vw,-10px) scale(.5956);animation:fall-54 26s -23s linear infinite}@keyframes fall-54{63.318%{transform:translate(78.9374vw,63.318vh) scale(.5956)}to{transform:translate(83.46285vw,100vh) scale(.5956)}}.snow:nth-child(55){opacity:1.0156;transform:translate(60.9483vw,-10px) scale(.1633);animation:fall-55 22s -6s linear infinite}@keyframes fall-55{41.635%{transform:translate(63.4967vw,41.635vh) scale(.1633)}to{transform:translate(62.2225vw,100vh) scale(.1633)}}.snow:nth-child(56){opacity:1.8322;transform:translate(96.5796vw,-10px) scale(.6932);animation:fall-56 16s -10s linear infinite}@keyframes fall-56{47.032%{transform:translate(97.2597vw,47.032vh) scale(.6932)}to{transform:translate(96.91965vw,100vh) scale(.6932)}}.snow:nth-child(57){opacity:.8654;transform:translate(76.9324vw,-10px) scale(.4449);animation:fall-57 13s -27s linear infinite}@keyframes fall-57{57.909%{transform:translate(79.9932vw,57.909vh) scale(.4449)}to{transform:translate(78.4628vw,100vh) scale(.4449)}}.snow:nth-child(58){opacity:1.3618;transform:translate(65.1919vw,-10px) scale(.2168);animation:fall-58 22s -11s linear infinite}@keyframes fall-58{46.458%{transform:translate(70.6353vw,46.458vh) scale(.2168)}to{transform:translate(67.9136vw,100vh) scale(.2168)}}.snow:nth-child(59){opacity:.8244;transform:translate(59.2519vw,-10px) scale(.682);animation:fall-59 14s -25s linear infinite}@keyframes fall-59{36.495%{transform:translate(63.7444vw,36.495vh) scale(.682)}to{transform:translate(61.49815vw,100vh) scale(.682)}}.snow:nth-child(60){opacity:.2432;transform:translate(.6125vw,-10px) scale(.0586);animation:fall-60 20s -21s linear infinite}@keyframes fall-60{76.183%{transform:translate(-6.5816vw,76.183vh) scale(.0586)}to{transform:translate(-2.98455vw,100vh) scale(.0586)}}.snow:nth-child(61){opacity:1.5908;transform:translate(64.5391vw,-10px) scale(.0091);animation:fall-61 20s -22s linear infinite}@keyframes fall-61{55.679%{transform:translate(66.4458vw,55.679vh) scale(.0091)}to{transform:translate(65.49245vw,100vh) scale(.0091)}}.snow:nth-child(62){opacity:1.7726;transform:translate(49.2191vw,-10px) scale(.0277);animation:fall-62 12s -29s linear infinite}@keyframes fall-62{48.745%{transform:translate(54.9136vw,48.745vh) scale(.0277)}to{transform:translate(52.06635vw,100vh) scale(.0277)}}.snow:nth-child(63){opacity:1.5552;transform:translate(96.2241vw,-10px) scale(.24);animation:fall-63 30s -8s linear infinite}@keyframes fall-63{53.571%{transform:translate(96.7553vw,53.571vh) scale(.24)}to{transform:translate(96.4897vw,100vh) scale(.24)}}.snow:nth-child(64){opacity:.829;transform:translate(37.601vw,-10px) scale(.8699);animation:fall-64 21s -18s linear infinite}@keyframes fall-64{79.373%{transform:translate(35.1609vw,79.373vh) scale(.8699)}to{transform:translate(36.38095vw,100vh) scale(.8699)}}.snow:nth-child(65){opacity:1.8816;transform:translate(42.5406vw,-10px) scale(.8492);animation:fall-65 19s -12s linear infinite}@keyframes fall-65{79.595%{transform:translate(33.7966vw,79.595vh) scale(.8492)}to{transform:translate(38.1686vw,100vh) scale(.8492)}}.snow:nth-child(66){opacity:1.4606;transform:translate(61.6306vw,-10px) scale(.5219);animation:fall-66 14s -28s linear infinite}@keyframes fall-66{43.949%{transform:translate(63.059vw,43.949vh) scale(.5219)}to{transform:translate(62.3448vw,100vh) scale(.5219)}}.snow:nth-child(67){opacity:1.3914;transform:translate(54.7521vw,-10px) scale(.5532);animation:fall-67 24s -30s linear infinite}@keyframes fall-67{45.873%{transform:translate(59.0889vw,45.873vh) scale(.5532)}to{transform:translate(56.9205vw,100vh) scale(.5532)}}.snow:nth-child(68){opacity:.332;transform:translate(41.6388vw,-10px) scale(.4396);animation:fall-68 30s -24s linear infinite}@keyframes fall-68{62.853%{transform:translate(45.9531vw,62.853vh) scale(.4396)}to{transform:translate(43.79595vw,100vh) scale(.4396)}}.snow:nth-child(69){opacity:1.284;transform:translate(68.8881vw,-10px) scale(.7252);animation:fall-69 17s -1s linear infinite}@keyframes fall-69{78.666%{transform:translate(68.0625vw,78.666vh) scale(.7252)}to{transform:translate(68.4753vw,100vh) scale(.7252)}}.snow:nth-child(70){opacity:.9258;transform:translate(50.8009vw,-10px) scale(.5821);animation:fall-70 16s -17s linear infinite}@keyframes fall-70{52.489%{transform:translate(51.4813vw,52.489vh) scale(.5821)}to{transform:translate(51.1411vw,100vh) scale(.5821)}}.snow:nth-child(71){opacity:1.328;transform:translate(50.3089vw,-10px) scale(.3126);animation:fall-71 29s -7s linear infinite}@keyframes fall-71{31.266%{transform:translate(45.7755vw,31.266vh) scale(.3126)}to{transform:translate(48.0422vw,100vh) scale(.3126)}}.snow:nth-child(72){opacity:.9966;transform:translate(45.7438vw,-10px) scale(.109);animation:fall-72 11s -20s linear infinite}@keyframes fall-72{40.383%{transform:translate(40.0679vw,40.383vh) scale(.109)}to{transform:translate(42.90585vw,100vh) scale(.109)}}.snow:nth-child(73){opacity:1.106;transform:translate(70.0957vw,-10px) scale(.5809);animation:fall-73 18s -7s linear infinite}@keyframes fall-73{57.541%{transform:translate(65.7968vw,57.541vh) scale(.5809)}to{transform:translate(67.94625vw,100vh) scale(.5809)}}.snow:nth-child(74){opacity:1.4338;transform:translate(76.8894vw,-10px) scale(.1459);animation:fall-74 14s -20s linear infinite}@keyframes fall-74{35.197%{transform:translate(79.2726vw,35.197vh) scale(.1459)}to{transform:translate(78.081vw,100vh) scale(.1459)}}.snow:nth-child(75){opacity:1.9796;transform:translate(47.0334vw,-10px) scale(.5234);animation:fall-75 29s -1s linear infinite}@keyframes fall-75{62.856%{transform:translate(53.2326vw,62.856vh) scale(.5234)}to{transform:translate(50.133vw,100vh) scale(.5234)}}.snow:nth-child(76){opacity:1.3078;transform:translate(24.7587vw,-10px) scale(.7381);animation:fall-76 11s -16s linear infinite}@keyframes fall-76{37.591%{transform:translate(31.2166vw,37.591vh) scale(.7381)}to{transform:translate(27.98765vw,100vh) scale(.7381)}}.snow:nth-child(77){opacity:1.4926;transform:translate(63.9129vw,-10px) scale(.2942);animation:fall-77 20s -6s linear infinite}@keyframes fall-77{76.937%{transform:translate(70.2734vw,76.937vh) scale(.2942)}to{transform:translate(67.09315vw,100vh) scale(.2942)}}.snow:nth-child(78){opacity:1.6994;transform:translate(31.8617vw,-10px) scale(.9627);animation:fall-78 26s -25s linear infinite}@keyframes fall-78{65.149%{transform:translate(34.8449vw,65.149vh) scale(.9627)}to{transform:translate(33.3533vw,100vh) scale(.9627)}}.snow:nth-child(79){opacity:1.7636;transform:translate(95.5842vw,-10px) scale(.2232);animation:fall-79 22s -9s linear infinite}@keyframes fall-79{45.375%{transform:translate(99.4214vw,45.375vh) scale(.2232)}to{transform:translate(97.5028vw,100vh) scale(.2232)}}.snow:nth-child(80){opacity:.3652;transform:translate(28.4648vw,-10px) scale(.1721);animation:fall-80 14s -21s linear infinite}@keyframes fall-80{64.727%{transform:translate(28.4175vw,64.727vh) scale(.1721)}to{transform:translate(28.44115vw,100vh) scale(.1721)}}.snow:nth-child(81){opacity:.2248;transform:translate(85.6294vw,-10px) scale(.4876);animation:fall-81 10s -19s linear infinite}@keyframes fall-81{62.283%{transform:translate(78.836vw,62.283vh) scale(.4876)}to{transform:translate(82.2327vw,100vh) scale(.4876)}}.snow:nth-child(82){opacity:.4018;transform:translate(46.3873vw,-10px) scale(.2936);animation:fall-82 19s -27s linear infinite}@keyframes fall-82{70.507%{transform:translate(54.1317vw,70.507vh) scale(.2936)}to{transform:translate(50.2595vw,100vh) scale(.2936)}}.snow:nth-child(83){opacity:.6162;transform:translate(16.829vw,-10px) scale(.2928);animation:fall-83 11s -21s linear infinite}@keyframes fall-83{53.32%{transform:translate(15.3365vw,53.32vh) scale(.2928)}to{transform:translate(16.08275vw,100vh) scale(.2928)}}.snow:nth-child(84){opacity:1.2878;transform:translate(41.2391vw,-10px) scale(.2035);animation:fall-84 15s -12s linear infinite}@keyframes fall-84{35.688%{transform:translate(48.5264vw,35.688vh) scale(.2035)}to{transform:translate(44.88275vw,100vh) scale(.2035)}}.snow:nth-child(85){opacity:1.6182;transform:translate(10.4455vw,-10px) scale(.2582);animation:fall-85 15s -12s linear infinite}@keyframes fall-85{77.956%{transform:translate(1.9299vw,77.956vh) scale(.2582)}to{transform:translate(6.1877vw,100vh) scale(.2582)}}.snow:nth-child(86){opacity:1.6802;transform:translate(7.0229vw,-10px) scale(.7269);animation:fall-86 27s -17s linear infinite}@keyframes fall-86{70.358%{transform:translate(2.8944vw,70.358vh) scale(.7269)}to{transform:translate(4.95865vw,100vh) scale(.7269)}}.snow:nth-child(87){opacity:.0748;transform:translate(91.514vw,-10px) scale(.7516);animation:fall-87 13s -2s linear infinite}@keyframes fall-87{71.648%{transform:translate(87.3554vw,71.648vh) scale(.7516)}to{transform:translate(89.4347vw,100vh) scale(.7516)}}.snow:nth-child(88){opacity:.3182;transform:translate(67.428vw,-10px) scale(.1907);animation:fall-88 21s -26s linear infinite}@keyframes fall-88{51.486%{transform:translate(66.8424vw,51.486vh) scale(.1907)}to{transform:translate(67.1352vw,100vh) scale(.1907)}}.snow:nth-child(89){opacity:1.5324;transform:translate(94.8141vw,-10px) scale(.5426);animation:fall-89 14s -4s linear infinite}@keyframes fall-89{58.324%{transform:translate(104.6433vw,58.324vh) scale(.5426)}to{transform:translate(99.7287vw,100vh) scale(.5426)}}.snow:nth-child(90){opacity:1.8934;transform:translate(26.9751vw,-10px) scale(.5349);animation:fall-90 25s -19s linear infinite}@keyframes fall-90{34.331%{transform:translate(18.0797vw,34.331vh) scale(.5349)}to{transform:translate(22.5274vw,100vh) scale(.5349)}}.snow:nth-child(91){opacity:.57;transform:translate(63.199vw,-10px) scale(.6385);animation:fall-91 21s -24s linear infinite}@keyframes fall-91{57.382%{transform:translate(65.0593vw,57.382vh) scale(.6385)}to{transform:translate(64.12915vw,100vh) scale(.6385)}}.snow:nth-child(92){opacity:1.9708;transform:translate(65.0832vw,-10px) scale(.1038);animation:fall-92 22s -27s linear infinite}@keyframes fall-92{55.479%{transform:translate(55.6073vw,55.479vh) scale(.1038)}to{transform:translate(60.34525vw,100vh) scale(.1038)}}.snow:nth-child(93){opacity:.7464;transform:translate(52.4298vw,-10px) scale(.2953);animation:fall-93 22s -4s linear infinite}@keyframes fall-93{59.332%{transform:translate(46.267vw,59.332vh) scale(.2953)}to{transform:translate(49.3484vw,100vh) scale(.2953)}}.snow:nth-child(94){opacity:.093;transform:translate(34.1926vw,-10px) scale(.5264);animation:fall-94 11s -22s linear infinite}@keyframes fall-94{79.703%{transform:translate(28.5192vw,79.703vh) scale(.5264)}to{transform:translate(31.3559vw,100vh) scale(.5264)}}.snow:nth-child(95){opacity:1.1606;transform:translate(37.069vw,-10px) scale(.1977);animation:fall-95 14s -4s linear infinite}@keyframes fall-95{78.807%{transform:translate(39.788vw,78.807vh) scale(.1977)}to{transform:translate(38.4285vw,100vh) scale(.1977)}}.snow:nth-child(96){opacity:1.238;transform:translate(32.3651vw,-10px) scale(.1774);animation:fall-96 19s -9s linear infinite}@keyframes fall-96{64.28%{transform:translate(31.3326vw,64.28vh) scale(.1774)}to{transform:translate(31.84885vw,100vh) scale(.1774)}}.snow:nth-child(97){opacity:1.763;transform:translate(53.9629vw,-10px) scale(.5617);animation:fall-97 12s -22s linear infinite}@keyframes fall-97{42.795%{transform:translate(63.5523vw,42.795vh) scale(.5617)}to{transform:translate(58.7576vw,100vh) scale(.5617)}}.snow:nth-child(98){opacity:.399;transform:translate(83.7115vw,-10px) scale(.768);animation:fall-98 17s -14s linear infinite}@keyframes fall-98{75.029%{transform:translate(85.8894vw,75.029vh) scale(.768)}to{transform:translate(84.80045vw,100vh) scale(.768)}}.snow:nth-child(99){opacity:1.6554;transform:translate(91.2383vw,-10px) scale(.1535);animation:fall-99 12s -5s linear infinite}@keyframes fall-99{32.329%{transform:translate(89.5088vw,32.329vh) scale(.1535)}to{transform:translate(90.37355vw,100vh) scale(.1535)}}.snow:nth-child(100){opacity:.6972;transform:translate(44.7158vw,-10px) scale(.1319);animation:fall-100 25s -27s linear infinite}@keyframes fall-100{43.498%{transform:translate(41.7549vw,43.498vh) scale(.1319)}to{transform:translate(43.23535vw,100vh) scale(.1319)}}.snow:nth-child(101){opacity:1.2112;transform:translate(33.1884vw,-10px) scale(.4337);animation:fall-101 13s -21s linear infinite}@keyframes fall-101{32.121%{transform:translate(32.092vw,32.121vh) scale(.4337)}to{transform:translate(32.6402vw,100vh) scale(.4337)}}.snow:nth-child(102){opacity:.5372;transform:translate(55.8434vw,-10px) scale(.8311);animation:fall-102 20s -12s linear infinite}@keyframes fall-102{40.122%{transform:translate(65.6885vw,40.122vh) scale(.8311)}to{transform:translate(60.76595vw,100vh) scale(.8311)}}.snow:nth-child(103){opacity:1.0948;transform:translate(7.6148vw,-10px) scale(.6458);animation:fall-103 16s -2s linear infinite}@keyframes fall-103{37.432%{transform:translate(13.2672vw,37.432vh) scale(.6458)}to{transform:translate(10.441vw,100vh) scale(.6458)}}.snow:nth-child(104){opacity:.3928;transform:translate(44.1699vw,-10px) scale(.7652);animation:fall-104 17s -9s linear infinite}@keyframes fall-104{30.562%{transform:translate(45.37vw,30.562vh) scale(.7652)}to{transform:translate(44.76995vw,100vh) scale(.7652)}}.snow:nth-child(105){opacity:.5854;transform:translate(19.6965vw,-10px) scale(.1519);animation:fall-105 11s -18s linear infinite}@keyframes fall-105{74.266%{transform:translate(28.0549vw,74.266vh) scale(.1519)}to{transform:translate(23.8757vw,100vh) scale(.1519)}}.snow:nth-child(106){opacity:1.3694;transform:translate(97.7214vw,-10px) scale(.6973);animation:fall-106 18s -2s linear infinite}@keyframes fall-106{38.892%{transform:translate(102.9209vw,38.892vh) scale(.6973)}to{transform:translate(100.32115vw,100vh) scale(.6973)}}.snow:nth-child(107){opacity:.312;transform:translate(46.9464vw,-10px) scale(.4837);animation:fall-107 26s -15s linear infinite}@keyframes fall-107{33.64%{transform:translate(47.1764vw,33.64vh) scale(.4837)}to{transform:translate(47.0614vw,100vh) scale(.4837)}}.snow:nth-child(108){opacity:.2698;transform:translate(72.6463vw,-10px) scale(.294);animation:fall-108 18s -9s linear infinite}@keyframes fall-108{41.948%{transform:translate(73.9007vw,41.948vh) scale(.294)}to{transform:translate(73.2735vw,100vh) scale(.294)}}.snow:nth-child(109){opacity:1.5118;transform:translate(6.2844vw,-10px) scale(.551);animation:fall-109 13s -16s linear infinite}@keyframes fall-109{74.737%{transform:translate(4.8245vw,74.737vh) scale(.551)}to{transform:translate(5.55445vw,100vh) scale(.551)}}.snow:nth-child(110){opacity:.3472;transform:translate(32.6219vw,-10px) scale(.8985);animation:fall-110 17s -19s linear infinite}@keyframes fall-110{67.892%{transform:translate(33.2445vw,67.892vh) scale(.8985)}to{transform:translate(32.9332vw,100vh) scale(.8985)}}.snow:nth-child(111){opacity:1.7782;transform:translate(48.8723vw,-10px) scale(.5366);animation:fall-111 17s -13s linear infinite}@keyframes fall-111{66.193%{transform:translate(52.7919vw,66.193vh) scale(.5366)}to{transform:translate(50.8321vw,100vh) scale(.5366)}}.snow:nth-child(112){opacity:.9806;transform:translate(17.468vw,-10px) scale(.685);animation:fall-112 21s -27s linear infinite}@keyframes fall-112{43.635%{transform:translate(15.8571vw,43.635vh) scale(.685)}to{transform:translate(16.66255vw,100vh) scale(.685)}}.snow:nth-child(113){opacity:.6274;transform:translate(37.6304vw,-10px) scale(.0747);animation:fall-113 27s -27s linear infinite}@keyframes fall-113{47.048%{transform:translate(44.0467vw,47.048vh) scale(.0747)}to{transform:translate(40.83855vw,100vh) scale(.0747)}}.snow:nth-child(114){opacity:1.989;transform:translate(36.735vw,-10px) scale(.746);animation:fall-114 28s -19s linear infinite}@keyframes fall-114{76.825%{transform:translate(38.7873vw,76.825vh) scale(.746)}to{transform:translate(37.76115vw,100vh) scale(.746)}}.snow:nth-child(115){opacity:1.0896;transform:translate(21.5048vw,-10px) scale(.3727);animation:fall-115 20s -4s linear infinite}@keyframes fall-115{39.278%{transform:translate(16.7537vw,39.278vh) scale(.3727)}to{transform:translate(19.12925vw,100vh) scale(.3727)}}.snow:nth-child(116){opacity:.1656;transform:translate(98.8049vw,-10px) scale(.5188);animation:fall-116 23s -15s linear infinite}@keyframes fall-116{35.924%{transform:translate(91.6656vw,35.924vh) scale(.5188)}to{transform:translate(95.23525vw,100vh) scale(.5188)}}.snow:nth-child(117){opacity:.3288;transform:translate(48.9328vw,-10px) scale(.0782);animation:fall-117 29s -21s linear infinite}@keyframes fall-117{57.477%{transform:translate(45.0169vw,57.477vh) scale(.0782)}to{transform:translate(46.97485vw,100vh) scale(.0782)}}.snow:nth-child(118){opacity:1.9452;transform:translate(.4175vw,-10px) scale(.2596);animation:fall-118 11s -5s linear infinite}@keyframes fall-118{42.47%{transform:translate(7.463vw,42.47vh) scale(.2596)}to{transform:translate(3.94025vw,100vh) scale(.2596)}}.snow:nth-child(119){opacity:.3874;transform:translate(93.1162vw,-10px) scale(.9703);animation:fall-119 11s -9s linear infinite}@keyframes fall-119{49.912%{transform:translate(92.3369vw,49.912vh) scale(.9703)}to{transform:translate(92.72655vw,100vh) scale(.9703)}}.snow:nth-child(120){opacity:1.4858;transform:translate(65.1951vw,-10px) scale(.6999);animation:fall-120 30s -4s linear infinite}@keyframes fall-120{46.054%{transform:translate(62.673vw,46.054vh) scale(.6999)}to{transform:translate(63.93405vw,100vh) scale(.6999)}}.snow:nth-child(121){opacity:.978;transform:translate(92.9043vw,-10px) scale(.4076);animation:fall-121 14s -21s linear infinite}@keyframes fall-121{49.579%{transform:translate(99.4847vw,49.579vh) scale(.4076)}to{transform:translate(96.1945vw,100vh) scale(.4076)}}.snow:nth-child(122){opacity:1.7606;transform:translate(98.5029vw,-10px) scale(.3244);animation:fall-122 12s -2s linear infinite}@keyframes fall-122{34.653%{transform:translate(90.8494vw,34.653vh) scale(.3244)}to{transform:translate(94.67615vw,100vh) scale(.3244)}}.snow:nth-child(123){opacity:1.717;transform:translate(3.357vw,-10px) scale(.3403);animation:fall-123 16s -21s linear infinite}@keyframes fall-123{51.742%{transform:translate(11.0663vw,51.742vh) scale(.3403)}to{transform:translate(7.21165vw,100vh) scale(.3403)}}.snow:nth-child(124){opacity:.0144;transform:translate(26.0883vw,-10px) scale(.5216);animation:fall-124 19s -29s linear infinite}@keyframes fall-124{39.413%{transform:translate(22.0773vw,39.413vh) scale(.5216)}to{transform:translate(24.0828vw,100vh) scale(.5216)}}.snow:nth-child(125){opacity:.7944;transform:translate(4.8576vw,-10px) scale(.0491);animation:fall-125 15s -24s linear infinite}@keyframes fall-125{58.467%{transform:translate(12.3682vw,58.467vh) scale(.0491)}to{transform:translate(8.6129vw,100vh) scale(.0491)}}.snow:nth-child(126){opacity:1.8486;transform:translate(72.7416vw,-10px) scale(.8851);animation:fall-126 21s -17s linear infinite}@keyframes fall-126{76.639%{transform:translate(79.0765vw,76.639vh) scale(.8851)}to{transform:translate(75.90905vw,100vh) scale(.8851)}}.snow:nth-child(127){opacity:.7352;transform:translate(28.9754vw,-10px) scale(.974);animation:fall-127 16s -3s linear infinite}@keyframes fall-127{49.938%{transform:translate(30.4748vw,49.938vh) scale(.974)}to{transform:translate(29.7251vw,100vh) scale(.974)}}.snow:nth-child(128){opacity:1.939;transform:translate(57.7691vw,-10px) scale(.5779);animation:fall-128 22s -25s linear infinite}@keyframes fall-128{53.089%{transform:translate(59.7594vw,53.089vh) scale(.5779)}to{transform:translate(58.76425vw,100vh) scale(.5779)}}.snow:nth-child(129){opacity:1.61;transform:translate(19.0808vw,-10px) scale(.8774);animation:fall-129 22s -4s linear infinite}@keyframes fall-129{37.026%{transform:translate(16.928vw,37.026vh) scale(.8774)}to{transform:translate(18.0044vw,100vh) scale(.8774)}}.snow:nth-child(130){opacity:.6942;transform:translate(97.9044vw,-10px) scale(.4535);animation:fall-130 14s -21s linear infinite}@keyframes fall-130{39.889%{transform:translate(99.7161vw,39.889vh) scale(.4535)}to{transform:translate(98.81025vw,100vh) scale(.4535)}}.snow:nth-child(131){opacity:1.63;transform:translate(28.3606vw,-10px) scale(.5052);animation:fall-131 21s -3s linear infinite}@keyframes fall-131{51.959%{transform:translate(27.7944vw,51.959vh) scale(.5052)}to{transform:translate(28.0775vw,100vh) scale(.5052)}}.snow:nth-child(132){opacity:1.5046;transform:translate(51.0494vw,-10px) scale(.6186);animation:fall-132 26s -9s linear infinite}@keyframes fall-132{62.174%{transform:translate(54.8578vw,62.174vh) scale(.6186)}to{transform:translate(52.9536vw,100vh) scale(.6186)}}.snow:nth-child(133){opacity:.0446;transform:translate(41.3321vw,-10px) scale(.1664);animation:fall-133 27s -16s linear infinite}@keyframes fall-133{66.142%{transform:translate(44.4459vw,66.142vh) scale(.1664)}to{transform:translate(42.889vw,100vh) scale(.1664)}}.snow:nth-child(134){opacity:1.1954;transform:translate(24.7953vw,-10px) scale(.1659);animation:fall-134 13s -26s linear infinite}@keyframes fall-134{71.696%{transform:translate(32.4368vw,71.696vh) scale(.1659)}to{transform:translate(28.61605vw,100vh) scale(.1659)}}.snow:nth-child(135){opacity:.5768;transform:translate(5.3411vw,-10px) scale(.42);animation:fall-135 11s -15s linear infinite}@keyframes fall-135{79.141%{transform:translate(8.7555vw,79.141vh) scale(.42)}to{transform:translate(7.0483vw,100vh) scale(.42)}}.snow:nth-child(136){opacity:1.5178;transform:translate(86.2117vw,-10px) scale(.0841);animation:fall-136 17s -1s linear infinite}@keyframes fall-136{69.497%{transform:translate(81.3771vw,69.497vh) scale(.0841)}to{transform:translate(83.7944vw,100vh) scale(.0841)}}.snow:nth-child(137){opacity:1.1164;transform:translate(77.514vw,-10px) scale(.9713);animation:fall-137 10s -26s linear infinite}@keyframes fall-137{46.866%{transform:translate(80.8265vw,46.866vh) scale(.9713)}to{transform:translate(79.17025vw,100vh) scale(.9713)}}.snow:nth-child(138){opacity:1.265;transform:translate(99.2272vw,-10px) scale(.9879);animation:fall-138 19s -21s linear infinite}@keyframes fall-138{59.662%{transform:translate(106.8876vw,59.662vh) scale(.9879)}to{transform:translate(103.0574vw,100vh) scale(.9879)}}.snow:nth-child(139){opacity:.6126;transform:translate(8.8648vw,-10px) scale(.0078);animation:fall-139 22s -25s linear infinite}@keyframes fall-139{69.428%{transform:translate(2.4512vw,69.428vh) scale(.0078)}to{transform:translate(5.658vw,100vh) scale(.0078)}}.snow:nth-child(140){opacity:1.822;transform:translate(73.754vw,-10px) scale(.1618);animation:fall-140 18s -6s linear infinite}@keyframes fall-140{36.634%{transform:translate(65.1137vw,36.634vh) scale(.1618)}to{transform:translate(69.43385vw,100vh) scale(.1618)}}.snow:nth-child(141){opacity:.5896;transform:translate(11.7606vw,-10px) scale(.8288);animation:fall-141 27s -23s linear infinite}@keyframes fall-141{47.653%{transform:translate(19.9922vw,47.653vh) scale(.8288)}to{transform:translate(15.8764vw,100vh) scale(.8288)}}.snow:nth-child(142){opacity:.9188;transform:translate(40.9467vw,-10px) scale(.1979);animation:fall-142 28s -5s linear infinite}@keyframes fall-142{30.889%{transform:translate(38.1831vw,30.889vh) scale(.1979)}to{transform:translate(39.5649vw,100vh) scale(.1979)}}.snow:nth-child(143){opacity:.4576;transform:translate(81.7412vw,-10px) scale(.4575);animation:fall-143 13s -22s linear infinite}@keyframes fall-143{44.819%{transform:translate(75.3536vw,44.819vh) scale(.4575)}to{transform:translate(78.5474vw,100vh) scale(.4575)}}.snow:nth-child(144){opacity:.3652;transform:translate(54.5712vw,-10px) scale(.5474);animation:fall-144 10s -26s linear infinite}@keyframes fall-144{71.261%{transform:translate(44.8413vw,71.261vh) scale(.5474)}to{transform:translate(49.70625vw,100vh) scale(.5474)}}.snow:nth-child(145){opacity:1.9658;transform:translate(66.1457vw,-10px) scale(.5653);animation:fall-145 13s -30s linear infinite}@keyframes fall-145{64.692%{transform:translate(68.5436vw,64.692vh) scale(.5653)}to{transform:translate(67.34465vw,100vh) scale(.5653)}}.snow:nth-child(146){opacity:1.3404;transform:translate(83.0792vw,-10px) scale(.6708);animation:fall-146 12s -4s linear infinite}@keyframes fall-146{53.505%{transform:translate(75.151vw,53.505vh) scale(.6708)}to{transform:translate(79.1151vw,100vh) scale(.6708)}}.snow:nth-child(147){opacity:.0282;transform:translate(46.0181vw,-10px) scale(.3949);animation:fall-147 11s -22s linear infinite}@keyframes fall-147{66.14%{transform:translate(48.3204vw,66.14vh) scale(.3949)}to{transform:translate(47.16925vw,100vh) scale(.3949)}}.snow:nth-child(148){opacity:.0082;transform:translate(58.0388vw,-10px) scale(.1936);animation:fall-148 11s -25s linear infinite}@keyframes fall-148{75.788%{transform:translate(62.3769vw,75.788vh) scale(.1936)}to{transform:translate(60.20785vw,100vh) scale(.1936)}}.snow:nth-child(149){opacity:.3698;transform:translate(51.887vw,-10px) scale(.6052);animation:fall-149 26s -16s linear infinite}@keyframes fall-149{45.696%{transform:translate(51.0359vw,45.696vh) scale(.6052)}to{transform:translate(51.46145vw,100vh) scale(.6052)}}.snow:nth-child(150){opacity:1.5188;transform:translate(27.7368vw,-10px) scale(.2308);animation:fall-150 30s -7s linear infinite}@keyframes fall-150{31.56%{transform:translate(18.6721vw,31.56vh) scale(.2308)}to{transform:translate(23.20445vw,100vh) scale(.2308)}}.snow:nth-child(151){opacity:.4142;transform:translate(95.9868vw,-10px) scale(.2025);animation:fall-151 10s -16s linear infinite}@keyframes fall-151{38.846%{transform:translate(95.2533vw,38.846vh) scale(.2025)}to{transform:translate(95.62005vw,100vh) scale(.2025)}}.snow:nth-child(152){opacity:1.9868;transform:translate(22.8742vw,-10px) scale(.0928);animation:fall-152 30s -27s linear infinite}@keyframes fall-152{44.344%{transform:translate(30.4819vw,44.344vh) scale(.0928)}to{transform:translate(26.67805vw,100vh) scale(.0928)}}.snow:nth-child(153){opacity:1.9642;transform:translate(36.1725vw,-10px) scale(.32);animation:fall-153 29s -26s linear infinite}@keyframes fall-153{33.063%{transform:translate(41.0407vw,33.063vh) scale(.32)}to{transform:translate(38.6066vw,100vh) scale(.32)}}.snow:nth-child(154){opacity:.8624;transform:translate(63.6317vw,-10px) scale(.1697);animation:fall-154 25s -22s linear infinite}@keyframes fall-154{56.354%{transform:translate(54.3761vw,56.354vh) scale(.1697)}to{transform:translate(59.0039vw,100vh) scale(.1697)}}.snow:nth-child(155){opacity:1.0102;transform:translate(91.2296vw,-10px) scale(.5234);animation:fall-155 11s -24s linear infinite}@keyframes fall-155{40.142%{transform:translate(82.5875vw,40.142vh) scale(.5234)}to{transform:translate(86.90855vw,100vh) scale(.5234)}}.snow:nth-child(156){opacity:.3724;transform:translate(73.2972vw,-10px) scale(.7098);animation:fall-156 24s -23s linear infinite}@keyframes fall-156{62.562%{transform:translate(67.3065vw,62.562vh) scale(.7098)}to{transform:translate(70.30185vw,100vh) scale(.7098)}}.snow:nth-child(157){opacity:.7406;transform:translate(15.2531vw,-10px) scale(.5013);animation:fall-157 26s -9s linear infinite}@keyframes fall-157{52.452%{transform:translate(23.3305vw,52.452vh) scale(.5013)}to{transform:translate(19.2918vw,100vh) scale(.5013)}}.snow:nth-child(158){opacity:.7408;transform:translate(12.5758vw,-10px) scale(.6462);animation:fall-158 17s -29s linear infinite}@keyframes fall-158{46.313%{transform:translate(4.0495vw,46.313vh) scale(.6462)}to{transform:translate(8.31265vw,100vh) scale(.6462)}}.snow:nth-child(159){opacity:.4662;transform:translate(63.7306vw,-10px) scale(.7424);animation:fall-159 15s -21s linear infinite}@keyframes fall-159{32.286%{transform:translate(71.0056vw,32.286vh) scale(.7424)}to{transform:translate(67.3681vw,100vh) scale(.7424)}}.snow:nth-child(160){opacity:1.579;transform:translate(35.8405vw,-10px) scale(.8378);animation:fall-160 11s -25s linear infinite}@keyframes fall-160{53.712%{transform:translate(31.9149vw,53.712vh) scale(.8378)}to{transform:translate(33.8777vw,100vh) scale(.8378)}}.snow:nth-child(161){opacity:1.7216;transform:translate(80.9263vw,-10px) scale(.9321);animation:fall-161 17s -30s linear infinite}@keyframes fall-161{35.172%{transform:translate(79.2196vw,35.172vh) scale(.9321)}to{transform:translate(80.07295vw,100vh) scale(.9321)}}.snow:nth-child(162){opacity:1.2016;transform:translate(54.9034vw,-10px) scale(.2518);animation:fall-162 11s -12s linear infinite}@keyframes fall-162{79.716%{transform:translate(45.1738vw,79.716vh) scale(.2518)}to{transform:translate(50.0386vw,100vh) scale(.2518)}}.snow:nth-child(163){opacity:.5774;transform:translate(43.0494vw,-10px) scale(.8972);animation:fall-163 19s -25s linear infinite}@keyframes fall-163{34.847%{transform:translate(50.7277vw,34.847vh) scale(.8972)}to{transform:translate(46.88855vw,100vh) scale(.8972)}}.snow:nth-child(164){opacity:1.883;transform:translate(35.0467vw,-10px) scale(.7166);animation:fall-164 14s -26s linear infinite}@keyframes fall-164{66.091%{transform:translate(42.0783vw,66.091vh) scale(.7166)}to{transform:translate(38.5625vw,100vh) scale(.7166)}}.snow:nth-child(165){opacity:.162;transform:translate(59.7744vw,-10px) scale(.9104);animation:fall-165 16s -26s linear infinite}@keyframes fall-165{66.302%{transform:translate(56.4574vw,66.302vh) scale(.9104)}to{transform:translate(58.1159vw,100vh) scale(.9104)}}.snow:nth-child(166){opacity:.1208;transform:translate(45.2719vw,-10px) scale(.7874);animation:fall-166 13s -20s linear infinite}@keyframes fall-166{73.093%{transform:translate(36.8427vw,73.093vh) scale(.7874)}to{transform:translate(41.0573vw,100vh) scale(.7874)}}.snow:nth-child(167){opacity:1.9294;transform:translate(23.2281vw,-10px) scale(.5107);animation:fall-167 13s -8s linear infinite}@keyframes fall-167{62.071%{transform:translate(31.6726vw,62.071vh) scale(.5107)}to{transform:translate(27.45035vw,100vh) scale(.5107)}}.snow:nth-child(168){opacity:.951;transform:translate(28.2403vw,-10px) scale(.0149);animation:fall-168 16s -20s linear infinite}@keyframes fall-168{55.277%{transform:translate(20.6856vw,55.277vh) scale(.0149)}to{transform:translate(24.46295vw,100vh) scale(.0149)}}.snow:nth-child(169){opacity:.4554;transform:translate(14.736vw,-10px) scale(.9489);animation:fall-169 19s -9s linear infinite}@keyframes fall-169{45.593%{transform:translate(7.7891vw,45.593vh) scale(.9489)}to{transform:translate(11.26255vw,100vh) scale(.9489)}}.snow:nth-child(170){opacity:1.034;transform:translate(94.2345vw,-10px) scale(.9681);animation:fall-170 26s -4s linear infinite}@keyframes fall-170{51.67%{transform:translate(93.838vw,51.67vh) scale(.9681)}to{transform:translate(94.03625vw,100vh) scale(.9681)}}.snow:nth-child(171){opacity:.173;transform:translate(94.6135vw,-10px) scale(.5955);animation:fall-171 10s -22s linear infinite}@keyframes fall-171{69.394%{transform:translate(97.3385vw,69.394vh) scale(.5955)}to{transform:translate(95.976vw,100vh) scale(.5955)}}.snow:nth-child(172){opacity:.5066;transform:translate(37.1632vw,-10px) scale(.7133);animation:fall-172 28s -8s linear infinite}@keyframes fall-172{48.951%{transform:translate(42.4688vw,48.951vh) scale(.7133)}to{transform:translate(39.816vw,100vh) scale(.7133)}}.snow:nth-child(173){opacity:1.563;transform:translate(90.5448vw,-10px) scale(.2552);animation:fall-173 16s -27s linear infinite}@keyframes fall-173{70.645%{transform:translate(86.0681vw,70.645vh) scale(.2552)}to{transform:translate(88.30645vw,100vh) scale(.2552)}}.snow:nth-child(174){opacity:.926;transform:translate(12.9491vw,-10px) scale(.0911);animation:fall-174 13s -25s linear infinite}@keyframes fall-174{78.225%{transform:translate(7.0334vw,78.225vh) scale(.0911)}to{transform:translate(9.99125vw,100vh) scale(.0911)}}.snow:nth-child(175){opacity:.4966;transform:translate(28.7203vw,-10px) scale(.5234);animation:fall-175 27s -18s linear infinite}@keyframes fall-175{41.986%{transform:translate(27.047vw,41.986vh) scale(.5234)}to{transform:translate(27.88365vw,100vh) scale(.5234)}}.snow:nth-child(176){opacity:1.9098;transform:translate(26.7237vw,-10px) scale(.2607);animation:fall-176 10s -26s linear infinite}@keyframes fall-176{44.925%{transform:translate(32.9018vw,44.925vh) scale(.2607)}to{transform:translate(29.81275vw,100vh) scale(.2607)}}.snow:nth-child(177){opacity:.1;transform:translate(18.4303vw,-10px) scale(.7391);animation:fall-177 11s -25s linear infinite}@keyframes fall-177{72.262%{transform:translate(20.4523vw,72.262vh) scale(.7391)}to{transform:translate(19.4413vw,100vh) scale(.7391)}}.snow:nth-child(178){opacity:1.1808;transform:translate(15.4147vw,-10px) scale(.4062);animation:fall-178 13s -8s linear infinite}@keyframes fall-178{59.183%{transform:translate(10.1213vw,59.183vh) scale(.4062)}to{transform:translate(12.768vw,100vh) scale(.4062)}}.snow:nth-child(179){opacity:.2158;transform:translate(51.481vw,-10px) scale(.4794);animation:fall-179 12s -27s linear infinite}@keyframes fall-179{66.915%{transform:translate(52.9848vw,66.915vh) scale(.4794)}to{transform:translate(52.2329vw,100vh) scale(.4794)}}.snow:nth-child(180){opacity:1.827;transform:translate(5.5404vw,-10px) scale(.8942);animation:fall-180 23s -20s linear infinite}@keyframes fall-180{31.299%{transform:translate(3.8455vw,31.299vh) scale(.8942)}to{transform:translate(4.69295vw,100vh) scale(.8942)}}.snow:nth-child(181){opacity:.367;transform:translate(12.7302vw,-10px) scale(.2185);animation:fall-181 12s -22s linear infinite}@keyframes fall-181{32.058%{transform:translate(20.8189vw,32.058vh) scale(.2185)}to{transform:translate(16.77455vw,100vh) scale(.2185)}}.snow:nth-child(182){opacity:.307;transform:translate(59.0385vw,-10px) scale(.3542);animation:fall-182 24s -20s linear infinite}@keyframes fall-182{39.093%{transform:translate(63.4706vw,39.093vh) scale(.3542)}to{transform:translate(61.25455vw,100vh) scale(.3542)}}.snow:nth-child(183){opacity:1.4668;transform:translate(95.345vw,-10px) scale(.52);animation:fall-183 23s -22s linear infinite}@keyframes fall-183{51.373%{transform:translate(95.4153vw,51.373vh) scale(.52)}to{transform:translate(95.38015vw,100vh) scale(.52)}}.snow:nth-child(184){opacity:.674;transform:translate(24.3007vw,-10px) scale(.3039);animation:fall-184 11s -27s linear infinite}@keyframes fall-184{58.745%{transform:translate(29.9383vw,58.745vh) scale(.3039)}to{transform:translate(27.1195vw,100vh) scale(.3039)}}.snow:nth-child(185){opacity:1.7266;transform:translate(22.0796vw,-10px) scale(.5936);animation:fall-185 21s -2s linear infinite}@keyframes fall-185{75.371%{transform:translate(25.2753vw,75.371vh) scale(.5936)}to{transform:translate(23.67745vw,100vh) scale(.5936)}}.snow:nth-child(186){opacity:.172;transform:translate(9.6276vw,-10px) scale(.9847);animation:fall-186 17s -30s linear infinite}@keyframes fall-186{75.814%{transform:translate(16.6317vw,75.814vh) scale(.9847)}to{transform:translate(13.12965vw,100vh) scale(.9847)}}.snow:nth-child(187){opacity:1.1006;transform:translate(2.1848vw,-10px) scale(.5942);animation:fall-187 24s -20s linear infinite}@keyframes fall-187{48.584%{transform:translate(-2.9528vw,48.584vh) scale(.5942)}to{transform:translate(-.384vw,100vh) scale(.5942)}}.snow:nth-child(188){opacity:.4144;transform:translate(46.8732vw,-10px) scale(.0523);animation:fall-188 14s -13s linear infinite}@keyframes fall-188{61.861%{transform:translate(56.0614vw,61.861vh) scale(.0523)}to{transform:translate(51.4673vw,100vh) scale(.0523)}}.snow:nth-child(189){opacity:1.4008;transform:translate(73.4259vw,-10px) scale(.3628);animation:fall-189 17s -7s linear infinite}@keyframes fall-189{67.914%{transform:translate(69.5248vw,67.914vh) scale(.3628)}to{transform:translate(71.47535vw,100vh) scale(.3628)}}.snow:nth-child(190){opacity:.1354;transform:translate(91.7381vw,-10px) scale(.861);animation:fall-190 27s -6s linear infinite}@keyframes fall-190{47.371%{transform:translate(93.9931vw,47.371vh) scale(.861)}to{transform:translate(92.8656vw,100vh) scale(.861)}}.snow:nth-child(191){opacity:1.4016;transform:translate(42.5453vw,-10px) scale(.4267);animation:fall-191 29s -11s linear infinite}@keyframes fall-191{72.88%{transform:translate(48.7207vw,72.88vh) scale(.4267)}to{transform:translate(45.633vw,100vh) scale(.4267)}}.snow:nth-child(192){opacity:1.9518;transform:translate(44.9103vw,-10px) scale(.5417);animation:fall-192 30s -9s linear infinite}@keyframes fall-192{63.349%{transform:translate(40.8034vw,63.349vh) scale(.5417)}to{transform:translate(42.85685vw,100vh) scale(.5417)}}.snow:nth-child(193){opacity:.9738;transform:translate(54.2824vw,-10px) scale(.3694);animation:fall-193 23s -6s linear infinite}@keyframes fall-193{52.136%{transform:translate(62.3646vw,52.136vh) scale(.3694)}to{transform:translate(58.3235vw,100vh) scale(.3694)}}.snow:nth-child(194){opacity:1.857;transform:translate(45.8281vw,-10px) scale(.1709);animation:fall-194 15s -23s linear infinite}@keyframes fall-194{64.646%{transform:translate(37.0612vw,64.646vh) scale(.1709)}to{transform:translate(41.44465vw,100vh) scale(.1709)}}.snow:nth-child(195){opacity:1.723;transform:translate(54.9288vw,-10px) scale(.4169);animation:fall-195 11s -20s linear infinite}@keyframes fall-195{78.66%{transform:translate(52.426vw,78.66vh) scale(.4169)}to{transform:translate(53.6774vw,100vh) scale(.4169)}}.snow:nth-child(196){opacity:1.3086;transform:translate(4.8617vw,-10px) scale(.1101);animation:fall-196 22s -1s linear infinite}@keyframes fall-196{61.313%{transform:translate(8.9677vw,61.313vh) scale(.1101)}to{transform:translate(6.9147vw,100vh) scale(.1101)}}.snow:nth-child(197){opacity:1.8534;transform:translate(53.988vw,-10px) scale(.2638);animation:fall-197 30s -6s linear infinite}@keyframes fall-197{54.197%{transform:translate(48.5042vw,54.197vh) scale(.2638)}to{transform:translate(51.2461vw,100vh) scale(.2638)}}.snow:nth-child(198){opacity:.3578;transform:translate(96.6763vw,-10px) scale(.4615);animation:fall-198 21s -9s linear infinite}@keyframes fall-198{57.321%{transform:translate(88.6247vw,57.321vh) scale(.4615)}to{transform:translate(92.6505vw,100vh) scale(.4615)}}.snow:nth-child(199){opacity:1.0488;transform:translate(85.7399vw,-10px) scale(.2474);animation:fall-199 28s -28s linear infinite}@keyframes fall-199{43.334%{transform:translate(76.2961vw,43.334vh) scale(.2474)}to{transform:translate(81.018vw,100vh) scale(.2474)}}.snow:nth-child(200){opacity:.3172;transform:translate(3.7944vw,-10px) scale(.5257);animation:fall-200 20s -15s linear infinite}@keyframes fall-200{49.515%{transform:translate(13.5401vw,49.515vh) scale(.5257)}to{transform:translate(8.66725vw,100vh) scale(.5257)}}.snow:nth-child(201){opacity:.3872;transform:translate(92.797vw,-10px) scale(.8685);animation:fall-201 15s -30s linear infinite}@keyframes fall-201{62.701%{transform:translate(90.7249vw,62.701vh) scale(.8685)}to{transform:translate(91.76095vw,100vh) scale(.8685)}}.snow:nth-child(202){opacity:1.412;transform:translate(27.0378vw,-10px) scale(.9187);animation:fall-202 24s -1s linear infinite}@keyframes fall-202{67.364%{transform:translate(32.1207vw,67.364vh) scale(.9187)}to{transform:translate(29.57925vw,100vh) scale(.9187)}}.snow:nth-child(203){opacity:1.8452;transform:translate(82.6848vw,-10px) scale(.2757);animation:fall-203 23s -22s linear infinite}@keyframes fall-203{74.828%{transform:translate(75.803vw,74.828vh) scale(.2757)}to{transform:translate(79.2439vw,100vh) scale(.2757)}}.snow:nth-child(204){opacity:1.8938;transform:translate(62.9545vw,-10px) scale(.8547);animation:fall-204 23s -26s linear infinite}@keyframes fall-204{53.127%{transform:translate(64.1239vw,53.127vh) scale(.8547)}to{transform:translate(63.5392vw,100vh) scale(.8547)}}.snow:nth-child(205){opacity:.4512;transform:translate(43.6855vw,-10px) scale(.427);animation:fall-205 14s -3s linear infinite}@keyframes fall-205{45.459%{transform:translate(46.1768vw,45.459vh) scale(.427)}to{transform:translate(44.93115vw,100vh) scale(.427)}}.snow:nth-child(206){opacity:1.6718;transform:translate(80.8341vw,-10px) scale(.3727);animation:fall-206 15s -30s linear infinite}@keyframes fall-206{48.226%{transform:translate(78.8739vw,48.226vh) scale(.3727)}to{transform:translate(79.854vw,100vh) scale(.3727)}}.snow:nth-child(207){opacity:.9596;transform:translate(29.0124vw,-10px) scale(.5223);animation:fall-207 30s -7s linear infinite}@keyframes fall-207{42.95%{transform:translate(31.5513vw,42.95vh) scale(.5223)}to{transform:translate(30.28185vw,100vh) scale(.5223)}}.snow:nth-child(208){opacity:1.5932;transform:translate(90.5593vw,-10px) scale(.7284);animation:fall-208 30s -25s linear infinite}@keyframes fall-208{37.373%{transform:translate(90.1668vw,37.373vh) scale(.7284)}to{transform:translate(90.36305vw,100vh) scale(.7284)}}.snow:nth-child(209){opacity:1.8496;transform:translate(8.3596vw,-10px) scale(.7685);animation:fall-209 15s -19s linear infinite}@keyframes fall-209{50.488%{transform:translate(8.9224vw,50.488vh) scale(.7685)}to{transform:translate(8.641vw,100vh) scale(.7685)}}.snow:nth-child(210){opacity:.3794;transform:translate(80.4535vw,-10px) scale(.8338);animation:fall-210 23s -26s linear infinite}@keyframes fall-210{35.24%{transform:translate(89.374vw,35.24vh) scale(.8338)}to{transform:translate(84.91375vw,100vh) scale(.8338)}}.snow:nth-child(211){opacity:.9398;transform:translate(16.4085vw,-10px) scale(.6838);animation:fall-211 17s -26s linear infinite}@keyframes fall-211{37.375%{transform:translate(15.3753vw,37.375vh) scale(.6838)}to{transform:translate(15.8919vw,100vh) scale(.6838)}}.snow:nth-child(212){opacity:.403;transform:translate(24.2344vw,-10px) scale(.2773);animation:fall-212 25s -11s linear infinite}@keyframes fall-212{58.832%{transform:translate(27.0569vw,58.832vh) scale(.2773)}to{transform:translate(25.64565vw,100vh) scale(.2773)}}.snow:nth-child(213){opacity:1.4934;transform:translate(96.8474vw,-10px) scale(.9948);animation:fall-213 15s -28s linear infinite}@keyframes fall-213{40.919%{transform:translate(99.1215vw,40.919vh) scale(.9948)}to{transform:translate(97.98445vw,100vh) scale(.9948)}}.snow:nth-child(214){opacity:1.424;transform:translate(44.438vw,-10px) scale(.5358);animation:fall-214 23s -27s linear infinite}@keyframes fall-214{73.958%{transform:translate(51.7418vw,73.958vh) scale(.5358)}to{transform:translate(48.0899vw,100vh) scale(.5358)}}.snow:nth-child(215){opacity:1.6952;transform:translate(41.8966vw,-10px) scale(.909);animation:fall-215 22s -24s linear infinite}@keyframes fall-215{65.899%{transform:translate(36.2726vw,65.899vh) scale(.909)}to{transform:translate(39.0846vw,100vh) scale(.909)}}.snow:nth-child(216){opacity:.0702;transform:translate(82.7481vw,-10px) scale(.7918);animation:fall-216 23s -4s linear infinite}@keyframes fall-216{72.207%{transform:translate(79.9992vw,72.207vh) scale(.7918)}to{transform:translate(81.37365vw,100vh) scale(.7918)}}.snow:nth-child(217){opacity:1.6868;transform:translate(56.3888vw,-10px) scale(.1607);animation:fall-217 13s -1s linear infinite}@keyframes fall-217{55.694%{transform:translate(58.3845vw,55.694vh) scale(.1607)}to{transform:translate(57.38665vw,100vh) scale(.1607)}}.snow:nth-child(218){opacity:1.7954;transform:translate(78.5203vw,-10px) scale(.6157);animation:fall-218 10s -12s linear infinite}@keyframes fall-218{57.224%{transform:translate(87.3909vw,57.224vh) scale(.6157)}to{transform:translate(82.9556vw,100vh) scale(.6157)}}.snow:nth-child(219){opacity:1.027;transform:translate(20.5988vw,-10px) scale(.0003);animation:fall-219 26s -8s linear infinite}@keyframes fall-219{78.386%{transform:translate(28.3794vw,78.386vh) scale(.0003)}to{transform:translate(24.4891vw,100vh) scale(.0003)}}.snow:nth-child(220){opacity:1.4054;transform:translate(82.514vw,-10px) scale(.9973);animation:fall-220 24s -16s linear infinite}@keyframes fall-220{41.788%{transform:translate(87.0817vw,41.788vh) scale(.9973)}to{transform:translate(84.79785vw,100vh) scale(.9973)}}.snow:nth-child(221){opacity:1.2116;transform:translate(3.5749vw,-10px) scale(.714);animation:fall-221 27s -30s linear infinite}@keyframes fall-221{38.064%{transform:translate(8.0005vw,38.064vh) scale(.714)}to{transform:translate(5.7877vw,100vh) scale(.714)}}.snow:nth-child(222){opacity:.0306;transform:translate(66.6742vw,-10px) scale(.9414);animation:fall-222 28s -18s linear infinite}@keyframes fall-222{40.257%{transform:translate(70.245vw,40.257vh) scale(.9414)}to{transform:translate(68.4596vw,100vh) scale(.9414)}}.snow:nth-child(223){opacity:1.4426;transform:translate(36.8019vw,-10px) scale(.497);animation:fall-223 13s -28s linear infinite}@keyframes fall-223{66.41%{transform:translate(30.8472vw,66.41vh) scale(.497)}to{transform:translate(33.82455vw,100vh) scale(.497)}}.snow:nth-child(224){opacity:1.9978;transform:translate(95.658vw,-10px) scale(.7243);animation:fall-224 10s -2s linear infinite}@keyframes fall-224{35.591%{transform:translate(88.6221vw,35.591vh) scale(.7243)}to{transform:translate(92.14005vw,100vh) scale(.7243)}}.snow:nth-child(225){opacity:.0728;transform:translate(25.7491vw,-10px) scale(.0611);animation:fall-225 16s -11s linear infinite}@keyframes fall-225{32.794%{transform:translate(30.1387vw,32.794vh) scale(.0611)}to{transform:translate(27.9439vw,100vh) scale(.0611)}}.snow:nth-child(226){opacity:.4006;transform:translate(10.6915vw,-10px) scale(.3273);animation:fall-226 16s -20s linear infinite}@keyframes fall-226{71.139%{transform:translate(7.0403vw,71.139vh) scale(.3273)}to{transform:translate(8.8659vw,100vh) scale(.3273)}}.snow:nth-child(227){opacity:.498;transform:translate(31.6405vw,-10px) scale(.935);animation:fall-227 27s -22s linear infinite}@keyframes fall-227{34.366%{transform:translate(39.7042vw,34.366vh) scale(.935)}to{transform:translate(35.67235vw,100vh) scale(.935)}}.snow:nth-child(228){opacity:.5072;transform:translate(54.2339vw,-10px) scale(.6916);animation:fall-228 30s -9s linear infinite}@keyframes fall-228{74.646%{transform:translate(46.1385vw,74.646vh) scale(.6916)}to{transform:translate(50.1862vw,100vh) scale(.6916)}}.snow:nth-child(229){opacity:1.202;transform:translate(12.0854vw,-10px) scale(.8339);animation:fall-229 30s -12s linear infinite}@keyframes fall-229{63.611%{transform:translate(17.6395vw,63.611vh) scale(.8339)}to{transform:translate(14.86245vw,100vh) scale(.8339)}}.snow:nth-child(230){opacity:1.1242;transform:translate(22.0359vw,-10px) scale(.0062);animation:fall-230 21s -29s linear infinite}@keyframes fall-230{68.152%{transform:translate(13.1104vw,68.152vh) scale(.0062)}to{transform:translate(17.57315vw,100vh) scale(.0062)}}.snow:nth-child(231){opacity:1.6556;transform:translate(4.0086vw,-10px) scale(.42);animation:fall-231 14s -24s linear infinite}@keyframes fall-231{49.509%{transform:translate(12.538vw,49.509vh) scale(.42)}to{transform:translate(8.2733vw,100vh) scale(.42)}}.snow:nth-child(232){opacity:.6476;transform:translate(59.0826vw,-10px) scale(.6269);animation:fall-232 12s -16s linear infinite}@keyframes fall-232{58.908%{transform:translate(51.2038vw,58.908vh) scale(.6269)}to{transform:translate(55.1432vw,100vh) scale(.6269)}}.snow:nth-child(233){opacity:1.302;transform:translate(92.077vw,-10px) scale(.8149);animation:fall-233 15s -19s linear infinite}@keyframes fall-233{78.543%{transform:translate(93.557vw,78.543vh) scale(.8149)}to{transform:translate(92.817vw,100vh) scale(.8149)}}.snow:nth-child(234){opacity:1.221;transform:translate(95.9722vw,-10px) scale(.3099);animation:fall-234 18s -17s linear infinite}@keyframes fall-234{75.005%{transform:translate(91.9814vw,75.005vh) scale(.3099)}to{transform:translate(93.9768vw,100vh) scale(.3099)}}.snow:nth-child(235){opacity:.6918;transform:translate(83.3378vw,-10px) scale(.044);animation:fall-235 25s -24s linear infinite}@keyframes fall-235{67.713%{transform:translate(87.0717vw,67.713vh) scale(.044)}to{transform:translate(85.20475vw,100vh) scale(.044)}}.snow:nth-child(236){opacity:1.9036;transform:translate(99.4769vw,-10px) scale(.3536);animation:fall-236 22s -20s linear infinite}@keyframes fall-236{46.556%{transform:translate(97.4777vw,46.556vh) scale(.3536)}to{transform:translate(98.4773vw,100vh) scale(.3536)}}.snow:nth-child(237){opacity:1.3782;transform:translate(82.019vw,-10px) scale(.068);animation:fall-237 11s -30s linear infinite}@keyframes fall-237{59.294%{transform:translate(88.0203vw,59.294vh) scale(.068)}to{transform:translate(85.01965vw,100vh) scale(.068)}}.snow:nth-child(238){opacity:1.4382;transform:translate(38.1678vw,-10px) scale(.1915);animation:fall-238 30s -18s linear infinite}@keyframes fall-238{67.259%{transform:translate(41.1929vw,67.259vh) scale(.1915)}to{transform:translate(39.68035vw,100vh) scale(.1915)}}.snow:nth-child(239){opacity:1.7952;transform:translate(74.3349vw,-10px) scale(.8891);animation:fall-239 18s -30s linear infinite}@keyframes fall-239{77.121%{transform:translate(81.6357vw,77.121vh) scale(.8891)}to{transform:translate(77.9853vw,100vh) scale(.8891)}}.snow:nth-child(240){opacity:.0812;transform:translate(69.2472vw,-10px) scale(.0156);animation:fall-240 20s -9s linear infinite}@keyframes fall-240{36.228%{transform:translate(70.0645vw,36.228vh) scale(.0156)}to{transform:translate(69.65585vw,100vh) scale(.0156)}}.snow:nth-child(241){opacity:1.7862;transform:translate(33.0189vw,-10px) scale(.1923);animation:fall-241 26s -16s linear infinite}@keyframes fall-241{54.071%{transform:translate(38.1314vw,54.071vh) scale(.1923)}to{transform:translate(35.57515vw,100vh) scale(.1923)}}.snow:nth-child(242){opacity:1.637;transform:translate(5.6504vw,-10px) scale(.5016);animation:fall-242 17s -25s linear infinite}@keyframes fall-242{60.965%{transform:translate(11.2384vw,60.965vh) scale(.5016)}to{transform:translate(8.4444vw,100vh) scale(.5016)}}.snow:nth-child(243){opacity:.1382;transform:translate(82.8424vw,-10px) scale(.7614);animation:fall-243 28s -3s linear infinite}@keyframes fall-243{75.445%{transform:translate(77.8058vw,75.445vh) scale(.7614)}to{transform:translate(80.3241vw,100vh) scale(.7614)}}.snow:nth-child(244){opacity:1.3506;transform:translate(14.1933vw,-10px) scale(.4583);animation:fall-244 14s -25s linear infinite}@keyframes fall-244{47.37%{transform:translate(22.9336vw,47.37vh) scale(.4583)}to{transform:translate(18.56345vw,100vh) scale(.4583)}}.snow:nth-child(245){opacity:1.2418;transform:translate(56.7877vw,-10px) scale(.1697);animation:fall-245 14s -12s linear infinite}@keyframes fall-245{50.304%{transform:translate(56.6534vw,50.304vh) scale(.1697)}to{transform:translate(56.72055vw,100vh) scale(.1697)}}.snow:nth-child(246){opacity:.2568;transform:translate(65.5607vw,-10px) scale(.6947);animation:fall-246 23s -9s linear infinite}@keyframes fall-246{79.594%{transform:translate(60.4747vw,79.594vh) scale(.6947)}to{transform:translate(63.0177vw,100vh) scale(.6947)}}.snow:nth-child(247){opacity:1.0222;transform:translate(24.4683vw,-10px) scale(.8484);animation:fall-247 16s -7s linear infinite}@keyframes fall-247{59.078%{transform:translate(19.1774vw,59.078vh) scale(.8484)}to{transform:translate(21.82285vw,100vh) scale(.8484)}}.snow:nth-child(248){opacity:1.6552;transform:translate(43.8137vw,-10px) scale(.574);animation:fall-248 22s -13s linear infinite}@keyframes fall-248{72.099%{transform:translate(42.9023vw,72.099vh) scale(.574)}to{transform:translate(43.358vw,100vh) scale(.574)}}.snow:nth-child(249){opacity:.6024;transform:translate(89.703vw,-10px) scale(.8846);animation:fall-249 16s -15s linear infinite}@keyframes fall-249{40.093%{transform:translate(90.1564vw,40.093vh) scale(.8846)}to{transform:translate(89.9297vw,100vh) scale(.8846)}}.snow:nth-child(250){opacity:1.3078;transform:translate(16.6519vw,-10px) scale(.1863);animation:fall-250 23s -21s linear infinite}@keyframes fall-250{63.493%{transform:translate(14.8115vw,63.493vh) scale(.1863)}to{transform:translate(15.7317vw,100vh) scale(.1863)}}.snow:nth-child(251){opacity:.8476;transform:translate(81.507vw,-10px) scale(.2598);animation:fall-251 30s -23s linear infinite}@keyframes fall-251{63.652%{transform:translate(75.3345vw,63.652vh) scale(.2598)}to{transform:translate(78.42075vw,100vh) scale(.2598)}}.snow:nth-child(252){opacity:1.674;transform:translate(8.2064vw,-10px) scale(.5146);animation:fall-252 30s -12s linear infinite}@keyframes fall-252{66.841%{transform:translate(4.0527vw,66.841vh) scale(.5146)}to{transform:translate(6.12955vw,100vh) scale(.5146)}}.snow:nth-child(253){opacity:.0356;transform:translate(23.3012vw,-10px) scale(.7317);animation:fall-253 14s -22s linear infinite}@keyframes fall-253{63.673%{transform:translate(24.7413vw,63.673vh) scale(.7317)}to{transform:translate(24.02125vw,100vh) scale(.7317)}}.snow:nth-child(254){opacity:.779;transform:translate(55.1415vw,-10px) scale(.6726);animation:fall-254 19s -6s linear infinite}@keyframes fall-254{59.465%{transform:translate(60.3719vw,59.465vh) scale(.6726)}to{transform:translate(57.7567vw,100vh) scale(.6726)}}.snow:nth-child(255){opacity:1.7226;transform:translate(82.3225vw,-10px) scale(.7047);animation:fall-255 15s -17s linear infinite}@keyframes fall-255{32.365%{transform:translate(81.2713vw,32.365vh) scale(.7047)}to{transform:translate(81.7969vw,100vh) scale(.7047)}}.snow:nth-child(256){opacity:1.6482;transform:translate(2.2253vw,-10px) scale(.5655);animation:fall-256 24s -18s linear infinite}@keyframes fall-256{61.401%{transform:translate(11.0048vw,61.401vh) scale(.5655)}to{transform:translate(6.61505vw,100vh) scale(.5655)}}.snow:nth-child(257){opacity:.35;transform:translate(1.7899vw,-10px) scale(.3886);animation:fall-257 23s -28s linear infinite}@keyframes fall-257{55.919%{transform:translate(-6.8924vw,55.919vh) scale(.3886)}to{transform:translate(-2.55125vw,100vh) scale(.3886)}}.snow:nth-child(258){opacity:.9142;transform:translate(25.754vw,-10px) scale(.4989);animation:fall-258 27s -4s linear infinite}@keyframes fall-258{65.879%{transform:translate(23.9551vw,65.879vh) scale(.4989)}to{transform:translate(24.85455vw,100vh) scale(.4989)}}.snow:nth-child(259){opacity:1.8014;transform:translate(22.7324vw,-10px) scale(.809);animation:fall-259 17s -15s linear infinite}@keyframes fall-259{77.74%{transform:translate(26.3633vw,77.74vh) scale(.809)}to{transform:translate(24.54785vw,100vh) scale(.809)}}.snow:nth-child(260){opacity:.895;transform:translate(48.0427vw,-10px) scale(.3587);animation:fall-260 29s -5s linear infinite}@keyframes fall-260{73.91%{transform:translate(39.1027vw,73.91vh) scale(.3587)}to{transform:translate(43.5727vw,100vh) scale(.3587)}}.snow:nth-child(261){opacity:1.061;transform:translate(43.0922vw,-10px) scale(.5863);animation:fall-261 14s -14s linear infinite}@keyframes fall-261{48.806%{transform:translate(43.3552vw,48.806vh) scale(.5863)}to{transform:translate(43.2237vw,100vh) scale(.5863)}}.snow:nth-child(262){opacity:1.975;transform:translate(68.912vw,-10px) scale(.1078);animation:fall-262 25s -5s linear infinite}@keyframes fall-262{59.834%{transform:translate(73.1835vw,59.834vh) scale(.1078)}to{transform:translate(71.04775vw,100vh) scale(.1078)}}.snow:nth-child(263){opacity:1.7122;transform:translate(58.7437vw,-10px) scale(.8433);animation:fall-263 22s -5s linear infinite}@keyframes fall-263{31.797%{transform:translate(56.3443vw,31.797vh) scale(.8433)}to{transform:translate(57.544vw,100vh) scale(.8433)}}.snow:nth-child(264){opacity:.0702;transform:translate(35.1696vw,-10px) scale(.0263);animation:fall-264 27s -5s linear infinite}@keyframes fall-264{68.284%{transform:translate(31.7655vw,68.284vh) scale(.0263)}to{transform:translate(33.46755vw,100vh) scale(.0263)}}.snow:nth-child(265){opacity:1.5902;transform:translate(91.381vw,-10px) scale(.6331);animation:fall-265 26s -16s linear infinite}@keyframes fall-265{73.871%{transform:translate(99.9231vw,73.871vh) scale(.6331)}to{transform:translate(95.65205vw,100vh) scale(.6331)}}.snow:nth-child(266){opacity:.5416;transform:translate(61.4415vw,-10px) scale(.9216);animation:fall-266 20s -8s linear infinite}@keyframes fall-266{70.427%{transform:translate(60.482vw,70.427vh) scale(.9216)}to{transform:translate(60.96175vw,100vh) scale(.9216)}}.snow:nth-child(267){opacity:1.2008;transform:translate(31.0771vw,-10px) scale(.5909);animation:fall-267 10s -12s linear infinite}@keyframes fall-267{42.123%{transform:translate(28.5139vw,42.123vh) scale(.5909)}to{transform:translate(29.7955vw,100vh) scale(.5909)}}.snow:nth-child(268){opacity:.336;transform:translate(19.4484vw,-10px) scale(.2961);animation:fall-268 18s -8s linear infinite}@keyframes fall-268{71.452%{transform:translate(24.1002vw,71.452vh) scale(.2961)}to{transform:translate(21.7743vw,100vh) scale(.2961)}}.snow:nth-child(269){opacity:.4218;transform:translate(55.0805vw,-10px) scale(.8206);animation:fall-269 15s -27s linear infinite}@keyframes fall-269{36.098%{transform:translate(63.1385vw,36.098vh) scale(.8206)}to{transform:translate(59.1095vw,100vh) scale(.8206)}}.snow:nth-child(270){opacity:.118;transform:translate(13.2304vw,-10px) scale(.3636);animation:fall-270 29s -16s linear infinite}@keyframes fall-270{57.044%{transform:translate(11.5791vw,57.044vh) scale(.3636)}to{transform:translate(12.40475vw,100vh) scale(.3636)}}.snow:nth-child(271){opacity:.277;transform:translate(16.0711vw,-10px) scale(.398);animation:fall-271 21s -6s linear infinite}@keyframes fall-271{59.63%{transform:translate(15.0076vw,59.63vh) scale(.398)}to{transform:translate(15.53935vw,100vh) scale(.398)}}.snow:nth-child(272){opacity:.5678;transform:translate(29.7855vw,-10px) scale(.6277);animation:fall-272 20s -3s linear infinite}@keyframes fall-272{38.256%{transform:translate(34.9014vw,38.256vh) scale(.6277)}to{transform:translate(32.34345vw,100vh) scale(.6277)}}.snow:nth-child(273){opacity:1.225;transform:translate(50.9353vw,-10px) scale(.2716);animation:fall-273 17s -7s linear infinite}@keyframes fall-273{72.38%{transform:translate(59.855vw,72.38vh) scale(.2716)}to{transform:translate(55.39515vw,100vh) scale(.2716)}}.snow:nth-child(274){opacity:.5222;transform:translate(20.5397vw,-10px) scale(.206);animation:fall-274 30s -19s linear infinite}@keyframes fall-274{32.094%{transform:translate(21.5435vw,32.094vh) scale(.206)}to{transform:translate(21.0416vw,100vh) scale(.206)}}.snow:nth-child(275){opacity:.1712;transform:translate(79.1277vw,-10px) scale(.2812);animation:fall-275 14s -11s linear infinite}@keyframes fall-275{58.235%{transform:translate(78.9533vw,58.235vh) scale(.2812)}to{transform:translate(79.0405vw,100vh) scale(.2812)}}.snow:nth-child(276){opacity:.96;transform:translate(40.9928vw,-10px) scale(.405);animation:fall-276 19s -13s linear infinite}@keyframes fall-276{56.331%{transform:translate(32.9898vw,56.331vh) scale(.405)}to{transform:translate(36.9913vw,100vh) scale(.405)}}.snow:nth-child(277){opacity:1.5888;transform:translate(28.0297vw,-10px) scale(.4325);animation:fall-277 15s -16s linear infinite}@keyframes fall-277{54.834%{transform:translate(34.3319vw,54.834vh) scale(.4325)}to{transform:translate(31.1808vw,100vh) scale(.4325)}}.snow:nth-child(278){opacity:.3792;transform:translate(86.6151vw,-10px) scale(.11);animation:fall-278 26s -25s linear infinite}@keyframes fall-278{36.775%{transform:translate(77.736vw,36.775vh) scale(.11)}to{transform:translate(82.17555vw,100vh) scale(.11)}}.snow:nth-child(279){opacity:.2666;transform:translate(40.1582vw,-10px) scale(.9131);animation:fall-279 11s -6s linear infinite}@keyframes fall-279{72.125%{transform:translate(32.3946vw,72.125vh) scale(.9131)}to{transform:translate(36.2764vw,100vh) scale(.9131)}}.snow:nth-child(280){opacity:1.2322;transform:translate(39.8603vw,-10px) scale(.5978);animation:fall-280 18s -1s linear infinite}@keyframes fall-280{74.973%{transform:translate(37.1803vw,74.973vh) scale(.5978)}to{transform:translate(38.5203vw,100vh) scale(.5978)}}.snow:nth-child(281){opacity:.622;transform:translate(3.479vw,-10px) scale(.7319);animation:fall-281 23s -18s linear infinite}@keyframes fall-281{66.004%{transform:translate(10.3528vw,66.004vh) scale(.7319)}to{transform:translate(6.9159vw,100vh) scale(.7319)}}.snow:nth-child(282){opacity:.0682;transform:translate(97.6553vw,-10px) scale(.1545);animation:fall-282 18s -11s linear infinite}@keyframes fall-282{70.662%{transform:translate(95.6467vw,70.662vh) scale(.1545)}to{transform:translate(96.651vw,100vh) scale(.1545)}}.snow:nth-child(283){opacity:.9352;transform:translate(63.1957vw,-10px) scale(.075);animation:fall-283 30s -7s linear infinite}@keyframes fall-283{72.527%{transform:translate(70.7996vw,72.527vh) scale(.075)}to{transform:translate(66.99765vw,100vh) scale(.075)}}.snow:nth-child(284){opacity:.5646;transform:translate(42.5881vw,-10px) scale(.138);animation:fall-284 27s -26s linear infinite}@keyframes fall-284{38.041%{transform:translate(49.8385vw,38.041vh) scale(.138)}to{transform:translate(46.2133vw,100vh) scale(.138)}}.snow:nth-child(285){opacity:1.6892;transform:translate(22.6674vw,-10px) scale(.1659);animation:fall-285 12s -4s linear infinite}@keyframes fall-285{43.117%{transform:translate(17.9722vw,43.117vh) scale(.1659)}to{transform:translate(20.3198vw,100vh) scale(.1659)}}.snow:nth-child(286){opacity:1.0204;transform:translate(53.9924vw,-10px) scale(.7961);animation:fall-286 26s -8s linear infinite}@keyframes fall-286{56.63%{transform:translate(54.0777vw,56.63vh) scale(.7961)}to{transform:translate(54.03505vw,100vh) scale(.7961)}}.snow:nth-child(287){opacity:.8958;transform:translate(63.9617vw,-10px) scale(.4293);animation:fall-287 26s -15s linear infinite}@keyframes fall-287{39.785%{transform:translate(58.8081vw,39.785vh) scale(.4293)}to{transform:translate(61.3849vw,100vh) scale(.4293)}}.snow:nth-child(288){opacity:.4892;transform:translate(65.9908vw,-10px) scale(.6777);animation:fall-288 19s -4s linear infinite}@keyframes fall-288{52.85%{transform:translate(56.4228vw,52.85vh) scale(.6777)}to{transform:translate(61.2068vw,100vh) scale(.6777)}}.snow:nth-child(289){opacity:1.128;transform:translate(72.8179vw,-10px) scale(.7821);animation:fall-289 24s -12s linear infinite}@keyframes fall-289{33.709%{transform:translate(77.8094vw,33.709vh) scale(.7821)}to{transform:translate(75.31365vw,100vh) scale(.7821)}}.snow:nth-child(290){opacity:1.7862;transform:translate(66.0776vw,-10px) scale(.6123);animation:fall-290 20s -25s linear infinite}@keyframes fall-290{42.036%{transform:translate(75.3411vw,42.036vh) scale(.6123)}to{transform:translate(70.70935vw,100vh) scale(.6123)}}.snow:nth-child(291){opacity:1.7314;transform:translate(60.4071vw,-10px) scale(.7186);animation:fall-291 21s -28s linear infinite}@keyframes fall-291{46.463%{transform:translate(51.4315vw,46.463vh) scale(.7186)}to{transform:translate(55.9193vw,100vh) scale(.7186)}}.snow:nth-child(292){opacity:.779;transform:translate(69.4309vw,-10px) scale(.9765);animation:fall-292 25s -4s linear infinite}@keyframes fall-292{67.819%{transform:translate(78.9329vw,67.819vh) scale(.9765)}to{transform:translate(74.1819vw,100vh) scale(.9765)}}.snow:nth-child(293){opacity:.7968;transform:translate(97.6649vw,-10px) scale(.5748);animation:fall-293 12s -20s linear infinite}@keyframes fall-293{49.727%{transform:translate(105.2483vw,49.727vh) scale(.5748)}to{transform:translate(101.4566vw,100vh) scale(.5748)}}.snow:nth-child(294){opacity:.5258;transform:translate(53.2493vw,-10px) scale(.9444);animation:fall-294 29s -8s linear infinite}@keyframes fall-294{75.616%{transform:translate(56.9689vw,75.616vh) scale(.9444)}to{transform:translate(55.1091vw,100vh) scale(.9444)}}.snow:nth-child(295){opacity:.007;transform:translate(27.038vw,-10px) scale(.0008);animation:fall-295 18s -15s linear infinite}@keyframes fall-295{79.26%{transform:translate(30.8147vw,79.26vh) scale(.0008)}to{transform:translate(28.92635vw,100vh) scale(.0008)}}.snow:nth-child(296){opacity:1.071;transform:translate(65.5936vw,-10px) scale(.0231);animation:fall-296 23s -21s linear infinite}@keyframes fall-296{35.871%{transform:translate(59.6956vw,35.871vh) scale(.0231)}to{transform:translate(62.6446vw,100vh) scale(.0231)}}.snow:nth-child(297){opacity:1.5292;transform:translate(.8008vw,-10px) scale(.777);animation:fall-297 14s -21s linear infinite}@keyframes fall-297{59.655%{transform:translate(-6.2153vw,59.655vh) scale(.777)}to{transform:translate(-2.70725vw,100vh) scale(.777)}}.snow:nth-child(298){opacity:1.9484;transform:translate(79.7618vw,-10px) scale(.2702);animation:fall-298 14s -4s linear infinite}@keyframes fall-298{65.519%{transform:translate(89.6478vw,65.519vh) scale(.2702)}to{transform:translate(84.7048vw,100vh) scale(.2702)}}.snow:nth-child(299){opacity:.7924;transform:translate(7.1252vw,-10px) scale(.1974);animation:fall-299 16s -27s linear infinite}@keyframes fall-299{39.81%{transform:translate(7.3619vw,39.81vh) scale(.1974)}to{transform:translate(7.24355vw,100vh) scale(.1974)}}.snow:nth-child(300){opacity:1.5908;transform:translate(87.9784vw,-10px) scale(.9065);animation:fall-300 29s -20s linear infinite}@keyframes fall-300{63.362%{transform:translate(89.2529vw,63.362vh) scale(.9065)}to{transform:translate(88.61565vw,100vh) scale(.9065)}}.snow:nth-child(301){opacity:1.2098;transform:translate(50.4403vw,-10px) scale(.805);animation:fall-301 19s -16s linear infinite}@keyframes fall-301{63.827%{transform:translate(44.3253vw,63.827vh) scale(.805)}to{transform:translate(47.3828vw,100vh) scale(.805)}}.snow:nth-child(302){opacity:1.6068;transform:translate(48.6069vw,-10px) scale(.4579);animation:fall-302 26s -16s linear infinite}@keyframes fall-302{62.345%{transform:translate(47.0869vw,62.345vh) scale(.4579)}to{transform:translate(47.8469vw,100vh) scale(.4579)}}.snow:nth-child(303){opacity:1.034;transform:translate(73.4481vw,-10px) scale(.0961);animation:fall-303 22s -15s linear infinite}@keyframes fall-303{77.08%{transform:translate(73.3489vw,77.08vh) scale(.0961)}to{transform:translate(73.3985vw,100vh) scale(.0961)}}.snow:nth-child(304){opacity:1.71;transform:translate(22.5867vw,-10px) scale(.7428);animation:fall-304 13s -24s linear infinite}@keyframes fall-304{70.686%{transform:translate(15.6286vw,70.686vh) scale(.7428)}to{transform:translate(19.10765vw,100vh) scale(.7428)}}.snow:nth-child(305){opacity:1.4438;transform:translate(43.4534vw,-10px) scale(.6966);animation:fall-305 21s -28s linear infinite}@keyframes fall-305{31.337%{transform:translate(50.8327vw,31.337vh) scale(.6966)}to{transform:translate(47.14305vw,100vh) scale(.6966)}}.snow:nth-child(306){opacity:1.4224;transform:translate(14.5523vw,-10px) scale(.5685);animation:fall-306 24s -16s linear infinite}@keyframes fall-306{41.138%{transform:translate(14.2852vw,41.138vh) scale(.5685)}to{transform:translate(14.41875vw,100vh) scale(.5685)}}.snow:nth-child(307){opacity:1.7224;transform:translate(61.5806vw,-10px) scale(.1396);animation:fall-307 28s -3s linear infinite}@keyframes fall-307{57.152%{transform:translate(53.4103vw,57.152vh) scale(.1396)}to{transform:translate(57.49545vw,100vh) scale(.1396)}}.snow:nth-child(308){opacity:.3786;transform:translate(77.5311vw,-10px) scale(.1481);animation:fall-308 15s -11s linear infinite}@keyframes fall-308{65.438%{transform:translate(81.6405vw,65.438vh) scale(.1481)}to{transform:translate(79.5858vw,100vh) scale(.1481)}}.snow:nth-child(309){opacity:1.4254;transform:translate(69.0704vw,-10px) scale(.7947);animation:fall-309 23s -1s linear infinite}@keyframes fall-309{48.353%{transform:translate(59.9048vw,48.353vh) scale(.7947)}to{transform:translate(64.4876vw,100vh) scale(.7947)}}.snow:nth-child(310){opacity:1.2282;transform:translate(91.9599vw,-10px) scale(.7263);animation:fall-310 17s -19s linear infinite}@keyframes fall-310{38.793%{transform:translate(99.5352vw,38.793vh) scale(.7263)}to{transform:translate(95.74755vw,100vh) scale(.7263)}}.snow:nth-child(311){opacity:.0984;transform:translate(91.8486vw,-10px) scale(.7169);animation:fall-311 13s -11s linear infinite}@keyframes fall-311{37.017%{transform:translate(98.0524vw,37.017vh) scale(.7169)}to{transform:translate(94.9505vw,100vh) scale(.7169)}}.snow:nth-child(312){opacity:1.1142;transform:translate(64.1684vw,-10px) scale(.6936);animation:fall-312 15s -28s linear infinite}@keyframes fall-312{47.087%{transform:translate(57.4839vw,47.087vh) scale(.6936)}to{transform:translate(60.82615vw,100vh) scale(.6936)}}.snow:nth-child(313){opacity:1.9506;transform:translate(63.7372vw,-10px) scale(.8402);animation:fall-313 26s -6s linear infinite}@keyframes fall-313{74.975%{transform:translate(56.2379vw,74.975vh) scale(.8402)}to{transform:translate(59.98755vw,100vh) scale(.8402)}}.snow:nth-child(314){opacity:1.158;transform:translate(24.8629vw,-10px) scale(.2143);animation:fall-314 23s -24s linear infinite}@keyframes fall-314{70.302%{transform:translate(15.794vw,70.302vh) scale(.2143)}to{transform:translate(20.32845vw,100vh) scale(.2143)}}.snow:nth-child(315){opacity:1.7664;transform:translate(8.657vw,-10px) scale(.0248);animation:fall-315 30s -29s linear infinite}@keyframes fall-315{72.142%{transform:translate(9.873vw,72.142vh) scale(.0248)}to{transform:translate(9.265vw,100vh) scale(.0248)}}.snow:nth-child(316){opacity:.4222;transform:translate(26.5984vw,-10px) scale(.4191);animation:fall-316 24s -28s linear infinite}@keyframes fall-316{71.728%{transform:translate(31.2108vw,71.728vh) scale(.4191)}to{transform:translate(28.9046vw,100vh) scale(.4191)}}.snow:nth-child(317){opacity:1.7934;transform:translate(59.2685vw,-10px) scale(.1872);animation:fall-317 25s -27s linear infinite}@keyframes fall-317{41.155%{transform:translate(63.2858vw,41.155vh) scale(.1872)}to{transform:translate(61.27715vw,100vh) scale(.1872)}}.snow:nth-child(318){opacity:1.274;transform:translate(49.2191vw,-10px) scale(.1274);animation:fall-318 28s -24s linear infinite}@keyframes fall-318{34.648%{transform:translate(50.7163vw,34.648vh) scale(.1274)}to{transform:translate(49.9677vw,100vh) scale(.1274)}}.snow:nth-child(319){opacity:1.4514;transform:translate(91.9093vw,-10px) scale(.9224);animation:fall-319 17s -18s linear infinite}@keyframes fall-319{40.647%{transform:translate(97.6189vw,40.647vh) scale(.9224)}to{transform:translate(94.7641vw,100vh) scale(.9224)}}.snow:nth-child(320){opacity:.509;transform:translate(99.4735vw,-10px) scale(.4422);animation:fall-320 10s -6s linear infinite}@keyframes fall-320{51.224%{transform:translate(107.5145vw,51.224vh) scale(.4422)}to{transform:translate(103.494vw,100vh) scale(.4422)}}.snow:nth-child(321){opacity:1.0182;transform:translate(24.658vw,-10px) scale(.26);animation:fall-321 24s -14s linear infinite}@keyframes fall-321{32.759%{transform:translate(17.6598vw,32.759vh) scale(.26)}to{transform:translate(21.1589vw,100vh) scale(.26)}}.snow:nth-child(322){opacity:.2652;transform:translate(98.8063vw,-10px) scale(.1022);animation:fall-322 10s -15s linear infinite}@keyframes fall-322{72.392%{transform:translate(108.7946vw,72.392vh) scale(.1022)}to{transform:translate(103.80045vw,100vh) scale(.1022)}}.snow:nth-child(323){opacity:.336;transform:translate(93.773vw,-10px) scale(.1869);animation:fall-323 17s -27s linear infinite}@keyframes fall-323{70.764%{transform:translate(97.8641vw,70.764vh) scale(.1869)}to{transform:translate(95.81855vw,100vh) scale(.1869)}}.snow:nth-child(324){opacity:1.3002;transform:translate(14.8421vw,-10px) scale(.6877);animation:fall-324 15s -16s linear infinite}@keyframes fall-324{37.637%{transform:translate(16.5392vw,37.637vh) scale(.6877)}to{transform:translate(15.69065vw,100vh) scale(.6877)}}.snow:nth-child(325){opacity:.6264;transform:translate(97.5121vw,-10px) scale(.83);animation:fall-325 19s -19s linear infinite}@keyframes fall-325{65.353%{transform:translate(99.0552vw,65.353vh) scale(.83)}to{transform:translate(98.28365vw,100vh) scale(.83)}}.snow:nth-child(326){opacity:.8366;transform:translate(90.4491vw,-10px) scale(.7114);animation:fall-326 24s -21s linear infinite}@keyframes fall-326{46.862%{transform:translate(94.2973vw,46.862vh) scale(.7114)}to{transform:translate(92.3732vw,100vh) scale(.7114)}}.snow:nth-child(327){opacity:1.9388;transform:translate(64.0793vw,-10px) scale(.2795);animation:fall-327 23s -13s linear infinite}@keyframes fall-327{67.277%{transform:translate(66.7392vw,67.277vh) scale(.2795)}to{transform:translate(65.40925vw,100vh) scale(.2795)}}.snow:nth-child(328){opacity:1.512;transform:translate(41.312vw,-10px) scale(.3764);animation:fall-328 20s -10s linear infinite}@keyframes fall-328{71.241%{transform:translate(44.0592vw,71.241vh) scale(.3764)}to{transform:translate(42.6856vw,100vh) scale(.3764)}}.snow:nth-child(329){opacity:.0278;transform:translate(14.4762vw,-10px) scale(.004);animation:fall-329 11s -21s linear infinite}@keyframes fall-329{42.356%{transform:translate(15.603vw,42.356vh) scale(.004)}to{transform:translate(15.0396vw,100vh) scale(.004)}}.snow:nth-child(330){opacity:.724;transform:translate(3.0104vw,-10px) scale(.1156);animation:fall-330 20s -4s linear infinite}@keyframes fall-330{51.357%{transform:translate(7.587vw,51.357vh) scale(.1156)}to{transform:translate(5.2987vw,100vh) scale(.1156)}}.snow:nth-child(331){opacity:1.6968;transform:translate(48.8895vw,-10px) scale(.9756);animation:fall-331 11s -12s linear infinite}@keyframes fall-331{60.44%{transform:translate(48.0384vw,60.44vh) scale(.9756)}to{transform:translate(48.46395vw,100vh) scale(.9756)}}.snow:nth-child(332){opacity:.1798;transform:translate(85.0489vw,-10px) scale(.6252);animation:fall-332 21s -14s linear infinite}@keyframes fall-332{36.317%{transform:translate(87.2552vw,36.317vh) scale(.6252)}to{transform:translate(86.15205vw,100vh) scale(.6252)}}.snow:nth-child(333){opacity:.497;transform:translate(31.0766vw,-10px) scale(.0529);animation:fall-333 15s -14s linear infinite}@keyframes fall-333{40.522%{transform:translate(40.3096vw,40.522vh) scale(.0529)}to{transform:translate(35.6931vw,100vh) scale(.0529)}}.snow:nth-child(334){opacity:1.4274;transform:translate(45.8304vw,-10px) scale(.358);animation:fall-334 20s -18s linear infinite}@keyframes fall-334{61.997%{transform:translate(44.5422vw,61.997vh) scale(.358)}to{transform:translate(45.1863vw,100vh) scale(.358)}}.snow:nth-child(335){opacity:.984;transform:translate(11.5285vw,-10px) scale(.0299);animation:fall-335 24s -3s linear infinite}@keyframes fall-335{77.852%{transform:translate(3.6237vw,77.852vh) scale(.0299)}to{transform:translate(7.5761vw,100vh) scale(.0299)}}.snow:nth-child(336){opacity:1.916;transform:translate(71.5042vw,-10px) scale(.3682);animation:fall-336 12s -2s linear infinite}@keyframes fall-336{30.117%{transform:translate(78.1999vw,30.117vh) scale(.3682)}to{transform:translate(74.85205vw,100vh) scale(.3682)}}.snow:nth-child(337){opacity:.8066;transform:translate(19.4656vw,-10px) scale(.6019);animation:fall-337 18s -27s linear infinite}@keyframes fall-337{48.669%{transform:translate(26.4178vw,48.669vh) scale(.6019)}to{transform:translate(22.9417vw,100vh) scale(.6019)}}.snow:nth-child(338){opacity:.2846;transform:translate(42.2809vw,-10px) scale(.3895);animation:fall-338 26s -27s linear infinite}@keyframes fall-338{65.981%{transform:translate(51.8111vw,65.981vh) scale(.3895)}to{transform:translate(47.046vw,100vh) scale(.3895)}}.snow:nth-child(339){opacity:1.751;transform:translate(37.4489vw,-10px) scale(.1069);animation:fall-339 19s -21s linear infinite}@keyframes fall-339{54.066%{transform:translate(45.8688vw,54.066vh) scale(.1069)}to{transform:translate(41.65885vw,100vh) scale(.1069)}}.snow:nth-child(340){opacity:.8154;transform:translate(92.0104vw,-10px) scale(.4802);animation:fall-340 19s -22s linear infinite}@keyframes fall-340{35.132%{transform:translate(100.8291vw,35.132vh) scale(.4802)}to{transform:translate(96.41975vw,100vh) scale(.4802)}}.snow:nth-child(341){opacity:.4024;transform:translate(6.8288vw,-10px) scale(.5979);animation:fall-341 20s -8s linear infinite}@keyframes fall-341{69.054%{transform:translate(14.788vw,69.054vh) scale(.5979)}to{transform:translate(10.8084vw,100vh) scale(.5979)}}.snow:nth-child(342){opacity:1.6068;transform:translate(58.009vw,-10px) scale(.3814);animation:fall-342 17s -22s linear infinite}@keyframes fall-342{63.431%{transform:translate(53.1277vw,63.431vh) scale(.3814)}to{transform:translate(55.56835vw,100vh) scale(.3814)}}.snow:nth-child(343){opacity:1.8384;transform:translate(49.8329vw,-10px) scale(.877);animation:fall-343 16s -16s linear infinite}@keyframes fall-343{72.588%{transform:translate(42.6117vw,72.588vh) scale(.877)}to{transform:translate(46.2223vw,100vh) scale(.877)}}.snow:nth-child(344){opacity:1.0424;transform:translate(59.6401vw,-10px) scale(.1865);animation:fall-344 30s -5s linear infinite}@keyframes fall-344{61.794%{transform:translate(65.2726vw,61.794vh) scale(.1865)}to{transform:translate(62.45635vw,100vh) scale(.1865)}}.snow:nth-child(345){opacity:1.9288;transform:translate(25.6691vw,-10px) scale(.5113);animation:fall-345 12s -16s linear infinite}@keyframes fall-345{54.208%{transform:translate(16.4049vw,54.208vh) scale(.5113)}to{transform:translate(21.037vw,100vh) scale(.5113)}}.snow:nth-child(346){opacity:1.7282;transform:translate(3.5734vw,-10px) scale(.1985);animation:fall-346 16s -13s linear infinite}@keyframes fall-346{61.559%{transform:translate(12.206vw,61.559vh) scale(.1985)}to{transform:translate(7.8897vw,100vh) scale(.1985)}}.snow:nth-child(347){opacity:.1532;transform:translate(31.7038vw,-10px) scale(.4554);animation:fall-347 20s -6s linear infinite}@keyframes fall-347{70.328%{transform:translate(39.5109vw,70.328vh) scale(.4554)}to{transform:translate(35.60735vw,100vh) scale(.4554)}}.snow:nth-child(348){opacity:.736;transform:translate(97.1846vw,-10px) scale(.2385);animation:fall-348 10s -13s linear infinite}@keyframes fall-348{55.256%{transform:translate(99.0974vw,55.256vh) scale(.2385)}to{transform:translate(98.141vw,100vh) scale(.2385)}}.snow:nth-child(349){opacity:1.9818;transform:translate(69.6654vw,-10px) scale(.4094);animation:fall-349 25s -11s linear infinite}@keyframes fall-349{34.658%{transform:translate(61.3688vw,34.658vh) scale(.4094)}to{transform:translate(65.5171vw,100vh) scale(.4094)}}.snow:nth-child(350){opacity:.5212;transform:translate(20.011vw,-10px) scale(.8925);animation:fall-350 13s -13s linear infinite}@keyframes fall-350{55.463%{transform:translate(24.7526vw,55.463vh) scale(.8925)}to{transform:translate(22.3818vw,100vh) scale(.8925)}}.snow:nth-child(351){opacity:1.5536;transform:translate(27.7487vw,-10px) scale(.9566);animation:fall-351 25s -1s linear infinite}@keyframes fall-351{64.377%{transform:translate(31.2061vw,64.377vh) scale(.9566)}to{transform:translate(29.4774vw,100vh) scale(.9566)}}.snow:nth-child(352){opacity:.7696;transform:translate(17.4591vw,-10px) scale(.6556);animation:fall-352 20s -25s linear infinite}@keyframes fall-352{66.673%{transform:translate(23.9292vw,66.673vh) scale(.6556)}to{transform:translate(20.69415vw,100vh) scale(.6556)}}.snow:nth-child(353){opacity:.295;transform:translate(56.0947vw,-10px) scale(.4942);animation:fall-353 14s -14s linear infinite}@keyframes fall-353{55.49%{transform:translate(60.8674vw,55.49vh) scale(.4942)}to{transform:translate(58.48105vw,100vh) scale(.4942)}}.snow:nth-child(354){opacity:.9924;transform:translate(82.0821vw,-10px) scale(.0385);animation:fall-354 20s -14s linear infinite}@keyframes fall-354{32.803%{transform:translate(76.2063vw,32.803vh) scale(.0385)}to{transform:translate(79.1442vw,100vh) scale(.0385)}}.snow:nth-child(355){opacity:1.4884;transform:translate(39.8169vw,-10px) scale(.0419);animation:fall-355 14s -21s linear infinite}@keyframes fall-355{44.737%{transform:translate(33.247vw,44.737vh) scale(.0419)}to{transform:translate(36.53195vw,100vh) scale(.0419)}}.snow:nth-child(356){opacity:.0162;transform:translate(29.6348vw,-10px) scale(.1195);animation:fall-356 23s -20s linear infinite}@keyframes fall-356{34.573%{transform:translate(32.0461vw,34.573vh) scale(.1195)}to{transform:translate(30.84045vw,100vh) scale(.1195)}}.snow:nth-child(357){opacity:.2892;transform:translate(11.5253vw,-10px) scale(.6078);animation:fall-357 10s -20s linear infinite}@keyframes fall-357{60.645%{transform:translate(8.7697vw,60.645vh) scale(.6078)}to{transform:translate(10.1475vw,100vh) scale(.6078)}}.snow:nth-child(358){opacity:.0218;transform:translate(35.3603vw,-10px) scale(.8228);animation:fall-358 16s -9s linear infinite}@keyframes fall-358{36.461%{transform:translate(40.1193vw,36.461vh) scale(.8228)}to{transform:translate(37.7398vw,100vh) scale(.8228)}}.snow:nth-child(359){opacity:.2314;transform:translate(14.7127vw,-10px) scale(.4464);animation:fall-359 24s -12s linear infinite}@keyframes fall-359{56.34%{transform:translate(12.7763vw,56.34vh) scale(.4464)}to{transform:translate(13.7445vw,100vh) scale(.4464)}}.snow:nth-child(360){opacity:.3108;transform:translate(15.2444vw,-10px) scale(.168);animation:fall-360 20s -7s linear infinite}@keyframes fall-360{38.681%{transform:translate(15.6152vw,38.681vh) scale(.168)}to{transform:translate(15.4298vw,100vh) scale(.168)}}.snow:nth-child(361){opacity:.7324;transform:translate(50.8183vw,-10px) scale(.6735);animation:fall-361 25s -6s linear infinite}@keyframes fall-361{30.434%{transform:translate(53.7317vw,30.434vh) scale(.6735)}to{transform:translate(52.275vw,100vh) scale(.6735)}}.snow:nth-child(362){opacity:.5106;transform:translate(16.1963vw,-10px) scale(.0811);animation:fall-362 25s -24s linear infinite}@keyframes fall-362{44.71%{transform:translate(7.3435vw,44.71vh) scale(.0811)}to{transform:translate(11.7699vw,100vh) scale(.0811)}}.snow:nth-child(363){opacity:.5934;transform:translate(75.3382vw,-10px) scale(.1585);animation:fall-363 26s -20s linear infinite}@keyframes fall-363{56.304%{transform:translate(67.1062vw,56.304vh) scale(.1585)}to{transform:translate(71.2222vw,100vh) scale(.1585)}}.snow:nth-child(364){opacity:1.9524;transform:translate(28.001vw,-10px) scale(.2999);animation:fall-364 10s -25s linear infinite}@keyframes fall-364{77.884%{transform:translate(19.0551vw,77.884vh) scale(.2999)}to{transform:translate(23.52805vw,100vh) scale(.2999)}}.snow:nth-child(365){opacity:1.4614;transform:translate(90.3502vw,-10px) scale(.7799);animation:fall-365 14s -14s linear infinite}@keyframes fall-365{38.974%{transform:translate(88.9604vw,38.974vh) scale(.7799)}to{transform:translate(89.6553vw,100vh) scale(.7799)}}.snow:nth-child(366){opacity:.807;transform:translate(27.3525vw,-10px) scale(.1981);animation:fall-366 15s -1s linear infinite}@keyframes fall-366{45.596%{transform:translate(19.5291vw,45.596vh) scale(.1981)}to{transform:translate(23.4408vw,100vh) scale(.1981)}}.snow:nth-child(367){opacity:.8006;transform:translate(26.318vw,-10px) scale(.1316);animation:fall-367 24s -10s linear infinite}@keyframes fall-367{68.409%{transform:translate(31.1797vw,68.409vh) scale(.1316)}to{transform:translate(28.74885vw,100vh) scale(.1316)}}.snow:nth-child(368){opacity:.3426;transform:translate(13.1916vw,-10px) scale(.7831);animation:fall-368 29s -2s linear infinite}@keyframes fall-368{73.608%{transform:translate(17.0014vw,73.608vh) scale(.7831)}to{transform:translate(15.0965vw,100vh) scale(.7831)}}.snow:nth-child(369){opacity:.1872;transform:translate(2.6877vw,-10px) scale(.9031);animation:fall-369 17s -12s linear infinite}@keyframes fall-369{66.166%{transform:translate(11.2953vw,66.166vh) scale(.9031)}to{transform:translate(6.9915vw,100vh) scale(.9031)}}.snow:nth-child(370){opacity:.9272;transform:translate(87.0457vw,-10px) scale(.6682);animation:fall-370 27s -7s linear infinite}@keyframes fall-370{60.797%{transform:translate(81.8814vw,60.797vh) scale(.6682)}to{transform:translate(84.46355vw,100vh) scale(.6682)}}.snow:nth-child(371){opacity:.2378;transform:translate(56.4119vw,-10px) scale(.4455);animation:fall-371 15s -24s linear infinite}@keyframes fall-371{52.5%{transform:translate(58.9822vw,52.5vh) scale(.4455)}to{transform:translate(57.69705vw,100vh) scale(.4455)}}.snow:nth-child(372){opacity:.301;transform:translate(9.3012vw,-10px) scale(.2365);animation:fall-372 13s -3s linear infinite}@keyframes fall-372{57.234%{transform:translate(-.1076vw,57.234vh) scale(.2365)}to{transform:translate(4.5968vw,100vh) scale(.2365)}}.snow:nth-child(373){opacity:.8854;transform:translate(80.8711vw,-10px) scale(.334);animation:fall-373 10s -2s linear infinite}@keyframes fall-373{63.365%{transform:translate(83.643vw,63.365vh) scale(.334)}to{transform:translate(82.25705vw,100vh) scale(.334)}}.snow:nth-child(374){opacity:1.3462;transform:translate(2.5236vw,-10px) scale(.5303);animation:fall-374 22s -8s linear infinite}@keyframes fall-374{74.824%{transform:translate(-6.7371vw,74.824vh) scale(.5303)}to{transform:translate(-2.10675vw,100vh) scale(.5303)}}.snow:nth-child(375){opacity:1.6902;transform:translate(76.7272vw,-10px) scale(.5258);animation:fall-375 12s -5s linear infinite}@keyframes fall-375{58.616%{transform:translate(72.7362vw,58.616vh) scale(.5258)}to{transform:translate(74.7317vw,100vh) scale(.5258)}}.snow:nth-child(376){opacity:.111;transform:translate(.7426vw,-10px) scale(.5302);animation:fall-376 13s -8s linear infinite}@keyframes fall-376{60.405%{transform:translate(-7.5666vw,60.405vh) scale(.5302)}to{transform:translate(-3.412vw,100vh) scale(.5302)}}.snow:nth-child(377){opacity:.2108;transform:translate(7.7822vw,-10px) scale(.328);animation:fall-377 12s -8s linear infinite}@keyframes fall-377{47.333%{transform:translate(7.1639vw,47.333vh) scale(.328)}to{transform:translate(7.47305vw,100vh) scale(.328)}}.snow:nth-child(378){opacity:.9746;transform:translate(15.5253vw,-10px) scale(.9067);animation:fall-378 21s -20s linear infinite}@keyframes fall-378{45.767%{transform:translate(14.4736vw,45.767vh) scale(.9067)}to{transform:translate(14.99945vw,100vh) scale(.9067)}}.snow:nth-child(379){opacity:.831;transform:translate(19.2261vw,-10px) scale(.3699);animation:fall-379 29s -23s linear infinite}@keyframes fall-379{69.895%{transform:translate(28.1354vw,69.895vh) scale(.3699)}to{transform:translate(23.68075vw,100vh) scale(.3699)}}.snow:nth-child(380){opacity:1.9202;transform:translate(2.7774vw,-10px) scale(.9548);animation:fall-380 12s -9s linear infinite}@keyframes fall-380{53.27%{transform:translate(-4.3113vw,53.27vh) scale(.9548)}to{transform:translate(-.76695vw,100vh) scale(.9548)}}.snow:nth-child(381){opacity:.5678;transform:translate(5.0526vw,-10px) scale(.8746);animation:fall-381 26s -9s linear infinite}@keyframes fall-381{58.684%{transform:translate(11.9305vw,58.684vh) scale(.8746)}to{transform:translate(8.49155vw,100vh) scale(.8746)}}.snow:nth-child(382){opacity:1.6372;transform:translate(43.7961vw,-10px) scale(.462);animation:fall-382 19s -1s linear infinite}@keyframes fall-382{53.199%{transform:translate(47.4263vw,53.199vh) scale(.462)}to{transform:translate(45.6112vw,100vh) scale(.462)}}.snow:nth-child(383){opacity:1.0498;transform:translate(67.5829vw,-10px) scale(.4696);animation:fall-383 30s -20s linear infinite}@keyframes fall-383{34.923%{transform:translate(71.5462vw,34.923vh) scale(.4696)}to{transform:translate(69.56455vw,100vh) scale(.4696)}}.snow:nth-child(384){opacity:1.1974;transform:translate(41.3573vw,-10px) scale(.056);animation:fall-384 30s -11s linear infinite}@keyframes fall-384{47.764%{transform:translate(43.878vw,47.764vh) scale(.056)}to{transform:translate(42.61765vw,100vh) scale(.056)}}.snow:nth-child(385){opacity:.697;transform:translate(91.453vw,-10px) scale(.3781);animation:fall-385 10s -4s linear infinite}@keyframes fall-385{59.609%{transform:translate(94.1057vw,59.609vh) scale(.3781)}to{transform:translate(92.77935vw,100vh) scale(.3781)}}.snow:nth-child(386){opacity:1.8242;transform:translate(22.9566vw,-10px) scale(.7774);animation:fall-386 18s -15s linear infinite}@keyframes fall-386{68.254%{transform:translate(13.5902vw,68.254vh) scale(.7774)}to{transform:translate(18.2734vw,100vh) scale(.7774)}}.snow:nth-child(387){opacity:1.4004;transform:translate(44.8161vw,-10px) scale(.26);animation:fall-387 30s -22s linear infinite}@keyframes fall-387{71.345%{transform:translate(42.7264vw,71.345vh) scale(.26)}to{transform:translate(43.77125vw,100vh) scale(.26)}}.snow:nth-child(388){opacity:.9292;transform:translate(42.7874vw,-10px) scale(.3454);animation:fall-388 27s -25s linear infinite}@keyframes fall-388{50.313%{transform:translate(37.265vw,50.313vh) scale(.3454)}to{transform:translate(40.0262vw,100vh) scale(.3454)}}.snow:nth-child(389){opacity:1.8732;transform:translate(81.7645vw,-10px) scale(.4566);animation:fall-389 20s -20s linear infinite}@keyframes fall-389{59.121%{transform:translate(76.4948vw,59.121vh) scale(.4566)}to{transform:translate(79.12965vw,100vh) scale(.4566)}}.snow:nth-child(390){opacity:.4924;transform:translate(54.823vw,-10px) scale(.0413);animation:fall-390 20s -5s linear infinite}@keyframes fall-390{57.362%{transform:translate(53.489vw,57.362vh) scale(.0413)}to{transform:translate(54.156vw,100vh) scale(.0413)}}.snow:nth-child(391){opacity:.5836;transform:translate(46.5549vw,-10px) scale(.0095);animation:fall-391 11s -10s linear infinite}@keyframes fall-391{71.747%{transform:translate(39.9158vw,71.747vh) scale(.0095)}to{transform:translate(43.23535vw,100vh) scale(.0095)}}.snow:nth-child(392){opacity:.588;transform:translate(85.6139vw,-10px) scale(.9424);animation:fall-392 16s -20s linear infinite}@keyframes fall-392{60.86%{transform:translate(82.47vw,60.86vh) scale(.9424)}to{transform:translate(84.04195vw,100vh) scale(.9424)}}.snow:nth-child(393){opacity:1.196;transform:translate(99.2492vw,-10px) scale(.4212);animation:fall-393 13s -9s linear infinite}@keyframes fall-393{52.371%{transform:translate(91.6689vw,52.371vh) scale(.4212)}to{transform:translate(95.45905vw,100vh) scale(.4212)}}.snow:nth-child(394){opacity:.537;transform:translate(95.9311vw,-10px) scale(.9117);animation:fall-394 11s -3s linear infinite}@keyframes fall-394{78.456%{transform:translate(102.4698vw,78.456vh) scale(.9117)}to{transform:translate(99.20045vw,100vh) scale(.9117)}}.snow:nth-child(395){opacity:1.354;transform:translate(52.7443vw,-10px) scale(.3789);animation:fall-395 29s -23s linear infinite}@keyframes fall-395{67.511%{transform:translate(48.6009vw,67.511vh) scale(.3789)}to{transform:translate(50.6726vw,100vh) scale(.3789)}}.snow:nth-child(396){opacity:.52;transform:translate(43.0323vw,-10px) scale(.0809);animation:fall-396 30s -20s linear infinite}@keyframes fall-396{52.334%{transform:translate(40.9928vw,52.334vh) scale(.0809)}to{transform:translate(42.01255vw,100vh) scale(.0809)}}.snow:nth-child(397){opacity:1.7346;transform:translate(22.1736vw,-10px) scale(.662);animation:fall-397 25s -21s linear infinite}@keyframes fall-397{42.62%{transform:translate(15.5631vw,42.62vh) scale(.662)}to{transform:translate(18.86835vw,100vh) scale(.662)}}.snow:nth-child(398){opacity:1.6896;transform:translate(44.0027vw,-10px) scale(.8305);animation:fall-398 13s -1s linear infinite}@keyframes fall-398{57.746%{transform:translate(37.1025vw,57.746vh) scale(.8305)}to{transform:translate(40.5526vw,100vh) scale(.8305)}}.snow:nth-child(399){opacity:.4472;transform:translate(61.6309vw,-10px) scale(.072);animation:fall-399 18s -14s linear infinite}@keyframes fall-399{57.547%{transform:translate(53.201vw,57.547vh) scale(.072)}to{transform:translate(57.41595vw,100vh) scale(.072)}}.snow:nth-child(400){opacity:1.741;transform:translate(81.2683vw,-10px) scale(.8993);animation:fall-400 28s -6s linear infinite}@keyframes fall-400{61.899%{transform:translate(90.8642vw,61.899vh) scale(.8993)}to{transform:translate(86.06625vw,100vh) scale(.8993)}}\n"] }]
76
+ args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: [".table-borderless>tbody>tr>td,.table-borderless>tbody>tr>th,.table-borderless>tfoot>tr>td,.table-borderless>tfoot>tr>th,.table-borderless>thead>tr>td,.table-borderless>thead>tr>th{border:none}.table,.table-responsive{margin-bottom:5px}a:hover,a:focus{text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}*{outline:none!important}.modal-title{width:calc(100% - 20px)}.progress{height:20px}.progress.progress-primary[value]::-webkit-progress-value{background-color:#024a88}.progress.progress-primary[value]::-moz-progress-bar{background-color:#024a88}.progress.progress-primary[value]::-ms-fill{background-color:#024a88}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#024a88}}.progress.progress-info[value]::-webkit-progress-value{background-color:#248dad}.progress.progress-info[value]::-moz-progress-bar{background-color:#248dad}.progress.progress-info[value]::-ms-fill{background-color:#248dad}@media screen and (min-width: 0\\fffd){.progress.progress-info .progress-bar{background-color:#248dad}}.progress.progress-danger[value]::-webkit-progress-value{background-color:#bf1725}.progress.progress-danger[value]::-moz-progress-bar{background-color:#bf1725}.progress.progress-danger[value]::-ms-fill{background-color:#bf1725}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#bf1725}}.progress.progress-success[value]::-webkit-progress-value{background-color:#2d922d}.progress.progress-success[value]::-moz-progress-bar{background-color:#2d922d}.progress.progress-success[value]::-ms-fill{background-color:#2d922d}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#2d922d}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#f79a17}.progress.progress-warning[value]::-moz-progress-bar{background-color:#f79a17}.progress.progress-warning[value]::-ms-fill{background-color:#f79a17}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#f79a17}}.progress[value]::-moz-progress-bar{border-radius:0}.progress[value]::-webkit-progress-value{border-radius:0}.progress[value=\"100\"]::-moz-progress-bar{border-radius:0}.progress[value=\"100\"]::-webkit-progress-value{border-radius:0}.progress-xs{height:7px}.progress-sm{height:10px}.progress-md{height:13px}.progress-bar-info-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem;background-color:#5bc0de!important}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.9632;transform:translate(93.6173vw,-10px) scale(.669);animation:fall-1 15s -17s linear infinite}@keyframes fall-1{38.732%{transform:translate(97.7407vw,38.732vh) scale(.669)}to{transform:translate(95.679vw,100vh) scale(.669)}}.snow:nth-child(2){opacity:1.3288;transform:translate(3.3182vw,-10px) scale(.0844);animation:fall-2 18s -11s linear infinite}@keyframes fall-2{46.552%{transform:translate(-1.4553vw,46.552vh) scale(.0844)}to{transform:translate(.93145vw,100vh) scale(.0844)}}.snow:nth-child(3){opacity:.2764;transform:translate(53.8548vw,-10px) scale(.7699);animation:fall-3 23s -1s linear infinite}@keyframes fall-3{34.23%{transform:translate(55.0884vw,34.23vh) scale(.7699)}to{transform:translate(54.4716vw,100vh) scale(.7699)}}.snow:nth-child(4){opacity:.7918;transform:translate(54.8941vw,-10px) scale(.6999);animation:fall-4 21s -14s linear infinite}@keyframes fall-4{36.917%{transform:translate(53.5547vw,36.917vh) scale(.6999)}to{transform:translate(54.2244vw,100vh) scale(.6999)}}.snow:nth-child(5){opacity:.7742;transform:translate(97.5228vw,-10px) scale(.0715);animation:fall-5 13s -6s linear infinite}@keyframes fall-5{48.86%{transform:translate(88.0193vw,48.86vh) scale(.0715)}to{transform:translate(92.77105vw,100vh) scale(.0715)}}.snow:nth-child(6){opacity:.1014;transform:translate(19.1982vw,-10px) scale(.8585);animation:fall-6 13s -7s linear infinite}@keyframes fall-6{69.642%{transform:translate(24.4556vw,69.642vh) scale(.8585)}to{transform:translate(21.8269vw,100vh) scale(.8585)}}.snow:nth-child(7){opacity:.8016;transform:translate(49.0991vw,-10px) scale(.2942);animation:fall-7 30s -25s linear infinite}@keyframes fall-7{30.494%{transform:translate(48.9933vw,30.494vh) scale(.2942)}to{transform:translate(49.0462vw,100vh) scale(.2942)}}.snow:nth-child(8){opacity:1.4494;transform:translate(4.2406vw,-10px) scale(.3153);animation:fall-8 29s -9s linear infinite}@keyframes fall-8{59.997%{transform:translate(12.4485vw,59.997vh) scale(.3153)}to{transform:translate(8.34455vw,100vh) scale(.3153)}}.snow:nth-child(9){opacity:.0892;transform:translate(55.7308vw,-10px) scale(.6567);animation:fall-9 27s -4s linear infinite}@keyframes fall-9{61.941%{transform:translate(46.8089vw,61.941vh) scale(.6567)}to{transform:translate(51.26985vw,100vh) scale(.6567)}}.snow:nth-child(10){opacity:1.2882;transform:translate(47.4774vw,-10px) scale(.9806);animation:fall-10 19s -12s linear infinite}@keyframes fall-10{75.107%{transform:translate(45.5791vw,75.107vh) scale(.9806)}to{transform:translate(46.52825vw,100vh) scale(.9806)}}.snow:nth-child(11){opacity:1.7212;transform:translate(51.8707vw,-10px) scale(.986);animation:fall-11 29s -17s linear infinite}@keyframes fall-11{77.991%{transform:translate(54.257vw,77.991vh) scale(.986)}to{transform:translate(53.06385vw,100vh) scale(.986)}}.snow:nth-child(12){opacity:.466;transform:translate(82.8102vw,-10px) scale(.1246);animation:fall-12 25s -13s linear infinite}@keyframes fall-12{44.273%{transform:translate(79.2164vw,44.273vh) scale(.1246)}to{transform:translate(81.0133vw,100vh) scale(.1246)}}.snow:nth-child(13){opacity:.5778;transform:translate(91.0261vw,-10px) scale(.0515);animation:fall-13 19s -21s linear infinite}@keyframes fall-13{63.99%{transform:translate(95.6774vw,63.99vh) scale(.0515)}to{transform:translate(93.35175vw,100vh) scale(.0515)}}.snow:nth-child(14){opacity:1.687;transform:translate(3.6685vw,-10px) scale(.6848);animation:fall-14 11s -29s linear infinite}@keyframes fall-14{31.17%{transform:translate(-1.7656vw,31.17vh) scale(.6848)}to{transform:translate(.95145vw,100vh) scale(.6848)}}.snow:nth-child(15){opacity:.784;transform:translate(81.0329vw,-10px) scale(.304);animation:fall-15 23s -15s linear infinite}@keyframes fall-15{51.197%{transform:translate(82.3258vw,51.197vh) scale(.304)}to{transform:translate(81.67935vw,100vh) scale(.304)}}.snow:nth-child(16){opacity:.6408;transform:translate(90.8418vw,-10px) scale(.7786);animation:fall-16 18s -6s linear infinite}@keyframes fall-16{48.707%{transform:translate(82.8946vw,48.707vh) scale(.7786)}to{transform:translate(86.8682vw,100vh) scale(.7786)}}.snow:nth-child(17){opacity:1.6772;transform:translate(37.3816vw,-10px) scale(.7156);animation:fall-17 11s -11s linear infinite}@keyframes fall-17{56.267%{transform:translate(42.7377vw,56.267vh) scale(.7156)}to{transform:translate(40.05965vw,100vh) scale(.7156)}}.snow:nth-child(18){opacity:.9416;transform:translate(10.7178vw,-10px) scale(.2418);animation:fall-18 18s -9s linear infinite}@keyframes fall-18{43.448%{transform:translate(12.7944vw,43.448vh) scale(.2418)}to{transform:translate(11.7561vw,100vh) scale(.2418)}}.snow:nth-child(19){opacity:.3478;transform:translate(93.1149vw,-10px) scale(.4454);animation:fall-19 18s -19s linear infinite}@keyframes fall-19{61.391%{transform:translate(89.703vw,61.391vh) scale(.4454)}to{transform:translate(91.40895vw,100vh) scale(.4454)}}.snow:nth-child(20){opacity:.7932;transform:translate(99.157vw,-10px) scale(.0145);animation:fall-20 11s -12s linear infinite}@keyframes fall-20{72.293%{transform:translate(91.1116vw,72.293vh) scale(.0145)}to{transform:translate(95.1343vw,100vh) scale(.0145)}}.snow:nth-child(21){opacity:.228;transform:translate(63.4004vw,-10px) scale(.9192);animation:fall-21 21s -16s linear infinite}@keyframes fall-21{61.186%{transform:translate(70.883vw,61.186vh) scale(.9192)}to{transform:translate(67.1417vw,100vh) scale(.9192)}}.snow:nth-child(22){opacity:.5106;transform:translate(1.6686vw,-10px) scale(.0726);animation:fall-22 17s -24s linear infinite}@keyframes fall-22{64.926%{transform:translate(9.2765vw,64.926vh) scale(.0726)}to{transform:translate(5.47255vw,100vh) scale(.0726)}}.snow:nth-child(23){opacity:.8864;transform:translate(48.6442vw,-10px) scale(.9272);animation:fall-23 22s -18s linear infinite}@keyframes fall-23{31.75%{transform:translate(44.832vw,31.75vh) scale(.9272)}to{transform:translate(46.7381vw,100vh) scale(.9272)}}.snow:nth-child(24){opacity:.0154;transform:translate(17.25vw,-10px) scale(.7521);animation:fall-24 12s -30s linear infinite}@keyframes fall-24{77.022%{transform:translate(10.9925vw,77.022vh) scale(.7521)}to{transform:translate(14.12125vw,100vh) scale(.7521)}}.snow:nth-child(25){opacity:.922;transform:translate(69.8314vw,-10px) scale(.511);animation:fall-25 16s -28s linear infinite}@keyframes fall-25{53.4%{transform:translate(62.9437vw,53.4vh) scale(.511)}to{transform:translate(66.38755vw,100vh) scale(.511)}}.snow:nth-child(26){opacity:.3266;transform:translate(97.3704vw,-10px) scale(.163);animation:fall-26 22s -13s linear infinite}@keyframes fall-26{60.923%{transform:translate(97.9941vw,60.923vh) scale(.163)}to{transform:translate(97.68225vw,100vh) scale(.163)}}.snow:nth-child(27){opacity:.611;transform:translate(99.7622vw,-10px) scale(.324);animation:fall-27 22s -29s linear infinite}@keyframes fall-27{67.632%{transform:translate(96.4833vw,67.632vh) scale(.324)}to{transform:translate(98.12275vw,100vh) scale(.324)}}.snow:nth-child(28){opacity:.1392;transform:translate(28.9352vw,-10px) scale(.7504);animation:fall-28 30s -13s linear infinite}@keyframes fall-28{55.362%{transform:translate(38.1466vw,55.362vh) scale(.7504)}to{transform:translate(33.5409vw,100vh) scale(.7504)}}.snow:nth-child(29){opacity:.5746;transform:translate(48.9262vw,-10px) scale(.6507);animation:fall-29 30s -6s linear infinite}@keyframes fall-29{72.394%{transform:translate(46.0096vw,72.394vh) scale(.6507)}to{transform:translate(47.4679vw,100vh) scale(.6507)}}.snow:nth-child(30){opacity:1.7606;transform:translate(7.5656vw,-10px) scale(.6312);animation:fall-30 29s -26s linear infinite}@keyframes fall-30{37.773%{transform:translate(11.2545vw,37.773vh) scale(.6312)}to{transform:translate(9.41005vw,100vh) scale(.6312)}}.snow:nth-child(31){opacity:1.9552;transform:translate(42.642vw,-10px) scale(.0715);animation:fall-31 17s -9s linear infinite}@keyframes fall-31{64.602%{transform:translate(37.1957vw,64.602vh) scale(.0715)}to{transform:translate(39.91885vw,100vh) scale(.0715)}}.snow:nth-child(32){opacity:1.9856;transform:translate(19.5484vw,-10px) scale(.1841);animation:fall-32 22s -20s linear infinite}@keyframes fall-32{77.803%{transform:translate(16.5438vw,77.803vh) scale(.1841)}to{transform:translate(18.0461vw,100vh) scale(.1841)}}.snow:nth-child(33){opacity:.9488;transform:translate(59.6992vw,-10px) scale(.3837);animation:fall-33 16s -23s linear infinite}@keyframes fall-33{48.644%{transform:translate(61.821vw,48.644vh) scale(.3837)}to{transform:translate(60.7601vw,100vh) scale(.3837)}}.snow:nth-child(34){opacity:.1114;transform:translate(41.522vw,-10px) scale(.262);animation:fall-34 25s -17s linear infinite}@keyframes fall-34{62.486%{transform:translate(36.177vw,62.486vh) scale(.262)}to{transform:translate(38.8495vw,100vh) scale(.262)}}.snow:nth-child(35){opacity:.417;transform:translate(82.9698vw,-10px) scale(.0853);animation:fall-35 27s -10s linear infinite}@keyframes fall-35{36.687%{transform:translate(90.4859vw,36.687vh) scale(.0853)}to{transform:translate(86.72785vw,100vh) scale(.0853)}}.snow:nth-child(36){opacity:.0028;transform:translate(4.1878vw,-10px) scale(.4466);animation:fall-36 21s -13s linear infinite}@keyframes fall-36{62.468%{transform:translate(12.9878vw,62.468vh) scale(.4466)}to{transform:translate(8.5878vw,100vh) scale(.4466)}}.snow:nth-child(37){opacity:.7332;transform:translate(1.9689vw,-10px) scale(.755);animation:fall-37 28s -8s linear infinite}@keyframes fall-37{43.099%{transform:translate(3.844vw,43.099vh) scale(.755)}to{transform:translate(2.90645vw,100vh) scale(.755)}}.snow:nth-child(38){opacity:1.8794;transform:translate(57.4435vw,-10px) scale(.9137);animation:fall-38 27s -22s linear infinite}@keyframes fall-38{55.478%{transform:translate(49.5852vw,55.478vh) scale(.9137)}to{transform:translate(53.51435vw,100vh) scale(.9137)}}.snow:nth-child(39){opacity:.764;transform:translate(84.4574vw,-10px) scale(.2976);animation:fall-39 26s -26s linear infinite}@keyframes fall-39{72.277%{transform:translate(75.3201vw,72.277vh) scale(.2976)}to{transform:translate(79.88875vw,100vh) scale(.2976)}}.snow:nth-child(40){opacity:.7186;transform:translate(36.8715vw,-10px) scale(.5327);animation:fall-40 21s -3s linear infinite}@keyframes fall-40{40.259%{transform:translate(39.3503vw,40.259vh) scale(.5327)}to{transform:translate(38.1109vw,100vh) scale(.5327)}}.snow:nth-child(41){opacity:1.8538;transform:translate(78.1135vw,-10px) scale(.9435);animation:fall-41 27s -26s linear infinite}@keyframes fall-41{44.911%{transform:translate(76.445vw,44.911vh) scale(.9435)}to{transform:translate(77.27925vw,100vh) scale(.9435)}}.snow:nth-child(42){opacity:1.3926;transform:translate(36.6895vw,-10px) scale(.8116);animation:fall-42 14s -16s linear infinite}@keyframes fall-42{31.457%{transform:translate(42.7175vw,31.457vh) scale(.8116)}to{transform:translate(39.7035vw,100vh) scale(.8116)}}.snow:nth-child(43){opacity:1.4014;transform:translate(23.6944vw,-10px) scale(.7066);animation:fall-43 27s -22s linear infinite}@keyframes fall-43{64.039%{transform:translate(22.2557vw,64.039vh) scale(.7066)}to{transform:translate(22.97505vw,100vh) scale(.7066)}}.snow:nth-child(44){opacity:.6274;transform:translate(48.2813vw,-10px) scale(.1359);animation:fall-44 17s -18s linear infinite}@keyframes fall-44{55.844%{transform:translate(57.8368vw,55.844vh) scale(.1359)}to{transform:translate(53.05905vw,100vh) scale(.1359)}}.snow:nth-child(45){opacity:1.3568;transform:translate(59.3315vw,-10px) scale(.1816);animation:fall-45 24s -10s linear infinite}@keyframes fall-45{45.066%{transform:translate(52.1687vw,45.066vh) scale(.1816)}to{transform:translate(55.7501vw,100vh) scale(.1816)}}.snow:nth-child(46){opacity:.6028;transform:translate(34.3868vw,-10px) scale(.3118);animation:fall-46 14s -25s linear infinite}@keyframes fall-46{35.12%{transform:translate(26.9474vw,35.12vh) scale(.3118)}to{transform:translate(30.6671vw,100vh) scale(.3118)}}.snow:nth-child(47){opacity:.9628;transform:translate(96.1091vw,-10px) scale(.1935);animation:fall-47 15s -22s linear infinite}@keyframes fall-47{70.502%{transform:translate(87.1791vw,70.502vh) scale(.1935)}to{transform:translate(91.6441vw,100vh) scale(.1935)}}.snow:nth-child(48){opacity:.3776;transform:translate(97.8261vw,-10px) scale(.9344);animation:fall-48 12s -28s linear infinite}@keyframes fall-48{37.157%{transform:translate(99.8927vw,37.157vh) scale(.9344)}to{transform:translate(98.8594vw,100vh) scale(.9344)}}.snow:nth-child(49){opacity:.485;transform:translate(.257vw,-10px) scale(.493);animation:fall-49 15s -19s linear infinite}@keyframes fall-49{69.417%{transform:translate(3.4874vw,69.417vh) scale(.493)}to{transform:translate(1.8722vw,100vh) scale(.493)}}.snow:nth-child(50){opacity:.19;transform:translate(55.3401vw,-10px) scale(.8236);animation:fall-50 11s -27s linear infinite}@keyframes fall-50{51.209%{transform:translate(62.1048vw,51.209vh) scale(.8236)}to{transform:translate(58.72245vw,100vh) scale(.8236)}}.snow:nth-child(51){opacity:.2764;transform:translate(24.8313vw,-10px) scale(.0953);animation:fall-51 30s -18s linear infinite}@keyframes fall-51{35.961%{transform:translate(26.8963vw,35.961vh) scale(.0953)}to{transform:translate(25.8638vw,100vh) scale(.0953)}}.snow:nth-child(52){opacity:.1122;transform:translate(8.0384vw,-10px) scale(.6481);animation:fall-52 22s -10s linear infinite}@keyframes fall-52{58.642%{transform:translate(5.7528vw,58.642vh) scale(.6481)}to{transform:translate(6.8956vw,100vh) scale(.6481)}}.snow:nth-child(53){opacity:1.0078;transform:translate(47.0784vw,-10px) scale(.9034);animation:fall-53 25s -28s linear infinite}@keyframes fall-53{63.375%{transform:translate(42.8438vw,63.375vh) scale(.9034)}to{transform:translate(44.9611vw,100vh) scale(.9034)}}.snow:nth-child(54){opacity:1.4862;transform:translate(78.904vw,-10px) scale(.6938);animation:fall-54 18s -14s linear infinite}@keyframes fall-54{69.6%{transform:translate(72.8292vw,69.6vh) scale(.6938)}to{transform:translate(75.8666vw,100vh) scale(.6938)}}.snow:nth-child(55){opacity:.8528;transform:translate(95.8822vw,-10px) scale(.0259);animation:fall-55 18s -29s linear infinite}@keyframes fall-55{68.873%{transform:translate(92.6708vw,68.873vh) scale(.0259)}to{transform:translate(94.2765vw,100vh) scale(.0259)}}.snow:nth-child(56){opacity:.028;transform:translate(84.1895vw,-10px) scale(.5516);animation:fall-56 26s -2s linear infinite}@keyframes fall-56{65.752%{transform:translate(89.5638vw,65.752vh) scale(.5516)}to{transform:translate(86.87665vw,100vh) scale(.5516)}}.snow:nth-child(57){opacity:.5312;transform:translate(24.1782vw,-10px) scale(.0483);animation:fall-57 30s -16s linear infinite}@keyframes fall-57{59.304%{transform:translate(24.1076vw,59.304vh) scale(.0483)}to{transform:translate(24.1429vw,100vh) scale(.0483)}}.snow:nth-child(58){opacity:1.7728;transform:translate(37.5378vw,-10px) scale(.5364);animation:fall-58 19s -17s linear infinite}@keyframes fall-58{58.311%{transform:translate(38.3276vw,58.311vh) scale(.5364)}to{transform:translate(37.9327vw,100vh) scale(.5364)}}.snow:nth-child(59){opacity:.2866;transform:translate(77.8281vw,-10px) scale(.4082);animation:fall-59 28s -17s linear infinite}@keyframes fall-59{41.524%{transform:translate(87.674vw,41.524vh) scale(.4082)}to{transform:translate(82.75105vw,100vh) scale(.4082)}}.snow:nth-child(60){opacity:1.9932;transform:translate(43.0351vw,-10px) scale(.4465);animation:fall-60 26s -9s linear infinite}@keyframes fall-60{58.399%{transform:translate(42.8291vw,58.399vh) scale(.4465)}to{transform:translate(42.9321vw,100vh) scale(.4465)}}.snow:nth-child(61){opacity:1.2854;transform:translate(32.8605vw,-10px) scale(.8827);animation:fall-61 23s -4s linear infinite}@keyframes fall-61{68.775%{transform:translate(25.9808vw,68.775vh) scale(.8827)}to{transform:translate(29.42065vw,100vh) scale(.8827)}}.snow:nth-child(62){opacity:.0564;transform:translate(25.959vw,-10px) scale(.5021);animation:fall-62 18s -11s linear infinite}@keyframes fall-62{73.456%{transform:translate(30.6928vw,73.456vh) scale(.5021)}to{transform:translate(28.3259vw,100vh) scale(.5021)}}.snow:nth-child(63){opacity:.0762;transform:translate(70.6385vw,-10px) scale(.3517);animation:fall-63 17s -19s linear infinite}@keyframes fall-63{66.646%{transform:translate(61.5452vw,66.646vh) scale(.3517)}to{transform:translate(66.09185vw,100vh) scale(.3517)}}.snow:nth-child(64){opacity:1.9548;transform:translate(28.8799vw,-10px) scale(.167);animation:fall-64 30s -24s linear infinite}@keyframes fall-64{44.45%{transform:translate(27.1395vw,44.45vh) scale(.167)}to{transform:translate(28.0097vw,100vh) scale(.167)}}.snow:nth-child(65){opacity:1.0552;transform:translate(5.9722vw,-10px) scale(.2392);animation:fall-65 21s -17s linear infinite}@keyframes fall-65{64.726%{transform:translate(10.4382vw,64.726vh) scale(.2392)}to{transform:translate(8.2052vw,100vh) scale(.2392)}}.snow:nth-child(66){opacity:.5966;transform:translate(31.622vw,-10px) scale(.4582);animation:fall-66 11s -25s linear infinite}@keyframes fall-66{70.499%{transform:translate(21.6409vw,70.499vh) scale(.4582)}to{transform:translate(26.63145vw,100vh) scale(.4582)}}.snow:nth-child(67){opacity:1.873;transform:translate(81.827vw,-10px) scale(.5334);animation:fall-67 23s -10s linear infinite}@keyframes fall-67{38.136%{transform:translate(76.8803vw,38.136vh) scale(.5334)}to{transform:translate(79.35365vw,100vh) scale(.5334)}}.snow:nth-child(68){opacity:1.5714;transform:translate(54.8317vw,-10px) scale(.7329);animation:fall-68 16s -26s linear infinite}@keyframes fall-68{52.415%{transform:translate(61.2872vw,52.415vh) scale(.7329)}to{transform:translate(58.05945vw,100vh) scale(.7329)}}.snow:nth-child(69){opacity:1.4724;transform:translate(44.1141vw,-10px) scale(.6344);animation:fall-69 24s -8s linear infinite}@keyframes fall-69{33.621%{transform:translate(37.0668vw,33.621vh) scale(.6344)}to{transform:translate(40.59045vw,100vh) scale(.6344)}}.snow:nth-child(70){opacity:1.454;transform:translate(50.5863vw,-10px) scale(.4402);animation:fall-70 28s -26s linear infinite}@keyframes fall-70{36.192%{transform:translate(57.5377vw,36.192vh) scale(.4402)}to{transform:translate(54.062vw,100vh) scale(.4402)}}.snow:nth-child(71){opacity:.7322;transform:translate(72.1684vw,-10px) scale(.9856);animation:fall-71 26s -6s linear infinite}@keyframes fall-71{77.687%{transform:translate(66.2522vw,77.687vh) scale(.9856)}to{transform:translate(69.2103vw,100vh) scale(.9856)}}.snow:nth-child(72){opacity:.6052;transform:translate(52.5963vw,-10px) scale(.5135);animation:fall-72 27s -29s linear infinite}@keyframes fall-72{64.653%{transform:translate(52.0235vw,64.653vh) scale(.5135)}to{transform:translate(52.3099vw,100vh) scale(.5135)}}.snow:nth-child(73){opacity:.448;transform:translate(29.777vw,-10px) scale(.9399);animation:fall-73 25s -22s linear infinite}@keyframes fall-73{38.255%{transform:translate(24.0706vw,38.255vh) scale(.9399)}to{transform:translate(26.9238vw,100vh) scale(.9399)}}.snow:nth-child(74){opacity:1.2508;transform:translate(84.7553vw,-10px) scale(.6577);animation:fall-74 23s -6s linear infinite}@keyframes fall-74{71.028%{transform:translate(93.9175vw,71.028vh) scale(.6577)}to{transform:translate(89.3364vw,100vh) scale(.6577)}}.snow:nth-child(75){opacity:1.0604;transform:translate(52.679vw,-10px) scale(.0046);animation:fall-75 20s -2s linear infinite}@keyframes fall-75{45.846%{transform:translate(45.5392vw,45.846vh) scale(.0046)}to{transform:translate(49.1091vw,100vh) scale(.0046)}}.snow:nth-child(76){opacity:.278;transform:translate(81.6126vw,-10px) scale(.4347);animation:fall-76 20s -26s linear infinite}@keyframes fall-76{39.805%{transform:translate(86.7263vw,39.805vh) scale(.4347)}to{transform:translate(84.16945vw,100vh) scale(.4347)}}.snow:nth-child(77){opacity:.3806;transform:translate(81.076vw,-10px) scale(.0828);animation:fall-77 30s -22s linear infinite}@keyframes fall-77{35.395%{transform:translate(84.6286vw,35.395vh) scale(.0828)}to{transform:translate(82.8523vw,100vh) scale(.0828)}}.snow:nth-child(78){opacity:.1138;transform:translate(95.6195vw,-10px) scale(.0325);animation:fall-78 18s -11s linear infinite}@keyframes fall-78{45.699%{transform:translate(101.8837vw,45.699vh) scale(.0325)}to{transform:translate(98.7516vw,100vh) scale(.0325)}}.snow:nth-child(79){opacity:1.9292;transform:translate(55.0295vw,-10px) scale(.4822);animation:fall-79 21s -13s linear infinite}@keyframes fall-79{57.123%{transform:translate(51.2071vw,57.123vh) scale(.4822)}to{transform:translate(53.1183vw,100vh) scale(.4822)}}.snow:nth-child(80){opacity:1.7156;transform:translate(81.001vw,-10px) scale(.5896);animation:fall-80 23s -5s linear infinite}@keyframes fall-80{42.708%{transform:translate(79.9847vw,42.708vh) scale(.5896)}to{transform:translate(80.49285vw,100vh) scale(.5896)}}.snow:nth-child(81){opacity:.726;transform:translate(24.068vw,-10px) scale(.1275);animation:fall-81 24s -3s linear infinite}@keyframes fall-81{67.654%{transform:translate(28.3752vw,67.654vh) scale(.1275)}to{transform:translate(26.2216vw,100vh) scale(.1275)}}.snow:nth-child(82){opacity:1.1646;transform:translate(63.9669vw,-10px) scale(.6407);animation:fall-82 25s -22s linear infinite}@keyframes fall-82{57.497%{transform:translate(67.9602vw,57.497vh) scale(.6407)}to{transform:translate(65.96355vw,100vh) scale(.6407)}}.snow:nth-child(83){opacity:.9864;transform:translate(15.0343vw,-10px) scale(.2603);animation:fall-83 18s -10s linear infinite}@keyframes fall-83{53.305%{transform:translate(14.9927vw,53.305vh) scale(.2603)}to{transform:translate(15.0135vw,100vh) scale(.2603)}}.snow:nth-child(84){opacity:1.3436;transform:translate(16.5139vw,-10px) scale(.6645);animation:fall-84 12s -4s linear infinite}@keyframes fall-84{71.016%{transform:translate(13.7185vw,71.016vh) scale(.6645)}to{transform:translate(15.1162vw,100vh) scale(.6645)}}.snow:nth-child(85){opacity:1.5082;transform:translate(47.4232vw,-10px) scale(1);animation:fall-85 28s -9s linear infinite}@keyframes fall-85{46.077%{transform:translate(52.3955vw,46.077vh) scale(1)}to{transform:translate(49.90935vw,100vh) scale(1)}}.snow:nth-child(86){opacity:1.0116;transform:translate(34.297vw,-10px) scale(.3478);animation:fall-86 27s -5s linear infinite}@keyframes fall-86{60.197%{transform:translate(42.4404vw,60.197vh) scale(.3478)}to{transform:translate(38.3687vw,100vh) scale(.3478)}}.snow:nth-child(87){opacity:1.7718;transform:translate(8.6385vw,-10px) scale(.6472);animation:fall-87 26s -3s linear infinite}@keyframes fall-87{67.773%{transform:translate(15.7843vw,67.773vh) scale(.6472)}to{transform:translate(12.2114vw,100vh) scale(.6472)}}.snow:nth-child(88){opacity:1.9636;transform:translate(61.5034vw,-10px) scale(.1807);animation:fall-88 16s -16s linear infinite}@keyframes fall-88{44.93%{transform:translate(54.463vw,44.93vh) scale(.1807)}to{transform:translate(57.9832vw,100vh) scale(.1807)}}.snow:nth-child(89){opacity:.0846;transform:translate(7.2881vw,-10px) scale(.246);animation:fall-89 14s -13s linear infinite}@keyframes fall-89{50.331%{transform:translate(13.5424vw,50.331vh) scale(.246)}to{transform:translate(10.41525vw,100vh) scale(.246)}}.snow:nth-child(90){opacity:.0088;transform:translate(89.651vw,-10px) scale(.9686);animation:fall-90 30s -15s linear infinite}@keyframes fall-90{49.789%{transform:translate(98.0216vw,49.789vh) scale(.9686)}to{transform:translate(93.8363vw,100vh) scale(.9686)}}.snow:nth-child(91){opacity:1.9288;transform:translate(4.773vw,-10px) scale(.3159);animation:fall-91 19s -19s linear infinite}@keyframes fall-91{62.701%{transform:translate(2.7348vw,62.701vh) scale(.3159)}to{transform:translate(3.7539vw,100vh) scale(.3159)}}.snow:nth-child(92){opacity:.514;transform:translate(40.0888vw,-10px) scale(.3499);animation:fall-92 12s -7s linear infinite}@keyframes fall-92{58.441%{transform:translate(36.239vw,58.441vh) scale(.3499)}to{transform:translate(38.1639vw,100vh) scale(.3499)}}.snow:nth-child(93){opacity:1.6098;transform:translate(31.8664vw,-10px) scale(.388);animation:fall-93 10s -8s linear infinite}@keyframes fall-93{74.781%{transform:translate(30.4785vw,74.781vh) scale(.388)}to{transform:translate(31.17245vw,100vh) scale(.388)}}.snow:nth-child(94){opacity:1.7792;transform:translate(74.3081vw,-10px) scale(.3731);animation:fall-94 28s -14s linear infinite}@keyframes fall-94{71.476%{transform:translate(80.3195vw,71.476vh) scale(.3731)}to{transform:translate(77.3138vw,100vh) scale(.3731)}}.snow:nth-child(95){opacity:1.1014;transform:translate(83.6885vw,-10px) scale(.3634);animation:fall-95 16s -21s linear infinite}@keyframes fall-95{52.348%{transform:translate(74.3296vw,52.348vh) scale(.3634)}to{transform:translate(79.00905vw,100vh) scale(.3634)}}.snow:nth-child(96){opacity:1.4122;transform:translate(81.8355vw,-10px) scale(.5702);animation:fall-96 26s -23s linear infinite}@keyframes fall-96{35.961%{transform:translate(80.1635vw,35.961vh) scale(.5702)}to{transform:translate(80.9995vw,100vh) scale(.5702)}}.snow:nth-child(97){opacity:.8132;transform:translate(69.5238vw,-10px) scale(.5093);animation:fall-97 20s -28s linear infinite}@keyframes fall-97{77.115%{transform:translate(65.6784vw,77.115vh) scale(.5093)}to{transform:translate(67.6011vw,100vh) scale(.5093)}}.snow:nth-child(98){opacity:.6276;transform:translate(75.6689vw,-10px) scale(.9419);animation:fall-98 29s -2s linear infinite}@keyframes fall-98{66.89%{transform:translate(69.8631vw,66.89vh) scale(.9419)}to{transform:translate(72.766vw,100vh) scale(.9419)}}.snow:nth-child(99){opacity:1.0552;transform:translate(35.0607vw,-10px) scale(.2435);animation:fall-99 12s -13s linear infinite}@keyframes fall-99{47.914%{transform:translate(25.1517vw,47.914vh) scale(.2435)}to{transform:translate(30.1062vw,100vh) scale(.2435)}}.snow:nth-child(100){opacity:.8144;transform:translate(3.3347vw,-10px) scale(.9377);animation:fall-100 25s -2s linear infinite}@keyframes fall-100{76.44%{transform:translate(6.5892vw,76.44vh) scale(.9377)}to{transform:translate(4.96195vw,100vh) scale(.9377)}}.snow:nth-child(101){opacity:1.1808;transform:translate(14.8006vw,-10px) scale(.8707);animation:fall-101 19s -25s linear infinite}@keyframes fall-101{63.238%{transform:translate(12.8069vw,63.238vh) scale(.8707)}to{transform:translate(13.80375vw,100vh) scale(.8707)}}.snow:nth-child(102){opacity:.9322;transform:translate(86.9308vw,-10px) scale(.8158);animation:fall-102 15s -5s linear infinite}@keyframes fall-102{69.62%{transform:translate(81.7661vw,69.62vh) scale(.8158)}to{transform:translate(84.34845vw,100vh) scale(.8158)}}.snow:nth-child(103){opacity:1.2812;transform:translate(43.3082vw,-10px) scale(.3594);animation:fall-103 22s -16s linear infinite}@keyframes fall-103{48.543%{transform:translate(45.8438vw,48.543vh) scale(.3594)}to{transform:translate(44.576vw,100vh) scale(.3594)}}.snow:nth-child(104){opacity:.116;transform:translate(64.9707vw,-10px) scale(.654);animation:fall-104 11s -16s linear infinite}@keyframes fall-104{66.306%{transform:translate(55.0408vw,66.306vh) scale(.654)}to{transform:translate(60.00575vw,100vh) scale(.654)}}.snow:nth-child(105){opacity:.0546;transform:translate(39.4155vw,-10px) scale(.6033);animation:fall-105 10s -5s linear infinite}@keyframes fall-105{66.298%{transform:translate(34.8924vw,66.298vh) scale(.6033)}to{transform:translate(37.15395vw,100vh) scale(.6033)}}.snow:nth-child(106){opacity:1.9522;transform:translate(84.5256vw,-10px) scale(.0575);animation:fall-106 28s -8s linear infinite}@keyframes fall-106{59.063%{transform:translate(85.3105vw,59.063vh) scale(.0575)}to{transform:translate(84.91805vw,100vh) scale(.0575)}}.snow:nth-child(107){opacity:1.1774;transform:translate(73.1783vw,-10px) scale(.0889);animation:fall-107 30s -28s linear infinite}@keyframes fall-107{61.481%{transform:translate(77.4631vw,61.481vh) scale(.0889)}to{transform:translate(75.3207vw,100vh) scale(.0889)}}.snow:nth-child(108){opacity:.1672;transform:translate(95.8744vw,-10px) scale(.4306);animation:fall-108 15s -2s linear infinite}@keyframes fall-108{38.798%{transform:translate(105.0027vw,38.798vh) scale(.4306)}to{transform:translate(100.43855vw,100vh) scale(.4306)}}.snow:nth-child(109){opacity:1.9004;transform:translate(43.904vw,-10px) scale(.6459);animation:fall-109 27s -30s linear infinite}@keyframes fall-109{35.371%{transform:translate(49.5351vw,35.371vh) scale(.6459)}to{transform:translate(46.71955vw,100vh) scale(.6459)}}.snow:nth-child(110){opacity:.4606;transform:translate(83.3093vw,-10px) scale(.4792);animation:fall-110 11s -13s linear infinite}@keyframes fall-110{64.337%{transform:translate(73.6624vw,64.337vh) scale(.4792)}to{transform:translate(78.48585vw,100vh) scale(.4792)}}.snow:nth-child(111){opacity:.21;transform:translate(50.2049vw,-10px) scale(.1538);animation:fall-111 27s -21s linear infinite}@keyframes fall-111{33.496%{transform:translate(43.9531vw,33.496vh) scale(.1538)}to{transform:translate(47.079vw,100vh) scale(.1538)}}.snow:nth-child(112){opacity:1.7346;transform:translate(80.6928vw,-10px) scale(.5085);animation:fall-112 28s -23s linear infinite}@keyframes fall-112{56.102%{transform:translate(76.2215vw,56.102vh) scale(.5085)}to{transform:translate(78.45715vw,100vh) scale(.5085)}}.snow:nth-child(113){opacity:.7518;transform:translate(50.6304vw,-10px) scale(.3771);animation:fall-113 21s -22s linear infinite}@keyframes fall-113{70.162%{transform:translate(54.3208vw,70.162vh) scale(.3771)}to{transform:translate(52.4756vw,100vh) scale(.3771)}}.snow:nth-child(114){opacity:1.9528;transform:translate(18.4589vw,-10px) scale(.2945);animation:fall-114 18s -19s linear infinite}@keyframes fall-114{67.242%{transform:translate(9.6478vw,67.242vh) scale(.2945)}to{transform:translate(14.05335vw,100vh) scale(.2945)}}.snow:nth-child(115){opacity:1.3052;transform:translate(50.1841vw,-10px) scale(.0699);animation:fall-115 22s -8s linear infinite}@keyframes fall-115{31.209%{transform:translate(44.3864vw,31.209vh) scale(.0699)}to{transform:translate(47.28525vw,100vh) scale(.0699)}}.snow:nth-child(116){opacity:.3656;transform:translate(36.0657vw,-10px) scale(.9124);animation:fall-116 23s -26s linear infinite}@keyframes fall-116{76.329%{transform:translate(32.9929vw,76.329vh) scale(.9124)}to{transform:translate(34.5293vw,100vh) scale(.9124)}}.snow:nth-child(117){opacity:.7412;transform:translate(35.9591vw,-10px) scale(.1298);animation:fall-117 24s -27s linear infinite}@keyframes fall-117{75.872%{transform:translate(32.2452vw,75.872vh) scale(.1298)}to{transform:translate(34.10215vw,100vh) scale(.1298)}}.snow:nth-child(118){opacity:.8916;transform:translate(73.3113vw,-10px) scale(.3643);animation:fall-118 26s -25s linear infinite}@keyframes fall-118{49.841%{transform:translate(82.4242vw,49.841vh) scale(.3643)}to{transform:translate(77.86775vw,100vh) scale(.3643)}}.snow:nth-child(119){opacity:1.0058;transform:translate(29.8398vw,-10px) scale(.1609);animation:fall-119 26s -5s linear infinite}@keyframes fall-119{45.353%{transform:translate(30.7962vw,45.353vh) scale(.1609)}to{transform:translate(30.318vw,100vh) scale(.1609)}}.snow:nth-child(120){opacity:.133;transform:translate(67.0792vw,-10px) scale(.6602);animation:fall-120 30s -17s linear infinite}@keyframes fall-120{60.38%{transform:translate(74.6664vw,60.38vh) scale(.6602)}to{transform:translate(70.8728vw,100vh) scale(.6602)}}.snow:nth-child(121){opacity:1.016;transform:translate(30.7612vw,-10px) scale(.4698);animation:fall-121 23s -22s linear infinite}@keyframes fall-121{78.633%{transform:translate(38.4849vw,78.633vh) scale(.4698)}to{transform:translate(34.62305vw,100vh) scale(.4698)}}.snow:nth-child(122){opacity:1.5692;transform:translate(55.4663vw,-10px) scale(.0445);animation:fall-122 27s -18s linear infinite}@keyframes fall-122{70.77%{transform:translate(53.904vw,70.77vh) scale(.0445)}to{transform:translate(54.68515vw,100vh) scale(.0445)}}.snow:nth-child(123){opacity:.0468;transform:translate(19.4253vw,-10px) scale(.3842);animation:fall-123 16s -21s linear infinite}@keyframes fall-123{36.322%{transform:translate(26.7029vw,36.322vh) scale(.3842)}to{transform:translate(23.0641vw,100vh) scale(.3842)}}.snow:nth-child(124){opacity:.8762;transform:translate(68.3036vw,-10px) scale(.7089);animation:fall-124 19s -12s linear infinite}@keyframes fall-124{42.72%{transform:translate(69.8925vw,42.72vh) scale(.7089)}to{transform:translate(69.09805vw,100vh) scale(.7089)}}.snow:nth-child(125){opacity:.2868;transform:translate(80.0478vw,-10px) scale(.3682);animation:fall-125 23s -15s linear infinite}@keyframes fall-125{79.733%{transform:translate(84.6282vw,79.733vh) scale(.3682)}to{transform:translate(82.338vw,100vh) scale(.3682)}}.snow:nth-child(126){opacity:.6284;transform:translate(98.4631vw,-10px) scale(.8942);animation:fall-126 19s -28s linear infinite}@keyframes fall-126{77.67%{transform:translate(105.6004vw,77.67vh) scale(.8942)}to{transform:translate(102.03175vw,100vh) scale(.8942)}}.snow:nth-child(127){opacity:1.43;transform:translate(58.9409vw,-10px) scale(.353);animation:fall-127 13s -21s linear infinite}@keyframes fall-127{61.003%{transform:translate(62.237vw,61.003vh) scale(.353)}to{transform:translate(60.58895vw,100vh) scale(.353)}}.snow:nth-child(128){opacity:1.0898;transform:translate(79.1765vw,-10px) scale(.8458);animation:fall-128 18s -26s linear infinite}@keyframes fall-128{66.638%{transform:translate(74.6525vw,66.638vh) scale(.8458)}to{transform:translate(76.9145vw,100vh) scale(.8458)}}.snow:nth-child(129){opacity:1.319;transform:translate(55.5889vw,-10px) scale(.4109);animation:fall-129 25s -11s linear infinite}@keyframes fall-129{34.108%{transform:translate(55.608vw,34.108vh) scale(.4109)}to{transform:translate(55.59845vw,100vh) scale(.4109)}}.snow:nth-child(130){opacity:.7728;transform:translate(86.1121vw,-10px) scale(.4319);animation:fall-130 17s -27s linear infinite}@keyframes fall-130{54.667%{transform:translate(94.774vw,54.667vh) scale(.4319)}to{transform:translate(90.44305vw,100vh) scale(.4319)}}.snow:nth-child(131){opacity:1.8808;transform:translate(46.4254vw,-10px) scale(.1845);animation:fall-131 12s -12s linear infinite}@keyframes fall-131{62.737%{transform:translate(40.7132vw,62.737vh) scale(.1845)}to{transform:translate(43.5693vw,100vh) scale(.1845)}}.snow:nth-child(132){opacity:.63;transform:translate(98.9038vw,-10px) scale(.5454);animation:fall-132 25s -1s linear infinite}@keyframes fall-132{54.308%{transform:translate(91.9118vw,54.308vh) scale(.5454)}to{transform:translate(95.4078vw,100vh) scale(.5454)}}.snow:nth-child(133){opacity:.4422;transform:translate(67.6036vw,-10px) scale(.1435);animation:fall-133 25s -21s linear infinite}@keyframes fall-133{77.893%{transform:translate(73.9688vw,77.893vh) scale(.1435)}to{transform:translate(70.7862vw,100vh) scale(.1435)}}.snow:nth-child(134){opacity:.9394;transform:translate(49.9829vw,-10px) scale(.231);animation:fall-134 25s -9s linear infinite}@keyframes fall-134{47.945%{transform:translate(56.2552vw,47.945vh) scale(.231)}to{transform:translate(53.11905vw,100vh) scale(.231)}}.snow:nth-child(135){opacity:.5396;transform:translate(6.7744vw,-10px) scale(.3504);animation:fall-135 23s -19s linear infinite}@keyframes fall-135{32.097%{transform:translate(4.1284vw,32.097vh) scale(.3504)}to{transform:translate(5.4514vw,100vh) scale(.3504)}}.snow:nth-child(136){opacity:.9284;transform:translate(99.0956vw,-10px) scale(.3099);animation:fall-136 15s -14s linear infinite}@keyframes fall-136{51.242%{transform:translate(106.5258vw,51.242vh) scale(.3099)}to{transform:translate(102.8107vw,100vh) scale(.3099)}}.snow:nth-child(137){opacity:1.8464;transform:translate(83.3382vw,-10px) scale(.8134);animation:fall-137 26s -25s linear infinite}@keyframes fall-137{51.44%{transform:translate(91.5594vw,51.44vh) scale(.8134)}to{transform:translate(87.4488vw,100vh) scale(.8134)}}.snow:nth-child(138){opacity:.0784;transform:translate(53.4267vw,-10px) scale(.0635);animation:fall-138 21s -6s linear infinite}@keyframes fall-138{59.849%{transform:translate(51.6819vw,59.849vh) scale(.0635)}to{transform:translate(52.5543vw,100vh) scale(.0635)}}.snow:nth-child(139){opacity:1.6328;transform:translate(53.4069vw,-10px) scale(.9617);animation:fall-139 14s -19s linear infinite}@keyframes fall-139{76.05%{transform:translate(56.879vw,76.05vh) scale(.9617)}to{transform:translate(55.14295vw,100vh) scale(.9617)}}.snow:nth-child(140){opacity:.1788;transform:translate(60.2504vw,-10px) scale(.5471);animation:fall-140 20s -4s linear infinite}@keyframes fall-140{68.937%{transform:translate(57.8515vw,68.937vh) scale(.5471)}to{transform:translate(59.05095vw,100vh) scale(.5471)}}.snow:nth-child(141){opacity:.3336;transform:translate(99.413vw,-10px) scale(.9107);animation:fall-141 26s -4s linear infinite}@keyframes fall-141{51.924%{transform:translate(104.3853vw,51.924vh) scale(.9107)}to{transform:translate(101.89915vw,100vh) scale(.9107)}}.snow:nth-child(142){opacity:1.2262;transform:translate(46.2355vw,-10px) scale(.1177);animation:fall-142 16s -24s linear infinite}@keyframes fall-142{55.266%{transform:translate(44.2918vw,55.266vh) scale(.1177)}to{transform:translate(45.26365vw,100vh) scale(.1177)}}.snow:nth-child(143){opacity:1.6042;transform:translate(1.0363vw,-10px) scale(.1906);animation:fall-143 28s -22s linear infinite}@keyframes fall-143{47.326%{transform:translate(1.0318vw,47.326vh) scale(.1906)}to{transform:translate(1.03405vw,100vh) scale(.1906)}}.snow:nth-child(144){opacity:.993;transform:translate(75.402vw,-10px) scale(.5394);animation:fall-144 24s -11s linear infinite}@keyframes fall-144{56.313%{transform:translate(78.4955vw,56.313vh) scale(.5394)}to{transform:translate(76.94875vw,100vh) scale(.5394)}}.snow:nth-child(145){opacity:1.0584;transform:translate(85.8175vw,-10px) scale(.3064);animation:fall-145 15s -6s linear infinite}@keyframes fall-145{65.731%{transform:translate(79.2481vw,65.731vh) scale(.3064)}to{transform:translate(82.5328vw,100vh) scale(.3064)}}.snow:nth-child(146){opacity:1.4026;transform:translate(17.6682vw,-10px) scale(.4081);animation:fall-146 11s -27s linear infinite}@keyframes fall-146{77.866%{transform:translate(18.8803vw,77.866vh) scale(.4081)}to{transform:translate(18.27425vw,100vh) scale(.4081)}}.snow:nth-child(147){opacity:.279;transform:translate(80.6434vw,-10px) scale(.666);animation:fall-147 28s -9s linear infinite}@keyframes fall-147{72.24%{transform:translate(77.5209vw,72.24vh) scale(.666)}to{transform:translate(79.08215vw,100vh) scale(.666)}}.snow:nth-child(148){opacity:.3736;transform:translate(59.1111vw,-10px) scale(.8032);animation:fall-148 13s -21s linear infinite}@keyframes fall-148{40.812%{transform:translate(65.4682vw,40.812vh) scale(.8032)}to{transform:translate(62.28965vw,100vh) scale(.8032)}}.snow:nth-child(149){opacity:1.8672;transform:translate(19.0151vw,-10px) scale(.6978);animation:fall-149 22s -5s linear infinite}@keyframes fall-149{58.497%{transform:translate(15.0444vw,58.497vh) scale(.6978)}to{transform:translate(17.02975vw,100vh) scale(.6978)}}.snow:nth-child(150){opacity:1.359;transform:translate(74.6456vw,-10px) scale(.0678);animation:fall-150 20s -15s linear infinite}@keyframes fall-150{37.882%{transform:translate(80.9973vw,37.882vh) scale(.0678)}to{transform:translate(77.82145vw,100vh) scale(.0678)}}.snow:nth-child(151){opacity:.903;transform:translate(14.7192vw,-10px) scale(.6303);animation:fall-151 10s -6s linear infinite}@keyframes fall-151{48.829%{transform:translate(18.8271vw,48.829vh) scale(.6303)}to{transform:translate(16.77315vw,100vh) scale(.6303)}}.snow:nth-child(152){opacity:.5812;transform:translate(77.0897vw,-10px) scale(.6228);animation:fall-152 27s -30s linear infinite}@keyframes fall-152{67.569%{transform:translate(73.8463vw,67.569vh) scale(.6228)}to{transform:translate(75.468vw,100vh) scale(.6228)}}.snow:nth-child(153){opacity:.688;transform:translate(95.1162vw,-10px) scale(.4659);animation:fall-153 19s -4s linear infinite}@keyframes fall-153{64.565%{transform:translate(85.833vw,64.565vh) scale(.4659)}to{transform:translate(90.4746vw,100vh) scale(.4659)}}.snow:nth-child(154){opacity:1.3666;transform:translate(8.0353vw,-10px) scale(.3637);animation:fall-154 25s -6s linear infinite}@keyframes fall-154{79.126%{transform:translate(10.1471vw,79.126vh) scale(.3637)}to{transform:translate(9.0912vw,100vh) scale(.3637)}}.snow:nth-child(155){opacity:1.2362;transform:translate(51.3446vw,-10px) scale(.0075);animation:fall-155 24s -8s linear infinite}@keyframes fall-155{68.101%{transform:translate(49.921vw,68.101vh) scale(.0075)}to{transform:translate(50.6328vw,100vh) scale(.0075)}}.snow:nth-child(156){opacity:.3112;transform:translate(31.1149vw,-10px) scale(.7264);animation:fall-156 29s -7s linear infinite}@keyframes fall-156{71.679%{transform:translate(33.6785vw,71.679vh) scale(.7264)}to{transform:translate(32.3967vw,100vh) scale(.7264)}}.snow:nth-child(157){opacity:1.9032;transform:translate(91.1986vw,-10px) scale(.1521);animation:fall-157 12s -25s linear infinite}@keyframes fall-157{75.795%{transform:translate(82.7282vw,75.795vh) scale(.1521)}to{transform:translate(86.9634vw,100vh) scale(.1521)}}.snow:nth-child(158){opacity:1.1322;transform:translate(89.3644vw,-10px) scale(.374);animation:fall-158 27s -26s linear infinite}@keyframes fall-158{48.619%{transform:translate(81.8842vw,48.619vh) scale(.374)}to{transform:translate(85.6243vw,100vh) scale(.374)}}.snow:nth-child(159){opacity:.827;transform:translate(40.6811vw,-10px) scale(.8843);animation:fall-159 13s -9s linear infinite}@keyframes fall-159{78.478%{transform:translate(40.8261vw,78.478vh) scale(.8843)}to{transform:translate(40.7536vw,100vh) scale(.8843)}}.snow:nth-child(160){opacity:.7528;transform:translate(77.8215vw,-10px) scale(.1981);animation:fall-160 27s -17s linear infinite}@keyframes fall-160{36.733%{transform:translate(82.2205vw,36.733vh) scale(.1981)}to{transform:translate(80.021vw,100vh) scale(.1981)}}.snow:nth-child(161){opacity:1.5294;transform:translate(16.607vw,-10px) scale(.5136);animation:fall-161 13s -4s linear infinite}@keyframes fall-161{33.242%{transform:translate(10.4127vw,33.242vh) scale(.5136)}to{transform:translate(13.50985vw,100vh) scale(.5136)}}.snow:nth-child(162){opacity:.4836;transform:translate(27.1326vw,-10px) scale(.9208);animation:fall-162 16s -19s linear infinite}@keyframes fall-162{63.503%{transform:translate(17.2964vw,63.503vh) scale(.9208)}to{transform:translate(22.2145vw,100vh) scale(.9208)}}.snow:nth-child(163){opacity:.293;transform:translate(33.0672vw,-10px) scale(.2467);animation:fall-163 26s -27s linear infinite}@keyframes fall-163{62.159%{transform:translate(29.4927vw,62.159vh) scale(.2467)}to{transform:translate(31.27995vw,100vh) scale(.2467)}}.snow:nth-child(164){opacity:.509;transform:translate(40.1168vw,-10px) scale(.6554);animation:fall-164 15s -11s linear infinite}@keyframes fall-164{53.133%{transform:translate(47.1627vw,53.133vh) scale(.6554)}to{transform:translate(43.63975vw,100vh) scale(.6554)}}.snow:nth-child(165){opacity:.368;transform:translate(86.0152vw,-10px) scale(.4564);animation:fall-165 12s -21s linear infinite}@keyframes fall-165{47.407%{transform:translate(77.1432vw,47.407vh) scale(.4564)}to{transform:translate(81.5792vw,100vh) scale(.4564)}}.snow:nth-child(166){opacity:1.1028;transform:translate(49.8653vw,-10px) scale(.2914);animation:fall-166 15s -17s linear infinite}@keyframes fall-166{36.909%{transform:translate(49.1299vw,36.909vh) scale(.2914)}to{transform:translate(49.4976vw,100vh) scale(.2914)}}.snow:nth-child(167){opacity:1.4704;transform:translate(49.178vw,-10px) scale(.663);animation:fall-167 14s -6s linear infinite}@keyframes fall-167{72.88%{transform:translate(45.0466vw,72.88vh) scale(.663)}to{transform:translate(47.1123vw,100vh) scale(.663)}}.snow:nth-child(168){opacity:1.6796;transform:translate(38.9583vw,-10px) scale(.951);animation:fall-168 13s -12s linear infinite}@keyframes fall-168{35.27%{transform:translate(36.0274vw,35.27vh) scale(.951)}to{transform:translate(37.49285vw,100vh) scale(.951)}}.snow:nth-child(169){opacity:.5476;transform:translate(22.7753vw,-10px) scale(.9492);animation:fall-169 18s -3s linear infinite}@keyframes fall-169{40.441%{transform:translate(14.5477vw,40.441vh) scale(.9492)}to{transform:translate(18.6615vw,100vh) scale(.9492)}}.snow:nth-child(170){opacity:.576;transform:translate(51.9754vw,-10px) scale(.2038);animation:fall-170 11s -2s linear infinite}@keyframes fall-170{47.857%{transform:translate(43.0013vw,47.857vh) scale(.2038)}to{transform:translate(47.48835vw,100vh) scale(.2038)}}.snow:nth-child(171){opacity:1.237;transform:translate(2.5187vw,-10px) scale(.8953);animation:fall-171 20s -5s linear infinite}@keyframes fall-171{59.02%{transform:translate(10.5082vw,59.02vh) scale(.8953)}to{transform:translate(6.51345vw,100vh) scale(.8953)}}.snow:nth-child(172){opacity:1.384;transform:translate(96.3512vw,-10px) scale(.5096);animation:fall-172 28s -30s linear infinite}@keyframes fall-172{30.597%{transform:translate(94.3306vw,30.597vh) scale(.5096)}to{transform:translate(95.3409vw,100vh) scale(.5096)}}.snow:nth-child(173){opacity:1.8362;transform:translate(79.0606vw,-10px) scale(.9603);animation:fall-173 18s -5s linear infinite}@keyframes fall-173{78.409%{transform:translate(72.3543vw,78.409vh) scale(.9603)}to{transform:translate(75.70745vw,100vh) scale(.9603)}}.snow:nth-child(174){opacity:1.8298;transform:translate(7.6997vw,-10px) scale(.9854);animation:fall-174 30s -11s linear infinite}@keyframes fall-174{60.546%{transform:translate(10.8963vw,60.546vh) scale(.9854)}to{transform:translate(9.298vw,100vh) scale(.9854)}}.snow:nth-child(175){opacity:.2038;transform:translate(53.2449vw,-10px) scale(.6317);animation:fall-175 17s -18s linear infinite}@keyframes fall-175{76.078%{transform:translate(55.9569vw,76.078vh) scale(.6317)}to{transform:translate(54.6009vw,100vh) scale(.6317)}}.snow:nth-child(176){opacity:1.1666;transform:translate(68.1242vw,-10px) scale(.9321);animation:fall-176 12s -4s linear infinite}@keyframes fall-176{54.402%{transform:translate(59.4555vw,54.402vh) scale(.9321)}to{transform:translate(63.78985vw,100vh) scale(.9321)}}.snow:nth-child(177){opacity:1.0288;transform:translate(90.5059vw,-10px) scale(.4986);animation:fall-177 12s -16s linear infinite}@keyframes fall-177{34.582%{transform:translate(86.8722vw,34.582vh) scale(.4986)}to{transform:translate(88.68905vw,100vh) scale(.4986)}}.snow:nth-child(178){opacity:1.3532;transform:translate(92.5499vw,-10px) scale(.8706);animation:fall-178 15s -5s linear infinite}@keyframes fall-178{67.598%{transform:translate(90.7559vw,67.598vh) scale(.8706)}to{transform:translate(91.6529vw,100vh) scale(.8706)}}.snow:nth-child(179){opacity:.5512;transform:translate(16.2994vw,-10px) scale(.3384);animation:fall-179 28s -30s linear infinite}@keyframes fall-179{74.719%{transform:translate(21.1179vw,74.719vh) scale(.3384)}to{transform:translate(18.70865vw,100vh) scale(.3384)}}.snow:nth-child(180){opacity:.8992;transform:translate(60.6062vw,-10px) scale(.3265);animation:fall-180 15s -28s linear infinite}@keyframes fall-180{48.305%{transform:translate(65.0087vw,48.305vh) scale(.3265)}to{transform:translate(62.80745vw,100vh) scale(.3265)}}.snow:nth-child(181){opacity:.5256;transform:translate(69.522vw,-10px) scale(.86);animation:fall-181 14s -1s linear infinite}@keyframes fall-181{36.527%{transform:translate(67.6525vw,36.527vh) scale(.86)}to{transform:translate(68.58725vw,100vh) scale(.86)}}.snow:nth-child(182){opacity:.7932;transform:translate(88.1828vw,-10px) scale(.7364);animation:fall-182 17s -13s linear infinite}@keyframes fall-182{77.495%{transform:translate(96.4967vw,77.495vh) scale(.7364)}to{transform:translate(92.33975vw,100vh) scale(.7364)}}.snow:nth-child(183){opacity:.3988;transform:translate(22.409vw,-10px) scale(.4972);animation:fall-183 28s -9s linear infinite}@keyframes fall-183{41.408%{transform:translate(22.7115vw,41.408vh) scale(.4972)}to{transform:translate(22.56025vw,100vh) scale(.4972)}}.snow:nth-child(184){opacity:1.087;transform:translate(70.7808vw,-10px) scale(.4353);animation:fall-184 13s -26s linear infinite}@keyframes fall-184{62.184%{transform:translate(78.7399vw,62.184vh) scale(.4353)}to{transform:translate(74.76035vw,100vh) scale(.4353)}}.snow:nth-child(185){opacity:1.68;transform:translate(22.3775vw,-10px) scale(.5805);animation:fall-185 19s -1s linear infinite}@keyframes fall-185{43.634%{transform:translate(17.7261vw,43.634vh) scale(.5805)}to{transform:translate(20.0518vw,100vh) scale(.5805)}}.snow:nth-child(186){opacity:1.8508;transform:translate(50.8462vw,-10px) scale(.5798);animation:fall-186 15s -11s linear infinite}@keyframes fall-186{54.512%{transform:translate(51.1325vw,54.512vh) scale(.5798)}to{transform:translate(50.98935vw,100vh) scale(.5798)}}.snow:nth-child(187){opacity:.6362;transform:translate(99.1558vw,-10px) scale(.1577);animation:fall-187 11s -29s linear infinite}@keyframes fall-187{30.598%{transform:translate(101.8993vw,30.598vh) scale(.1577)}to{transform:translate(100.52755vw,100vh) scale(.1577)}}.snow:nth-child(188){opacity:1.1042;transform:translate(95.4531vw,-10px) scale(.7869);animation:fall-188 29s -14s linear infinite}@keyframes fall-188{41.807%{transform:translate(105.3304vw,41.807vh) scale(.7869)}to{transform:translate(100.39175vw,100vh) scale(.7869)}}.snow:nth-child(189){opacity:1.7614;transform:translate(66.8265vw,-10px) scale(.7936);animation:fall-189 29s -25s linear infinite}@keyframes fall-189{76.28%{transform:translate(66.2006vw,76.28vh) scale(.7936)}to{transform:translate(66.51355vw,100vh) scale(.7936)}}.snow:nth-child(190){opacity:.8604;transform:translate(39.6491vw,-10px) scale(.906);animation:fall-190 19s -19s linear infinite}@keyframes fall-190{47.168%{transform:translate(39.0054vw,47.168vh) scale(.906)}to{transform:translate(39.32725vw,100vh) scale(.906)}}.snow:nth-child(191){opacity:.3702;transform:translate(14.6354vw,-10px) scale(.1151);animation:fall-191 11s -27s linear infinite}@keyframes fall-191{59.492%{transform:translate(13.9771vw,59.492vh) scale(.1151)}to{transform:translate(14.30625vw,100vh) scale(.1151)}}.snow:nth-child(192){opacity:1.3946;transform:translate(31.8003vw,-10px) scale(.1778);animation:fall-192 15s -18s linear infinite}@keyframes fall-192{76.683%{transform:translate(26.693vw,76.683vh) scale(.1778)}to{transform:translate(29.24665vw,100vh) scale(.1778)}}.snow:nth-child(193){opacity:1.3044;transform:translate(28.93vw,-10px) scale(.8252);animation:fall-193 12s -8s linear infinite}@keyframes fall-193{54.796%{transform:translate(19.1917vw,54.796vh) scale(.8252)}to{transform:translate(24.06085vw,100vh) scale(.8252)}}.snow:nth-child(194){opacity:.9586;transform:translate(36.3671vw,-10px) scale(.0367);animation:fall-194 17s -19s linear infinite}@keyframes fall-194{33.686%{transform:translate(33.9295vw,33.686vh) scale(.0367)}to{transform:translate(35.1483vw,100vh) scale(.0367)}}.snow:nth-child(195){opacity:.8492;transform:translate(44.3772vw,-10px) scale(.2162);animation:fall-195 26s -25s linear infinite}@keyframes fall-195{54.986%{transform:translate(54.3548vw,54.986vh) scale(.2162)}to{transform:translate(49.366vw,100vh) scale(.2162)}}.snow:nth-child(196){opacity:1.2266;transform:translate(61.2262vw,-10px) scale(.9537);animation:fall-196 13s -4s linear infinite}@keyframes fall-196{30.871%{transform:translate(59.3334vw,30.871vh) scale(.9537)}to{transform:translate(60.2798vw,100vh) scale(.9537)}}.snow:nth-child(197){opacity:1.0794;transform:translate(89.76vw,-10px) scale(.8463);animation:fall-197 12s -17s linear infinite}@keyframes fall-197{37.42%{transform:translate(88.5314vw,37.42vh) scale(.8463)}to{transform:translate(89.1457vw,100vh) scale(.8463)}}.snow:nth-child(198){opacity:1.5054;transform:translate(73.1062vw,-10px) scale(.4595);animation:fall-198 12s -15s linear infinite}@keyframes fall-198{75.581%{transform:translate(72.3902vw,75.581vh) scale(.4595)}to{transform:translate(72.7482vw,100vh) scale(.4595)}}.snow:nth-child(199){opacity:1.8056;transform:translate(54.5938vw,-10px) scale(.2065);animation:fall-199 21s -3s linear infinite}@keyframes fall-199{72.169%{transform:translate(59.1811vw,72.169vh) scale(.2065)}to{transform:translate(56.88745vw,100vh) scale(.2065)}}.snow:nth-child(200){opacity:1.199;transform:translate(54.3096vw,-10px) scale(.0562);animation:fall-200 29s -19s linear infinite}@keyframes fall-200{75.049%{transform:translate(60.2539vw,75.049vh) scale(.0562)}to{transform:translate(57.28175vw,100vh) scale(.0562)}}.snow:nth-child(201){opacity:1.4314;transform:translate(97.9862vw,-10px) scale(.6986);animation:fall-201 11s -13s linear infinite}@keyframes fall-201{55.973%{transform:translate(107.9724vw,55.973vh) scale(.6986)}to{transform:translate(102.9793vw,100vh) scale(.6986)}}.snow:nth-child(202){opacity:.6038;transform:translate(88.985vw,-10px) scale(.7082);animation:fall-202 20s -1s linear infinite}@keyframes fall-202{35.63%{transform:translate(92.0233vw,35.63vh) scale(.7082)}to{transform:translate(90.50415vw,100vh) scale(.7082)}}.snow:nth-child(203){opacity:1.5892;transform:translate(86.6987vw,-10px) scale(.1819);animation:fall-203 10s -5s linear infinite}@keyframes fall-203{78.123%{transform:translate(88.0677vw,78.123vh) scale(.1819)}to{transform:translate(87.3832vw,100vh) scale(.1819)}}.snow:nth-child(204){opacity:1.1468;transform:translate(83.8222vw,-10px) scale(.3658);animation:fall-204 30s -13s linear infinite}@keyframes fall-204{65.914%{transform:translate(78.4998vw,65.914vh) scale(.3658)}to{transform:translate(81.161vw,100vh) scale(.3658)}}.snow:nth-child(205){opacity:.4634;transform:translate(46.5295vw,-10px) scale(.392);animation:fall-205 22s -23s linear infinite}@keyframes fall-205{77.162%{transform:translate(50.3559vw,77.162vh) scale(.392)}to{transform:translate(48.4427vw,100vh) scale(.392)}}.snow:nth-child(206){opacity:.2688;transform:translate(36.3019vw,-10px) scale(.955);animation:fall-206 14s -25s linear infinite}@keyframes fall-206{48.18%{transform:translate(33.1791vw,48.18vh) scale(.955)}to{transform:translate(34.7405vw,100vh) scale(.955)}}.snow:nth-child(207){opacity:.6248;transform:translate(69.1324vw,-10px) scale(.8101);animation:fall-207 28s -17s linear infinite}@keyframes fall-207{74.572%{transform:translate(69.7523vw,74.572vh) scale(.8101)}to{transform:translate(69.44235vw,100vh) scale(.8101)}}.snow:nth-child(208){opacity:.7054;transform:translate(41.0532vw,-10px) scale(.1065);animation:fall-208 22s -6s linear infinite}@keyframes fall-208{74.633%{transform:translate(48.45vw,74.633vh) scale(.1065)}to{transform:translate(44.7516vw,100vh) scale(.1065)}}.snow:nth-child(209){opacity:1.926;transform:translate(55.5195vw,-10px) scale(.0259);animation:fall-209 14s -27s linear infinite}@keyframes fall-209{31.805%{transform:translate(60.2278vw,31.805vh) scale(.0259)}to{transform:translate(57.87365vw,100vh) scale(.0259)}}.snow:nth-child(210){opacity:.778;transform:translate(54.2802vw,-10px) scale(.3563);animation:fall-210 20s -23s linear infinite}@keyframes fall-210{77.426%{transform:translate(52.1643vw,77.426vh) scale(.3563)}to{transform:translate(53.22225vw,100vh) scale(.3563)}}.snow:nth-child(211){opacity:1.2116;transform:translate(63.4174vw,-10px) scale(.3444);animation:fall-211 23s -20s linear infinite}@keyframes fall-211{52.391%{transform:translate(63.5192vw,52.391vh) scale(.3444)}to{transform:translate(63.4683vw,100vh) scale(.3444)}}.snow:nth-child(212){opacity:.061;transform:translate(69.7074vw,-10px) scale(.3082);animation:fall-212 11s -25s linear infinite}@keyframes fall-212{57.387%{transform:translate(78.8263vw,57.387vh) scale(.3082)}to{transform:translate(74.26685vw,100vh) scale(.3082)}}.snow:nth-child(213){opacity:1.77;transform:translate(75.3356vw,-10px) scale(.042);animation:fall-213 23s -3s linear infinite}@keyframes fall-213{73.182%{transform:translate(80.7018vw,73.182vh) scale(.042)}to{transform:translate(78.0187vw,100vh) scale(.042)}}.snow:nth-child(214){opacity:.7634;transform:translate(10.2966vw,-10px) scale(.0053);animation:fall-214 13s -20s linear infinite}@keyframes fall-214{45.632%{transform:translate(3.7024vw,45.632vh) scale(.0053)}to{transform:translate(6.9995vw,100vh) scale(.0053)}}.snow:nth-child(215){opacity:.8772;transform:translate(36.7797vw,-10px) scale(.4012);animation:fall-215 21s -13s linear infinite}@keyframes fall-215{62.073%{transform:translate(28.9497vw,62.073vh) scale(.4012)}to{transform:translate(32.8647vw,100vh) scale(.4012)}}.snow:nth-child(216){opacity:1.0614;transform:translate(29.229vw,-10px) scale(.3809);animation:fall-216 20s -14s linear infinite}@keyframes fall-216{43.27%{transform:translate(32.5551vw,43.27vh) scale(.3809)}to{transform:translate(30.89205vw,100vh) scale(.3809)}}.snow:nth-child(217){opacity:.1036;transform:translate(45.4249vw,-10px) scale(.8892);animation:fall-217 18s -8s linear infinite}@keyframes fall-217{67.929%{transform:translate(45.737vw,67.929vh) scale(.8892)}to{transform:translate(45.58095vw,100vh) scale(.8892)}}.snow:nth-child(218){opacity:1.9972;transform:translate(73.5161vw,-10px) scale(.7472);animation:fall-218 19s -4s linear infinite}@keyframes fall-218{58.013%{transform:translate(82.3664vw,58.013vh) scale(.7472)}to{transform:translate(77.94125vw,100vh) scale(.7472)}}.snow:nth-child(219){opacity:.1164;transform:translate(49.3009vw,-10px) scale(.7196);animation:fall-219 30s -18s linear infinite}@keyframes fall-219{61.645%{transform:translate(47.7942vw,61.645vh) scale(.7196)}to{transform:translate(48.54755vw,100vh) scale(.7196)}}.snow:nth-child(220){opacity:1.0618;transform:translate(7.4418vw,-10px) scale(.592);animation:fall-220 20s -6s linear infinite}@keyframes fall-220{63.209%{transform:translate(8.7151vw,63.209vh) scale(.592)}to{transform:translate(8.07845vw,100vh) scale(.592)}}.snow:nth-child(221){opacity:1.629;transform:translate(66.9173vw,-10px) scale(.4486);animation:fall-221 17s -14s linear infinite}@keyframes fall-221{42.607%{transform:translate(76.3124vw,42.607vh) scale(.4486)}to{transform:translate(71.61485vw,100vh) scale(.4486)}}.snow:nth-child(222){opacity:1.3682;transform:translate(20.2868vw,-10px) scale(.2402);animation:fall-222 21s -9s linear infinite}@keyframes fall-222{59.044%{transform:translate(29.6031vw,59.044vh) scale(.2402)}to{transform:translate(24.94495vw,100vh) scale(.2402)}}.snow:nth-child(223){opacity:.361;transform:translate(23.5895vw,-10px) scale(.7048);animation:fall-223 29s -25s linear infinite}@keyframes fall-223{71.277%{transform:translate(30.359vw,71.277vh) scale(.7048)}to{transform:translate(26.97425vw,100vh) scale(.7048)}}.snow:nth-child(224){opacity:1.1814;transform:translate(64.8778vw,-10px) scale(.211);animation:fall-224 16s -15s linear infinite}@keyframes fall-224{48.416%{transform:translate(65.5521vw,48.416vh) scale(.211)}to{transform:translate(65.21495vw,100vh) scale(.211)}}.snow:nth-child(225){opacity:1.865;transform:translate(42.5078vw,-10px) scale(.6947);animation:fall-225 12s -23s linear infinite}@keyframes fall-225{34.887%{transform:translate(32.6352vw,34.887vh) scale(.6947)}to{transform:translate(37.5715vw,100vh) scale(.6947)}}.snow:nth-child(226){opacity:1.1214;transform:translate(29.6572vw,-10px) scale(.5529);animation:fall-226 23s -17s linear infinite}@keyframes fall-226{65.694%{transform:translate(30.2798vw,65.694vh) scale(.5529)}to{transform:translate(29.9685vw,100vh) scale(.5529)}}.snow:nth-child(227){opacity:1.3222;transform:translate(29.6141vw,-10px) scale(.4761);animation:fall-227 22s -5s linear infinite}@keyframes fall-227{59.879%{transform:translate(34.8922vw,59.879vh) scale(.4761)}to{transform:translate(32.25315vw,100vh) scale(.4761)}}.snow:nth-child(228){opacity:1.4702;transform:translate(11.8689vw,-10px) scale(.5769);animation:fall-228 30s -12s linear infinite}@keyframes fall-228{70.936%{transform:translate(20.348vw,70.936vh) scale(.5769)}to{transform:translate(16.10845vw,100vh) scale(.5769)}}.snow:nth-child(229){opacity:.3764;transform:translate(9.2861vw,-10px) scale(.7813);animation:fall-229 28s -24s linear infinite}@keyframes fall-229{33.287%{transform:translate(4.2811vw,33.287vh) scale(.7813)}to{transform:translate(6.7836vw,100vh) scale(.7813)}}.snow:nth-child(230){opacity:.3524;transform:translate(41.8665vw,-10px) scale(.9659);animation:fall-230 24s -11s linear infinite}@keyframes fall-230{48.192%{transform:translate(37.6312vw,48.192vh) scale(.9659)}to{transform:translate(39.74885vw,100vh) scale(.9659)}}.snow:nth-child(231){opacity:1.407;transform:translate(77.6548vw,-10px) scale(.3485);animation:fall-231 16s -8s linear infinite}@keyframes fall-231{38.777%{transform:translate(68.2728vw,38.777vh) scale(.3485)}to{transform:translate(72.9638vw,100vh) scale(.3485)}}.snow:nth-child(232){opacity:.5308;transform:translate(99.5988vw,-10px) scale(.3944);animation:fall-232 30s -2s linear infinite}@keyframes fall-232{62.52%{transform:translate(96.1184vw,62.52vh) scale(.3944)}to{transform:translate(97.8586vw,100vh) scale(.3944)}}.snow:nth-child(233){opacity:1.0998;transform:translate(18.5761vw,-10px) scale(.875);animation:fall-233 28s -9s linear infinite}@keyframes fall-233{68.032%{transform:translate(19.5954vw,68.032vh) scale(.875)}to{transform:translate(19.08575vw,100vh) scale(.875)}}.snow:nth-child(234){opacity:1.678;transform:translate(72.9925vw,-10px) scale(.0289);animation:fall-234 11s -17s linear infinite}@keyframes fall-234{47.398%{transform:translate(74.4707vw,47.398vh) scale(.0289)}to{transform:translate(73.7316vw,100vh) scale(.0289)}}.snow:nth-child(235){opacity:.9502;transform:translate(97.1645vw,-10px) scale(.4513);animation:fall-235 19s -19s linear infinite}@keyframes fall-235{46.591%{transform:translate(99.5453vw,46.591vh) scale(.4513)}to{transform:translate(98.3549vw,100vh) scale(.4513)}}.snow:nth-child(236){opacity:1.4284;transform:translate(87.3193vw,-10px) scale(.3664);animation:fall-236 17s -8s linear infinite}@keyframes fall-236{50.144%{transform:translate(78.6145vw,50.144vh) scale(.3664)}to{transform:translate(82.9669vw,100vh) scale(.3664)}}.snow:nth-child(237){opacity:1.6146;transform:translate(97.3722vw,-10px) scale(.6151);animation:fall-237 19s -4s linear infinite}@keyframes fall-237{40.606%{transform:translate(89.5077vw,40.606vh) scale(.6151)}to{transform:translate(93.43995vw,100vh) scale(.6151)}}.snow:nth-child(238){opacity:1.6022;transform:translate(79.715vw,-10px) scale(.9106);animation:fall-238 21s -12s linear infinite}@keyframes fall-238{66.197%{transform:translate(85.6845vw,66.197vh) scale(.9106)}to{transform:translate(82.69975vw,100vh) scale(.9106)}}.snow:nth-child(239){opacity:.393;transform:translate(18.8382vw,-10px) scale(.1549);animation:fall-239 19s -20s linear infinite}@keyframes fall-239{36.716%{transform:translate(18.2558vw,36.716vh) scale(.1549)}to{transform:translate(18.547vw,100vh) scale(.1549)}}.snow:nth-child(240){opacity:.95;transform:translate(46.988vw,-10px) scale(.18);animation:fall-240 13s -19s linear infinite}@keyframes fall-240{50.766%{transform:translate(42.0788vw,50.766vh) scale(.18)}to{transform:translate(44.5334vw,100vh) scale(.18)}}.snow:nth-child(241){opacity:1.082;transform:translate(53.9649vw,-10px) scale(.0577);animation:fall-241 17s -22s linear infinite}@keyframes fall-241{70.352%{transform:translate(63.2554vw,70.352vh) scale(.0577)}to{transform:translate(58.61015vw,100vh) scale(.0577)}}.snow:nth-child(242){opacity:1.5412;transform:translate(26.4489vw,-10px) scale(.9457);animation:fall-242 17s -11s linear infinite}@keyframes fall-242{40.85%{transform:translate(35.3058vw,40.85vh) scale(.9457)}to{transform:translate(30.87735vw,100vh) scale(.9457)}}.snow:nth-child(243){opacity:.7332;transform:translate(60.1306vw,-10px) scale(.2171);animation:fall-243 26s -5s linear infinite}@keyframes fall-243{43.861%{transform:translate(64.006vw,43.861vh) scale(.2171)}to{transform:translate(62.0683vw,100vh) scale(.2171)}}.snow:nth-child(244){opacity:1.919;transform:translate(15.2367vw,-10px) scale(.1204);animation:fall-244 15s -7s linear infinite}@keyframes fall-244{68.884%{transform:translate(8.5785vw,68.884vh) scale(.1204)}to{transform:translate(11.9076vw,100vh) scale(.1204)}}.snow:nth-child(245){opacity:1.9144;transform:translate(1.9574vw,-10px) scale(.4101);animation:fall-245 27s -16s linear infinite}@keyframes fall-245{58.034%{transform:translate(-6.1332vw,58.034vh) scale(.4101)}to{transform:translate(-2.0879vw,100vh) scale(.4101)}}.snow:nth-child(246){opacity:1.4852;transform:translate(96.9571vw,-10px) scale(.9665);animation:fall-246 17s -17s linear infinite}@keyframes fall-246{56.188%{transform:translate(90.4656vw,56.188vh) scale(.9665)}to{transform:translate(93.71135vw,100vh) scale(.9665)}}.snow:nth-child(247){opacity:.8204;transform:translate(78.455vw,-10px) scale(.2552);animation:fall-247 26s -28s linear infinite}@keyframes fall-247{48.208%{transform:translate(85.4837vw,48.208vh) scale(.2552)}to{transform:translate(81.96935vw,100vh) scale(.2552)}}.snow:nth-child(248){opacity:.2622;transform:translate(54.3777vw,-10px) scale(.4603);animation:fall-248 25s -5s linear infinite}@keyframes fall-248{58.2%{transform:translate(50.066vw,58.2vh) scale(.4603)}to{transform:translate(52.22185vw,100vh) scale(.4603)}}.snow:nth-child(249){opacity:.847;transform:translate(83.5581vw,-10px) scale(.173);animation:fall-249 23s -9s linear infinite}@keyframes fall-249{36.766%{transform:translate(92.1987vw,36.766vh) scale(.173)}to{transform:translate(87.8784vw,100vh) scale(.173)}}.snow:nth-child(250){opacity:.206;transform:translate(71.0039vw,-10px) scale(.2001);animation:fall-250 10s -27s linear infinite}@keyframes fall-250{63.43%{transform:translate(76.9714vw,63.43vh) scale(.2001)}to{transform:translate(73.98765vw,100vh) scale(.2001)}}.snow:nth-child(251){opacity:.4568;transform:translate(4.179vw,-10px) scale(.205);animation:fall-251 26s -13s linear infinite}@keyframes fall-251{34.831%{transform:translate(6.9522vw,34.831vh) scale(.205)}to{transform:translate(5.5656vw,100vh) scale(.205)}}.snow:nth-child(252){opacity:.8448;transform:translate(38.6855vw,-10px) scale(.52);animation:fall-252 28s -29s linear infinite}@keyframes fall-252{57.94%{transform:translate(29.4011vw,57.94vh) scale(.52)}to{transform:translate(34.0433vw,100vh) scale(.52)}}.snow:nth-child(253){opacity:.145;transform:translate(75.058vw,-10px) scale(.1044);animation:fall-253 18s -26s linear infinite}@keyframes fall-253{51.104%{transform:translate(77.1793vw,51.104vh) scale(.1044)}to{transform:translate(76.11865vw,100vh) scale(.1044)}}.snow:nth-child(254){opacity:1.7248;transform:translate(.1038vw,-10px) scale(.5956);animation:fall-254 27s -16s linear infinite}@keyframes fall-254{56.24%{transform:translate(7.7075vw,56.24vh) scale(.5956)}to{transform:translate(3.90565vw,100vh) scale(.5956)}}.snow:nth-child(255){opacity:.6624;transform:translate(95.0596vw,-10px) scale(.4723);animation:fall-255 28s -26s linear infinite}@keyframes fall-255{45.991%{transform:translate(87.8133vw,45.991vh) scale(.4723)}to{transform:translate(91.43645vw,100vh) scale(.4723)}}.snow:nth-child(256){opacity:.2494;transform:translate(72.7226vw,-10px) scale(.1111);animation:fall-256 27s -23s linear infinite}@keyframes fall-256{45.741%{transform:translate(78.0899vw,45.741vh) scale(.1111)}to{transform:translate(75.40625vw,100vh) scale(.1111)}}.snow:nth-child(257){opacity:1.4152;transform:translate(35.5542vw,-10px) scale(.0709);animation:fall-257 12s -12s linear infinite}@keyframes fall-257{32.45%{transform:translate(35.7705vw,32.45vh) scale(.0709)}to{transform:translate(35.66235vw,100vh) scale(.0709)}}.snow:nth-child(258){opacity:1.4932;transform:translate(82.0045vw,-10px) scale(.4437);animation:fall-258 18s -9s linear infinite}@keyframes fall-258{49.07%{transform:translate(89.9228vw,49.07vh) scale(.4437)}to{transform:translate(85.96365vw,100vh) scale(.4437)}}.snow:nth-child(259){opacity:1.7278;transform:translate(81.1442vw,-10px) scale(.3304);animation:fall-259 27s -20s linear infinite}@keyframes fall-259{36.485%{transform:translate(82.4986vw,36.485vh) scale(.3304)}to{transform:translate(81.8214vw,100vh) scale(.3304)}}.snow:nth-child(260){opacity:.4408;transform:translate(69.155vw,-10px) scale(.2386);animation:fall-260 21s -9s linear infinite}@keyframes fall-260{66.214%{transform:translate(60.4823vw,66.214vh) scale(.2386)}to{transform:translate(64.81865vw,100vh) scale(.2386)}}.snow:nth-child(261){opacity:1.5806;transform:translate(53.2822vw,-10px) scale(.3324);animation:fall-261 28s -5s linear infinite}@keyframes fall-261{31.651%{transform:translate(46.9253vw,31.651vh) scale(.3324)}to{transform:translate(50.10375vw,100vh) scale(.3324)}}.snow:nth-child(262){opacity:1.8566;transform:translate(27.3188vw,-10px) scale(.2669);animation:fall-262 19s -6s linear infinite}@keyframes fall-262{51.273%{transform:translate(35.9705vw,51.273vh) scale(.2669)}to{transform:translate(31.64465vw,100vh) scale(.2669)}}.snow:nth-child(263){opacity:.516;transform:translate(81.8283vw,-10px) scale(.2668);animation:fall-263 12s -28s linear infinite}@keyframes fall-263{32.596%{transform:translate(90.2564vw,32.596vh) scale(.2668)}to{transform:translate(86.04235vw,100vh) scale(.2668)}}.snow:nth-child(264){opacity:.1774;transform:translate(76.7791vw,-10px) scale(.344);animation:fall-264 22s -23s linear infinite}@keyframes fall-264{61.33%{transform:translate(68.7972vw,61.33vh) scale(.344)}to{transform:translate(72.78815vw,100vh) scale(.344)}}.snow:nth-child(265){opacity:1.3444;transform:translate(7.1542vw,-10px) scale(.8033);animation:fall-265 29s -28s linear infinite}@keyframes fall-265{39.4%{transform:translate(7.5201vw,39.4vh) scale(.8033)}to{transform:translate(7.33715vw,100vh) scale(.8033)}}.snow:nth-child(266){opacity:.1246;transform:translate(9.8094vw,-10px) scale(.0438);animation:fall-266 26s -8s linear infinite}@keyframes fall-266{48.92%{transform:translate(9.7283vw,48.92vh) scale(.0438)}to{transform:translate(9.76885vw,100vh) scale(.0438)}}.snow:nth-child(267){opacity:1.5012;transform:translate(43.0297vw,-10px) scale(.3958);animation:fall-267 18s -19s linear infinite}@keyframes fall-267{32.29%{transform:translate(40.6551vw,32.29vh) scale(.3958)}to{transform:translate(41.8424vw,100vh) scale(.3958)}}.snow:nth-child(268){opacity:1.7616;transform:translate(97.0857vw,-10px) scale(.6841);animation:fall-268 19s -30s linear infinite}@keyframes fall-268{69.379%{transform:translate(95.848vw,69.379vh) scale(.6841)}to{transform:translate(96.46685vw,100vh) scale(.6841)}}.snow:nth-child(269){opacity:.7764;transform:translate(43.998vw,-10px) scale(.7788);animation:fall-269 28s -27s linear infinite}@keyframes fall-269{59.797%{transform:translate(51.7633vw,59.797vh) scale(.7788)}to{transform:translate(47.88065vw,100vh) scale(.7788)}}.snow:nth-child(270){opacity:.9526;transform:translate(12.2701vw,-10px) scale(.656);animation:fall-270 18s -27s linear infinite}@keyframes fall-270{68.435%{transform:translate(14.2103vw,68.435vh) scale(.656)}to{transform:translate(13.2402vw,100vh) scale(.656)}}.snow:nth-child(271){opacity:.7922;transform:translate(51.2644vw,-10px) scale(.3219);animation:fall-271 20s -6s linear infinite}@keyframes fall-271{46.855%{transform:translate(49.4121vw,46.855vh) scale(.3219)}to{transform:translate(50.33825vw,100vh) scale(.3219)}}.snow:nth-child(272){opacity:.1554;transform:translate(99.9271vw,-10px) scale(.5876);animation:fall-272 12s -27s linear infinite}@keyframes fall-272{53.315%{transform:translate(95.0689vw,53.315vh) scale(.5876)}to{transform:translate(97.498vw,100vh) scale(.5876)}}.snow:nth-child(273){opacity:1.9376;transform:translate(49.2578vw,-10px) scale(.6001);animation:fall-273 13s -1s linear infinite}@keyframes fall-273{35.385%{transform:translate(56.1229vw,35.385vh) scale(.6001)}to{transform:translate(52.69035vw,100vh) scale(.6001)}}.snow:nth-child(274){opacity:.5048;transform:translate(76.5699vw,-10px) scale(.7155);animation:fall-274 18s -19s linear infinite}@keyframes fall-274{38.308%{transform:translate(69.1287vw,38.308vh) scale(.7155)}to{transform:translate(72.8493vw,100vh) scale(.7155)}}.snow:nth-child(275){opacity:.6692;transform:translate(95.6551vw,-10px) scale(.8158);animation:fall-275 24s -1s linear infinite}@keyframes fall-275{74.428%{transform:translate(101.3528vw,74.428vh) scale(.8158)}to{transform:translate(98.50395vw,100vh) scale(.8158)}}.snow:nth-child(276){opacity:1.0028;transform:translate(78.2239vw,-10px) scale(.8448);animation:fall-276 29s -23s linear infinite}@keyframes fall-276{63.575%{transform:translate(85.9761vw,63.575vh) scale(.8448)}to{transform:translate(82.1vw,100vh) scale(.8448)}}.snow:nth-child(277){opacity:1.0032;transform:translate(66.5788vw,-10px) scale(.7195);animation:fall-277 26s -18s linear infinite}@keyframes fall-277{38.488%{transform:translate(64.2828vw,38.488vh) scale(.7195)}to{transform:translate(65.4308vw,100vh) scale(.7195)}}.snow:nth-child(278){opacity:.4856;transform:translate(25.8693vw,-10px) scale(.4442);animation:fall-278 11s -11s linear infinite}@keyframes fall-278{75.701%{transform:translate(31.5267vw,75.701vh) scale(.4442)}to{transform:translate(28.698vw,100vh) scale(.4442)}}.snow:nth-child(279){opacity:1.047;transform:translate(12.2663vw,-10px) scale(.2372);animation:fall-279 21s -23s linear infinite}@keyframes fall-279{52.453%{transform:translate(13.9847vw,52.453vh) scale(.2372)}to{transform:translate(13.1255vw,100vh) scale(.2372)}}.snow:nth-child(280){opacity:1.8852;transform:translate(50.8218vw,-10px) scale(.6164);animation:fall-280 19s -17s linear infinite}@keyframes fall-280{46.496%{transform:translate(51.1665vw,46.496vh) scale(.6164)}to{transform:translate(50.99415vw,100vh) scale(.6164)}}.snow:nth-child(281){opacity:1.6394;transform:translate(81.9762vw,-10px) scale(.0512);animation:fall-281 22s -2s linear infinite}@keyframes fall-281{73.493%{transform:translate(88.2192vw,73.493vh) scale(.0512)}to{transform:translate(85.0977vw,100vh) scale(.0512)}}.snow:nth-child(282){opacity:.614;transform:translate(28.6123vw,-10px) scale(.7212);animation:fall-282 24s -16s linear infinite}@keyframes fall-282{53.226%{transform:translate(33.803vw,53.226vh) scale(.7212)}to{transform:translate(31.20765vw,100vh) scale(.7212)}}.snow:nth-child(283){opacity:.3124;transform:translate(82.8473vw,-10px) scale(.1028);animation:fall-283 18s -5s linear infinite}@keyframes fall-283{36.139%{transform:translate(74.9644vw,36.139vh) scale(.1028)}to{transform:translate(78.90585vw,100vh) scale(.1028)}}.snow:nth-child(284){opacity:.0542;transform:translate(64.6013vw,-10px) scale(.706);animation:fall-284 15s -16s linear infinite}@keyframes fall-284{43.26%{transform:translate(60.024vw,43.26vh) scale(.706)}to{transform:translate(62.31265vw,100vh) scale(.706)}}.snow:nth-child(285){opacity:.7408;transform:translate(88.4814vw,-10px) scale(.247);animation:fall-285 28s -27s linear infinite}@keyframes fall-285{36.873%{transform:translate(95.6389vw,36.873vh) scale(.247)}to{transform:translate(92.06015vw,100vh) scale(.247)}}.snow:nth-child(286){opacity:1.5858;transform:translate(92.6279vw,-10px) scale(.6229);animation:fall-286 26s -27s linear infinite}@keyframes fall-286{68.031%{transform:translate(97.0511vw,68.031vh) scale(.6229)}to{transform:translate(94.8395vw,100vh) scale(.6229)}}.snow:nth-child(287){opacity:.5224;transform:translate(62.9247vw,-10px) scale(.731);animation:fall-287 14s -24s linear infinite}@keyframes fall-287{33.218%{transform:translate(55.7229vw,33.218vh) scale(.731)}to{transform:translate(59.3238vw,100vh) scale(.731)}}.snow:nth-child(288){opacity:.7302;transform:translate(99.0153vw,-10px) scale(.3831);animation:fall-288 18s -4s linear infinite}@keyframes fall-288{47.599%{transform:translate(103.7644vw,47.599vh) scale(.3831)}to{transform:translate(101.38985vw,100vh) scale(.3831)}}.snow:nth-child(289){opacity:.6706;transform:translate(90.1453vw,-10px) scale(.3473);animation:fall-289 12s -7s linear infinite}@keyframes fall-289{72.977%{transform:translate(96.0414vw,72.977vh) scale(.3473)}to{transform:translate(93.09335vw,100vh) scale(.3473)}}.snow:nth-child(290){opacity:.135;transform:translate(52.4198vw,-10px) scale(.8206);animation:fall-290 18s -1s linear infinite}@keyframes fall-290{65.803%{transform:translate(60.7816vw,65.803vh) scale(.8206)}to{transform:translate(56.6007vw,100vh) scale(.8206)}}.snow:nth-child(291){opacity:.0768;transform:translate(23.3351vw,-10px) scale(.7382);animation:fall-291 18s -3s linear infinite}@keyframes fall-291{60.531%{transform:translate(29.9059vw,60.531vh) scale(.7382)}to{transform:translate(26.6205vw,100vh) scale(.7382)}}.snow:nth-child(292){opacity:.031;transform:translate(37.9638vw,-10px) scale(.0027);animation:fall-292 28s -27s linear infinite}@keyframes fall-292{40.104%{transform:translate(33.3622vw,40.104vh) scale(.0027)}to{transform:translate(35.663vw,100vh) scale(.0027)}}.snow:nth-child(293){opacity:1.7108;transform:translate(77.2716vw,-10px) scale(.9543);animation:fall-293 21s -22s linear infinite}@keyframes fall-293{37.902%{transform:translate(72.5082vw,37.902vh) scale(.9543)}to{transform:translate(74.8899vw,100vh) scale(.9543)}}.snow:nth-child(294){opacity:1.4484;transform:translate(47.5325vw,-10px) scale(.6307);animation:fall-294 17s -28s linear infinite}@keyframes fall-294{77.268%{transform:translate(39.1866vw,77.268vh) scale(.6307)}to{transform:translate(43.35955vw,100vh) scale(.6307)}}.snow:nth-child(295){opacity:.6774;transform:translate(40.8534vw,-10px) scale(.9637);animation:fall-295 19s -14s linear infinite}@keyframes fall-295{33.277%{transform:translate(49.9563vw,33.277vh) scale(.9637)}to{transform:translate(45.40485vw,100vh) scale(.9637)}}.snow:nth-child(296){opacity:1.858;transform:translate(14.0818vw,-10px) scale(.0841);animation:fall-296 26s -7s linear infinite}@keyframes fall-296{73.72%{transform:translate(11.6305vw,73.72vh) scale(.0841)}to{transform:translate(12.85615vw,100vh) scale(.0841)}}.snow:nth-child(297){opacity:.2178;transform:translate(59.823vw,-10px) scale(.7442);animation:fall-297 14s -11s linear infinite}@keyframes fall-297{50.694%{transform:translate(63.3173vw,50.694vh) scale(.7442)}to{transform:translate(61.57015vw,100vh) scale(.7442)}}.snow:nth-child(298){opacity:1.4902;transform:translate(5.0694vw,-10px) scale(.8171);animation:fall-298 24s -17s linear infinite}@keyframes fall-298{69.552%{transform:translate(12.8624vw,69.552vh) scale(.8171)}to{transform:translate(8.9659vw,100vh) scale(.8171)}}.snow:nth-child(299){opacity:.3974;transform:translate(54.1451vw,-10px) scale(.7896);animation:fall-299 17s -7s linear infinite}@keyframes fall-299{79.05%{transform:translate(45.3473vw,79.05vh) scale(.7896)}to{transform:translate(49.7462vw,100vh) scale(.7896)}}.snow:nth-child(300){opacity:1.895;transform:translate(74.1915vw,-10px) scale(.7556);animation:fall-300 19s -19s linear infinite}@keyframes fall-300{36.906%{transform:translate(74.7763vw,36.906vh) scale(.7556)}to{transform:translate(74.4839vw,100vh) scale(.7556)}}.snow:nth-child(301){opacity:1.8634;transform:translate(7.3761vw,-10px) scale(.2065);animation:fall-301 15s -24s linear infinite}@keyframes fall-301{64.614%{transform:translate(-.0375vw,64.614vh) scale(.2065)}to{transform:translate(3.6693vw,100vh) scale(.2065)}}.snow:nth-child(302){opacity:.7488;transform:translate(57.621vw,-10px) scale(.2934);animation:fall-302 14s -5s linear infinite}@keyframes fall-302{79.096%{transform:translate(61.9618vw,79.096vh) scale(.2934)}to{transform:translate(59.7914vw,100vh) scale(.2934)}}.snow:nth-child(303){opacity:.4388;transform:translate(19.6402vw,-10px) scale(.672);animation:fall-303 16s -1s linear infinite}@keyframes fall-303{39.457%{transform:translate(19.1039vw,39.457vh) scale(.672)}to{transform:translate(19.37205vw,100vh) scale(.672)}}.snow:nth-child(304){opacity:.1048;transform:translate(36.5292vw,-10px) scale(.6508);animation:fall-304 19s -12s linear infinite}@keyframes fall-304{30.558%{transform:translate(44.2457vw,30.558vh) scale(.6508)}to{transform:translate(40.38745vw,100vh) scale(.6508)}}.snow:nth-child(305){opacity:1.5998;transform:translate(7.5814vw,-10px) scale(.9247);animation:fall-305 29s -12s linear infinite}@keyframes fall-305{65.493%{transform:translate(12.7432vw,65.493vh) scale(.9247)}to{transform:translate(10.1623vw,100vh) scale(.9247)}}.snow:nth-child(306){opacity:1.0556;transform:translate(73.3794vw,-10px) scale(.4531);animation:fall-306 25s -15s linear infinite}@keyframes fall-306{61.186%{transform:translate(66.6834vw,61.186vh) scale(.4531)}to{transform:translate(70.0314vw,100vh) scale(.4531)}}.snow:nth-child(307){opacity:1.1848;transform:translate(5.666vw,-10px) scale(.0502);animation:fall-307 11s -30s linear infinite}@keyframes fall-307{36.609%{transform:translate(13.853vw,36.609vh) scale(.0502)}to{transform:translate(9.7595vw,100vh) scale(.0502)}}.snow:nth-child(308){opacity:1.4554;transform:translate(86.7356vw,-10px) scale(.9009);animation:fall-308 14s -19s linear infinite}@keyframes fall-308{78.288%{transform:translate(91.0284vw,78.288vh) scale(.9009)}to{transform:translate(88.882vw,100vh) scale(.9009)}}.snow:nth-child(309){opacity:1.5508;transform:translate(3.3494vw,-10px) scale(.7625);animation:fall-309 16s -7s linear infinite}@keyframes fall-309{71.809%{transform:translate(-3.9318vw,71.809vh) scale(.7625)}to{transform:translate(-.2912vw,100vh) scale(.7625)}}.snow:nth-child(310){opacity:.3826;transform:translate(56.285vw,-10px) scale(.4312);animation:fall-310 21s -23s linear infinite}@keyframes fall-310{75.446%{transform:translate(64.8508vw,75.446vh) scale(.4312)}to{transform:translate(60.5679vw,100vh) scale(.4312)}}.snow:nth-child(311){opacity:1.8214;transform:translate(11.9902vw,-10px) scale(.5658);animation:fall-311 28s -21s linear infinite}@keyframes fall-311{65.298%{transform:translate(9.3309vw,65.298vh) scale(.5658)}to{transform:translate(10.66055vw,100vh) scale(.5658)}}.snow:nth-child(312){opacity:.0064;transform:translate(17.8505vw,-10px) scale(.6521);animation:fall-312 30s -12s linear infinite}@keyframes fall-312{32.518%{transform:translate(9.7766vw,32.518vh) scale(.6521)}to{transform:translate(13.81355vw,100vh) scale(.6521)}}.snow:nth-child(313){opacity:1.4394;transform:translate(88.1049vw,-10px) scale(.1295);animation:fall-313 24s -29s linear infinite}@keyframes fall-313{73.56%{transform:translate(97.4972vw,73.56vh) scale(.1295)}to{transform:translate(92.80105vw,100vh) scale(.1295)}}.snow:nth-child(314){opacity:.8744;transform:translate(83.0937vw,-10px) scale(.8369);animation:fall-314 24s -28s linear infinite}@keyframes fall-314{60.337%{transform:translate(86.2341vw,60.337vh) scale(.8369)}to{transform:translate(84.6639vw,100vh) scale(.8369)}}.snow:nth-child(315){opacity:1.515;transform:translate(33.0489vw,-10px) scale(.2379);animation:fall-315 27s -27s linear infinite}@keyframes fall-315{42.492%{transform:translate(23.5047vw,42.492vh) scale(.2379)}to{transform:translate(28.2768vw,100vh) scale(.2379)}}.snow:nth-child(316){opacity:1.098;transform:translate(62.8266vw,-10px) scale(.6448);animation:fall-316 22s -1s linear infinite}@keyframes fall-316{32.195%{transform:translate(57.2397vw,32.195vh) scale(.6448)}to{transform:translate(60.03315vw,100vh) scale(.6448)}}.snow:nth-child(317){opacity:.7592;transform:translate(80.2625vw,-10px) scale(.2557);animation:fall-317 30s -2s linear infinite}@keyframes fall-317{39.551%{transform:translate(81.8842vw,39.551vh) scale(.2557)}to{transform:translate(81.07335vw,100vh) scale(.2557)}}.snow:nth-child(318){opacity:1.2816;transform:translate(18.6286vw,-10px) scale(.2501);animation:fall-318 22s -28s linear infinite}@keyframes fall-318{49.236%{transform:translate(24.2144vw,49.236vh) scale(.2501)}to{transform:translate(21.4215vw,100vh) scale(.2501)}}.snow:nth-child(319){opacity:1.892;transform:translate(60.3226vw,-10px) scale(.8444);animation:fall-319 23s -22s linear infinite}@keyframes fall-319{32.804%{transform:translate(56.8268vw,32.804vh) scale(.8444)}to{transform:translate(58.5747vw,100vh) scale(.8444)}}.snow:nth-child(320){opacity:1.3058;transform:translate(60.0696vw,-10px) scale(.1324);animation:fall-320 26s -10s linear infinite}@keyframes fall-320{47.92%{transform:translate(50.2084vw,47.92vh) scale(.1324)}to{transform:translate(55.139vw,100vh) scale(.1324)}}.snow:nth-child(321){opacity:.5316;transform:translate(95.0056vw,-10px) scale(.7699);animation:fall-321 19s -10s linear infinite}@keyframes fall-321{53.483%{transform:translate(92.8113vw,53.483vh) scale(.7699)}to{transform:translate(93.90845vw,100vh) scale(.7699)}}.snow:nth-child(322){opacity:1.5038;transform:translate(63.3404vw,-10px) scale(.223);animation:fall-322 16s -16s linear infinite}@keyframes fall-322{60.666%{transform:translate(62.1912vw,60.666vh) scale(.223)}to{transform:translate(62.7658vw,100vh) scale(.223)}}.snow:nth-child(323){opacity:1.5732;transform:translate(54.3163vw,-10px) scale(.1815);animation:fall-323 14s -19s linear infinite}@keyframes fall-323{66.309%{transform:translate(53.1636vw,66.309vh) scale(.1815)}to{transform:translate(53.73995vw,100vh) scale(.1815)}}.snow:nth-child(324){opacity:.226;transform:translate(23.4559vw,-10px) scale(.4184);animation:fall-324 30s -21s linear infinite}@keyframes fall-324{30.073%{transform:translate(24.8061vw,30.073vh) scale(.4184)}to{transform:translate(24.131vw,100vh) scale(.4184)}}.snow:nth-child(325){opacity:.1514;transform:translate(17.616vw,-10px) scale(.9273);animation:fall-325 14s -20s linear infinite}@keyframes fall-325{39.471%{transform:translate(24.5283vw,39.471vh) scale(.9273)}to{transform:translate(21.07215vw,100vh) scale(.9273)}}.snow:nth-child(326){opacity:.754;transform:translate(76.5678vw,-10px) scale(.1538);animation:fall-326 10s -1s linear infinite}@keyframes fall-326{40.887%{transform:translate(81.9467vw,40.887vh) scale(.1538)}to{transform:translate(79.25725vw,100vh) scale(.1538)}}.snow:nth-child(327){opacity:1.892;transform:translate(20.9966vw,-10px) scale(.5583);animation:fall-327 16s -4s linear infinite}@keyframes fall-327{74.201%{transform:translate(12.9892vw,74.201vh) scale(.5583)}to{transform:translate(16.9929vw,100vh) scale(.5583)}}.snow:nth-child(328){opacity:1.9426;transform:translate(36.5324vw,-10px) scale(.9941);animation:fall-328 26s -14s linear infinite}@keyframes fall-328{54.738%{transform:translate(40.3288vw,54.738vh) scale(.9941)}to{transform:translate(38.4306vw,100vh) scale(.9941)}}.snow:nth-child(329){opacity:1.8572;transform:translate(47.28vw,-10px) scale(.8763);animation:fall-329 13s -7s linear infinite}@keyframes fall-329{41.381%{transform:translate(40.9774vw,41.381vh) scale(.8763)}to{transform:translate(44.1287vw,100vh) scale(.8763)}}.snow:nth-child(330){opacity:1.685;transform:translate(70.8127vw,-10px) scale(.5416);animation:fall-330 14s -13s linear infinite}@keyframes fall-330{71.41%{transform:translate(73.6683vw,71.41vh) scale(.5416)}to{transform:translate(72.2405vw,100vh) scale(.5416)}}.snow:nth-child(331){opacity:.8536;transform:translate(97.0904vw,-10px) scale(.5408);animation:fall-331 22s -11s linear infinite}@keyframes fall-331{64.105%{transform:translate(105.959vw,64.105vh) scale(.5408)}to{transform:translate(101.5247vw,100vh) scale(.5408)}}.snow:nth-child(332){opacity:.8626;transform:translate(49.8643vw,-10px) scale(.93);animation:fall-332 13s -9s linear infinite}@keyframes fall-332{75.151%{transform:translate(46.901vw,75.151vh) scale(.93)}to{transform:translate(48.38265vw,100vh) scale(.93)}}.snow:nth-child(333){opacity:.01;transform:translate(51.4058vw,-10px) scale(.8416);animation:fall-333 20s -13s linear infinite}@keyframes fall-333{37.063%{transform:translate(46.2242vw,37.063vh) scale(.8416)}to{transform:translate(48.815vw,100vh) scale(.8416)}}.snow:nth-child(334){opacity:.8724;transform:translate(60.2594vw,-10px) scale(.219);animation:fall-334 22s -29s linear infinite}@keyframes fall-334{49.34%{transform:translate(51.8039vw,49.34vh) scale(.219)}to{transform:translate(56.03165vw,100vh) scale(.219)}}.snow:nth-child(335){opacity:.1876;transform:translate(72.0034vw,-10px) scale(.9094);animation:fall-335 12s -3s linear infinite}@keyframes fall-335{33.83%{transform:translate(68.521vw,33.83vh) scale(.9094)}to{transform:translate(70.2622vw,100vh) scale(.9094)}}.snow:nth-child(336){opacity:1.6346;transform:translate(66.4661vw,-10px) scale(.8485);animation:fall-336 17s -13s linear infinite}@keyframes fall-336{40.21%{transform:translate(61.3812vw,40.21vh) scale(.8485)}to{transform:translate(63.92365vw,100vh) scale(.8485)}}.snow:nth-child(337){opacity:.7204;transform:translate(73.9649vw,-10px) scale(.4005);animation:fall-337 12s -9s linear infinite}@keyframes fall-337{54.002%{transform:translate(79.9416vw,54.002vh) scale(.4005)}to{transform:translate(76.95325vw,100vh) scale(.4005)}}.snow:nth-child(338){opacity:.6722;transform:translate(.7461vw,-10px) scale(.0716);animation:fall-338 29s -24s linear infinite}@keyframes fall-338{50.013%{transform:translate(2.1272vw,50.013vh) scale(.0716)}to{transform:translate(1.43665vw,100vh) scale(.0716)}}.snow:nth-child(339){opacity:.2332;transform:translate(31.1065vw,-10px) scale(.0428);animation:fall-339 30s -22s linear infinite}@keyframes fall-339{53.917%{transform:translate(30.1334vw,53.917vh) scale(.0428)}to{transform:translate(30.61995vw,100vh) scale(.0428)}}.snow:nth-child(340){opacity:1.102;transform:translate(23.9696vw,-10px) scale(.1855);animation:fall-340 20s -1s linear infinite}@keyframes fall-340{61.427%{transform:translate(16.3941vw,61.427vh) scale(.1855)}to{transform:translate(20.18185vw,100vh) scale(.1855)}}.snow:nth-child(341){opacity:.0338;transform:translate(71.4735vw,-10px) scale(.2637);animation:fall-341 27s -3s linear infinite}@keyframes fall-341{71.777%{transform:translate(66.7957vw,71.777vh) scale(.2637)}to{transform:translate(69.1346vw,100vh) scale(.2637)}}.snow:nth-child(342){opacity:.6804;transform:translate(93.4585vw,-10px) scale(.9077);animation:fall-342 29s -10s linear infinite}@keyframes fall-342{34.249%{transform:translate(100.1266vw,34.249vh) scale(.9077)}to{transform:translate(96.79255vw,100vh) scale(.9077)}}.snow:nth-child(343){opacity:1.6034;transform:translate(3.8045vw,-10px) scale(.8227);animation:fall-343 10s -30s linear infinite}@keyframes fall-343{76.842%{transform:translate(8.1453vw,76.842vh) scale(.8227)}to{transform:translate(5.9749vw,100vh) scale(.8227)}}.snow:nth-child(344){opacity:.833;transform:translate(83.4755vw,-10px) scale(.2674);animation:fall-344 19s -7s linear infinite}@keyframes fall-344{52.82%{transform:translate(73.7001vw,52.82vh) scale(.2674)}to{transform:translate(78.5878vw,100vh) scale(.2674)}}.snow:nth-child(345){opacity:1.9448;transform:translate(94.0268vw,-10px) scale(.7049);animation:fall-345 10s -19s linear infinite}@keyframes fall-345{77.216%{transform:translate(88.7139vw,77.216vh) scale(.7049)}to{transform:translate(91.37035vw,100vh) scale(.7049)}}.snow:nth-child(346){opacity:.3458;transform:translate(38.2308vw,-10px) scale(.625);animation:fall-346 11s -4s linear infinite}@keyframes fall-346{52.273%{transform:translate(36.4627vw,52.273vh) scale(.625)}to{transform:translate(37.34675vw,100vh) scale(.625)}}.snow:nth-child(347){opacity:.949;transform:translate(6.6502vw,-10px) scale(.7357);animation:fall-347 27s -27s linear infinite}@keyframes fall-347{32.499%{transform:translate(2.8494vw,32.499vh) scale(.7357)}to{transform:translate(4.7498vw,100vh) scale(.7357)}}.snow:nth-child(348){opacity:.0318;transform:translate(26.3951vw,-10px) scale(.5552);animation:fall-348 22s -24s linear infinite}@keyframes fall-348{59.361%{transform:translate(32.1213vw,59.361vh) scale(.5552)}to{transform:translate(29.2582vw,100vh) scale(.5552)}}.snow:nth-child(349){opacity:.6774;transform:translate(78.9379vw,-10px) scale(.4853);animation:fall-349 14s -6s linear infinite}@keyframes fall-349{67.704%{transform:translate(77.983vw,67.704vh) scale(.4853)}to{transform:translate(78.46045vw,100vh) scale(.4853)}}.snow:nth-child(350){opacity:.807;transform:translate(93.0717vw,-10px) scale(.1935);animation:fall-350 29s -4s linear infinite}@keyframes fall-350{51.346%{transform:translate(100.2361vw,51.346vh) scale(.1935)}to{transform:translate(96.6539vw,100vh) scale(.1935)}}.snow:nth-child(351){opacity:.5156;transform:translate(82.2221vw,-10px) scale(.2299);animation:fall-351 10s -22s linear infinite}@keyframes fall-351{49.524%{transform:translate(82.7065vw,49.524vh) scale(.2299)}to{transform:translate(82.4643vw,100vh) scale(.2299)}}.snow:nth-child(352){opacity:1.4064;transform:translate(27.6144vw,-10px) scale(.3689);animation:fall-352 26s -27s linear infinite}@keyframes fall-352{79.819%{transform:translate(24.7994vw,79.819vh) scale(.3689)}to{transform:translate(26.2069vw,100vh) scale(.3689)}}.snow:nth-child(353){opacity:.0278;transform:translate(28.5508vw,-10px) scale(.9724);animation:fall-353 11s -24s linear infinite}@keyframes fall-353{30.489%{transform:translate(28.8707vw,30.489vh) scale(.9724)}to{transform:translate(28.71075vw,100vh) scale(.9724)}}.snow:nth-child(354){opacity:1.9936;transform:translate(2.0271vw,-10px) scale(.9631);animation:fall-354 13s -5s linear infinite}@keyframes fall-354{36.361%{transform:translate(-5.652vw,36.361vh) scale(.9631)}to{transform:translate(-1.81245vw,100vh) scale(.9631)}}.snow:nth-child(355){opacity:1.5048;transform:translate(13.0027vw,-10px) scale(.8052);animation:fall-355 23s -28s linear infinite}@keyframes fall-355{63.087%{transform:translate(6.0468vw,63.087vh) scale(.8052)}to{transform:translate(9.52475vw,100vh) scale(.8052)}}.snow:nth-child(356){opacity:.261;transform:translate(29.9345vw,-10px) scale(.0971);animation:fall-356 15s -23s linear infinite}@keyframes fall-356{77.881%{transform:translate(23.076vw,77.881vh) scale(.0971)}to{transform:translate(26.50525vw,100vh) scale(.0971)}}.snow:nth-child(357){opacity:1.5482;transform:translate(76.2885vw,-10px) scale(.6822);animation:fall-357 27s -16s linear infinite}@keyframes fall-357{44.549%{transform:translate(74.0538vw,44.549vh) scale(.6822)}to{transform:translate(75.17115vw,100vh) scale(.6822)}}.snow:nth-child(358){opacity:.951;transform:translate(40.767vw,-10px) scale(.1649);animation:fall-358 20s -23s linear infinite}@keyframes fall-358{43.979%{transform:translate(40.8403vw,43.979vh) scale(.1649)}to{transform:translate(40.80365vw,100vh) scale(.1649)}}.snow:nth-child(359){opacity:.2548;transform:translate(66.075vw,-10px) scale(.2905);animation:fall-359 19s -1s linear infinite}@keyframes fall-359{61.439%{transform:translate(57.629vw,61.439vh) scale(.2905)}to{transform:translate(61.852vw,100vh) scale(.2905)}}.snow:nth-child(360){opacity:.6798;transform:translate(4.9199vw,-10px) scale(.9225);animation:fall-360 14s -18s linear infinite}@keyframes fall-360{69.928%{transform:translate(2.3925vw,69.928vh) scale(.9225)}to{transform:translate(3.6562vw,100vh) scale(.9225)}}.snow:nth-child(361){opacity:1.4512;transform:translate(36.7578vw,-10px) scale(.0951);animation:fall-361 18s -10s linear infinite}@keyframes fall-361{30.293%{transform:translate(37.1323vw,30.293vh) scale(.0951)}to{transform:translate(36.94505vw,100vh) scale(.0951)}}.snow:nth-child(362){opacity:.7884;transform:translate(48.6445vw,-10px) scale(.658);animation:fall-362 14s -15s linear infinite}@keyframes fall-362{52.269%{transform:translate(50.7876vw,52.269vh) scale(.658)}to{transform:translate(49.71605vw,100vh) scale(.658)}}.snow:nth-child(363){opacity:.9208;transform:translate(94.6784vw,-10px) scale(.4217);animation:fall-363 17s -11s linear infinite}@keyframes fall-363{53.972%{transform:translate(100.6546vw,53.972vh) scale(.4217)}to{transform:translate(97.6665vw,100vh) scale(.4217)}}.snow:nth-child(364){opacity:1.2264;transform:translate(39.8769vw,-10px) scale(.5245);animation:fall-364 21s -10s linear infinite}@keyframes fall-364{55.775%{transform:translate(45.7782vw,55.775vh) scale(.5245)}to{transform:translate(42.82755vw,100vh) scale(.5245)}}.snow:nth-child(365){opacity:.2702;transform:translate(44.4737vw,-10px) scale(.1519);animation:fall-365 10s -4s linear infinite}@keyframes fall-365{52.825%{transform:translate(47.8845vw,52.825vh) scale(.1519)}to{transform:translate(46.1791vw,100vh) scale(.1519)}}.snow:nth-child(366){opacity:.0834;transform:translate(13.6469vw,-10px) scale(.8437);animation:fall-366 16s -7s linear infinite}@keyframes fall-366{46.942%{transform:translate(5.305vw,46.942vh) scale(.8437)}to{transform:translate(9.47595vw,100vh) scale(.8437)}}.snow:nth-child(367){opacity:.7136;transform:translate(13.8791vw,-10px) scale(.6252);animation:fall-367 20s -23s linear infinite}@keyframes fall-367{38.406%{transform:translate(19.0499vw,38.406vh) scale(.6252)}to{transform:translate(16.4645vw,100vh) scale(.6252)}}.snow:nth-child(368){opacity:.5294;transform:translate(43.218vw,-10px) scale(.7983);animation:fall-368 22s -12s linear infinite}@keyframes fall-368{59.859%{transform:translate(36.7161vw,59.859vh) scale(.7983)}to{transform:translate(39.96705vw,100vh) scale(.7983)}}.snow:nth-child(369){opacity:1.2486;transform:translate(60.5085vw,-10px) scale(.0962);animation:fall-369 19s -29s linear infinite}@keyframes fall-369{31.809%{transform:translate(63.7377vw,31.809vh) scale(.0962)}to{transform:translate(62.1231vw,100vh) scale(.0962)}}.snow:nth-child(370){opacity:1.2128;transform:translate(88.6855vw,-10px) scale(.6622);animation:fall-370 12s -2s linear infinite}@keyframes fall-370{32.54%{transform:translate(90.4909vw,32.54vh) scale(.6622)}to{transform:translate(89.5882vw,100vh) scale(.6622)}}.snow:nth-child(371){opacity:1.5986;transform:translate(72.3796vw,-10px) scale(.4441);animation:fall-371 16s -3s linear infinite}@keyframes fall-371{59.805%{transform:translate(72.0199vw,59.805vh) scale(.4441)}to{transform:translate(72.19975vw,100vh) scale(.4441)}}.snow:nth-child(372){opacity:.624;transform:translate(54.4238vw,-10px) scale(.4656);animation:fall-372 26s -27s linear infinite}@keyframes fall-372{31.255%{transform:translate(64.198vw,31.255vh) scale(.4656)}to{transform:translate(59.3109vw,100vh) scale(.4656)}}.snow:nth-child(373){opacity:1.1884;transform:translate(66.808vw,-10px) scale(.282);animation:fall-373 23s -21s linear infinite}@keyframes fall-373{53.108%{transform:translate(56.9468vw,53.108vh) scale(.282)}to{transform:translate(61.8774vw,100vh) scale(.282)}}.snow:nth-child(374){opacity:1.2498;transform:translate(61.6476vw,-10px) scale(.818);animation:fall-374 27s -22s linear infinite}@keyframes fall-374{51.73%{transform:translate(60.509vw,51.73vh) scale(.818)}to{transform:translate(61.0783vw,100vh) scale(.818)}}.snow:nth-child(375){opacity:.2258;transform:translate(30.5827vw,-10px) scale(.6148);animation:fall-375 16s -26s linear infinite}@keyframes fall-375{41.307%{transform:translate(31.2382vw,41.307vh) scale(.6148)}to{transform:translate(30.91045vw,100vh) scale(.6148)}}.snow:nth-child(376){opacity:.789;transform:translate(88.7089vw,-10px) scale(.4631);animation:fall-376 21s -25s linear infinite}@keyframes fall-376{79.982%{transform:translate(93.1979vw,79.982vh) scale(.4631)}to{transform:translate(90.9534vw,100vh) scale(.4631)}}.snow:nth-child(377){opacity:1.6446;transform:translate(61.4291vw,-10px) scale(.1836);animation:fall-377 13s -30s linear infinite}@keyframes fall-377{43.356%{transform:translate(69.4514vw,43.356vh) scale(.1836)}to{transform:translate(65.44025vw,100vh) scale(.1836)}}.snow:nth-child(378){opacity:1.8154;transform:translate(78.4228vw,-10px) scale(.8669);animation:fall-378 12s -16s linear infinite}@keyframes fall-378{50.908%{transform:translate(75.9475vw,50.908vh) scale(.8669)}to{transform:translate(77.18515vw,100vh) scale(.8669)}}.snow:nth-child(379){opacity:.1776;transform:translate(8.1751vw,-10px) scale(.6509);animation:fall-379 11s -12s linear infinite}@keyframes fall-379{79.702%{transform:translate(2.9263vw,79.702vh) scale(.6509)}to{transform:translate(5.5507vw,100vh) scale(.6509)}}.snow:nth-child(380){opacity:1.4592;transform:translate(38.3692vw,-10px) scale(.7752);animation:fall-380 10s -4s linear infinite}@keyframes fall-380{54.99%{transform:translate(43.3876vw,54.99vh) scale(.7752)}to{transform:translate(40.8784vw,100vh) scale(.7752)}}.snow:nth-child(381){opacity:1.0858;transform:translate(98.0681vw,-10px) scale(.2863);animation:fall-381 13s -12s linear infinite}@keyframes fall-381{46.481%{transform:translate(99.5999vw,46.481vh) scale(.2863)}to{transform:translate(98.834vw,100vh) scale(.2863)}}.snow:nth-child(382){opacity:.2246;transform:translate(21.454vw,-10px) scale(.297);animation:fall-382 20s -16s linear infinite}@keyframes fall-382{74.022%{transform:translate(24.8454vw,74.022vh) scale(.297)}to{transform:translate(23.1497vw,100vh) scale(.297)}}.snow:nth-child(383){opacity:1.9414;transform:translate(85.8724vw,-10px) scale(.9183);animation:fall-383 21s -22s linear infinite}@keyframes fall-383{32.495%{transform:translate(89.5452vw,32.495vh) scale(.9183)}to{transform:translate(87.7088vw,100vh) scale(.9183)}}.snow:nth-child(384){opacity:.3392;transform:translate(67.8923vw,-10px) scale(.4736);animation:fall-384 25s -28s linear infinite}@keyframes fall-384{46.769%{transform:translate(59.6636vw,46.769vh) scale(.4736)}to{transform:translate(63.77795vw,100vh) scale(.4736)}}.snow:nth-child(385){opacity:.1674;transform:translate(56.5316vw,-10px) scale(.8415);animation:fall-385 21s -2s linear infinite}@keyframes fall-385{62.308%{transform:translate(51.5583vw,62.308vh) scale(.8415)}to{transform:translate(54.04495vw,100vh) scale(.8415)}}.snow:nth-child(386){opacity:.3604;transform:translate(32.1366vw,-10px) scale(.8012);animation:fall-386 24s -2s linear infinite}@keyframes fall-386{51.497%{transform:translate(40.8843vw,51.497vh) scale(.8012)}to{transform:translate(36.51045vw,100vh) scale(.8012)}}.snow:nth-child(387){opacity:.0586;transform:translate(49.0957vw,-10px) scale(.7047);animation:fall-387 18s -5s linear infinite}@keyframes fall-387{33.118%{transform:translate(58.0968vw,33.118vh) scale(.7047)}to{transform:translate(53.59625vw,100vh) scale(.7047)}}.snow:nth-child(388){opacity:1.6628;transform:translate(3.9104vw,-10px) scale(.1212);animation:fall-388 22s -6s linear infinite}@keyframes fall-388{38.297%{transform:translate(13.8378vw,38.297vh) scale(.1212)}to{transform:translate(8.8741vw,100vh) scale(.1212)}}.snow:nth-child(389){opacity:1.8132;transform:translate(76.6919vw,-10px) scale(.2913);animation:fall-389 12s -12s linear infinite}@keyframes fall-389{45.181%{transform:translate(67.1302vw,45.181vh) scale(.2913)}to{transform:translate(71.91105vw,100vh) scale(.2913)}}.snow:nth-child(390){opacity:.9094;transform:translate(97.3952vw,-10px) scale(.8904);animation:fall-390 24s -23s linear infinite}@keyframes fall-390{45.714%{transform:translate(107.3079vw,45.714vh) scale(.8904)}to{transform:translate(102.35155vw,100vh) scale(.8904)}}.snow:nth-child(391){opacity:.6084;transform:translate(62.6758vw,-10px) scale(.6075);animation:fall-391 27s -19s linear infinite}@keyframes fall-391{55.658%{transform:translate(63.3686vw,55.658vh) scale(.6075)}to{transform:translate(63.0222vw,100vh) scale(.6075)}}.snow:nth-child(392){opacity:.9532;transform:translate(57.7924vw,-10px) scale(.0245);animation:fall-392 11s -10s linear infinite}@keyframes fall-392{35.23%{transform:translate(66.9014vw,35.23vh) scale(.0245)}to{transform:translate(62.3469vw,100vh) scale(.0245)}}.snow:nth-child(393){opacity:.5256;transform:translate(82.7572vw,-10px) scale(.9312);animation:fall-393 22s -9s linear infinite}@keyframes fall-393{56.582%{transform:translate(90.7544vw,56.582vh) scale(.9312)}to{transform:translate(86.7558vw,100vh) scale(.9312)}}.snow:nth-child(394){opacity:1.745;transform:translate(55.3075vw,-10px) scale(.674);animation:fall-394 22s -4s linear infinite}@keyframes fall-394{44.137%{transform:translate(59.9182vw,44.137vh) scale(.674)}to{transform:translate(57.61285vw,100vh) scale(.674)}}.snow:nth-child(395){opacity:1.4124;transform:translate(60.5055vw,-10px) scale(.3261);animation:fall-395 27s -1s linear infinite}@keyframes fall-395{37.56%{transform:translate(65.0004vw,37.56vh) scale(.3261)}to{transform:translate(62.75295vw,100vh) scale(.3261)}}.snow:nth-child(396){opacity:.625;transform:translate(76.4897vw,-10px) scale(.1578);animation:fall-396 19s -22s linear infinite}@keyframes fall-396{56.201%{transform:translate(79.1402vw,56.201vh) scale(.1578)}to{transform:translate(77.81495vw,100vh) scale(.1578)}}.snow:nth-child(397){opacity:.8776;transform:translate(3.9742vw,-10px) scale(.4485);animation:fall-397 19s -16s linear infinite}@keyframes fall-397{41.437%{transform:translate(1.7916vw,41.437vh) scale(.4485)}to{transform:translate(2.8829vw,100vh) scale(.4485)}}.snow:nth-child(398){opacity:.0136;transform:translate(73.2522vw,-10px) scale(.5537);animation:fall-398 27s -12s linear infinite}@keyframes fall-398{76.553%{transform:translate(70.0124vw,76.553vh) scale(.5537)}to{transform:translate(71.6323vw,100vh) scale(.5537)}}.snow:nth-child(399){opacity:1.1178;transform:translate(80.0883vw,-10px) scale(.5365);animation:fall-399 29s -3s linear infinite}@keyframes fall-399{73.656%{transform:translate(78.9709vw,73.656vh) scale(.5365)}to{transform:translate(79.5296vw,100vh) scale(.5365)}}.snow:nth-child(400){opacity:1.123;transform:translate(24.4589vw,-10px) scale(.9185);animation:fall-400 11s -25s linear infinite}@keyframes fall-400{53.81%{transform:translate(33.0362vw,53.81vh) scale(.9185)}to{transform:translate(28.74755vw,100vh) scale(.9185)}}\n"] }]
77
77
  }], ctorParameters: function () { return [{ type: i1.TokenService }, { type: i1.AppState }, { type: i2.Router }]; } });
78
78
 
79
79
  // Angular
@@ -132,7 +132,9 @@ var formats = (style) => {
132
132
  };
133
133
  const localeFactory = (loc) => loc.SmallLocale;
134
134
  const PROVIDERS = [
135
+ CookieService,
135
136
  // Providers applicativi
137
+ { provide: ErrorHandler, useClass: APPErrorHandler },
136
138
  { provide: EVENT_MANAGER_PLUGINS, useExisting: OutZoneEventPlugin, multi: true },
137
139
  { provide: HttpServiceExtensions, useClass: HTTPServiceExtensions },
138
140
  // Locale e gestioni delle date
@@ -194,6 +196,9 @@ class EsFaenzaCoreModule {
194
196
  { provide: ESC_DEBUG_MODE, useValue: config.debugMode ? (config.debugMode & DebugFlags.Charts) == DebugFlags.Charts : false },
195
197
  { provide: BaseAdapter, useClass: (config === null || config === void 0 ? void 0 : config.chartsAdapter) || BaseAdapter },
196
198
  { provide: BaseMessageService, useClass: (config === null || config === void 0 ? void 0 : config.messageService) || BaseMessageService },
199
+ { provide: GlobalSearchService, useClass: (config === null || config === void 0 ? void 0 : config.globalSearchService) || GlobalSearchService },
200
+ { provide: CompletedJobRedirectionService, useClass: (config === null || config === void 0 ? void 0 : config.completedJobRedirectionService) || CompletedJobRedirectionService },
201
+ { provide: MenuFilteringService, useClass: (config === null || config === void 0 ? void 0 : config.menuFilteringService) || MenuFilteringService },
197
202
  { provide: MENU_LOCALIZATION, useValue: config.menuLoc || null },
198
203
  { provide: MENU, useValue: config.menu },
199
204
  { provide: USE_FAKE_ACCESS_TOKEN, useValue: !!config.fakeAccessToken },
@@ -201,10 +206,6 @@ class EsFaenzaCoreModule {
201
206
  };
202
207
  }
203
208
  }
204
- // Lasciandolo come export secco e non come funzione si spacca tutto al primo export
205
- EsFaenzaCoreModule.ROOT_PROVIDERS = () => [
206
- CookieService, { provide: ErrorHandler, useClass: APPErrorHandler }
207
- ];
208
209
  EsFaenzaCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EsFaenzaCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
209
210
  EsFaenzaCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: EsFaenzaCoreModule, declarations: [AppComponent], imports: [BrowserAnimationsModule,
210
211
  HttpClientModule,