@esfaenza/core 15.2.5 → 15.2.7

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 +80 -60
  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 +331 -207
  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 +323 -201
  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
@@ -18,9 +18,9 @@ export class AppComponent {
18
18
  }
19
19
  }
20
20
  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 });
21
- 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:.791;transform:translate(94.9126vw,-10px) scale(.6939);animation:fall-1 15s -18s linear infinite}@keyframes fall-1{79.15%{transform:translate(99.2067vw,79.15vh) scale(.6939)}to{transform:translate(97.05965vw,100vh) scale(.6939)}}.snow:nth-child(2){opacity:.057;transform:translate(72.1305vw,-10px) scale(.0118);animation:fall-2 26s -24s linear infinite}@keyframes fall-2{43.258%{transform:translate(81.1751vw,43.258vh) scale(.0118)}to{transform:translate(76.6528vw,100vh) scale(.0118)}}.snow:nth-child(3){opacity:1.0704;transform:translate(46.2181vw,-10px) scale(.9505);animation:fall-3 10s -28s linear infinite}@keyframes fall-3{53.058%{transform:translate(41.3802vw,53.058vh) scale(.9505)}to{transform:translate(43.79915vw,100vh) scale(.9505)}}.snow:nth-child(4){opacity:1.9038;transform:translate(17.2576vw,-10px) scale(.9564);animation:fall-4 18s -25s linear infinite}@keyframes fall-4{56.303%{transform:translate(11.2265vw,56.303vh) scale(.9564)}to{transform:translate(14.24205vw,100vh) scale(.9564)}}.snow:nth-child(5){opacity:1.0448;transform:translate(86.5876vw,-10px) scale(.2153);animation:fall-5 18s -1s linear infinite}@keyframes fall-5{77.394%{transform:translate(82.1465vw,77.394vh) scale(.2153)}to{transform:translate(84.36705vw,100vh) scale(.2153)}}.snow:nth-child(6){opacity:1.0206;transform:translate(40.4636vw,-10px) scale(.3222);animation:fall-6 30s -24s linear infinite}@keyframes fall-6{54.753%{transform:translate(31.8866vw,54.753vh) scale(.3222)}to{transform:translate(36.1751vw,100vh) scale(.3222)}}.snow:nth-child(7){opacity:1.1992;transform:translate(11.427vw,-10px) scale(.889);animation:fall-7 13s -12s linear infinite}@keyframes fall-7{59.798%{transform:translate(17.5175vw,59.798vh) scale(.889)}to{transform:translate(14.47225vw,100vh) scale(.889)}}.snow:nth-child(8){opacity:.0984;transform:translate(24.6798vw,-10px) scale(.5422);animation:fall-8 21s -29s linear infinite}@keyframes fall-8{69.326%{transform:translate(23.9245vw,69.326vh) scale(.5422)}to{transform:translate(24.30215vw,100vh) scale(.5422)}}.snow:nth-child(9){opacity:1.1912;transform:translate(50.8906vw,-10px) scale(.9021);animation:fall-9 27s -15s linear infinite}@keyframes fall-9{78.314%{transform:translate(49.682vw,78.314vh) scale(.9021)}to{transform:translate(50.2863vw,100vh) scale(.9021)}}.snow:nth-child(10){opacity:.3802;transform:translate(7.6619vw,-10px) scale(.0927);animation:fall-10 13s -1s linear infinite}@keyframes fall-10{42.086%{transform:translate(-.4457vw,42.086vh) scale(.0927)}to{transform:translate(3.6081vw,100vh) scale(.0927)}}.snow:nth-child(11){opacity:1.3718;transform:translate(3.6793vw,-10px) scale(.3175);animation:fall-11 13s -1s linear infinite}@keyframes fall-11{77.996%{transform:translate(8.4613vw,77.996vh) scale(.3175)}to{transform:translate(6.0703vw,100vh) scale(.3175)}}.snow:nth-child(12){opacity:1.5258;transform:translate(33.3959vw,-10px) scale(.0485);animation:fall-12 15s -8s linear infinite}@keyframes fall-12{69.431%{transform:translate(34.8202vw,69.431vh) scale(.0485)}to{transform:translate(34.10805vw,100vh) scale(.0485)}}.snow:nth-child(13){opacity:.2502;transform:translate(96.717vw,-10px) scale(.6024);animation:fall-13 25s -7s linear infinite}@keyframes fall-13{35.676%{transform:translate(89.9743vw,35.676vh) scale(.6024)}to{transform:translate(93.34565vw,100vh) scale(.6024)}}.snow:nth-child(14){opacity:.7588;transform:translate(28.0083vw,-10px) scale(.104);animation:fall-14 13s -1s linear infinite}@keyframes fall-14{36.399%{transform:translate(30.9097vw,36.399vh) scale(.104)}to{transform:translate(29.459vw,100vh) scale(.104)}}.snow:nth-child(15){opacity:1.114;transform:translate(52.3925vw,-10px) scale(.6056);animation:fall-15 15s -12s linear infinite}@keyframes fall-15{60.06%{transform:translate(50.6497vw,60.06vh) scale(.6056)}to{transform:translate(51.5211vw,100vh) scale(.6056)}}.snow:nth-child(16){opacity:.4534;transform:translate(4.0947vw,-10px) scale(.3541);animation:fall-16 24s -24s linear infinite}@keyframes fall-16{67.566%{transform:translate(13.8996vw,67.566vh) scale(.3541)}to{transform:translate(8.99715vw,100vh) scale(.3541)}}.snow:nth-child(17){opacity:.756;transform:translate(87.0222vw,-10px) scale(.7688);animation:fall-17 30s -25s linear infinite}@keyframes fall-17{76.203%{transform:translate(79.176vw,76.203vh) scale(.7688)}to{transform:translate(83.0991vw,100vh) scale(.7688)}}.snow:nth-child(18){opacity:.5482;transform:translate(34.5044vw,-10px) scale(.6749);animation:fall-18 30s -29s linear infinite}@keyframes fall-18{52.843%{transform:translate(35.3335vw,52.843vh) scale(.6749)}to{transform:translate(34.91895vw,100vh) scale(.6749)}}.snow:nth-child(19){opacity:1.2106;transform:translate(17.1384vw,-10px) scale(.2965);animation:fall-19 11s -29s linear infinite}@keyframes fall-19{64.57%{transform:translate(18.8996vw,64.57vh) scale(.2965)}to{transform:translate(18.019vw,100vh) scale(.2965)}}.snow:nth-child(20){opacity:1.9678;transform:translate(8.9274vw,-10px) scale(.5396);animation:fall-20 17s -6s linear infinite}@keyframes fall-20{67.81%{transform:translate(4.2086vw,67.81vh) scale(.5396)}to{transform:translate(6.568vw,100vh) scale(.5396)}}.snow:nth-child(21){opacity:.0908;transform:translate(7.0134vw,-10px) scale(.4704);animation:fall-21 29s -7s linear infinite}@keyframes fall-21{64.578%{transform:translate(10.8609vw,64.578vh) scale(.4704)}to{transform:translate(8.93715vw,100vh) scale(.4704)}}.snow:nth-child(22){opacity:1.29;transform:translate(53.1553vw,-10px) scale(.6191);animation:fall-22 16s -28s linear infinite}@keyframes fall-22{42.056%{transform:translate(48.0226vw,42.056vh) scale(.6191)}to{transform:translate(50.58895vw,100vh) scale(.6191)}}.snow:nth-child(23){opacity:.6396;transform:translate(26.372vw,-10px) scale(.781);animation:fall-23 19s -6s linear infinite}@keyframes fall-23{76.886%{transform:translate(18.6558vw,76.886vh) scale(.781)}to{transform:translate(22.5139vw,100vh) scale(.781)}}.snow:nth-child(24){opacity:.081;transform:translate(90.5962vw,-10px) scale(.9192);animation:fall-24 14s -16s linear infinite}@keyframes fall-24{57.735%{transform:translate(81.1362vw,57.735vh) scale(.9192)}to{transform:translate(85.8662vw,100vh) scale(.9192)}}.snow:nth-child(25){opacity:.1682;transform:translate(41.7496vw,-10px) scale(.4022);animation:fall-25 23s -18s linear infinite}@keyframes fall-25{32.18%{transform:translate(45.9331vw,32.18vh) scale(.4022)}to{transform:translate(43.84135vw,100vh) scale(.4022)}}.snow:nth-child(26){opacity:1.155;transform:translate(61.0177vw,-10px) scale(.4847);animation:fall-26 30s -27s linear infinite}@keyframes fall-26{44.97%{transform:translate(57.2826vw,44.97vh) scale(.4847)}to{transform:translate(59.15015vw,100vh) scale(.4847)}}.snow:nth-child(27){opacity:.0552;transform:translate(51.2353vw,-10px) scale(.7142);animation:fall-27 17s -15s linear infinite}@keyframes fall-27{43.58%{transform:translate(44.0447vw,43.58vh) scale(.7142)}to{transform:translate(47.64vw,100vh) scale(.7142)}}.snow:nth-child(28){opacity:1.5438;transform:translate(70.436vw,-10px) scale(.7358);animation:fall-28 11s -12s linear infinite}@keyframes fall-28{64.904%{transform:translate(78.9092vw,64.904vh) scale(.7358)}to{transform:translate(74.6726vw,100vh) scale(.7358)}}.snow:nth-child(29){opacity:1.0462;transform:translate(84.4385vw,-10px) scale(.976);animation:fall-29 13s -13s linear infinite}@keyframes fall-29{40.742%{transform:translate(78.6872vw,40.742vh) scale(.976)}to{transform:translate(81.56285vw,100vh) scale(.976)}}.snow:nth-child(30){opacity:.4912;transform:translate(72.1394vw,-10px) scale(.4232);animation:fall-30 12s -7s linear infinite}@keyframes fall-30{73.199%{transform:translate(81.7875vw,73.199vh) scale(.4232)}to{transform:translate(76.96345vw,100vh) scale(.4232)}}.snow:nth-child(31){opacity:.5082;transform:translate(81.0455vw,-10px) scale(.5315);animation:fall-31 30s -9s linear infinite}@keyframes fall-31{79.7%{transform:translate(76.3376vw,79.7vh) scale(.5315)}to{transform:translate(78.69155vw,100vh) scale(.5315)}}.snow:nth-child(32){opacity:.267;transform:translate(81.2627vw,-10px) scale(.2111);animation:fall-32 22s -28s linear infinite}@keyframes fall-32{75.237%{transform:translate(78.0454vw,75.237vh) scale(.2111)}to{transform:translate(79.65405vw,100vh) scale(.2111)}}.snow:nth-child(33){opacity:.0766;transform:translate(50.7894vw,-10px) scale(.4984);animation:fall-33 25s -25s linear infinite}@keyframes fall-33{32.423%{transform:translate(46.1995vw,32.423vh) scale(.4984)}to{transform:translate(48.49445vw,100vh) scale(.4984)}}.snow:nth-child(34){opacity:1.5314;transform:translate(93.9729vw,-10px) scale(.3906);animation:fall-34 14s -4s linear infinite}@keyframes fall-34{55.769%{transform:translate(98.8495vw,55.769vh) scale(.3906)}to{transform:translate(96.4112vw,100vh) scale(.3906)}}.snow:nth-child(35){opacity:1.041;transform:translate(25.3631vw,-10px) scale(.0629);animation:fall-35 18s -18s linear infinite}@keyframes fall-35{36.294%{transform:translate(34.3041vw,36.294vh) scale(.0629)}to{transform:translate(29.8336vw,100vh) scale(.0629)}}.snow:nth-child(36){opacity:.2246;transform:translate(72.6354vw,-10px) scale(.0455);animation:fall-36 14s -6s linear infinite}@keyframes fall-36{61.719%{transform:translate(81.4916vw,61.719vh) scale(.0455)}to{transform:translate(77.0635vw,100vh) scale(.0455)}}.snow:nth-child(37){opacity:.1624;transform:translate(89.3204vw,-10px) scale(.8386);animation:fall-37 27s -12s linear infinite}@keyframes fall-37{32.204%{transform:translate(80.9505vw,32.204vh) scale(.8386)}to{transform:translate(85.13545vw,100vh) scale(.8386)}}.snow:nth-child(38){opacity:.4208;transform:translate(85.4549vw,-10px) scale(.249);animation:fall-38 21s -22s linear infinite}@keyframes fall-38{57.788%{transform:translate(78.2613vw,57.788vh) scale(.249)}to{transform:translate(81.8581vw,100vh) scale(.249)}}.snow:nth-child(39){opacity:.1644;transform:translate(41.9835vw,-10px) scale(.3908);animation:fall-39 17s -8s linear infinite}@keyframes fall-39{48.717%{transform:translate(50.2745vw,48.717vh) scale(.3908)}to{transform:translate(46.129vw,100vh) scale(.3908)}}.snow:nth-child(40){opacity:.9456;transform:translate(51.1162vw,-10px) scale(.0398);animation:fall-40 24s -7s linear infinite}@keyframes fall-40{54.057%{transform:translate(45.4786vw,54.057vh) scale(.0398)}to{transform:translate(48.2974vw,100vh) scale(.0398)}}.snow:nth-child(41){opacity:1.1266;transform:translate(39.0115vw,-10px) scale(.2337);animation:fall-41 18s -1s linear infinite}@keyframes fall-41{44.124%{transform:translate(32.6787vw,44.124vh) scale(.2337)}to{transform:translate(35.8451vw,100vh) scale(.2337)}}.snow:nth-child(42){opacity:1.0034;transform:translate(15.3942vw,-10px) scale(.9602);animation:fall-42 18s -29s linear infinite}@keyframes fall-42{53.039%{transform:translate(20.236vw,53.039vh) scale(.9602)}to{transform:translate(17.8151vw,100vh) scale(.9602)}}.snow:nth-child(43){opacity:.5172;transform:translate(1.8927vw,-10px) scale(.3698);animation:fall-43 11s -25s linear infinite}@keyframes fall-43{63.988%{transform:translate(-.6404vw,63.988vh) scale(.3698)}to{transform:translate(.62615vw,100vh) scale(.3698)}}.snow:nth-child(44){opacity:.0694;transform:translate(5.8518vw,-10px) scale(.2922);animation:fall-44 14s -26s linear infinite}@keyframes fall-44{53.573%{transform:translate(10.9005vw,53.573vh) scale(.2922)}to{transform:translate(8.37615vw,100vh) scale(.2922)}}.snow:nth-child(45){opacity:1.7548;transform:translate(86.0338vw,-10px) scale(.7298);animation:fall-45 22s -15s linear infinite}@keyframes fall-45{60.106%{transform:translate(84.9886vw,60.106vh) scale(.7298)}to{transform:translate(85.5112vw,100vh) scale(.7298)}}.snow:nth-child(46){opacity:.6664;transform:translate(17.5891vw,-10px) scale(.6469);animation:fall-46 18s -27s linear infinite}@keyframes fall-46{35.941%{transform:translate(27.299vw,35.941vh) scale(.6469)}to{transform:translate(22.44405vw,100vh) scale(.6469)}}.snow:nth-child(47){opacity:.4512;transform:translate(34.8981vw,-10px) scale(.3554);animation:fall-47 29s -8s linear infinite}@keyframes fall-47{59.839%{transform:translate(39.6592vw,59.839vh) scale(.3554)}to{transform:translate(37.27865vw,100vh) scale(.3554)}}.snow:nth-child(48){opacity:1.4278;transform:translate(87.9318vw,-10px) scale(.5248);animation:fall-48 25s -6s linear infinite}@keyframes fall-48{41.479%{transform:translate(88.2979vw,41.479vh) scale(.5248)}to{transform:translate(88.11485vw,100vh) scale(.5248)}}.snow:nth-child(49){opacity:1.4856;transform:translate(99.6335vw,-10px) scale(.1371);animation:fall-49 14s -5s linear infinite}@keyframes fall-49{58.897%{transform:translate(109.3499vw,58.897vh) scale(.1371)}to{transform:translate(104.4917vw,100vh) scale(.1371)}}.snow:nth-child(50){opacity:1.28;transform:translate(84.0723vw,-10px) scale(.4747);animation:fall-50 26s -3s linear infinite}@keyframes fall-50{42.631%{transform:translate(93.3959vw,42.631vh) scale(.4747)}to{transform:translate(88.7341vw,100vh) scale(.4747)}}.snow:nth-child(51){opacity:1.1308;transform:translate(67.2766vw,-10px) scale(.8221);animation:fall-51 28s -26s linear infinite}@keyframes fall-51{44.396%{transform:translate(74.5575vw,44.396vh) scale(.8221)}to{transform:translate(70.91705vw,100vh) scale(.8221)}}.snow:nth-child(52){opacity:1.9842;transform:translate(42.2862vw,-10px) scale(.3511);animation:fall-52 14s -25s linear infinite}@keyframes fall-52{52.098%{transform:translate(51.1256vw,52.098vh) scale(.3511)}to{transform:translate(46.7059vw,100vh) scale(.3511)}}.snow:nth-child(53){opacity:.537;transform:translate(11.6503vw,-10px) scale(.6963);animation:fall-53 30s -24s linear infinite}@keyframes fall-53{37.052%{transform:translate(18.1011vw,37.052vh) scale(.6963)}to{transform:translate(14.8757vw,100vh) scale(.6963)}}.snow:nth-child(54){opacity:1.1594;transform:translate(83.9264vw,-10px) scale(.4778);animation:fall-54 11s -18s linear infinite}@keyframes fall-54{33.506%{transform:translate(90.132vw,33.506vh) scale(.4778)}to{transform:translate(87.0292vw,100vh) scale(.4778)}}.snow:nth-child(55){opacity:1.0348;transform:translate(15.048vw,-10px) scale(.2728);animation:fall-55 26s -17s linear infinite}@keyframes fall-55{40.589%{transform:translate(13.5184vw,40.589vh) scale(.2728)}to{transform:translate(14.2832vw,100vh) scale(.2728)}}.snow:nth-child(56){opacity:1.4782;transform:translate(23.2316vw,-10px) scale(.8702);animation:fall-56 27s -15s linear infinite}@keyframes fall-56{57.288%{transform:translate(17.0234vw,57.288vh) scale(.8702)}to{transform:translate(20.1275vw,100vh) scale(.8702)}}.snow:nth-child(57){opacity:1.7404;transform:translate(31.8307vw,-10px) scale(.2812);animation:fall-57 15s -3s linear infinite}@keyframes fall-57{51.866%{transform:translate(40.5298vw,51.866vh) scale(.2812)}to{transform:translate(36.18025vw,100vh) scale(.2812)}}.snow:nth-child(58){opacity:.6162;transform:translate(60.0087vw,-10px) scale(.0693);animation:fall-58 20s -18s linear infinite}@keyframes fall-58{68.917%{transform:translate(66.5552vw,68.917vh) scale(.0693)}to{transform:translate(63.28195vw,100vh) scale(.0693)}}.snow:nth-child(59){opacity:.2516;transform:translate(47.5929vw,-10px) scale(.7021);animation:fall-59 10s -21s linear infinite}@keyframes fall-59{44.8%{transform:translate(42.0404vw,44.8vh) scale(.7021)}to{transform:translate(44.81665vw,100vh) scale(.7021)}}.snow:nth-child(60){opacity:1.6916;transform:translate(.4049vw,-10px) scale(.7124);animation:fall-60 11s -11s linear infinite}@keyframes fall-60{39.259%{transform:translate(-3.1306vw,39.259vh) scale(.7124)}to{transform:translate(-1.36285vw,100vh) scale(.7124)}}.snow:nth-child(61){opacity:.8946;transform:translate(23.1969vw,-10px) scale(.0422);animation:fall-61 12s -5s linear infinite}@keyframes fall-61{45.509%{transform:translate(27.2235vw,45.509vh) scale(.0422)}to{transform:translate(25.2102vw,100vh) scale(.0422)}}.snow:nth-child(62){opacity:.3376;transform:translate(37.24vw,-10px) scale(.0863);animation:fall-62 16s -16s linear infinite}@keyframes fall-62{52.9%{transform:translate(40.9612vw,52.9vh) scale(.0863)}to{transform:translate(39.1006vw,100vh) scale(.0863)}}.snow:nth-child(63){opacity:1.1888;transform:translate(83.0228vw,-10px) scale(.9246);animation:fall-63 18s -30s linear infinite}@keyframes fall-63{30.688%{transform:translate(74.8438vw,30.688vh) scale(.9246)}to{transform:translate(78.9333vw,100vh) scale(.9246)}}.snow:nth-child(64){opacity:1.2102;transform:translate(87.696vw,-10px) scale(.682);animation:fall-64 15s -5s linear infinite}@keyframes fall-64{60.593%{transform:translate(91.2314vw,60.593vh) scale(.682)}to{transform:translate(89.4637vw,100vh) scale(.682)}}.snow:nth-child(65){opacity:.502;transform:translate(18.1458vw,-10px) scale(.1876);animation:fall-65 25s -15s linear infinite}@keyframes fall-65{79.073%{transform:translate(26.6314vw,79.073vh) scale(.1876)}to{transform:translate(22.3886vw,100vh) scale(.1876)}}.snow:nth-child(66){opacity:.1298;transform:translate(38.077vw,-10px) scale(.6924);animation:fall-66 23s -19s linear infinite}@keyframes fall-66{53.41%{transform:translate(44.5735vw,53.41vh) scale(.6924)}to{transform:translate(41.32525vw,100vh) scale(.6924)}}.snow:nth-child(67){opacity:1.5612;transform:translate(2.7911vw,-10px) scale(.4228);animation:fall-67 15s -17s linear infinite}@keyframes fall-67{37.477%{transform:translate(-4.2788vw,37.477vh) scale(.4228)}to{transform:translate(-.74385vw,100vh) scale(.4228)}}.snow:nth-child(68){opacity:1.2556;transform:translate(6.1059vw,-10px) scale(.6577);animation:fall-68 23s -25s linear infinite}@keyframes fall-68{77.9%{transform:translate(1.0515vw,77.9vh) scale(.6577)}to{transform:translate(3.5787vw,100vh) scale(.6577)}}.snow:nth-child(69){opacity:1.3028;transform:translate(35.6943vw,-10px) scale(.0533);animation:fall-69 20s -24s linear infinite}@keyframes fall-69{69.99%{transform:translate(37.1262vw,69.99vh) scale(.0533)}to{transform:translate(36.41025vw,100vh) scale(.0533)}}.snow:nth-child(70){opacity:.556;transform:translate(23.1077vw,-10px) scale(.6278);animation:fall-70 28s -17s linear infinite}@keyframes fall-70{40.775%{transform:translate(26.1608vw,40.775vh) scale(.6278)}to{transform:translate(24.63425vw,100vh) scale(.6278)}}.snow:nth-child(71){opacity:.6334;transform:translate(59.3334vw,-10px) scale(.0304);animation:fall-71 18s -2s linear infinite}@keyframes fall-71{74.598%{transform:translate(60.066vw,74.598vh) scale(.0304)}to{transform:translate(59.6997vw,100vh) scale(.0304)}}.snow:nth-child(72){opacity:1.4682;transform:translate(19.9804vw,-10px) scale(.4038);animation:fall-72 11s -18s linear infinite}@keyframes fall-72{68.127%{transform:translate(11.4815vw,68.127vh) scale(.4038)}to{transform:translate(15.73095vw,100vh) scale(.4038)}}.snow:nth-child(73){opacity:.866;transform:translate(76.0468vw,-10px) scale(.9965);animation:fall-73 27s -6s linear infinite}@keyframes fall-73{49.484%{transform:translate(74.9352vw,49.484vh) scale(.9965)}to{transform:translate(75.491vw,100vh) scale(.9965)}}.snow:nth-child(74){opacity:.9586;transform:translate(10.7227vw,-10px) scale(.363);animation:fall-74 27s -21s linear infinite}@keyframes fall-74{49.32%{transform:translate(15.4531vw,49.32vh) scale(.363)}to{transform:translate(13.0879vw,100vh) scale(.363)}}.snow:nth-child(75){opacity:.6766;transform:translate(36.9152vw,-10px) scale(.9445);animation:fall-75 26s -7s linear infinite}@keyframes fall-75{55.932%{transform:translate(41.0907vw,55.932vh) scale(.9445)}to{transform:translate(39.00295vw,100vh) scale(.9445)}}.snow:nth-child(76){opacity:1.9882;transform:translate(20.16vw,-10px) scale(.7908);animation:fall-76 27s -4s linear infinite}@keyframes fall-76{40.136%{transform:translate(11.5086vw,40.136vh) scale(.7908)}to{transform:translate(15.8343vw,100vh) scale(.7908)}}.snow:nth-child(77){opacity:.6578;transform:translate(61.9227vw,-10px) scale(.3841);animation:fall-77 28s -30s linear infinite}@keyframes fall-77{42.958%{transform:translate(70.3298vw,42.958vh) scale(.3841)}to{transform:translate(66.12625vw,100vh) scale(.3841)}}.snow:nth-child(78){opacity:.9042;transform:translate(9.6414vw,-10px) scale(.7386);animation:fall-78 24s -26s linear infinite}@keyframes fall-78{32.523%{transform:translate(19.032vw,32.523vh) scale(.7386)}to{transform:translate(14.3367vw,100vh) scale(.7386)}}.snow:nth-child(79){opacity:1.7156;transform:translate(66.0353vw,-10px) scale(.9362);animation:fall-79 24s -28s linear infinite}@keyframes fall-79{52.631%{transform:translate(65.2009vw,52.631vh) scale(.9362)}to{transform:translate(65.6181vw,100vh) scale(.9362)}}.snow:nth-child(80){opacity:.2382;transform:translate(35.2152vw,-10px) scale(.9242);animation:fall-80 24s -9s linear infinite}@keyframes fall-80{58.127%{transform:translate(37.0846vw,58.127vh) scale(.9242)}to{transform:translate(36.1499vw,100vh) scale(.9242)}}.snow:nth-child(81){opacity:.3648;transform:translate(50.0924vw,-10px) scale(.5893);animation:fall-81 20s -4s linear infinite}@keyframes fall-81{41.865%{transform:translate(56.454vw,41.865vh) scale(.5893)}to{transform:translate(53.2732vw,100vh) scale(.5893)}}.snow:nth-child(82){opacity:.0536;transform:translate(24.5884vw,-10px) scale(.2825);animation:fall-82 13s -21s linear infinite}@keyframes fall-82{71.104%{transform:translate(23.4986vw,71.104vh) scale(.2825)}to{transform:translate(24.0435vw,100vh) scale(.2825)}}.snow:nth-child(83){opacity:.621;transform:translate(52.7649vw,-10px) scale(.0442);animation:fall-83 23s -22s linear infinite}@keyframes fall-83{31.5%{transform:translate(49.8177vw,31.5vh) scale(.0442)}to{transform:translate(51.2913vw,100vh) scale(.0442)}}.snow:nth-child(84){opacity:1.1198;transform:translate(34.4955vw,-10px) scale(.5083);animation:fall-84 19s -20s linear infinite}@keyframes fall-84{73.382%{transform:translate(29.0516vw,73.382vh) scale(.5083)}to{transform:translate(31.77355vw,100vh) scale(.5083)}}.snow:nth-child(85){opacity:1.0282;transform:translate(35.6327vw,-10px) scale(.297);animation:fall-85 18s -5s linear infinite}@keyframes fall-85{33.622%{transform:translate(44.6063vw,33.622vh) scale(.297)}to{transform:translate(40.1195vw,100vh) scale(.297)}}.snow:nth-child(86){opacity:.8556;transform:translate(18.8825vw,-10px) scale(.134);animation:fall-86 13s -14s linear infinite}@keyframes fall-86{68.135%{transform:translate(21.8096vw,68.135vh) scale(.134)}to{transform:translate(20.34605vw,100vh) scale(.134)}}.snow:nth-child(87){opacity:1.4714;transform:translate(92.6894vw,-10px) scale(.2142);animation:fall-87 15s -21s linear infinite}@keyframes fall-87{34.19%{transform:translate(84.9787vw,34.19vh) scale(.2142)}to{transform:translate(88.83405vw,100vh) scale(.2142)}}.snow:nth-child(88){opacity:1.1262;transform:translate(29.6105vw,-10px) scale(.3411);animation:fall-88 16s -18s linear infinite}@keyframes fall-88{69.886%{transform:translate(34.0594vw,69.886vh) scale(.3411)}to{transform:translate(31.83495vw,100vh) scale(.3411)}}.snow:nth-child(89){opacity:1.664;transform:translate(86.0402vw,-10px) scale(.4568);animation:fall-89 26s -25s linear infinite}@keyframes fall-89{76.299%{transform:translate(91.5786vw,76.299vh) scale(.4568)}to{transform:translate(88.8094vw,100vh) scale(.4568)}}.snow:nth-child(90){opacity:.677;transform:translate(81.8392vw,-10px) scale(.1428);animation:fall-90 19s -9s linear infinite}@keyframes fall-90{62.899%{transform:translate(71.9379vw,62.899vh) scale(.1428)}to{transform:translate(76.88855vw,100vh) scale(.1428)}}.snow:nth-child(91){opacity:1.5958;transform:translate(32.4491vw,-10px) scale(.421);animation:fall-91 18s -27s linear infinite}@keyframes fall-91{77.122%{transform:translate(23.4073vw,77.122vh) scale(.421)}to{transform:translate(27.9282vw,100vh) scale(.421)}}.snow:nth-child(92){opacity:1.2436;transform:translate(98.6648vw,-10px) scale(.3108);animation:fall-92 21s -18s linear infinite}@keyframes fall-92{58.365%{transform:translate(91.1849vw,58.365vh) scale(.3108)}to{transform:translate(94.92485vw,100vh) scale(.3108)}}.snow:nth-child(93){opacity:1.7444;transform:translate(69.2091vw,-10px) scale(.0104);animation:fall-93 17s -11s linear infinite}@keyframes fall-93{59.486%{transform:translate(66.2832vw,59.486vh) scale(.0104)}to{transform:translate(67.74615vw,100vh) scale(.0104)}}.snow:nth-child(94){opacity:.4126;transform:translate(56.4502vw,-10px) scale(.5137);animation:fall-94 10s -28s linear infinite}@keyframes fall-94{30.49%{transform:translate(59.5867vw,30.49vh) scale(.5137)}to{transform:translate(58.01845vw,100vh) scale(.5137)}}.snow:nth-child(95){opacity:1.9516;transform:translate(65.6585vw,-10px) scale(.5663);animation:fall-95 29s -11s linear infinite}@keyframes fall-95{56.602%{transform:translate(62.3955vw,56.602vh) scale(.5663)}to{transform:translate(64.027vw,100vh) scale(.5663)}}.snow:nth-child(96){opacity:.0712;transform:translate(63.3245vw,-10px) scale(.974);animation:fall-96 17s -8s linear infinite}@keyframes fall-96{41.433%{transform:translate(66.2042vw,41.433vh) scale(.974)}to{transform:translate(64.76435vw,100vh) scale(.974)}}.snow:nth-child(97){opacity:1.2366;transform:translate(46.7137vw,-10px) scale(.2413);animation:fall-97 16s -23s linear infinite}@keyframes fall-97{62.813%{transform:translate(53.6671vw,62.813vh) scale(.2413)}to{transform:translate(50.1904vw,100vh) scale(.2413)}}.snow:nth-child(98){opacity:1.2288;transform:translate(69.5053vw,-10px) scale(.6752);animation:fall-98 26s -28s linear infinite}@keyframes fall-98{56.293%{transform:translate(65.8723vw,56.293vh) scale(.6752)}to{transform:translate(67.6888vw,100vh) scale(.6752)}}.snow:nth-child(99){opacity:.5748;transform:translate(43.9107vw,-10px) scale(.6646);animation:fall-99 23s -24s linear infinite}@keyframes fall-99{43.89%{transform:translate(41.5762vw,43.89vh) scale(.6646)}to{transform:translate(42.74345vw,100vh) scale(.6646)}}.snow:nth-child(100){opacity:.8692;transform:translate(10.532vw,-10px) scale(.9384);animation:fall-100 21s -27s linear infinite}@keyframes fall-100{53.692%{transform:translate(.7029vw,53.692vh) scale(.9384)}to{transform:translate(5.61745vw,100vh) scale(.9384)}}.snow:nth-child(101){opacity:1.4626;transform:translate(30.6619vw,-10px) scale(.5685);animation:fall-101 17s -29s linear infinite}@keyframes fall-101{31.211%{transform:translate(23.3252vw,31.211vh) scale(.5685)}to{transform:translate(26.99355vw,100vh) scale(.5685)}}.snow:nth-child(102){opacity:1.2302;transform:translate(50.7803vw,-10px) scale(.6745);animation:fall-102 21s -8s linear infinite}@keyframes fall-102{48.876%{transform:translate(52.0869vw,48.876vh) scale(.6745)}to{transform:translate(51.4336vw,100vh) scale(.6745)}}.snow:nth-child(103){opacity:.306;transform:translate(55.0025vw,-10px) scale(.7809);animation:fall-103 11s -22s linear infinite}@keyframes fall-103{64.461%{transform:translate(52.0095vw,64.461vh) scale(.7809)}to{transform:translate(53.506vw,100vh) scale(.7809)}}.snow:nth-child(104){opacity:.881;transform:translate(1.4485vw,-10px) scale(.6619);animation:fall-104 20s -16s linear infinite}@keyframes fall-104{75.985%{transform:translate(5.2451vw,75.985vh) scale(.6619)}to{transform:translate(3.3468vw,100vh) scale(.6619)}}.snow:nth-child(105){opacity:1.823;transform:translate(26.0544vw,-10px) scale(.8787);animation:fall-105 28s -19s linear infinite}@keyframes fall-105{53.759%{transform:translate(31.2657vw,53.759vh) scale(.8787)}to{transform:translate(28.66005vw,100vh) scale(.8787)}}.snow:nth-child(106){opacity:1.3096;transform:translate(36.6433vw,-10px) scale(.2286);animation:fall-106 28s -23s linear infinite}@keyframes fall-106{78.74%{transform:translate(37.8017vw,78.74vh) scale(.2286)}to{transform:translate(37.2225vw,100vh) scale(.2286)}}.snow:nth-child(107){opacity:.3882;transform:translate(43.9142vw,-10px) scale(.4323);animation:fall-107 28s -26s linear infinite}@keyframes fall-107{67.718%{transform:translate(45.88vw,67.718vh) scale(.4323)}to{transform:translate(44.8971vw,100vh) scale(.4323)}}.snow:nth-child(108){opacity:.4988;transform:translate(22.0178vw,-10px) scale(.0135);animation:fall-108 29s -26s linear infinite}@keyframes fall-108{36.061%{transform:translate(15.8167vw,36.061vh) scale(.0135)}to{transform:translate(18.91725vw,100vh) scale(.0135)}}.snow:nth-child(109){opacity:.3066;transform:translate(93.4914vw,-10px) scale(.2259);animation:fall-109 14s -16s linear infinite}@keyframes fall-109{58.849%{transform:translate(92.0441vw,58.849vh) scale(.2259)}to{transform:translate(92.76775vw,100vh) scale(.2259)}}.snow:nth-child(110){opacity:1.552;transform:translate(68.1776vw,-10px) scale(.7017);animation:fall-110 18s -23s linear infinite}@keyframes fall-110{72.2%{transform:translate(72.8512vw,72.2vh) scale(.7017)}to{transform:translate(70.5144vw,100vh) scale(.7017)}}.snow:nth-child(111){opacity:1.984;transform:translate(7.6135vw,-10px) scale(.1766);animation:fall-111 30s -22s linear infinite}@keyframes fall-111{44.471%{transform:translate(13.1662vw,44.471vh) scale(.1766)}to{transform:translate(10.38985vw,100vh) scale(.1766)}}.snow:nth-child(112){opacity:1.9422;transform:translate(5.6754vw,-10px) scale(.1376);animation:fall-112 28s -18s linear infinite}@keyframes fall-112{31.886%{transform:translate(-4.2682vw,31.886vh) scale(.1376)}to{transform:translate(.7036vw,100vh) scale(.1376)}}.snow:nth-child(113){opacity:.4904;transform:translate(69.8904vw,-10px) scale(.4036);animation:fall-113 13s -20s linear infinite}@keyframes fall-113{51.161%{transform:translate(68.7419vw,51.161vh) scale(.4036)}to{transform:translate(69.31615vw,100vh) scale(.4036)}}.snow:nth-child(114){opacity:.7248;transform:translate(50.5621vw,-10px) scale(.3416);animation:fall-114 21s -18s linear infinite}@keyframes fall-114{64.331%{transform:translate(59.0672vw,64.331vh) scale(.3416)}to{transform:translate(54.81465vw,100vh) scale(.3416)}}.snow:nth-child(115){opacity:1.2532;transform:translate(71.9726vw,-10px) scale(.7884);animation:fall-115 25s -23s linear infinite}@keyframes fall-115{58.986%{transform:translate(72.9543vw,58.986vh) scale(.7884)}to{transform:translate(72.46345vw,100vh) scale(.7884)}}.snow:nth-child(116){opacity:.7954;transform:translate(47.1427vw,-10px) scale(.8052);animation:fall-116 25s -26s linear infinite}@keyframes fall-116{62.322%{transform:translate(39.3617vw,62.322vh) scale(.8052)}to{transform:translate(43.2522vw,100vh) scale(.8052)}}.snow:nth-child(117){opacity:1.6092;transform:translate(94.4072vw,-10px) scale(.0409);animation:fall-117 29s -26s linear infinite}@keyframes fall-117{44.088%{transform:translate(101.5087vw,44.088vh) scale(.0409)}to{transform:translate(97.95795vw,100vh) scale(.0409)}}.snow:nth-child(118){opacity:1.467;transform:translate(3.8166vw,-10px) scale(.9305);animation:fall-118 21s -10s linear infinite}@keyframes fall-118{77.66%{transform:translate(10.4719vw,77.66vh) scale(.9305)}to{transform:translate(7.14425vw,100vh) scale(.9305)}}.snow:nth-child(119){opacity:1.4102;transform:translate(15.6065vw,-10px) scale(.8872);animation:fall-119 27s -5s linear infinite}@keyframes fall-119{54.168%{transform:translate(11.6795vw,54.168vh) scale(.8872)}to{transform:translate(13.643vw,100vh) scale(.8872)}}.snow:nth-child(120){opacity:.4394;transform:translate(47.8327vw,-10px) scale(.8867);animation:fall-120 27s -26s linear infinite}@keyframes fall-120{52.379%{transform:translate(43.038vw,52.379vh) scale(.8867)}to{transform:translate(45.43535vw,100vh) scale(.8867)}}.snow:nth-child(121){opacity:1.5482;transform:translate(31.722vw,-10px) scale(.4567);animation:fall-121 11s -12s linear infinite}@keyframes fall-121{45.78%{transform:translate(41.3318vw,45.78vh) scale(.4567)}to{transform:translate(36.5269vw,100vh) scale(.4567)}}.snow:nth-child(122){opacity:.2878;transform:translate(60.3081vw,-10px) scale(.7563);animation:fall-122 20s -25s linear infinite}@keyframes fall-122{53.816%{transform:translate(55.278vw,53.816vh) scale(.7563)}to{transform:translate(57.79305vw,100vh) scale(.7563)}}.snow:nth-child(123){opacity:.801;transform:translate(99.6878vw,-10px) scale(.0452);animation:fall-123 12s -17s linear infinite}@keyframes fall-123{58.949%{transform:translate(89.9245vw,58.949vh) scale(.0452)}to{transform:translate(94.80615vw,100vh) scale(.0452)}}.snow:nth-child(124){opacity:1.8554;transform:translate(26.007vw,-10px) scale(.1424);animation:fall-124 13s -22s linear infinite}@keyframes fall-124{77.811%{transform:translate(19.003vw,77.811vh) scale(.1424)}to{transform:translate(22.505vw,100vh) scale(.1424)}}.snow:nth-child(125){opacity:.7604;transform:translate(27.9328vw,-10px) scale(.0001);animation:fall-125 16s -16s linear infinite}@keyframes fall-125{65.588%{transform:translate(24.1167vw,65.588vh) scale(.0001)}to{transform:translate(26.02475vw,100vh) scale(.0001)}}.snow:nth-child(126){opacity:1.8306;transform:translate(.8352vw,-10px) scale(.9026);animation:fall-126 22s -21s linear infinite}@keyframes fall-126{72.549%{transform:translate(9.17vw,72.549vh) scale(.9026)}to{transform:translate(5.0026vw,100vh) scale(.9026)}}.snow:nth-child(127){opacity:.1164;transform:translate(6.4076vw,-10px) scale(.7535);animation:fall-127 22s -8s linear infinite}@keyframes fall-127{61.907%{transform:translate(-.0047vw,61.907vh) scale(.7535)}to{transform:translate(3.20145vw,100vh) scale(.7535)}}.snow:nth-child(128){opacity:1.0542;transform:translate(85.9312vw,-10px) scale(.2019);animation:fall-128 15s -26s linear infinite}@keyframes fall-128{37.123%{transform:translate(87.4839vw,37.123vh) scale(.2019)}to{transform:translate(86.70755vw,100vh) scale(.2019)}}.snow:nth-child(129){opacity:.6824;transform:translate(71.6834vw,-10px) scale(.2593);animation:fall-129 25s -4s linear infinite}@keyframes fall-129{67.244%{transform:translate(63.62vw,67.244vh) scale(.2593)}to{transform:translate(67.6517vw,100vh) scale(.2593)}}.snow:nth-child(130){opacity:.8718;transform:translate(91.986vw,-10px) scale(.1686);animation:fall-130 19s -15s linear infinite}@keyframes fall-130{58.748%{transform:translate(82.6379vw,58.748vh) scale(.1686)}to{transform:translate(87.31195vw,100vh) scale(.1686)}}.snow:nth-child(131){opacity:.2948;transform:translate(99.1409vw,-10px) scale(.6388);animation:fall-131 24s -30s linear infinite}@keyframes fall-131{75.903%{transform:translate(101.8849vw,75.903vh) scale(.6388)}to{transform:translate(100.5129vw,100vh) scale(.6388)}}.snow:nth-child(132){opacity:1.6832;transform:translate(98.0171vw,-10px) scale(.151);animation:fall-132 13s -27s linear infinite}@keyframes fall-132{75.201%{transform:translate(93.7998vw,75.201vh) scale(.151)}to{transform:translate(95.90845vw,100vh) scale(.151)}}.snow:nth-child(133){opacity:.2414;transform:translate(48.9657vw,-10px) scale(.2027);animation:fall-133 14s -29s linear infinite}@keyframes fall-133{48.199%{transform:translate(51.4636vw,48.199vh) scale(.2027)}to{transform:translate(50.21465vw,100vh) scale(.2027)}}.snow:nth-child(134){opacity:.7828;transform:translate(51.1969vw,-10px) scale(.6247);animation:fall-134 28s -3s linear infinite}@keyframes fall-134{61.805%{transform:translate(58.7403vw,61.805vh) scale(.6247)}to{transform:translate(54.9686vw,100vh) scale(.6247)}}.snow:nth-child(135){opacity:1.668;transform:translate(54.2366vw,-10px) scale(.438);animation:fall-135 22s -30s linear infinite}@keyframes fall-135{53.064%{transform:translate(63.039vw,53.064vh) scale(.438)}to{transform:translate(58.6378vw,100vh) scale(.438)}}.snow:nth-child(136){opacity:1.5056;transform:translate(51.3699vw,-10px) scale(.9948);animation:fall-136 23s -1s linear infinite}@keyframes fall-136{31.48%{transform:translate(41.8767vw,31.48vh) scale(.9948)}to{transform:translate(46.6233vw,100vh) scale(.9948)}}.snow:nth-child(137){opacity:.086;transform:translate(3.1456vw,-10px) scale(.1854);animation:fall-137 11s -18s linear infinite}@keyframes fall-137{35.736%{transform:translate(11.5534vw,35.736vh) scale(.1854)}to{transform:translate(7.3495vw,100vh) scale(.1854)}}.snow:nth-child(138){opacity:1.8676;transform:translate(42.5305vw,-10px) scale(.4014);animation:fall-138 24s -4s linear infinite}@keyframes fall-138{67.446%{transform:translate(43.4016vw,67.446vh) scale(.4014)}to{transform:translate(42.96605vw,100vh) scale(.4014)}}.snow:nth-child(139){opacity:.2548;transform:translate(78.8534vw,-10px) scale(.7934);animation:fall-139 25s -25s linear infinite}@keyframes fall-139{34.012%{transform:translate(69.0931vw,34.012vh) scale(.7934)}to{transform:translate(73.97325vw,100vh) scale(.7934)}}.snow:nth-child(140){opacity:.1654;transform:translate(19.3216vw,-10px) scale(.0961);animation:fall-140 12s -3s linear infinite}@keyframes fall-140{42.84%{transform:translate(17.1566vw,42.84vh) scale(.0961)}to{transform:translate(18.2391vw,100vh) scale(.0961)}}.snow:nth-child(141){opacity:1.8538;transform:translate(81.2665vw,-10px) scale(.6839);animation:fall-141 25s -27s linear infinite}@keyframes fall-141{76.362%{transform:translate(80.0932vw,76.362vh) scale(.6839)}to{transform:translate(80.67985vw,100vh) scale(.6839)}}.snow:nth-child(142){opacity:.2258;transform:translate(14.4328vw,-10px) scale(.716);animation:fall-142 24s -10s linear infinite}@keyframes fall-142{59.211%{transform:translate(14.0462vw,59.211vh) scale(.716)}to{transform:translate(14.2395vw,100vh) scale(.716)}}.snow:nth-child(143){opacity:1.8834;transform:translate(5.9899vw,-10px) scale(.6643);animation:fall-143 16s -21s linear infinite}@keyframes fall-143{74.38%{transform:translate(2.9716vw,74.38vh) scale(.6643)}to{transform:translate(4.48075vw,100vh) scale(.6643)}}.snow:nth-child(144){opacity:1.4854;transform:translate(84.7615vw,-10px) scale(.3079);animation:fall-144 29s -15s linear infinite}@keyframes fall-144{60.132%{transform:translate(94.2618vw,60.132vh) scale(.3079)}to{transform:translate(89.51165vw,100vh) scale(.3079)}}.snow:nth-child(145){opacity:.6686;transform:translate(7.88vw,-10px) scale(.1291);animation:fall-145 14s -29s linear infinite}@keyframes fall-145{67.217%{transform:translate(9.6214vw,67.217vh) scale(.1291)}to{transform:translate(8.7507vw,100vh) scale(.1291)}}.snow:nth-child(146){opacity:1.3808;transform:translate(7.0714vw,-10px) scale(.3148);animation:fall-146 28s -26s linear infinite}@keyframes fall-146{38.147%{transform:translate(10.5808vw,38.147vh) scale(.3148)}to{transform:translate(8.8261vw,100vh) scale(.3148)}}.snow:nth-child(147){opacity:1.5142;transform:translate(71.7226vw,-10px) scale(.9516);animation:fall-147 24s -18s linear infinite}@keyframes fall-147{44.341%{transform:translate(73.4065vw,44.341vh) scale(.9516)}to{transform:translate(72.56455vw,100vh) scale(.9516)}}.snow:nth-child(148){opacity:.379;transform:translate(9.011vw,-10px) scale(.644);animation:fall-148 18s -29s linear infinite}@keyframes fall-148{67.215%{transform:translate(14.1284vw,67.215vh) scale(.644)}to{transform:translate(11.5697vw,100vh) scale(.644)}}.snow:nth-child(149){opacity:.035;transform:translate(18.7296vw,-10px) scale(.7582);animation:fall-149 16s -20s linear infinite}@keyframes fall-149{48.931%{transform:translate(18.0755vw,48.931vh) scale(.7582)}to{transform:translate(18.40255vw,100vh) scale(.7582)}}.snow:nth-child(150){opacity:1.5244;transform:translate(27.1618vw,-10px) scale(.3488);animation:fall-150 19s -30s linear infinite}@keyframes fall-150{45.642%{transform:translate(36.3493vw,45.642vh) scale(.3488)}to{transform:translate(31.75555vw,100vh) scale(.3488)}}.snow:nth-child(151){opacity:.0716;transform:translate(49.2864vw,-10px) scale(.7675);animation:fall-151 25s -18s linear infinite}@keyframes fall-151{41.938%{transform:translate(48.5231vw,41.938vh) scale(.7675)}to{transform:translate(48.90475vw,100vh) scale(.7675)}}.snow:nth-child(152){opacity:1.689;transform:translate(16.7206vw,-10px) scale(.1377);animation:fall-152 24s -7s linear infinite}@keyframes fall-152{77.688%{transform:translate(19.7734vw,77.688vh) scale(.1377)}to{transform:translate(18.247vw,100vh) scale(.1377)}}.snow:nth-child(153){opacity:1.5354;transform:translate(8.8874vw,-10px) scale(.4144);animation:fall-153 26s -16s linear infinite}@keyframes fall-153{41.318%{transform:translate(6.9638vw,41.318vh) scale(.4144)}to{transform:translate(7.9256vw,100vh) scale(.4144)}}.snow:nth-child(154){opacity:.0794;transform:translate(79.651vw,-10px) scale(.8091);animation:fall-154 14s -22s linear infinite}@keyframes fall-154{35.621%{transform:translate(80.0448vw,35.621vh) scale(.8091)}to{transform:translate(79.8479vw,100vh) scale(.8091)}}.snow:nth-child(155){opacity:1.7336;transform:translate(59.2039vw,-10px) scale(.2686);animation:fall-155 29s -16s linear infinite}@keyframes fall-155{70.383%{transform:translate(51.8313vw,70.383vh) scale(.2686)}to{transform:translate(55.5176vw,100vh) scale(.2686)}}.snow:nth-child(156){opacity:.2568;transform:translate(24.8089vw,-10px) scale(.1721);animation:fall-156 29s -15s linear infinite}@keyframes fall-156{66.431%{transform:translate(30.8854vw,66.431vh) scale(.1721)}to{transform:translate(27.84715vw,100vh) scale(.1721)}}.snow:nth-child(157){opacity:1.8828;transform:translate(35.1359vw,-10px) scale(.7503);animation:fall-157 13s -11s linear infinite}@keyframes fall-157{68.895%{transform:translate(34.9638vw,68.895vh) scale(.7503)}to{transform:translate(35.04985vw,100vh) scale(.7503)}}.snow:nth-child(158){opacity:.5298;transform:translate(95.4034vw,-10px) scale(.2698);animation:fall-158 17s -30s linear infinite}@keyframes fall-158{31.338%{transform:translate(92.8446vw,31.338vh) scale(.2698)}to{transform:translate(94.124vw,100vh) scale(.2698)}}.snow:nth-child(159){opacity:1.4262;transform:translate(74.4254vw,-10px) scale(.5239);animation:fall-159 26s -2s linear infinite}@keyframes fall-159{73.956%{transform:translate(74.3186vw,73.956vh) scale(.5239)}to{transform:translate(74.372vw,100vh) scale(.5239)}}.snow:nth-child(160){opacity:.6136;transform:translate(33.5707vw,-10px) scale(.6196);animation:fall-160 19s -9s linear infinite}@keyframes fall-160{50.192%{transform:translate(30.3444vw,50.192vh) scale(.6196)}to{transform:translate(31.95755vw,100vh) scale(.6196)}}.snow:nth-child(161){opacity:.2494;transform:translate(73.3479vw,-10px) scale(.7082);animation:fall-161 24s -27s linear infinite}@keyframes fall-161{52.678%{transform:translate(78.5235vw,52.678vh) scale(.7082)}to{transform:translate(75.9357vw,100vh) scale(.7082)}}.snow:nth-child(162){opacity:.3002;transform:translate(29.6314vw,-10px) scale(.2369);animation:fall-162 11s -18s linear infinite}@keyframes fall-162{40.254%{transform:translate(34.9323vw,40.254vh) scale(.2369)}to{transform:translate(32.28185vw,100vh) scale(.2369)}}.snow:nth-child(163){opacity:1.4598;transform:translate(48.8478vw,-10px) scale(.4978);animation:fall-163 22s -7s linear infinite}@keyframes fall-163{44.071%{transform:translate(56.5848vw,44.071vh) scale(.4978)}to{transform:translate(52.7163vw,100vh) scale(.4978)}}.snow:nth-child(164){opacity:.781;transform:translate(98.5031vw,-10px) scale(.8973);animation:fall-164 11s -16s linear infinite}@keyframes fall-164{74.783%{transform:translate(93.1919vw,74.783vh) scale(.8973)}to{transform:translate(95.8475vw,100vh) scale(.8973)}}.snow:nth-child(165){opacity:1.1308;transform:translate(69.6943vw,-10px) scale(.3584);animation:fall-165 30s -9s linear infinite}@keyframes fall-165{46.42%{transform:translate(75.0461vw,46.42vh) scale(.3584)}to{transform:translate(72.3702vw,100vh) scale(.3584)}}.snow:nth-child(166){opacity:.3248;transform:translate(24.1676vw,-10px) scale(.1452);animation:fall-166 14s -20s linear infinite}@keyframes fall-166{71.717%{transform:translate(14.9112vw,71.717vh) scale(.1452)}to{transform:translate(19.5394vw,100vh) scale(.1452)}}.snow:nth-child(167){opacity:.4618;transform:translate(31.7341vw,-10px) scale(.291);animation:fall-167 27s -26s linear infinite}@keyframes fall-167{34.837%{transform:translate(32.4697vw,34.837vh) scale(.291)}to{transform:translate(32.1019vw,100vh) scale(.291)}}.snow:nth-child(168){opacity:1.623;transform:translate(90.6605vw,-10px) scale(.8886);animation:fall-168 19s -22s linear infinite}@keyframes fall-168{63.568%{transform:translate(84.7526vw,63.568vh) scale(.8886)}to{transform:translate(87.70655vw,100vh) scale(.8886)}}.snow:nth-child(169){opacity:.3452;transform:translate(96.9045vw,-10px) scale(.5438);animation:fall-169 14s -4s linear infinite}@keyframes fall-169{45.579%{transform:translate(89.5459vw,45.579vh) scale(.5438)}to{transform:translate(93.2252vw,100vh) scale(.5438)}}.snow:nth-child(170){opacity:1.4794;transform:translate(24.1987vw,-10px) scale(.1442);animation:fall-170 23s -25s linear infinite}@keyframes fall-170{67.907%{transform:translate(18.0617vw,67.907vh) scale(.1442)}to{transform:translate(21.1302vw,100vh) scale(.1442)}}.snow:nth-child(171){opacity:1.2086;transform:translate(31.5639vw,-10px) scale(.431);animation:fall-171 16s -16s linear infinite}@keyframes fall-171{45.409%{transform:translate(24.2923vw,45.409vh) scale(.431)}to{transform:translate(27.9281vw,100vh) scale(.431)}}.snow:nth-child(172){opacity:1.5548;transform:translate(4.7686vw,-10px) scale(.4824);animation:fall-172 24s -16s linear infinite}@keyframes fall-172{35.114%{transform:translate(7.6734vw,35.114vh) scale(.4824)}to{transform:translate(6.221vw,100vh) scale(.4824)}}.snow:nth-child(173){opacity:.6774;transform:translate(68.1865vw,-10px) scale(.3165);animation:fall-173 20s -1s linear infinite}@keyframes fall-173{33.826%{transform:translate(75.1228vw,33.826vh) scale(.3165)}to{transform:translate(71.65465vw,100vh) scale(.3165)}}.snow:nth-child(174){opacity:1.4096;transform:translate(42.0598vw,-10px) scale(.0397);animation:fall-174 16s -13s linear infinite}@keyframes fall-174{61.815%{transform:translate(43.8026vw,61.815vh) scale(.0397)}to{transform:translate(42.9312vw,100vh) scale(.0397)}}.snow:nth-child(175){opacity:.6074;transform:translate(17.1462vw,-10px) scale(.6781);animation:fall-175 23s -13s linear infinite}@keyframes fall-175{71.177%{transform:translate(19.9815vw,71.177vh) scale(.6781)}to{transform:translate(18.56385vw,100vh) scale(.6781)}}.snow:nth-child(176){opacity:1.148;transform:translate(12.0555vw,-10px) scale(.3227);animation:fall-176 20s -20s linear infinite}@keyframes fall-176{62.612%{transform:translate(7.8153vw,62.612vh) scale(.3227)}to{transform:translate(9.9354vw,100vh) scale(.3227)}}.snow:nth-child(177){opacity:.4712;transform:translate(87.6486vw,-10px) scale(.8846);animation:fall-177 25s -8s linear infinite}@keyframes fall-177{32.988%{transform:translate(84.7587vw,32.988vh) scale(.8846)}to{transform:translate(86.20365vw,100vh) scale(.8846)}}.snow:nth-child(178){opacity:1.4236;transform:translate(23.2196vw,-10px) scale(.9555);animation:fall-178 25s -21s linear infinite}@keyframes fall-178{65.466%{transform:translate(30.6796vw,65.466vh) scale(.9555)}to{transform:translate(26.9496vw,100vh) scale(.9555)}}.snow:nth-child(179){opacity:1.2736;transform:translate(9.2915vw,-10px) scale(.4851);animation:fall-179 21s -24s linear infinite}@keyframes fall-179{72.599%{transform:translate(4.2358vw,72.599vh) scale(.4851)}to{transform:translate(6.76365vw,100vh) scale(.4851)}}.snow:nth-child(180){opacity:.8082;transform:translate(28.0793vw,-10px) scale(.6156);animation:fall-180 19s -3s linear infinite}@keyframes fall-180{53.951%{transform:translate(32.7656vw,53.951vh) scale(.6156)}to{transform:translate(30.42245vw,100vh) scale(.6156)}}.snow:nth-child(181){opacity:.454;transform:translate(50.5289vw,-10px) scale(.0424);animation:fall-181 10s -15s linear infinite}@keyframes fall-181{36.727%{transform:translate(52.8089vw,36.727vh) scale(.0424)}to{transform:translate(51.6689vw,100vh) scale(.0424)}}.snow:nth-child(182){opacity:.5752;transform:translate(39.3021vw,-10px) scale(.3361);animation:fall-182 22s -20s linear infinite}@keyframes fall-182{59.653%{transform:translate(48.8734vw,59.653vh) scale(.3361)}to{transform:translate(44.08775vw,100vh) scale(.3361)}}.snow:nth-child(183){opacity:.6762;transform:translate(33.7183vw,-10px) scale(.8411);animation:fall-183 23s -1s linear infinite}@keyframes fall-183{47.633%{transform:translate(23.8253vw,47.633vh) scale(.8411)}to{transform:translate(28.7718vw,100vh) scale(.8411)}}.snow:nth-child(184){opacity:.3892;transform:translate(20.4006vw,-10px) scale(.5044);animation:fall-184 12s -21s linear infinite}@keyframes fall-184{50.15%{transform:translate(27.4577vw,50.15vh) scale(.5044)}to{transform:translate(23.92915vw,100vh) scale(.5044)}}.snow:nth-child(185){opacity:1.4004;transform:translate(30.401vw,-10px) scale(.2655);animation:fall-185 27s -2s linear infinite}@keyframes fall-185{32.086%{transform:translate(27.1755vw,32.086vh) scale(.2655)}to{transform:translate(28.78825vw,100vh) scale(.2655)}}.snow:nth-child(186){opacity:.8366;transform:translate(73.908vw,-10px) scale(.8229);animation:fall-186 26s -28s linear infinite}@keyframes fall-186{45.106%{transform:translate(83.1755vw,45.106vh) scale(.8229)}to{transform:translate(78.54175vw,100vh) scale(.8229)}}.snow:nth-child(187){opacity:1.312;transform:translate(84.4571vw,-10px) scale(.2996);animation:fall-187 20s -2s linear infinite}@keyframes fall-187{64.522%{transform:translate(80.1064vw,64.522vh) scale(.2996)}to{transform:translate(82.28175vw,100vh) scale(.2996)}}.snow:nth-child(188){opacity:1.8492;transform:translate(43.4962vw,-10px) scale(.2897);animation:fall-188 26s -1s linear infinite}@keyframes fall-188{65.842%{transform:translate(38.159vw,65.842vh) scale(.2897)}to{transform:translate(40.8276vw,100vh) scale(.2897)}}.snow:nth-child(189){opacity:1.0962;transform:translate(70.7638vw,-10px) scale(.6819);animation:fall-189 26s -5s linear infinite}@keyframes fall-189{43.799%{transform:translate(70.5793vw,43.799vh) scale(.6819)}to{transform:translate(70.67155vw,100vh) scale(.6819)}}.snow:nth-child(190){opacity:.2942;transform:translate(41.3449vw,-10px) scale(.2568);animation:fall-190 21s -6s linear infinite}@keyframes fall-190{38.877%{transform:translate(38.2027vw,38.877vh) scale(.2568)}to{transform:translate(39.7738vw,100vh) scale(.2568)}}.snow:nth-child(191){opacity:.2104;transform:translate(37.403vw,-10px) scale(.1587);animation:fall-191 14s -30s linear infinite}@keyframes fall-191{41.299%{transform:translate(34.9436vw,41.299vh) scale(.1587)}to{transform:translate(36.1733vw,100vh) scale(.1587)}}.snow:nth-child(192){opacity:.4368;transform:translate(39.7936vw,-10px) scale(.5136);animation:fall-192 24s -24s linear infinite}@keyframes fall-192{70.581%{transform:translate(44.2734vw,70.581vh) scale(.5136)}to{transform:translate(42.0335vw,100vh) scale(.5136)}}.snow:nth-child(193){opacity:.1498;transform:translate(88.9499vw,-10px) scale(.8742);animation:fall-193 12s -23s linear infinite}@keyframes fall-193{48.693%{transform:translate(84.4543vw,48.693vh) scale(.8742)}to{transform:translate(86.7021vw,100vh) scale(.8742)}}.snow:nth-child(194){opacity:1.0242;transform:translate(1.3736vw,-10px) scale(.697);animation:fall-194 11s -30s linear infinite}@keyframes fall-194{47.902%{transform:translate(4.7264vw,47.902vh) scale(.697)}to{transform:translate(3.05vw,100vh) scale(.697)}}.snow:nth-child(195){opacity:1.3374;transform:translate(90.2611vw,-10px) scale(.0209);animation:fall-195 29s -19s linear infinite}@keyframes fall-195{36.986%{transform:translate(91.6758vw,36.986vh) scale(.0209)}to{transform:translate(90.96845vw,100vh) scale(.0209)}}.snow:nth-child(196){opacity:1.145;transform:translate(23.2242vw,-10px) scale(.3754);animation:fall-196 29s -7s linear infinite}@keyframes fall-196{34.809%{transform:translate(23.2457vw,34.809vh) scale(.3754)}to{transform:translate(23.23495vw,100vh) scale(.3754)}}.snow:nth-child(197){opacity:.7344;transform:translate(27.4092vw,-10px) scale(.7433);animation:fall-197 19s -23s linear infinite}@keyframes fall-197{42.568%{transform:translate(19.8681vw,42.568vh) scale(.7433)}to{transform:translate(23.63865vw,100vh) scale(.7433)}}.snow:nth-child(198){opacity:.5164;transform:translate(55.1531vw,-10px) scale(.2499);animation:fall-198 14s -3s linear infinite}@keyframes fall-198{64.383%{transform:translate(57.0125vw,64.383vh) scale(.2499)}to{transform:translate(56.0828vw,100vh) scale(.2499)}}.snow:nth-child(199){opacity:1.8574;transform:translate(27.7724vw,-10px) scale(.3969);animation:fall-199 11s -30s linear infinite}@keyframes fall-199{50.804%{transform:translate(18.7822vw,50.804vh) scale(.3969)}to{transform:translate(23.2773vw,100vh) scale(.3969)}}.snow:nth-child(200){opacity:.8952;transform:translate(95.3631vw,-10px) scale(.6018);animation:fall-200 12s -8s linear infinite}@keyframes fall-200{49.047%{transform:translate(95.0739vw,49.047vh) scale(.6018)}to{transform:translate(95.2185vw,100vh) scale(.6018)}}.snow:nth-child(201){opacity:1.5304;transform:translate(94.054vw,-10px) scale(.476);animation:fall-201 19s -3s linear infinite}@keyframes fall-201{57.147%{transform:translate(87.8114vw,57.147vh) scale(.476)}to{transform:translate(90.9327vw,100vh) scale(.476)}}.snow:nth-child(202){opacity:1.807;transform:translate(15.0794vw,-10px) scale(.5162);animation:fall-202 30s -24s linear infinite}@keyframes fall-202{55.863%{transform:translate(21.6185vw,55.863vh) scale(.5162)}to{transform:translate(18.34895vw,100vh) scale(.5162)}}.snow:nth-child(203){opacity:1.509;transform:translate(6.5757vw,-10px) scale(.0169);animation:fall-203 13s -29s linear infinite}@keyframes fall-203{38.218%{transform:translate(2.3703vw,38.218vh) scale(.0169)}to{transform:translate(4.473vw,100vh) scale(.0169)}}.snow:nth-child(204){opacity:1.2416;transform:translate(85.5796vw,-10px) scale(.9159);animation:fall-204 18s -5s linear infinite}@keyframes fall-204{34.451%{transform:translate(87.4499vw,34.451vh) scale(.9159)}to{transform:translate(86.51475vw,100vh) scale(.9159)}}.snow:nth-child(205){opacity:1.6138;transform:translate(97.1979vw,-10px) scale(.8267);animation:fall-205 12s -18s linear infinite}@keyframes fall-205{62.585%{transform:translate(104.7888vw,62.585vh) scale(.8267)}to{transform:translate(100.99335vw,100vh) scale(.8267)}}.snow:nth-child(206){opacity:1.2762;transform:translate(45.4718vw,-10px) scale(.7027);animation:fall-206 16s -4s linear infinite}@keyframes fall-206{76.162%{transform:translate(46.0563vw,76.162vh) scale(.7027)}to{transform:translate(45.76405vw,100vh) scale(.7027)}}.snow:nth-child(207){opacity:.415;transform:translate(50.9018vw,-10px) scale(.8553);animation:fall-207 16s -28s linear infinite}@keyframes fall-207{74.103%{transform:translate(42.6091vw,74.103vh) scale(.8553)}to{transform:translate(46.75545vw,100vh) scale(.8553)}}.snow:nth-child(208){opacity:.3032;transform:translate(34.9282vw,-10px) scale(.279);animation:fall-208 13s -27s linear infinite}@keyframes fall-208{60.13%{transform:translate(28.2811vw,60.13vh) scale(.279)}to{transform:translate(31.60465vw,100vh) scale(.279)}}.snow:nth-child(209){opacity:1.0338;transform:translate(52.9438vw,-10px) scale(.5965);animation:fall-209 11s -16s linear infinite}@keyframes fall-209{42.88%{transform:translate(47.9283vw,42.88vh) scale(.5965)}to{transform:translate(50.43605vw,100vh) scale(.5965)}}.snow:nth-child(210){opacity:.0328;transform:translate(22.5046vw,-10px) scale(.7935);animation:fall-210 12s -16s linear infinite}@keyframes fall-210{42.9%{transform:translate(12.8917vw,42.9vh) scale(.7935)}to{transform:translate(17.69815vw,100vh) scale(.7935)}}.snow:nth-child(211){opacity:1.0416;transform:translate(92.0139vw,-10px) scale(.2403);animation:fall-211 16s -20s linear infinite}@keyframes fall-211{54.133%{transform:translate(84.0878vw,54.133vh) scale(.2403)}to{transform:translate(88.05085vw,100vh) scale(.2403)}}.snow:nth-child(212){opacity:.3808;transform:translate(51.2473vw,-10px) scale(.7858);animation:fall-212 17s -11s linear infinite}@keyframes fall-212{70.738%{transform:translate(53.1929vw,70.738vh) scale(.7858)}to{transform:translate(52.2201vw,100vh) scale(.7858)}}.snow:nth-child(213){opacity:1.6822;transform:translate(5.7612vw,-10px) scale(.07);animation:fall-213 13s -29s linear infinite}@keyframes fall-213{59.008%{transform:translate(-1.9564vw,59.008vh) scale(.07)}to{transform:translate(1.9024vw,100vh) scale(.07)}}.snow:nth-child(214){opacity:1.3546;transform:translate(12.7767vw,-10px) scale(.3238);animation:fall-214 22s -23s linear infinite}@keyframes fall-214{60.656%{transform:translate(20.6946vw,60.656vh) scale(.3238)}to{transform:translate(16.73565vw,100vh) scale(.3238)}}.snow:nth-child(215){opacity:.428;transform:translate(64.1191vw,-10px) scale(.2475);animation:fall-215 23s -6s linear infinite}@keyframes fall-215{39.105%{transform:translate(57.032vw,39.105vh) scale(.2475)}to{transform:translate(60.57555vw,100vh) scale(.2475)}}.snow:nth-child(216){opacity:1.3048;transform:translate(65.4966vw,-10px) scale(.7526);animation:fall-216 11s -17s linear infinite}@keyframes fall-216{37.247%{transform:translate(69.2676vw,37.247vh) scale(.7526)}to{transform:translate(67.3821vw,100vh) scale(.7526)}}.snow:nth-child(217){opacity:1.1616;transform:translate(36.564vw,-10px) scale(.4347);animation:fall-217 25s -10s linear infinite}@keyframes fall-217{43.52%{transform:translate(37.0269vw,43.52vh) scale(.4347)}to{transform:translate(36.79545vw,100vh) scale(.4347)}}.snow:nth-child(218){opacity:.9666;transform:translate(29.7088vw,-10px) scale(.6679);animation:fall-218 27s -19s linear infinite}@keyframes fall-218{53.205%{transform:translate(23.0793vw,53.205vh) scale(.6679)}to{transform:translate(26.39405vw,100vh) scale(.6679)}}.snow:nth-child(219){opacity:1.5212;transform:translate(71.3279vw,-10px) scale(.6845);animation:fall-219 24s -15s linear infinite}@keyframes fall-219{32.817%{transform:translate(80.4661vw,32.817vh) scale(.6845)}to{transform:translate(75.897vw,100vh) scale(.6845)}}.snow:nth-child(220){opacity:.0086;transform:translate(92.4757vw,-10px) scale(.871);animation:fall-220 12s -25s linear infinite}@keyframes fall-220{55.177%{transform:translate(99.2326vw,55.177vh) scale(.871)}to{transform:translate(95.85415vw,100vh) scale(.871)}}.snow:nth-child(221){opacity:.1194;transform:translate(38.1841vw,-10px) scale(.4299);animation:fall-221 28s -5s linear infinite}@keyframes fall-221{58.357%{transform:translate(35.0314vw,58.357vh) scale(.4299)}to{transform:translate(36.60775vw,100vh) scale(.4299)}}.snow:nth-child(222){opacity:.9202;transform:translate(86.9384vw,-10px) scale(.3351);animation:fall-222 21s -12s linear infinite}@keyframes fall-222{54.897%{transform:translate(78.3681vw,54.897vh) scale(.3351)}to{transform:translate(82.65325vw,100vh) scale(.3351)}}.snow:nth-child(223){opacity:1.2984;transform:translate(9.207vw,-10px) scale(.9694);animation:fall-223 23s -10s linear infinite}@keyframes fall-223{58.793%{transform:translate(9.5956vw,58.793vh) scale(.9694)}to{transform:translate(9.4013vw,100vh) scale(.9694)}}.snow:nth-child(224){opacity:1.1772;transform:translate(49.6396vw,-10px) scale(.9248);animation:fall-224 28s -20s linear infinite}@keyframes fall-224{46.467%{transform:translate(45.4903vw,46.467vh) scale(.9248)}to{transform:translate(47.56495vw,100vh) scale(.9248)}}.snow:nth-child(225){opacity:.43;transform:translate(73.4935vw,-10px) scale(.1844);animation:fall-225 18s -13s linear infinite}@keyframes fall-225{43.825%{transform:translate(78.2337vw,43.825vh) scale(.1844)}to{transform:translate(75.8636vw,100vh) scale(.1844)}}.snow:nth-child(226){opacity:.536;transform:translate(34.0929vw,-10px) scale(.3323);animation:fall-226 27s -27s linear infinite}@keyframes fall-226{59.107%{transform:translate(28.5827vw,59.107vh) scale(.3323)}to{transform:translate(31.3378vw,100vh) scale(.3323)}}.snow:nth-child(227){opacity:.513;transform:translate(90.1405vw,-10px) scale(.2618);animation:fall-227 22s -10s linear infinite}@keyframes fall-227{71.066%{transform:translate(89.2812vw,71.066vh) scale(.2618)}to{transform:translate(89.71085vw,100vh) scale(.2618)}}.snow:nth-child(228){opacity:.34;transform:translate(65.1116vw,-10px) scale(.2681);animation:fall-228 24s -6s linear infinite}@keyframes fall-228{34.755%{transform:translate(74.8146vw,34.755vh) scale(.2681)}to{transform:translate(69.9631vw,100vh) scale(.2681)}}.snow:nth-child(229){opacity:.8904;transform:translate(91.6337vw,-10px) scale(.3523);animation:fall-229 25s -30s linear infinite}@keyframes fall-229{42.14%{transform:translate(87.1097vw,42.14vh) scale(.3523)}to{transform:translate(89.3717vw,100vh) scale(.3523)}}.snow:nth-child(230){opacity:1.1924;transform:translate(64.2663vw,-10px) scale(.4538);animation:fall-230 19s -5s linear infinite}@keyframes fall-230{35.521%{transform:translate(60.4676vw,35.521vh) scale(.4538)}to{transform:translate(62.36695vw,100vh) scale(.4538)}}.snow:nth-child(231){opacity:.2002;transform:translate(12.919vw,-10px) scale(.8474);animation:fall-231 21s -23s linear infinite}@keyframes fall-231{78.038%{transform:translate(18.6189vw,78.038vh) scale(.8474)}to{transform:translate(15.76895vw,100vh) scale(.8474)}}.snow:nth-child(232){opacity:1.2296;transform:translate(28.7765vw,-10px) scale(.7747);animation:fall-232 29s -7s linear infinite}@keyframes fall-232{43.362%{transform:translate(30.4811vw,43.362vh) scale(.7747)}to{transform:translate(29.6288vw,100vh) scale(.7747)}}.snow:nth-child(233){opacity:1.0774;transform:translate(47.6488vw,-10px) scale(.835);animation:fall-233 16s -27s linear infinite}@keyframes fall-233{40.616%{transform:translate(38.9476vw,40.616vh) scale(.835)}to{transform:translate(43.2982vw,100vh) scale(.835)}}.snow:nth-child(234){opacity:.85;transform:translate(99.2995vw,-10px) scale(.0262);animation:fall-234 20s -15s linear infinite}@keyframes fall-234{39.628%{transform:translate(96.3877vw,39.628vh) scale(.0262)}to{transform:translate(97.8436vw,100vh) scale(.0262)}}.snow:nth-child(235){opacity:.8088;transform:translate(72.9619vw,-10px) scale(.7056);animation:fall-235 25s -2s linear infinite}@keyframes fall-235{71.579%{transform:translate(73.8946vw,71.579vh) scale(.7056)}to{transform:translate(73.42825vw,100vh) scale(.7056)}}.snow:nth-child(236){opacity:1.3216;transform:translate(97.6211vw,-10px) scale(.6725);animation:fall-236 14s -23s linear infinite}@keyframes fall-236{55.584%{transform:translate(100.8384vw,55.584vh) scale(.6725)}to{transform:translate(99.22975vw,100vh) scale(.6725)}}.snow:nth-child(237){opacity:1.0786;transform:translate(91.4412vw,-10px) scale(.3081);animation:fall-237 25s -3s linear infinite}@keyframes fall-237{39.962%{transform:translate(98.7522vw,39.962vh) scale(.3081)}to{transform:translate(95.0967vw,100vh) scale(.3081)}}.snow:nth-child(238){opacity:.2798;transform:translate(41.3943vw,-10px) scale(.5946);animation:fall-238 14s -14s linear infinite}@keyframes fall-238{74.578%{transform:translate(38.9598vw,74.578vh) scale(.5946)}to{transform:translate(40.17705vw,100vh) scale(.5946)}}.snow:nth-child(239){opacity:.3736;transform:translate(90.1952vw,-10px) scale(.6377);animation:fall-239 30s -16s linear infinite}@keyframes fall-239{48.063%{transform:translate(84.0225vw,48.063vh) scale(.6377)}to{transform:translate(87.10885vw,100vh) scale(.6377)}}.snow:nth-child(240){opacity:1.2082;transform:translate(99.9585vw,-10px) scale(.3647);animation:fall-240 17s -11s linear infinite}@keyframes fall-240{74.882%{transform:translate(103.9425vw,74.882vh) scale(.3647)}to{transform:translate(101.9505vw,100vh) scale(.3647)}}.snow:nth-child(241){opacity:1.9488;transform:translate(89.9434vw,-10px) scale(.0152);animation:fall-241 27s -4s linear infinite}@keyframes fall-241{73.657%{transform:translate(95.8887vw,73.657vh) scale(.0152)}to{transform:translate(92.91605vw,100vh) scale(.0152)}}.snow:nth-child(242){opacity:1.0696;transform:translate(86.8146vw,-10px) scale(.7411);animation:fall-242 21s -21s linear infinite}@keyframes fall-242{38.582%{transform:translate(80.8032vw,38.582vh) scale(.7411)}to{transform:translate(83.8089vw,100vh) scale(.7411)}}.snow:nth-child(243){opacity:.2934;transform:translate(2.1173vw,-10px) scale(.0494);animation:fall-243 25s -3s linear infinite}@keyframes fall-243{63.411%{transform:translate(-3.105vw,63.411vh) scale(.0494)}to{transform:translate(-.49385vw,100vh) scale(.0494)}}.snow:nth-child(244){opacity:.4992;transform:translate(49.5637vw,-10px) scale(.5655);animation:fall-244 20s -9s linear infinite}@keyframes fall-244{37.643%{transform:translate(58.7068vw,37.643vh) scale(.5655)}to{transform:translate(54.13525vw,100vh) scale(.5655)}}.snow:nth-child(245){opacity:.9076;transform:translate(19.4417vw,-10px) scale(.0429);animation:fall-245 21s -9s linear infinite}@keyframes fall-245{65.823%{transform:translate(9.5305vw,65.823vh) scale(.0429)}to{transform:translate(14.4861vw,100vh) scale(.0429)}}.snow:nth-child(246){opacity:1.4144;transform:translate(25.1017vw,-10px) scale(.2021);animation:fall-246 11s -6s linear infinite}@keyframes fall-246{58.643%{transform:translate(30.489vw,58.643vh) scale(.2021)}to{transform:translate(27.79535vw,100vh) scale(.2021)}}.snow:nth-child(247){opacity:.1416;transform:translate(6.541vw,-10px) scale(.8062);animation:fall-247 28s -18s linear infinite}@keyframes fall-247{59.875%{transform:translate(3.3658vw,59.875vh) scale(.8062)}to{transform:translate(4.9534vw,100vh) scale(.8062)}}.snow:nth-child(248){opacity:1.3754;transform:translate(47.1205vw,-10px) scale(.6843);animation:fall-248 13s -12s linear infinite}@keyframes fall-248{45.005%{transform:translate(53.069vw,45.005vh) scale(.6843)}to{transform:translate(50.09475vw,100vh) scale(.6843)}}.snow:nth-child(249){opacity:1.2842;transform:translate(95.4436vw,-10px) scale(.9628);animation:fall-249 12s -18s linear infinite}@keyframes fall-249{50.275%{transform:translate(92.5425vw,50.275vh) scale(.9628)}to{transform:translate(93.99305vw,100vh) scale(.9628)}}.snow:nth-child(250){opacity:1.1108;transform:translate(75.4569vw,-10px) scale(.1509);animation:fall-250 27s -16s linear infinite}@keyframes fall-250{35.959%{transform:translate(75.0418vw,35.959vh) scale(.1509)}to{transform:translate(75.24935vw,100vh) scale(.1509)}}.snow:nth-child(251){opacity:.891;transform:translate(85.5927vw,-10px) scale(.8454);animation:fall-251 29s -25s linear infinite}@keyframes fall-251{47.421%{transform:translate(88.8828vw,47.421vh) scale(.8454)}to{transform:translate(87.23775vw,100vh) scale(.8454)}}.snow:nth-child(252){opacity:1.3408;transform:translate(45.0941vw,-10px) scale(.6726);animation:fall-252 17s -9s linear infinite}@keyframes fall-252{40.411%{transform:translate(52.7562vw,40.411vh) scale(.6726)}to{transform:translate(48.92515vw,100vh) scale(.6726)}}.snow:nth-child(253){opacity:.5554;transform:translate(31.404vw,-10px) scale(.6248);animation:fall-253 10s -15s linear infinite}@keyframes fall-253{63.088%{transform:translate(27.3736vw,63.088vh) scale(.6248)}to{transform:translate(29.3888vw,100vh) scale(.6248)}}.snow:nth-child(254){opacity:1.786;transform:translate(27.8665vw,-10px) scale(.6976);animation:fall-254 10s -13s linear infinite}@keyframes fall-254{67.639%{transform:translate(21.5204vw,67.639vh) scale(.6976)}to{transform:translate(24.69345vw,100vh) scale(.6976)}}.snow:nth-child(255){opacity:1.7214;transform:translate(99.9157vw,-10px) scale(.2398);animation:fall-255 20s -6s linear infinite}@keyframes fall-255{42.312%{transform:translate(106.5847vw,42.312vh) scale(.2398)}to{transform:translate(103.2502vw,100vh) scale(.2398)}}.snow:nth-child(256){opacity:1.5852;transform:translate(12.2273vw,-10px) scale(.1392);animation:fall-256 13s -15s linear infinite}@keyframes fall-256{66.921%{transform:translate(15.5771vw,66.921vh) scale(.1392)}to{transform:translate(13.9022vw,100vh) scale(.1392)}}.snow:nth-child(257){opacity:1.0044;transform:translate(61.7465vw,-10px) scale(.5913);animation:fall-257 30s -26s linear infinite}@keyframes fall-257{69.748%{transform:translate(70.5339vw,69.748vh) scale(.5913)}to{transform:translate(66.1402vw,100vh) scale(.5913)}}.snow:nth-child(258){opacity:.2614;transform:translate(9.4073vw,-10px) scale(.9832);animation:fall-258 18s -3s linear infinite}@keyframes fall-258{67.261%{transform:translate(16.7646vw,67.261vh) scale(.9832)}to{transform:translate(13.08595vw,100vh) scale(.9832)}}.snow:nth-child(259){opacity:.237;transform:translate(77.3006vw,-10px) scale(.0835);animation:fall-259 14s -13s linear infinite}@keyframes fall-259{77.732%{transform:translate(67.3382vw,77.732vh) scale(.0835)}to{transform:translate(72.3194vw,100vh) scale(.0835)}}.snow:nth-child(260){opacity:.184;transform:translate(60.1373vw,-10px) scale(.6945);animation:fall-260 30s -7s linear infinite}@keyframes fall-260{72.816%{transform:translate(52.654vw,72.816vh) scale(.6945)}to{transform:translate(56.39565vw,100vh) scale(.6945)}}.snow:nth-child(261){opacity:.8924;transform:translate(19.2194vw,-10px) scale(.7439);animation:fall-261 14s -21s linear infinite}@keyframes fall-261{76.864%{transform:translate(27.2356vw,76.864vh) scale(.7439)}to{transform:translate(23.2275vw,100vh) scale(.7439)}}.snow:nth-child(262){opacity:.4904;transform:translate(43.2279vw,-10px) scale(.8116);animation:fall-262 23s -30s linear infinite}@keyframes fall-262{57.597%{transform:translate(37.9843vw,57.597vh) scale(.8116)}to{transform:translate(40.6061vw,100vh) scale(.8116)}}.snow:nth-child(263){opacity:1.7328;transform:translate(17.5577vw,-10px) scale(.6732);animation:fall-263 14s -20s linear infinite}@keyframes fall-263{76.41%{transform:translate(23.7324vw,76.41vh) scale(.6732)}to{transform:translate(20.64505vw,100vh) scale(.6732)}}.snow:nth-child(264){opacity:1.6912;transform:translate(73.5941vw,-10px) scale(.7276);animation:fall-264 30s -13s linear infinite}@keyframes fall-264{58.032%{transform:translate(66.5607vw,58.032vh) scale(.7276)}to{transform:translate(70.0774vw,100vh) scale(.7276)}}.snow:nth-child(265){opacity:.7904;transform:translate(89.7788vw,-10px) scale(.6594);animation:fall-265 10s -20s linear infinite}@keyframes fall-265{42.96%{transform:translate(87.8653vw,42.96vh) scale(.6594)}to{transform:translate(88.82205vw,100vh) scale(.6594)}}.snow:nth-child(266){opacity:.148;transform:translate(86.6386vw,-10px) scale(.2398);animation:fall-266 11s -2s linear infinite}@keyframes fall-266{71.75%{transform:translate(95.4716vw,71.75vh) scale(.2398)}to{transform:translate(91.0551vw,100vh) scale(.2398)}}.snow:nth-child(267){opacity:1.1926;transform:translate(66.2706vw,-10px) scale(.8176);animation:fall-267 29s -30s linear infinite}@keyframes fall-267{70.378%{transform:translate(63.4287vw,70.378vh) scale(.8176)}to{transform:translate(64.84965vw,100vh) scale(.8176)}}.snow:nth-child(268){opacity:1.1986;transform:translate(90.57vw,-10px) scale(.4298);animation:fall-268 13s -30s linear infinite}@keyframes fall-268{51.494%{transform:translate(97.7913vw,51.494vh) scale(.4298)}to{transform:translate(94.18065vw,100vh) scale(.4298)}}.snow:nth-child(269){opacity:1.9774;transform:translate(16.4863vw,-10px) scale(.788);animation:fall-269 26s -30s linear infinite}@keyframes fall-269{64.298%{transform:translate(8.9879vw,64.298vh) scale(.788)}to{transform:translate(12.7371vw,100vh) scale(.788)}}.snow:nth-child(270){opacity:1.0182;transform:translate(54.1103vw,-10px) scale(.9282);animation:fall-270 23s -14s linear infinite}@keyframes fall-270{67.702%{transform:translate(50.7955vw,67.702vh) scale(.9282)}to{transform:translate(52.4529vw,100vh) scale(.9282)}}.snow:nth-child(271){opacity:.108;transform:translate(85.7276vw,-10px) scale(.8406);animation:fall-271 18s -24s linear infinite}@keyframes fall-271{57.661%{transform:translate(90.0526vw,57.661vh) scale(.8406)}to{transform:translate(87.8901vw,100vh) scale(.8406)}}.snow:nth-child(272){opacity:.933;transform:translate(83.1608vw,-10px) scale(.9731);animation:fall-272 10s -28s linear infinite}@keyframes fall-272{36.132%{transform:translate(83.2106vw,36.132vh) scale(.9731)}to{transform:translate(83.1857vw,100vh) scale(.9731)}}.snow:nth-child(273){opacity:1.3392;transform:translate(63.8218vw,-10px) scale(.9215);animation:fall-273 24s -11s linear infinite}@keyframes fall-273{53.853%{transform:translate(57.3318vw,53.853vh) scale(.9215)}to{transform:translate(60.5768vw,100vh) scale(.9215)}}.snow:nth-child(274){opacity:1.4774;transform:translate(89.5976vw,-10px) scale(.1374);animation:fall-274 22s -5s linear infinite}@keyframes fall-274{50.734%{transform:translate(82.2445vw,50.734vh) scale(.1374)}to{transform:translate(85.92105vw,100vh) scale(.1374)}}.snow:nth-child(275){opacity:.2292;transform:translate(48.0636vw,-10px) scale(.9844);animation:fall-275 26s -2s linear infinite}@keyframes fall-275{75.502%{transform:translate(47.474vw,75.502vh) scale(.9844)}to{transform:translate(47.7688vw,100vh) scale(.9844)}}.snow:nth-child(276){opacity:1.6476;transform:translate(92.053vw,-10px) scale(.3024);animation:fall-276 21s -26s linear infinite}@keyframes fall-276{75.231%{transform:translate(98.5815vw,75.231vh) scale(.3024)}to{transform:translate(95.31725vw,100vh) scale(.3024)}}.snow:nth-child(277){opacity:1.7114;transform:translate(76.2152vw,-10px) scale(.3898);animation:fall-277 20s -17s linear infinite}@keyframes fall-277{51.148%{transform:translate(69.5017vw,51.148vh) scale(.3898)}to{transform:translate(72.85845vw,100vh) scale(.3898)}}.snow:nth-child(278){opacity:1.2576;transform:translate(41.9078vw,-10px) scale(.8679);animation:fall-278 13s -10s linear infinite}@keyframes fall-278{43.646%{transform:translate(37.751vw,43.646vh) scale(.8679)}to{transform:translate(39.8294vw,100vh) scale(.8679)}}.snow:nth-child(279){opacity:1.0248;transform:translate(30.9462vw,-10px) scale(.7142);animation:fall-279 22s -30s linear infinite}@keyframes fall-279{40.777%{transform:translate(23.7292vw,40.777vh) scale(.7142)}to{transform:translate(27.3377vw,100vh) scale(.7142)}}.snow:nth-child(280){opacity:.4334;transform:translate(23.9116vw,-10px) scale(.9015);animation:fall-280 11s -20s linear infinite}@keyframes fall-280{62.739%{transform:translate(20.7099vw,62.739vh) scale(.9015)}to{transform:translate(22.31075vw,100vh) scale(.9015)}}.snow:nth-child(281){opacity:.2786;transform:translate(42.4172vw,-10px) scale(.3707);animation:fall-281 25s -19s linear infinite}@keyframes fall-281{67.577%{transform:translate(48.0065vw,67.577vh) scale(.3707)}to{transform:translate(45.21185vw,100vh) scale(.3707)}}.snow:nth-child(282){opacity:1.1226;transform:translate(17.8582vw,-10px) scale(.5997);animation:fall-282 12s -24s linear infinite}@keyframes fall-282{40.338%{transform:translate(7.9358vw,40.338vh) scale(.5997)}to{transform:translate(12.897vw,100vh) scale(.5997)}}.snow:nth-child(283){opacity:.76;transform:translate(75.3732vw,-10px) scale(.0652);animation:fall-283 18s -15s linear infinite}@keyframes fall-283{62.06%{transform:translate(79.6424vw,62.06vh) scale(.0652)}to{transform:translate(77.5078vw,100vh) scale(.0652)}}.snow:nth-child(284){opacity:.7824;transform:translate(94.9486vw,-10px) scale(.9952);animation:fall-284 20s -22s linear infinite}@keyframes fall-284{61.358%{transform:translate(104.7239vw,61.358vh) scale(.9952)}to{transform:translate(99.83625vw,100vh) scale(.9952)}}.snow:nth-child(285){opacity:1.9404;transform:translate(28.0497vw,-10px) scale(.1185);animation:fall-285 26s -26s linear infinite}@keyframes fall-285{32.601%{transform:translate(19.6261vw,32.601vh) scale(.1185)}to{transform:translate(23.8379vw,100vh) scale(.1185)}}.snow:nth-child(286){opacity:.9792;transform:translate(.9299vw,-10px) scale(.099);animation:fall-286 28s -17s linear infinite}@keyframes fall-286{46.801%{transform:translate(-8.7676vw,46.801vh) scale(.099)}to{transform:translate(-3.91885vw,100vh) scale(.099)}}.snow:nth-child(287){opacity:1.956;transform:translate(36.1977vw,-10px) scale(.9397);animation:fall-287 14s -15s linear infinite}@keyframes fall-287{77.228%{transform:translate(35.4997vw,77.228vh) scale(.9397)}to{transform:translate(35.8487vw,100vh) scale(.9397)}}.snow:nth-child(288){opacity:1.5522;transform:translate(24.0828vw,-10px) scale(.0748);animation:fall-288 20s -1s linear infinite}@keyframes fall-288{31.548%{transform:translate(33.7053vw,31.548vh) scale(.0748)}to{transform:translate(28.89405vw,100vh) scale(.0748)}}.snow:nth-child(289){opacity:1.3914;transform:translate(54.7626vw,-10px) scale(.9099);animation:fall-289 29s -19s linear infinite}@keyframes fall-289{75.83%{transform:translate(45.14vw,75.83vh) scale(.9099)}to{transform:translate(49.9513vw,100vh) scale(.9099)}}.snow:nth-child(290){opacity:1.8616;transform:translate(54.2328vw,-10px) scale(.3497);animation:fall-290 27s -24s linear infinite}@keyframes fall-290{32.811%{transform:translate(44.7136vw,32.811vh) scale(.3497)}to{transform:translate(49.4732vw,100vh) scale(.3497)}}.snow:nth-child(291){opacity:.834;transform:translate(84.8402vw,-10px) scale(.5074);animation:fall-291 14s -15s linear infinite}@keyframes fall-291{78.927%{transform:translate(75.6668vw,78.927vh) scale(.5074)}to{transform:translate(80.2535vw,100vh) scale(.5074)}}.snow:nth-child(292){opacity:1.5084;transform:translate(23.7076vw,-10px) scale(.0363);animation:fall-292 15s -12s linear infinite}@keyframes fall-292{59.513%{transform:translate(13.7879vw,59.513vh) scale(.0363)}to{transform:translate(18.74775vw,100vh) scale(.0363)}}.snow:nth-child(293){opacity:.9418;transform:translate(3.8682vw,-10px) scale(.1288);animation:fall-293 16s -10s linear infinite}@keyframes fall-293{30.438%{transform:translate(-.6257vw,30.438vh) scale(.1288)}to{transform:translate(1.62125vw,100vh) scale(.1288)}}.snow:nth-child(294){opacity:.1714;transform:translate(54.5202vw,-10px) scale(.2539);animation:fall-294 30s -2s linear infinite}@keyframes fall-294{31.59%{transform:translate(47.6291vw,31.59vh) scale(.2539)}to{transform:translate(51.07465vw,100vh) scale(.2539)}}.snow:nth-child(295){opacity:1.959;transform:translate(94.9907vw,-10px) scale(.3468);animation:fall-295 29s -28s linear infinite}@keyframes fall-295{50.776%{transform:translate(85.7529vw,50.776vh) scale(.3468)}to{transform:translate(90.3718vw,100vh) scale(.3468)}}.snow:nth-child(296){opacity:1.9808;transform:translate(55.6588vw,-10px) scale(.2102);animation:fall-296 25s -8s linear infinite}@keyframes fall-296{31.702%{transform:translate(57.968vw,31.702vh) scale(.2102)}to{transform:translate(56.8134vw,100vh) scale(.2102)}}.snow:nth-child(297){opacity:1.7624;transform:translate(85.6091vw,-10px) scale(.044);animation:fall-297 18s -26s linear infinite}@keyframes fall-297{38.579%{transform:translate(78.7739vw,38.579vh) scale(.044)}to{transform:translate(82.1915vw,100vh) scale(.044)}}.snow:nth-child(298){opacity:.9694;transform:translate(89.3214vw,-10px) scale(.1322);animation:fall-298 18s -9s linear infinite}@keyframes fall-298{77.965%{transform:translate(81.5325vw,77.965vh) scale(.1322)}to{transform:translate(85.42695vw,100vh) scale(.1322)}}.snow:nth-child(299){opacity:.1348;transform:translate(63.6348vw,-10px) scale(.2945);animation:fall-299 24s -8s linear infinite}@keyframes fall-299{31.762%{transform:translate(55.5781vw,31.762vh) scale(.2945)}to{transform:translate(59.60645vw,100vh) scale(.2945)}}.snow:nth-child(300){opacity:1.6878;transform:translate(84.5143vw,-10px) scale(.4255);animation:fall-300 24s -1s linear infinite}@keyframes fall-300{43.718%{transform:translate(77.2746vw,43.718vh) scale(.4255)}to{transform:translate(80.89445vw,100vh) scale(.4255)}}.snow:nth-child(301){opacity:.8316;transform:translate(83.2794vw,-10px) scale(.3926);animation:fall-301 24s -12s linear infinite}@keyframes fall-301{42.698%{transform:translate(85.2682vw,42.698vh) scale(.3926)}to{transform:translate(84.2738vw,100vh) scale(.3926)}}.snow:nth-child(302){opacity:.9968;transform:translate(1.0971vw,-10px) scale(.9314);animation:fall-302 29s -22s linear infinite}@keyframes fall-302{68.096%{transform:translate(10.3578vw,68.096vh) scale(.9314)}to{transform:translate(5.72745vw,100vh) scale(.9314)}}.snow:nth-child(303){opacity:.0816;transform:translate(64.8773vw,-10px) scale(.6042);animation:fall-303 10s -20s linear infinite}@keyframes fall-303{30.069%{transform:translate(64.535vw,30.069vh) scale(.6042)}to{transform:translate(64.70615vw,100vh) scale(.6042)}}.snow:nth-child(304){opacity:.9656;transform:translate(83.4979vw,-10px) scale(.8358);animation:fall-304 24s -21s linear infinite}@keyframes fall-304{72.088%{transform:translate(79.8275vw,72.088vh) scale(.8358)}to{transform:translate(81.6627vw,100vh) scale(.8358)}}.snow:nth-child(305){opacity:.149;transform:translate(58.9758vw,-10px) scale(.9183);animation:fall-305 25s -12s linear infinite}@keyframes fall-305{76.492%{transform:translate(50.6693vw,76.492vh) scale(.9183)}to{transform:translate(54.82255vw,100vh) scale(.9183)}}.snow:nth-child(306){opacity:1.0248;transform:translate(55.2806vw,-10px) scale(.1906);animation:fall-306 15s -1s linear infinite}@keyframes fall-306{41.391%{transform:translate(64.792vw,41.391vh) scale(.1906)}to{transform:translate(60.0363vw,100vh) scale(.1906)}}.snow:nth-child(307){opacity:1.4242;transform:translate(89.5611vw,-10px) scale(.0356);animation:fall-307 17s -5s linear infinite}@keyframes fall-307{49.132%{transform:translate(99.3508vw,49.132vh) scale(.0356)}to{transform:translate(94.45595vw,100vh) scale(.0356)}}.snow:nth-child(308){opacity:1.8654;transform:translate(22.7807vw,-10px) scale(.5496);animation:fall-308 19s -2s linear infinite}@keyframes fall-308{70.233%{transform:translate(29.908vw,70.233vh) scale(.5496)}to{transform:translate(26.34435vw,100vh) scale(.5496)}}.snow:nth-child(309){opacity:.1922;transform:translate(11.7928vw,-10px) scale(.4575);animation:fall-309 20s -6s linear infinite}@keyframes fall-309{48.195%{transform:translate(6.6631vw,48.195vh) scale(.4575)}to{transform:translate(9.22795vw,100vh) scale(.4575)}}.snow:nth-child(310){opacity:.9136;transform:translate(53.2713vw,-10px) scale(.8529);animation:fall-310 27s -10s linear infinite}@keyframes fall-310{43.988%{transform:translate(55.5734vw,43.988vh) scale(.8529)}to{transform:translate(54.42235vw,100vh) scale(.8529)}}.snow:nth-child(311){opacity:1.1156;transform:translate(18.888vw,-10px) scale(.2687);animation:fall-311 11s -19s linear infinite}@keyframes fall-311{76.932%{transform:translate(21.6034vw,76.932vh) scale(.2687)}to{transform:translate(20.2457vw,100vh) scale(.2687)}}.snow:nth-child(312){opacity:.652;transform:translate(95.9056vw,-10px) scale(.0871);animation:fall-312 16s -12s linear infinite}@keyframes fall-312{66.055%{transform:translate(104.9857vw,66.055vh) scale(.0871)}to{transform:translate(100.44565vw,100vh) scale(.0871)}}.snow:nth-child(313){opacity:1.2612;transform:translate(59.638vw,-10px) scale(.2235);animation:fall-313 15s -13s linear infinite}@keyframes fall-313{57.68%{transform:translate(69.6037vw,57.68vh) scale(.2235)}to{transform:translate(64.62085vw,100vh) scale(.2235)}}.snow:nth-child(314){opacity:1.8432;transform:translate(9.9371vw,-10px) scale(.5484);animation:fall-314 26s -8s linear infinite}@keyframes fall-314{38.276%{transform:translate(5.3011vw,38.276vh) scale(.5484)}to{transform:translate(7.6191vw,100vh) scale(.5484)}}.snow:nth-child(315){opacity:1.0296;transform:translate(70.5422vw,-10px) scale(.3522);animation:fall-315 16s -14s linear infinite}@keyframes fall-315{46.87%{transform:translate(62.1525vw,46.87vh) scale(.3522)}to{transform:translate(66.34735vw,100vh) scale(.3522)}}.snow:nth-child(316){opacity:1.3124;transform:translate(33.7553vw,-10px) scale(.7325);animation:fall-316 11s -11s linear infinite}@keyframes fall-316{41.902%{transform:translate(28.067vw,41.902vh) scale(.7325)}to{transform:translate(30.91115vw,100vh) scale(.7325)}}.snow:nth-child(317){opacity:.126;transform:translate(19.5621vw,-10px) scale(.8671);animation:fall-317 28s -20s linear infinite}@keyframes fall-317{59.014%{transform:translate(25.0921vw,59.014vh) scale(.8671)}to{transform:translate(22.3271vw,100vh) scale(.8671)}}.snow:nth-child(318){opacity:1.7008;transform:translate(33.0744vw,-10px) scale(.8729);animation:fall-318 24s -23s linear infinite}@keyframes fall-318{63.439%{transform:translate(26.8012vw,63.439vh) scale(.8729)}to{transform:translate(29.9378vw,100vh) scale(.8729)}}.snow:nth-child(319){opacity:1.8514;transform:translate(20.946vw,-10px) scale(.9566);animation:fall-319 28s -24s linear infinite}@keyframes fall-319{73.269%{transform:translate(19.8997vw,73.269vh) scale(.9566)}to{transform:translate(20.42285vw,100vh) scale(.9566)}}.snow:nth-child(320){opacity:1.6182;transform:translate(94.7513vw,-10px) scale(.3119);animation:fall-320 22s -24s linear infinite}@keyframes fall-320{70.437%{transform:translate(93.7478vw,70.437vh) scale(.3119)}to{transform:translate(94.24955vw,100vh) scale(.3119)}}.snow:nth-child(321){opacity:.0944;transform:translate(3.3741vw,-10px) scale(.435);animation:fall-321 21s -21s linear infinite}@keyframes fall-321{44.103%{transform:translate(12.2099vw,44.103vh) scale(.435)}to{transform:translate(7.792vw,100vh) scale(.435)}}.snow:nth-child(322){opacity:1.9028;transform:translate(24.1541vw,-10px) scale(.1114);animation:fall-322 13s -4s linear infinite}@keyframes fall-322{60.019%{transform:translate(26.8859vw,60.019vh) scale(.1114)}to{transform:translate(25.52vw,100vh) scale(.1114)}}.snow:nth-child(323){opacity:.785;transform:translate(62.5174vw,-10px) scale(.1619);animation:fall-323 22s -8s linear infinite}@keyframes fall-323{59.717%{transform:translate(64.7038vw,59.717vh) scale(.1619)}to{transform:translate(63.6106vw,100vh) scale(.1619)}}.snow:nth-child(324){opacity:.0628;transform:translate(50.1522vw,-10px) scale(.1842);animation:fall-324 24s -26s linear infinite}@keyframes fall-324{54.661%{transform:translate(51.1974vw,54.661vh) scale(.1842)}to{transform:translate(50.6748vw,100vh) scale(.1842)}}.snow:nth-child(325){opacity:1.4992;transform:translate(66.83vw,-10px) scale(.138);animation:fall-325 10s -29s linear infinite}@keyframes fall-325{75.043%{transform:translate(76.7025vw,75.043vh) scale(.138)}to{transform:translate(71.76625vw,100vh) scale(.138)}}.snow:nth-child(326){opacity:1.3324;transform:translate(23.1419vw,-10px) scale(.0401);animation:fall-326 22s -29s linear infinite}@keyframes fall-326{37.854%{transform:translate(19.6542vw,37.854vh) scale(.0401)}to{transform:translate(21.39805vw,100vh) scale(.0401)}}.snow:nth-child(327){opacity:.2756;transform:translate(78.5583vw,-10px) scale(.4985);animation:fall-327 22s -2s linear infinite}@keyframes fall-327{68.421%{transform:translate(81.2078vw,68.421vh) scale(.4985)}to{transform:translate(79.88305vw,100vh) scale(.4985)}}.snow:nth-child(328){opacity:.3518;transform:translate(18.1818vw,-10px) scale(.2815);animation:fall-328 28s -6s linear infinite}@keyframes fall-328{59.051%{transform:translate(8.2077vw,59.051vh) scale(.2815)}to{transform:translate(13.19475vw,100vh) scale(.2815)}}.snow:nth-child(329){opacity:1.1674;transform:translate(45.3098vw,-10px) scale(.2782);animation:fall-329 29s -3s linear infinite}@keyframes fall-329{35.853%{transform:translate(52.7856vw,35.853vh) scale(.2782)}to{transform:translate(49.0477vw,100vh) scale(.2782)}}.snow:nth-child(330){opacity:1.9852;transform:translate(54.0373vw,-10px) scale(.8922);animation:fall-330 12s -14s linear infinite}@keyframes fall-330{54.296%{transform:translate(57.1845vw,54.296vh) scale(.8922)}to{transform:translate(55.6109vw,100vh) scale(.8922)}}.snow:nth-child(331){opacity:1.7076;transform:translate(96.7931vw,-10px) scale(.3639);animation:fall-331 11s -5s linear infinite}@keyframes fall-331{42.462%{transform:translate(89.1194vw,42.462vh) scale(.3639)}to{transform:translate(92.95625vw,100vh) scale(.3639)}}.snow:nth-child(332){opacity:1.7076;transform:translate(18.8869vw,-10px) scale(.6525);animation:fall-332 20s -13s linear infinite}@keyframes fall-332{65.151%{transform:translate(18.1653vw,65.151vh) scale(.6525)}to{transform:translate(18.5261vw,100vh) scale(.6525)}}.snow:nth-child(333){opacity:.9194;transform:translate(79.7105vw,-10px) scale(.8788);animation:fall-333 12s -2s linear infinite}@keyframes fall-333{41.045%{transform:translate(81.3617vw,41.045vh) scale(.8788)}to{transform:translate(80.5361vw,100vh) scale(.8788)}}.snow:nth-child(334){opacity:.6604;transform:translate(24.1385vw,-10px) scale(.7585);animation:fall-334 16s -28s linear infinite}@keyframes fall-334{34.495%{transform:translate(28.4102vw,34.495vh) scale(.7585)}to{transform:translate(26.27435vw,100vh) scale(.7585)}}.snow:nth-child(335){opacity:.7442;transform:translate(74.9827vw,-10px) scale(.9762);animation:fall-335 13s -26s linear infinite}@keyframes fall-335{60.115%{transform:translate(74.7801vw,60.115vh) scale(.9762)}to{transform:translate(74.8814vw,100vh) scale(.9762)}}.snow:nth-child(336){opacity:.784;transform:translate(50.7827vw,-10px) scale(.0918);animation:fall-336 11s -14s linear infinite}@keyframes fall-336{41.211%{transform:translate(41.6802vw,41.211vh) scale(.0918)}to{transform:translate(46.23145vw,100vh) scale(.0918)}}.snow:nth-child(337){opacity:1.486;transform:translate(87.6667vw,-10px) scale(.604);animation:fall-337 26s -24s linear infinite}@keyframes fall-337{59.586%{transform:translate(80.6142vw,59.586vh) scale(.604)}to{transform:translate(84.14045vw,100vh) scale(.604)}}.snow:nth-child(338){opacity:.1272;transform:translate(55.4639vw,-10px) scale(.3853);animation:fall-338 28s -21s linear infinite}@keyframes fall-338{52.071%{transform:translate(46.2538vw,52.071vh) scale(.3853)}to{transform:translate(50.85885vw,100vh) scale(.3853)}}.snow:nth-child(339){opacity:1.6378;transform:translate(42.3366vw,-10px) scale(.5649);animation:fall-339 25s -25s linear infinite}@keyframes fall-339{63.514%{transform:translate(46.5072vw,63.514vh) scale(.5649)}to{transform:translate(44.4219vw,100vh) scale(.5649)}}.snow:nth-child(340){opacity:.5334;transform:translate(4.0388vw,-10px) scale(.8358);animation:fall-340 18s -15s linear infinite}@keyframes fall-340{74.098%{transform:translate(12.2638vw,74.098vh) scale(.8358)}to{transform:translate(8.1513vw,100vh) scale(.8358)}}.snow:nth-child(341){opacity:.7712;transform:translate(8.1705vw,-10px) scale(.3331);animation:fall-341 18s -14s linear infinite}@keyframes fall-341{57.294%{transform:translate(.8887vw,57.294vh) scale(.3331)}to{transform:translate(4.5296vw,100vh) scale(.3331)}}.snow:nth-child(342){opacity:1.4004;transform:translate(63.466vw,-10px) scale(.149);animation:fall-342 27s -6s linear infinite}@keyframes fall-342{61.913%{transform:translate(70.948vw,61.913vh) scale(.149)}to{transform:translate(67.207vw,100vh) scale(.149)}}.snow:nth-child(343){opacity:1.1864;transform:translate(42.2329vw,-10px) scale(.4145);animation:fall-343 16s -18s linear infinite}@keyframes fall-343{37.682%{transform:translate(36.7012vw,37.682vh) scale(.4145)}to{transform:translate(39.46705vw,100vh) scale(.4145)}}.snow:nth-child(344){opacity:.1686;transform:translate(6.4259vw,-10px) scale(.5807);animation:fall-344 21s -16s linear infinite}@keyframes fall-344{79.355%{transform:translate(.9052vw,79.355vh) scale(.5807)}to{transform:translate(3.66555vw,100vh) scale(.5807)}}.snow:nth-child(345){opacity:1.7072;transform:translate(37.2777vw,-10px) scale(.6435);animation:fall-345 10s -6s linear infinite}@keyframes fall-345{44.167%{transform:translate(36.9878vw,44.167vh) scale(.6435)}to{transform:translate(37.13275vw,100vh) scale(.6435)}}.snow:nth-child(346){opacity:1.9864;transform:translate(22.2357vw,-10px) scale(.8527);animation:fall-346 20s -4s linear infinite}@keyframes fall-346{59.76%{transform:translate(16.9003vw,59.76vh) scale(.8527)}to{transform:translate(19.568vw,100vh) scale(.8527)}}.snow:nth-child(347){opacity:1.7278;transform:translate(26.8579vw,-10px) scale(.4767);animation:fall-347 19s -22s linear infinite}@keyframes fall-347{40.216%{transform:translate(24.8294vw,40.216vh) scale(.4767)}to{transform:translate(25.84365vw,100vh) scale(.4767)}}.snow:nth-child(348){opacity:1.6072;transform:translate(60.8285vw,-10px) scale(.7935);animation:fall-348 14s -2s linear infinite}@keyframes fall-348{31.906%{transform:translate(66.7878vw,31.906vh) scale(.7935)}to{transform:translate(63.80815vw,100vh) scale(.7935)}}.snow:nth-child(349){opacity:.748;transform:translate(58.6794vw,-10px) scale(.2403);animation:fall-349 27s -9s linear infinite}@keyframes fall-349{36.482%{transform:translate(63.9264vw,36.482vh) scale(.2403)}to{transform:translate(61.3029vw,100vh) scale(.2403)}}.snow:nth-child(350){opacity:1.3614;transform:translate(92.8207vw,-10px) scale(.5151);animation:fall-350 30s -3s linear infinite}@keyframes fall-350{43.888%{transform:translate(91.9707vw,43.888vh) scale(.5151)}to{transform:translate(92.3957vw,100vh) scale(.5151)}}.snow:nth-child(351){opacity:.1982;transform:translate(31.7787vw,-10px) scale(.0601);animation:fall-351 10s -19s linear infinite}@keyframes fall-351{59.146%{transform:translate(28.3793vw,59.146vh) scale(.0601)}to{transform:translate(30.079vw,100vh) scale(.0601)}}.snow:nth-child(352){opacity:.9306;transform:translate(30.587vw,-10px) scale(.0581);animation:fall-352 28s -2s linear infinite}@keyframes fall-352{30.748%{transform:translate(25.4741vw,30.748vh) scale(.0581)}to{transform:translate(28.03055vw,100vh) scale(.0581)}}.snow:nth-child(353){opacity:1.2972;transform:translate(34.2705vw,-10px) scale(.299);animation:fall-353 21s -13s linear infinite}@keyframes fall-353{58.109%{transform:translate(42.634vw,58.109vh) scale(.299)}to{transform:translate(38.45225vw,100vh) scale(.299)}}.snow:nth-child(354){opacity:.036;transform:translate(70.3892vw,-10px) scale(.5419);animation:fall-354 22s -27s linear infinite}@keyframes fall-354{57.059%{transform:translate(75.9238vw,57.059vh) scale(.5419)}to{transform:translate(73.1565vw,100vh) scale(.5419)}}.snow:nth-child(355){opacity:.65;transform:translate(26.8336vw,-10px) scale(.9427);animation:fall-355 16s -1s linear infinite}@keyframes fall-355{65.013%{transform:translate(26.4634vw,65.013vh) scale(.9427)}to{transform:translate(26.6485vw,100vh) scale(.9427)}}.snow:nth-child(356){opacity:1.6778;transform:translate(64.3927vw,-10px) scale(.9827);animation:fall-356 18s -28s linear infinite}@keyframes fall-356{69.661%{transform:translate(72.5858vw,69.661vh) scale(.9827)}to{transform:translate(68.48925vw,100vh) scale(.9827)}}.snow:nth-child(357){opacity:.26;transform:translate(80.9059vw,-10px) scale(.3983);animation:fall-357 20s -20s linear infinite}@keyframes fall-357{44.119%{transform:translate(78.6765vw,44.119vh) scale(.3983)}to{transform:translate(79.7912vw,100vh) scale(.3983)}}.snow:nth-child(358){opacity:1.3452;transform:translate(35.8226vw,-10px) scale(.5319);animation:fall-358 13s -24s linear infinite}@keyframes fall-358{50.564%{transform:translate(31.7522vw,50.564vh) scale(.5319)}to{transform:translate(33.7874vw,100vh) scale(.5319)}}.snow:nth-child(359){opacity:.6508;transform:translate(99.5896vw,-10px) scale(.514);animation:fall-359 29s -14s linear infinite}@keyframes fall-359{45.462%{transform:translate(93.9799vw,45.462vh) scale(.514)}to{transform:translate(96.78475vw,100vh) scale(.514)}}.snow:nth-child(360){opacity:1.5518;transform:translate(93.0201vw,-10px) scale(.7302);animation:fall-360 29s -28s linear infinite}@keyframes fall-360{66.376%{transform:translate(90.8789vw,66.376vh) scale(.7302)}to{transform:translate(91.9495vw,100vh) scale(.7302)}}.snow:nth-child(361){opacity:.7184;transform:translate(43.9959vw,-10px) scale(.609);animation:fall-361 20s -28s linear infinite}@keyframes fall-361{60.955%{transform:translate(40.2732vw,60.955vh) scale(.609)}to{transform:translate(42.13455vw,100vh) scale(.609)}}.snow:nth-child(362){opacity:1.312;transform:translate(2.3125vw,-10px) scale(.1314);animation:fall-362 16s -30s linear infinite}@keyframes fall-362{67.136%{transform:translate(8.0142vw,67.136vh) scale(.1314)}to{transform:translate(5.16335vw,100vh) scale(.1314)}}.snow:nth-child(363){opacity:.793;transform:translate(68.3711vw,-10px) scale(.1628);animation:fall-363 10s -22s linear infinite}@keyframes fall-363{43.405%{transform:translate(65.3529vw,43.405vh) scale(.1628)}to{transform:translate(66.862vw,100vh) scale(.1628)}}.snow:nth-child(364){opacity:.3742;transform:translate(53.8018vw,-10px) scale(.433);animation:fall-364 16s -13s linear infinite}@keyframes fall-364{33.165%{transform:translate(54.5987vw,33.165vh) scale(.433)}to{transform:translate(54.20025vw,100vh) scale(.433)}}.snow:nth-child(365){opacity:.2372;transform:translate(22.5743vw,-10px) scale(.9662);animation:fall-365 21s -18s linear infinite}@keyframes fall-365{54.204%{transform:translate(28.6778vw,54.204vh) scale(.9662)}to{transform:translate(25.62605vw,100vh) scale(.9662)}}.snow:nth-child(366){opacity:1.7982;transform:translate(92.861vw,-10px) scale(.4456);animation:fall-366 29s -22s linear infinite}@keyframes fall-366{66.15%{transform:translate(102.745vw,66.15vh) scale(.4456)}to{transform:translate(97.803vw,100vh) scale(.4456)}}.snow:nth-child(367){opacity:.7986;transform:translate(46.2447vw,-10px) scale(.6724);animation:fall-367 30s -8s linear infinite}@keyframes fall-367{53.591%{transform:translate(55.7836vw,53.591vh) scale(.6724)}to{transform:translate(51.01415vw,100vh) scale(.6724)}}.snow:nth-child(368){opacity:1.1308;transform:translate(23.5517vw,-10px) scale(.7351);animation:fall-368 16s -9s linear infinite}@keyframes fall-368{58.215%{transform:translate(26.0892vw,58.215vh) scale(.7351)}to{transform:translate(24.82045vw,100vh) scale(.7351)}}.snow:nth-child(369){opacity:.7624;transform:translate(72.3052vw,-10px) scale(.28);animation:fall-369 15s -29s linear infinite}@keyframes fall-369{73.478%{transform:translate(66.6033vw,73.478vh) scale(.28)}to{transform:translate(69.45425vw,100vh) scale(.28)}}.snow:nth-child(370){opacity:.974;transform:translate(49.6083vw,-10px) scale(.9343);animation:fall-370 14s -5s linear infinite}@keyframes fall-370{58.62%{transform:translate(50.2541vw,58.62vh) scale(.9343)}to{transform:translate(49.9312vw,100vh) scale(.9343)}}.snow:nth-child(371){opacity:.4518;transform:translate(52.2937vw,-10px) scale(.4776);animation:fall-371 10s -14s linear infinite}@keyframes fall-371{72.3%{transform:translate(49.696vw,72.3vh) scale(.4776)}to{transform:translate(50.99485vw,100vh) scale(.4776)}}.snow:nth-child(372){opacity:1.9744;transform:translate(35.3715vw,-10px) scale(.3248);animation:fall-372 10s -29s linear infinite}@keyframes fall-372{54.711%{transform:translate(35.2469vw,54.711vh) scale(.3248)}to{transform:translate(35.3092vw,100vh) scale(.3248)}}.snow:nth-child(373){opacity:1.6616;transform:translate(14.7256vw,-10px) scale(.6239);animation:fall-373 10s -19s linear infinite}@keyframes fall-373{65.328%{transform:translate(10.9965vw,65.328vh) scale(.6239)}to{transform:translate(12.86105vw,100vh) scale(.6239)}}.snow:nth-child(374){opacity:1.008;transform:translate(83.596vw,-10px) scale(.7205);animation:fall-374 15s -15s linear infinite}@keyframes fall-374{38.395%{transform:translate(78.9201vw,38.395vh) scale(.7205)}to{transform:translate(81.25805vw,100vh) scale(.7205)}}.snow:nth-child(375){opacity:1.0316;transform:translate(61.62vw,-10px) scale(.9837);animation:fall-375 21s -15s linear infinite}@keyframes fall-375{56.49%{transform:translate(65.5729vw,56.49vh) scale(.9837)}to{transform:translate(63.59645vw,100vh) scale(.9837)}}.snow:nth-child(376){opacity:.2846;transform:translate(65.2777vw,-10px) scale(.3198);animation:fall-376 28s -30s linear infinite}@keyframes fall-376{60.58%{transform:translate(61.8667vw,60.58vh) scale(.3198)}to{transform:translate(63.5722vw,100vh) scale(.3198)}}.snow:nth-child(377){opacity:.6932;transform:translate(2.5706vw,-10px) scale(.7589);animation:fall-377 13s -25s linear infinite}@keyframes fall-377{63.717%{transform:translate(-4.985vw,63.717vh) scale(.7589)}to{transform:translate(-1.2072vw,100vh) scale(.7589)}}.snow:nth-child(378){opacity:1.8096;transform:translate(90.4605vw,-10px) scale(.1004);animation:fall-378 14s -6s linear infinite}@keyframes fall-378{72.319%{transform:translate(89.3435vw,72.319vh) scale(.1004)}to{transform:translate(89.902vw,100vh) scale(.1004)}}.snow:nth-child(379){opacity:.268;transform:translate(57.4201vw,-10px) scale(.9279);animation:fall-379 20s -5s linear infinite}@keyframes fall-379{63.609%{transform:translate(65.107vw,63.609vh) scale(.9279)}to{transform:translate(61.26355vw,100vh) scale(.9279)}}.snow:nth-child(380){opacity:.6724;transform:translate(16.8195vw,-10px) scale(.0328);animation:fall-380 24s -23s linear infinite}@keyframes fall-380{53.612%{transform:translate(16.0856vw,53.612vh) scale(.0328)}to{transform:translate(16.45255vw,100vh) scale(.0328)}}.snow:nth-child(381){opacity:1.2142;transform:translate(13.1193vw,-10px) scale(.1211);animation:fall-381 16s -17s linear infinite}@keyframes fall-381{45.28%{transform:translate(4.2503vw,45.28vh) scale(.1211)}to{transform:translate(8.6848vw,100vh) scale(.1211)}}.snow:nth-child(382){opacity:.9094;transform:translate(13.4552vw,-10px) scale(.2234);animation:fall-382 20s -7s linear infinite}@keyframes fall-382{30.274%{transform:translate(7.9258vw,30.274vh) scale(.2234)}to{transform:translate(10.6905vw,100vh) scale(.2234)}}.snow:nth-child(383){opacity:.6118;transform:translate(90.1198vw,-10px) scale(.1171);animation:fall-383 13s -20s linear infinite}@keyframes fall-383{77.633%{transform:translate(99.9658vw,77.633vh) scale(.1171)}to{transform:translate(95.0428vw,100vh) scale(.1171)}}.snow:nth-child(384){opacity:.2606;transform:translate(87.7277vw,-10px) scale(.9238);animation:fall-384 10s -30s linear infinite}@keyframes fall-384{53.111%{transform:translate(92.0211vw,53.111vh) scale(.9238)}to{transform:translate(89.8744vw,100vh) scale(.9238)}}.snow:nth-child(385){opacity:1.3368;transform:translate(17.3056vw,-10px) scale(.0169);animation:fall-385 15s -11s linear infinite}@keyframes fall-385{77.582%{transform:translate(13.3935vw,77.582vh) scale(.0169)}to{transform:translate(15.34955vw,100vh) scale(.0169)}}.snow:nth-child(386){opacity:.6706;transform:translate(58.0394vw,-10px) scale(.3295);animation:fall-386 15s -19s linear infinite}@keyframes fall-386{59.758%{transform:translate(51.8559vw,59.758vh) scale(.3295)}to{transform:translate(54.94765vw,100vh) scale(.3295)}}.snow:nth-child(387){opacity:.6936;transform:translate(18.9998vw,-10px) scale(.929);animation:fall-387 24s -16s linear infinite}@keyframes fall-387{34.814%{transform:translate(25.0557vw,34.814vh) scale(.929)}to{transform:translate(22.02775vw,100vh) scale(.929)}}.snow:nth-child(388){opacity:.7566;transform:translate(92.7162vw,-10px) scale(.9096);animation:fall-388 11s -18s linear infinite}@keyframes fall-388{59.016%{transform:translate(98.0742vw,59.016vh) scale(.9096)}to{transform:translate(95.3952vw,100vh) scale(.9096)}}.snow:nth-child(389){opacity:1.1964;transform:translate(73.0159vw,-10px) scale(.3804);animation:fall-389 14s -10s linear infinite}@keyframes fall-389{30.952%{transform:translate(76.2091vw,30.952vh) scale(.3804)}to{transform:translate(74.6125vw,100vh) scale(.3804)}}.snow:nth-child(390){opacity:.872;transform:translate(90.9023vw,-10px) scale(.953);animation:fall-390 30s -15s linear infinite}@keyframes fall-390{69.622%{transform:translate(97.9236vw,69.622vh) scale(.953)}to{transform:translate(94.41295vw,100vh) scale(.953)}}.snow:nth-child(391){opacity:.7116;transform:translate(61.9498vw,-10px) scale(.8419);animation:fall-391 22s -4s linear infinite}@keyframes fall-391{79.712%{transform:translate(59.0052vw,79.712vh) scale(.8419)}to{transform:translate(60.4775vw,100vh) scale(.8419)}}.snow:nth-child(392){opacity:1.343;transform:translate(78.8786vw,-10px) scale(.4811);animation:fall-392 24s -2s linear infinite}@keyframes fall-392{35.136%{transform:translate(77.4822vw,35.136vh) scale(.4811)}to{transform:translate(78.1804vw,100vh) scale(.4811)}}.snow:nth-child(393){opacity:.1812;transform:translate(56.5238vw,-10px) scale(.2768);animation:fall-393 17s -13s linear infinite}@keyframes fall-393{32.527%{transform:translate(49.0019vw,32.527vh) scale(.2768)}to{transform:translate(52.76285vw,100vh) scale(.2768)}}.snow:nth-child(394){opacity:.9094;transform:translate(67.8504vw,-10px) scale(.2189);animation:fall-394 27s -19s linear infinite}@keyframes fall-394{61.41%{transform:translate(58.2266vw,61.41vh) scale(.2189)}to{transform:translate(63.0385vw,100vh) scale(.2189)}}.snow:nth-child(395){opacity:1.2402;transform:translate(2.5941vw,-10px) scale(.3893);animation:fall-395 28s -13s linear infinite}@keyframes fall-395{62.05%{transform:translate(-1.4912vw,62.05vh) scale(.3893)}to{transform:translate(.55145vw,100vh) scale(.3893)}}.snow:nth-child(396){opacity:1.2224;transform:translate(48.2724vw,-10px) scale(.9651);animation:fall-396 30s -14s linear infinite}@keyframes fall-396{76.168%{transform:translate(41.1241vw,76.168vh) scale(.9651)}to{transform:translate(44.69825vw,100vh) scale(.9651)}}.snow:nth-child(397){opacity:.2018;transform:translate(83.8407vw,-10px) scale(.7016);animation:fall-397 29s -23s linear infinite}@keyframes fall-397{62.439%{transform:translate(81.0539vw,62.439vh) scale(.7016)}to{transform:translate(82.4473vw,100vh) scale(.7016)}}.snow:nth-child(398){opacity:1.1942;transform:translate(57.8604vw,-10px) scale(.741);animation:fall-398 25s -29s linear infinite}@keyframes fall-398{32.991%{transform:translate(61.2902vw,32.991vh) scale(.741)}to{transform:translate(59.5753vw,100vh) scale(.741)}}.snow:nth-child(399){opacity:.0986;transform:translate(12.3287vw,-10px) scale(.4509);animation:fall-399 27s -17s linear infinite}@keyframes fall-399{55.699%{transform:translate(13.8295vw,55.699vh) scale(.4509)}to{transform:translate(13.0791vw,100vh) scale(.4509)}}.snow:nth-child(400){opacity:.541;transform:translate(33.4817vw,-10px) scale(.0846);animation:fall-400 16s -7s linear infinite}@keyframes fall-400{79.497%{transform:translate(34.0522vw,79.497vh) scale(.0846)}to{transform:translate(33.76695vw,100vh) scale(.0846)}}\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 });
21
+ 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.46;transform:translate(7.4384vw,-10px) scale(.8742);animation:fall-1 16s -16s linear infinite}@keyframes fall-1{51.954%{transform:translate(1.6927vw,51.954vh) scale(.8742)}to{transform:translate(4.56555vw,100vh) scale(.8742)}}.snow:nth-child(2){opacity:.574;transform:translate(9.0515vw,-10px) scale(.8679);animation:fall-2 29s -17s linear infinite}@keyframes fall-2{37.952%{transform:translate(11.2258vw,37.952vh) scale(.8679)}to{transform:translate(10.13865vw,100vh) scale(.8679)}}.snow:nth-child(3){opacity:1.4944;transform:translate(14.2686vw,-10px) scale(.6372);animation:fall-3 13s -11s linear infinite}@keyframes fall-3{43.564%{transform:translate(17.5604vw,43.564vh) scale(.6372)}to{transform:translate(15.9145vw,100vh) scale(.6372)}}.snow:nth-child(4){opacity:.041;transform:translate(54.4003vw,-10px) scale(.0704);animation:fall-4 25s -19s linear infinite}@keyframes fall-4{46.904%{transform:translate(59.0694vw,46.904vh) scale(.0704)}to{transform:translate(56.73485vw,100vh) scale(.0704)}}.snow:nth-child(5){opacity:.6714;transform:translate(99.7275vw,-10px) scale(.2422);animation:fall-5 15s -2s linear infinite}@keyframes fall-5{52.986%{transform:translate(92.6252vw,52.986vh) scale(.2422)}to{transform:translate(96.17635vw,100vh) scale(.2422)}}.snow:nth-child(6){opacity:.7632;transform:translate(2.0447vw,-10px) scale(.3993);animation:fall-6 27s -24s linear infinite}@keyframes fall-6{53.944%{transform:translate(-2.3871vw,53.944vh) scale(.3993)}to{transform:translate(-.1712vw,100vh) scale(.3993)}}.snow:nth-child(7){opacity:1.9048;transform:translate(70.5928vw,-10px) scale(.2827);animation:fall-7 22s -21s linear infinite}@keyframes fall-7{64.669%{transform:translate(75.9426vw,64.669vh) scale(.2827)}to{transform:translate(73.2677vw,100vh) scale(.2827)}}.snow:nth-child(8){opacity:.6054;transform:translate(48.9087vw,-10px) scale(.1178);animation:fall-8 18s -21s linear infinite}@keyframes fall-8{71.599%{transform:translate(46.2483vw,71.599vh) scale(.1178)}to{transform:translate(47.5785vw,100vh) scale(.1178)}}.snow:nth-child(9){opacity:.7638;transform:translate(29.7981vw,-10px) scale(.5809);animation:fall-9 11s -23s linear infinite}@keyframes fall-9{66.594%{transform:translate(24.9774vw,66.594vh) scale(.5809)}to{transform:translate(27.38775vw,100vh) scale(.5809)}}.snow:nth-child(10){opacity:1.3126;transform:translate(47.4489vw,-10px) scale(.7707);animation:fall-10 27s -13s linear infinite}@keyframes fall-10{61.82%{transform:translate(53.6887vw,61.82vh) scale(.7707)}to{transform:translate(50.5688vw,100vh) scale(.7707)}}.snow:nth-child(11){opacity:1.3418;transform:translate(31.4859vw,-10px) scale(.0326);animation:fall-11 19s -5s linear infinite}@keyframes fall-11{45.292%{transform:translate(39.2888vw,45.292vh) scale(.0326)}to{transform:translate(35.38735vw,100vh) scale(.0326)}}.snow:nth-child(12){opacity:.5854;transform:translate(25.468vw,-10px) scale(.5075);animation:fall-12 18s -4s linear infinite}@keyframes fall-12{65.739%{transform:translate(19.7391vw,65.739vh) scale(.5075)}to{transform:translate(22.60355vw,100vh) scale(.5075)}}.snow:nth-child(13){opacity:1.327;transform:translate(22.5988vw,-10px) scale(.8205);animation:fall-13 13s -26s linear infinite}@keyframes fall-13{52.43%{transform:translate(27.7106vw,52.43vh) scale(.8205)}to{transform:translate(25.1547vw,100vh) scale(.8205)}}.snow:nth-child(14){opacity:.8494;transform:translate(9.5291vw,-10px) scale(.5618);animation:fall-14 15s -10s linear infinite}@keyframes fall-14{43.07%{transform:translate(2.6374vw,43.07vh) scale(.5618)}to{transform:translate(6.08325vw,100vh) scale(.5618)}}.snow:nth-child(15){opacity:.4954;transform:translate(7.7476vw,-10px) scale(.9812);animation:fall-15 13s -13s linear infinite}@keyframes fall-15{65.348%{transform:translate(8.2368vw,65.348vh) scale(.9812)}to{transform:translate(7.9922vw,100vh) scale(.9812)}}.snow:nth-child(16){opacity:.9616;transform:translate(92.0458vw,-10px) scale(.1099);animation:fall-16 23s -26s linear infinite}@keyframes fall-16{72.983%{transform:translate(82.0951vw,72.983vh) scale(.1099)}to{transform:translate(87.07045vw,100vh) scale(.1099)}}.snow:nth-child(17){opacity:.5338;transform:translate(7.7057vw,-10px) scale(.0035);animation:fall-17 17s -19s linear infinite}@keyframes fall-17{61.273%{transform:translate(15.6806vw,61.273vh) scale(.0035)}to{transform:translate(11.69315vw,100vh) scale(.0035)}}.snow:nth-child(18){opacity:.1744;transform:translate(45.8099vw,-10px) scale(.2498);animation:fall-18 20s -9s linear infinite}@keyframes fall-18{30.409%{transform:translate(39.3801vw,30.409vh) scale(.2498)}to{transform:translate(42.595vw,100vh) scale(.2498)}}.snow:nth-child(19){opacity:.3576;transform:translate(57.3069vw,-10px) scale(.7596);animation:fall-19 13s -28s linear infinite}@keyframes fall-19{59.277%{transform:translate(65.5638vw,59.277vh) scale(.7596)}to{transform:translate(61.43535vw,100vh) scale(.7596)}}.snow:nth-child(20){opacity:.07;transform:translate(20.7833vw,-10px) scale(.0228);animation:fall-20 29s -19s linear infinite}@keyframes fall-20{47.705%{transform:translate(24.5844vw,47.705vh) scale(.0228)}to{transform:translate(22.68385vw,100vh) scale(.0228)}}.snow:nth-child(21){opacity:1.2648;transform:translate(93.9904vw,-10px) scale(.137);animation:fall-21 13s -27s linear infinite}@keyframes fall-21{55.923%{transform:translate(103.9377vw,55.923vh) scale(.137)}to{transform:translate(98.96405vw,100vh) scale(.137)}}.snow:nth-child(22){opacity:1.0814;transform:translate(41.7674vw,-10px) scale(.1478);animation:fall-22 17s -23s linear infinite}@keyframes fall-22{36.5%{transform:translate(41.2093vw,36.5vh) scale(.1478)}to{transform:translate(41.48835vw,100vh) scale(.1478)}}.snow:nth-child(23){opacity:.6024;transform:translate(66.3387vw,-10px) scale(.3734);animation:fall-23 26s -30s linear infinite}@keyframes fall-23{63.835%{transform:translate(72.1516vw,63.835vh) scale(.3734)}to{transform:translate(69.24515vw,100vh) scale(.3734)}}.snow:nth-child(24){opacity:.1484;transform:translate(53.7804vw,-10px) scale(.5942);animation:fall-24 15s -23s linear infinite}@keyframes fall-24{41.334%{transform:translate(61.1379vw,41.334vh) scale(.5942)}to{transform:translate(57.45915vw,100vh) scale(.5942)}}.snow:nth-child(25){opacity:.7568;transform:translate(94.4534vw,-10px) scale(.8632);animation:fall-25 30s -30s linear infinite}@keyframes fall-25{39.191%{transform:translate(101.4212vw,39.191vh) scale(.8632)}to{transform:translate(97.9373vw,100vh) scale(.8632)}}.snow:nth-child(26){opacity:1.2972;transform:translate(84.2803vw,-10px) scale(.7274);animation:fall-26 19s -20s linear infinite}@keyframes fall-26{58.347%{transform:translate(86.7263vw,58.347vh) scale(.7274)}to{transform:translate(85.5033vw,100vh) scale(.7274)}}.snow:nth-child(27){opacity:1.0262;transform:translate(83.6765vw,-10px) scale(.6378);animation:fall-27 20s -6s linear infinite}@keyframes fall-27{56.716%{transform:translate(93.5334vw,56.716vh) scale(.6378)}to{transform:translate(88.60495vw,100vh) scale(.6378)}}.snow:nth-child(28){opacity:.1376;transform:translate(37.8914vw,-10px) scale(.2167);animation:fall-28 19s -19s linear infinite}@keyframes fall-28{79.609%{transform:translate(37.5977vw,79.609vh) scale(.2167)}to{transform:translate(37.74455vw,100vh) scale(.2167)}}.snow:nth-child(29){opacity:1.2356;transform:translate(89.912vw,-10px) scale(.1266);animation:fall-29 15s -12s linear infinite}@keyframes fall-29{53.589%{transform:translate(91.6936vw,53.589vh) scale(.1266)}to{transform:translate(90.8028vw,100vh) scale(.1266)}}.snow:nth-child(30){opacity:.4794;transform:translate(37.1631vw,-10px) scale(.6715);animation:fall-30 30s -3s linear infinite}@keyframes fall-30{74.002%{transform:translate(30.9875vw,74.002vh) scale(.6715)}to{transform:translate(34.0753vw,100vh) scale(.6715)}}.snow:nth-child(31){opacity:.4572;transform:translate(65.8487vw,-10px) scale(.0665);animation:fall-31 17s -16s linear infinite}@keyframes fall-31{71.753%{transform:translate(64.1945vw,71.753vh) scale(.0665)}to{transform:translate(65.0216vw,100vh) scale(.0665)}}.snow:nth-child(32){opacity:1.5824;transform:translate(83.0241vw,-10px) scale(.292);animation:fall-32 21s -16s linear infinite}@keyframes fall-32{55.524%{transform:translate(75.2073vw,55.524vh) scale(.292)}to{transform:translate(79.1157vw,100vh) scale(.292)}}.snow:nth-child(33){opacity:.798;transform:translate(71.7478vw,-10px) scale(.6156);animation:fall-33 30s -14s linear infinite}@keyframes fall-33{78.696%{transform:translate(80.7004vw,78.696vh) scale(.6156)}to{transform:translate(76.2241vw,100vh) scale(.6156)}}.snow:nth-child(34){opacity:1.3782;transform:translate(88.3368vw,-10px) scale(.3221);animation:fall-34 16s -22s linear infinite}@keyframes fall-34{66.323%{transform:translate(79.6825vw,66.323vh) scale(.3221)}to{transform:translate(84.00965vw,100vh) scale(.3221)}}.snow:nth-child(35){opacity:.0756;transform:translate(27.6731vw,-10px) scale(.904);animation:fall-35 24s -22s linear infinite}@keyframes fall-35{47.01%{transform:translate(36.0911vw,47.01vh) scale(.904)}to{transform:translate(31.8821vw,100vh) scale(.904)}}.snow:nth-child(36){opacity:.0564;transform:translate(8.6567vw,-10px) scale(.5847);animation:fall-36 21s -27s linear infinite}@keyframes fall-36{70.913%{transform:translate(11.2554vw,70.913vh) scale(.5847)}to{transform:translate(9.95605vw,100vh) scale(.5847)}}.snow:nth-child(37){opacity:.1648;transform:translate(35.5721vw,-10px) scale(.2801);animation:fall-37 26s -25s linear infinite}@keyframes fall-37{37.833%{transform:translate(45.4184vw,37.833vh) scale(.2801)}to{transform:translate(40.49525vw,100vh) scale(.2801)}}.snow:nth-child(38){opacity:1.9934;transform:translate(63.0431vw,-10px) scale(.6937);animation:fall-38 21s -29s linear infinite}@keyframes fall-38{53.089%{transform:translate(62.1807vw,53.089vh) scale(.6937)}to{transform:translate(62.6119vw,100vh) scale(.6937)}}.snow:nth-child(39){opacity:1.489;transform:translate(96.9822vw,-10px) scale(.2796);animation:fall-39 28s -19s linear infinite}@keyframes fall-39{79.782%{transform:translate(88.2832vw,79.782vh) scale(.2796)}to{transform:translate(92.6327vw,100vh) scale(.2796)}}.snow:nth-child(40){opacity:.9002;transform:translate(56.18vw,-10px) scale(.972);animation:fall-40 24s -20s linear infinite}@keyframes fall-40{63.669%{transform:translate(61.4972vw,63.669vh) scale(.972)}to{transform:translate(58.8386vw,100vh) scale(.972)}}.snow:nth-child(41){opacity:1.9476;transform:translate(54.8574vw,-10px) scale(.6655);animation:fall-41 25s -30s linear infinite}@keyframes fall-41{58.102%{transform:translate(49.9666vw,58.102vh) scale(.6655)}to{transform:translate(52.412vw,100vh) scale(.6655)}}.snow:nth-child(42){opacity:.4692;transform:translate(5.1127vw,-10px) scale(.0956);animation:fall-42 26s -10s linear infinite}@keyframes fall-42{52.752%{transform:translate(.922vw,52.752vh) scale(.0956)}to{transform:translate(3.01735vw,100vh) scale(.0956)}}.snow:nth-child(43){opacity:.5312;transform:translate(32.5954vw,-10px) scale(.3914);animation:fall-43 19s -9s linear infinite}@keyframes fall-43{53.324%{transform:translate(28.8208vw,53.324vh) scale(.3914)}to{transform:translate(30.7081vw,100vh) scale(.3914)}}.snow:nth-child(44){opacity:1.2448;transform:translate(52.1239vw,-10px) scale(.8264);animation:fall-44 13s -3s linear infinite}@keyframes fall-44{40.223%{transform:translate(54.5806vw,40.223vh) scale(.8264)}to{transform:translate(53.35225vw,100vh) scale(.8264)}}.snow:nth-child(45){opacity:.0262;transform:translate(99.4707vw,-10px) scale(.7729);animation:fall-45 22s -22s linear infinite}@keyframes fall-45{75.208%{transform:translate(97.0864vw,75.208vh) scale(.7729)}to{transform:translate(98.27855vw,100vh) scale(.7729)}}.snow:nth-child(46){opacity:.3408;transform:translate(60.7543vw,-10px) scale(.9631);animation:fall-46 20s -23s linear infinite}@keyframes fall-46{45.059%{transform:translate(70.2493vw,45.059vh) scale(.9631)}to{transform:translate(65.5018vw,100vh) scale(.9631)}}.snow:nth-child(47){opacity:1.2136;transform:translate(27.4213vw,-10px) scale(.2945);animation:fall-47 21s -3s linear infinite}@keyframes fall-47{63.74%{transform:translate(35.0538vw,63.74vh) scale(.2945)}to{transform:translate(31.23755vw,100vh) scale(.2945)}}.snow:nth-child(48){opacity:.622;transform:translate(39.3026vw,-10px) scale(.4204);animation:fall-48 18s -18s linear infinite}@keyframes fall-48{50.341%{transform:translate(35.9075vw,50.341vh) scale(.4204)}to{transform:translate(37.60505vw,100vh) scale(.4204)}}.snow:nth-child(49){opacity:1.8672;transform:translate(76.2877vw,-10px) scale(.5962);animation:fall-49 23s -15s linear infinite}@keyframes fall-49{54.795%{transform:translate(81.1282vw,54.795vh) scale(.5962)}to{transform:translate(78.70795vw,100vh) scale(.5962)}}.snow:nth-child(50){opacity:.2306;transform:translate(41.8638vw,-10px) scale(.0009);animation:fall-50 10s -13s linear infinite}@keyframes fall-50{52.848%{transform:translate(33.6413vw,52.848vh) scale(.0009)}to{transform:translate(37.75255vw,100vh) scale(.0009)}}.snow:nth-child(51){opacity:1.062;transform:translate(13.8184vw,-10px) scale(.6645);animation:fall-51 25s -18s linear infinite}@keyframes fall-51{47.542%{transform:translate(9.9738vw,47.542vh) scale(.6645)}to{transform:translate(11.8961vw,100vh) scale(.6645)}}.snow:nth-child(52){opacity:.46;transform:translate(65.4448vw,-10px) scale(.659);animation:fall-52 12s -14s linear infinite}@keyframes fall-52{58.88%{transform:translate(70.825vw,58.88vh) scale(.659)}to{transform:translate(68.1349vw,100vh) scale(.659)}}.snow:nth-child(53){opacity:.022;transform:translate(36.2022vw,-10px) scale(.0774);animation:fall-53 19s -10s linear infinite}@keyframes fall-53{78.105%{transform:translate(41.3937vw,78.105vh) scale(.0774)}to{transform:translate(38.79795vw,100vh) scale(.0774)}}.snow:nth-child(54){opacity:1.8848;transform:translate(8.7062vw,-10px) scale(.2577);animation:fall-54 23s -19s linear infinite}@keyframes fall-54{61.844%{transform:translate(1.5952vw,61.844vh) scale(.2577)}to{transform:translate(5.1507vw,100vh) scale(.2577)}}.snow:nth-child(55){opacity:1.6092;transform:translate(38.2212vw,-10px) scale(.9859);animation:fall-55 16s -1s linear infinite}@keyframes fall-55{75.276%{transform:translate(30.5897vw,75.276vh) scale(.9859)}to{transform:translate(34.40545vw,100vh) scale(.9859)}}.snow:nth-child(56){opacity:1.702;transform:translate(97.001vw,-10px) scale(.5277);animation:fall-56 24s -15s linear infinite}@keyframes fall-56{40.464%{transform:translate(103.4213vw,40.464vh) scale(.5277)}to{transform:translate(100.21115vw,100vh) scale(.5277)}}.snow:nth-child(57){opacity:.8572;transform:translate(99.0657vw,-10px) scale(.5833);animation:fall-57 15s -1s linear infinite}@keyframes fall-57{32.406%{transform:translate(101.7319vw,32.406vh) scale(.5833)}to{transform:translate(100.3988vw,100vh) scale(.5833)}}.snow:nth-child(58){opacity:.3834;transform:translate(42.4789vw,-10px) scale(.9482);animation:fall-58 30s -20s linear infinite}@keyframes fall-58{54.417%{transform:translate(44.5762vw,54.417vh) scale(.9482)}to{transform:translate(43.52755vw,100vh) scale(.9482)}}.snow:nth-child(59){opacity:1.7912;transform:translate(35.0402vw,-10px) scale(.4577);animation:fall-59 22s -14s linear infinite}@keyframes fall-59{52.505%{transform:translate(32.9821vw,52.505vh) scale(.4577)}to{transform:translate(34.01115vw,100vh) scale(.4577)}}.snow:nth-child(60){opacity:.627;transform:translate(98.0425vw,-10px) scale(.3356);animation:fall-60 19s -27s linear infinite}@keyframes fall-60{46.056%{transform:translate(102.9658vw,46.056vh) scale(.3356)}to{transform:translate(100.50415vw,100vh) scale(.3356)}}.snow:nth-child(61){opacity:.5316;transform:translate(81.485vw,-10px) scale(.1652);animation:fall-61 19s -15s linear infinite}@keyframes fall-61{74.076%{transform:translate(83.7176vw,74.076vh) scale(.1652)}to{transform:translate(82.6013vw,100vh) scale(.1652)}}.snow:nth-child(62){opacity:.4024;transform:translate(61.7676vw,-10px) scale(.3655);animation:fall-62 10s -12s linear infinite}@keyframes fall-62{30.398%{transform:translate(69.9912vw,30.398vh) scale(.3655)}to{transform:translate(65.8794vw,100vh) scale(.3655)}}.snow:nth-child(63){opacity:.7018;transform:translate(89.4981vw,-10px) scale(.8279);animation:fall-63 20s -3s linear infinite}@keyframes fall-63{63.259%{transform:translate(93.1217vw,63.259vh) scale(.8279)}to{transform:translate(91.3099vw,100vh) scale(.8279)}}.snow:nth-child(64){opacity:1.5602;transform:translate(51.1365vw,-10px) scale(.1739);animation:fall-64 19s -26s linear infinite}@keyframes fall-64{57.335%{transform:translate(45.7101vw,57.335vh) scale(.1739)}to{transform:translate(48.4233vw,100vh) scale(.1739)}}.snow:nth-child(65){opacity:1.2868;transform:translate(45.8585vw,-10px) scale(.2091);animation:fall-65 10s -15s linear infinite}@keyframes fall-65{36.277%{transform:translate(52.2903vw,36.277vh) scale(.2091)}to{transform:translate(49.0744vw,100vh) scale(.2091)}}.snow:nth-child(66){opacity:.0722;transform:translate(99.1884vw,-10px) scale(.5108);animation:fall-66 24s -25s linear infinite}@keyframes fall-66{74.14%{transform:translate(104.9769vw,74.14vh) scale(.5108)}to{transform:translate(102.08265vw,100vh) scale(.5108)}}.snow:nth-child(67){opacity:1.359;transform:translate(63.9536vw,-10px) scale(.82);animation:fall-67 29s -15s linear infinite}@keyframes fall-67{36.184%{transform:translate(68.027vw,36.184vh) scale(.82)}to{transform:translate(65.9903vw,100vh) scale(.82)}}.snow:nth-child(68){opacity:1.1122;transform:translate(55.3632vw,-10px) scale(.931);animation:fall-68 16s -5s linear infinite}@keyframes fall-68{44.317%{transform:translate(45.93vw,44.317vh) scale(.931)}to{transform:translate(50.6466vw,100vh) scale(.931)}}.snow:nth-child(69){opacity:1.2242;transform:translate(35.5071vw,-10px) scale(.7398);animation:fall-69 22s -8s linear infinite}@keyframes fall-69{78.452%{transform:translate(42.3467vw,78.452vh) scale(.7398)}to{transform:translate(38.9269vw,100vh) scale(.7398)}}.snow:nth-child(70){opacity:1.2058;transform:translate(81.5019vw,-10px) scale(.0149);animation:fall-70 26s -22s linear infinite}@keyframes fall-70{65.698%{transform:translate(74.9507vw,65.698vh) scale(.0149)}to{transform:translate(78.2263vw,100vh) scale(.0149)}}.snow:nth-child(71){opacity:1.364;transform:translate(79.3054vw,-10px) scale(.1831);animation:fall-71 30s -30s linear infinite}@keyframes fall-71{58.177%{transform:translate(79.2223vw,58.177vh) scale(.1831)}to{transform:translate(79.26385vw,100vh) scale(.1831)}}.snow:nth-child(72){opacity:.8272;transform:translate(71.5447vw,-10px) scale(.5198);animation:fall-72 23s -7s linear infinite}@keyframes fall-72{53.527%{transform:translate(77.2748vw,53.527vh) scale(.5198)}to{transform:translate(74.40975vw,100vh) scale(.5198)}}.snow:nth-child(73){opacity:1.8616;transform:translate(52.7842vw,-10px) scale(.5695);animation:fall-73 17s -25s linear infinite}@keyframes fall-73{64.738%{transform:translate(50.6833vw,64.738vh) scale(.5695)}to{transform:translate(51.73375vw,100vh) scale(.5695)}}.snow:nth-child(74){opacity:.8468;transform:translate(80.5915vw,-10px) scale(.0736);animation:fall-74 22s -2s linear infinite}@keyframes fall-74{78.953%{transform:translate(77.0384vw,78.953vh) scale(.0736)}to{transform:translate(78.81495vw,100vh) scale(.0736)}}.snow:nth-child(75){opacity:.3798;transform:translate(81.6767vw,-10px) scale(.9298);animation:fall-75 23s -29s linear infinite}@keyframes fall-75{54.781%{transform:translate(78.911vw,54.781vh) scale(.9298)}to{transform:translate(80.29385vw,100vh) scale(.9298)}}.snow:nth-child(76){opacity:.669;transform:translate(64.5293vw,-10px) scale(.181);animation:fall-76 15s -15s linear infinite}@keyframes fall-76{30.113%{transform:translate(71.1717vw,30.113vh) scale(.181)}to{transform:translate(67.8505vw,100vh) scale(.181)}}.snow:nth-child(77){opacity:1.697;transform:translate(62.0439vw,-10px) scale(.9623);animation:fall-77 30s -4s linear infinite}@keyframes fall-77{38.101%{transform:translate(57.4398vw,38.101vh) scale(.9623)}to{transform:translate(59.74185vw,100vh) scale(.9623)}}.snow:nth-child(78){opacity:.6036;transform:translate(29.3344vw,-10px) scale(.7598);animation:fall-78 18s -19s linear infinite}@keyframes fall-78{30.653%{transform:translate(26.8868vw,30.653vh) scale(.7598)}to{transform:translate(28.1106vw,100vh) scale(.7598)}}.snow:nth-child(79){opacity:1.9796;transform:translate(94.4665vw,-10px) scale(.1144);animation:fall-79 19s -28s linear infinite}@keyframes fall-79{42.919%{transform:translate(97.3371vw,42.919vh) scale(.1144)}to{transform:translate(95.9018vw,100vh) scale(.1144)}}.snow:nth-child(80){opacity:.8624;transform:translate(89.8907vw,-10px) scale(.0868);animation:fall-80 19s -5s linear infinite}@keyframes fall-80{60.328%{transform:translate(81.2217vw,60.328vh) scale(.0868)}to{transform:translate(85.5562vw,100vh) scale(.0868)}}.snow:nth-child(81){opacity:.6614;transform:translate(85.3106vw,-10px) scale(.2086);animation:fall-81 14s -10s linear infinite}@keyframes fall-81{63.006%{transform:translate(78.0163vw,63.006vh) scale(.2086)}to{transform:translate(81.66345vw,100vh) scale(.2086)}}.snow:nth-child(82){opacity:.4658;transform:translate(5.5971vw,-10px) scale(.3583);animation:fall-82 17s -8s linear infinite}@keyframes fall-82{39.278%{transform:translate(8.6764vw,39.278vh) scale(.3583)}to{transform:translate(7.13675vw,100vh) scale(.3583)}}.snow:nth-child(83){opacity:.7566;transform:translate(51.3955vw,-10px) scale(.0206);animation:fall-83 11s -26s linear infinite}@keyframes fall-83{59.862%{transform:translate(58.2691vw,59.862vh) scale(.0206)}to{transform:translate(54.8323vw,100vh) scale(.0206)}}.snow:nth-child(84){opacity:1.1418;transform:translate(6.6386vw,-10px) scale(.1061);animation:fall-84 11s -7s linear infinite}@keyframes fall-84{45.067%{transform:translate(9.8712vw,45.067vh) scale(.1061)}to{transform:translate(8.2549vw,100vh) scale(.1061)}}.snow:nth-child(85){opacity:1.7842;transform:translate(85.3385vw,-10px) scale(.7492);animation:fall-85 17s -9s linear infinite}@keyframes fall-85{65.936%{transform:translate(79.1994vw,65.936vh) scale(.7492)}to{transform:translate(82.26895vw,100vh) scale(.7492)}}.snow:nth-child(86){opacity:.2256;transform:translate(5.0558vw,-10px) scale(.1025);animation:fall-86 22s -24s linear infinite}@keyframes fall-86{40.1%{transform:translate(11.8656vw,40.1vh) scale(.1025)}to{transform:translate(8.4607vw,100vh) scale(.1025)}}.snow:nth-child(87){opacity:.8532;transform:translate(89.2848vw,-10px) scale(.6239);animation:fall-87 29s -19s linear infinite}@keyframes fall-87{68.512%{transform:translate(97.367vw,68.512vh) scale(.6239)}to{transform:translate(93.3259vw,100vh) scale(.6239)}}.snow:nth-child(88){opacity:1.2308;transform:translate(4.2876vw,-10px) scale(.9672);animation:fall-88 26s -22s linear infinite}@keyframes fall-88{77.72%{transform:translate(11.3502vw,77.72vh) scale(.9672)}to{transform:translate(7.8189vw,100vh) scale(.9672)}}.snow:nth-child(89){opacity:.7048;transform:translate(54.779vw,-10px) scale(.474);animation:fall-89 29s -18s linear infinite}@keyframes fall-89{75.951%{transform:translate(62.6661vw,75.951vh) scale(.474)}to{transform:translate(58.72255vw,100vh) scale(.474)}}.snow:nth-child(90){opacity:1.7542;transform:translate(72.8461vw,-10px) scale(.3654);animation:fall-90 19s -4s linear infinite}@keyframes fall-90{53.572%{transform:translate(80.4574vw,53.572vh) scale(.3654)}to{transform:translate(76.65175vw,100vh) scale(.3654)}}.snow:nth-child(91){opacity:.3024;transform:translate(2.5913vw,-10px) scale(.786);animation:fall-91 13s -30s linear infinite}@keyframes fall-91{36.056%{transform:translate(2.1495vw,36.056vh) scale(.786)}to{transform:translate(2.3704vw,100vh) scale(.786)}}.snow:nth-child(92){opacity:1.9244;transform:translate(94.4652vw,-10px) scale(1);animation:fall-92 11s -19s linear infinite}@keyframes fall-92{43.566%{transform:translate(99.7612vw,43.566vh) scale(1)}to{transform:translate(97.1132vw,100vh) scale(1)}}.snow:nth-child(93){opacity:1.6582;transform:translate(40.9226vw,-10px) scale(.6389);animation:fall-93 24s -5s linear infinite}@keyframes fall-93{54.525%{transform:translate(33.0014vw,54.525vh) scale(.6389)}to{transform:translate(36.962vw,100vh) scale(.6389)}}.snow:nth-child(94){opacity:1.5994;transform:translate(5.0987vw,-10px) scale(.6515);animation:fall-94 24s -30s linear infinite}@keyframes fall-94{72.373%{transform:translate(-2.573vw,72.373vh) scale(.6515)}to{transform:translate(1.26285vw,100vh) scale(.6515)}}.snow:nth-child(95){opacity:1.9682;transform:translate(14.4723vw,-10px) scale(.7068);animation:fall-95 25s -16s linear infinite}@keyframes fall-95{44.025%{transform:translate(23.8335vw,44.025vh) scale(.7068)}to{transform:translate(19.1529vw,100vh) scale(.7068)}}.snow:nth-child(96){opacity:.1926;transform:translate(92.0948vw,-10px) scale(.0749);animation:fall-96 22s -27s linear infinite}@keyframes fall-96{79.467%{transform:translate(90.7285vw,79.467vh) scale(.0749)}to{transform:translate(91.41165vw,100vh) scale(.0749)}}.snow:nth-child(97){opacity:.116;transform:translate(17.2247vw,-10px) scale(.2624);animation:fall-97 23s -9s linear infinite}@keyframes fall-97{73.811%{transform:translate(22.7537vw,73.811vh) scale(.2624)}to{transform:translate(19.9892vw,100vh) scale(.2624)}}.snow:nth-child(98){opacity:1.9626;transform:translate(35.5407vw,-10px) scale(.3705);animation:fall-98 24s -24s linear infinite}@keyframes fall-98{52.922%{transform:translate(28.6979vw,52.922vh) scale(.3705)}to{transform:translate(32.1193vw,100vh) scale(.3705)}}.snow:nth-child(99){opacity:.881;transform:translate(37.426vw,-10px) scale(.6742);animation:fall-99 27s -22s linear infinite}@keyframes fall-99{35.754%{transform:translate(40.0002vw,35.754vh) scale(.6742)}to{transform:translate(38.7131vw,100vh) scale(.6742)}}.snow:nth-child(100){opacity:.1384;transform:translate(71.8958vw,-10px) scale(.9159);animation:fall-100 28s -26s linear infinite}@keyframes fall-100{73.409%{transform:translate(76.7719vw,73.409vh) scale(.9159)}to{transform:translate(74.33385vw,100vh) scale(.9159)}}.snow:nth-child(101){opacity:1.8046;transform:translate(12.6984vw,-10px) scale(.4624);animation:fall-101 23s -8s linear infinite}@keyframes fall-101{65.811%{transform:translate(20.7289vw,65.811vh) scale(.4624)}to{transform:translate(16.71365vw,100vh) scale(.4624)}}.snow:nth-child(102){opacity:.8512;transform:translate(77.9482vw,-10px) scale(.4922);animation:fall-102 24s -21s linear infinite}@keyframes fall-102{47.04%{transform:translate(86.4766vw,47.04vh) scale(.4922)}to{transform:translate(82.2124vw,100vh) scale(.4922)}}.snow:nth-child(103){opacity:.5258;transform:translate(64.1813vw,-10px) scale(.9382);animation:fall-103 14s -7s linear infinite}@keyframes fall-103{60.498%{transform:translate(61.8544vw,60.498vh) scale(.9382)}to{transform:translate(63.01785vw,100vh) scale(.9382)}}.snow:nth-child(104){opacity:1.438;transform:translate(20.1452vw,-10px) scale(.8964);animation:fall-104 27s -10s linear infinite}@keyframes fall-104{30.037%{transform:translate(18.513vw,30.037vh) scale(.8964)}to{transform:translate(19.3291vw,100vh) scale(.8964)}}.snow:nth-child(105){opacity:1.009;transform:translate(51.2642vw,-10px) scale(.0452);animation:fall-105 30s -23s linear infinite}@keyframes fall-105{33.837%{transform:translate(46.3772vw,33.837vh) scale(.0452)}to{transform:translate(48.8207vw,100vh) scale(.0452)}}.snow:nth-child(106){opacity:.6102;transform:translate(83.783vw,-10px) scale(.8265);animation:fall-106 24s -19s linear infinite}@keyframes fall-106{76.717%{transform:translate(76.749vw,76.717vh) scale(.8265)}to{transform:translate(80.266vw,100vh) scale(.8265)}}.snow:nth-child(107){opacity:.6818;transform:translate(28.3689vw,-10px) scale(.2036);animation:fall-107 14s -16s linear infinite}@keyframes fall-107{62.078%{transform:translate(20.6868vw,62.078vh) scale(.2036)}to{transform:translate(24.52785vw,100vh) scale(.2036)}}.snow:nth-child(108){opacity:1.8426;transform:translate(33.7501vw,-10px) scale(.3385);animation:fall-108 10s -14s linear infinite}@keyframes fall-108{55.512%{transform:translate(42.5836vw,55.512vh) scale(.3385)}to{transform:translate(38.16685vw,100vh) scale(.3385)}}.snow:nth-child(109){opacity:1.7264;transform:translate(88.5394vw,-10px) scale(.4227);animation:fall-109 24s -1s linear infinite}@keyframes fall-109{54.004%{transform:translate(84.4776vw,54.004vh) scale(.4227)}to{transform:translate(86.5085vw,100vh) scale(.4227)}}.snow:nth-child(110){opacity:1.7208;transform:translate(73.8153vw,-10px) scale(.1376);animation:fall-110 27s -5s linear infinite}@keyframes fall-110{51.212%{transform:translate(69.7112vw,51.212vh) scale(.1376)}to{transform:translate(71.76325vw,100vh) scale(.1376)}}.snow:nth-child(111){opacity:1.6768;transform:translate(71.7081vw,-10px) scale(.7305);animation:fall-111 28s -6s linear infinite}@keyframes fall-111{78.954%{transform:translate(68.1037vw,78.954vh) scale(.7305)}to{transform:translate(69.9059vw,100vh) scale(.7305)}}.snow:nth-child(112){opacity:.4126;transform:translate(35.566vw,-10px) scale(.8876);animation:fall-112 14s -29s linear infinite}@keyframes fall-112{64.252%{transform:translate(34.404vw,64.252vh) scale(.8876)}to{transform:translate(34.985vw,100vh) scale(.8876)}}.snow:nth-child(113){opacity:1.9836;transform:translate(25.4177vw,-10px) scale(.6868);animation:fall-113 29s -24s linear infinite}@keyframes fall-113{69.59%{transform:translate(27.0616vw,69.59vh) scale(.6868)}to{transform:translate(26.23965vw,100vh) scale(.6868)}}.snow:nth-child(114){opacity:.1702;transform:translate(7.8212vw,-10px) scale(.4466);animation:fall-114 14s -29s linear infinite}@keyframes fall-114{35.178%{transform:translate(14.2192vw,35.178vh) scale(.4466)}to{transform:translate(11.0202vw,100vh) scale(.4466)}}.snow:nth-child(115){opacity:1.7364;transform:translate(15.0976vw,-10px) scale(.755);animation:fall-115 22s -20s linear infinite}@keyframes fall-115{53.124%{transform:translate(12.5917vw,53.124vh) scale(.755)}to{transform:translate(13.84465vw,100vh) scale(.755)}}.snow:nth-child(116){opacity:1.1586;transform:translate(1.2029vw,-10px) scale(.2748);animation:fall-116 20s -28s linear infinite}@keyframes fall-116{70.727%{transform:translate(8.3937vw,70.727vh) scale(.2748)}to{transform:translate(4.7983vw,100vh) scale(.2748)}}.snow:nth-child(117){opacity:1.5914;transform:translate(33.5185vw,-10px) scale(.7882);animation:fall-117 10s -28s linear infinite}@keyframes fall-117{40.257%{transform:translate(33.9112vw,40.257vh) scale(.7882)}to{transform:translate(33.71485vw,100vh) scale(.7882)}}.snow:nth-child(118){opacity:1.1256;transform:translate(79.328vw,-10px) scale(.8429);animation:fall-118 18s -5s linear infinite}@keyframes fall-118{50.697%{transform:translate(85.917vw,50.697vh) scale(.8429)}to{transform:translate(82.6225vw,100vh) scale(.8429)}}.snow:nth-child(119){opacity:.0602;transform:translate(11.7992vw,-10px) scale(.9638);animation:fall-119 18s -4s linear infinite}@keyframes fall-119{79.879%{transform:translate(14.5729vw,79.879vh) scale(.9638)}to{transform:translate(13.18605vw,100vh) scale(.9638)}}.snow:nth-child(120){opacity:1.0652;transform:translate(41.1165vw,-10px) scale(.594);animation:fall-120 23s -5s linear infinite}@keyframes fall-120{68.819%{transform:translate(45.809vw,68.819vh) scale(.594)}to{transform:translate(43.46275vw,100vh) scale(.594)}}.snow:nth-child(121){opacity:.4368;transform:translate(70.7773vw,-10px) scale(.8905);animation:fall-121 16s -8s linear infinite}@keyframes fall-121{78.421%{transform:translate(70.1596vw,78.421vh) scale(.8905)}to{transform:translate(70.46845vw,100vh) scale(.8905)}}.snow:nth-child(122){opacity:.7514;transform:translate(10.5841vw,-10px) scale(.0312);animation:fall-122 28s -5s linear infinite}@keyframes fall-122{50.767%{transform:translate(18.7017vw,50.767vh) scale(.0312)}to{transform:translate(14.6429vw,100vh) scale(.0312)}}.snow:nth-child(123){opacity:.1332;transform:translate(85.661vw,-10px) scale(.7569);animation:fall-123 27s -21s linear infinite}@keyframes fall-123{74.3%{transform:translate(84.8094vw,74.3vh) scale(.7569)}to{transform:translate(85.2352vw,100vh) scale(.7569)}}.snow:nth-child(124){opacity:.4974;transform:translate(99.4948vw,-10px) scale(.4142);animation:fall-124 10s -28s linear infinite}@keyframes fall-124{57.338%{transform:translate(94.6019vw,57.338vh) scale(.4142)}to{transform:translate(97.04835vw,100vh) scale(.4142)}}.snow:nth-child(125){opacity:.943;transform:translate(80.3753vw,-10px) scale(.5496);animation:fall-125 28s -20s linear infinite}@keyframes fall-125{42.27%{transform:translate(80.6559vw,42.27vh) scale(.5496)}to{transform:translate(80.5156vw,100vh) scale(.5496)}}.snow:nth-child(126){opacity:1.6852;transform:translate(71.7341vw,-10px) scale(.7715);animation:fall-126 14s -16s linear infinite}@keyframes fall-126{72.614%{transform:translate(69.5327vw,72.614vh) scale(.7715)}to{transform:translate(70.6334vw,100vh) scale(.7715)}}.snow:nth-child(127){opacity:1.5464;transform:translate(93.7738vw,-10px) scale(.7294);animation:fall-127 27s -6s linear infinite}@keyframes fall-127{58.653%{transform:translate(96.3936vw,58.653vh) scale(.7294)}to{transform:translate(95.0837vw,100vh) scale(.7294)}}.snow:nth-child(128){opacity:1.1198;transform:translate(76.5143vw,-10px) scale(.3053);animation:fall-128 28s -30s linear infinite}@keyframes fall-128{76.546%{transform:translate(75.931vw,76.546vh) scale(.3053)}to{transform:translate(76.22265vw,100vh) scale(.3053)}}.snow:nth-child(129){opacity:1.0682;transform:translate(79.2562vw,-10px) scale(.3344);animation:fall-129 27s -8s linear infinite}@keyframes fall-129{51.802%{transform:translate(78.0357vw,51.802vh) scale(.3344)}to{transform:translate(78.64595vw,100vh) scale(.3344)}}.snow:nth-child(130){opacity:1.6342;transform:translate(57.7191vw,-10px) scale(.36);animation:fall-130 12s -22s linear infinite}@keyframes fall-130{78.21%{transform:translate(65.5037vw,78.21vh) scale(.36)}to{transform:translate(61.6114vw,100vh) scale(.36)}}.snow:nth-child(131){opacity:.5326;transform:translate(15.7846vw,-10px) scale(.3904);animation:fall-131 22s -4s linear infinite}@keyframes fall-131{34.219%{transform:translate(13.4234vw,34.219vh) scale(.3904)}to{transform:translate(14.604vw,100vh) scale(.3904)}}.snow:nth-child(132){opacity:1.3202;transform:translate(73.8889vw,-10px) scale(.097);animation:fall-132 18s -29s linear infinite}@keyframes fall-132{55.559%{transform:translate(72.0822vw,55.559vh) scale(.097)}to{transform:translate(72.98555vw,100vh) scale(.097)}}.snow:nth-child(133){opacity:.8192;transform:translate(94.3342vw,-10px) scale(.3881);animation:fall-133 26s -27s linear infinite}@keyframes fall-133{46.797%{transform:translate(97.4421vw,46.797vh) scale(.3881)}to{transform:translate(95.88815vw,100vh) scale(.3881)}}.snow:nth-child(134){opacity:1.6172;transform:translate(33.8947vw,-10px) scale(.0186);animation:fall-134 29s -11s linear infinite}@keyframes fall-134{64.805%{transform:translate(40.9446vw,64.805vh) scale(.0186)}to{transform:translate(37.41965vw,100vh) scale(.0186)}}.snow:nth-child(135){opacity:.023;transform:translate(23.8073vw,-10px) scale(.3347);animation:fall-135 26s -8s linear infinite}@keyframes fall-135{53.655%{transform:translate(14.1386vw,53.655vh) scale(.3347)}to{transform:translate(18.97295vw,100vh) scale(.3347)}}.snow:nth-child(136){opacity:.0776;transform:translate(4.5136vw,-10px) scale(.198);animation:fall-136 26s -3s linear infinite}@keyframes fall-136{39.478%{transform:translate(6.3069vw,39.478vh) scale(.198)}to{transform:translate(5.41025vw,100vh) scale(.198)}}.snow:nth-child(137){opacity:.4706;transform:translate(34.3213vw,-10px) scale(.8051);animation:fall-137 27s -4s linear infinite}@keyframes fall-137{59.865%{transform:translate(27.3214vw,59.865vh) scale(.8051)}to{transform:translate(30.82135vw,100vh) scale(.8051)}}.snow:nth-child(138){opacity:1.5008;transform:translate(89.7808vw,-10px) scale(.8822);animation:fall-138 20s -21s linear infinite}@keyframes fall-138{62.342%{transform:translate(80.0463vw,62.342vh) scale(.8822)}to{transform:translate(84.91355vw,100vh) scale(.8822)}}.snow:nth-child(139){opacity:1.8892;transform:translate(38.3329vw,-10px) scale(.2083);animation:fall-139 20s -9s linear infinite}@keyframes fall-139{32.619%{transform:translate(42.9716vw,32.619vh) scale(.2083)}to{transform:translate(40.65225vw,100vh) scale(.2083)}}.snow:nth-child(140){opacity:.4654;transform:translate(12.5553vw,-10px) scale(.1615);animation:fall-140 11s -8s linear infinite}@keyframes fall-140{78.027%{transform:translate(12.3836vw,78.027vh) scale(.1615)}to{transform:translate(12.46945vw,100vh) scale(.1615)}}.snow:nth-child(141){opacity:.6652;transform:translate(33.5127vw,-10px) scale(.8466);animation:fall-141 22s -21s linear infinite}@keyframes fall-141{72.809%{transform:translate(33.2484vw,72.809vh) scale(.8466)}to{transform:translate(33.38055vw,100vh) scale(.8466)}}.snow:nth-child(142){opacity:1.8754;transform:translate(29.8004vw,-10px) scale(.4281);animation:fall-142 24s -26s linear infinite}@keyframes fall-142{30.436%{transform:translate(28.2273vw,30.436vh) scale(.4281)}to{transform:translate(29.01385vw,100vh) scale(.4281)}}.snow:nth-child(143){opacity:1.247;transform:translate(45.3577vw,-10px) scale(.1842);animation:fall-143 15s -8s linear infinite}@keyframes fall-143{65.738%{transform:translate(36.5414vw,65.738vh) scale(.1842)}to{transform:translate(40.94955vw,100vh) scale(.1842)}}.snow:nth-child(144){opacity:.782;transform:translate(43.0716vw,-10px) scale(.1481);animation:fall-144 10s -30s linear infinite}@keyframes fall-144{32.887%{transform:translate(36.2026vw,32.887vh) scale(.1481)}to{transform:translate(39.6371vw,100vh) scale(.1481)}}.snow:nth-child(145){opacity:1.0994;transform:translate(57.1497vw,-10px) scale(.9606);animation:fall-145 12s -23s linear infinite}@keyframes fall-145{32.555%{transform:translate(62.5135vw,32.555vh) scale(.9606)}to{transform:translate(59.8316vw,100vh) scale(.9606)}}.snow:nth-child(146){opacity:.1204;transform:translate(95.8077vw,-10px) scale(.7013);animation:fall-146 24s -26s linear infinite}@keyframes fall-146{47.718%{transform:translate(98.3703vw,47.718vh) scale(.7013)}to{transform:translate(97.089vw,100vh) scale(.7013)}}.snow:nth-child(147){opacity:1.4602;transform:translate(21.2468vw,-10px) scale(.5923);animation:fall-147 15s -2s linear infinite}@keyframes fall-147{41.663%{transform:translate(24.5304vw,41.663vh) scale(.5923)}to{transform:translate(22.8886vw,100vh) scale(.5923)}}.snow:nth-child(148){opacity:.6932;transform:translate(68.4049vw,-10px) scale(.0665);animation:fall-148 22s -1s linear infinite}@keyframes fall-148{66.948%{transform:translate(69.792vw,66.948vh) scale(.0665)}to{transform:translate(69.09845vw,100vh) scale(.0665)}}.snow:nth-child(149){opacity:.523;transform:translate(6.2053vw,-10px) scale(.1268);animation:fall-149 13s -26s linear infinite}@keyframes fall-149{55.167%{transform:translate(4.7598vw,55.167vh) scale(.1268)}to{transform:translate(5.48255vw,100vh) scale(.1268)}}.snow:nth-child(150){opacity:1.7362;transform:translate(25.1811vw,-10px) scale(.8499);animation:fall-150 11s -12s linear infinite}@keyframes fall-150{75.244%{transform:translate(18.107vw,75.244vh) scale(.8499)}to{transform:translate(21.64405vw,100vh) scale(.8499)}}.snow:nth-child(151){opacity:.1562;transform:translate(59.5913vw,-10px) scale(.6096);animation:fall-151 25s -13s linear infinite}@keyframes fall-151{62.262%{transform:translate(59.1837vw,62.262vh) scale(.6096)}to{transform:translate(59.3875vw,100vh) scale(.6096)}}.snow:nth-child(152){opacity:1.5838;transform:translate(40.5521vw,-10px) scale(.5018);animation:fall-152 10s -2s linear infinite}@keyframes fall-152{53.721%{transform:translate(38.9793vw,53.721vh) scale(.5018)}to{transform:translate(39.7657vw,100vh) scale(.5018)}}.snow:nth-child(153){opacity:.8026;transform:translate(72.1382vw,-10px) scale(.4413);animation:fall-153 21s -8s linear infinite}@keyframes fall-153{65.011%{transform:translate(66.2144vw,65.011vh) scale(.4413)}to{transform:translate(69.1763vw,100vh) scale(.4413)}}.snow:nth-child(154){opacity:.8474;transform:translate(60.4052vw,-10px) scale(.2974);animation:fall-154 17s -25s linear infinite}@keyframes fall-154{48.047%{transform:translate(68.5729vw,48.047vh) scale(.2974)}to{transform:translate(64.48905vw,100vh) scale(.2974)}}.snow:nth-child(155){opacity:.912;transform:translate(34.3895vw,-10px) scale(.2441);animation:fall-155 14s -8s linear infinite}@keyframes fall-155{46.819%{transform:translate(37.8523vw,46.819vh) scale(.2441)}to{transform:translate(36.1209vw,100vh) scale(.2441)}}.snow:nth-child(156){opacity:.8622;transform:translate(79.7056vw,-10px) scale(.3021);animation:fall-156 26s -11s linear infinite}@keyframes fall-156{42.499%{transform:translate(82.278vw,42.499vh) scale(.3021)}to{transform:translate(80.9918vw,100vh) scale(.3021)}}.snow:nth-child(157){opacity:.2554;transform:translate(33.0637vw,-10px) scale(.3028);animation:fall-157 25s -14s linear infinite}@keyframes fall-157{34.195%{transform:translate(37.4413vw,34.195vh) scale(.3028)}to{transform:translate(35.2525vw,100vh) scale(.3028)}}.snow:nth-child(158){opacity:1.9916;transform:translate(27.3209vw,-10px) scale(.8474);animation:fall-158 26s -14s linear infinite}@keyframes fall-158{58.641%{transform:translate(18.5691vw,58.641vh) scale(.8474)}to{transform:translate(22.945vw,100vh) scale(.8474)}}.snow:nth-child(159){opacity:.0024;transform:translate(83.3774vw,-10px) scale(.4851);animation:fall-159 19s -23s linear infinite}@keyframes fall-159{48.352%{transform:translate(78.7968vw,48.352vh) scale(.4851)}to{transform:translate(81.0871vw,100vh) scale(.4851)}}.snow:nth-child(160){opacity:1.306;transform:translate(34.3686vw,-10px) scale(.7751);animation:fall-160 27s -6s linear infinite}@keyframes fall-160{59.094%{transform:translate(30.4996vw,59.094vh) scale(.7751)}to{transform:translate(32.4341vw,100vh) scale(.7751)}}.snow:nth-child(161){opacity:1.0332;transform:translate(19.0003vw,-10px) scale(.3309);animation:fall-161 18s -16s linear infinite}@keyframes fall-161{39.307%{transform:translate(18.2173vw,39.307vh) scale(.3309)}to{transform:translate(18.6088vw,100vh) scale(.3309)}}.snow:nth-child(162){opacity:1.5568;transform:translate(55.1162vw,-10px) scale(.1444);animation:fall-162 18s -27s linear infinite}@keyframes fall-162{41.37%{transform:translate(58.1843vw,41.37vh) scale(.1444)}to{transform:translate(56.65025vw,100vh) scale(.1444)}}.snow:nth-child(163){opacity:.2598;transform:translate(54.3839vw,-10px) scale(.3154);animation:fall-163 11s -19s linear infinite}@keyframes fall-163{72.43%{transform:translate(46.6714vw,72.43vh) scale(.3154)}to{transform:translate(50.52765vw,100vh) scale(.3154)}}.snow:nth-child(164){opacity:.9142;transform:translate(51.6399vw,-10px) scale(.1281);animation:fall-164 22s -26s linear infinite}@keyframes fall-164{52.747%{transform:translate(55.1382vw,52.747vh) scale(.1281)}to{transform:translate(53.38905vw,100vh) scale(.1281)}}.snow:nth-child(165){opacity:.214;transform:translate(85.7801vw,-10px) scale(.5384);animation:fall-165 20s -11s linear infinite}@keyframes fall-165{74.954%{transform:translate(80.7169vw,74.954vh) scale(.5384)}to{transform:translate(83.2485vw,100vh) scale(.5384)}}.snow:nth-child(166){opacity:.1168;transform:translate(70.5786vw,-10px) scale(.5372);animation:fall-166 26s -25s linear infinite}@keyframes fall-166{39.48%{transform:translate(70.1825vw,39.48vh) scale(.5372)}to{transform:translate(70.38055vw,100vh) scale(.5372)}}.snow:nth-child(167){opacity:.4124;transform:translate(75.6051vw,-10px) scale(.2911);animation:fall-167 15s -3s linear infinite}@keyframes fall-167{58.749%{transform:translate(85.1538vw,58.749vh) scale(.2911)}to{transform:translate(80.37945vw,100vh) scale(.2911)}}.snow:nth-child(168){opacity:.6106;transform:translate(97.2318vw,-10px) scale(.0113);animation:fall-168 27s -5s linear infinite}@keyframes fall-168{63.064%{transform:translate(97.759vw,63.064vh) scale(.0113)}to{transform:translate(97.4954vw,100vh) scale(.0113)}}.snow:nth-child(169){opacity:.3144;transform:translate(24.4193vw,-10px) scale(.763);animation:fall-169 17s -26s linear infinite}@keyframes fall-169{61.066%{transform:translate(31.7602vw,61.066vh) scale(.763)}to{transform:translate(28.08975vw,100vh) scale(.763)}}.snow:nth-child(170){opacity:1.2534;transform:translate(18.1471vw,-10px) scale(.3049);animation:fall-170 23s -20s linear infinite}@keyframes fall-170{36.116%{transform:translate(9.6694vw,36.116vh) scale(.3049)}to{transform:translate(13.90825vw,100vh) scale(.3049)}}.snow:nth-child(171){opacity:.5648;transform:translate(83.3076vw,-10px) scale(.7387);animation:fall-171 19s -19s linear infinite}@keyframes fall-171{37.93%{transform:translate(79.768vw,37.93vh) scale(.7387)}to{transform:translate(81.5378vw,100vh) scale(.7387)}}.snow:nth-child(172){opacity:.2468;transform:translate(9.2416vw,-10px) scale(.869);animation:fall-172 30s -2s linear infinite}@keyframes fall-172{78.172%{transform:translate(.8276vw,78.172vh) scale(.869)}to{transform:translate(5.0346vw,100vh) scale(.869)}}.snow:nth-child(173){opacity:1.3918;transform:translate(84.0974vw,-10px) scale(.6601);animation:fall-173 25s -30s linear infinite}@keyframes fall-173{75.238%{transform:translate(83.3862vw,75.238vh) scale(.6601)}to{transform:translate(83.7418vw,100vh) scale(.6601)}}.snow:nth-child(174){opacity:.0914;transform:translate(3.7366vw,-10px) scale(.501);animation:fall-174 22s -8s linear infinite}@keyframes fall-174{55.952%{transform:translate(12.9578vw,55.952vh) scale(.501)}to{transform:translate(8.3472vw,100vh) scale(.501)}}.snow:nth-child(175){opacity:.2794;transform:translate(28.816vw,-10px) scale(.024);animation:fall-175 30s -29s linear infinite}@keyframes fall-175{59.643%{transform:translate(19.9949vw,59.643vh) scale(.024)}to{transform:translate(24.40545vw,100vh) scale(.024)}}.snow:nth-child(176){opacity:.466;transform:translate(25.7955vw,-10px) scale(.226);animation:fall-176 19s -22s linear infinite}@keyframes fall-176{52.105%{transform:translate(24.4872vw,52.105vh) scale(.226)}to{transform:translate(25.14135vw,100vh) scale(.226)}}.snow:nth-child(177){opacity:.0918;transform:translate(95.5393vw,-10px) scale(.6224);animation:fall-177 17s -4s linear infinite}@keyframes fall-177{38.474%{transform:translate(100.4672vw,38.474vh) scale(.6224)}to{transform:translate(98.00325vw,100vh) scale(.6224)}}.snow:nth-child(178){opacity:.8542;transform:translate(94.2006vw,-10px) scale(.2007);animation:fall-178 11s -9s linear infinite}@keyframes fall-178{70.635%{transform:translate(86.9914vw,70.635vh) scale(.2007)}to{transform:translate(90.596vw,100vh) scale(.2007)}}.snow:nth-child(179){opacity:.2978;transform:translate(52.3893vw,-10px) scale(.5437);animation:fall-179 15s -26s linear infinite}@keyframes fall-179{49.549%{transform:translate(49.2218vw,49.549vh) scale(.5437)}to{transform:translate(50.80555vw,100vh) scale(.5437)}}.snow:nth-child(180){opacity:1.245;transform:translate(43.3625vw,-10px) scale(.3304);animation:fall-180 22s -6s linear infinite}@keyframes fall-180{67.034%{transform:translate(36.662vw,67.034vh) scale(.3304)}to{transform:translate(40.01225vw,100vh) scale(.3304)}}.snow:nth-child(181){opacity:.1614;transform:translate(5.7922vw,-10px) scale(.1281);animation:fall-181 25s -25s linear infinite}@keyframes fall-181{48.115%{transform:translate(13.3456vw,48.115vh) scale(.1281)}to{transform:translate(9.5689vw,100vh) scale(.1281)}}.snow:nth-child(182){opacity:1.2014;transform:translate(25.3653vw,-10px) scale(.5083);animation:fall-182 13s -26s linear infinite}@keyframes fall-182{45.774%{transform:translate(33.7947vw,45.774vh) scale(.5083)}to{transform:translate(29.58vw,100vh) scale(.5083)}}.snow:nth-child(183){opacity:1.496;transform:translate(76.6682vw,-10px) scale(.5345);animation:fall-183 24s -23s linear infinite}@keyframes fall-183{60.203%{transform:translate(77.766vw,60.203vh) scale(.5345)}to{transform:translate(77.2171vw,100vh) scale(.5345)}}.snow:nth-child(184){opacity:.6228;transform:translate(42.9688vw,-10px) scale(.534);animation:fall-184 19s -15s linear infinite}@keyframes fall-184{64.845%{transform:translate(45.3526vw,64.845vh) scale(.534)}to{transform:translate(44.1607vw,100vh) scale(.534)}}.snow:nth-child(185){opacity:1.7386;transform:translate(92.7801vw,-10px) scale(.9092);animation:fall-185 24s -5s linear infinite}@keyframes fall-185{61.061%{transform:translate(85.8561vw,61.061vh) scale(.9092)}to{transform:translate(89.3181vw,100vh) scale(.9092)}}.snow:nth-child(186){opacity:.4958;transform:translate(71.4275vw,-10px) scale(.746);animation:fall-186 23s -23s linear infinite}@keyframes fall-186{36.223%{transform:translate(66.5063vw,36.223vh) scale(.746)}to{transform:translate(68.9669vw,100vh) scale(.746)}}.snow:nth-child(187){opacity:1.9884;transform:translate(7.5018vw,-10px) scale(.7157);animation:fall-187 16s -16s linear infinite}@keyframes fall-187{57.188%{transform:translate(3.4692vw,57.188vh) scale(.7157)}to{transform:translate(5.4855vw,100vh) scale(.7157)}}.snow:nth-child(188){opacity:1.5668;transform:translate(71.3381vw,-10px) scale(.6946);animation:fall-188 19s -11s linear infinite}@keyframes fall-188{38.757%{transform:translate(80.1294vw,38.757vh) scale(.6946)}to{transform:translate(75.73375vw,100vh) scale(.6946)}}.snow:nth-child(189){opacity:.4008;transform:translate(58.6347vw,-10px) scale(.645);animation:fall-189 15s -4s linear infinite}@keyframes fall-189{52.659%{transform:translate(53.2862vw,52.659vh) scale(.645)}to{transform:translate(55.96045vw,100vh) scale(.645)}}.snow:nth-child(190){opacity:1.1582;transform:translate(25.4621vw,-10px) scale(.4972);animation:fall-190 28s -29s linear infinite}@keyframes fall-190{58.884%{transform:translate(33.2152vw,58.884vh) scale(.4972)}to{transform:translate(29.33865vw,100vh) scale(.4972)}}.snow:nth-child(191){opacity:.1594;transform:translate(37.1754vw,-10px) scale(.0335);animation:fall-191 13s -9s linear infinite}@keyframes fall-191{63.202%{transform:translate(32.302vw,63.202vh) scale(.0335)}to{transform:translate(34.7387vw,100vh) scale(.0335)}}.snow:nth-child(192){opacity:.0844;transform:translate(36.3603vw,-10px) scale(.3388);animation:fall-192 13s -2s linear infinite}@keyframes fall-192{71.91%{transform:translate(34.7729vw,71.91vh) scale(.3388)}to{transform:translate(35.5666vw,100vh) scale(.3388)}}.snow:nth-child(193){opacity:1.438;transform:translate(27.0558vw,-10px) scale(.523);animation:fall-193 22s -17s linear infinite}@keyframes fall-193{69.851%{transform:translate(34.7474vw,69.851vh) scale(.523)}to{transform:translate(30.9016vw,100vh) scale(.523)}}.snow:nth-child(194){opacity:1.0042;transform:translate(26.1002vw,-10px) scale(.7137);animation:fall-194 24s -10s linear infinite}@keyframes fall-194{30.169%{transform:translate(25.9604vw,30.169vh) scale(.7137)}to{transform:translate(26.0303vw,100vh) scale(.7137)}}.snow:nth-child(195){opacity:1.5482;transform:translate(20.7364vw,-10px) scale(.3261);animation:fall-195 12s -13s linear infinite}@keyframes fall-195{59.871%{transform:translate(29.7043vw,59.871vh) scale(.3261)}to{transform:translate(25.22035vw,100vh) scale(.3261)}}.snow:nth-child(196){opacity:.7298;transform:translate(56.8223vw,-10px) scale(.3095);animation:fall-196 14s -5s linear infinite}@keyframes fall-196{57.798%{transform:translate(64.7423vw,57.798vh) scale(.3095)}to{transform:translate(60.7823vw,100vh) scale(.3095)}}.snow:nth-child(197){opacity:1.0084;transform:translate(70.9534vw,-10px) scale(.501);animation:fall-197 22s -28s linear infinite}@keyframes fall-197{71.864%{transform:translate(64.2134vw,71.864vh) scale(.501)}to{transform:translate(67.5834vw,100vh) scale(.501)}}.snow:nth-child(198){opacity:1.8896;transform:translate(34.9798vw,-10px) scale(.5888);animation:fall-198 28s -15s linear infinite}@keyframes fall-198{61.569%{transform:translate(27.5239vw,61.569vh) scale(.5888)}to{transform:translate(31.25185vw,100vh) scale(.5888)}}.snow:nth-child(199){opacity:.6912;transform:translate(14.6591vw,-10px) scale(.6555);animation:fall-199 19s -7s linear infinite}@keyframes fall-199{60.61%{transform:translate(17.9254vw,60.61vh) scale(.6555)}to{transform:translate(16.29225vw,100vh) scale(.6555)}}.snow:nth-child(200){opacity:1.3594;transform:translate(4.0766vw,-10px) scale(.2214);animation:fall-200 20s -13s linear infinite}@keyframes fall-200{71.661%{transform:translate(4.5018vw,71.661vh) scale(.2214)}to{transform:translate(4.2892vw,100vh) scale(.2214)}}.snow:nth-child(201){opacity:.1396;transform:translate(45.7442vw,-10px) scale(.3434);animation:fall-201 17s -15s linear infinite}@keyframes fall-201{74.165%{transform:translate(47.4985vw,74.165vh) scale(.3434)}to{transform:translate(46.62135vw,100vh) scale(.3434)}}.snow:nth-child(202){opacity:1.8378;transform:translate(42.902vw,-10px) scale(.7201);animation:fall-202 14s -7s linear infinite}@keyframes fall-202{52.922%{transform:translate(35.7959vw,52.922vh) scale(.7201)}to{transform:translate(39.34895vw,100vh) scale(.7201)}}.snow:nth-child(203){opacity:1.6642;transform:translate(12.923vw,-10px) scale(.5027);animation:fall-203 14s -20s linear infinite}@keyframes fall-203{72.444%{transform:translate(7.1576vw,72.444vh) scale(.5027)}to{transform:translate(10.0403vw,100vh) scale(.5027)}}.snow:nth-child(204){opacity:.0678;transform:translate(42.7969vw,-10px) scale(.7398);animation:fall-204 23s -4s linear infinite}@keyframes fall-204{50.944%{transform:translate(35.3338vw,50.944vh) scale(.7398)}to{transform:translate(39.06535vw,100vh) scale(.7398)}}.snow:nth-child(205){opacity:.7166;transform:translate(23.9532vw,-10px) scale(.4261);animation:fall-205 11s -16s linear infinite}@keyframes fall-205{65.834%{transform:translate(16.7726vw,65.834vh) scale(.4261)}to{transform:translate(20.3629vw,100vh) scale(.4261)}}.snow:nth-child(206){opacity:.4726;transform:translate(47.0753vw,-10px) scale(.8518);animation:fall-206 21s -11s linear infinite}@keyframes fall-206{69.473%{transform:translate(37.9556vw,69.473vh) scale(.8518)}to{transform:translate(42.51545vw,100vh) scale(.8518)}}.snow:nth-child(207){opacity:1.1958;transform:translate(48.4909vw,-10px) scale(.899);animation:fall-207 28s -17s linear infinite}@keyframes fall-207{33.057%{transform:translate(45.3448vw,33.057vh) scale(.899)}to{transform:translate(46.91785vw,100vh) scale(.899)}}.snow:nth-child(208){opacity:.0554;transform:translate(15.9774vw,-10px) scale(.2163);animation:fall-208 26s -14s linear infinite}@keyframes fall-208{35.826%{transform:translate(12.6595vw,35.826vh) scale(.2163)}to{transform:translate(14.31845vw,100vh) scale(.2163)}}.snow:nth-child(209){opacity:.1502;transform:translate(46.6343vw,-10px) scale(.2241);animation:fall-209 24s -6s linear infinite}@keyframes fall-209{72.198%{transform:translate(40.4868vw,72.198vh) scale(.2241)}to{transform:translate(43.56055vw,100vh) scale(.2241)}}.snow:nth-child(210){opacity:1.7686;transform:translate(6.0719vw,-10px) scale(.8364);animation:fall-210 24s -23s linear infinite}@keyframes fall-210{57.609%{transform:translate(-1.7376vw,57.609vh) scale(.8364)}to{transform:translate(2.16715vw,100vh) scale(.8364)}}.snow:nth-child(211){opacity:1.5418;transform:translate(72.1741vw,-10px) scale(.2457);animation:fall-211 24s -9s linear infinite}@keyframes fall-211{73.155%{transform:translate(64.194vw,73.155vh) scale(.2457)}to{transform:translate(68.18405vw,100vh) scale(.2457)}}.snow:nth-child(212){opacity:.233;transform:translate(26.2744vw,-10px) scale(.6124);animation:fall-212 17s -21s linear infinite}@keyframes fall-212{38.635%{transform:translate(22.7185vw,38.635vh) scale(.6124)}to{transform:translate(24.49645vw,100vh) scale(.6124)}}.snow:nth-child(213){opacity:1.9794;transform:translate(41.7875vw,-10px) scale(.7217);animation:fall-213 27s -15s linear infinite}@keyframes fall-213{77.556%{transform:translate(38.4279vw,77.556vh) scale(.7217)}to{transform:translate(40.1077vw,100vh) scale(.7217)}}.snow:nth-child(214){opacity:.1596;transform:translate(57.2066vw,-10px) scale(.6888);animation:fall-214 13s -24s linear infinite}@keyframes fall-214{74.737%{transform:translate(53.0254vw,74.737vh) scale(.6888)}to{transform:translate(55.116vw,100vh) scale(.6888)}}.snow:nth-child(215){opacity:.8024;transform:translate(66.1234vw,-10px) scale(.462);animation:fall-215 18s -14s linear infinite}@keyframes fall-215{50.696%{transform:translate(73.0843vw,50.696vh) scale(.462)}to{transform:translate(69.60385vw,100vh) scale(.462)}}.snow:nth-child(216){opacity:1.1788;transform:translate(31.244vw,-10px) scale(.6748);animation:fall-216 18s -29s linear infinite}@keyframes fall-216{70.761%{transform:translate(35.3045vw,70.761vh) scale(.6748)}to{transform:translate(33.27425vw,100vh) scale(.6748)}}.snow:nth-child(217){opacity:1.2712;transform:translate(44.014vw,-10px) scale(.584);animation:fall-217 19s -28s linear infinite}@keyframes fall-217{78.838%{transform:translate(35.8083vw,78.838vh) scale(.584)}to{transform:translate(39.91115vw,100vh) scale(.584)}}.snow:nth-child(218){opacity:.818;transform:translate(38.7327vw,-10px) scale(.3872);animation:fall-218 20s -29s linear infinite}@keyframes fall-218{34.911%{transform:translate(41.6468vw,34.911vh) scale(.3872)}to{transform:translate(40.18975vw,100vh) scale(.3872)}}.snow:nth-child(219){opacity:1.509;transform:translate(15.1664vw,-10px) scale(.1645);animation:fall-219 28s -2s linear infinite}@keyframes fall-219{34.88%{transform:translate(21.2869vw,34.88vh) scale(.1645)}to{transform:translate(18.22665vw,100vh) scale(.1645)}}.snow:nth-child(220){opacity:.795;transform:translate(55.3566vw,-10px) scale(.0918);animation:fall-220 24s -12s linear infinite}@keyframes fall-220{63.218%{transform:translate(61.6852vw,63.218vh) scale(.0918)}to{transform:translate(58.5209vw,100vh) scale(.0918)}}.snow:nth-child(221){opacity:1.1806;transform:translate(74.0826vw,-10px) scale(.8473);animation:fall-221 21s -6s linear infinite}@keyframes fall-221{53.674%{transform:translate(64.9549vw,53.674vh) scale(.8473)}to{transform:translate(69.51875vw,100vh) scale(.8473)}}.snow:nth-child(222){opacity:.2708;transform:translate(27.2522vw,-10px) scale(.4642);animation:fall-222 28s -6s linear infinite}@keyframes fall-222{52.125%{transform:translate(17.274vw,52.125vh) scale(.4642)}to{transform:translate(22.2631vw,100vh) scale(.4642)}}.snow:nth-child(223){opacity:1.9036;transform:translate(42.1718vw,-10px) scale(.8811);animation:fall-223 10s -9s linear infinite}@keyframes fall-223{55.267%{transform:translate(36.2423vw,55.267vh) scale(.8811)}to{transform:translate(39.20705vw,100vh) scale(.8811)}}.snow:nth-child(224){opacity:1.4468;transform:translate(2.7744vw,-10px) scale(.9582);animation:fall-224 29s -14s linear infinite}@keyframes fall-224{55.26%{transform:translate(-6.809vw,55.26vh) scale(.9582)}to{transform:translate(-2.0173vw,100vh) scale(.9582)}}.snow:nth-child(225){opacity:1.1268;transform:translate(67.8839vw,-10px) scale(.2215);animation:fall-225 18s -23s linear infinite}@keyframes fall-225{50.914%{transform:translate(64.834vw,50.914vh) scale(.2215)}to{transform:translate(66.35895vw,100vh) scale(.2215)}}.snow:nth-child(226){opacity:1.4322;transform:translate(69.0133vw,-10px) scale(.5379);animation:fall-226 11s -3s linear infinite}@keyframes fall-226{36.489%{transform:translate(61.7449vw,36.489vh) scale(.5379)}to{transform:translate(65.3791vw,100vh) scale(.5379)}}.snow:nth-child(227){opacity:.171;transform:translate(61.7722vw,-10px) scale(.4468);animation:fall-227 29s -11s linear infinite}@keyframes fall-227{36.054%{transform:translate(61.6947vw,36.054vh) scale(.4468)}to{transform:translate(61.73345vw,100vh) scale(.4468)}}.snow:nth-child(228){opacity:1.3424;transform:translate(29.1254vw,-10px) scale(.2271);animation:fall-228 18s -8s linear infinite}@keyframes fall-228{63.395%{transform:translate(23.1736vw,63.395vh) scale(.2271)}to{transform:translate(26.1495vw,100vh) scale(.2271)}}.snow:nth-child(229){opacity:.2364;transform:translate(33.1788vw,-10px) scale(.3345);animation:fall-229 22s -5s linear infinite}@keyframes fall-229{74.224%{transform:translate(41.6867vw,74.224vh) scale(.3345)}to{transform:translate(37.43275vw,100vh) scale(.3345)}}.snow:nth-child(230){opacity:.6498;transform:translate(63.6961vw,-10px) scale(.2063);animation:fall-230 28s -5s linear infinite}@keyframes fall-230{46.856%{transform:translate(64.0858vw,46.856vh) scale(.2063)}to{transform:translate(63.89095vw,100vh) scale(.2063)}}.snow:nth-child(231){opacity:1.2276;transform:translate(29.5902vw,-10px) scale(.7202);animation:fall-231 25s -11s linear infinite}@keyframes fall-231{52.168%{transform:translate(35.0206vw,52.168vh) scale(.7202)}to{transform:translate(32.3054vw,100vh) scale(.7202)}}.snow:nth-child(232){opacity:.1878;transform:translate(28.1847vw,-10px) scale(.6275);animation:fall-232 25s -23s linear infinite}@keyframes fall-232{48.784%{transform:translate(35.5923vw,48.784vh) scale(.6275)}to{transform:translate(31.8885vw,100vh) scale(.6275)}}.snow:nth-child(233){opacity:.0642;transform:translate(57.2442vw,-10px) scale(.6715);animation:fall-233 18s -10s linear infinite}@keyframes fall-233{30.93%{transform:translate(58.9611vw,30.93vh) scale(.6715)}to{transform:translate(58.10265vw,100vh) scale(.6715)}}.snow:nth-child(234){opacity:1.5444;transform:translate(65.8145vw,-10px) scale(.662);animation:fall-234 26s -11s linear infinite}@keyframes fall-234{41.362%{transform:translate(70.7542vw,41.362vh) scale(.662)}to{transform:translate(68.28435vw,100vh) scale(.662)}}.snow:nth-child(235){opacity:1.4918;transform:translate(70.5398vw,-10px) scale(.2686);animation:fall-235 18s -14s linear infinite}@keyframes fall-235{72.342%{transform:translate(69.3933vw,72.342vh) scale(.2686)}to{transform:translate(69.96655vw,100vh) scale(.2686)}}.snow:nth-child(236){opacity:1.477;transform:translate(95.0984vw,-10px) scale(.4108);animation:fall-236 27s -30s linear infinite}@keyframes fall-236{32.903%{transform:translate(101.1301vw,32.903vh) scale(.4108)}to{transform:translate(98.11425vw,100vh) scale(.4108)}}.snow:nth-child(237){opacity:1.935;transform:translate(74.9701vw,-10px) scale(.5074);animation:fall-237 24s -14s linear infinite}@keyframes fall-237{63.924%{transform:translate(65.8621vw,63.924vh) scale(.5074)}to{transform:translate(70.4161vw,100vh) scale(.5074)}}.snow:nth-child(238){opacity:1.8446;transform:translate(10.924vw,-10px) scale(.0926);animation:fall-238 16s -15s linear infinite}@keyframes fall-238{76.333%{transform:translate(15.1088vw,76.333vh) scale(.0926)}to{transform:translate(13.0164vw,100vh) scale(.0926)}}.snow:nth-child(239){opacity:.3276;transform:translate(33.6204vw,-10px) scale(.4922);animation:fall-239 13s -27s linear infinite}@keyframes fall-239{79.588%{transform:translate(29.8284vw,79.588vh) scale(.4922)}to{transform:translate(31.7244vw,100vh) scale(.4922)}}.snow:nth-child(240){opacity:1.4494;transform:translate(64.4849vw,-10px) scale(.5953);animation:fall-240 25s -17s linear infinite}@keyframes fall-240{65.777%{transform:translate(70.1096vw,65.777vh) scale(.5953)}to{transform:translate(67.29725vw,100vh) scale(.5953)}}.snow:nth-child(241){opacity:.4914;transform:translate(37.7554vw,-10px) scale(.2949);animation:fall-241 25s -30s linear infinite}@keyframes fall-241{44.308%{transform:translate(40.0583vw,44.308vh) scale(.2949)}to{transform:translate(38.90685vw,100vh) scale(.2949)}}.snow:nth-child(242){opacity:1.2916;transform:translate(1.0732vw,-10px) scale(.7882);animation:fall-242 19s -9s linear infinite}@keyframes fall-242{44.732%{transform:translate(4.4895vw,44.732vh) scale(.7882)}to{transform:translate(2.78135vw,100vh) scale(.7882)}}.snow:nth-child(243){opacity:.1152;transform:translate(71.73vw,-10px) scale(.6791);animation:fall-243 22s -23s linear infinite}@keyframes fall-243{51.981%{transform:translate(80.8949vw,51.981vh) scale(.6791)}to{transform:translate(76.31245vw,100vh) scale(.6791)}}.snow:nth-child(244){opacity:.397;transform:translate(87.1563vw,-10px) scale(.1273);animation:fall-244 20s -28s linear infinite}@keyframes fall-244{54.022%{transform:translate(81.9626vw,54.022vh) scale(.1273)}to{transform:translate(84.55945vw,100vh) scale(.1273)}}.snow:nth-child(245){opacity:1.6636;transform:translate(60.9454vw,-10px) scale(.596);animation:fall-245 24s -8s linear infinite}@keyframes fall-245{48.278%{transform:translate(60.4051vw,48.278vh) scale(.596)}to{transform:translate(60.67525vw,100vh) scale(.596)}}.snow:nth-child(246){opacity:.4162;transform:translate(57.5715vw,-10px) scale(.5866);animation:fall-246 20s -7s linear infinite}@keyframes fall-246{73.095%{transform:translate(66.166vw,73.095vh) scale(.5866)}to{transform:translate(61.86875vw,100vh) scale(.5866)}}.snow:nth-child(247){opacity:1.0696;transform:translate(29.0161vw,-10px) scale(.0932);animation:fall-247 19s -28s linear infinite}@keyframes fall-247{62.465%{transform:translate(36.7888vw,62.465vh) scale(.0932)}to{transform:translate(32.90245vw,100vh) scale(.0932)}}.snow:nth-child(248){opacity:1.7856;transform:translate(95.7165vw,-10px) scale(.746);animation:fall-248 24s -16s linear infinite}@keyframes fall-248{37.639%{transform:translate(96.5373vw,37.639vh) scale(.746)}to{transform:translate(96.1269vw,100vh) scale(.746)}}.snow:nth-child(249){opacity:1.2092;transform:translate(78.299vw,-10px) scale(.667);animation:fall-249 22s -25s linear infinite}@keyframes fall-249{43.814%{transform:translate(81.8673vw,43.814vh) scale(.667)}to{transform:translate(80.08315vw,100vh) scale(.667)}}.snow:nth-child(250){opacity:.304;transform:translate(90.7352vw,-10px) scale(.6017);animation:fall-250 26s -27s linear infinite}@keyframes fall-250{51.803%{transform:translate(98.4394vw,51.803vh) scale(.6017)}to{transform:translate(94.5873vw,100vh) scale(.6017)}}.snow:nth-child(251){opacity:.7394;transform:translate(59.5248vw,-10px) scale(.2363);animation:fall-251 22s -29s linear infinite}@keyframes fall-251{72.071%{transform:translate(57.0801vw,72.071vh) scale(.2363)}to{transform:translate(58.30245vw,100vh) scale(.2363)}}.snow:nth-child(252){opacity:.4742;transform:translate(7.5303vw,-10px) scale(.7933);animation:fall-252 23s -21s linear infinite}@keyframes fall-252{57.64%{transform:translate(7.7392vw,57.64vh) scale(.7933)}to{transform:translate(7.63475vw,100vh) scale(.7933)}}.snow:nth-child(253){opacity:1.8232;transform:translate(43.5725vw,-10px) scale(.6564);animation:fall-253 30s -13s linear infinite}@keyframes fall-253{53.11%{transform:translate(37.5387vw,53.11vh) scale(.6564)}to{transform:translate(40.5556vw,100vh) scale(.6564)}}.snow:nth-child(254){opacity:1.6228;transform:translate(75.5634vw,-10px) scale(.6767);animation:fall-254 18s -23s linear infinite}@keyframes fall-254{41.12%{transform:translate(68.4998vw,41.12vh) scale(.6767)}to{transform:translate(72.0316vw,100vh) scale(.6767)}}.snow:nth-child(255){opacity:1.2108;transform:translate(78.8763vw,-10px) scale(.0455);animation:fall-255 21s -6s linear infinite}@keyframes fall-255{35.487%{transform:translate(83.1761vw,35.487vh) scale(.0455)}to{transform:translate(81.0262vw,100vh) scale(.0455)}}.snow:nth-child(256){opacity:.106;transform:translate(26.6339vw,-10px) scale(.8262);animation:fall-256 16s -3s linear infinite}@keyframes fall-256{69.909%{transform:translate(21.7137vw,69.909vh) scale(.8262)}to{transform:translate(24.1738vw,100vh) scale(.8262)}}.snow:nth-child(257){opacity:1.5554;transform:translate(44.5218vw,-10px) scale(.8635);animation:fall-257 11s -19s linear infinite}@keyframes fall-257{68.8%{transform:translate(50.9845vw,68.8vh) scale(.8635)}to{transform:translate(47.75315vw,100vh) scale(.8635)}}.snow:nth-child(258){opacity:1.0058;transform:translate(56.111vw,-10px) scale(.0723);animation:fall-258 15s -18s linear infinite}@keyframes fall-258{35.097%{transform:translate(46.7328vw,35.097vh) scale(.0723)}to{transform:translate(51.4219vw,100vh) scale(.0723)}}.snow:nth-child(259){opacity:1.8796;transform:translate(7.1545vw,-10px) scale(.9702);animation:fall-259 28s -21s linear infinite}@keyframes fall-259{38.825%{transform:translate(13.9039vw,38.825vh) scale(.9702)}to{transform:translate(10.5292vw,100vh) scale(.9702)}}.snow:nth-child(260){opacity:1.7974;transform:translate(20.8561vw,-10px) scale(.3845);animation:fall-260 14s -16s linear infinite}@keyframes fall-260{38.84%{transform:translate(17.948vw,38.84vh) scale(.3845)}to{transform:translate(19.40205vw,100vh) scale(.3845)}}.snow:nth-child(261){opacity:1.8408;transform:translate(33.5754vw,-10px) scale(.5033);animation:fall-261 21s -9s linear infinite}@keyframes fall-261{50.208%{transform:translate(36.1588vw,50.208vh) scale(.5033)}to{transform:translate(34.8671vw,100vh) scale(.5033)}}.snow:nth-child(262){opacity:.7978;transform:translate(47.1875vw,-10px) scale(.2029);animation:fall-262 15s -11s linear infinite}@keyframes fall-262{59.859%{transform:translate(42.1428vw,59.859vh) scale(.2029)}to{transform:translate(44.66515vw,100vh) scale(.2029)}}.snow:nth-child(263){opacity:.3726;transform:translate(54.4616vw,-10px) scale(.4347);animation:fall-263 25s -16s linear infinite}@keyframes fall-263{43.517%{transform:translate(62.9891vw,43.517vh) scale(.4347)}to{transform:translate(58.72535vw,100vh) scale(.4347)}}.snow:nth-child(264){opacity:1.1194;transform:translate(5.9109vw,-10px) scale(.7715);animation:fall-264 18s -8s linear infinite}@keyframes fall-264{49.513%{transform:translate(1.3772vw,49.513vh) scale(.7715)}to{transform:translate(3.64405vw,100vh) scale(.7715)}}.snow:nth-child(265){opacity:.7376;transform:translate(45.7037vw,-10px) scale(.9187);animation:fall-265 15s -3s linear infinite}@keyframes fall-265{60.829%{transform:translate(36.2351vw,60.829vh) scale(.9187)}to{transform:translate(40.9694vw,100vh) scale(.9187)}}.snow:nth-child(266){opacity:1.0144;transform:translate(95.9341vw,-10px) scale(.3053);animation:fall-266 11s -15s linear infinite}@keyframes fall-266{76.811%{transform:translate(87.5727vw,76.811vh) scale(.3053)}to{transform:translate(91.7534vw,100vh) scale(.3053)}}.snow:nth-child(267){opacity:1.5464;transform:translate(97.8881vw,-10px) scale(.0221);animation:fall-267 29s -21s linear infinite}@keyframes fall-267{65.33%{transform:translate(90.1052vw,65.33vh) scale(.0221)}to{transform:translate(93.99665vw,100vh) scale(.0221)}}.snow:nth-child(268){opacity:1.9634;transform:translate(51.2741vw,-10px) scale(.6417);animation:fall-268 17s -28s linear infinite}@keyframes fall-268{65.868%{transform:translate(46.967vw,65.868vh) scale(.6417)}to{transform:translate(49.12055vw,100vh) scale(.6417)}}.snow:nth-child(269){opacity:.146;transform:translate(83.6989vw,-10px) scale(.6822);animation:fall-269 20s -17s linear infinite}@keyframes fall-269{51.386%{transform:translate(93.4134vw,51.386vh) scale(.6822)}to{transform:translate(88.55615vw,100vh) scale(.6822)}}.snow:nth-child(270){opacity:1.1106;transform:translate(59.0249vw,-10px) scale(.3246);animation:fall-270 12s -14s linear infinite}@keyframes fall-270{77.558%{transform:translate(61.2937vw,77.558vh) scale(.3246)}to{transform:translate(60.1593vw,100vh) scale(.3246)}}.snow:nth-child(271){opacity:1.4004;transform:translate(22.1428vw,-10px) scale(.9696);animation:fall-271 30s -20s linear infinite}@keyframes fall-271{58.698%{transform:translate(23.7919vw,58.698vh) scale(.9696)}to{transform:translate(22.96735vw,100vh) scale(.9696)}}.snow:nth-child(272){opacity:.3634;transform:translate(64.7333vw,-10px) scale(.6281);animation:fall-272 13s -17s linear infinite}@keyframes fall-272{49.492%{transform:translate(73.184vw,49.492vh) scale(.6281)}to{transform:translate(68.95865vw,100vh) scale(.6281)}}.snow:nth-child(273){opacity:1.1752;transform:translate(7.9438vw,-10px) scale(.0609);animation:fall-273 17s -30s linear infinite}@keyframes fall-273{64.777%{transform:translate(1.7187vw,64.777vh) scale(.0609)}to{transform:translate(4.83125vw,100vh) scale(.0609)}}.snow:nth-child(274){opacity:1.5292;transform:translate(54.2905vw,-10px) scale(.0523);animation:fall-274 25s -29s linear infinite}@keyframes fall-274{66.179%{transform:translate(63.5663vw,66.179vh) scale(.0523)}to{transform:translate(58.9284vw,100vh) scale(.0523)}}.snow:nth-child(275){opacity:1.2316;transform:translate(62.5981vw,-10px) scale(.7631);animation:fall-275 20s -23s linear infinite}@keyframes fall-275{53.408%{transform:translate(62.0716vw,53.408vh) scale(.7631)}to{transform:translate(62.33485vw,100vh) scale(.7631)}}.snow:nth-child(276){opacity:1.7032;transform:translate(5.4217vw,-10px) scale(.1635);animation:fall-276 14s -10s linear infinite}@keyframes fall-276{68.543%{transform:translate(12.599vw,68.543vh) scale(.1635)}to{transform:translate(9.01035vw,100vh) scale(.1635)}}.snow:nth-child(277){opacity:1.7358;transform:translate(91.27vw,-10px) scale(.7326);animation:fall-277 26s -4s linear infinite}@keyframes fall-277{48.557%{transform:translate(88.956vw,48.557vh) scale(.7326)}to{transform:translate(90.113vw,100vh) scale(.7326)}}.snow:nth-child(278){opacity:.0622;transform:translate(20.351vw,-10px) scale(.0695);animation:fall-278 27s -27s linear infinite}@keyframes fall-278{58.567%{transform:translate(13.5025vw,58.567vh) scale(.0695)}to{transform:translate(16.92675vw,100vh) scale(.0695)}}.snow:nth-child(279){opacity:.7616;transform:translate(54.1033vw,-10px) scale(.2965);animation:fall-279 13s -11s linear infinite}@keyframes fall-279{56.963%{transform:translate(47.6056vw,56.963vh) scale(.2965)}to{transform:translate(50.85445vw,100vh) scale(.2965)}}.snow:nth-child(280){opacity:.9172;transform:translate(7.5759vw,-10px) scale(.8068);animation:fall-280 25s -30s linear infinite}@keyframes fall-280{36.756%{transform:translate(3.2669vw,36.756vh) scale(.8068)}to{transform:translate(5.4214vw,100vh) scale(.8068)}}.snow:nth-child(281){opacity:1.2012;transform:translate(67.6124vw,-10px) scale(.2691);animation:fall-281 25s -11s linear infinite}@keyframes fall-281{43.92%{transform:translate(64.9316vw,43.92vh) scale(.2691)}to{transform:translate(66.272vw,100vh) scale(.2691)}}.snow:nth-child(282){opacity:1.7456;transform:translate(53.3086vw,-10px) scale(.5047);animation:fall-282 14s -19s linear infinite}@keyframes fall-282{73.244%{transform:translate(61.5501vw,73.244vh) scale(.5047)}to{transform:translate(57.42935vw,100vh) scale(.5047)}}.snow:nth-child(283){opacity:.2302;transform:translate(75.0475vw,-10px) scale(.0966);animation:fall-283 14s -19s linear infinite}@keyframes fall-283{30.484%{transform:translate(78.2928vw,30.484vh) scale(.0966)}to{transform:translate(76.67015vw,100vh) scale(.0966)}}.snow:nth-child(284){opacity:1.8234;transform:translate(69.0814vw,-10px) scale(.6842);animation:fall-284 30s -30s linear infinite}@keyframes fall-284{46.342%{transform:translate(63.3694vw,46.342vh) scale(.6842)}to{transform:translate(66.2254vw,100vh) scale(.6842)}}.snow:nth-child(285){opacity:.2596;transform:translate(68.6546vw,-10px) scale(.3421);animation:fall-285 24s -28s linear infinite}@keyframes fall-285{48.713%{transform:translate(66.3521vw,48.713vh) scale(.3421)}to{transform:translate(67.50335vw,100vh) scale(.3421)}}.snow:nth-child(286){opacity:.5414;transform:translate(94.9029vw,-10px) scale(.9827);animation:fall-286 22s -26s linear infinite}@keyframes fall-286{70.023%{transform:translate(86.9913vw,70.023vh) scale(.9827)}to{transform:translate(90.9471vw,100vh) scale(.9827)}}.snow:nth-child(287){opacity:1.7884;transform:translate(8.9365vw,-10px) scale(.5966);animation:fall-287 20s -3s linear infinite}@keyframes fall-287{54.041%{transform:translate(9.8626vw,54.041vh) scale(.5966)}to{transform:translate(9.39955vw,100vh) scale(.5966)}}.snow:nth-child(288){opacity:.2668;transform:translate(90.7807vw,-10px) scale(.9703);animation:fall-288 26s -9s linear infinite}@keyframes fall-288{68.75%{transform:translate(89.5775vw,68.75vh) scale(.9703)}to{transform:translate(90.1791vw,100vh) scale(.9703)}}.snow:nth-child(289){opacity:1.8456;transform:translate(11.182vw,-10px) scale(.6883);animation:fall-289 26s -12s linear infinite}@keyframes fall-289{57.818%{transform:translate(5.206vw,57.818vh) scale(.6883)}to{transform:translate(8.194vw,100vh) scale(.6883)}}.snow:nth-child(290){opacity:1.277;transform:translate(79.5322vw,-10px) scale(.4317);animation:fall-290 13s -5s linear infinite}@keyframes fall-290{54.105%{transform:translate(80.301vw,54.105vh) scale(.4317)}to{transform:translate(79.9166vw,100vh) scale(.4317)}}.snow:nth-child(291){opacity:1.388;transform:translate(90.0768vw,-10px) scale(.9979);animation:fall-291 24s -23s linear infinite}@keyframes fall-291{74.152%{transform:translate(96.2721vw,74.152vh) scale(.9979)}to{transform:translate(93.17445vw,100vh) scale(.9979)}}.snow:nth-child(292){opacity:.1432;transform:translate(41.4975vw,-10px) scale(.7402);animation:fall-292 27s -27s linear infinite}@keyframes fall-292{30.497%{transform:translate(50.9476vw,30.497vh) scale(.7402)}to{transform:translate(46.22255vw,100vh) scale(.7402)}}.snow:nth-child(293){opacity:.1604;transform:translate(41.1917vw,-10px) scale(.1907);animation:fall-293 14s -27s linear infinite}@keyframes fall-293{59.956%{transform:translate(50.9754vw,59.956vh) scale(.1907)}to{transform:translate(46.08355vw,100vh) scale(.1907)}}.snow:nth-child(294){opacity:.4622;transform:translate(13.7665vw,-10px) scale(.3328);animation:fall-294 24s -17s linear infinite}@keyframes fall-294{70.059%{transform:translate(13.9236vw,70.059vh) scale(.3328)}to{transform:translate(13.84505vw,100vh) scale(.3328)}}.snow:nth-child(295){opacity:.1562;transform:translate(86.4161vw,-10px) scale(.4849);animation:fall-295 19s -3s linear infinite}@keyframes fall-295{51.729%{transform:translate(94.875vw,51.729vh) scale(.4849)}to{transform:translate(90.64555vw,100vh) scale(.4849)}}.snow:nth-child(296){opacity:.6848;transform:translate(31.4744vw,-10px) scale(.8854);animation:fall-296 28s -15s linear infinite}@keyframes fall-296{52.577%{transform:translate(37.3522vw,52.577vh) scale(.8854)}to{transform:translate(34.4133vw,100vh) scale(.8854)}}.snow:nth-child(297){opacity:.796;transform:translate(66.755vw,-10px) scale(.8616);animation:fall-297 29s -16s linear infinite}@keyframes fall-297{50.817%{transform:translate(61.6057vw,50.817vh) scale(.8616)}to{transform:translate(64.18035vw,100vh) scale(.8616)}}.snow:nth-child(298){opacity:1.6476;transform:translate(31.3292vw,-10px) scale(.3662);animation:fall-298 25s -23s linear infinite}@keyframes fall-298{62.256%{transform:translate(39.3144vw,62.256vh) scale(.3662)}to{transform:translate(35.3218vw,100vh) scale(.3662)}}.snow:nth-child(299){opacity:1.0718;transform:translate(82.4624vw,-10px) scale(.624);animation:fall-299 16s -9s linear infinite}@keyframes fall-299{33.451%{transform:translate(75.4106vw,33.451vh) scale(.624)}to{transform:translate(78.9365vw,100vh) scale(.624)}}.snow:nth-child(300){opacity:.7148;transform:translate(9.4838vw,-10px) scale(.7013);animation:fall-300 13s -30s linear infinite}@keyframes fall-300{68.714%{transform:translate(8.3967vw,68.714vh) scale(.7013)}to{transform:translate(8.94025vw,100vh) scale(.7013)}}.snow:nth-child(301){opacity:1.099;transform:translate(24.4897vw,-10px) scale(.3081);animation:fall-301 22s -25s linear infinite}@keyframes fall-301{78.412%{transform:translate(14.9346vw,78.412vh) scale(.3081)}to{transform:translate(19.71215vw,100vh) scale(.3081)}}.snow:nth-child(302){opacity:1.079;transform:translate(66.1134vw,-10px) scale(.4051);animation:fall-302 26s -14s linear infinite}@keyframes fall-302{75.79%{transform:translate(62.8479vw,75.79vh) scale(.4051)}to{transform:translate(64.48065vw,100vh) scale(.4051)}}.snow:nth-child(303){opacity:1.2184;transform:translate(71.3863vw,-10px) scale(.6623);animation:fall-303 18s -9s linear infinite}@keyframes fall-303{32.636%{transform:translate(73.4758vw,32.636vh) scale(.6623)}to{transform:translate(72.43105vw,100vh) scale(.6623)}}.snow:nth-child(304){opacity:.743;transform:translate(59.2652vw,-10px) scale(.1518);animation:fall-304 19s -26s linear infinite}@keyframes fall-304{53.796%{transform:translate(56.1427vw,53.796vh) scale(.1518)}to{transform:translate(57.70395vw,100vh) scale(.1518)}}.snow:nth-child(305){opacity:.0712;transform:translate(92.0315vw,-10px) scale(.0559);animation:fall-305 13s -22s linear infinite}@keyframes fall-305{42.207%{transform:translate(100.339vw,42.207vh) scale(.0559)}to{transform:translate(96.18525vw,100vh) scale(.0559)}}.snow:nth-child(306){opacity:1.4916;transform:translate(97.9327vw,-10px) scale(.8907);animation:fall-306 26s -20s linear infinite}@keyframes fall-306{40.037%{transform:translate(106.9135vw,40.037vh) scale(.8907)}to{transform:translate(102.4231vw,100vh) scale(.8907)}}.snow:nth-child(307){opacity:.69;transform:translate(12.6494vw,-10px) scale(.1524);animation:fall-307 29s -1s linear infinite}@keyframes fall-307{75.487%{transform:translate(14.0819vw,75.487vh) scale(.1524)}to{transform:translate(13.36565vw,100vh) scale(.1524)}}.snow:nth-child(308){opacity:1.6526;transform:translate(80.0942vw,-10px) scale(.4114);animation:fall-308 26s -21s linear infinite}@keyframes fall-308{79.647%{transform:translate(74.6139vw,79.647vh) scale(.4114)}to{transform:translate(77.35405vw,100vh) scale(.4114)}}.snow:nth-child(309){opacity:.9236;transform:translate(8.0259vw,-10px) scale(.0339);animation:fall-309 10s -23s linear infinite}@keyframes fall-309{33.737%{transform:translate(3.6476vw,33.737vh) scale(.0339)}to{transform:translate(5.83675vw,100vh) scale(.0339)}}.snow:nth-child(310){opacity:.2378;transform:translate(25.3237vw,-10px) scale(.0252);animation:fall-310 26s -20s linear infinite}@keyframes fall-310{41.188%{transform:translate(24.9535vw,41.188vh) scale(.0252)}to{transform:translate(25.1386vw,100vh) scale(.0252)}}.snow:nth-child(311){opacity:1.7954;transform:translate(78.2771vw,-10px) scale(.8342);animation:fall-311 19s -25s linear infinite}@keyframes fall-311{47.131%{transform:translate(78.6308vw,47.131vh) scale(.8342)}to{transform:translate(78.45395vw,100vh) scale(.8342)}}.snow:nth-child(312){opacity:1.6482;transform:translate(82.1609vw,-10px) scale(.9263);animation:fall-312 26s -16s linear infinite}@keyframes fall-312{64.796%{transform:translate(85.0247vw,64.796vh) scale(.9263)}to{transform:translate(83.5928vw,100vh) scale(.9263)}}.snow:nth-child(313){opacity:1.048;transform:translate(29.6267vw,-10px) scale(.4367);animation:fall-313 24s -27s linear infinite}@keyframes fall-313{62.155%{transform:translate(30.5593vw,62.155vh) scale(.4367)}to{transform:translate(30.093vw,100vh) scale(.4367)}}.snow:nth-child(314){opacity:1.206;transform:translate(53.4417vw,-10px) scale(.1533);animation:fall-314 21s -21s linear infinite}@keyframes fall-314{41.215%{transform:translate(44.5909vw,41.215vh) scale(.1533)}to{transform:translate(49.0163vw,100vh) scale(.1533)}}.snow:nth-child(315){opacity:.9056;transform:translate(33.4741vw,-10px) scale(.4908);animation:fall-315 10s -4s linear infinite}@keyframes fall-315{44.568%{transform:translate(36.5398vw,44.568vh) scale(.4908)}to{transform:translate(35.00695vw,100vh) scale(.4908)}}.snow:nth-child(316){opacity:1.2178;transform:translate(27.8809vw,-10px) scale(.9084);animation:fall-316 14s -1s linear infinite}@keyframes fall-316{38.028%{transform:translate(19.8831vw,38.028vh) scale(.9084)}to{transform:translate(23.882vw,100vh) scale(.9084)}}.snow:nth-child(317){opacity:.8902;transform:translate(60.0692vw,-10px) scale(.3025);animation:fall-317 27s -11s linear infinite}@keyframes fall-317{34.016%{transform:translate(54.5815vw,34.016vh) scale(.3025)}to{transform:translate(57.32535vw,100vh) scale(.3025)}}.snow:nth-child(318){opacity:1.158;transform:translate(61.5567vw,-10px) scale(.3863);animation:fall-318 12s -19s linear infinite}@keyframes fall-318{38.724%{transform:translate(64.3071vw,38.724vh) scale(.3863)}to{transform:translate(62.9319vw,100vh) scale(.3863)}}.snow:nth-child(319){opacity:1.332;transform:translate(3.1921vw,-10px) scale(.5381);animation:fall-319 29s -4s linear infinite}@keyframes fall-319{37.64%{transform:translate(-3.6059vw,37.64vh) scale(.5381)}to{transform:translate(-.2069vw,100vh) scale(.5381)}}.snow:nth-child(320){opacity:.6348;transform:translate(37.7794vw,-10px) scale(.4828);animation:fall-320 25s -4s linear infinite}@keyframes fall-320{67.235%{transform:translate(45.9909vw,67.235vh) scale(.4828)}to{transform:translate(41.88515vw,100vh) scale(.4828)}}.snow:nth-child(321){opacity:1.5636;transform:translate(39.425vw,-10px) scale(.414);animation:fall-321 14s -16s linear infinite}@keyframes fall-321{33.724%{transform:translate(48.8409vw,33.724vh) scale(.414)}to{transform:translate(44.13295vw,100vh) scale(.414)}}.snow:nth-child(322){opacity:.119;transform:translate(62.3888vw,-10px) scale(.2185);animation:fall-322 18s -30s linear infinite}@keyframes fall-322{63.205%{transform:translate(57.4379vw,63.205vh) scale(.2185)}to{transform:translate(59.91335vw,100vh) scale(.2185)}}.snow:nth-child(323){opacity:1.9228;transform:translate(56.9725vw,-10px) scale(.0964);animation:fall-323 16s -9s linear infinite}@keyframes fall-323{39.291%{transform:translate(60.1545vw,39.291vh) scale(.0964)}to{transform:translate(58.5635vw,100vh) scale(.0964)}}.snow:nth-child(324){opacity:1.1146;transform:translate(92.5509vw,-10px) scale(.2813);animation:fall-324 25s -23s linear infinite}@keyframes fall-324{56.898%{transform:translate(95.589vw,56.898vh) scale(.2813)}to{transform:translate(94.06995vw,100vh) scale(.2813)}}.snow:nth-child(325){opacity:1.187;transform:translate(81.6886vw,-10px) scale(.9222);animation:fall-325 18s -9s linear infinite}@keyframes fall-325{76.048%{transform:translate(79.0412vw,76.048vh) scale(.9222)}to{transform:translate(80.3649vw,100vh) scale(.9222)}}.snow:nth-child(326){opacity:.0338;transform:translate(45.9212vw,-10px) scale(.8662);animation:fall-326 20s -26s linear infinite}@keyframes fall-326{48.161%{transform:translate(46.6685vw,48.161vh) scale(.8662)}to{transform:translate(46.29485vw,100vh) scale(.8662)}}.snow:nth-child(327){opacity:1.8262;transform:translate(17.0185vw,-10px) scale(.3672);animation:fall-327 12s -16s linear infinite}@keyframes fall-327{61.895%{transform:translate(24.1008vw,61.895vh) scale(.3672)}to{transform:translate(20.55965vw,100vh) scale(.3672)}}.snow:nth-child(328){opacity:1.9908;transform:translate(14.2651vw,-10px) scale(.7862);animation:fall-328 15s -24s linear infinite}@keyframes fall-328{35.426%{transform:translate(19.2434vw,35.426vh) scale(.7862)}to{transform:translate(16.75425vw,100vh) scale(.7862)}}.snow:nth-child(329){opacity:.0594;transform:translate(18.7384vw,-10px) scale(.8915);animation:fall-329 30s -26s linear infinite}@keyframes fall-329{53.925%{transform:translate(25.3003vw,53.925vh) scale(.8915)}to{transform:translate(22.01935vw,100vh) scale(.8915)}}.snow:nth-child(330){opacity:1.223;transform:translate(73.8608vw,-10px) scale(.356);animation:fall-330 25s -29s linear infinite}@keyframes fall-330{62.528%{transform:translate(80.1361vw,62.528vh) scale(.356)}to{transform:translate(76.99845vw,100vh) scale(.356)}}.snow:nth-child(331){opacity:1.6736;transform:translate(58.0571vw,-10px) scale(.6247);animation:fall-331 15s -3s linear infinite}@keyframes fall-331{67.871%{transform:translate(52.5253vw,67.871vh) scale(.6247)}to{transform:translate(55.2912vw,100vh) scale(.6247)}}.snow:nth-child(332){opacity:1.1868;transform:translate(25.626vw,-10px) scale(.6982);animation:fall-332 15s -5s linear infinite}@keyframes fall-332{61.46%{transform:translate(16.7665vw,61.46vh) scale(.6982)}to{transform:translate(21.19625vw,100vh) scale(.6982)}}.snow:nth-child(333){opacity:.7408;transform:translate(59.6451vw,-10px) scale(.8092);animation:fall-333 27s -22s linear infinite}@keyframes fall-333{57.666%{transform:translate(56.8525vw,57.666vh) scale(.8092)}to{transform:translate(58.2488vw,100vh) scale(.8092)}}.snow:nth-child(334){opacity:.3338;transform:translate(38.1353vw,-10px) scale(.6408);animation:fall-334 12s -4s linear infinite}@keyframes fall-334{56.27%{transform:translate(36.7977vw,56.27vh) scale(.6408)}to{transform:translate(37.4665vw,100vh) scale(.6408)}}.snow:nth-child(335){opacity:1.0828;transform:translate(62.3164vw,-10px) scale(.9371);animation:fall-335 30s -22s linear infinite}@keyframes fall-335{76.991%{transform:translate(55.675vw,76.991vh) scale(.9371)}to{transform:translate(58.9957vw,100vh) scale(.9371)}}.snow:nth-child(336){opacity:1.149;transform:translate(68.5246vw,-10px) scale(.8128);animation:fall-336 28s -1s linear infinite}@keyframes fall-336{58.236%{transform:translate(69.1279vw,58.236vh) scale(.8128)}to{transform:translate(68.82625vw,100vh) scale(.8128)}}.snow:nth-child(337){opacity:1.821;transform:translate(54.9132vw,-10px) scale(.499);animation:fall-337 19s -22s linear infinite}@keyframes fall-337{53.619%{transform:translate(62.0438vw,53.619vh) scale(.499)}to{transform:translate(58.4785vw,100vh) scale(.499)}}.snow:nth-child(338){opacity:1.3932;transform:translate(93.0813vw,-10px) scale(.0091);animation:fall-338 13s -14s linear infinite}@keyframes fall-338{38.968%{transform:translate(95.3259vw,38.968vh) scale(.0091)}to{transform:translate(94.2036vw,100vh) scale(.0091)}}.snow:nth-child(339){opacity:.2824;transform:translate(97.1185vw,-10px) scale(.7371);animation:fall-339 19s -17s linear infinite}@keyframes fall-339{69.281%{transform:translate(93.929vw,69.281vh) scale(.7371)}to{transform:translate(95.52375vw,100vh) scale(.7371)}}.snow:nth-child(340){opacity:.0716;transform:translate(16.5647vw,-10px) scale(.3729);animation:fall-340 21s -10s linear infinite}@keyframes fall-340{46.534%{transform:translate(10.7393vw,46.534vh) scale(.3729)}to{transform:translate(13.652vw,100vh) scale(.3729)}}.snow:nth-child(341){opacity:1.719;transform:translate(71.1288vw,-10px) scale(.0716);animation:fall-341 18s -22s linear infinite}@keyframes fall-341{33.311%{transform:translate(80.7462vw,33.311vh) scale(.0716)}to{transform:translate(75.9375vw,100vh) scale(.0716)}}.snow:nth-child(342){opacity:1.7662;transform:translate(63.0034vw,-10px) scale(.1606);animation:fall-342 29s -9s linear infinite}@keyframes fall-342{50.29%{transform:translate(71.133vw,50.29vh) scale(.1606)}to{transform:translate(67.0682vw,100vh) scale(.1606)}}.snow:nth-child(343){opacity:.3672;transform:translate(92.0249vw,-10px) scale(.5755);animation:fall-343 28s -26s linear infinite}@keyframes fall-343{66.355%{transform:translate(87.1992vw,66.355vh) scale(.5755)}to{transform:translate(89.61205vw,100vh) scale(.5755)}}.snow:nth-child(344){opacity:1.4178;transform:translate(32.9899vw,-10px) scale(.4696);animation:fall-344 26s -13s linear infinite}@keyframes fall-344{71.603%{transform:translate(39.6147vw,71.603vh) scale(.4696)}to{transform:translate(36.3023vw,100vh) scale(.4696)}}.snow:nth-child(345){opacity:.3254;transform:translate(72.4247vw,-10px) scale(.7986);animation:fall-345 27s -18s linear infinite}@keyframes fall-345{55.41%{transform:translate(73.9317vw,55.41vh) scale(.7986)}to{transform:translate(73.1782vw,100vh) scale(.7986)}}.snow:nth-child(346){opacity:1.7436;transform:translate(58.3696vw,-10px) scale(.9027);animation:fall-346 28s -16s linear infinite}@keyframes fall-346{74.503%{transform:translate(50.3201vw,74.503vh) scale(.9027)}to{transform:translate(54.34485vw,100vh) scale(.9027)}}.snow:nth-child(347){opacity:1.1812;transform:translate(3.6787vw,-10px) scale(.1617);animation:fall-347 14s -6s linear infinite}@keyframes fall-347{46.547%{transform:translate(-3.0167vw,46.547vh) scale(.1617)}to{transform:translate(.331vw,100vh) scale(.1617)}}.snow:nth-child(348){opacity:.0616;transform:translate(44.2108vw,-10px) scale(.7927);animation:fall-348 16s -29s linear infinite}@keyframes fall-348{30.609%{transform:translate(41.7143vw,30.609vh) scale(.7927)}to{transform:translate(42.96255vw,100vh) scale(.7927)}}.snow:nth-child(349){opacity:.1992;transform:translate(86.4496vw,-10px) scale(.1037);animation:fall-349 30s -25s linear infinite}@keyframes fall-349{62.376%{transform:translate(94.601vw,62.376vh) scale(.1037)}to{transform:translate(90.5253vw,100vh) scale(.1037)}}.snow:nth-child(350){opacity:.206;transform:translate(41.3882vw,-10px) scale(.4275);animation:fall-350 11s -1s linear infinite}@keyframes fall-350{62.317%{transform:translate(47.2598vw,62.317vh) scale(.4275)}to{transform:translate(44.324vw,100vh) scale(.4275)}}.snow:nth-child(351){opacity:.3474;transform:translate(71.2086vw,-10px) scale(.0947);animation:fall-351 17s -16s linear infinite}@keyframes fall-351{60.552%{transform:translate(62.5971vw,60.552vh) scale(.0947)}to{transform:translate(66.90285vw,100vh) scale(.0947)}}.snow:nth-child(352){opacity:1.14;transform:translate(58.402vw,-10px) scale(.687);animation:fall-352 24s -7s linear infinite}@keyframes fall-352{69.085%{transform:translate(56.5145vw,69.085vh) scale(.687)}to{transform:translate(57.45825vw,100vh) scale(.687)}}.snow:nth-child(353){opacity:1.4228;transform:translate(81.9063vw,-10px) scale(.4251);animation:fall-353 24s -13s linear infinite}@keyframes fall-353{53.551%{transform:translate(82.5992vw,53.551vh) scale(.4251)}to{transform:translate(82.25275vw,100vh) scale(.4251)}}.snow:nth-child(354){opacity:1.382;transform:translate(88.0072vw,-10px) scale(.1961);animation:fall-354 30s -17s linear infinite}@keyframes fall-354{68.106%{transform:translate(87.8928vw,68.106vh) scale(.1961)}to{transform:translate(87.95vw,100vh) scale(.1961)}}.snow:nth-child(355){opacity:1.542;transform:translate(46.9542vw,-10px) scale(.7746);animation:fall-355 14s -8s linear infinite}@keyframes fall-355{57.042%{transform:translate(43.1098vw,57.042vh) scale(.7746)}to{transform:translate(45.032vw,100vh) scale(.7746)}}.snow:nth-child(356){opacity:.7356;transform:translate(83.9713vw,-10px) scale(.1146);animation:fall-356 30s -29s linear infinite}@keyframes fall-356{48.022%{transform:translate(76.4548vw,48.022vh) scale(.1146)}to{transform:translate(80.21305vw,100vh) scale(.1146)}}.snow:nth-child(357){opacity:.2936;transform:translate(.7326vw,-10px) scale(.6453);animation:fall-357 12s -27s linear infinite}@keyframes fall-357{74.375%{transform:translate(.8751vw,74.375vh) scale(.6453)}to{transform:translate(.80385vw,100vh) scale(.6453)}}.snow:nth-child(358){opacity:1.6112;transform:translate(40.6862vw,-10px) scale(.3339);animation:fall-358 10s -29s linear infinite}@keyframes fall-358{42.639%{transform:translate(31.706vw,42.639vh) scale(.3339)}to{transform:translate(36.1961vw,100vh) scale(.3339)}}.snow:nth-child(359){opacity:.2888;transform:translate(70.3079vw,-10px) scale(.6204);animation:fall-359 26s -19s linear infinite}@keyframes fall-359{68.312%{transform:translate(65.0485vw,68.312vh) scale(.6204)}to{transform:translate(67.6782vw,100vh) scale(.6204)}}.snow:nth-child(360){opacity:.2012;transform:translate(53.1662vw,-10px) scale(.9012);animation:fall-360 28s -28s linear infinite}@keyframes fall-360{71.936%{transform:translate(49.2699vw,71.936vh) scale(.9012)}to{transform:translate(51.21805vw,100vh) scale(.9012)}}.snow:nth-child(361){opacity:.1124;transform:translate(39.7633vw,-10px) scale(.6871);animation:fall-361 24s -29s linear infinite}@keyframes fall-361{39.601%{transform:translate(35.7976vw,39.601vh) scale(.6871)}to{transform:translate(37.78045vw,100vh) scale(.6871)}}.snow:nth-child(362){opacity:1.4134;transform:translate(28.2175vw,-10px) scale(.651);animation:fall-362 22s -17s linear infinite}@keyframes fall-362{54.515%{transform:translate(36.3055vw,54.515vh) scale(.651)}to{transform:translate(32.2615vw,100vh) scale(.651)}}.snow:nth-child(363){opacity:.4488;transform:translate(35.0431vw,-10px) scale(.5089);animation:fall-363 26s -6s linear infinite}@keyframes fall-363{66.761%{transform:translate(35.8092vw,66.761vh) scale(.5089)}to{transform:translate(35.42615vw,100vh) scale(.5089)}}.snow:nth-child(364){opacity:1.782;transform:translate(63.6198vw,-10px) scale(.5851);animation:fall-364 15s -15s linear infinite}@keyframes fall-364{40.481%{transform:translate(72.5342vw,40.481vh) scale(.5851)}to{transform:translate(68.077vw,100vh) scale(.5851)}}.snow:nth-child(365){opacity:1.9588;transform:translate(73.8432vw,-10px) scale(.6008);animation:fall-365 24s -4s linear infinite}@keyframes fall-365{68.973%{transform:translate(74.7466vw,68.973vh) scale(.6008)}to{transform:translate(74.2949vw,100vh) scale(.6008)}}.snow:nth-child(366){opacity:.2568;transform:translate(55.481vw,-10px) scale(.3946);animation:fall-366 24s -27s linear infinite}@keyframes fall-366{38.586%{transform:translate(54.6461vw,38.586vh) scale(.3946)}to{transform:translate(55.06355vw,100vh) scale(.3946)}}.snow:nth-child(367){opacity:1.8968;transform:translate(29.3724vw,-10px) scale(.7918);animation:fall-367 25s -22s linear infinite}@keyframes fall-367{48.55%{transform:translate(35.0379vw,48.55vh) scale(.7918)}to{transform:translate(32.20515vw,100vh) scale(.7918)}}.snow:nth-child(368){opacity:1.0844;transform:translate(.8485vw,-10px) scale(.2382);animation:fall-368 10s -9s linear infinite}@keyframes fall-368{76.275%{transform:translate(5.1649vw,76.275vh) scale(.2382)}to{transform:translate(3.0067vw,100vh) scale(.2382)}}.snow:nth-child(369){opacity:1.0604;transform:translate(57.7975vw,-10px) scale(.5444);animation:fall-369 30s -25s linear infinite}@keyframes fall-369{34.814%{transform:translate(65.9845vw,34.814vh) scale(.5444)}to{transform:translate(61.891vw,100vh) scale(.5444)}}.snow:nth-child(370){opacity:1.8402;transform:translate(13.9175vw,-10px) scale(.4063);animation:fall-370 24s -16s linear infinite}@keyframes fall-370{55.702%{transform:translate(14.044vw,55.702vh) scale(.4063)}to{transform:translate(13.98075vw,100vh) scale(.4063)}}.snow:nth-child(371){opacity:1.6278;transform:translate(95.0766vw,-10px) scale(.8219);animation:fall-371 17s -24s linear infinite}@keyframes fall-371{75.673%{transform:translate(90.5361vw,75.673vh) scale(.8219)}to{transform:translate(92.80635vw,100vh) scale(.8219)}}.snow:nth-child(372){opacity:.7476;transform:translate(72.3842vw,-10px) scale(.2299);animation:fall-372 20s -29s linear infinite}@keyframes fall-372{58.753%{transform:translate(68.4971vw,58.753vh) scale(.2299)}to{transform:translate(70.44065vw,100vh) scale(.2299)}}.snow:nth-child(373){opacity:.5776;transform:translate(57.587vw,-10px) scale(.0544);animation:fall-373 21s -8s linear infinite}@keyframes fall-373{52.203%{transform:translate(66.9205vw,52.203vh) scale(.0544)}to{transform:translate(62.25375vw,100vh) scale(.0544)}}.snow:nth-child(374){opacity:1.783;transform:translate(47.6944vw,-10px) scale(.077);animation:fall-374 21s -13s linear infinite}@keyframes fall-374{53.434%{transform:translate(44.9097vw,53.434vh) scale(.077)}to{transform:translate(46.30205vw,100vh) scale(.077)}}.snow:nth-child(375){opacity:.0838;transform:translate(50.9604vw,-10px) scale(.297);animation:fall-375 25s -30s linear infinite}@keyframes fall-375{55.29%{transform:translate(41.0223vw,55.29vh) scale(.297)}to{transform:translate(45.99135vw,100vh) scale(.297)}}.snow:nth-child(376){opacity:1.9178;transform:translate(39.4803vw,-10px) scale(.4396);animation:fall-376 25s -29s linear infinite}@keyframes fall-376{32.675%{transform:translate(42.6428vw,32.675vh) scale(.4396)}to{transform:translate(41.06155vw,100vh) scale(.4396)}}.snow:nth-child(377){opacity:.2562;transform:translate(32.1915vw,-10px) scale(.0506);animation:fall-377 23s -26s linear infinite}@keyframes fall-377{53.024%{transform:translate(24.6844vw,53.024vh) scale(.0506)}to{transform:translate(28.43795vw,100vh) scale(.0506)}}.snow:nth-child(378){opacity:.212;transform:translate(85.1081vw,-10px) scale(.7336);animation:fall-378 23s -16s linear infinite}@keyframes fall-378{71.355%{transform:translate(85.5432vw,71.355vh) scale(.7336)}to{transform:translate(85.32565vw,100vh) scale(.7336)}}.snow:nth-child(379){opacity:.8198;transform:translate(48.3101vw,-10px) scale(.8267);animation:fall-379 28s -4s linear infinite}@keyframes fall-379{41.847%{transform:translate(53.1854vw,41.847vh) scale(.8267)}to{transform:translate(50.74775vw,100vh) scale(.8267)}}.snow:nth-child(380){opacity:1.6996;transform:translate(74.9337vw,-10px) scale(.9195);animation:fall-380 10s -4s linear infinite}@keyframes fall-380{41.611%{transform:translate(70.8053vw,41.611vh) scale(.9195)}to{transform:translate(72.8695vw,100vh) scale(.9195)}}.snow:nth-child(381){opacity:.658;transform:translate(2.9124vw,-10px) scale(.1904);animation:fall-381 17s -5s linear infinite}@keyframes fall-381{44.592%{transform:translate(1.1116vw,44.592vh) scale(.1904)}to{transform:translate(2.012vw,100vh) scale(.1904)}}.snow:nth-child(382){opacity:.2762;transform:translate(81.3205vw,-10px) scale(.1355);animation:fall-382 19s -7s linear infinite}@keyframes fall-382{68.997%{transform:translate(88.9589vw,68.997vh) scale(.1355)}to{transform:translate(85.1397vw,100vh) scale(.1355)}}.snow:nth-child(383){opacity:1.2768;transform:translate(60.1558vw,-10px) scale(.8262);animation:fall-383 26s -30s linear infinite}@keyframes fall-383{55.374%{transform:translate(59.4565vw,55.374vh) scale(.8262)}to{transform:translate(59.80615vw,100vh) scale(.8262)}}.snow:nth-child(384){opacity:.2324;transform:translate(55.6655vw,-10px) scale(.3423);animation:fall-384 16s -28s linear infinite}@keyframes fall-384{63.767%{transform:translate(63.9709vw,63.767vh) scale(.3423)}to{transform:translate(59.8182vw,100vh) scale(.3423)}}.snow:nth-child(385){opacity:1.0286;transform:translate(47.4555vw,-10px) scale(.7979);animation:fall-385 30s -23s linear infinite}@keyframes fall-385{53.238%{transform:translate(39.8372vw,53.238vh) scale(.7979)}to{transform:translate(43.64635vw,100vh) scale(.7979)}}.snow:nth-child(386){opacity:.9586;transform:translate(75.9019vw,-10px) scale(.0677);animation:fall-386 22s -20s linear infinite}@keyframes fall-386{46.517%{transform:translate(76.9137vw,46.517vh) scale(.0677)}to{transform:translate(76.4078vw,100vh) scale(.0677)}}.snow:nth-child(387){opacity:.719;transform:translate(73.9011vw,-10px) scale(.5027);animation:fall-387 26s -18s linear infinite}@keyframes fall-387{44.471%{transform:translate(81.8452vw,44.471vh) scale(.5027)}to{transform:translate(77.87315vw,100vh) scale(.5027)}}.snow:nth-child(388){opacity:1.6236;transform:translate(60.1897vw,-10px) scale(.246);animation:fall-388 27s -24s linear infinite}@keyframes fall-388{56.225%{transform:translate(69.0542vw,56.225vh) scale(.246)}to{transform:translate(64.62195vw,100vh) scale(.246)}}.snow:nth-child(389){opacity:.9936;transform:translate(56.5672vw,-10px) scale(.0404);animation:fall-389 25s -20s linear infinite}@keyframes fall-389{48.17%{transform:translate(58.3484vw,48.17vh) scale(.0404)}to{transform:translate(57.4578vw,100vh) scale(.0404)}}.snow:nth-child(390){opacity:.7094;transform:translate(62.9277vw,-10px) scale(.9688);animation:fall-390 28s -30s linear infinite}@keyframes fall-390{77.788%{transform:translate(58.7245vw,77.788vh) scale(.9688)}to{transform:translate(60.8261vw,100vh) scale(.9688)}}.snow:nth-child(391){opacity:.7166;transform:translate(55.9927vw,-10px) scale(.1228);animation:fall-391 24s -24s linear infinite}@keyframes fall-391{77.085%{transform:translate(59.8726vw,77.085vh) scale(.1228)}to{transform:translate(57.93265vw,100vh) scale(.1228)}}.snow:nth-child(392){opacity:1.28;transform:translate(76.1695vw,-10px) scale(.0163);animation:fall-392 19s -1s linear infinite}@keyframes fall-392{33.177%{transform:translate(66.9816vw,33.177vh) scale(.0163)}to{transform:translate(71.57555vw,100vh) scale(.0163)}}.snow:nth-child(393){opacity:1.6784;transform:translate(21.6273vw,-10px) scale(.7002);animation:fall-393 14s -11s linear infinite}@keyframes fall-393{73.495%{transform:translate(25.5439vw,73.495vh) scale(.7002)}to{transform:translate(23.5856vw,100vh) scale(.7002)}}.snow:nth-child(394){opacity:.598;transform:translate(96.7659vw,-10px) scale(.2006);animation:fall-394 28s -9s linear infinite}@keyframes fall-394{66.028%{transform:translate(87.2416vw,66.028vh) scale(.2006)}to{transform:translate(92.00375vw,100vh) scale(.2006)}}.snow:nth-child(395){opacity:1.5838;transform:translate(59.6739vw,-10px) scale(.1612);animation:fall-395 22s -29s linear infinite}@keyframes fall-395{76.214%{transform:translate(51.6529vw,76.214vh) scale(.1612)}to{transform:translate(55.6634vw,100vh) scale(.1612)}}.snow:nth-child(396){opacity:1.1844;transform:translate(66.1045vw,-10px) scale(.32);animation:fall-396 20s -30s linear infinite}@keyframes fall-396{66.221%{transform:translate(66.2294vw,66.221vh) scale(.32)}to{transform:translate(66.16695vw,100vh) scale(.32)}}.snow:nth-child(397){opacity:.9004;transform:translate(48.7735vw,-10px) scale(.859);animation:fall-397 11s -28s linear infinite}@keyframes fall-397{42.698%{transform:translate(55.1174vw,42.698vh) scale(.859)}to{transform:translate(51.94545vw,100vh) scale(.859)}}.snow:nth-child(398){opacity:.2826;transform:translate(55.3538vw,-10px) scale(.7514);animation:fall-398 26s -3s linear infinite}@keyframes fall-398{69.217%{transform:translate(60.2996vw,69.217vh) scale(.7514)}to{transform:translate(57.8267vw,100vh) scale(.7514)}}.snow:nth-child(399){opacity:.5844;transform:translate(82.4257vw,-10px) scale(.9224);animation:fall-399 22s -21s linear infinite}@keyframes fall-399{58.899%{transform:translate(78.7628vw,58.899vh) scale(.9224)}to{transform:translate(80.59425vw,100vh) scale(.9224)}}.snow:nth-child(400){opacity:1.5812;transform:translate(31.9832vw,-10px) scale(.248);animation:fall-400 25s -8s linear infinite}@keyframes fall-400{37.811%{transform:translate(31.8382vw,37.811vh) scale(.248)}to{transform:translate(31.9107vw,100vh) scale(.248)}}\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 });
22
22
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AppComponent, decorators: [{
23
23
  type: Component,
24
- 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:.791;transform:translate(94.9126vw,-10px) scale(.6939);animation:fall-1 15s -18s linear infinite}@keyframes fall-1{79.15%{transform:translate(99.2067vw,79.15vh) scale(.6939)}to{transform:translate(97.05965vw,100vh) scale(.6939)}}.snow:nth-child(2){opacity:.057;transform:translate(72.1305vw,-10px) scale(.0118);animation:fall-2 26s -24s linear infinite}@keyframes fall-2{43.258%{transform:translate(81.1751vw,43.258vh) scale(.0118)}to{transform:translate(76.6528vw,100vh) scale(.0118)}}.snow:nth-child(3){opacity:1.0704;transform:translate(46.2181vw,-10px) scale(.9505);animation:fall-3 10s -28s linear infinite}@keyframes fall-3{53.058%{transform:translate(41.3802vw,53.058vh) scale(.9505)}to{transform:translate(43.79915vw,100vh) scale(.9505)}}.snow:nth-child(4){opacity:1.9038;transform:translate(17.2576vw,-10px) scale(.9564);animation:fall-4 18s -25s linear infinite}@keyframes fall-4{56.303%{transform:translate(11.2265vw,56.303vh) scale(.9564)}to{transform:translate(14.24205vw,100vh) scale(.9564)}}.snow:nth-child(5){opacity:1.0448;transform:translate(86.5876vw,-10px) scale(.2153);animation:fall-5 18s -1s linear infinite}@keyframes fall-5{77.394%{transform:translate(82.1465vw,77.394vh) scale(.2153)}to{transform:translate(84.36705vw,100vh) scale(.2153)}}.snow:nth-child(6){opacity:1.0206;transform:translate(40.4636vw,-10px) scale(.3222);animation:fall-6 30s -24s linear infinite}@keyframes fall-6{54.753%{transform:translate(31.8866vw,54.753vh) scale(.3222)}to{transform:translate(36.1751vw,100vh) scale(.3222)}}.snow:nth-child(7){opacity:1.1992;transform:translate(11.427vw,-10px) scale(.889);animation:fall-7 13s -12s linear infinite}@keyframes fall-7{59.798%{transform:translate(17.5175vw,59.798vh) scale(.889)}to{transform:translate(14.47225vw,100vh) scale(.889)}}.snow:nth-child(8){opacity:.0984;transform:translate(24.6798vw,-10px) scale(.5422);animation:fall-8 21s -29s linear infinite}@keyframes fall-8{69.326%{transform:translate(23.9245vw,69.326vh) scale(.5422)}to{transform:translate(24.30215vw,100vh) scale(.5422)}}.snow:nth-child(9){opacity:1.1912;transform:translate(50.8906vw,-10px) scale(.9021);animation:fall-9 27s -15s linear infinite}@keyframes fall-9{78.314%{transform:translate(49.682vw,78.314vh) scale(.9021)}to{transform:translate(50.2863vw,100vh) scale(.9021)}}.snow:nth-child(10){opacity:.3802;transform:translate(7.6619vw,-10px) scale(.0927);animation:fall-10 13s -1s linear infinite}@keyframes fall-10{42.086%{transform:translate(-.4457vw,42.086vh) scale(.0927)}to{transform:translate(3.6081vw,100vh) scale(.0927)}}.snow:nth-child(11){opacity:1.3718;transform:translate(3.6793vw,-10px) scale(.3175);animation:fall-11 13s -1s linear infinite}@keyframes fall-11{77.996%{transform:translate(8.4613vw,77.996vh) scale(.3175)}to{transform:translate(6.0703vw,100vh) scale(.3175)}}.snow:nth-child(12){opacity:1.5258;transform:translate(33.3959vw,-10px) scale(.0485);animation:fall-12 15s -8s linear infinite}@keyframes fall-12{69.431%{transform:translate(34.8202vw,69.431vh) scale(.0485)}to{transform:translate(34.10805vw,100vh) scale(.0485)}}.snow:nth-child(13){opacity:.2502;transform:translate(96.717vw,-10px) scale(.6024);animation:fall-13 25s -7s linear infinite}@keyframes fall-13{35.676%{transform:translate(89.9743vw,35.676vh) scale(.6024)}to{transform:translate(93.34565vw,100vh) scale(.6024)}}.snow:nth-child(14){opacity:.7588;transform:translate(28.0083vw,-10px) scale(.104);animation:fall-14 13s -1s linear infinite}@keyframes fall-14{36.399%{transform:translate(30.9097vw,36.399vh) scale(.104)}to{transform:translate(29.459vw,100vh) scale(.104)}}.snow:nth-child(15){opacity:1.114;transform:translate(52.3925vw,-10px) scale(.6056);animation:fall-15 15s -12s linear infinite}@keyframes fall-15{60.06%{transform:translate(50.6497vw,60.06vh) scale(.6056)}to{transform:translate(51.5211vw,100vh) scale(.6056)}}.snow:nth-child(16){opacity:.4534;transform:translate(4.0947vw,-10px) scale(.3541);animation:fall-16 24s -24s linear infinite}@keyframes fall-16{67.566%{transform:translate(13.8996vw,67.566vh) scale(.3541)}to{transform:translate(8.99715vw,100vh) scale(.3541)}}.snow:nth-child(17){opacity:.756;transform:translate(87.0222vw,-10px) scale(.7688);animation:fall-17 30s -25s linear infinite}@keyframes fall-17{76.203%{transform:translate(79.176vw,76.203vh) scale(.7688)}to{transform:translate(83.0991vw,100vh) scale(.7688)}}.snow:nth-child(18){opacity:.5482;transform:translate(34.5044vw,-10px) scale(.6749);animation:fall-18 30s -29s linear infinite}@keyframes fall-18{52.843%{transform:translate(35.3335vw,52.843vh) scale(.6749)}to{transform:translate(34.91895vw,100vh) scale(.6749)}}.snow:nth-child(19){opacity:1.2106;transform:translate(17.1384vw,-10px) scale(.2965);animation:fall-19 11s -29s linear infinite}@keyframes fall-19{64.57%{transform:translate(18.8996vw,64.57vh) scale(.2965)}to{transform:translate(18.019vw,100vh) scale(.2965)}}.snow:nth-child(20){opacity:1.9678;transform:translate(8.9274vw,-10px) scale(.5396);animation:fall-20 17s -6s linear infinite}@keyframes fall-20{67.81%{transform:translate(4.2086vw,67.81vh) scale(.5396)}to{transform:translate(6.568vw,100vh) scale(.5396)}}.snow:nth-child(21){opacity:.0908;transform:translate(7.0134vw,-10px) scale(.4704);animation:fall-21 29s -7s linear infinite}@keyframes fall-21{64.578%{transform:translate(10.8609vw,64.578vh) scale(.4704)}to{transform:translate(8.93715vw,100vh) scale(.4704)}}.snow:nth-child(22){opacity:1.29;transform:translate(53.1553vw,-10px) scale(.6191);animation:fall-22 16s -28s linear infinite}@keyframes fall-22{42.056%{transform:translate(48.0226vw,42.056vh) scale(.6191)}to{transform:translate(50.58895vw,100vh) scale(.6191)}}.snow:nth-child(23){opacity:.6396;transform:translate(26.372vw,-10px) scale(.781);animation:fall-23 19s -6s linear infinite}@keyframes fall-23{76.886%{transform:translate(18.6558vw,76.886vh) scale(.781)}to{transform:translate(22.5139vw,100vh) scale(.781)}}.snow:nth-child(24){opacity:.081;transform:translate(90.5962vw,-10px) scale(.9192);animation:fall-24 14s -16s linear infinite}@keyframes fall-24{57.735%{transform:translate(81.1362vw,57.735vh) scale(.9192)}to{transform:translate(85.8662vw,100vh) scale(.9192)}}.snow:nth-child(25){opacity:.1682;transform:translate(41.7496vw,-10px) scale(.4022);animation:fall-25 23s -18s linear infinite}@keyframes fall-25{32.18%{transform:translate(45.9331vw,32.18vh) scale(.4022)}to{transform:translate(43.84135vw,100vh) scale(.4022)}}.snow:nth-child(26){opacity:1.155;transform:translate(61.0177vw,-10px) scale(.4847);animation:fall-26 30s -27s linear infinite}@keyframes fall-26{44.97%{transform:translate(57.2826vw,44.97vh) scale(.4847)}to{transform:translate(59.15015vw,100vh) scale(.4847)}}.snow:nth-child(27){opacity:.0552;transform:translate(51.2353vw,-10px) scale(.7142);animation:fall-27 17s -15s linear infinite}@keyframes fall-27{43.58%{transform:translate(44.0447vw,43.58vh) scale(.7142)}to{transform:translate(47.64vw,100vh) scale(.7142)}}.snow:nth-child(28){opacity:1.5438;transform:translate(70.436vw,-10px) scale(.7358);animation:fall-28 11s -12s linear infinite}@keyframes fall-28{64.904%{transform:translate(78.9092vw,64.904vh) scale(.7358)}to{transform:translate(74.6726vw,100vh) scale(.7358)}}.snow:nth-child(29){opacity:1.0462;transform:translate(84.4385vw,-10px) scale(.976);animation:fall-29 13s -13s linear infinite}@keyframes fall-29{40.742%{transform:translate(78.6872vw,40.742vh) scale(.976)}to{transform:translate(81.56285vw,100vh) scale(.976)}}.snow:nth-child(30){opacity:.4912;transform:translate(72.1394vw,-10px) scale(.4232);animation:fall-30 12s -7s linear infinite}@keyframes fall-30{73.199%{transform:translate(81.7875vw,73.199vh) scale(.4232)}to{transform:translate(76.96345vw,100vh) scale(.4232)}}.snow:nth-child(31){opacity:.5082;transform:translate(81.0455vw,-10px) scale(.5315);animation:fall-31 30s -9s linear infinite}@keyframes fall-31{79.7%{transform:translate(76.3376vw,79.7vh) scale(.5315)}to{transform:translate(78.69155vw,100vh) scale(.5315)}}.snow:nth-child(32){opacity:.267;transform:translate(81.2627vw,-10px) scale(.2111);animation:fall-32 22s -28s linear infinite}@keyframes fall-32{75.237%{transform:translate(78.0454vw,75.237vh) scale(.2111)}to{transform:translate(79.65405vw,100vh) scale(.2111)}}.snow:nth-child(33){opacity:.0766;transform:translate(50.7894vw,-10px) scale(.4984);animation:fall-33 25s -25s linear infinite}@keyframes fall-33{32.423%{transform:translate(46.1995vw,32.423vh) scale(.4984)}to{transform:translate(48.49445vw,100vh) scale(.4984)}}.snow:nth-child(34){opacity:1.5314;transform:translate(93.9729vw,-10px) scale(.3906);animation:fall-34 14s -4s linear infinite}@keyframes fall-34{55.769%{transform:translate(98.8495vw,55.769vh) scale(.3906)}to{transform:translate(96.4112vw,100vh) scale(.3906)}}.snow:nth-child(35){opacity:1.041;transform:translate(25.3631vw,-10px) scale(.0629);animation:fall-35 18s -18s linear infinite}@keyframes fall-35{36.294%{transform:translate(34.3041vw,36.294vh) scale(.0629)}to{transform:translate(29.8336vw,100vh) scale(.0629)}}.snow:nth-child(36){opacity:.2246;transform:translate(72.6354vw,-10px) scale(.0455);animation:fall-36 14s -6s linear infinite}@keyframes fall-36{61.719%{transform:translate(81.4916vw,61.719vh) scale(.0455)}to{transform:translate(77.0635vw,100vh) scale(.0455)}}.snow:nth-child(37){opacity:.1624;transform:translate(89.3204vw,-10px) scale(.8386);animation:fall-37 27s -12s linear infinite}@keyframes fall-37{32.204%{transform:translate(80.9505vw,32.204vh) scale(.8386)}to{transform:translate(85.13545vw,100vh) scale(.8386)}}.snow:nth-child(38){opacity:.4208;transform:translate(85.4549vw,-10px) scale(.249);animation:fall-38 21s -22s linear infinite}@keyframes fall-38{57.788%{transform:translate(78.2613vw,57.788vh) scale(.249)}to{transform:translate(81.8581vw,100vh) scale(.249)}}.snow:nth-child(39){opacity:.1644;transform:translate(41.9835vw,-10px) scale(.3908);animation:fall-39 17s -8s linear infinite}@keyframes fall-39{48.717%{transform:translate(50.2745vw,48.717vh) scale(.3908)}to{transform:translate(46.129vw,100vh) scale(.3908)}}.snow:nth-child(40){opacity:.9456;transform:translate(51.1162vw,-10px) scale(.0398);animation:fall-40 24s -7s linear infinite}@keyframes fall-40{54.057%{transform:translate(45.4786vw,54.057vh) scale(.0398)}to{transform:translate(48.2974vw,100vh) scale(.0398)}}.snow:nth-child(41){opacity:1.1266;transform:translate(39.0115vw,-10px) scale(.2337);animation:fall-41 18s -1s linear infinite}@keyframes fall-41{44.124%{transform:translate(32.6787vw,44.124vh) scale(.2337)}to{transform:translate(35.8451vw,100vh) scale(.2337)}}.snow:nth-child(42){opacity:1.0034;transform:translate(15.3942vw,-10px) scale(.9602);animation:fall-42 18s -29s linear infinite}@keyframes fall-42{53.039%{transform:translate(20.236vw,53.039vh) scale(.9602)}to{transform:translate(17.8151vw,100vh) scale(.9602)}}.snow:nth-child(43){opacity:.5172;transform:translate(1.8927vw,-10px) scale(.3698);animation:fall-43 11s -25s linear infinite}@keyframes fall-43{63.988%{transform:translate(-.6404vw,63.988vh) scale(.3698)}to{transform:translate(.62615vw,100vh) scale(.3698)}}.snow:nth-child(44){opacity:.0694;transform:translate(5.8518vw,-10px) scale(.2922);animation:fall-44 14s -26s linear infinite}@keyframes fall-44{53.573%{transform:translate(10.9005vw,53.573vh) scale(.2922)}to{transform:translate(8.37615vw,100vh) scale(.2922)}}.snow:nth-child(45){opacity:1.7548;transform:translate(86.0338vw,-10px) scale(.7298);animation:fall-45 22s -15s linear infinite}@keyframes fall-45{60.106%{transform:translate(84.9886vw,60.106vh) scale(.7298)}to{transform:translate(85.5112vw,100vh) scale(.7298)}}.snow:nth-child(46){opacity:.6664;transform:translate(17.5891vw,-10px) scale(.6469);animation:fall-46 18s -27s linear infinite}@keyframes fall-46{35.941%{transform:translate(27.299vw,35.941vh) scale(.6469)}to{transform:translate(22.44405vw,100vh) scale(.6469)}}.snow:nth-child(47){opacity:.4512;transform:translate(34.8981vw,-10px) scale(.3554);animation:fall-47 29s -8s linear infinite}@keyframes fall-47{59.839%{transform:translate(39.6592vw,59.839vh) scale(.3554)}to{transform:translate(37.27865vw,100vh) scale(.3554)}}.snow:nth-child(48){opacity:1.4278;transform:translate(87.9318vw,-10px) scale(.5248);animation:fall-48 25s -6s linear infinite}@keyframes fall-48{41.479%{transform:translate(88.2979vw,41.479vh) scale(.5248)}to{transform:translate(88.11485vw,100vh) scale(.5248)}}.snow:nth-child(49){opacity:1.4856;transform:translate(99.6335vw,-10px) scale(.1371);animation:fall-49 14s -5s linear infinite}@keyframes fall-49{58.897%{transform:translate(109.3499vw,58.897vh) scale(.1371)}to{transform:translate(104.4917vw,100vh) scale(.1371)}}.snow:nth-child(50){opacity:1.28;transform:translate(84.0723vw,-10px) scale(.4747);animation:fall-50 26s -3s linear infinite}@keyframes fall-50{42.631%{transform:translate(93.3959vw,42.631vh) scale(.4747)}to{transform:translate(88.7341vw,100vh) scale(.4747)}}.snow:nth-child(51){opacity:1.1308;transform:translate(67.2766vw,-10px) scale(.8221);animation:fall-51 28s -26s linear infinite}@keyframes fall-51{44.396%{transform:translate(74.5575vw,44.396vh) scale(.8221)}to{transform:translate(70.91705vw,100vh) scale(.8221)}}.snow:nth-child(52){opacity:1.9842;transform:translate(42.2862vw,-10px) scale(.3511);animation:fall-52 14s -25s linear infinite}@keyframes fall-52{52.098%{transform:translate(51.1256vw,52.098vh) scale(.3511)}to{transform:translate(46.7059vw,100vh) scale(.3511)}}.snow:nth-child(53){opacity:.537;transform:translate(11.6503vw,-10px) scale(.6963);animation:fall-53 30s -24s linear infinite}@keyframes fall-53{37.052%{transform:translate(18.1011vw,37.052vh) scale(.6963)}to{transform:translate(14.8757vw,100vh) scale(.6963)}}.snow:nth-child(54){opacity:1.1594;transform:translate(83.9264vw,-10px) scale(.4778);animation:fall-54 11s -18s linear infinite}@keyframes fall-54{33.506%{transform:translate(90.132vw,33.506vh) scale(.4778)}to{transform:translate(87.0292vw,100vh) scale(.4778)}}.snow:nth-child(55){opacity:1.0348;transform:translate(15.048vw,-10px) scale(.2728);animation:fall-55 26s -17s linear infinite}@keyframes fall-55{40.589%{transform:translate(13.5184vw,40.589vh) scale(.2728)}to{transform:translate(14.2832vw,100vh) scale(.2728)}}.snow:nth-child(56){opacity:1.4782;transform:translate(23.2316vw,-10px) scale(.8702);animation:fall-56 27s -15s linear infinite}@keyframes fall-56{57.288%{transform:translate(17.0234vw,57.288vh) scale(.8702)}to{transform:translate(20.1275vw,100vh) scale(.8702)}}.snow:nth-child(57){opacity:1.7404;transform:translate(31.8307vw,-10px) scale(.2812);animation:fall-57 15s -3s linear infinite}@keyframes fall-57{51.866%{transform:translate(40.5298vw,51.866vh) scale(.2812)}to{transform:translate(36.18025vw,100vh) scale(.2812)}}.snow:nth-child(58){opacity:.6162;transform:translate(60.0087vw,-10px) scale(.0693);animation:fall-58 20s -18s linear infinite}@keyframes fall-58{68.917%{transform:translate(66.5552vw,68.917vh) scale(.0693)}to{transform:translate(63.28195vw,100vh) scale(.0693)}}.snow:nth-child(59){opacity:.2516;transform:translate(47.5929vw,-10px) scale(.7021);animation:fall-59 10s -21s linear infinite}@keyframes fall-59{44.8%{transform:translate(42.0404vw,44.8vh) scale(.7021)}to{transform:translate(44.81665vw,100vh) scale(.7021)}}.snow:nth-child(60){opacity:1.6916;transform:translate(.4049vw,-10px) scale(.7124);animation:fall-60 11s -11s linear infinite}@keyframes fall-60{39.259%{transform:translate(-3.1306vw,39.259vh) scale(.7124)}to{transform:translate(-1.36285vw,100vh) scale(.7124)}}.snow:nth-child(61){opacity:.8946;transform:translate(23.1969vw,-10px) scale(.0422);animation:fall-61 12s -5s linear infinite}@keyframes fall-61{45.509%{transform:translate(27.2235vw,45.509vh) scale(.0422)}to{transform:translate(25.2102vw,100vh) scale(.0422)}}.snow:nth-child(62){opacity:.3376;transform:translate(37.24vw,-10px) scale(.0863);animation:fall-62 16s -16s linear infinite}@keyframes fall-62{52.9%{transform:translate(40.9612vw,52.9vh) scale(.0863)}to{transform:translate(39.1006vw,100vh) scale(.0863)}}.snow:nth-child(63){opacity:1.1888;transform:translate(83.0228vw,-10px) scale(.9246);animation:fall-63 18s -30s linear infinite}@keyframes fall-63{30.688%{transform:translate(74.8438vw,30.688vh) scale(.9246)}to{transform:translate(78.9333vw,100vh) scale(.9246)}}.snow:nth-child(64){opacity:1.2102;transform:translate(87.696vw,-10px) scale(.682);animation:fall-64 15s -5s linear infinite}@keyframes fall-64{60.593%{transform:translate(91.2314vw,60.593vh) scale(.682)}to{transform:translate(89.4637vw,100vh) scale(.682)}}.snow:nth-child(65){opacity:.502;transform:translate(18.1458vw,-10px) scale(.1876);animation:fall-65 25s -15s linear infinite}@keyframes fall-65{79.073%{transform:translate(26.6314vw,79.073vh) scale(.1876)}to{transform:translate(22.3886vw,100vh) scale(.1876)}}.snow:nth-child(66){opacity:.1298;transform:translate(38.077vw,-10px) scale(.6924);animation:fall-66 23s -19s linear infinite}@keyframes fall-66{53.41%{transform:translate(44.5735vw,53.41vh) scale(.6924)}to{transform:translate(41.32525vw,100vh) scale(.6924)}}.snow:nth-child(67){opacity:1.5612;transform:translate(2.7911vw,-10px) scale(.4228);animation:fall-67 15s -17s linear infinite}@keyframes fall-67{37.477%{transform:translate(-4.2788vw,37.477vh) scale(.4228)}to{transform:translate(-.74385vw,100vh) scale(.4228)}}.snow:nth-child(68){opacity:1.2556;transform:translate(6.1059vw,-10px) scale(.6577);animation:fall-68 23s -25s linear infinite}@keyframes fall-68{77.9%{transform:translate(1.0515vw,77.9vh) scale(.6577)}to{transform:translate(3.5787vw,100vh) scale(.6577)}}.snow:nth-child(69){opacity:1.3028;transform:translate(35.6943vw,-10px) scale(.0533);animation:fall-69 20s -24s linear infinite}@keyframes fall-69{69.99%{transform:translate(37.1262vw,69.99vh) scale(.0533)}to{transform:translate(36.41025vw,100vh) scale(.0533)}}.snow:nth-child(70){opacity:.556;transform:translate(23.1077vw,-10px) scale(.6278);animation:fall-70 28s -17s linear infinite}@keyframes fall-70{40.775%{transform:translate(26.1608vw,40.775vh) scale(.6278)}to{transform:translate(24.63425vw,100vh) scale(.6278)}}.snow:nth-child(71){opacity:.6334;transform:translate(59.3334vw,-10px) scale(.0304);animation:fall-71 18s -2s linear infinite}@keyframes fall-71{74.598%{transform:translate(60.066vw,74.598vh) scale(.0304)}to{transform:translate(59.6997vw,100vh) scale(.0304)}}.snow:nth-child(72){opacity:1.4682;transform:translate(19.9804vw,-10px) scale(.4038);animation:fall-72 11s -18s linear infinite}@keyframes fall-72{68.127%{transform:translate(11.4815vw,68.127vh) scale(.4038)}to{transform:translate(15.73095vw,100vh) scale(.4038)}}.snow:nth-child(73){opacity:.866;transform:translate(76.0468vw,-10px) scale(.9965);animation:fall-73 27s -6s linear infinite}@keyframes fall-73{49.484%{transform:translate(74.9352vw,49.484vh) scale(.9965)}to{transform:translate(75.491vw,100vh) scale(.9965)}}.snow:nth-child(74){opacity:.9586;transform:translate(10.7227vw,-10px) scale(.363);animation:fall-74 27s -21s linear infinite}@keyframes fall-74{49.32%{transform:translate(15.4531vw,49.32vh) scale(.363)}to{transform:translate(13.0879vw,100vh) scale(.363)}}.snow:nth-child(75){opacity:.6766;transform:translate(36.9152vw,-10px) scale(.9445);animation:fall-75 26s -7s linear infinite}@keyframes fall-75{55.932%{transform:translate(41.0907vw,55.932vh) scale(.9445)}to{transform:translate(39.00295vw,100vh) scale(.9445)}}.snow:nth-child(76){opacity:1.9882;transform:translate(20.16vw,-10px) scale(.7908);animation:fall-76 27s -4s linear infinite}@keyframes fall-76{40.136%{transform:translate(11.5086vw,40.136vh) scale(.7908)}to{transform:translate(15.8343vw,100vh) scale(.7908)}}.snow:nth-child(77){opacity:.6578;transform:translate(61.9227vw,-10px) scale(.3841);animation:fall-77 28s -30s linear infinite}@keyframes fall-77{42.958%{transform:translate(70.3298vw,42.958vh) scale(.3841)}to{transform:translate(66.12625vw,100vh) scale(.3841)}}.snow:nth-child(78){opacity:.9042;transform:translate(9.6414vw,-10px) scale(.7386);animation:fall-78 24s -26s linear infinite}@keyframes fall-78{32.523%{transform:translate(19.032vw,32.523vh) scale(.7386)}to{transform:translate(14.3367vw,100vh) scale(.7386)}}.snow:nth-child(79){opacity:1.7156;transform:translate(66.0353vw,-10px) scale(.9362);animation:fall-79 24s -28s linear infinite}@keyframes fall-79{52.631%{transform:translate(65.2009vw,52.631vh) scale(.9362)}to{transform:translate(65.6181vw,100vh) scale(.9362)}}.snow:nth-child(80){opacity:.2382;transform:translate(35.2152vw,-10px) scale(.9242);animation:fall-80 24s -9s linear infinite}@keyframes fall-80{58.127%{transform:translate(37.0846vw,58.127vh) scale(.9242)}to{transform:translate(36.1499vw,100vh) scale(.9242)}}.snow:nth-child(81){opacity:.3648;transform:translate(50.0924vw,-10px) scale(.5893);animation:fall-81 20s -4s linear infinite}@keyframes fall-81{41.865%{transform:translate(56.454vw,41.865vh) scale(.5893)}to{transform:translate(53.2732vw,100vh) scale(.5893)}}.snow:nth-child(82){opacity:.0536;transform:translate(24.5884vw,-10px) scale(.2825);animation:fall-82 13s -21s linear infinite}@keyframes fall-82{71.104%{transform:translate(23.4986vw,71.104vh) scale(.2825)}to{transform:translate(24.0435vw,100vh) scale(.2825)}}.snow:nth-child(83){opacity:.621;transform:translate(52.7649vw,-10px) scale(.0442);animation:fall-83 23s -22s linear infinite}@keyframes fall-83{31.5%{transform:translate(49.8177vw,31.5vh) scale(.0442)}to{transform:translate(51.2913vw,100vh) scale(.0442)}}.snow:nth-child(84){opacity:1.1198;transform:translate(34.4955vw,-10px) scale(.5083);animation:fall-84 19s -20s linear infinite}@keyframes fall-84{73.382%{transform:translate(29.0516vw,73.382vh) scale(.5083)}to{transform:translate(31.77355vw,100vh) scale(.5083)}}.snow:nth-child(85){opacity:1.0282;transform:translate(35.6327vw,-10px) scale(.297);animation:fall-85 18s -5s linear infinite}@keyframes fall-85{33.622%{transform:translate(44.6063vw,33.622vh) scale(.297)}to{transform:translate(40.1195vw,100vh) scale(.297)}}.snow:nth-child(86){opacity:.8556;transform:translate(18.8825vw,-10px) scale(.134);animation:fall-86 13s -14s linear infinite}@keyframes fall-86{68.135%{transform:translate(21.8096vw,68.135vh) scale(.134)}to{transform:translate(20.34605vw,100vh) scale(.134)}}.snow:nth-child(87){opacity:1.4714;transform:translate(92.6894vw,-10px) scale(.2142);animation:fall-87 15s -21s linear infinite}@keyframes fall-87{34.19%{transform:translate(84.9787vw,34.19vh) scale(.2142)}to{transform:translate(88.83405vw,100vh) scale(.2142)}}.snow:nth-child(88){opacity:1.1262;transform:translate(29.6105vw,-10px) scale(.3411);animation:fall-88 16s -18s linear infinite}@keyframes fall-88{69.886%{transform:translate(34.0594vw,69.886vh) scale(.3411)}to{transform:translate(31.83495vw,100vh) scale(.3411)}}.snow:nth-child(89){opacity:1.664;transform:translate(86.0402vw,-10px) scale(.4568);animation:fall-89 26s -25s linear infinite}@keyframes fall-89{76.299%{transform:translate(91.5786vw,76.299vh) scale(.4568)}to{transform:translate(88.8094vw,100vh) scale(.4568)}}.snow:nth-child(90){opacity:.677;transform:translate(81.8392vw,-10px) scale(.1428);animation:fall-90 19s -9s linear infinite}@keyframes fall-90{62.899%{transform:translate(71.9379vw,62.899vh) scale(.1428)}to{transform:translate(76.88855vw,100vh) scale(.1428)}}.snow:nth-child(91){opacity:1.5958;transform:translate(32.4491vw,-10px) scale(.421);animation:fall-91 18s -27s linear infinite}@keyframes fall-91{77.122%{transform:translate(23.4073vw,77.122vh) scale(.421)}to{transform:translate(27.9282vw,100vh) scale(.421)}}.snow:nth-child(92){opacity:1.2436;transform:translate(98.6648vw,-10px) scale(.3108);animation:fall-92 21s -18s linear infinite}@keyframes fall-92{58.365%{transform:translate(91.1849vw,58.365vh) scale(.3108)}to{transform:translate(94.92485vw,100vh) scale(.3108)}}.snow:nth-child(93){opacity:1.7444;transform:translate(69.2091vw,-10px) scale(.0104);animation:fall-93 17s -11s linear infinite}@keyframes fall-93{59.486%{transform:translate(66.2832vw,59.486vh) scale(.0104)}to{transform:translate(67.74615vw,100vh) scale(.0104)}}.snow:nth-child(94){opacity:.4126;transform:translate(56.4502vw,-10px) scale(.5137);animation:fall-94 10s -28s linear infinite}@keyframes fall-94{30.49%{transform:translate(59.5867vw,30.49vh) scale(.5137)}to{transform:translate(58.01845vw,100vh) scale(.5137)}}.snow:nth-child(95){opacity:1.9516;transform:translate(65.6585vw,-10px) scale(.5663);animation:fall-95 29s -11s linear infinite}@keyframes fall-95{56.602%{transform:translate(62.3955vw,56.602vh) scale(.5663)}to{transform:translate(64.027vw,100vh) scale(.5663)}}.snow:nth-child(96){opacity:.0712;transform:translate(63.3245vw,-10px) scale(.974);animation:fall-96 17s -8s linear infinite}@keyframes fall-96{41.433%{transform:translate(66.2042vw,41.433vh) scale(.974)}to{transform:translate(64.76435vw,100vh) scale(.974)}}.snow:nth-child(97){opacity:1.2366;transform:translate(46.7137vw,-10px) scale(.2413);animation:fall-97 16s -23s linear infinite}@keyframes fall-97{62.813%{transform:translate(53.6671vw,62.813vh) scale(.2413)}to{transform:translate(50.1904vw,100vh) scale(.2413)}}.snow:nth-child(98){opacity:1.2288;transform:translate(69.5053vw,-10px) scale(.6752);animation:fall-98 26s -28s linear infinite}@keyframes fall-98{56.293%{transform:translate(65.8723vw,56.293vh) scale(.6752)}to{transform:translate(67.6888vw,100vh) scale(.6752)}}.snow:nth-child(99){opacity:.5748;transform:translate(43.9107vw,-10px) scale(.6646);animation:fall-99 23s -24s linear infinite}@keyframes fall-99{43.89%{transform:translate(41.5762vw,43.89vh) scale(.6646)}to{transform:translate(42.74345vw,100vh) scale(.6646)}}.snow:nth-child(100){opacity:.8692;transform:translate(10.532vw,-10px) scale(.9384);animation:fall-100 21s -27s linear infinite}@keyframes fall-100{53.692%{transform:translate(.7029vw,53.692vh) scale(.9384)}to{transform:translate(5.61745vw,100vh) scale(.9384)}}.snow:nth-child(101){opacity:1.4626;transform:translate(30.6619vw,-10px) scale(.5685);animation:fall-101 17s -29s linear infinite}@keyframes fall-101{31.211%{transform:translate(23.3252vw,31.211vh) scale(.5685)}to{transform:translate(26.99355vw,100vh) scale(.5685)}}.snow:nth-child(102){opacity:1.2302;transform:translate(50.7803vw,-10px) scale(.6745);animation:fall-102 21s -8s linear infinite}@keyframes fall-102{48.876%{transform:translate(52.0869vw,48.876vh) scale(.6745)}to{transform:translate(51.4336vw,100vh) scale(.6745)}}.snow:nth-child(103){opacity:.306;transform:translate(55.0025vw,-10px) scale(.7809);animation:fall-103 11s -22s linear infinite}@keyframes fall-103{64.461%{transform:translate(52.0095vw,64.461vh) scale(.7809)}to{transform:translate(53.506vw,100vh) scale(.7809)}}.snow:nth-child(104){opacity:.881;transform:translate(1.4485vw,-10px) scale(.6619);animation:fall-104 20s -16s linear infinite}@keyframes fall-104{75.985%{transform:translate(5.2451vw,75.985vh) scale(.6619)}to{transform:translate(3.3468vw,100vh) scale(.6619)}}.snow:nth-child(105){opacity:1.823;transform:translate(26.0544vw,-10px) scale(.8787);animation:fall-105 28s -19s linear infinite}@keyframes fall-105{53.759%{transform:translate(31.2657vw,53.759vh) scale(.8787)}to{transform:translate(28.66005vw,100vh) scale(.8787)}}.snow:nth-child(106){opacity:1.3096;transform:translate(36.6433vw,-10px) scale(.2286);animation:fall-106 28s -23s linear infinite}@keyframes fall-106{78.74%{transform:translate(37.8017vw,78.74vh) scale(.2286)}to{transform:translate(37.2225vw,100vh) scale(.2286)}}.snow:nth-child(107){opacity:.3882;transform:translate(43.9142vw,-10px) scale(.4323);animation:fall-107 28s -26s linear infinite}@keyframes fall-107{67.718%{transform:translate(45.88vw,67.718vh) scale(.4323)}to{transform:translate(44.8971vw,100vh) scale(.4323)}}.snow:nth-child(108){opacity:.4988;transform:translate(22.0178vw,-10px) scale(.0135);animation:fall-108 29s -26s linear infinite}@keyframes fall-108{36.061%{transform:translate(15.8167vw,36.061vh) scale(.0135)}to{transform:translate(18.91725vw,100vh) scale(.0135)}}.snow:nth-child(109){opacity:.3066;transform:translate(93.4914vw,-10px) scale(.2259);animation:fall-109 14s -16s linear infinite}@keyframes fall-109{58.849%{transform:translate(92.0441vw,58.849vh) scale(.2259)}to{transform:translate(92.76775vw,100vh) scale(.2259)}}.snow:nth-child(110){opacity:1.552;transform:translate(68.1776vw,-10px) scale(.7017);animation:fall-110 18s -23s linear infinite}@keyframes fall-110{72.2%{transform:translate(72.8512vw,72.2vh) scale(.7017)}to{transform:translate(70.5144vw,100vh) scale(.7017)}}.snow:nth-child(111){opacity:1.984;transform:translate(7.6135vw,-10px) scale(.1766);animation:fall-111 30s -22s linear infinite}@keyframes fall-111{44.471%{transform:translate(13.1662vw,44.471vh) scale(.1766)}to{transform:translate(10.38985vw,100vh) scale(.1766)}}.snow:nth-child(112){opacity:1.9422;transform:translate(5.6754vw,-10px) scale(.1376);animation:fall-112 28s -18s linear infinite}@keyframes fall-112{31.886%{transform:translate(-4.2682vw,31.886vh) scale(.1376)}to{transform:translate(.7036vw,100vh) scale(.1376)}}.snow:nth-child(113){opacity:.4904;transform:translate(69.8904vw,-10px) scale(.4036);animation:fall-113 13s -20s linear infinite}@keyframes fall-113{51.161%{transform:translate(68.7419vw,51.161vh) scale(.4036)}to{transform:translate(69.31615vw,100vh) scale(.4036)}}.snow:nth-child(114){opacity:.7248;transform:translate(50.5621vw,-10px) scale(.3416);animation:fall-114 21s -18s linear infinite}@keyframes fall-114{64.331%{transform:translate(59.0672vw,64.331vh) scale(.3416)}to{transform:translate(54.81465vw,100vh) scale(.3416)}}.snow:nth-child(115){opacity:1.2532;transform:translate(71.9726vw,-10px) scale(.7884);animation:fall-115 25s -23s linear infinite}@keyframes fall-115{58.986%{transform:translate(72.9543vw,58.986vh) scale(.7884)}to{transform:translate(72.46345vw,100vh) scale(.7884)}}.snow:nth-child(116){opacity:.7954;transform:translate(47.1427vw,-10px) scale(.8052);animation:fall-116 25s -26s linear infinite}@keyframes fall-116{62.322%{transform:translate(39.3617vw,62.322vh) scale(.8052)}to{transform:translate(43.2522vw,100vh) scale(.8052)}}.snow:nth-child(117){opacity:1.6092;transform:translate(94.4072vw,-10px) scale(.0409);animation:fall-117 29s -26s linear infinite}@keyframes fall-117{44.088%{transform:translate(101.5087vw,44.088vh) scale(.0409)}to{transform:translate(97.95795vw,100vh) scale(.0409)}}.snow:nth-child(118){opacity:1.467;transform:translate(3.8166vw,-10px) scale(.9305);animation:fall-118 21s -10s linear infinite}@keyframes fall-118{77.66%{transform:translate(10.4719vw,77.66vh) scale(.9305)}to{transform:translate(7.14425vw,100vh) scale(.9305)}}.snow:nth-child(119){opacity:1.4102;transform:translate(15.6065vw,-10px) scale(.8872);animation:fall-119 27s -5s linear infinite}@keyframes fall-119{54.168%{transform:translate(11.6795vw,54.168vh) scale(.8872)}to{transform:translate(13.643vw,100vh) scale(.8872)}}.snow:nth-child(120){opacity:.4394;transform:translate(47.8327vw,-10px) scale(.8867);animation:fall-120 27s -26s linear infinite}@keyframes fall-120{52.379%{transform:translate(43.038vw,52.379vh) scale(.8867)}to{transform:translate(45.43535vw,100vh) scale(.8867)}}.snow:nth-child(121){opacity:1.5482;transform:translate(31.722vw,-10px) scale(.4567);animation:fall-121 11s -12s linear infinite}@keyframes fall-121{45.78%{transform:translate(41.3318vw,45.78vh) scale(.4567)}to{transform:translate(36.5269vw,100vh) scale(.4567)}}.snow:nth-child(122){opacity:.2878;transform:translate(60.3081vw,-10px) scale(.7563);animation:fall-122 20s -25s linear infinite}@keyframes fall-122{53.816%{transform:translate(55.278vw,53.816vh) scale(.7563)}to{transform:translate(57.79305vw,100vh) scale(.7563)}}.snow:nth-child(123){opacity:.801;transform:translate(99.6878vw,-10px) scale(.0452);animation:fall-123 12s -17s linear infinite}@keyframes fall-123{58.949%{transform:translate(89.9245vw,58.949vh) scale(.0452)}to{transform:translate(94.80615vw,100vh) scale(.0452)}}.snow:nth-child(124){opacity:1.8554;transform:translate(26.007vw,-10px) scale(.1424);animation:fall-124 13s -22s linear infinite}@keyframes fall-124{77.811%{transform:translate(19.003vw,77.811vh) scale(.1424)}to{transform:translate(22.505vw,100vh) scale(.1424)}}.snow:nth-child(125){opacity:.7604;transform:translate(27.9328vw,-10px) scale(.0001);animation:fall-125 16s -16s linear infinite}@keyframes fall-125{65.588%{transform:translate(24.1167vw,65.588vh) scale(.0001)}to{transform:translate(26.02475vw,100vh) scale(.0001)}}.snow:nth-child(126){opacity:1.8306;transform:translate(.8352vw,-10px) scale(.9026);animation:fall-126 22s -21s linear infinite}@keyframes fall-126{72.549%{transform:translate(9.17vw,72.549vh) scale(.9026)}to{transform:translate(5.0026vw,100vh) scale(.9026)}}.snow:nth-child(127){opacity:.1164;transform:translate(6.4076vw,-10px) scale(.7535);animation:fall-127 22s -8s linear infinite}@keyframes fall-127{61.907%{transform:translate(-.0047vw,61.907vh) scale(.7535)}to{transform:translate(3.20145vw,100vh) scale(.7535)}}.snow:nth-child(128){opacity:1.0542;transform:translate(85.9312vw,-10px) scale(.2019);animation:fall-128 15s -26s linear infinite}@keyframes fall-128{37.123%{transform:translate(87.4839vw,37.123vh) scale(.2019)}to{transform:translate(86.70755vw,100vh) scale(.2019)}}.snow:nth-child(129){opacity:.6824;transform:translate(71.6834vw,-10px) scale(.2593);animation:fall-129 25s -4s linear infinite}@keyframes fall-129{67.244%{transform:translate(63.62vw,67.244vh) scale(.2593)}to{transform:translate(67.6517vw,100vh) scale(.2593)}}.snow:nth-child(130){opacity:.8718;transform:translate(91.986vw,-10px) scale(.1686);animation:fall-130 19s -15s linear infinite}@keyframes fall-130{58.748%{transform:translate(82.6379vw,58.748vh) scale(.1686)}to{transform:translate(87.31195vw,100vh) scale(.1686)}}.snow:nth-child(131){opacity:.2948;transform:translate(99.1409vw,-10px) scale(.6388);animation:fall-131 24s -30s linear infinite}@keyframes fall-131{75.903%{transform:translate(101.8849vw,75.903vh) scale(.6388)}to{transform:translate(100.5129vw,100vh) scale(.6388)}}.snow:nth-child(132){opacity:1.6832;transform:translate(98.0171vw,-10px) scale(.151);animation:fall-132 13s -27s linear infinite}@keyframes fall-132{75.201%{transform:translate(93.7998vw,75.201vh) scale(.151)}to{transform:translate(95.90845vw,100vh) scale(.151)}}.snow:nth-child(133){opacity:.2414;transform:translate(48.9657vw,-10px) scale(.2027);animation:fall-133 14s -29s linear infinite}@keyframes fall-133{48.199%{transform:translate(51.4636vw,48.199vh) scale(.2027)}to{transform:translate(50.21465vw,100vh) scale(.2027)}}.snow:nth-child(134){opacity:.7828;transform:translate(51.1969vw,-10px) scale(.6247);animation:fall-134 28s -3s linear infinite}@keyframes fall-134{61.805%{transform:translate(58.7403vw,61.805vh) scale(.6247)}to{transform:translate(54.9686vw,100vh) scale(.6247)}}.snow:nth-child(135){opacity:1.668;transform:translate(54.2366vw,-10px) scale(.438);animation:fall-135 22s -30s linear infinite}@keyframes fall-135{53.064%{transform:translate(63.039vw,53.064vh) scale(.438)}to{transform:translate(58.6378vw,100vh) scale(.438)}}.snow:nth-child(136){opacity:1.5056;transform:translate(51.3699vw,-10px) scale(.9948);animation:fall-136 23s -1s linear infinite}@keyframes fall-136{31.48%{transform:translate(41.8767vw,31.48vh) scale(.9948)}to{transform:translate(46.6233vw,100vh) scale(.9948)}}.snow:nth-child(137){opacity:.086;transform:translate(3.1456vw,-10px) scale(.1854);animation:fall-137 11s -18s linear infinite}@keyframes fall-137{35.736%{transform:translate(11.5534vw,35.736vh) scale(.1854)}to{transform:translate(7.3495vw,100vh) scale(.1854)}}.snow:nth-child(138){opacity:1.8676;transform:translate(42.5305vw,-10px) scale(.4014);animation:fall-138 24s -4s linear infinite}@keyframes fall-138{67.446%{transform:translate(43.4016vw,67.446vh) scale(.4014)}to{transform:translate(42.96605vw,100vh) scale(.4014)}}.snow:nth-child(139){opacity:.2548;transform:translate(78.8534vw,-10px) scale(.7934);animation:fall-139 25s -25s linear infinite}@keyframes fall-139{34.012%{transform:translate(69.0931vw,34.012vh) scale(.7934)}to{transform:translate(73.97325vw,100vh) scale(.7934)}}.snow:nth-child(140){opacity:.1654;transform:translate(19.3216vw,-10px) scale(.0961);animation:fall-140 12s -3s linear infinite}@keyframes fall-140{42.84%{transform:translate(17.1566vw,42.84vh) scale(.0961)}to{transform:translate(18.2391vw,100vh) scale(.0961)}}.snow:nth-child(141){opacity:1.8538;transform:translate(81.2665vw,-10px) scale(.6839);animation:fall-141 25s -27s linear infinite}@keyframes fall-141{76.362%{transform:translate(80.0932vw,76.362vh) scale(.6839)}to{transform:translate(80.67985vw,100vh) scale(.6839)}}.snow:nth-child(142){opacity:.2258;transform:translate(14.4328vw,-10px) scale(.716);animation:fall-142 24s -10s linear infinite}@keyframes fall-142{59.211%{transform:translate(14.0462vw,59.211vh) scale(.716)}to{transform:translate(14.2395vw,100vh) scale(.716)}}.snow:nth-child(143){opacity:1.8834;transform:translate(5.9899vw,-10px) scale(.6643);animation:fall-143 16s -21s linear infinite}@keyframes fall-143{74.38%{transform:translate(2.9716vw,74.38vh) scale(.6643)}to{transform:translate(4.48075vw,100vh) scale(.6643)}}.snow:nth-child(144){opacity:1.4854;transform:translate(84.7615vw,-10px) scale(.3079);animation:fall-144 29s -15s linear infinite}@keyframes fall-144{60.132%{transform:translate(94.2618vw,60.132vh) scale(.3079)}to{transform:translate(89.51165vw,100vh) scale(.3079)}}.snow:nth-child(145){opacity:.6686;transform:translate(7.88vw,-10px) scale(.1291);animation:fall-145 14s -29s linear infinite}@keyframes fall-145{67.217%{transform:translate(9.6214vw,67.217vh) scale(.1291)}to{transform:translate(8.7507vw,100vh) scale(.1291)}}.snow:nth-child(146){opacity:1.3808;transform:translate(7.0714vw,-10px) scale(.3148);animation:fall-146 28s -26s linear infinite}@keyframes fall-146{38.147%{transform:translate(10.5808vw,38.147vh) scale(.3148)}to{transform:translate(8.8261vw,100vh) scale(.3148)}}.snow:nth-child(147){opacity:1.5142;transform:translate(71.7226vw,-10px) scale(.9516);animation:fall-147 24s -18s linear infinite}@keyframes fall-147{44.341%{transform:translate(73.4065vw,44.341vh) scale(.9516)}to{transform:translate(72.56455vw,100vh) scale(.9516)}}.snow:nth-child(148){opacity:.379;transform:translate(9.011vw,-10px) scale(.644);animation:fall-148 18s -29s linear infinite}@keyframes fall-148{67.215%{transform:translate(14.1284vw,67.215vh) scale(.644)}to{transform:translate(11.5697vw,100vh) scale(.644)}}.snow:nth-child(149){opacity:.035;transform:translate(18.7296vw,-10px) scale(.7582);animation:fall-149 16s -20s linear infinite}@keyframes fall-149{48.931%{transform:translate(18.0755vw,48.931vh) scale(.7582)}to{transform:translate(18.40255vw,100vh) scale(.7582)}}.snow:nth-child(150){opacity:1.5244;transform:translate(27.1618vw,-10px) scale(.3488);animation:fall-150 19s -30s linear infinite}@keyframes fall-150{45.642%{transform:translate(36.3493vw,45.642vh) scale(.3488)}to{transform:translate(31.75555vw,100vh) scale(.3488)}}.snow:nth-child(151){opacity:.0716;transform:translate(49.2864vw,-10px) scale(.7675);animation:fall-151 25s -18s linear infinite}@keyframes fall-151{41.938%{transform:translate(48.5231vw,41.938vh) scale(.7675)}to{transform:translate(48.90475vw,100vh) scale(.7675)}}.snow:nth-child(152){opacity:1.689;transform:translate(16.7206vw,-10px) scale(.1377);animation:fall-152 24s -7s linear infinite}@keyframes fall-152{77.688%{transform:translate(19.7734vw,77.688vh) scale(.1377)}to{transform:translate(18.247vw,100vh) scale(.1377)}}.snow:nth-child(153){opacity:1.5354;transform:translate(8.8874vw,-10px) scale(.4144);animation:fall-153 26s -16s linear infinite}@keyframes fall-153{41.318%{transform:translate(6.9638vw,41.318vh) scale(.4144)}to{transform:translate(7.9256vw,100vh) scale(.4144)}}.snow:nth-child(154){opacity:.0794;transform:translate(79.651vw,-10px) scale(.8091);animation:fall-154 14s -22s linear infinite}@keyframes fall-154{35.621%{transform:translate(80.0448vw,35.621vh) scale(.8091)}to{transform:translate(79.8479vw,100vh) scale(.8091)}}.snow:nth-child(155){opacity:1.7336;transform:translate(59.2039vw,-10px) scale(.2686);animation:fall-155 29s -16s linear infinite}@keyframes fall-155{70.383%{transform:translate(51.8313vw,70.383vh) scale(.2686)}to{transform:translate(55.5176vw,100vh) scale(.2686)}}.snow:nth-child(156){opacity:.2568;transform:translate(24.8089vw,-10px) scale(.1721);animation:fall-156 29s -15s linear infinite}@keyframes fall-156{66.431%{transform:translate(30.8854vw,66.431vh) scale(.1721)}to{transform:translate(27.84715vw,100vh) scale(.1721)}}.snow:nth-child(157){opacity:1.8828;transform:translate(35.1359vw,-10px) scale(.7503);animation:fall-157 13s -11s linear infinite}@keyframes fall-157{68.895%{transform:translate(34.9638vw,68.895vh) scale(.7503)}to{transform:translate(35.04985vw,100vh) scale(.7503)}}.snow:nth-child(158){opacity:.5298;transform:translate(95.4034vw,-10px) scale(.2698);animation:fall-158 17s -30s linear infinite}@keyframes fall-158{31.338%{transform:translate(92.8446vw,31.338vh) scale(.2698)}to{transform:translate(94.124vw,100vh) scale(.2698)}}.snow:nth-child(159){opacity:1.4262;transform:translate(74.4254vw,-10px) scale(.5239);animation:fall-159 26s -2s linear infinite}@keyframes fall-159{73.956%{transform:translate(74.3186vw,73.956vh) scale(.5239)}to{transform:translate(74.372vw,100vh) scale(.5239)}}.snow:nth-child(160){opacity:.6136;transform:translate(33.5707vw,-10px) scale(.6196);animation:fall-160 19s -9s linear infinite}@keyframes fall-160{50.192%{transform:translate(30.3444vw,50.192vh) scale(.6196)}to{transform:translate(31.95755vw,100vh) scale(.6196)}}.snow:nth-child(161){opacity:.2494;transform:translate(73.3479vw,-10px) scale(.7082);animation:fall-161 24s -27s linear infinite}@keyframes fall-161{52.678%{transform:translate(78.5235vw,52.678vh) scale(.7082)}to{transform:translate(75.9357vw,100vh) scale(.7082)}}.snow:nth-child(162){opacity:.3002;transform:translate(29.6314vw,-10px) scale(.2369);animation:fall-162 11s -18s linear infinite}@keyframes fall-162{40.254%{transform:translate(34.9323vw,40.254vh) scale(.2369)}to{transform:translate(32.28185vw,100vh) scale(.2369)}}.snow:nth-child(163){opacity:1.4598;transform:translate(48.8478vw,-10px) scale(.4978);animation:fall-163 22s -7s linear infinite}@keyframes fall-163{44.071%{transform:translate(56.5848vw,44.071vh) scale(.4978)}to{transform:translate(52.7163vw,100vh) scale(.4978)}}.snow:nth-child(164){opacity:.781;transform:translate(98.5031vw,-10px) scale(.8973);animation:fall-164 11s -16s linear infinite}@keyframes fall-164{74.783%{transform:translate(93.1919vw,74.783vh) scale(.8973)}to{transform:translate(95.8475vw,100vh) scale(.8973)}}.snow:nth-child(165){opacity:1.1308;transform:translate(69.6943vw,-10px) scale(.3584);animation:fall-165 30s -9s linear infinite}@keyframes fall-165{46.42%{transform:translate(75.0461vw,46.42vh) scale(.3584)}to{transform:translate(72.3702vw,100vh) scale(.3584)}}.snow:nth-child(166){opacity:.3248;transform:translate(24.1676vw,-10px) scale(.1452);animation:fall-166 14s -20s linear infinite}@keyframes fall-166{71.717%{transform:translate(14.9112vw,71.717vh) scale(.1452)}to{transform:translate(19.5394vw,100vh) scale(.1452)}}.snow:nth-child(167){opacity:.4618;transform:translate(31.7341vw,-10px) scale(.291);animation:fall-167 27s -26s linear infinite}@keyframes fall-167{34.837%{transform:translate(32.4697vw,34.837vh) scale(.291)}to{transform:translate(32.1019vw,100vh) scale(.291)}}.snow:nth-child(168){opacity:1.623;transform:translate(90.6605vw,-10px) scale(.8886);animation:fall-168 19s -22s linear infinite}@keyframes fall-168{63.568%{transform:translate(84.7526vw,63.568vh) scale(.8886)}to{transform:translate(87.70655vw,100vh) scale(.8886)}}.snow:nth-child(169){opacity:.3452;transform:translate(96.9045vw,-10px) scale(.5438);animation:fall-169 14s -4s linear infinite}@keyframes fall-169{45.579%{transform:translate(89.5459vw,45.579vh) scale(.5438)}to{transform:translate(93.2252vw,100vh) scale(.5438)}}.snow:nth-child(170){opacity:1.4794;transform:translate(24.1987vw,-10px) scale(.1442);animation:fall-170 23s -25s linear infinite}@keyframes fall-170{67.907%{transform:translate(18.0617vw,67.907vh) scale(.1442)}to{transform:translate(21.1302vw,100vh) scale(.1442)}}.snow:nth-child(171){opacity:1.2086;transform:translate(31.5639vw,-10px) scale(.431);animation:fall-171 16s -16s linear infinite}@keyframes fall-171{45.409%{transform:translate(24.2923vw,45.409vh) scale(.431)}to{transform:translate(27.9281vw,100vh) scale(.431)}}.snow:nth-child(172){opacity:1.5548;transform:translate(4.7686vw,-10px) scale(.4824);animation:fall-172 24s -16s linear infinite}@keyframes fall-172{35.114%{transform:translate(7.6734vw,35.114vh) scale(.4824)}to{transform:translate(6.221vw,100vh) scale(.4824)}}.snow:nth-child(173){opacity:.6774;transform:translate(68.1865vw,-10px) scale(.3165);animation:fall-173 20s -1s linear infinite}@keyframes fall-173{33.826%{transform:translate(75.1228vw,33.826vh) scale(.3165)}to{transform:translate(71.65465vw,100vh) scale(.3165)}}.snow:nth-child(174){opacity:1.4096;transform:translate(42.0598vw,-10px) scale(.0397);animation:fall-174 16s -13s linear infinite}@keyframes fall-174{61.815%{transform:translate(43.8026vw,61.815vh) scale(.0397)}to{transform:translate(42.9312vw,100vh) scale(.0397)}}.snow:nth-child(175){opacity:.6074;transform:translate(17.1462vw,-10px) scale(.6781);animation:fall-175 23s -13s linear infinite}@keyframes fall-175{71.177%{transform:translate(19.9815vw,71.177vh) scale(.6781)}to{transform:translate(18.56385vw,100vh) scale(.6781)}}.snow:nth-child(176){opacity:1.148;transform:translate(12.0555vw,-10px) scale(.3227);animation:fall-176 20s -20s linear infinite}@keyframes fall-176{62.612%{transform:translate(7.8153vw,62.612vh) scale(.3227)}to{transform:translate(9.9354vw,100vh) scale(.3227)}}.snow:nth-child(177){opacity:.4712;transform:translate(87.6486vw,-10px) scale(.8846);animation:fall-177 25s -8s linear infinite}@keyframes fall-177{32.988%{transform:translate(84.7587vw,32.988vh) scale(.8846)}to{transform:translate(86.20365vw,100vh) scale(.8846)}}.snow:nth-child(178){opacity:1.4236;transform:translate(23.2196vw,-10px) scale(.9555);animation:fall-178 25s -21s linear infinite}@keyframes fall-178{65.466%{transform:translate(30.6796vw,65.466vh) scale(.9555)}to{transform:translate(26.9496vw,100vh) scale(.9555)}}.snow:nth-child(179){opacity:1.2736;transform:translate(9.2915vw,-10px) scale(.4851);animation:fall-179 21s -24s linear infinite}@keyframes fall-179{72.599%{transform:translate(4.2358vw,72.599vh) scale(.4851)}to{transform:translate(6.76365vw,100vh) scale(.4851)}}.snow:nth-child(180){opacity:.8082;transform:translate(28.0793vw,-10px) scale(.6156);animation:fall-180 19s -3s linear infinite}@keyframes fall-180{53.951%{transform:translate(32.7656vw,53.951vh) scale(.6156)}to{transform:translate(30.42245vw,100vh) scale(.6156)}}.snow:nth-child(181){opacity:.454;transform:translate(50.5289vw,-10px) scale(.0424);animation:fall-181 10s -15s linear infinite}@keyframes fall-181{36.727%{transform:translate(52.8089vw,36.727vh) scale(.0424)}to{transform:translate(51.6689vw,100vh) scale(.0424)}}.snow:nth-child(182){opacity:.5752;transform:translate(39.3021vw,-10px) scale(.3361);animation:fall-182 22s -20s linear infinite}@keyframes fall-182{59.653%{transform:translate(48.8734vw,59.653vh) scale(.3361)}to{transform:translate(44.08775vw,100vh) scale(.3361)}}.snow:nth-child(183){opacity:.6762;transform:translate(33.7183vw,-10px) scale(.8411);animation:fall-183 23s -1s linear infinite}@keyframes fall-183{47.633%{transform:translate(23.8253vw,47.633vh) scale(.8411)}to{transform:translate(28.7718vw,100vh) scale(.8411)}}.snow:nth-child(184){opacity:.3892;transform:translate(20.4006vw,-10px) scale(.5044);animation:fall-184 12s -21s linear infinite}@keyframes fall-184{50.15%{transform:translate(27.4577vw,50.15vh) scale(.5044)}to{transform:translate(23.92915vw,100vh) scale(.5044)}}.snow:nth-child(185){opacity:1.4004;transform:translate(30.401vw,-10px) scale(.2655);animation:fall-185 27s -2s linear infinite}@keyframes fall-185{32.086%{transform:translate(27.1755vw,32.086vh) scale(.2655)}to{transform:translate(28.78825vw,100vh) scale(.2655)}}.snow:nth-child(186){opacity:.8366;transform:translate(73.908vw,-10px) scale(.8229);animation:fall-186 26s -28s linear infinite}@keyframes fall-186{45.106%{transform:translate(83.1755vw,45.106vh) scale(.8229)}to{transform:translate(78.54175vw,100vh) scale(.8229)}}.snow:nth-child(187){opacity:1.312;transform:translate(84.4571vw,-10px) scale(.2996);animation:fall-187 20s -2s linear infinite}@keyframes fall-187{64.522%{transform:translate(80.1064vw,64.522vh) scale(.2996)}to{transform:translate(82.28175vw,100vh) scale(.2996)}}.snow:nth-child(188){opacity:1.8492;transform:translate(43.4962vw,-10px) scale(.2897);animation:fall-188 26s -1s linear infinite}@keyframes fall-188{65.842%{transform:translate(38.159vw,65.842vh) scale(.2897)}to{transform:translate(40.8276vw,100vh) scale(.2897)}}.snow:nth-child(189){opacity:1.0962;transform:translate(70.7638vw,-10px) scale(.6819);animation:fall-189 26s -5s linear infinite}@keyframes fall-189{43.799%{transform:translate(70.5793vw,43.799vh) scale(.6819)}to{transform:translate(70.67155vw,100vh) scale(.6819)}}.snow:nth-child(190){opacity:.2942;transform:translate(41.3449vw,-10px) scale(.2568);animation:fall-190 21s -6s linear infinite}@keyframes fall-190{38.877%{transform:translate(38.2027vw,38.877vh) scale(.2568)}to{transform:translate(39.7738vw,100vh) scale(.2568)}}.snow:nth-child(191){opacity:.2104;transform:translate(37.403vw,-10px) scale(.1587);animation:fall-191 14s -30s linear infinite}@keyframes fall-191{41.299%{transform:translate(34.9436vw,41.299vh) scale(.1587)}to{transform:translate(36.1733vw,100vh) scale(.1587)}}.snow:nth-child(192){opacity:.4368;transform:translate(39.7936vw,-10px) scale(.5136);animation:fall-192 24s -24s linear infinite}@keyframes fall-192{70.581%{transform:translate(44.2734vw,70.581vh) scale(.5136)}to{transform:translate(42.0335vw,100vh) scale(.5136)}}.snow:nth-child(193){opacity:.1498;transform:translate(88.9499vw,-10px) scale(.8742);animation:fall-193 12s -23s linear infinite}@keyframes fall-193{48.693%{transform:translate(84.4543vw,48.693vh) scale(.8742)}to{transform:translate(86.7021vw,100vh) scale(.8742)}}.snow:nth-child(194){opacity:1.0242;transform:translate(1.3736vw,-10px) scale(.697);animation:fall-194 11s -30s linear infinite}@keyframes fall-194{47.902%{transform:translate(4.7264vw,47.902vh) scale(.697)}to{transform:translate(3.05vw,100vh) scale(.697)}}.snow:nth-child(195){opacity:1.3374;transform:translate(90.2611vw,-10px) scale(.0209);animation:fall-195 29s -19s linear infinite}@keyframes fall-195{36.986%{transform:translate(91.6758vw,36.986vh) scale(.0209)}to{transform:translate(90.96845vw,100vh) scale(.0209)}}.snow:nth-child(196){opacity:1.145;transform:translate(23.2242vw,-10px) scale(.3754);animation:fall-196 29s -7s linear infinite}@keyframes fall-196{34.809%{transform:translate(23.2457vw,34.809vh) scale(.3754)}to{transform:translate(23.23495vw,100vh) scale(.3754)}}.snow:nth-child(197){opacity:.7344;transform:translate(27.4092vw,-10px) scale(.7433);animation:fall-197 19s -23s linear infinite}@keyframes fall-197{42.568%{transform:translate(19.8681vw,42.568vh) scale(.7433)}to{transform:translate(23.63865vw,100vh) scale(.7433)}}.snow:nth-child(198){opacity:.5164;transform:translate(55.1531vw,-10px) scale(.2499);animation:fall-198 14s -3s linear infinite}@keyframes fall-198{64.383%{transform:translate(57.0125vw,64.383vh) scale(.2499)}to{transform:translate(56.0828vw,100vh) scale(.2499)}}.snow:nth-child(199){opacity:1.8574;transform:translate(27.7724vw,-10px) scale(.3969);animation:fall-199 11s -30s linear infinite}@keyframes fall-199{50.804%{transform:translate(18.7822vw,50.804vh) scale(.3969)}to{transform:translate(23.2773vw,100vh) scale(.3969)}}.snow:nth-child(200){opacity:.8952;transform:translate(95.3631vw,-10px) scale(.6018);animation:fall-200 12s -8s linear infinite}@keyframes fall-200{49.047%{transform:translate(95.0739vw,49.047vh) scale(.6018)}to{transform:translate(95.2185vw,100vh) scale(.6018)}}.snow:nth-child(201){opacity:1.5304;transform:translate(94.054vw,-10px) scale(.476);animation:fall-201 19s -3s linear infinite}@keyframes fall-201{57.147%{transform:translate(87.8114vw,57.147vh) scale(.476)}to{transform:translate(90.9327vw,100vh) scale(.476)}}.snow:nth-child(202){opacity:1.807;transform:translate(15.0794vw,-10px) scale(.5162);animation:fall-202 30s -24s linear infinite}@keyframes fall-202{55.863%{transform:translate(21.6185vw,55.863vh) scale(.5162)}to{transform:translate(18.34895vw,100vh) scale(.5162)}}.snow:nth-child(203){opacity:1.509;transform:translate(6.5757vw,-10px) scale(.0169);animation:fall-203 13s -29s linear infinite}@keyframes fall-203{38.218%{transform:translate(2.3703vw,38.218vh) scale(.0169)}to{transform:translate(4.473vw,100vh) scale(.0169)}}.snow:nth-child(204){opacity:1.2416;transform:translate(85.5796vw,-10px) scale(.9159);animation:fall-204 18s -5s linear infinite}@keyframes fall-204{34.451%{transform:translate(87.4499vw,34.451vh) scale(.9159)}to{transform:translate(86.51475vw,100vh) scale(.9159)}}.snow:nth-child(205){opacity:1.6138;transform:translate(97.1979vw,-10px) scale(.8267);animation:fall-205 12s -18s linear infinite}@keyframes fall-205{62.585%{transform:translate(104.7888vw,62.585vh) scale(.8267)}to{transform:translate(100.99335vw,100vh) scale(.8267)}}.snow:nth-child(206){opacity:1.2762;transform:translate(45.4718vw,-10px) scale(.7027);animation:fall-206 16s -4s linear infinite}@keyframes fall-206{76.162%{transform:translate(46.0563vw,76.162vh) scale(.7027)}to{transform:translate(45.76405vw,100vh) scale(.7027)}}.snow:nth-child(207){opacity:.415;transform:translate(50.9018vw,-10px) scale(.8553);animation:fall-207 16s -28s linear infinite}@keyframes fall-207{74.103%{transform:translate(42.6091vw,74.103vh) scale(.8553)}to{transform:translate(46.75545vw,100vh) scale(.8553)}}.snow:nth-child(208){opacity:.3032;transform:translate(34.9282vw,-10px) scale(.279);animation:fall-208 13s -27s linear infinite}@keyframes fall-208{60.13%{transform:translate(28.2811vw,60.13vh) scale(.279)}to{transform:translate(31.60465vw,100vh) scale(.279)}}.snow:nth-child(209){opacity:1.0338;transform:translate(52.9438vw,-10px) scale(.5965);animation:fall-209 11s -16s linear infinite}@keyframes fall-209{42.88%{transform:translate(47.9283vw,42.88vh) scale(.5965)}to{transform:translate(50.43605vw,100vh) scale(.5965)}}.snow:nth-child(210){opacity:.0328;transform:translate(22.5046vw,-10px) scale(.7935);animation:fall-210 12s -16s linear infinite}@keyframes fall-210{42.9%{transform:translate(12.8917vw,42.9vh) scale(.7935)}to{transform:translate(17.69815vw,100vh) scale(.7935)}}.snow:nth-child(211){opacity:1.0416;transform:translate(92.0139vw,-10px) scale(.2403);animation:fall-211 16s -20s linear infinite}@keyframes fall-211{54.133%{transform:translate(84.0878vw,54.133vh) scale(.2403)}to{transform:translate(88.05085vw,100vh) scale(.2403)}}.snow:nth-child(212){opacity:.3808;transform:translate(51.2473vw,-10px) scale(.7858);animation:fall-212 17s -11s linear infinite}@keyframes fall-212{70.738%{transform:translate(53.1929vw,70.738vh) scale(.7858)}to{transform:translate(52.2201vw,100vh) scale(.7858)}}.snow:nth-child(213){opacity:1.6822;transform:translate(5.7612vw,-10px) scale(.07);animation:fall-213 13s -29s linear infinite}@keyframes fall-213{59.008%{transform:translate(-1.9564vw,59.008vh) scale(.07)}to{transform:translate(1.9024vw,100vh) scale(.07)}}.snow:nth-child(214){opacity:1.3546;transform:translate(12.7767vw,-10px) scale(.3238);animation:fall-214 22s -23s linear infinite}@keyframes fall-214{60.656%{transform:translate(20.6946vw,60.656vh) scale(.3238)}to{transform:translate(16.73565vw,100vh) scale(.3238)}}.snow:nth-child(215){opacity:.428;transform:translate(64.1191vw,-10px) scale(.2475);animation:fall-215 23s -6s linear infinite}@keyframes fall-215{39.105%{transform:translate(57.032vw,39.105vh) scale(.2475)}to{transform:translate(60.57555vw,100vh) scale(.2475)}}.snow:nth-child(216){opacity:1.3048;transform:translate(65.4966vw,-10px) scale(.7526);animation:fall-216 11s -17s linear infinite}@keyframes fall-216{37.247%{transform:translate(69.2676vw,37.247vh) scale(.7526)}to{transform:translate(67.3821vw,100vh) scale(.7526)}}.snow:nth-child(217){opacity:1.1616;transform:translate(36.564vw,-10px) scale(.4347);animation:fall-217 25s -10s linear infinite}@keyframes fall-217{43.52%{transform:translate(37.0269vw,43.52vh) scale(.4347)}to{transform:translate(36.79545vw,100vh) scale(.4347)}}.snow:nth-child(218){opacity:.9666;transform:translate(29.7088vw,-10px) scale(.6679);animation:fall-218 27s -19s linear infinite}@keyframes fall-218{53.205%{transform:translate(23.0793vw,53.205vh) scale(.6679)}to{transform:translate(26.39405vw,100vh) scale(.6679)}}.snow:nth-child(219){opacity:1.5212;transform:translate(71.3279vw,-10px) scale(.6845);animation:fall-219 24s -15s linear infinite}@keyframes fall-219{32.817%{transform:translate(80.4661vw,32.817vh) scale(.6845)}to{transform:translate(75.897vw,100vh) scale(.6845)}}.snow:nth-child(220){opacity:.0086;transform:translate(92.4757vw,-10px) scale(.871);animation:fall-220 12s -25s linear infinite}@keyframes fall-220{55.177%{transform:translate(99.2326vw,55.177vh) scale(.871)}to{transform:translate(95.85415vw,100vh) scale(.871)}}.snow:nth-child(221){opacity:.1194;transform:translate(38.1841vw,-10px) scale(.4299);animation:fall-221 28s -5s linear infinite}@keyframes fall-221{58.357%{transform:translate(35.0314vw,58.357vh) scale(.4299)}to{transform:translate(36.60775vw,100vh) scale(.4299)}}.snow:nth-child(222){opacity:.9202;transform:translate(86.9384vw,-10px) scale(.3351);animation:fall-222 21s -12s linear infinite}@keyframes fall-222{54.897%{transform:translate(78.3681vw,54.897vh) scale(.3351)}to{transform:translate(82.65325vw,100vh) scale(.3351)}}.snow:nth-child(223){opacity:1.2984;transform:translate(9.207vw,-10px) scale(.9694);animation:fall-223 23s -10s linear infinite}@keyframes fall-223{58.793%{transform:translate(9.5956vw,58.793vh) scale(.9694)}to{transform:translate(9.4013vw,100vh) scale(.9694)}}.snow:nth-child(224){opacity:1.1772;transform:translate(49.6396vw,-10px) scale(.9248);animation:fall-224 28s -20s linear infinite}@keyframes fall-224{46.467%{transform:translate(45.4903vw,46.467vh) scale(.9248)}to{transform:translate(47.56495vw,100vh) scale(.9248)}}.snow:nth-child(225){opacity:.43;transform:translate(73.4935vw,-10px) scale(.1844);animation:fall-225 18s -13s linear infinite}@keyframes fall-225{43.825%{transform:translate(78.2337vw,43.825vh) scale(.1844)}to{transform:translate(75.8636vw,100vh) scale(.1844)}}.snow:nth-child(226){opacity:.536;transform:translate(34.0929vw,-10px) scale(.3323);animation:fall-226 27s -27s linear infinite}@keyframes fall-226{59.107%{transform:translate(28.5827vw,59.107vh) scale(.3323)}to{transform:translate(31.3378vw,100vh) scale(.3323)}}.snow:nth-child(227){opacity:.513;transform:translate(90.1405vw,-10px) scale(.2618);animation:fall-227 22s -10s linear infinite}@keyframes fall-227{71.066%{transform:translate(89.2812vw,71.066vh) scale(.2618)}to{transform:translate(89.71085vw,100vh) scale(.2618)}}.snow:nth-child(228){opacity:.34;transform:translate(65.1116vw,-10px) scale(.2681);animation:fall-228 24s -6s linear infinite}@keyframes fall-228{34.755%{transform:translate(74.8146vw,34.755vh) scale(.2681)}to{transform:translate(69.9631vw,100vh) scale(.2681)}}.snow:nth-child(229){opacity:.8904;transform:translate(91.6337vw,-10px) scale(.3523);animation:fall-229 25s -30s linear infinite}@keyframes fall-229{42.14%{transform:translate(87.1097vw,42.14vh) scale(.3523)}to{transform:translate(89.3717vw,100vh) scale(.3523)}}.snow:nth-child(230){opacity:1.1924;transform:translate(64.2663vw,-10px) scale(.4538);animation:fall-230 19s -5s linear infinite}@keyframes fall-230{35.521%{transform:translate(60.4676vw,35.521vh) scale(.4538)}to{transform:translate(62.36695vw,100vh) scale(.4538)}}.snow:nth-child(231){opacity:.2002;transform:translate(12.919vw,-10px) scale(.8474);animation:fall-231 21s -23s linear infinite}@keyframes fall-231{78.038%{transform:translate(18.6189vw,78.038vh) scale(.8474)}to{transform:translate(15.76895vw,100vh) scale(.8474)}}.snow:nth-child(232){opacity:1.2296;transform:translate(28.7765vw,-10px) scale(.7747);animation:fall-232 29s -7s linear infinite}@keyframes fall-232{43.362%{transform:translate(30.4811vw,43.362vh) scale(.7747)}to{transform:translate(29.6288vw,100vh) scale(.7747)}}.snow:nth-child(233){opacity:1.0774;transform:translate(47.6488vw,-10px) scale(.835);animation:fall-233 16s -27s linear infinite}@keyframes fall-233{40.616%{transform:translate(38.9476vw,40.616vh) scale(.835)}to{transform:translate(43.2982vw,100vh) scale(.835)}}.snow:nth-child(234){opacity:.85;transform:translate(99.2995vw,-10px) scale(.0262);animation:fall-234 20s -15s linear infinite}@keyframes fall-234{39.628%{transform:translate(96.3877vw,39.628vh) scale(.0262)}to{transform:translate(97.8436vw,100vh) scale(.0262)}}.snow:nth-child(235){opacity:.8088;transform:translate(72.9619vw,-10px) scale(.7056);animation:fall-235 25s -2s linear infinite}@keyframes fall-235{71.579%{transform:translate(73.8946vw,71.579vh) scale(.7056)}to{transform:translate(73.42825vw,100vh) scale(.7056)}}.snow:nth-child(236){opacity:1.3216;transform:translate(97.6211vw,-10px) scale(.6725);animation:fall-236 14s -23s linear infinite}@keyframes fall-236{55.584%{transform:translate(100.8384vw,55.584vh) scale(.6725)}to{transform:translate(99.22975vw,100vh) scale(.6725)}}.snow:nth-child(237){opacity:1.0786;transform:translate(91.4412vw,-10px) scale(.3081);animation:fall-237 25s -3s linear infinite}@keyframes fall-237{39.962%{transform:translate(98.7522vw,39.962vh) scale(.3081)}to{transform:translate(95.0967vw,100vh) scale(.3081)}}.snow:nth-child(238){opacity:.2798;transform:translate(41.3943vw,-10px) scale(.5946);animation:fall-238 14s -14s linear infinite}@keyframes fall-238{74.578%{transform:translate(38.9598vw,74.578vh) scale(.5946)}to{transform:translate(40.17705vw,100vh) scale(.5946)}}.snow:nth-child(239){opacity:.3736;transform:translate(90.1952vw,-10px) scale(.6377);animation:fall-239 30s -16s linear infinite}@keyframes fall-239{48.063%{transform:translate(84.0225vw,48.063vh) scale(.6377)}to{transform:translate(87.10885vw,100vh) scale(.6377)}}.snow:nth-child(240){opacity:1.2082;transform:translate(99.9585vw,-10px) scale(.3647);animation:fall-240 17s -11s linear infinite}@keyframes fall-240{74.882%{transform:translate(103.9425vw,74.882vh) scale(.3647)}to{transform:translate(101.9505vw,100vh) scale(.3647)}}.snow:nth-child(241){opacity:1.9488;transform:translate(89.9434vw,-10px) scale(.0152);animation:fall-241 27s -4s linear infinite}@keyframes fall-241{73.657%{transform:translate(95.8887vw,73.657vh) scale(.0152)}to{transform:translate(92.91605vw,100vh) scale(.0152)}}.snow:nth-child(242){opacity:1.0696;transform:translate(86.8146vw,-10px) scale(.7411);animation:fall-242 21s -21s linear infinite}@keyframes fall-242{38.582%{transform:translate(80.8032vw,38.582vh) scale(.7411)}to{transform:translate(83.8089vw,100vh) scale(.7411)}}.snow:nth-child(243){opacity:.2934;transform:translate(2.1173vw,-10px) scale(.0494);animation:fall-243 25s -3s linear infinite}@keyframes fall-243{63.411%{transform:translate(-3.105vw,63.411vh) scale(.0494)}to{transform:translate(-.49385vw,100vh) scale(.0494)}}.snow:nth-child(244){opacity:.4992;transform:translate(49.5637vw,-10px) scale(.5655);animation:fall-244 20s -9s linear infinite}@keyframes fall-244{37.643%{transform:translate(58.7068vw,37.643vh) scale(.5655)}to{transform:translate(54.13525vw,100vh) scale(.5655)}}.snow:nth-child(245){opacity:.9076;transform:translate(19.4417vw,-10px) scale(.0429);animation:fall-245 21s -9s linear infinite}@keyframes fall-245{65.823%{transform:translate(9.5305vw,65.823vh) scale(.0429)}to{transform:translate(14.4861vw,100vh) scale(.0429)}}.snow:nth-child(246){opacity:1.4144;transform:translate(25.1017vw,-10px) scale(.2021);animation:fall-246 11s -6s linear infinite}@keyframes fall-246{58.643%{transform:translate(30.489vw,58.643vh) scale(.2021)}to{transform:translate(27.79535vw,100vh) scale(.2021)}}.snow:nth-child(247){opacity:.1416;transform:translate(6.541vw,-10px) scale(.8062);animation:fall-247 28s -18s linear infinite}@keyframes fall-247{59.875%{transform:translate(3.3658vw,59.875vh) scale(.8062)}to{transform:translate(4.9534vw,100vh) scale(.8062)}}.snow:nth-child(248){opacity:1.3754;transform:translate(47.1205vw,-10px) scale(.6843);animation:fall-248 13s -12s linear infinite}@keyframes fall-248{45.005%{transform:translate(53.069vw,45.005vh) scale(.6843)}to{transform:translate(50.09475vw,100vh) scale(.6843)}}.snow:nth-child(249){opacity:1.2842;transform:translate(95.4436vw,-10px) scale(.9628);animation:fall-249 12s -18s linear infinite}@keyframes fall-249{50.275%{transform:translate(92.5425vw,50.275vh) scale(.9628)}to{transform:translate(93.99305vw,100vh) scale(.9628)}}.snow:nth-child(250){opacity:1.1108;transform:translate(75.4569vw,-10px) scale(.1509);animation:fall-250 27s -16s linear infinite}@keyframes fall-250{35.959%{transform:translate(75.0418vw,35.959vh) scale(.1509)}to{transform:translate(75.24935vw,100vh) scale(.1509)}}.snow:nth-child(251){opacity:.891;transform:translate(85.5927vw,-10px) scale(.8454);animation:fall-251 29s -25s linear infinite}@keyframes fall-251{47.421%{transform:translate(88.8828vw,47.421vh) scale(.8454)}to{transform:translate(87.23775vw,100vh) scale(.8454)}}.snow:nth-child(252){opacity:1.3408;transform:translate(45.0941vw,-10px) scale(.6726);animation:fall-252 17s -9s linear infinite}@keyframes fall-252{40.411%{transform:translate(52.7562vw,40.411vh) scale(.6726)}to{transform:translate(48.92515vw,100vh) scale(.6726)}}.snow:nth-child(253){opacity:.5554;transform:translate(31.404vw,-10px) scale(.6248);animation:fall-253 10s -15s linear infinite}@keyframes fall-253{63.088%{transform:translate(27.3736vw,63.088vh) scale(.6248)}to{transform:translate(29.3888vw,100vh) scale(.6248)}}.snow:nth-child(254){opacity:1.786;transform:translate(27.8665vw,-10px) scale(.6976);animation:fall-254 10s -13s linear infinite}@keyframes fall-254{67.639%{transform:translate(21.5204vw,67.639vh) scale(.6976)}to{transform:translate(24.69345vw,100vh) scale(.6976)}}.snow:nth-child(255){opacity:1.7214;transform:translate(99.9157vw,-10px) scale(.2398);animation:fall-255 20s -6s linear infinite}@keyframes fall-255{42.312%{transform:translate(106.5847vw,42.312vh) scale(.2398)}to{transform:translate(103.2502vw,100vh) scale(.2398)}}.snow:nth-child(256){opacity:1.5852;transform:translate(12.2273vw,-10px) scale(.1392);animation:fall-256 13s -15s linear infinite}@keyframes fall-256{66.921%{transform:translate(15.5771vw,66.921vh) scale(.1392)}to{transform:translate(13.9022vw,100vh) scale(.1392)}}.snow:nth-child(257){opacity:1.0044;transform:translate(61.7465vw,-10px) scale(.5913);animation:fall-257 30s -26s linear infinite}@keyframes fall-257{69.748%{transform:translate(70.5339vw,69.748vh) scale(.5913)}to{transform:translate(66.1402vw,100vh) scale(.5913)}}.snow:nth-child(258){opacity:.2614;transform:translate(9.4073vw,-10px) scale(.9832);animation:fall-258 18s -3s linear infinite}@keyframes fall-258{67.261%{transform:translate(16.7646vw,67.261vh) scale(.9832)}to{transform:translate(13.08595vw,100vh) scale(.9832)}}.snow:nth-child(259){opacity:.237;transform:translate(77.3006vw,-10px) scale(.0835);animation:fall-259 14s -13s linear infinite}@keyframes fall-259{77.732%{transform:translate(67.3382vw,77.732vh) scale(.0835)}to{transform:translate(72.3194vw,100vh) scale(.0835)}}.snow:nth-child(260){opacity:.184;transform:translate(60.1373vw,-10px) scale(.6945);animation:fall-260 30s -7s linear infinite}@keyframes fall-260{72.816%{transform:translate(52.654vw,72.816vh) scale(.6945)}to{transform:translate(56.39565vw,100vh) scale(.6945)}}.snow:nth-child(261){opacity:.8924;transform:translate(19.2194vw,-10px) scale(.7439);animation:fall-261 14s -21s linear infinite}@keyframes fall-261{76.864%{transform:translate(27.2356vw,76.864vh) scale(.7439)}to{transform:translate(23.2275vw,100vh) scale(.7439)}}.snow:nth-child(262){opacity:.4904;transform:translate(43.2279vw,-10px) scale(.8116);animation:fall-262 23s -30s linear infinite}@keyframes fall-262{57.597%{transform:translate(37.9843vw,57.597vh) scale(.8116)}to{transform:translate(40.6061vw,100vh) scale(.8116)}}.snow:nth-child(263){opacity:1.7328;transform:translate(17.5577vw,-10px) scale(.6732);animation:fall-263 14s -20s linear infinite}@keyframes fall-263{76.41%{transform:translate(23.7324vw,76.41vh) scale(.6732)}to{transform:translate(20.64505vw,100vh) scale(.6732)}}.snow:nth-child(264){opacity:1.6912;transform:translate(73.5941vw,-10px) scale(.7276);animation:fall-264 30s -13s linear infinite}@keyframes fall-264{58.032%{transform:translate(66.5607vw,58.032vh) scale(.7276)}to{transform:translate(70.0774vw,100vh) scale(.7276)}}.snow:nth-child(265){opacity:.7904;transform:translate(89.7788vw,-10px) scale(.6594);animation:fall-265 10s -20s linear infinite}@keyframes fall-265{42.96%{transform:translate(87.8653vw,42.96vh) scale(.6594)}to{transform:translate(88.82205vw,100vh) scale(.6594)}}.snow:nth-child(266){opacity:.148;transform:translate(86.6386vw,-10px) scale(.2398);animation:fall-266 11s -2s linear infinite}@keyframes fall-266{71.75%{transform:translate(95.4716vw,71.75vh) scale(.2398)}to{transform:translate(91.0551vw,100vh) scale(.2398)}}.snow:nth-child(267){opacity:1.1926;transform:translate(66.2706vw,-10px) scale(.8176);animation:fall-267 29s -30s linear infinite}@keyframes fall-267{70.378%{transform:translate(63.4287vw,70.378vh) scale(.8176)}to{transform:translate(64.84965vw,100vh) scale(.8176)}}.snow:nth-child(268){opacity:1.1986;transform:translate(90.57vw,-10px) scale(.4298);animation:fall-268 13s -30s linear infinite}@keyframes fall-268{51.494%{transform:translate(97.7913vw,51.494vh) scale(.4298)}to{transform:translate(94.18065vw,100vh) scale(.4298)}}.snow:nth-child(269){opacity:1.9774;transform:translate(16.4863vw,-10px) scale(.788);animation:fall-269 26s -30s linear infinite}@keyframes fall-269{64.298%{transform:translate(8.9879vw,64.298vh) scale(.788)}to{transform:translate(12.7371vw,100vh) scale(.788)}}.snow:nth-child(270){opacity:1.0182;transform:translate(54.1103vw,-10px) scale(.9282);animation:fall-270 23s -14s linear infinite}@keyframes fall-270{67.702%{transform:translate(50.7955vw,67.702vh) scale(.9282)}to{transform:translate(52.4529vw,100vh) scale(.9282)}}.snow:nth-child(271){opacity:.108;transform:translate(85.7276vw,-10px) scale(.8406);animation:fall-271 18s -24s linear infinite}@keyframes fall-271{57.661%{transform:translate(90.0526vw,57.661vh) scale(.8406)}to{transform:translate(87.8901vw,100vh) scale(.8406)}}.snow:nth-child(272){opacity:.933;transform:translate(83.1608vw,-10px) scale(.9731);animation:fall-272 10s -28s linear infinite}@keyframes fall-272{36.132%{transform:translate(83.2106vw,36.132vh) scale(.9731)}to{transform:translate(83.1857vw,100vh) scale(.9731)}}.snow:nth-child(273){opacity:1.3392;transform:translate(63.8218vw,-10px) scale(.9215);animation:fall-273 24s -11s linear infinite}@keyframes fall-273{53.853%{transform:translate(57.3318vw,53.853vh) scale(.9215)}to{transform:translate(60.5768vw,100vh) scale(.9215)}}.snow:nth-child(274){opacity:1.4774;transform:translate(89.5976vw,-10px) scale(.1374);animation:fall-274 22s -5s linear infinite}@keyframes fall-274{50.734%{transform:translate(82.2445vw,50.734vh) scale(.1374)}to{transform:translate(85.92105vw,100vh) scale(.1374)}}.snow:nth-child(275){opacity:.2292;transform:translate(48.0636vw,-10px) scale(.9844);animation:fall-275 26s -2s linear infinite}@keyframes fall-275{75.502%{transform:translate(47.474vw,75.502vh) scale(.9844)}to{transform:translate(47.7688vw,100vh) scale(.9844)}}.snow:nth-child(276){opacity:1.6476;transform:translate(92.053vw,-10px) scale(.3024);animation:fall-276 21s -26s linear infinite}@keyframes fall-276{75.231%{transform:translate(98.5815vw,75.231vh) scale(.3024)}to{transform:translate(95.31725vw,100vh) scale(.3024)}}.snow:nth-child(277){opacity:1.7114;transform:translate(76.2152vw,-10px) scale(.3898);animation:fall-277 20s -17s linear infinite}@keyframes fall-277{51.148%{transform:translate(69.5017vw,51.148vh) scale(.3898)}to{transform:translate(72.85845vw,100vh) scale(.3898)}}.snow:nth-child(278){opacity:1.2576;transform:translate(41.9078vw,-10px) scale(.8679);animation:fall-278 13s -10s linear infinite}@keyframes fall-278{43.646%{transform:translate(37.751vw,43.646vh) scale(.8679)}to{transform:translate(39.8294vw,100vh) scale(.8679)}}.snow:nth-child(279){opacity:1.0248;transform:translate(30.9462vw,-10px) scale(.7142);animation:fall-279 22s -30s linear infinite}@keyframes fall-279{40.777%{transform:translate(23.7292vw,40.777vh) scale(.7142)}to{transform:translate(27.3377vw,100vh) scale(.7142)}}.snow:nth-child(280){opacity:.4334;transform:translate(23.9116vw,-10px) scale(.9015);animation:fall-280 11s -20s linear infinite}@keyframes fall-280{62.739%{transform:translate(20.7099vw,62.739vh) scale(.9015)}to{transform:translate(22.31075vw,100vh) scale(.9015)}}.snow:nth-child(281){opacity:.2786;transform:translate(42.4172vw,-10px) scale(.3707);animation:fall-281 25s -19s linear infinite}@keyframes fall-281{67.577%{transform:translate(48.0065vw,67.577vh) scale(.3707)}to{transform:translate(45.21185vw,100vh) scale(.3707)}}.snow:nth-child(282){opacity:1.1226;transform:translate(17.8582vw,-10px) scale(.5997);animation:fall-282 12s -24s linear infinite}@keyframes fall-282{40.338%{transform:translate(7.9358vw,40.338vh) scale(.5997)}to{transform:translate(12.897vw,100vh) scale(.5997)}}.snow:nth-child(283){opacity:.76;transform:translate(75.3732vw,-10px) scale(.0652);animation:fall-283 18s -15s linear infinite}@keyframes fall-283{62.06%{transform:translate(79.6424vw,62.06vh) scale(.0652)}to{transform:translate(77.5078vw,100vh) scale(.0652)}}.snow:nth-child(284){opacity:.7824;transform:translate(94.9486vw,-10px) scale(.9952);animation:fall-284 20s -22s linear infinite}@keyframes fall-284{61.358%{transform:translate(104.7239vw,61.358vh) scale(.9952)}to{transform:translate(99.83625vw,100vh) scale(.9952)}}.snow:nth-child(285){opacity:1.9404;transform:translate(28.0497vw,-10px) scale(.1185);animation:fall-285 26s -26s linear infinite}@keyframes fall-285{32.601%{transform:translate(19.6261vw,32.601vh) scale(.1185)}to{transform:translate(23.8379vw,100vh) scale(.1185)}}.snow:nth-child(286){opacity:.9792;transform:translate(.9299vw,-10px) scale(.099);animation:fall-286 28s -17s linear infinite}@keyframes fall-286{46.801%{transform:translate(-8.7676vw,46.801vh) scale(.099)}to{transform:translate(-3.91885vw,100vh) scale(.099)}}.snow:nth-child(287){opacity:1.956;transform:translate(36.1977vw,-10px) scale(.9397);animation:fall-287 14s -15s linear infinite}@keyframes fall-287{77.228%{transform:translate(35.4997vw,77.228vh) scale(.9397)}to{transform:translate(35.8487vw,100vh) scale(.9397)}}.snow:nth-child(288){opacity:1.5522;transform:translate(24.0828vw,-10px) scale(.0748);animation:fall-288 20s -1s linear infinite}@keyframes fall-288{31.548%{transform:translate(33.7053vw,31.548vh) scale(.0748)}to{transform:translate(28.89405vw,100vh) scale(.0748)}}.snow:nth-child(289){opacity:1.3914;transform:translate(54.7626vw,-10px) scale(.9099);animation:fall-289 29s -19s linear infinite}@keyframes fall-289{75.83%{transform:translate(45.14vw,75.83vh) scale(.9099)}to{transform:translate(49.9513vw,100vh) scale(.9099)}}.snow:nth-child(290){opacity:1.8616;transform:translate(54.2328vw,-10px) scale(.3497);animation:fall-290 27s -24s linear infinite}@keyframes fall-290{32.811%{transform:translate(44.7136vw,32.811vh) scale(.3497)}to{transform:translate(49.4732vw,100vh) scale(.3497)}}.snow:nth-child(291){opacity:.834;transform:translate(84.8402vw,-10px) scale(.5074);animation:fall-291 14s -15s linear infinite}@keyframes fall-291{78.927%{transform:translate(75.6668vw,78.927vh) scale(.5074)}to{transform:translate(80.2535vw,100vh) scale(.5074)}}.snow:nth-child(292){opacity:1.5084;transform:translate(23.7076vw,-10px) scale(.0363);animation:fall-292 15s -12s linear infinite}@keyframes fall-292{59.513%{transform:translate(13.7879vw,59.513vh) scale(.0363)}to{transform:translate(18.74775vw,100vh) scale(.0363)}}.snow:nth-child(293){opacity:.9418;transform:translate(3.8682vw,-10px) scale(.1288);animation:fall-293 16s -10s linear infinite}@keyframes fall-293{30.438%{transform:translate(-.6257vw,30.438vh) scale(.1288)}to{transform:translate(1.62125vw,100vh) scale(.1288)}}.snow:nth-child(294){opacity:.1714;transform:translate(54.5202vw,-10px) scale(.2539);animation:fall-294 30s -2s linear infinite}@keyframes fall-294{31.59%{transform:translate(47.6291vw,31.59vh) scale(.2539)}to{transform:translate(51.07465vw,100vh) scale(.2539)}}.snow:nth-child(295){opacity:1.959;transform:translate(94.9907vw,-10px) scale(.3468);animation:fall-295 29s -28s linear infinite}@keyframes fall-295{50.776%{transform:translate(85.7529vw,50.776vh) scale(.3468)}to{transform:translate(90.3718vw,100vh) scale(.3468)}}.snow:nth-child(296){opacity:1.9808;transform:translate(55.6588vw,-10px) scale(.2102);animation:fall-296 25s -8s linear infinite}@keyframes fall-296{31.702%{transform:translate(57.968vw,31.702vh) scale(.2102)}to{transform:translate(56.8134vw,100vh) scale(.2102)}}.snow:nth-child(297){opacity:1.7624;transform:translate(85.6091vw,-10px) scale(.044);animation:fall-297 18s -26s linear infinite}@keyframes fall-297{38.579%{transform:translate(78.7739vw,38.579vh) scale(.044)}to{transform:translate(82.1915vw,100vh) scale(.044)}}.snow:nth-child(298){opacity:.9694;transform:translate(89.3214vw,-10px) scale(.1322);animation:fall-298 18s -9s linear infinite}@keyframes fall-298{77.965%{transform:translate(81.5325vw,77.965vh) scale(.1322)}to{transform:translate(85.42695vw,100vh) scale(.1322)}}.snow:nth-child(299){opacity:.1348;transform:translate(63.6348vw,-10px) scale(.2945);animation:fall-299 24s -8s linear infinite}@keyframes fall-299{31.762%{transform:translate(55.5781vw,31.762vh) scale(.2945)}to{transform:translate(59.60645vw,100vh) scale(.2945)}}.snow:nth-child(300){opacity:1.6878;transform:translate(84.5143vw,-10px) scale(.4255);animation:fall-300 24s -1s linear infinite}@keyframes fall-300{43.718%{transform:translate(77.2746vw,43.718vh) scale(.4255)}to{transform:translate(80.89445vw,100vh) scale(.4255)}}.snow:nth-child(301){opacity:.8316;transform:translate(83.2794vw,-10px) scale(.3926);animation:fall-301 24s -12s linear infinite}@keyframes fall-301{42.698%{transform:translate(85.2682vw,42.698vh) scale(.3926)}to{transform:translate(84.2738vw,100vh) scale(.3926)}}.snow:nth-child(302){opacity:.9968;transform:translate(1.0971vw,-10px) scale(.9314);animation:fall-302 29s -22s linear infinite}@keyframes fall-302{68.096%{transform:translate(10.3578vw,68.096vh) scale(.9314)}to{transform:translate(5.72745vw,100vh) scale(.9314)}}.snow:nth-child(303){opacity:.0816;transform:translate(64.8773vw,-10px) scale(.6042);animation:fall-303 10s -20s linear infinite}@keyframes fall-303{30.069%{transform:translate(64.535vw,30.069vh) scale(.6042)}to{transform:translate(64.70615vw,100vh) scale(.6042)}}.snow:nth-child(304){opacity:.9656;transform:translate(83.4979vw,-10px) scale(.8358);animation:fall-304 24s -21s linear infinite}@keyframes fall-304{72.088%{transform:translate(79.8275vw,72.088vh) scale(.8358)}to{transform:translate(81.6627vw,100vh) scale(.8358)}}.snow:nth-child(305){opacity:.149;transform:translate(58.9758vw,-10px) scale(.9183);animation:fall-305 25s -12s linear infinite}@keyframes fall-305{76.492%{transform:translate(50.6693vw,76.492vh) scale(.9183)}to{transform:translate(54.82255vw,100vh) scale(.9183)}}.snow:nth-child(306){opacity:1.0248;transform:translate(55.2806vw,-10px) scale(.1906);animation:fall-306 15s -1s linear infinite}@keyframes fall-306{41.391%{transform:translate(64.792vw,41.391vh) scale(.1906)}to{transform:translate(60.0363vw,100vh) scale(.1906)}}.snow:nth-child(307){opacity:1.4242;transform:translate(89.5611vw,-10px) scale(.0356);animation:fall-307 17s -5s linear infinite}@keyframes fall-307{49.132%{transform:translate(99.3508vw,49.132vh) scale(.0356)}to{transform:translate(94.45595vw,100vh) scale(.0356)}}.snow:nth-child(308){opacity:1.8654;transform:translate(22.7807vw,-10px) scale(.5496);animation:fall-308 19s -2s linear infinite}@keyframes fall-308{70.233%{transform:translate(29.908vw,70.233vh) scale(.5496)}to{transform:translate(26.34435vw,100vh) scale(.5496)}}.snow:nth-child(309){opacity:.1922;transform:translate(11.7928vw,-10px) scale(.4575);animation:fall-309 20s -6s linear infinite}@keyframes fall-309{48.195%{transform:translate(6.6631vw,48.195vh) scale(.4575)}to{transform:translate(9.22795vw,100vh) scale(.4575)}}.snow:nth-child(310){opacity:.9136;transform:translate(53.2713vw,-10px) scale(.8529);animation:fall-310 27s -10s linear infinite}@keyframes fall-310{43.988%{transform:translate(55.5734vw,43.988vh) scale(.8529)}to{transform:translate(54.42235vw,100vh) scale(.8529)}}.snow:nth-child(311){opacity:1.1156;transform:translate(18.888vw,-10px) scale(.2687);animation:fall-311 11s -19s linear infinite}@keyframes fall-311{76.932%{transform:translate(21.6034vw,76.932vh) scale(.2687)}to{transform:translate(20.2457vw,100vh) scale(.2687)}}.snow:nth-child(312){opacity:.652;transform:translate(95.9056vw,-10px) scale(.0871);animation:fall-312 16s -12s linear infinite}@keyframes fall-312{66.055%{transform:translate(104.9857vw,66.055vh) scale(.0871)}to{transform:translate(100.44565vw,100vh) scale(.0871)}}.snow:nth-child(313){opacity:1.2612;transform:translate(59.638vw,-10px) scale(.2235);animation:fall-313 15s -13s linear infinite}@keyframes fall-313{57.68%{transform:translate(69.6037vw,57.68vh) scale(.2235)}to{transform:translate(64.62085vw,100vh) scale(.2235)}}.snow:nth-child(314){opacity:1.8432;transform:translate(9.9371vw,-10px) scale(.5484);animation:fall-314 26s -8s linear infinite}@keyframes fall-314{38.276%{transform:translate(5.3011vw,38.276vh) scale(.5484)}to{transform:translate(7.6191vw,100vh) scale(.5484)}}.snow:nth-child(315){opacity:1.0296;transform:translate(70.5422vw,-10px) scale(.3522);animation:fall-315 16s -14s linear infinite}@keyframes fall-315{46.87%{transform:translate(62.1525vw,46.87vh) scale(.3522)}to{transform:translate(66.34735vw,100vh) scale(.3522)}}.snow:nth-child(316){opacity:1.3124;transform:translate(33.7553vw,-10px) scale(.7325);animation:fall-316 11s -11s linear infinite}@keyframes fall-316{41.902%{transform:translate(28.067vw,41.902vh) scale(.7325)}to{transform:translate(30.91115vw,100vh) scale(.7325)}}.snow:nth-child(317){opacity:.126;transform:translate(19.5621vw,-10px) scale(.8671);animation:fall-317 28s -20s linear infinite}@keyframes fall-317{59.014%{transform:translate(25.0921vw,59.014vh) scale(.8671)}to{transform:translate(22.3271vw,100vh) scale(.8671)}}.snow:nth-child(318){opacity:1.7008;transform:translate(33.0744vw,-10px) scale(.8729);animation:fall-318 24s -23s linear infinite}@keyframes fall-318{63.439%{transform:translate(26.8012vw,63.439vh) scale(.8729)}to{transform:translate(29.9378vw,100vh) scale(.8729)}}.snow:nth-child(319){opacity:1.8514;transform:translate(20.946vw,-10px) scale(.9566);animation:fall-319 28s -24s linear infinite}@keyframes fall-319{73.269%{transform:translate(19.8997vw,73.269vh) scale(.9566)}to{transform:translate(20.42285vw,100vh) scale(.9566)}}.snow:nth-child(320){opacity:1.6182;transform:translate(94.7513vw,-10px) scale(.3119);animation:fall-320 22s -24s linear infinite}@keyframes fall-320{70.437%{transform:translate(93.7478vw,70.437vh) scale(.3119)}to{transform:translate(94.24955vw,100vh) scale(.3119)}}.snow:nth-child(321){opacity:.0944;transform:translate(3.3741vw,-10px) scale(.435);animation:fall-321 21s -21s linear infinite}@keyframes fall-321{44.103%{transform:translate(12.2099vw,44.103vh) scale(.435)}to{transform:translate(7.792vw,100vh) scale(.435)}}.snow:nth-child(322){opacity:1.9028;transform:translate(24.1541vw,-10px) scale(.1114);animation:fall-322 13s -4s linear infinite}@keyframes fall-322{60.019%{transform:translate(26.8859vw,60.019vh) scale(.1114)}to{transform:translate(25.52vw,100vh) scale(.1114)}}.snow:nth-child(323){opacity:.785;transform:translate(62.5174vw,-10px) scale(.1619);animation:fall-323 22s -8s linear infinite}@keyframes fall-323{59.717%{transform:translate(64.7038vw,59.717vh) scale(.1619)}to{transform:translate(63.6106vw,100vh) scale(.1619)}}.snow:nth-child(324){opacity:.0628;transform:translate(50.1522vw,-10px) scale(.1842);animation:fall-324 24s -26s linear infinite}@keyframes fall-324{54.661%{transform:translate(51.1974vw,54.661vh) scale(.1842)}to{transform:translate(50.6748vw,100vh) scale(.1842)}}.snow:nth-child(325){opacity:1.4992;transform:translate(66.83vw,-10px) scale(.138);animation:fall-325 10s -29s linear infinite}@keyframes fall-325{75.043%{transform:translate(76.7025vw,75.043vh) scale(.138)}to{transform:translate(71.76625vw,100vh) scale(.138)}}.snow:nth-child(326){opacity:1.3324;transform:translate(23.1419vw,-10px) scale(.0401);animation:fall-326 22s -29s linear infinite}@keyframes fall-326{37.854%{transform:translate(19.6542vw,37.854vh) scale(.0401)}to{transform:translate(21.39805vw,100vh) scale(.0401)}}.snow:nth-child(327){opacity:.2756;transform:translate(78.5583vw,-10px) scale(.4985);animation:fall-327 22s -2s linear infinite}@keyframes fall-327{68.421%{transform:translate(81.2078vw,68.421vh) scale(.4985)}to{transform:translate(79.88305vw,100vh) scale(.4985)}}.snow:nth-child(328){opacity:.3518;transform:translate(18.1818vw,-10px) scale(.2815);animation:fall-328 28s -6s linear infinite}@keyframes fall-328{59.051%{transform:translate(8.2077vw,59.051vh) scale(.2815)}to{transform:translate(13.19475vw,100vh) scale(.2815)}}.snow:nth-child(329){opacity:1.1674;transform:translate(45.3098vw,-10px) scale(.2782);animation:fall-329 29s -3s linear infinite}@keyframes fall-329{35.853%{transform:translate(52.7856vw,35.853vh) scale(.2782)}to{transform:translate(49.0477vw,100vh) scale(.2782)}}.snow:nth-child(330){opacity:1.9852;transform:translate(54.0373vw,-10px) scale(.8922);animation:fall-330 12s -14s linear infinite}@keyframes fall-330{54.296%{transform:translate(57.1845vw,54.296vh) scale(.8922)}to{transform:translate(55.6109vw,100vh) scale(.8922)}}.snow:nth-child(331){opacity:1.7076;transform:translate(96.7931vw,-10px) scale(.3639);animation:fall-331 11s -5s linear infinite}@keyframes fall-331{42.462%{transform:translate(89.1194vw,42.462vh) scale(.3639)}to{transform:translate(92.95625vw,100vh) scale(.3639)}}.snow:nth-child(332){opacity:1.7076;transform:translate(18.8869vw,-10px) scale(.6525);animation:fall-332 20s -13s linear infinite}@keyframes fall-332{65.151%{transform:translate(18.1653vw,65.151vh) scale(.6525)}to{transform:translate(18.5261vw,100vh) scale(.6525)}}.snow:nth-child(333){opacity:.9194;transform:translate(79.7105vw,-10px) scale(.8788);animation:fall-333 12s -2s linear infinite}@keyframes fall-333{41.045%{transform:translate(81.3617vw,41.045vh) scale(.8788)}to{transform:translate(80.5361vw,100vh) scale(.8788)}}.snow:nth-child(334){opacity:.6604;transform:translate(24.1385vw,-10px) scale(.7585);animation:fall-334 16s -28s linear infinite}@keyframes fall-334{34.495%{transform:translate(28.4102vw,34.495vh) scale(.7585)}to{transform:translate(26.27435vw,100vh) scale(.7585)}}.snow:nth-child(335){opacity:.7442;transform:translate(74.9827vw,-10px) scale(.9762);animation:fall-335 13s -26s linear infinite}@keyframes fall-335{60.115%{transform:translate(74.7801vw,60.115vh) scale(.9762)}to{transform:translate(74.8814vw,100vh) scale(.9762)}}.snow:nth-child(336){opacity:.784;transform:translate(50.7827vw,-10px) scale(.0918);animation:fall-336 11s -14s linear infinite}@keyframes fall-336{41.211%{transform:translate(41.6802vw,41.211vh) scale(.0918)}to{transform:translate(46.23145vw,100vh) scale(.0918)}}.snow:nth-child(337){opacity:1.486;transform:translate(87.6667vw,-10px) scale(.604);animation:fall-337 26s -24s linear infinite}@keyframes fall-337{59.586%{transform:translate(80.6142vw,59.586vh) scale(.604)}to{transform:translate(84.14045vw,100vh) scale(.604)}}.snow:nth-child(338){opacity:.1272;transform:translate(55.4639vw,-10px) scale(.3853);animation:fall-338 28s -21s linear infinite}@keyframes fall-338{52.071%{transform:translate(46.2538vw,52.071vh) scale(.3853)}to{transform:translate(50.85885vw,100vh) scale(.3853)}}.snow:nth-child(339){opacity:1.6378;transform:translate(42.3366vw,-10px) scale(.5649);animation:fall-339 25s -25s linear infinite}@keyframes fall-339{63.514%{transform:translate(46.5072vw,63.514vh) scale(.5649)}to{transform:translate(44.4219vw,100vh) scale(.5649)}}.snow:nth-child(340){opacity:.5334;transform:translate(4.0388vw,-10px) scale(.8358);animation:fall-340 18s -15s linear infinite}@keyframes fall-340{74.098%{transform:translate(12.2638vw,74.098vh) scale(.8358)}to{transform:translate(8.1513vw,100vh) scale(.8358)}}.snow:nth-child(341){opacity:.7712;transform:translate(8.1705vw,-10px) scale(.3331);animation:fall-341 18s -14s linear infinite}@keyframes fall-341{57.294%{transform:translate(.8887vw,57.294vh) scale(.3331)}to{transform:translate(4.5296vw,100vh) scale(.3331)}}.snow:nth-child(342){opacity:1.4004;transform:translate(63.466vw,-10px) scale(.149);animation:fall-342 27s -6s linear infinite}@keyframes fall-342{61.913%{transform:translate(70.948vw,61.913vh) scale(.149)}to{transform:translate(67.207vw,100vh) scale(.149)}}.snow:nth-child(343){opacity:1.1864;transform:translate(42.2329vw,-10px) scale(.4145);animation:fall-343 16s -18s linear infinite}@keyframes fall-343{37.682%{transform:translate(36.7012vw,37.682vh) scale(.4145)}to{transform:translate(39.46705vw,100vh) scale(.4145)}}.snow:nth-child(344){opacity:.1686;transform:translate(6.4259vw,-10px) scale(.5807);animation:fall-344 21s -16s linear infinite}@keyframes fall-344{79.355%{transform:translate(.9052vw,79.355vh) scale(.5807)}to{transform:translate(3.66555vw,100vh) scale(.5807)}}.snow:nth-child(345){opacity:1.7072;transform:translate(37.2777vw,-10px) scale(.6435);animation:fall-345 10s -6s linear infinite}@keyframes fall-345{44.167%{transform:translate(36.9878vw,44.167vh) scale(.6435)}to{transform:translate(37.13275vw,100vh) scale(.6435)}}.snow:nth-child(346){opacity:1.9864;transform:translate(22.2357vw,-10px) scale(.8527);animation:fall-346 20s -4s linear infinite}@keyframes fall-346{59.76%{transform:translate(16.9003vw,59.76vh) scale(.8527)}to{transform:translate(19.568vw,100vh) scale(.8527)}}.snow:nth-child(347){opacity:1.7278;transform:translate(26.8579vw,-10px) scale(.4767);animation:fall-347 19s -22s linear infinite}@keyframes fall-347{40.216%{transform:translate(24.8294vw,40.216vh) scale(.4767)}to{transform:translate(25.84365vw,100vh) scale(.4767)}}.snow:nth-child(348){opacity:1.6072;transform:translate(60.8285vw,-10px) scale(.7935);animation:fall-348 14s -2s linear infinite}@keyframes fall-348{31.906%{transform:translate(66.7878vw,31.906vh) scale(.7935)}to{transform:translate(63.80815vw,100vh) scale(.7935)}}.snow:nth-child(349){opacity:.748;transform:translate(58.6794vw,-10px) scale(.2403);animation:fall-349 27s -9s linear infinite}@keyframes fall-349{36.482%{transform:translate(63.9264vw,36.482vh) scale(.2403)}to{transform:translate(61.3029vw,100vh) scale(.2403)}}.snow:nth-child(350){opacity:1.3614;transform:translate(92.8207vw,-10px) scale(.5151);animation:fall-350 30s -3s linear infinite}@keyframes fall-350{43.888%{transform:translate(91.9707vw,43.888vh) scale(.5151)}to{transform:translate(92.3957vw,100vh) scale(.5151)}}.snow:nth-child(351){opacity:.1982;transform:translate(31.7787vw,-10px) scale(.0601);animation:fall-351 10s -19s linear infinite}@keyframes fall-351{59.146%{transform:translate(28.3793vw,59.146vh) scale(.0601)}to{transform:translate(30.079vw,100vh) scale(.0601)}}.snow:nth-child(352){opacity:.9306;transform:translate(30.587vw,-10px) scale(.0581);animation:fall-352 28s -2s linear infinite}@keyframes fall-352{30.748%{transform:translate(25.4741vw,30.748vh) scale(.0581)}to{transform:translate(28.03055vw,100vh) scale(.0581)}}.snow:nth-child(353){opacity:1.2972;transform:translate(34.2705vw,-10px) scale(.299);animation:fall-353 21s -13s linear infinite}@keyframes fall-353{58.109%{transform:translate(42.634vw,58.109vh) scale(.299)}to{transform:translate(38.45225vw,100vh) scale(.299)}}.snow:nth-child(354){opacity:.036;transform:translate(70.3892vw,-10px) scale(.5419);animation:fall-354 22s -27s linear infinite}@keyframes fall-354{57.059%{transform:translate(75.9238vw,57.059vh) scale(.5419)}to{transform:translate(73.1565vw,100vh) scale(.5419)}}.snow:nth-child(355){opacity:.65;transform:translate(26.8336vw,-10px) scale(.9427);animation:fall-355 16s -1s linear infinite}@keyframes fall-355{65.013%{transform:translate(26.4634vw,65.013vh) scale(.9427)}to{transform:translate(26.6485vw,100vh) scale(.9427)}}.snow:nth-child(356){opacity:1.6778;transform:translate(64.3927vw,-10px) scale(.9827);animation:fall-356 18s -28s linear infinite}@keyframes fall-356{69.661%{transform:translate(72.5858vw,69.661vh) scale(.9827)}to{transform:translate(68.48925vw,100vh) scale(.9827)}}.snow:nth-child(357){opacity:.26;transform:translate(80.9059vw,-10px) scale(.3983);animation:fall-357 20s -20s linear infinite}@keyframes fall-357{44.119%{transform:translate(78.6765vw,44.119vh) scale(.3983)}to{transform:translate(79.7912vw,100vh) scale(.3983)}}.snow:nth-child(358){opacity:1.3452;transform:translate(35.8226vw,-10px) scale(.5319);animation:fall-358 13s -24s linear infinite}@keyframes fall-358{50.564%{transform:translate(31.7522vw,50.564vh) scale(.5319)}to{transform:translate(33.7874vw,100vh) scale(.5319)}}.snow:nth-child(359){opacity:.6508;transform:translate(99.5896vw,-10px) scale(.514);animation:fall-359 29s -14s linear infinite}@keyframes fall-359{45.462%{transform:translate(93.9799vw,45.462vh) scale(.514)}to{transform:translate(96.78475vw,100vh) scale(.514)}}.snow:nth-child(360){opacity:1.5518;transform:translate(93.0201vw,-10px) scale(.7302);animation:fall-360 29s -28s linear infinite}@keyframes fall-360{66.376%{transform:translate(90.8789vw,66.376vh) scale(.7302)}to{transform:translate(91.9495vw,100vh) scale(.7302)}}.snow:nth-child(361){opacity:.7184;transform:translate(43.9959vw,-10px) scale(.609);animation:fall-361 20s -28s linear infinite}@keyframes fall-361{60.955%{transform:translate(40.2732vw,60.955vh) scale(.609)}to{transform:translate(42.13455vw,100vh) scale(.609)}}.snow:nth-child(362){opacity:1.312;transform:translate(2.3125vw,-10px) scale(.1314);animation:fall-362 16s -30s linear infinite}@keyframes fall-362{67.136%{transform:translate(8.0142vw,67.136vh) scale(.1314)}to{transform:translate(5.16335vw,100vh) scale(.1314)}}.snow:nth-child(363){opacity:.793;transform:translate(68.3711vw,-10px) scale(.1628);animation:fall-363 10s -22s linear infinite}@keyframes fall-363{43.405%{transform:translate(65.3529vw,43.405vh) scale(.1628)}to{transform:translate(66.862vw,100vh) scale(.1628)}}.snow:nth-child(364){opacity:.3742;transform:translate(53.8018vw,-10px) scale(.433);animation:fall-364 16s -13s linear infinite}@keyframes fall-364{33.165%{transform:translate(54.5987vw,33.165vh) scale(.433)}to{transform:translate(54.20025vw,100vh) scale(.433)}}.snow:nth-child(365){opacity:.2372;transform:translate(22.5743vw,-10px) scale(.9662);animation:fall-365 21s -18s linear infinite}@keyframes fall-365{54.204%{transform:translate(28.6778vw,54.204vh) scale(.9662)}to{transform:translate(25.62605vw,100vh) scale(.9662)}}.snow:nth-child(366){opacity:1.7982;transform:translate(92.861vw,-10px) scale(.4456);animation:fall-366 29s -22s linear infinite}@keyframes fall-366{66.15%{transform:translate(102.745vw,66.15vh) scale(.4456)}to{transform:translate(97.803vw,100vh) scale(.4456)}}.snow:nth-child(367){opacity:.7986;transform:translate(46.2447vw,-10px) scale(.6724);animation:fall-367 30s -8s linear infinite}@keyframes fall-367{53.591%{transform:translate(55.7836vw,53.591vh) scale(.6724)}to{transform:translate(51.01415vw,100vh) scale(.6724)}}.snow:nth-child(368){opacity:1.1308;transform:translate(23.5517vw,-10px) scale(.7351);animation:fall-368 16s -9s linear infinite}@keyframes fall-368{58.215%{transform:translate(26.0892vw,58.215vh) scale(.7351)}to{transform:translate(24.82045vw,100vh) scale(.7351)}}.snow:nth-child(369){opacity:.7624;transform:translate(72.3052vw,-10px) scale(.28);animation:fall-369 15s -29s linear infinite}@keyframes fall-369{73.478%{transform:translate(66.6033vw,73.478vh) scale(.28)}to{transform:translate(69.45425vw,100vh) scale(.28)}}.snow:nth-child(370){opacity:.974;transform:translate(49.6083vw,-10px) scale(.9343);animation:fall-370 14s -5s linear infinite}@keyframes fall-370{58.62%{transform:translate(50.2541vw,58.62vh) scale(.9343)}to{transform:translate(49.9312vw,100vh) scale(.9343)}}.snow:nth-child(371){opacity:.4518;transform:translate(52.2937vw,-10px) scale(.4776);animation:fall-371 10s -14s linear infinite}@keyframes fall-371{72.3%{transform:translate(49.696vw,72.3vh) scale(.4776)}to{transform:translate(50.99485vw,100vh) scale(.4776)}}.snow:nth-child(372){opacity:1.9744;transform:translate(35.3715vw,-10px) scale(.3248);animation:fall-372 10s -29s linear infinite}@keyframes fall-372{54.711%{transform:translate(35.2469vw,54.711vh) scale(.3248)}to{transform:translate(35.3092vw,100vh) scale(.3248)}}.snow:nth-child(373){opacity:1.6616;transform:translate(14.7256vw,-10px) scale(.6239);animation:fall-373 10s -19s linear infinite}@keyframes fall-373{65.328%{transform:translate(10.9965vw,65.328vh) scale(.6239)}to{transform:translate(12.86105vw,100vh) scale(.6239)}}.snow:nth-child(374){opacity:1.008;transform:translate(83.596vw,-10px) scale(.7205);animation:fall-374 15s -15s linear infinite}@keyframes fall-374{38.395%{transform:translate(78.9201vw,38.395vh) scale(.7205)}to{transform:translate(81.25805vw,100vh) scale(.7205)}}.snow:nth-child(375){opacity:1.0316;transform:translate(61.62vw,-10px) scale(.9837);animation:fall-375 21s -15s linear infinite}@keyframes fall-375{56.49%{transform:translate(65.5729vw,56.49vh) scale(.9837)}to{transform:translate(63.59645vw,100vh) scale(.9837)}}.snow:nth-child(376){opacity:.2846;transform:translate(65.2777vw,-10px) scale(.3198);animation:fall-376 28s -30s linear infinite}@keyframes fall-376{60.58%{transform:translate(61.8667vw,60.58vh) scale(.3198)}to{transform:translate(63.5722vw,100vh) scale(.3198)}}.snow:nth-child(377){opacity:.6932;transform:translate(2.5706vw,-10px) scale(.7589);animation:fall-377 13s -25s linear infinite}@keyframes fall-377{63.717%{transform:translate(-4.985vw,63.717vh) scale(.7589)}to{transform:translate(-1.2072vw,100vh) scale(.7589)}}.snow:nth-child(378){opacity:1.8096;transform:translate(90.4605vw,-10px) scale(.1004);animation:fall-378 14s -6s linear infinite}@keyframes fall-378{72.319%{transform:translate(89.3435vw,72.319vh) scale(.1004)}to{transform:translate(89.902vw,100vh) scale(.1004)}}.snow:nth-child(379){opacity:.268;transform:translate(57.4201vw,-10px) scale(.9279);animation:fall-379 20s -5s linear infinite}@keyframes fall-379{63.609%{transform:translate(65.107vw,63.609vh) scale(.9279)}to{transform:translate(61.26355vw,100vh) scale(.9279)}}.snow:nth-child(380){opacity:.6724;transform:translate(16.8195vw,-10px) scale(.0328);animation:fall-380 24s -23s linear infinite}@keyframes fall-380{53.612%{transform:translate(16.0856vw,53.612vh) scale(.0328)}to{transform:translate(16.45255vw,100vh) scale(.0328)}}.snow:nth-child(381){opacity:1.2142;transform:translate(13.1193vw,-10px) scale(.1211);animation:fall-381 16s -17s linear infinite}@keyframes fall-381{45.28%{transform:translate(4.2503vw,45.28vh) scale(.1211)}to{transform:translate(8.6848vw,100vh) scale(.1211)}}.snow:nth-child(382){opacity:.9094;transform:translate(13.4552vw,-10px) scale(.2234);animation:fall-382 20s -7s linear infinite}@keyframes fall-382{30.274%{transform:translate(7.9258vw,30.274vh) scale(.2234)}to{transform:translate(10.6905vw,100vh) scale(.2234)}}.snow:nth-child(383){opacity:.6118;transform:translate(90.1198vw,-10px) scale(.1171);animation:fall-383 13s -20s linear infinite}@keyframes fall-383{77.633%{transform:translate(99.9658vw,77.633vh) scale(.1171)}to{transform:translate(95.0428vw,100vh) scale(.1171)}}.snow:nth-child(384){opacity:.2606;transform:translate(87.7277vw,-10px) scale(.9238);animation:fall-384 10s -30s linear infinite}@keyframes fall-384{53.111%{transform:translate(92.0211vw,53.111vh) scale(.9238)}to{transform:translate(89.8744vw,100vh) scale(.9238)}}.snow:nth-child(385){opacity:1.3368;transform:translate(17.3056vw,-10px) scale(.0169);animation:fall-385 15s -11s linear infinite}@keyframes fall-385{77.582%{transform:translate(13.3935vw,77.582vh) scale(.0169)}to{transform:translate(15.34955vw,100vh) scale(.0169)}}.snow:nth-child(386){opacity:.6706;transform:translate(58.0394vw,-10px) scale(.3295);animation:fall-386 15s -19s linear infinite}@keyframes fall-386{59.758%{transform:translate(51.8559vw,59.758vh) scale(.3295)}to{transform:translate(54.94765vw,100vh) scale(.3295)}}.snow:nth-child(387){opacity:.6936;transform:translate(18.9998vw,-10px) scale(.929);animation:fall-387 24s -16s linear infinite}@keyframes fall-387{34.814%{transform:translate(25.0557vw,34.814vh) scale(.929)}to{transform:translate(22.02775vw,100vh) scale(.929)}}.snow:nth-child(388){opacity:.7566;transform:translate(92.7162vw,-10px) scale(.9096);animation:fall-388 11s -18s linear infinite}@keyframes fall-388{59.016%{transform:translate(98.0742vw,59.016vh) scale(.9096)}to{transform:translate(95.3952vw,100vh) scale(.9096)}}.snow:nth-child(389){opacity:1.1964;transform:translate(73.0159vw,-10px) scale(.3804);animation:fall-389 14s -10s linear infinite}@keyframes fall-389{30.952%{transform:translate(76.2091vw,30.952vh) scale(.3804)}to{transform:translate(74.6125vw,100vh) scale(.3804)}}.snow:nth-child(390){opacity:.872;transform:translate(90.9023vw,-10px) scale(.953);animation:fall-390 30s -15s linear infinite}@keyframes fall-390{69.622%{transform:translate(97.9236vw,69.622vh) scale(.953)}to{transform:translate(94.41295vw,100vh) scale(.953)}}.snow:nth-child(391){opacity:.7116;transform:translate(61.9498vw,-10px) scale(.8419);animation:fall-391 22s -4s linear infinite}@keyframes fall-391{79.712%{transform:translate(59.0052vw,79.712vh) scale(.8419)}to{transform:translate(60.4775vw,100vh) scale(.8419)}}.snow:nth-child(392){opacity:1.343;transform:translate(78.8786vw,-10px) scale(.4811);animation:fall-392 24s -2s linear infinite}@keyframes fall-392{35.136%{transform:translate(77.4822vw,35.136vh) scale(.4811)}to{transform:translate(78.1804vw,100vh) scale(.4811)}}.snow:nth-child(393){opacity:.1812;transform:translate(56.5238vw,-10px) scale(.2768);animation:fall-393 17s -13s linear infinite}@keyframes fall-393{32.527%{transform:translate(49.0019vw,32.527vh) scale(.2768)}to{transform:translate(52.76285vw,100vh) scale(.2768)}}.snow:nth-child(394){opacity:.9094;transform:translate(67.8504vw,-10px) scale(.2189);animation:fall-394 27s -19s linear infinite}@keyframes fall-394{61.41%{transform:translate(58.2266vw,61.41vh) scale(.2189)}to{transform:translate(63.0385vw,100vh) scale(.2189)}}.snow:nth-child(395){opacity:1.2402;transform:translate(2.5941vw,-10px) scale(.3893);animation:fall-395 28s -13s linear infinite}@keyframes fall-395{62.05%{transform:translate(-1.4912vw,62.05vh) scale(.3893)}to{transform:translate(.55145vw,100vh) scale(.3893)}}.snow:nth-child(396){opacity:1.2224;transform:translate(48.2724vw,-10px) scale(.9651);animation:fall-396 30s -14s linear infinite}@keyframes fall-396{76.168%{transform:translate(41.1241vw,76.168vh) scale(.9651)}to{transform:translate(44.69825vw,100vh) scale(.9651)}}.snow:nth-child(397){opacity:.2018;transform:translate(83.8407vw,-10px) scale(.7016);animation:fall-397 29s -23s linear infinite}@keyframes fall-397{62.439%{transform:translate(81.0539vw,62.439vh) scale(.7016)}to{transform:translate(82.4473vw,100vh) scale(.7016)}}.snow:nth-child(398){opacity:1.1942;transform:translate(57.8604vw,-10px) scale(.741);animation:fall-398 25s -29s linear infinite}@keyframes fall-398{32.991%{transform:translate(61.2902vw,32.991vh) scale(.741)}to{transform:translate(59.5753vw,100vh) scale(.741)}}.snow:nth-child(399){opacity:.0986;transform:translate(12.3287vw,-10px) scale(.4509);animation:fall-399 27s -17s linear infinite}@keyframes fall-399{55.699%{transform:translate(13.8295vw,55.699vh) scale(.4509)}to{transform:translate(13.0791vw,100vh) scale(.4509)}}.snow:nth-child(400){opacity:.541;transform:translate(33.4817vw,-10px) scale(.0846);animation:fall-400 16s -7s linear infinite}@keyframes fall-400{79.497%{transform:translate(34.0522vw,79.497vh) scale(.0846)}to{transform:translate(33.76695vw,100vh) scale(.0846)}}\n"] }]
24
+ 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.46;transform:translate(7.4384vw,-10px) scale(.8742);animation:fall-1 16s -16s linear infinite}@keyframes fall-1{51.954%{transform:translate(1.6927vw,51.954vh) scale(.8742)}to{transform:translate(4.56555vw,100vh) scale(.8742)}}.snow:nth-child(2){opacity:.574;transform:translate(9.0515vw,-10px) scale(.8679);animation:fall-2 29s -17s linear infinite}@keyframes fall-2{37.952%{transform:translate(11.2258vw,37.952vh) scale(.8679)}to{transform:translate(10.13865vw,100vh) scale(.8679)}}.snow:nth-child(3){opacity:1.4944;transform:translate(14.2686vw,-10px) scale(.6372);animation:fall-3 13s -11s linear infinite}@keyframes fall-3{43.564%{transform:translate(17.5604vw,43.564vh) scale(.6372)}to{transform:translate(15.9145vw,100vh) scale(.6372)}}.snow:nth-child(4){opacity:.041;transform:translate(54.4003vw,-10px) scale(.0704);animation:fall-4 25s -19s linear infinite}@keyframes fall-4{46.904%{transform:translate(59.0694vw,46.904vh) scale(.0704)}to{transform:translate(56.73485vw,100vh) scale(.0704)}}.snow:nth-child(5){opacity:.6714;transform:translate(99.7275vw,-10px) scale(.2422);animation:fall-5 15s -2s linear infinite}@keyframes fall-5{52.986%{transform:translate(92.6252vw,52.986vh) scale(.2422)}to{transform:translate(96.17635vw,100vh) scale(.2422)}}.snow:nth-child(6){opacity:.7632;transform:translate(2.0447vw,-10px) scale(.3993);animation:fall-6 27s -24s linear infinite}@keyframes fall-6{53.944%{transform:translate(-2.3871vw,53.944vh) scale(.3993)}to{transform:translate(-.1712vw,100vh) scale(.3993)}}.snow:nth-child(7){opacity:1.9048;transform:translate(70.5928vw,-10px) scale(.2827);animation:fall-7 22s -21s linear infinite}@keyframes fall-7{64.669%{transform:translate(75.9426vw,64.669vh) scale(.2827)}to{transform:translate(73.2677vw,100vh) scale(.2827)}}.snow:nth-child(8){opacity:.6054;transform:translate(48.9087vw,-10px) scale(.1178);animation:fall-8 18s -21s linear infinite}@keyframes fall-8{71.599%{transform:translate(46.2483vw,71.599vh) scale(.1178)}to{transform:translate(47.5785vw,100vh) scale(.1178)}}.snow:nth-child(9){opacity:.7638;transform:translate(29.7981vw,-10px) scale(.5809);animation:fall-9 11s -23s linear infinite}@keyframes fall-9{66.594%{transform:translate(24.9774vw,66.594vh) scale(.5809)}to{transform:translate(27.38775vw,100vh) scale(.5809)}}.snow:nth-child(10){opacity:1.3126;transform:translate(47.4489vw,-10px) scale(.7707);animation:fall-10 27s -13s linear infinite}@keyframes fall-10{61.82%{transform:translate(53.6887vw,61.82vh) scale(.7707)}to{transform:translate(50.5688vw,100vh) scale(.7707)}}.snow:nth-child(11){opacity:1.3418;transform:translate(31.4859vw,-10px) scale(.0326);animation:fall-11 19s -5s linear infinite}@keyframes fall-11{45.292%{transform:translate(39.2888vw,45.292vh) scale(.0326)}to{transform:translate(35.38735vw,100vh) scale(.0326)}}.snow:nth-child(12){opacity:.5854;transform:translate(25.468vw,-10px) scale(.5075);animation:fall-12 18s -4s linear infinite}@keyframes fall-12{65.739%{transform:translate(19.7391vw,65.739vh) scale(.5075)}to{transform:translate(22.60355vw,100vh) scale(.5075)}}.snow:nth-child(13){opacity:1.327;transform:translate(22.5988vw,-10px) scale(.8205);animation:fall-13 13s -26s linear infinite}@keyframes fall-13{52.43%{transform:translate(27.7106vw,52.43vh) scale(.8205)}to{transform:translate(25.1547vw,100vh) scale(.8205)}}.snow:nth-child(14){opacity:.8494;transform:translate(9.5291vw,-10px) scale(.5618);animation:fall-14 15s -10s linear infinite}@keyframes fall-14{43.07%{transform:translate(2.6374vw,43.07vh) scale(.5618)}to{transform:translate(6.08325vw,100vh) scale(.5618)}}.snow:nth-child(15){opacity:.4954;transform:translate(7.7476vw,-10px) scale(.9812);animation:fall-15 13s -13s linear infinite}@keyframes fall-15{65.348%{transform:translate(8.2368vw,65.348vh) scale(.9812)}to{transform:translate(7.9922vw,100vh) scale(.9812)}}.snow:nth-child(16){opacity:.9616;transform:translate(92.0458vw,-10px) scale(.1099);animation:fall-16 23s -26s linear infinite}@keyframes fall-16{72.983%{transform:translate(82.0951vw,72.983vh) scale(.1099)}to{transform:translate(87.07045vw,100vh) scale(.1099)}}.snow:nth-child(17){opacity:.5338;transform:translate(7.7057vw,-10px) scale(.0035);animation:fall-17 17s -19s linear infinite}@keyframes fall-17{61.273%{transform:translate(15.6806vw,61.273vh) scale(.0035)}to{transform:translate(11.69315vw,100vh) scale(.0035)}}.snow:nth-child(18){opacity:.1744;transform:translate(45.8099vw,-10px) scale(.2498);animation:fall-18 20s -9s linear infinite}@keyframes fall-18{30.409%{transform:translate(39.3801vw,30.409vh) scale(.2498)}to{transform:translate(42.595vw,100vh) scale(.2498)}}.snow:nth-child(19){opacity:.3576;transform:translate(57.3069vw,-10px) scale(.7596);animation:fall-19 13s -28s linear infinite}@keyframes fall-19{59.277%{transform:translate(65.5638vw,59.277vh) scale(.7596)}to{transform:translate(61.43535vw,100vh) scale(.7596)}}.snow:nth-child(20){opacity:.07;transform:translate(20.7833vw,-10px) scale(.0228);animation:fall-20 29s -19s linear infinite}@keyframes fall-20{47.705%{transform:translate(24.5844vw,47.705vh) scale(.0228)}to{transform:translate(22.68385vw,100vh) scale(.0228)}}.snow:nth-child(21){opacity:1.2648;transform:translate(93.9904vw,-10px) scale(.137);animation:fall-21 13s -27s linear infinite}@keyframes fall-21{55.923%{transform:translate(103.9377vw,55.923vh) scale(.137)}to{transform:translate(98.96405vw,100vh) scale(.137)}}.snow:nth-child(22){opacity:1.0814;transform:translate(41.7674vw,-10px) scale(.1478);animation:fall-22 17s -23s linear infinite}@keyframes fall-22{36.5%{transform:translate(41.2093vw,36.5vh) scale(.1478)}to{transform:translate(41.48835vw,100vh) scale(.1478)}}.snow:nth-child(23){opacity:.6024;transform:translate(66.3387vw,-10px) scale(.3734);animation:fall-23 26s -30s linear infinite}@keyframes fall-23{63.835%{transform:translate(72.1516vw,63.835vh) scale(.3734)}to{transform:translate(69.24515vw,100vh) scale(.3734)}}.snow:nth-child(24){opacity:.1484;transform:translate(53.7804vw,-10px) scale(.5942);animation:fall-24 15s -23s linear infinite}@keyframes fall-24{41.334%{transform:translate(61.1379vw,41.334vh) scale(.5942)}to{transform:translate(57.45915vw,100vh) scale(.5942)}}.snow:nth-child(25){opacity:.7568;transform:translate(94.4534vw,-10px) scale(.8632);animation:fall-25 30s -30s linear infinite}@keyframes fall-25{39.191%{transform:translate(101.4212vw,39.191vh) scale(.8632)}to{transform:translate(97.9373vw,100vh) scale(.8632)}}.snow:nth-child(26){opacity:1.2972;transform:translate(84.2803vw,-10px) scale(.7274);animation:fall-26 19s -20s linear infinite}@keyframes fall-26{58.347%{transform:translate(86.7263vw,58.347vh) scale(.7274)}to{transform:translate(85.5033vw,100vh) scale(.7274)}}.snow:nth-child(27){opacity:1.0262;transform:translate(83.6765vw,-10px) scale(.6378);animation:fall-27 20s -6s linear infinite}@keyframes fall-27{56.716%{transform:translate(93.5334vw,56.716vh) scale(.6378)}to{transform:translate(88.60495vw,100vh) scale(.6378)}}.snow:nth-child(28){opacity:.1376;transform:translate(37.8914vw,-10px) scale(.2167);animation:fall-28 19s -19s linear infinite}@keyframes fall-28{79.609%{transform:translate(37.5977vw,79.609vh) scale(.2167)}to{transform:translate(37.74455vw,100vh) scale(.2167)}}.snow:nth-child(29){opacity:1.2356;transform:translate(89.912vw,-10px) scale(.1266);animation:fall-29 15s -12s linear infinite}@keyframes fall-29{53.589%{transform:translate(91.6936vw,53.589vh) scale(.1266)}to{transform:translate(90.8028vw,100vh) scale(.1266)}}.snow:nth-child(30){opacity:.4794;transform:translate(37.1631vw,-10px) scale(.6715);animation:fall-30 30s -3s linear infinite}@keyframes fall-30{74.002%{transform:translate(30.9875vw,74.002vh) scale(.6715)}to{transform:translate(34.0753vw,100vh) scale(.6715)}}.snow:nth-child(31){opacity:.4572;transform:translate(65.8487vw,-10px) scale(.0665);animation:fall-31 17s -16s linear infinite}@keyframes fall-31{71.753%{transform:translate(64.1945vw,71.753vh) scale(.0665)}to{transform:translate(65.0216vw,100vh) scale(.0665)}}.snow:nth-child(32){opacity:1.5824;transform:translate(83.0241vw,-10px) scale(.292);animation:fall-32 21s -16s linear infinite}@keyframes fall-32{55.524%{transform:translate(75.2073vw,55.524vh) scale(.292)}to{transform:translate(79.1157vw,100vh) scale(.292)}}.snow:nth-child(33){opacity:.798;transform:translate(71.7478vw,-10px) scale(.6156);animation:fall-33 30s -14s linear infinite}@keyframes fall-33{78.696%{transform:translate(80.7004vw,78.696vh) scale(.6156)}to{transform:translate(76.2241vw,100vh) scale(.6156)}}.snow:nth-child(34){opacity:1.3782;transform:translate(88.3368vw,-10px) scale(.3221);animation:fall-34 16s -22s linear infinite}@keyframes fall-34{66.323%{transform:translate(79.6825vw,66.323vh) scale(.3221)}to{transform:translate(84.00965vw,100vh) scale(.3221)}}.snow:nth-child(35){opacity:.0756;transform:translate(27.6731vw,-10px) scale(.904);animation:fall-35 24s -22s linear infinite}@keyframes fall-35{47.01%{transform:translate(36.0911vw,47.01vh) scale(.904)}to{transform:translate(31.8821vw,100vh) scale(.904)}}.snow:nth-child(36){opacity:.0564;transform:translate(8.6567vw,-10px) scale(.5847);animation:fall-36 21s -27s linear infinite}@keyframes fall-36{70.913%{transform:translate(11.2554vw,70.913vh) scale(.5847)}to{transform:translate(9.95605vw,100vh) scale(.5847)}}.snow:nth-child(37){opacity:.1648;transform:translate(35.5721vw,-10px) scale(.2801);animation:fall-37 26s -25s linear infinite}@keyframes fall-37{37.833%{transform:translate(45.4184vw,37.833vh) scale(.2801)}to{transform:translate(40.49525vw,100vh) scale(.2801)}}.snow:nth-child(38){opacity:1.9934;transform:translate(63.0431vw,-10px) scale(.6937);animation:fall-38 21s -29s linear infinite}@keyframes fall-38{53.089%{transform:translate(62.1807vw,53.089vh) scale(.6937)}to{transform:translate(62.6119vw,100vh) scale(.6937)}}.snow:nth-child(39){opacity:1.489;transform:translate(96.9822vw,-10px) scale(.2796);animation:fall-39 28s -19s linear infinite}@keyframes fall-39{79.782%{transform:translate(88.2832vw,79.782vh) scale(.2796)}to{transform:translate(92.6327vw,100vh) scale(.2796)}}.snow:nth-child(40){opacity:.9002;transform:translate(56.18vw,-10px) scale(.972);animation:fall-40 24s -20s linear infinite}@keyframes fall-40{63.669%{transform:translate(61.4972vw,63.669vh) scale(.972)}to{transform:translate(58.8386vw,100vh) scale(.972)}}.snow:nth-child(41){opacity:1.9476;transform:translate(54.8574vw,-10px) scale(.6655);animation:fall-41 25s -30s linear infinite}@keyframes fall-41{58.102%{transform:translate(49.9666vw,58.102vh) scale(.6655)}to{transform:translate(52.412vw,100vh) scale(.6655)}}.snow:nth-child(42){opacity:.4692;transform:translate(5.1127vw,-10px) scale(.0956);animation:fall-42 26s -10s linear infinite}@keyframes fall-42{52.752%{transform:translate(.922vw,52.752vh) scale(.0956)}to{transform:translate(3.01735vw,100vh) scale(.0956)}}.snow:nth-child(43){opacity:.5312;transform:translate(32.5954vw,-10px) scale(.3914);animation:fall-43 19s -9s linear infinite}@keyframes fall-43{53.324%{transform:translate(28.8208vw,53.324vh) scale(.3914)}to{transform:translate(30.7081vw,100vh) scale(.3914)}}.snow:nth-child(44){opacity:1.2448;transform:translate(52.1239vw,-10px) scale(.8264);animation:fall-44 13s -3s linear infinite}@keyframes fall-44{40.223%{transform:translate(54.5806vw,40.223vh) scale(.8264)}to{transform:translate(53.35225vw,100vh) scale(.8264)}}.snow:nth-child(45){opacity:.0262;transform:translate(99.4707vw,-10px) scale(.7729);animation:fall-45 22s -22s linear infinite}@keyframes fall-45{75.208%{transform:translate(97.0864vw,75.208vh) scale(.7729)}to{transform:translate(98.27855vw,100vh) scale(.7729)}}.snow:nth-child(46){opacity:.3408;transform:translate(60.7543vw,-10px) scale(.9631);animation:fall-46 20s -23s linear infinite}@keyframes fall-46{45.059%{transform:translate(70.2493vw,45.059vh) scale(.9631)}to{transform:translate(65.5018vw,100vh) scale(.9631)}}.snow:nth-child(47){opacity:1.2136;transform:translate(27.4213vw,-10px) scale(.2945);animation:fall-47 21s -3s linear infinite}@keyframes fall-47{63.74%{transform:translate(35.0538vw,63.74vh) scale(.2945)}to{transform:translate(31.23755vw,100vh) scale(.2945)}}.snow:nth-child(48){opacity:.622;transform:translate(39.3026vw,-10px) scale(.4204);animation:fall-48 18s -18s linear infinite}@keyframes fall-48{50.341%{transform:translate(35.9075vw,50.341vh) scale(.4204)}to{transform:translate(37.60505vw,100vh) scale(.4204)}}.snow:nth-child(49){opacity:1.8672;transform:translate(76.2877vw,-10px) scale(.5962);animation:fall-49 23s -15s linear infinite}@keyframes fall-49{54.795%{transform:translate(81.1282vw,54.795vh) scale(.5962)}to{transform:translate(78.70795vw,100vh) scale(.5962)}}.snow:nth-child(50){opacity:.2306;transform:translate(41.8638vw,-10px) scale(.0009);animation:fall-50 10s -13s linear infinite}@keyframes fall-50{52.848%{transform:translate(33.6413vw,52.848vh) scale(.0009)}to{transform:translate(37.75255vw,100vh) scale(.0009)}}.snow:nth-child(51){opacity:1.062;transform:translate(13.8184vw,-10px) scale(.6645);animation:fall-51 25s -18s linear infinite}@keyframes fall-51{47.542%{transform:translate(9.9738vw,47.542vh) scale(.6645)}to{transform:translate(11.8961vw,100vh) scale(.6645)}}.snow:nth-child(52){opacity:.46;transform:translate(65.4448vw,-10px) scale(.659);animation:fall-52 12s -14s linear infinite}@keyframes fall-52{58.88%{transform:translate(70.825vw,58.88vh) scale(.659)}to{transform:translate(68.1349vw,100vh) scale(.659)}}.snow:nth-child(53){opacity:.022;transform:translate(36.2022vw,-10px) scale(.0774);animation:fall-53 19s -10s linear infinite}@keyframes fall-53{78.105%{transform:translate(41.3937vw,78.105vh) scale(.0774)}to{transform:translate(38.79795vw,100vh) scale(.0774)}}.snow:nth-child(54){opacity:1.8848;transform:translate(8.7062vw,-10px) scale(.2577);animation:fall-54 23s -19s linear infinite}@keyframes fall-54{61.844%{transform:translate(1.5952vw,61.844vh) scale(.2577)}to{transform:translate(5.1507vw,100vh) scale(.2577)}}.snow:nth-child(55){opacity:1.6092;transform:translate(38.2212vw,-10px) scale(.9859);animation:fall-55 16s -1s linear infinite}@keyframes fall-55{75.276%{transform:translate(30.5897vw,75.276vh) scale(.9859)}to{transform:translate(34.40545vw,100vh) scale(.9859)}}.snow:nth-child(56){opacity:1.702;transform:translate(97.001vw,-10px) scale(.5277);animation:fall-56 24s -15s linear infinite}@keyframes fall-56{40.464%{transform:translate(103.4213vw,40.464vh) scale(.5277)}to{transform:translate(100.21115vw,100vh) scale(.5277)}}.snow:nth-child(57){opacity:.8572;transform:translate(99.0657vw,-10px) scale(.5833);animation:fall-57 15s -1s linear infinite}@keyframes fall-57{32.406%{transform:translate(101.7319vw,32.406vh) scale(.5833)}to{transform:translate(100.3988vw,100vh) scale(.5833)}}.snow:nth-child(58){opacity:.3834;transform:translate(42.4789vw,-10px) scale(.9482);animation:fall-58 30s -20s linear infinite}@keyframes fall-58{54.417%{transform:translate(44.5762vw,54.417vh) scale(.9482)}to{transform:translate(43.52755vw,100vh) scale(.9482)}}.snow:nth-child(59){opacity:1.7912;transform:translate(35.0402vw,-10px) scale(.4577);animation:fall-59 22s -14s linear infinite}@keyframes fall-59{52.505%{transform:translate(32.9821vw,52.505vh) scale(.4577)}to{transform:translate(34.01115vw,100vh) scale(.4577)}}.snow:nth-child(60){opacity:.627;transform:translate(98.0425vw,-10px) scale(.3356);animation:fall-60 19s -27s linear infinite}@keyframes fall-60{46.056%{transform:translate(102.9658vw,46.056vh) scale(.3356)}to{transform:translate(100.50415vw,100vh) scale(.3356)}}.snow:nth-child(61){opacity:.5316;transform:translate(81.485vw,-10px) scale(.1652);animation:fall-61 19s -15s linear infinite}@keyframes fall-61{74.076%{transform:translate(83.7176vw,74.076vh) scale(.1652)}to{transform:translate(82.6013vw,100vh) scale(.1652)}}.snow:nth-child(62){opacity:.4024;transform:translate(61.7676vw,-10px) scale(.3655);animation:fall-62 10s -12s linear infinite}@keyframes fall-62{30.398%{transform:translate(69.9912vw,30.398vh) scale(.3655)}to{transform:translate(65.8794vw,100vh) scale(.3655)}}.snow:nth-child(63){opacity:.7018;transform:translate(89.4981vw,-10px) scale(.8279);animation:fall-63 20s -3s linear infinite}@keyframes fall-63{63.259%{transform:translate(93.1217vw,63.259vh) scale(.8279)}to{transform:translate(91.3099vw,100vh) scale(.8279)}}.snow:nth-child(64){opacity:1.5602;transform:translate(51.1365vw,-10px) scale(.1739);animation:fall-64 19s -26s linear infinite}@keyframes fall-64{57.335%{transform:translate(45.7101vw,57.335vh) scale(.1739)}to{transform:translate(48.4233vw,100vh) scale(.1739)}}.snow:nth-child(65){opacity:1.2868;transform:translate(45.8585vw,-10px) scale(.2091);animation:fall-65 10s -15s linear infinite}@keyframes fall-65{36.277%{transform:translate(52.2903vw,36.277vh) scale(.2091)}to{transform:translate(49.0744vw,100vh) scale(.2091)}}.snow:nth-child(66){opacity:.0722;transform:translate(99.1884vw,-10px) scale(.5108);animation:fall-66 24s -25s linear infinite}@keyframes fall-66{74.14%{transform:translate(104.9769vw,74.14vh) scale(.5108)}to{transform:translate(102.08265vw,100vh) scale(.5108)}}.snow:nth-child(67){opacity:1.359;transform:translate(63.9536vw,-10px) scale(.82);animation:fall-67 29s -15s linear infinite}@keyframes fall-67{36.184%{transform:translate(68.027vw,36.184vh) scale(.82)}to{transform:translate(65.9903vw,100vh) scale(.82)}}.snow:nth-child(68){opacity:1.1122;transform:translate(55.3632vw,-10px) scale(.931);animation:fall-68 16s -5s linear infinite}@keyframes fall-68{44.317%{transform:translate(45.93vw,44.317vh) scale(.931)}to{transform:translate(50.6466vw,100vh) scale(.931)}}.snow:nth-child(69){opacity:1.2242;transform:translate(35.5071vw,-10px) scale(.7398);animation:fall-69 22s -8s linear infinite}@keyframes fall-69{78.452%{transform:translate(42.3467vw,78.452vh) scale(.7398)}to{transform:translate(38.9269vw,100vh) scale(.7398)}}.snow:nth-child(70){opacity:1.2058;transform:translate(81.5019vw,-10px) scale(.0149);animation:fall-70 26s -22s linear infinite}@keyframes fall-70{65.698%{transform:translate(74.9507vw,65.698vh) scale(.0149)}to{transform:translate(78.2263vw,100vh) scale(.0149)}}.snow:nth-child(71){opacity:1.364;transform:translate(79.3054vw,-10px) scale(.1831);animation:fall-71 30s -30s linear infinite}@keyframes fall-71{58.177%{transform:translate(79.2223vw,58.177vh) scale(.1831)}to{transform:translate(79.26385vw,100vh) scale(.1831)}}.snow:nth-child(72){opacity:.8272;transform:translate(71.5447vw,-10px) scale(.5198);animation:fall-72 23s -7s linear infinite}@keyframes fall-72{53.527%{transform:translate(77.2748vw,53.527vh) scale(.5198)}to{transform:translate(74.40975vw,100vh) scale(.5198)}}.snow:nth-child(73){opacity:1.8616;transform:translate(52.7842vw,-10px) scale(.5695);animation:fall-73 17s -25s linear infinite}@keyframes fall-73{64.738%{transform:translate(50.6833vw,64.738vh) scale(.5695)}to{transform:translate(51.73375vw,100vh) scale(.5695)}}.snow:nth-child(74){opacity:.8468;transform:translate(80.5915vw,-10px) scale(.0736);animation:fall-74 22s -2s linear infinite}@keyframes fall-74{78.953%{transform:translate(77.0384vw,78.953vh) scale(.0736)}to{transform:translate(78.81495vw,100vh) scale(.0736)}}.snow:nth-child(75){opacity:.3798;transform:translate(81.6767vw,-10px) scale(.9298);animation:fall-75 23s -29s linear infinite}@keyframes fall-75{54.781%{transform:translate(78.911vw,54.781vh) scale(.9298)}to{transform:translate(80.29385vw,100vh) scale(.9298)}}.snow:nth-child(76){opacity:.669;transform:translate(64.5293vw,-10px) scale(.181);animation:fall-76 15s -15s linear infinite}@keyframes fall-76{30.113%{transform:translate(71.1717vw,30.113vh) scale(.181)}to{transform:translate(67.8505vw,100vh) scale(.181)}}.snow:nth-child(77){opacity:1.697;transform:translate(62.0439vw,-10px) scale(.9623);animation:fall-77 30s -4s linear infinite}@keyframes fall-77{38.101%{transform:translate(57.4398vw,38.101vh) scale(.9623)}to{transform:translate(59.74185vw,100vh) scale(.9623)}}.snow:nth-child(78){opacity:.6036;transform:translate(29.3344vw,-10px) scale(.7598);animation:fall-78 18s -19s linear infinite}@keyframes fall-78{30.653%{transform:translate(26.8868vw,30.653vh) scale(.7598)}to{transform:translate(28.1106vw,100vh) scale(.7598)}}.snow:nth-child(79){opacity:1.9796;transform:translate(94.4665vw,-10px) scale(.1144);animation:fall-79 19s -28s linear infinite}@keyframes fall-79{42.919%{transform:translate(97.3371vw,42.919vh) scale(.1144)}to{transform:translate(95.9018vw,100vh) scale(.1144)}}.snow:nth-child(80){opacity:.8624;transform:translate(89.8907vw,-10px) scale(.0868);animation:fall-80 19s -5s linear infinite}@keyframes fall-80{60.328%{transform:translate(81.2217vw,60.328vh) scale(.0868)}to{transform:translate(85.5562vw,100vh) scale(.0868)}}.snow:nth-child(81){opacity:.6614;transform:translate(85.3106vw,-10px) scale(.2086);animation:fall-81 14s -10s linear infinite}@keyframes fall-81{63.006%{transform:translate(78.0163vw,63.006vh) scale(.2086)}to{transform:translate(81.66345vw,100vh) scale(.2086)}}.snow:nth-child(82){opacity:.4658;transform:translate(5.5971vw,-10px) scale(.3583);animation:fall-82 17s -8s linear infinite}@keyframes fall-82{39.278%{transform:translate(8.6764vw,39.278vh) scale(.3583)}to{transform:translate(7.13675vw,100vh) scale(.3583)}}.snow:nth-child(83){opacity:.7566;transform:translate(51.3955vw,-10px) scale(.0206);animation:fall-83 11s -26s linear infinite}@keyframes fall-83{59.862%{transform:translate(58.2691vw,59.862vh) scale(.0206)}to{transform:translate(54.8323vw,100vh) scale(.0206)}}.snow:nth-child(84){opacity:1.1418;transform:translate(6.6386vw,-10px) scale(.1061);animation:fall-84 11s -7s linear infinite}@keyframes fall-84{45.067%{transform:translate(9.8712vw,45.067vh) scale(.1061)}to{transform:translate(8.2549vw,100vh) scale(.1061)}}.snow:nth-child(85){opacity:1.7842;transform:translate(85.3385vw,-10px) scale(.7492);animation:fall-85 17s -9s linear infinite}@keyframes fall-85{65.936%{transform:translate(79.1994vw,65.936vh) scale(.7492)}to{transform:translate(82.26895vw,100vh) scale(.7492)}}.snow:nth-child(86){opacity:.2256;transform:translate(5.0558vw,-10px) scale(.1025);animation:fall-86 22s -24s linear infinite}@keyframes fall-86{40.1%{transform:translate(11.8656vw,40.1vh) scale(.1025)}to{transform:translate(8.4607vw,100vh) scale(.1025)}}.snow:nth-child(87){opacity:.8532;transform:translate(89.2848vw,-10px) scale(.6239);animation:fall-87 29s -19s linear infinite}@keyframes fall-87{68.512%{transform:translate(97.367vw,68.512vh) scale(.6239)}to{transform:translate(93.3259vw,100vh) scale(.6239)}}.snow:nth-child(88){opacity:1.2308;transform:translate(4.2876vw,-10px) scale(.9672);animation:fall-88 26s -22s linear infinite}@keyframes fall-88{77.72%{transform:translate(11.3502vw,77.72vh) scale(.9672)}to{transform:translate(7.8189vw,100vh) scale(.9672)}}.snow:nth-child(89){opacity:.7048;transform:translate(54.779vw,-10px) scale(.474);animation:fall-89 29s -18s linear infinite}@keyframes fall-89{75.951%{transform:translate(62.6661vw,75.951vh) scale(.474)}to{transform:translate(58.72255vw,100vh) scale(.474)}}.snow:nth-child(90){opacity:1.7542;transform:translate(72.8461vw,-10px) scale(.3654);animation:fall-90 19s -4s linear infinite}@keyframes fall-90{53.572%{transform:translate(80.4574vw,53.572vh) scale(.3654)}to{transform:translate(76.65175vw,100vh) scale(.3654)}}.snow:nth-child(91){opacity:.3024;transform:translate(2.5913vw,-10px) scale(.786);animation:fall-91 13s -30s linear infinite}@keyframes fall-91{36.056%{transform:translate(2.1495vw,36.056vh) scale(.786)}to{transform:translate(2.3704vw,100vh) scale(.786)}}.snow:nth-child(92){opacity:1.9244;transform:translate(94.4652vw,-10px) scale(1);animation:fall-92 11s -19s linear infinite}@keyframes fall-92{43.566%{transform:translate(99.7612vw,43.566vh) scale(1)}to{transform:translate(97.1132vw,100vh) scale(1)}}.snow:nth-child(93){opacity:1.6582;transform:translate(40.9226vw,-10px) scale(.6389);animation:fall-93 24s -5s linear infinite}@keyframes fall-93{54.525%{transform:translate(33.0014vw,54.525vh) scale(.6389)}to{transform:translate(36.962vw,100vh) scale(.6389)}}.snow:nth-child(94){opacity:1.5994;transform:translate(5.0987vw,-10px) scale(.6515);animation:fall-94 24s -30s linear infinite}@keyframes fall-94{72.373%{transform:translate(-2.573vw,72.373vh) scale(.6515)}to{transform:translate(1.26285vw,100vh) scale(.6515)}}.snow:nth-child(95){opacity:1.9682;transform:translate(14.4723vw,-10px) scale(.7068);animation:fall-95 25s -16s linear infinite}@keyframes fall-95{44.025%{transform:translate(23.8335vw,44.025vh) scale(.7068)}to{transform:translate(19.1529vw,100vh) scale(.7068)}}.snow:nth-child(96){opacity:.1926;transform:translate(92.0948vw,-10px) scale(.0749);animation:fall-96 22s -27s linear infinite}@keyframes fall-96{79.467%{transform:translate(90.7285vw,79.467vh) scale(.0749)}to{transform:translate(91.41165vw,100vh) scale(.0749)}}.snow:nth-child(97){opacity:.116;transform:translate(17.2247vw,-10px) scale(.2624);animation:fall-97 23s -9s linear infinite}@keyframes fall-97{73.811%{transform:translate(22.7537vw,73.811vh) scale(.2624)}to{transform:translate(19.9892vw,100vh) scale(.2624)}}.snow:nth-child(98){opacity:1.9626;transform:translate(35.5407vw,-10px) scale(.3705);animation:fall-98 24s -24s linear infinite}@keyframes fall-98{52.922%{transform:translate(28.6979vw,52.922vh) scale(.3705)}to{transform:translate(32.1193vw,100vh) scale(.3705)}}.snow:nth-child(99){opacity:.881;transform:translate(37.426vw,-10px) scale(.6742);animation:fall-99 27s -22s linear infinite}@keyframes fall-99{35.754%{transform:translate(40.0002vw,35.754vh) scale(.6742)}to{transform:translate(38.7131vw,100vh) scale(.6742)}}.snow:nth-child(100){opacity:.1384;transform:translate(71.8958vw,-10px) scale(.9159);animation:fall-100 28s -26s linear infinite}@keyframes fall-100{73.409%{transform:translate(76.7719vw,73.409vh) scale(.9159)}to{transform:translate(74.33385vw,100vh) scale(.9159)}}.snow:nth-child(101){opacity:1.8046;transform:translate(12.6984vw,-10px) scale(.4624);animation:fall-101 23s -8s linear infinite}@keyframes fall-101{65.811%{transform:translate(20.7289vw,65.811vh) scale(.4624)}to{transform:translate(16.71365vw,100vh) scale(.4624)}}.snow:nth-child(102){opacity:.8512;transform:translate(77.9482vw,-10px) scale(.4922);animation:fall-102 24s -21s linear infinite}@keyframes fall-102{47.04%{transform:translate(86.4766vw,47.04vh) scale(.4922)}to{transform:translate(82.2124vw,100vh) scale(.4922)}}.snow:nth-child(103){opacity:.5258;transform:translate(64.1813vw,-10px) scale(.9382);animation:fall-103 14s -7s linear infinite}@keyframes fall-103{60.498%{transform:translate(61.8544vw,60.498vh) scale(.9382)}to{transform:translate(63.01785vw,100vh) scale(.9382)}}.snow:nth-child(104){opacity:1.438;transform:translate(20.1452vw,-10px) scale(.8964);animation:fall-104 27s -10s linear infinite}@keyframes fall-104{30.037%{transform:translate(18.513vw,30.037vh) scale(.8964)}to{transform:translate(19.3291vw,100vh) scale(.8964)}}.snow:nth-child(105){opacity:1.009;transform:translate(51.2642vw,-10px) scale(.0452);animation:fall-105 30s -23s linear infinite}@keyframes fall-105{33.837%{transform:translate(46.3772vw,33.837vh) scale(.0452)}to{transform:translate(48.8207vw,100vh) scale(.0452)}}.snow:nth-child(106){opacity:.6102;transform:translate(83.783vw,-10px) scale(.8265);animation:fall-106 24s -19s linear infinite}@keyframes fall-106{76.717%{transform:translate(76.749vw,76.717vh) scale(.8265)}to{transform:translate(80.266vw,100vh) scale(.8265)}}.snow:nth-child(107){opacity:.6818;transform:translate(28.3689vw,-10px) scale(.2036);animation:fall-107 14s -16s linear infinite}@keyframes fall-107{62.078%{transform:translate(20.6868vw,62.078vh) scale(.2036)}to{transform:translate(24.52785vw,100vh) scale(.2036)}}.snow:nth-child(108){opacity:1.8426;transform:translate(33.7501vw,-10px) scale(.3385);animation:fall-108 10s -14s linear infinite}@keyframes fall-108{55.512%{transform:translate(42.5836vw,55.512vh) scale(.3385)}to{transform:translate(38.16685vw,100vh) scale(.3385)}}.snow:nth-child(109){opacity:1.7264;transform:translate(88.5394vw,-10px) scale(.4227);animation:fall-109 24s -1s linear infinite}@keyframes fall-109{54.004%{transform:translate(84.4776vw,54.004vh) scale(.4227)}to{transform:translate(86.5085vw,100vh) scale(.4227)}}.snow:nth-child(110){opacity:1.7208;transform:translate(73.8153vw,-10px) scale(.1376);animation:fall-110 27s -5s linear infinite}@keyframes fall-110{51.212%{transform:translate(69.7112vw,51.212vh) scale(.1376)}to{transform:translate(71.76325vw,100vh) scale(.1376)}}.snow:nth-child(111){opacity:1.6768;transform:translate(71.7081vw,-10px) scale(.7305);animation:fall-111 28s -6s linear infinite}@keyframes fall-111{78.954%{transform:translate(68.1037vw,78.954vh) scale(.7305)}to{transform:translate(69.9059vw,100vh) scale(.7305)}}.snow:nth-child(112){opacity:.4126;transform:translate(35.566vw,-10px) scale(.8876);animation:fall-112 14s -29s linear infinite}@keyframes fall-112{64.252%{transform:translate(34.404vw,64.252vh) scale(.8876)}to{transform:translate(34.985vw,100vh) scale(.8876)}}.snow:nth-child(113){opacity:1.9836;transform:translate(25.4177vw,-10px) scale(.6868);animation:fall-113 29s -24s linear infinite}@keyframes fall-113{69.59%{transform:translate(27.0616vw,69.59vh) scale(.6868)}to{transform:translate(26.23965vw,100vh) scale(.6868)}}.snow:nth-child(114){opacity:.1702;transform:translate(7.8212vw,-10px) scale(.4466);animation:fall-114 14s -29s linear infinite}@keyframes fall-114{35.178%{transform:translate(14.2192vw,35.178vh) scale(.4466)}to{transform:translate(11.0202vw,100vh) scale(.4466)}}.snow:nth-child(115){opacity:1.7364;transform:translate(15.0976vw,-10px) scale(.755);animation:fall-115 22s -20s linear infinite}@keyframes fall-115{53.124%{transform:translate(12.5917vw,53.124vh) scale(.755)}to{transform:translate(13.84465vw,100vh) scale(.755)}}.snow:nth-child(116){opacity:1.1586;transform:translate(1.2029vw,-10px) scale(.2748);animation:fall-116 20s -28s linear infinite}@keyframes fall-116{70.727%{transform:translate(8.3937vw,70.727vh) scale(.2748)}to{transform:translate(4.7983vw,100vh) scale(.2748)}}.snow:nth-child(117){opacity:1.5914;transform:translate(33.5185vw,-10px) scale(.7882);animation:fall-117 10s -28s linear infinite}@keyframes fall-117{40.257%{transform:translate(33.9112vw,40.257vh) scale(.7882)}to{transform:translate(33.71485vw,100vh) scale(.7882)}}.snow:nth-child(118){opacity:1.1256;transform:translate(79.328vw,-10px) scale(.8429);animation:fall-118 18s -5s linear infinite}@keyframes fall-118{50.697%{transform:translate(85.917vw,50.697vh) scale(.8429)}to{transform:translate(82.6225vw,100vh) scale(.8429)}}.snow:nth-child(119){opacity:.0602;transform:translate(11.7992vw,-10px) scale(.9638);animation:fall-119 18s -4s linear infinite}@keyframes fall-119{79.879%{transform:translate(14.5729vw,79.879vh) scale(.9638)}to{transform:translate(13.18605vw,100vh) scale(.9638)}}.snow:nth-child(120){opacity:1.0652;transform:translate(41.1165vw,-10px) scale(.594);animation:fall-120 23s -5s linear infinite}@keyframes fall-120{68.819%{transform:translate(45.809vw,68.819vh) scale(.594)}to{transform:translate(43.46275vw,100vh) scale(.594)}}.snow:nth-child(121){opacity:.4368;transform:translate(70.7773vw,-10px) scale(.8905);animation:fall-121 16s -8s linear infinite}@keyframes fall-121{78.421%{transform:translate(70.1596vw,78.421vh) scale(.8905)}to{transform:translate(70.46845vw,100vh) scale(.8905)}}.snow:nth-child(122){opacity:.7514;transform:translate(10.5841vw,-10px) scale(.0312);animation:fall-122 28s -5s linear infinite}@keyframes fall-122{50.767%{transform:translate(18.7017vw,50.767vh) scale(.0312)}to{transform:translate(14.6429vw,100vh) scale(.0312)}}.snow:nth-child(123){opacity:.1332;transform:translate(85.661vw,-10px) scale(.7569);animation:fall-123 27s -21s linear infinite}@keyframes fall-123{74.3%{transform:translate(84.8094vw,74.3vh) scale(.7569)}to{transform:translate(85.2352vw,100vh) scale(.7569)}}.snow:nth-child(124){opacity:.4974;transform:translate(99.4948vw,-10px) scale(.4142);animation:fall-124 10s -28s linear infinite}@keyframes fall-124{57.338%{transform:translate(94.6019vw,57.338vh) scale(.4142)}to{transform:translate(97.04835vw,100vh) scale(.4142)}}.snow:nth-child(125){opacity:.943;transform:translate(80.3753vw,-10px) scale(.5496);animation:fall-125 28s -20s linear infinite}@keyframes fall-125{42.27%{transform:translate(80.6559vw,42.27vh) scale(.5496)}to{transform:translate(80.5156vw,100vh) scale(.5496)}}.snow:nth-child(126){opacity:1.6852;transform:translate(71.7341vw,-10px) scale(.7715);animation:fall-126 14s -16s linear infinite}@keyframes fall-126{72.614%{transform:translate(69.5327vw,72.614vh) scale(.7715)}to{transform:translate(70.6334vw,100vh) scale(.7715)}}.snow:nth-child(127){opacity:1.5464;transform:translate(93.7738vw,-10px) scale(.7294);animation:fall-127 27s -6s linear infinite}@keyframes fall-127{58.653%{transform:translate(96.3936vw,58.653vh) scale(.7294)}to{transform:translate(95.0837vw,100vh) scale(.7294)}}.snow:nth-child(128){opacity:1.1198;transform:translate(76.5143vw,-10px) scale(.3053);animation:fall-128 28s -30s linear infinite}@keyframes fall-128{76.546%{transform:translate(75.931vw,76.546vh) scale(.3053)}to{transform:translate(76.22265vw,100vh) scale(.3053)}}.snow:nth-child(129){opacity:1.0682;transform:translate(79.2562vw,-10px) scale(.3344);animation:fall-129 27s -8s linear infinite}@keyframes fall-129{51.802%{transform:translate(78.0357vw,51.802vh) scale(.3344)}to{transform:translate(78.64595vw,100vh) scale(.3344)}}.snow:nth-child(130){opacity:1.6342;transform:translate(57.7191vw,-10px) scale(.36);animation:fall-130 12s -22s linear infinite}@keyframes fall-130{78.21%{transform:translate(65.5037vw,78.21vh) scale(.36)}to{transform:translate(61.6114vw,100vh) scale(.36)}}.snow:nth-child(131){opacity:.5326;transform:translate(15.7846vw,-10px) scale(.3904);animation:fall-131 22s -4s linear infinite}@keyframes fall-131{34.219%{transform:translate(13.4234vw,34.219vh) scale(.3904)}to{transform:translate(14.604vw,100vh) scale(.3904)}}.snow:nth-child(132){opacity:1.3202;transform:translate(73.8889vw,-10px) scale(.097);animation:fall-132 18s -29s linear infinite}@keyframes fall-132{55.559%{transform:translate(72.0822vw,55.559vh) scale(.097)}to{transform:translate(72.98555vw,100vh) scale(.097)}}.snow:nth-child(133){opacity:.8192;transform:translate(94.3342vw,-10px) scale(.3881);animation:fall-133 26s -27s linear infinite}@keyframes fall-133{46.797%{transform:translate(97.4421vw,46.797vh) scale(.3881)}to{transform:translate(95.88815vw,100vh) scale(.3881)}}.snow:nth-child(134){opacity:1.6172;transform:translate(33.8947vw,-10px) scale(.0186);animation:fall-134 29s -11s linear infinite}@keyframes fall-134{64.805%{transform:translate(40.9446vw,64.805vh) scale(.0186)}to{transform:translate(37.41965vw,100vh) scale(.0186)}}.snow:nth-child(135){opacity:.023;transform:translate(23.8073vw,-10px) scale(.3347);animation:fall-135 26s -8s linear infinite}@keyframes fall-135{53.655%{transform:translate(14.1386vw,53.655vh) scale(.3347)}to{transform:translate(18.97295vw,100vh) scale(.3347)}}.snow:nth-child(136){opacity:.0776;transform:translate(4.5136vw,-10px) scale(.198);animation:fall-136 26s -3s linear infinite}@keyframes fall-136{39.478%{transform:translate(6.3069vw,39.478vh) scale(.198)}to{transform:translate(5.41025vw,100vh) scale(.198)}}.snow:nth-child(137){opacity:.4706;transform:translate(34.3213vw,-10px) scale(.8051);animation:fall-137 27s -4s linear infinite}@keyframes fall-137{59.865%{transform:translate(27.3214vw,59.865vh) scale(.8051)}to{transform:translate(30.82135vw,100vh) scale(.8051)}}.snow:nth-child(138){opacity:1.5008;transform:translate(89.7808vw,-10px) scale(.8822);animation:fall-138 20s -21s linear infinite}@keyframes fall-138{62.342%{transform:translate(80.0463vw,62.342vh) scale(.8822)}to{transform:translate(84.91355vw,100vh) scale(.8822)}}.snow:nth-child(139){opacity:1.8892;transform:translate(38.3329vw,-10px) scale(.2083);animation:fall-139 20s -9s linear infinite}@keyframes fall-139{32.619%{transform:translate(42.9716vw,32.619vh) scale(.2083)}to{transform:translate(40.65225vw,100vh) scale(.2083)}}.snow:nth-child(140){opacity:.4654;transform:translate(12.5553vw,-10px) scale(.1615);animation:fall-140 11s -8s linear infinite}@keyframes fall-140{78.027%{transform:translate(12.3836vw,78.027vh) scale(.1615)}to{transform:translate(12.46945vw,100vh) scale(.1615)}}.snow:nth-child(141){opacity:.6652;transform:translate(33.5127vw,-10px) scale(.8466);animation:fall-141 22s -21s linear infinite}@keyframes fall-141{72.809%{transform:translate(33.2484vw,72.809vh) scale(.8466)}to{transform:translate(33.38055vw,100vh) scale(.8466)}}.snow:nth-child(142){opacity:1.8754;transform:translate(29.8004vw,-10px) scale(.4281);animation:fall-142 24s -26s linear infinite}@keyframes fall-142{30.436%{transform:translate(28.2273vw,30.436vh) scale(.4281)}to{transform:translate(29.01385vw,100vh) scale(.4281)}}.snow:nth-child(143){opacity:1.247;transform:translate(45.3577vw,-10px) scale(.1842);animation:fall-143 15s -8s linear infinite}@keyframes fall-143{65.738%{transform:translate(36.5414vw,65.738vh) scale(.1842)}to{transform:translate(40.94955vw,100vh) scale(.1842)}}.snow:nth-child(144){opacity:.782;transform:translate(43.0716vw,-10px) scale(.1481);animation:fall-144 10s -30s linear infinite}@keyframes fall-144{32.887%{transform:translate(36.2026vw,32.887vh) scale(.1481)}to{transform:translate(39.6371vw,100vh) scale(.1481)}}.snow:nth-child(145){opacity:1.0994;transform:translate(57.1497vw,-10px) scale(.9606);animation:fall-145 12s -23s linear infinite}@keyframes fall-145{32.555%{transform:translate(62.5135vw,32.555vh) scale(.9606)}to{transform:translate(59.8316vw,100vh) scale(.9606)}}.snow:nth-child(146){opacity:.1204;transform:translate(95.8077vw,-10px) scale(.7013);animation:fall-146 24s -26s linear infinite}@keyframes fall-146{47.718%{transform:translate(98.3703vw,47.718vh) scale(.7013)}to{transform:translate(97.089vw,100vh) scale(.7013)}}.snow:nth-child(147){opacity:1.4602;transform:translate(21.2468vw,-10px) scale(.5923);animation:fall-147 15s -2s linear infinite}@keyframes fall-147{41.663%{transform:translate(24.5304vw,41.663vh) scale(.5923)}to{transform:translate(22.8886vw,100vh) scale(.5923)}}.snow:nth-child(148){opacity:.6932;transform:translate(68.4049vw,-10px) scale(.0665);animation:fall-148 22s -1s linear infinite}@keyframes fall-148{66.948%{transform:translate(69.792vw,66.948vh) scale(.0665)}to{transform:translate(69.09845vw,100vh) scale(.0665)}}.snow:nth-child(149){opacity:.523;transform:translate(6.2053vw,-10px) scale(.1268);animation:fall-149 13s -26s linear infinite}@keyframes fall-149{55.167%{transform:translate(4.7598vw,55.167vh) scale(.1268)}to{transform:translate(5.48255vw,100vh) scale(.1268)}}.snow:nth-child(150){opacity:1.7362;transform:translate(25.1811vw,-10px) scale(.8499);animation:fall-150 11s -12s linear infinite}@keyframes fall-150{75.244%{transform:translate(18.107vw,75.244vh) scale(.8499)}to{transform:translate(21.64405vw,100vh) scale(.8499)}}.snow:nth-child(151){opacity:.1562;transform:translate(59.5913vw,-10px) scale(.6096);animation:fall-151 25s -13s linear infinite}@keyframes fall-151{62.262%{transform:translate(59.1837vw,62.262vh) scale(.6096)}to{transform:translate(59.3875vw,100vh) scale(.6096)}}.snow:nth-child(152){opacity:1.5838;transform:translate(40.5521vw,-10px) scale(.5018);animation:fall-152 10s -2s linear infinite}@keyframes fall-152{53.721%{transform:translate(38.9793vw,53.721vh) scale(.5018)}to{transform:translate(39.7657vw,100vh) scale(.5018)}}.snow:nth-child(153){opacity:.8026;transform:translate(72.1382vw,-10px) scale(.4413);animation:fall-153 21s -8s linear infinite}@keyframes fall-153{65.011%{transform:translate(66.2144vw,65.011vh) scale(.4413)}to{transform:translate(69.1763vw,100vh) scale(.4413)}}.snow:nth-child(154){opacity:.8474;transform:translate(60.4052vw,-10px) scale(.2974);animation:fall-154 17s -25s linear infinite}@keyframes fall-154{48.047%{transform:translate(68.5729vw,48.047vh) scale(.2974)}to{transform:translate(64.48905vw,100vh) scale(.2974)}}.snow:nth-child(155){opacity:.912;transform:translate(34.3895vw,-10px) scale(.2441);animation:fall-155 14s -8s linear infinite}@keyframes fall-155{46.819%{transform:translate(37.8523vw,46.819vh) scale(.2441)}to{transform:translate(36.1209vw,100vh) scale(.2441)}}.snow:nth-child(156){opacity:.8622;transform:translate(79.7056vw,-10px) scale(.3021);animation:fall-156 26s -11s linear infinite}@keyframes fall-156{42.499%{transform:translate(82.278vw,42.499vh) scale(.3021)}to{transform:translate(80.9918vw,100vh) scale(.3021)}}.snow:nth-child(157){opacity:.2554;transform:translate(33.0637vw,-10px) scale(.3028);animation:fall-157 25s -14s linear infinite}@keyframes fall-157{34.195%{transform:translate(37.4413vw,34.195vh) scale(.3028)}to{transform:translate(35.2525vw,100vh) scale(.3028)}}.snow:nth-child(158){opacity:1.9916;transform:translate(27.3209vw,-10px) scale(.8474);animation:fall-158 26s -14s linear infinite}@keyframes fall-158{58.641%{transform:translate(18.5691vw,58.641vh) scale(.8474)}to{transform:translate(22.945vw,100vh) scale(.8474)}}.snow:nth-child(159){opacity:.0024;transform:translate(83.3774vw,-10px) scale(.4851);animation:fall-159 19s -23s linear infinite}@keyframes fall-159{48.352%{transform:translate(78.7968vw,48.352vh) scale(.4851)}to{transform:translate(81.0871vw,100vh) scale(.4851)}}.snow:nth-child(160){opacity:1.306;transform:translate(34.3686vw,-10px) scale(.7751);animation:fall-160 27s -6s linear infinite}@keyframes fall-160{59.094%{transform:translate(30.4996vw,59.094vh) scale(.7751)}to{transform:translate(32.4341vw,100vh) scale(.7751)}}.snow:nth-child(161){opacity:1.0332;transform:translate(19.0003vw,-10px) scale(.3309);animation:fall-161 18s -16s linear infinite}@keyframes fall-161{39.307%{transform:translate(18.2173vw,39.307vh) scale(.3309)}to{transform:translate(18.6088vw,100vh) scale(.3309)}}.snow:nth-child(162){opacity:1.5568;transform:translate(55.1162vw,-10px) scale(.1444);animation:fall-162 18s -27s linear infinite}@keyframes fall-162{41.37%{transform:translate(58.1843vw,41.37vh) scale(.1444)}to{transform:translate(56.65025vw,100vh) scale(.1444)}}.snow:nth-child(163){opacity:.2598;transform:translate(54.3839vw,-10px) scale(.3154);animation:fall-163 11s -19s linear infinite}@keyframes fall-163{72.43%{transform:translate(46.6714vw,72.43vh) scale(.3154)}to{transform:translate(50.52765vw,100vh) scale(.3154)}}.snow:nth-child(164){opacity:.9142;transform:translate(51.6399vw,-10px) scale(.1281);animation:fall-164 22s -26s linear infinite}@keyframes fall-164{52.747%{transform:translate(55.1382vw,52.747vh) scale(.1281)}to{transform:translate(53.38905vw,100vh) scale(.1281)}}.snow:nth-child(165){opacity:.214;transform:translate(85.7801vw,-10px) scale(.5384);animation:fall-165 20s -11s linear infinite}@keyframes fall-165{74.954%{transform:translate(80.7169vw,74.954vh) scale(.5384)}to{transform:translate(83.2485vw,100vh) scale(.5384)}}.snow:nth-child(166){opacity:.1168;transform:translate(70.5786vw,-10px) scale(.5372);animation:fall-166 26s -25s linear infinite}@keyframes fall-166{39.48%{transform:translate(70.1825vw,39.48vh) scale(.5372)}to{transform:translate(70.38055vw,100vh) scale(.5372)}}.snow:nth-child(167){opacity:.4124;transform:translate(75.6051vw,-10px) scale(.2911);animation:fall-167 15s -3s linear infinite}@keyframes fall-167{58.749%{transform:translate(85.1538vw,58.749vh) scale(.2911)}to{transform:translate(80.37945vw,100vh) scale(.2911)}}.snow:nth-child(168){opacity:.6106;transform:translate(97.2318vw,-10px) scale(.0113);animation:fall-168 27s -5s linear infinite}@keyframes fall-168{63.064%{transform:translate(97.759vw,63.064vh) scale(.0113)}to{transform:translate(97.4954vw,100vh) scale(.0113)}}.snow:nth-child(169){opacity:.3144;transform:translate(24.4193vw,-10px) scale(.763);animation:fall-169 17s -26s linear infinite}@keyframes fall-169{61.066%{transform:translate(31.7602vw,61.066vh) scale(.763)}to{transform:translate(28.08975vw,100vh) scale(.763)}}.snow:nth-child(170){opacity:1.2534;transform:translate(18.1471vw,-10px) scale(.3049);animation:fall-170 23s -20s linear infinite}@keyframes fall-170{36.116%{transform:translate(9.6694vw,36.116vh) scale(.3049)}to{transform:translate(13.90825vw,100vh) scale(.3049)}}.snow:nth-child(171){opacity:.5648;transform:translate(83.3076vw,-10px) scale(.7387);animation:fall-171 19s -19s linear infinite}@keyframes fall-171{37.93%{transform:translate(79.768vw,37.93vh) scale(.7387)}to{transform:translate(81.5378vw,100vh) scale(.7387)}}.snow:nth-child(172){opacity:.2468;transform:translate(9.2416vw,-10px) scale(.869);animation:fall-172 30s -2s linear infinite}@keyframes fall-172{78.172%{transform:translate(.8276vw,78.172vh) scale(.869)}to{transform:translate(5.0346vw,100vh) scale(.869)}}.snow:nth-child(173){opacity:1.3918;transform:translate(84.0974vw,-10px) scale(.6601);animation:fall-173 25s -30s linear infinite}@keyframes fall-173{75.238%{transform:translate(83.3862vw,75.238vh) scale(.6601)}to{transform:translate(83.7418vw,100vh) scale(.6601)}}.snow:nth-child(174){opacity:.0914;transform:translate(3.7366vw,-10px) scale(.501);animation:fall-174 22s -8s linear infinite}@keyframes fall-174{55.952%{transform:translate(12.9578vw,55.952vh) scale(.501)}to{transform:translate(8.3472vw,100vh) scale(.501)}}.snow:nth-child(175){opacity:.2794;transform:translate(28.816vw,-10px) scale(.024);animation:fall-175 30s -29s linear infinite}@keyframes fall-175{59.643%{transform:translate(19.9949vw,59.643vh) scale(.024)}to{transform:translate(24.40545vw,100vh) scale(.024)}}.snow:nth-child(176){opacity:.466;transform:translate(25.7955vw,-10px) scale(.226);animation:fall-176 19s -22s linear infinite}@keyframes fall-176{52.105%{transform:translate(24.4872vw,52.105vh) scale(.226)}to{transform:translate(25.14135vw,100vh) scale(.226)}}.snow:nth-child(177){opacity:.0918;transform:translate(95.5393vw,-10px) scale(.6224);animation:fall-177 17s -4s linear infinite}@keyframes fall-177{38.474%{transform:translate(100.4672vw,38.474vh) scale(.6224)}to{transform:translate(98.00325vw,100vh) scale(.6224)}}.snow:nth-child(178){opacity:.8542;transform:translate(94.2006vw,-10px) scale(.2007);animation:fall-178 11s -9s linear infinite}@keyframes fall-178{70.635%{transform:translate(86.9914vw,70.635vh) scale(.2007)}to{transform:translate(90.596vw,100vh) scale(.2007)}}.snow:nth-child(179){opacity:.2978;transform:translate(52.3893vw,-10px) scale(.5437);animation:fall-179 15s -26s linear infinite}@keyframes fall-179{49.549%{transform:translate(49.2218vw,49.549vh) scale(.5437)}to{transform:translate(50.80555vw,100vh) scale(.5437)}}.snow:nth-child(180){opacity:1.245;transform:translate(43.3625vw,-10px) scale(.3304);animation:fall-180 22s -6s linear infinite}@keyframes fall-180{67.034%{transform:translate(36.662vw,67.034vh) scale(.3304)}to{transform:translate(40.01225vw,100vh) scale(.3304)}}.snow:nth-child(181){opacity:.1614;transform:translate(5.7922vw,-10px) scale(.1281);animation:fall-181 25s -25s linear infinite}@keyframes fall-181{48.115%{transform:translate(13.3456vw,48.115vh) scale(.1281)}to{transform:translate(9.5689vw,100vh) scale(.1281)}}.snow:nth-child(182){opacity:1.2014;transform:translate(25.3653vw,-10px) scale(.5083);animation:fall-182 13s -26s linear infinite}@keyframes fall-182{45.774%{transform:translate(33.7947vw,45.774vh) scale(.5083)}to{transform:translate(29.58vw,100vh) scale(.5083)}}.snow:nth-child(183){opacity:1.496;transform:translate(76.6682vw,-10px) scale(.5345);animation:fall-183 24s -23s linear infinite}@keyframes fall-183{60.203%{transform:translate(77.766vw,60.203vh) scale(.5345)}to{transform:translate(77.2171vw,100vh) scale(.5345)}}.snow:nth-child(184){opacity:.6228;transform:translate(42.9688vw,-10px) scale(.534);animation:fall-184 19s -15s linear infinite}@keyframes fall-184{64.845%{transform:translate(45.3526vw,64.845vh) scale(.534)}to{transform:translate(44.1607vw,100vh) scale(.534)}}.snow:nth-child(185){opacity:1.7386;transform:translate(92.7801vw,-10px) scale(.9092);animation:fall-185 24s -5s linear infinite}@keyframes fall-185{61.061%{transform:translate(85.8561vw,61.061vh) scale(.9092)}to{transform:translate(89.3181vw,100vh) scale(.9092)}}.snow:nth-child(186){opacity:.4958;transform:translate(71.4275vw,-10px) scale(.746);animation:fall-186 23s -23s linear infinite}@keyframes fall-186{36.223%{transform:translate(66.5063vw,36.223vh) scale(.746)}to{transform:translate(68.9669vw,100vh) scale(.746)}}.snow:nth-child(187){opacity:1.9884;transform:translate(7.5018vw,-10px) scale(.7157);animation:fall-187 16s -16s linear infinite}@keyframes fall-187{57.188%{transform:translate(3.4692vw,57.188vh) scale(.7157)}to{transform:translate(5.4855vw,100vh) scale(.7157)}}.snow:nth-child(188){opacity:1.5668;transform:translate(71.3381vw,-10px) scale(.6946);animation:fall-188 19s -11s linear infinite}@keyframes fall-188{38.757%{transform:translate(80.1294vw,38.757vh) scale(.6946)}to{transform:translate(75.73375vw,100vh) scale(.6946)}}.snow:nth-child(189){opacity:.4008;transform:translate(58.6347vw,-10px) scale(.645);animation:fall-189 15s -4s linear infinite}@keyframes fall-189{52.659%{transform:translate(53.2862vw,52.659vh) scale(.645)}to{transform:translate(55.96045vw,100vh) scale(.645)}}.snow:nth-child(190){opacity:1.1582;transform:translate(25.4621vw,-10px) scale(.4972);animation:fall-190 28s -29s linear infinite}@keyframes fall-190{58.884%{transform:translate(33.2152vw,58.884vh) scale(.4972)}to{transform:translate(29.33865vw,100vh) scale(.4972)}}.snow:nth-child(191){opacity:.1594;transform:translate(37.1754vw,-10px) scale(.0335);animation:fall-191 13s -9s linear infinite}@keyframes fall-191{63.202%{transform:translate(32.302vw,63.202vh) scale(.0335)}to{transform:translate(34.7387vw,100vh) scale(.0335)}}.snow:nth-child(192){opacity:.0844;transform:translate(36.3603vw,-10px) scale(.3388);animation:fall-192 13s -2s linear infinite}@keyframes fall-192{71.91%{transform:translate(34.7729vw,71.91vh) scale(.3388)}to{transform:translate(35.5666vw,100vh) scale(.3388)}}.snow:nth-child(193){opacity:1.438;transform:translate(27.0558vw,-10px) scale(.523);animation:fall-193 22s -17s linear infinite}@keyframes fall-193{69.851%{transform:translate(34.7474vw,69.851vh) scale(.523)}to{transform:translate(30.9016vw,100vh) scale(.523)}}.snow:nth-child(194){opacity:1.0042;transform:translate(26.1002vw,-10px) scale(.7137);animation:fall-194 24s -10s linear infinite}@keyframes fall-194{30.169%{transform:translate(25.9604vw,30.169vh) scale(.7137)}to{transform:translate(26.0303vw,100vh) scale(.7137)}}.snow:nth-child(195){opacity:1.5482;transform:translate(20.7364vw,-10px) scale(.3261);animation:fall-195 12s -13s linear infinite}@keyframes fall-195{59.871%{transform:translate(29.7043vw,59.871vh) scale(.3261)}to{transform:translate(25.22035vw,100vh) scale(.3261)}}.snow:nth-child(196){opacity:.7298;transform:translate(56.8223vw,-10px) scale(.3095);animation:fall-196 14s -5s linear infinite}@keyframes fall-196{57.798%{transform:translate(64.7423vw,57.798vh) scale(.3095)}to{transform:translate(60.7823vw,100vh) scale(.3095)}}.snow:nth-child(197){opacity:1.0084;transform:translate(70.9534vw,-10px) scale(.501);animation:fall-197 22s -28s linear infinite}@keyframes fall-197{71.864%{transform:translate(64.2134vw,71.864vh) scale(.501)}to{transform:translate(67.5834vw,100vh) scale(.501)}}.snow:nth-child(198){opacity:1.8896;transform:translate(34.9798vw,-10px) scale(.5888);animation:fall-198 28s -15s linear infinite}@keyframes fall-198{61.569%{transform:translate(27.5239vw,61.569vh) scale(.5888)}to{transform:translate(31.25185vw,100vh) scale(.5888)}}.snow:nth-child(199){opacity:.6912;transform:translate(14.6591vw,-10px) scale(.6555);animation:fall-199 19s -7s linear infinite}@keyframes fall-199{60.61%{transform:translate(17.9254vw,60.61vh) scale(.6555)}to{transform:translate(16.29225vw,100vh) scale(.6555)}}.snow:nth-child(200){opacity:1.3594;transform:translate(4.0766vw,-10px) scale(.2214);animation:fall-200 20s -13s linear infinite}@keyframes fall-200{71.661%{transform:translate(4.5018vw,71.661vh) scale(.2214)}to{transform:translate(4.2892vw,100vh) scale(.2214)}}.snow:nth-child(201){opacity:.1396;transform:translate(45.7442vw,-10px) scale(.3434);animation:fall-201 17s -15s linear infinite}@keyframes fall-201{74.165%{transform:translate(47.4985vw,74.165vh) scale(.3434)}to{transform:translate(46.62135vw,100vh) scale(.3434)}}.snow:nth-child(202){opacity:1.8378;transform:translate(42.902vw,-10px) scale(.7201);animation:fall-202 14s -7s linear infinite}@keyframes fall-202{52.922%{transform:translate(35.7959vw,52.922vh) scale(.7201)}to{transform:translate(39.34895vw,100vh) scale(.7201)}}.snow:nth-child(203){opacity:1.6642;transform:translate(12.923vw,-10px) scale(.5027);animation:fall-203 14s -20s linear infinite}@keyframes fall-203{72.444%{transform:translate(7.1576vw,72.444vh) scale(.5027)}to{transform:translate(10.0403vw,100vh) scale(.5027)}}.snow:nth-child(204){opacity:.0678;transform:translate(42.7969vw,-10px) scale(.7398);animation:fall-204 23s -4s linear infinite}@keyframes fall-204{50.944%{transform:translate(35.3338vw,50.944vh) scale(.7398)}to{transform:translate(39.06535vw,100vh) scale(.7398)}}.snow:nth-child(205){opacity:.7166;transform:translate(23.9532vw,-10px) scale(.4261);animation:fall-205 11s -16s linear infinite}@keyframes fall-205{65.834%{transform:translate(16.7726vw,65.834vh) scale(.4261)}to{transform:translate(20.3629vw,100vh) scale(.4261)}}.snow:nth-child(206){opacity:.4726;transform:translate(47.0753vw,-10px) scale(.8518);animation:fall-206 21s -11s linear infinite}@keyframes fall-206{69.473%{transform:translate(37.9556vw,69.473vh) scale(.8518)}to{transform:translate(42.51545vw,100vh) scale(.8518)}}.snow:nth-child(207){opacity:1.1958;transform:translate(48.4909vw,-10px) scale(.899);animation:fall-207 28s -17s linear infinite}@keyframes fall-207{33.057%{transform:translate(45.3448vw,33.057vh) scale(.899)}to{transform:translate(46.91785vw,100vh) scale(.899)}}.snow:nth-child(208){opacity:.0554;transform:translate(15.9774vw,-10px) scale(.2163);animation:fall-208 26s -14s linear infinite}@keyframes fall-208{35.826%{transform:translate(12.6595vw,35.826vh) scale(.2163)}to{transform:translate(14.31845vw,100vh) scale(.2163)}}.snow:nth-child(209){opacity:.1502;transform:translate(46.6343vw,-10px) scale(.2241);animation:fall-209 24s -6s linear infinite}@keyframes fall-209{72.198%{transform:translate(40.4868vw,72.198vh) scale(.2241)}to{transform:translate(43.56055vw,100vh) scale(.2241)}}.snow:nth-child(210){opacity:1.7686;transform:translate(6.0719vw,-10px) scale(.8364);animation:fall-210 24s -23s linear infinite}@keyframes fall-210{57.609%{transform:translate(-1.7376vw,57.609vh) scale(.8364)}to{transform:translate(2.16715vw,100vh) scale(.8364)}}.snow:nth-child(211){opacity:1.5418;transform:translate(72.1741vw,-10px) scale(.2457);animation:fall-211 24s -9s linear infinite}@keyframes fall-211{73.155%{transform:translate(64.194vw,73.155vh) scale(.2457)}to{transform:translate(68.18405vw,100vh) scale(.2457)}}.snow:nth-child(212){opacity:.233;transform:translate(26.2744vw,-10px) scale(.6124);animation:fall-212 17s -21s linear infinite}@keyframes fall-212{38.635%{transform:translate(22.7185vw,38.635vh) scale(.6124)}to{transform:translate(24.49645vw,100vh) scale(.6124)}}.snow:nth-child(213){opacity:1.9794;transform:translate(41.7875vw,-10px) scale(.7217);animation:fall-213 27s -15s linear infinite}@keyframes fall-213{77.556%{transform:translate(38.4279vw,77.556vh) scale(.7217)}to{transform:translate(40.1077vw,100vh) scale(.7217)}}.snow:nth-child(214){opacity:.1596;transform:translate(57.2066vw,-10px) scale(.6888);animation:fall-214 13s -24s linear infinite}@keyframes fall-214{74.737%{transform:translate(53.0254vw,74.737vh) scale(.6888)}to{transform:translate(55.116vw,100vh) scale(.6888)}}.snow:nth-child(215){opacity:.8024;transform:translate(66.1234vw,-10px) scale(.462);animation:fall-215 18s -14s linear infinite}@keyframes fall-215{50.696%{transform:translate(73.0843vw,50.696vh) scale(.462)}to{transform:translate(69.60385vw,100vh) scale(.462)}}.snow:nth-child(216){opacity:1.1788;transform:translate(31.244vw,-10px) scale(.6748);animation:fall-216 18s -29s linear infinite}@keyframes fall-216{70.761%{transform:translate(35.3045vw,70.761vh) scale(.6748)}to{transform:translate(33.27425vw,100vh) scale(.6748)}}.snow:nth-child(217){opacity:1.2712;transform:translate(44.014vw,-10px) scale(.584);animation:fall-217 19s -28s linear infinite}@keyframes fall-217{78.838%{transform:translate(35.8083vw,78.838vh) scale(.584)}to{transform:translate(39.91115vw,100vh) scale(.584)}}.snow:nth-child(218){opacity:.818;transform:translate(38.7327vw,-10px) scale(.3872);animation:fall-218 20s -29s linear infinite}@keyframes fall-218{34.911%{transform:translate(41.6468vw,34.911vh) scale(.3872)}to{transform:translate(40.18975vw,100vh) scale(.3872)}}.snow:nth-child(219){opacity:1.509;transform:translate(15.1664vw,-10px) scale(.1645);animation:fall-219 28s -2s linear infinite}@keyframes fall-219{34.88%{transform:translate(21.2869vw,34.88vh) scale(.1645)}to{transform:translate(18.22665vw,100vh) scale(.1645)}}.snow:nth-child(220){opacity:.795;transform:translate(55.3566vw,-10px) scale(.0918);animation:fall-220 24s -12s linear infinite}@keyframes fall-220{63.218%{transform:translate(61.6852vw,63.218vh) scale(.0918)}to{transform:translate(58.5209vw,100vh) scale(.0918)}}.snow:nth-child(221){opacity:1.1806;transform:translate(74.0826vw,-10px) scale(.8473);animation:fall-221 21s -6s linear infinite}@keyframes fall-221{53.674%{transform:translate(64.9549vw,53.674vh) scale(.8473)}to{transform:translate(69.51875vw,100vh) scale(.8473)}}.snow:nth-child(222){opacity:.2708;transform:translate(27.2522vw,-10px) scale(.4642);animation:fall-222 28s -6s linear infinite}@keyframes fall-222{52.125%{transform:translate(17.274vw,52.125vh) scale(.4642)}to{transform:translate(22.2631vw,100vh) scale(.4642)}}.snow:nth-child(223){opacity:1.9036;transform:translate(42.1718vw,-10px) scale(.8811);animation:fall-223 10s -9s linear infinite}@keyframes fall-223{55.267%{transform:translate(36.2423vw,55.267vh) scale(.8811)}to{transform:translate(39.20705vw,100vh) scale(.8811)}}.snow:nth-child(224){opacity:1.4468;transform:translate(2.7744vw,-10px) scale(.9582);animation:fall-224 29s -14s linear infinite}@keyframes fall-224{55.26%{transform:translate(-6.809vw,55.26vh) scale(.9582)}to{transform:translate(-2.0173vw,100vh) scale(.9582)}}.snow:nth-child(225){opacity:1.1268;transform:translate(67.8839vw,-10px) scale(.2215);animation:fall-225 18s -23s linear infinite}@keyframes fall-225{50.914%{transform:translate(64.834vw,50.914vh) scale(.2215)}to{transform:translate(66.35895vw,100vh) scale(.2215)}}.snow:nth-child(226){opacity:1.4322;transform:translate(69.0133vw,-10px) scale(.5379);animation:fall-226 11s -3s linear infinite}@keyframes fall-226{36.489%{transform:translate(61.7449vw,36.489vh) scale(.5379)}to{transform:translate(65.3791vw,100vh) scale(.5379)}}.snow:nth-child(227){opacity:.171;transform:translate(61.7722vw,-10px) scale(.4468);animation:fall-227 29s -11s linear infinite}@keyframes fall-227{36.054%{transform:translate(61.6947vw,36.054vh) scale(.4468)}to{transform:translate(61.73345vw,100vh) scale(.4468)}}.snow:nth-child(228){opacity:1.3424;transform:translate(29.1254vw,-10px) scale(.2271);animation:fall-228 18s -8s linear infinite}@keyframes fall-228{63.395%{transform:translate(23.1736vw,63.395vh) scale(.2271)}to{transform:translate(26.1495vw,100vh) scale(.2271)}}.snow:nth-child(229){opacity:.2364;transform:translate(33.1788vw,-10px) scale(.3345);animation:fall-229 22s -5s linear infinite}@keyframes fall-229{74.224%{transform:translate(41.6867vw,74.224vh) scale(.3345)}to{transform:translate(37.43275vw,100vh) scale(.3345)}}.snow:nth-child(230){opacity:.6498;transform:translate(63.6961vw,-10px) scale(.2063);animation:fall-230 28s -5s linear infinite}@keyframes fall-230{46.856%{transform:translate(64.0858vw,46.856vh) scale(.2063)}to{transform:translate(63.89095vw,100vh) scale(.2063)}}.snow:nth-child(231){opacity:1.2276;transform:translate(29.5902vw,-10px) scale(.7202);animation:fall-231 25s -11s linear infinite}@keyframes fall-231{52.168%{transform:translate(35.0206vw,52.168vh) scale(.7202)}to{transform:translate(32.3054vw,100vh) scale(.7202)}}.snow:nth-child(232){opacity:.1878;transform:translate(28.1847vw,-10px) scale(.6275);animation:fall-232 25s -23s linear infinite}@keyframes fall-232{48.784%{transform:translate(35.5923vw,48.784vh) scale(.6275)}to{transform:translate(31.8885vw,100vh) scale(.6275)}}.snow:nth-child(233){opacity:.0642;transform:translate(57.2442vw,-10px) scale(.6715);animation:fall-233 18s -10s linear infinite}@keyframes fall-233{30.93%{transform:translate(58.9611vw,30.93vh) scale(.6715)}to{transform:translate(58.10265vw,100vh) scale(.6715)}}.snow:nth-child(234){opacity:1.5444;transform:translate(65.8145vw,-10px) scale(.662);animation:fall-234 26s -11s linear infinite}@keyframes fall-234{41.362%{transform:translate(70.7542vw,41.362vh) scale(.662)}to{transform:translate(68.28435vw,100vh) scale(.662)}}.snow:nth-child(235){opacity:1.4918;transform:translate(70.5398vw,-10px) scale(.2686);animation:fall-235 18s -14s linear infinite}@keyframes fall-235{72.342%{transform:translate(69.3933vw,72.342vh) scale(.2686)}to{transform:translate(69.96655vw,100vh) scale(.2686)}}.snow:nth-child(236){opacity:1.477;transform:translate(95.0984vw,-10px) scale(.4108);animation:fall-236 27s -30s linear infinite}@keyframes fall-236{32.903%{transform:translate(101.1301vw,32.903vh) scale(.4108)}to{transform:translate(98.11425vw,100vh) scale(.4108)}}.snow:nth-child(237){opacity:1.935;transform:translate(74.9701vw,-10px) scale(.5074);animation:fall-237 24s -14s linear infinite}@keyframes fall-237{63.924%{transform:translate(65.8621vw,63.924vh) scale(.5074)}to{transform:translate(70.4161vw,100vh) scale(.5074)}}.snow:nth-child(238){opacity:1.8446;transform:translate(10.924vw,-10px) scale(.0926);animation:fall-238 16s -15s linear infinite}@keyframes fall-238{76.333%{transform:translate(15.1088vw,76.333vh) scale(.0926)}to{transform:translate(13.0164vw,100vh) scale(.0926)}}.snow:nth-child(239){opacity:.3276;transform:translate(33.6204vw,-10px) scale(.4922);animation:fall-239 13s -27s linear infinite}@keyframes fall-239{79.588%{transform:translate(29.8284vw,79.588vh) scale(.4922)}to{transform:translate(31.7244vw,100vh) scale(.4922)}}.snow:nth-child(240){opacity:1.4494;transform:translate(64.4849vw,-10px) scale(.5953);animation:fall-240 25s -17s linear infinite}@keyframes fall-240{65.777%{transform:translate(70.1096vw,65.777vh) scale(.5953)}to{transform:translate(67.29725vw,100vh) scale(.5953)}}.snow:nth-child(241){opacity:.4914;transform:translate(37.7554vw,-10px) scale(.2949);animation:fall-241 25s -30s linear infinite}@keyframes fall-241{44.308%{transform:translate(40.0583vw,44.308vh) scale(.2949)}to{transform:translate(38.90685vw,100vh) scale(.2949)}}.snow:nth-child(242){opacity:1.2916;transform:translate(1.0732vw,-10px) scale(.7882);animation:fall-242 19s -9s linear infinite}@keyframes fall-242{44.732%{transform:translate(4.4895vw,44.732vh) scale(.7882)}to{transform:translate(2.78135vw,100vh) scale(.7882)}}.snow:nth-child(243){opacity:.1152;transform:translate(71.73vw,-10px) scale(.6791);animation:fall-243 22s -23s linear infinite}@keyframes fall-243{51.981%{transform:translate(80.8949vw,51.981vh) scale(.6791)}to{transform:translate(76.31245vw,100vh) scale(.6791)}}.snow:nth-child(244){opacity:.397;transform:translate(87.1563vw,-10px) scale(.1273);animation:fall-244 20s -28s linear infinite}@keyframes fall-244{54.022%{transform:translate(81.9626vw,54.022vh) scale(.1273)}to{transform:translate(84.55945vw,100vh) scale(.1273)}}.snow:nth-child(245){opacity:1.6636;transform:translate(60.9454vw,-10px) scale(.596);animation:fall-245 24s -8s linear infinite}@keyframes fall-245{48.278%{transform:translate(60.4051vw,48.278vh) scale(.596)}to{transform:translate(60.67525vw,100vh) scale(.596)}}.snow:nth-child(246){opacity:.4162;transform:translate(57.5715vw,-10px) scale(.5866);animation:fall-246 20s -7s linear infinite}@keyframes fall-246{73.095%{transform:translate(66.166vw,73.095vh) scale(.5866)}to{transform:translate(61.86875vw,100vh) scale(.5866)}}.snow:nth-child(247){opacity:1.0696;transform:translate(29.0161vw,-10px) scale(.0932);animation:fall-247 19s -28s linear infinite}@keyframes fall-247{62.465%{transform:translate(36.7888vw,62.465vh) scale(.0932)}to{transform:translate(32.90245vw,100vh) scale(.0932)}}.snow:nth-child(248){opacity:1.7856;transform:translate(95.7165vw,-10px) scale(.746);animation:fall-248 24s -16s linear infinite}@keyframes fall-248{37.639%{transform:translate(96.5373vw,37.639vh) scale(.746)}to{transform:translate(96.1269vw,100vh) scale(.746)}}.snow:nth-child(249){opacity:1.2092;transform:translate(78.299vw,-10px) scale(.667);animation:fall-249 22s -25s linear infinite}@keyframes fall-249{43.814%{transform:translate(81.8673vw,43.814vh) scale(.667)}to{transform:translate(80.08315vw,100vh) scale(.667)}}.snow:nth-child(250){opacity:.304;transform:translate(90.7352vw,-10px) scale(.6017);animation:fall-250 26s -27s linear infinite}@keyframes fall-250{51.803%{transform:translate(98.4394vw,51.803vh) scale(.6017)}to{transform:translate(94.5873vw,100vh) scale(.6017)}}.snow:nth-child(251){opacity:.7394;transform:translate(59.5248vw,-10px) scale(.2363);animation:fall-251 22s -29s linear infinite}@keyframes fall-251{72.071%{transform:translate(57.0801vw,72.071vh) scale(.2363)}to{transform:translate(58.30245vw,100vh) scale(.2363)}}.snow:nth-child(252){opacity:.4742;transform:translate(7.5303vw,-10px) scale(.7933);animation:fall-252 23s -21s linear infinite}@keyframes fall-252{57.64%{transform:translate(7.7392vw,57.64vh) scale(.7933)}to{transform:translate(7.63475vw,100vh) scale(.7933)}}.snow:nth-child(253){opacity:1.8232;transform:translate(43.5725vw,-10px) scale(.6564);animation:fall-253 30s -13s linear infinite}@keyframes fall-253{53.11%{transform:translate(37.5387vw,53.11vh) scale(.6564)}to{transform:translate(40.5556vw,100vh) scale(.6564)}}.snow:nth-child(254){opacity:1.6228;transform:translate(75.5634vw,-10px) scale(.6767);animation:fall-254 18s -23s linear infinite}@keyframes fall-254{41.12%{transform:translate(68.4998vw,41.12vh) scale(.6767)}to{transform:translate(72.0316vw,100vh) scale(.6767)}}.snow:nth-child(255){opacity:1.2108;transform:translate(78.8763vw,-10px) scale(.0455);animation:fall-255 21s -6s linear infinite}@keyframes fall-255{35.487%{transform:translate(83.1761vw,35.487vh) scale(.0455)}to{transform:translate(81.0262vw,100vh) scale(.0455)}}.snow:nth-child(256){opacity:.106;transform:translate(26.6339vw,-10px) scale(.8262);animation:fall-256 16s -3s linear infinite}@keyframes fall-256{69.909%{transform:translate(21.7137vw,69.909vh) scale(.8262)}to{transform:translate(24.1738vw,100vh) scale(.8262)}}.snow:nth-child(257){opacity:1.5554;transform:translate(44.5218vw,-10px) scale(.8635);animation:fall-257 11s -19s linear infinite}@keyframes fall-257{68.8%{transform:translate(50.9845vw,68.8vh) scale(.8635)}to{transform:translate(47.75315vw,100vh) scale(.8635)}}.snow:nth-child(258){opacity:1.0058;transform:translate(56.111vw,-10px) scale(.0723);animation:fall-258 15s -18s linear infinite}@keyframes fall-258{35.097%{transform:translate(46.7328vw,35.097vh) scale(.0723)}to{transform:translate(51.4219vw,100vh) scale(.0723)}}.snow:nth-child(259){opacity:1.8796;transform:translate(7.1545vw,-10px) scale(.9702);animation:fall-259 28s -21s linear infinite}@keyframes fall-259{38.825%{transform:translate(13.9039vw,38.825vh) scale(.9702)}to{transform:translate(10.5292vw,100vh) scale(.9702)}}.snow:nth-child(260){opacity:1.7974;transform:translate(20.8561vw,-10px) scale(.3845);animation:fall-260 14s -16s linear infinite}@keyframes fall-260{38.84%{transform:translate(17.948vw,38.84vh) scale(.3845)}to{transform:translate(19.40205vw,100vh) scale(.3845)}}.snow:nth-child(261){opacity:1.8408;transform:translate(33.5754vw,-10px) scale(.5033);animation:fall-261 21s -9s linear infinite}@keyframes fall-261{50.208%{transform:translate(36.1588vw,50.208vh) scale(.5033)}to{transform:translate(34.8671vw,100vh) scale(.5033)}}.snow:nth-child(262){opacity:.7978;transform:translate(47.1875vw,-10px) scale(.2029);animation:fall-262 15s -11s linear infinite}@keyframes fall-262{59.859%{transform:translate(42.1428vw,59.859vh) scale(.2029)}to{transform:translate(44.66515vw,100vh) scale(.2029)}}.snow:nth-child(263){opacity:.3726;transform:translate(54.4616vw,-10px) scale(.4347);animation:fall-263 25s -16s linear infinite}@keyframes fall-263{43.517%{transform:translate(62.9891vw,43.517vh) scale(.4347)}to{transform:translate(58.72535vw,100vh) scale(.4347)}}.snow:nth-child(264){opacity:1.1194;transform:translate(5.9109vw,-10px) scale(.7715);animation:fall-264 18s -8s linear infinite}@keyframes fall-264{49.513%{transform:translate(1.3772vw,49.513vh) scale(.7715)}to{transform:translate(3.64405vw,100vh) scale(.7715)}}.snow:nth-child(265){opacity:.7376;transform:translate(45.7037vw,-10px) scale(.9187);animation:fall-265 15s -3s linear infinite}@keyframes fall-265{60.829%{transform:translate(36.2351vw,60.829vh) scale(.9187)}to{transform:translate(40.9694vw,100vh) scale(.9187)}}.snow:nth-child(266){opacity:1.0144;transform:translate(95.9341vw,-10px) scale(.3053);animation:fall-266 11s -15s linear infinite}@keyframes fall-266{76.811%{transform:translate(87.5727vw,76.811vh) scale(.3053)}to{transform:translate(91.7534vw,100vh) scale(.3053)}}.snow:nth-child(267){opacity:1.5464;transform:translate(97.8881vw,-10px) scale(.0221);animation:fall-267 29s -21s linear infinite}@keyframes fall-267{65.33%{transform:translate(90.1052vw,65.33vh) scale(.0221)}to{transform:translate(93.99665vw,100vh) scale(.0221)}}.snow:nth-child(268){opacity:1.9634;transform:translate(51.2741vw,-10px) scale(.6417);animation:fall-268 17s -28s linear infinite}@keyframes fall-268{65.868%{transform:translate(46.967vw,65.868vh) scale(.6417)}to{transform:translate(49.12055vw,100vh) scale(.6417)}}.snow:nth-child(269){opacity:.146;transform:translate(83.6989vw,-10px) scale(.6822);animation:fall-269 20s -17s linear infinite}@keyframes fall-269{51.386%{transform:translate(93.4134vw,51.386vh) scale(.6822)}to{transform:translate(88.55615vw,100vh) scale(.6822)}}.snow:nth-child(270){opacity:1.1106;transform:translate(59.0249vw,-10px) scale(.3246);animation:fall-270 12s -14s linear infinite}@keyframes fall-270{77.558%{transform:translate(61.2937vw,77.558vh) scale(.3246)}to{transform:translate(60.1593vw,100vh) scale(.3246)}}.snow:nth-child(271){opacity:1.4004;transform:translate(22.1428vw,-10px) scale(.9696);animation:fall-271 30s -20s linear infinite}@keyframes fall-271{58.698%{transform:translate(23.7919vw,58.698vh) scale(.9696)}to{transform:translate(22.96735vw,100vh) scale(.9696)}}.snow:nth-child(272){opacity:.3634;transform:translate(64.7333vw,-10px) scale(.6281);animation:fall-272 13s -17s linear infinite}@keyframes fall-272{49.492%{transform:translate(73.184vw,49.492vh) scale(.6281)}to{transform:translate(68.95865vw,100vh) scale(.6281)}}.snow:nth-child(273){opacity:1.1752;transform:translate(7.9438vw,-10px) scale(.0609);animation:fall-273 17s -30s linear infinite}@keyframes fall-273{64.777%{transform:translate(1.7187vw,64.777vh) scale(.0609)}to{transform:translate(4.83125vw,100vh) scale(.0609)}}.snow:nth-child(274){opacity:1.5292;transform:translate(54.2905vw,-10px) scale(.0523);animation:fall-274 25s -29s linear infinite}@keyframes fall-274{66.179%{transform:translate(63.5663vw,66.179vh) scale(.0523)}to{transform:translate(58.9284vw,100vh) scale(.0523)}}.snow:nth-child(275){opacity:1.2316;transform:translate(62.5981vw,-10px) scale(.7631);animation:fall-275 20s -23s linear infinite}@keyframes fall-275{53.408%{transform:translate(62.0716vw,53.408vh) scale(.7631)}to{transform:translate(62.33485vw,100vh) scale(.7631)}}.snow:nth-child(276){opacity:1.7032;transform:translate(5.4217vw,-10px) scale(.1635);animation:fall-276 14s -10s linear infinite}@keyframes fall-276{68.543%{transform:translate(12.599vw,68.543vh) scale(.1635)}to{transform:translate(9.01035vw,100vh) scale(.1635)}}.snow:nth-child(277){opacity:1.7358;transform:translate(91.27vw,-10px) scale(.7326);animation:fall-277 26s -4s linear infinite}@keyframes fall-277{48.557%{transform:translate(88.956vw,48.557vh) scale(.7326)}to{transform:translate(90.113vw,100vh) scale(.7326)}}.snow:nth-child(278){opacity:.0622;transform:translate(20.351vw,-10px) scale(.0695);animation:fall-278 27s -27s linear infinite}@keyframes fall-278{58.567%{transform:translate(13.5025vw,58.567vh) scale(.0695)}to{transform:translate(16.92675vw,100vh) scale(.0695)}}.snow:nth-child(279){opacity:.7616;transform:translate(54.1033vw,-10px) scale(.2965);animation:fall-279 13s -11s linear infinite}@keyframes fall-279{56.963%{transform:translate(47.6056vw,56.963vh) scale(.2965)}to{transform:translate(50.85445vw,100vh) scale(.2965)}}.snow:nth-child(280){opacity:.9172;transform:translate(7.5759vw,-10px) scale(.8068);animation:fall-280 25s -30s linear infinite}@keyframes fall-280{36.756%{transform:translate(3.2669vw,36.756vh) scale(.8068)}to{transform:translate(5.4214vw,100vh) scale(.8068)}}.snow:nth-child(281){opacity:1.2012;transform:translate(67.6124vw,-10px) scale(.2691);animation:fall-281 25s -11s linear infinite}@keyframes fall-281{43.92%{transform:translate(64.9316vw,43.92vh) scale(.2691)}to{transform:translate(66.272vw,100vh) scale(.2691)}}.snow:nth-child(282){opacity:1.7456;transform:translate(53.3086vw,-10px) scale(.5047);animation:fall-282 14s -19s linear infinite}@keyframes fall-282{73.244%{transform:translate(61.5501vw,73.244vh) scale(.5047)}to{transform:translate(57.42935vw,100vh) scale(.5047)}}.snow:nth-child(283){opacity:.2302;transform:translate(75.0475vw,-10px) scale(.0966);animation:fall-283 14s -19s linear infinite}@keyframes fall-283{30.484%{transform:translate(78.2928vw,30.484vh) scale(.0966)}to{transform:translate(76.67015vw,100vh) scale(.0966)}}.snow:nth-child(284){opacity:1.8234;transform:translate(69.0814vw,-10px) scale(.6842);animation:fall-284 30s -30s linear infinite}@keyframes fall-284{46.342%{transform:translate(63.3694vw,46.342vh) scale(.6842)}to{transform:translate(66.2254vw,100vh) scale(.6842)}}.snow:nth-child(285){opacity:.2596;transform:translate(68.6546vw,-10px) scale(.3421);animation:fall-285 24s -28s linear infinite}@keyframes fall-285{48.713%{transform:translate(66.3521vw,48.713vh) scale(.3421)}to{transform:translate(67.50335vw,100vh) scale(.3421)}}.snow:nth-child(286){opacity:.5414;transform:translate(94.9029vw,-10px) scale(.9827);animation:fall-286 22s -26s linear infinite}@keyframes fall-286{70.023%{transform:translate(86.9913vw,70.023vh) scale(.9827)}to{transform:translate(90.9471vw,100vh) scale(.9827)}}.snow:nth-child(287){opacity:1.7884;transform:translate(8.9365vw,-10px) scale(.5966);animation:fall-287 20s -3s linear infinite}@keyframes fall-287{54.041%{transform:translate(9.8626vw,54.041vh) scale(.5966)}to{transform:translate(9.39955vw,100vh) scale(.5966)}}.snow:nth-child(288){opacity:.2668;transform:translate(90.7807vw,-10px) scale(.9703);animation:fall-288 26s -9s linear infinite}@keyframes fall-288{68.75%{transform:translate(89.5775vw,68.75vh) scale(.9703)}to{transform:translate(90.1791vw,100vh) scale(.9703)}}.snow:nth-child(289){opacity:1.8456;transform:translate(11.182vw,-10px) scale(.6883);animation:fall-289 26s -12s linear infinite}@keyframes fall-289{57.818%{transform:translate(5.206vw,57.818vh) scale(.6883)}to{transform:translate(8.194vw,100vh) scale(.6883)}}.snow:nth-child(290){opacity:1.277;transform:translate(79.5322vw,-10px) scale(.4317);animation:fall-290 13s -5s linear infinite}@keyframes fall-290{54.105%{transform:translate(80.301vw,54.105vh) scale(.4317)}to{transform:translate(79.9166vw,100vh) scale(.4317)}}.snow:nth-child(291){opacity:1.388;transform:translate(90.0768vw,-10px) scale(.9979);animation:fall-291 24s -23s linear infinite}@keyframes fall-291{74.152%{transform:translate(96.2721vw,74.152vh) scale(.9979)}to{transform:translate(93.17445vw,100vh) scale(.9979)}}.snow:nth-child(292){opacity:.1432;transform:translate(41.4975vw,-10px) scale(.7402);animation:fall-292 27s -27s linear infinite}@keyframes fall-292{30.497%{transform:translate(50.9476vw,30.497vh) scale(.7402)}to{transform:translate(46.22255vw,100vh) scale(.7402)}}.snow:nth-child(293){opacity:.1604;transform:translate(41.1917vw,-10px) scale(.1907);animation:fall-293 14s -27s linear infinite}@keyframes fall-293{59.956%{transform:translate(50.9754vw,59.956vh) scale(.1907)}to{transform:translate(46.08355vw,100vh) scale(.1907)}}.snow:nth-child(294){opacity:.4622;transform:translate(13.7665vw,-10px) scale(.3328);animation:fall-294 24s -17s linear infinite}@keyframes fall-294{70.059%{transform:translate(13.9236vw,70.059vh) scale(.3328)}to{transform:translate(13.84505vw,100vh) scale(.3328)}}.snow:nth-child(295){opacity:.1562;transform:translate(86.4161vw,-10px) scale(.4849);animation:fall-295 19s -3s linear infinite}@keyframes fall-295{51.729%{transform:translate(94.875vw,51.729vh) scale(.4849)}to{transform:translate(90.64555vw,100vh) scale(.4849)}}.snow:nth-child(296){opacity:.6848;transform:translate(31.4744vw,-10px) scale(.8854);animation:fall-296 28s -15s linear infinite}@keyframes fall-296{52.577%{transform:translate(37.3522vw,52.577vh) scale(.8854)}to{transform:translate(34.4133vw,100vh) scale(.8854)}}.snow:nth-child(297){opacity:.796;transform:translate(66.755vw,-10px) scale(.8616);animation:fall-297 29s -16s linear infinite}@keyframes fall-297{50.817%{transform:translate(61.6057vw,50.817vh) scale(.8616)}to{transform:translate(64.18035vw,100vh) scale(.8616)}}.snow:nth-child(298){opacity:1.6476;transform:translate(31.3292vw,-10px) scale(.3662);animation:fall-298 25s -23s linear infinite}@keyframes fall-298{62.256%{transform:translate(39.3144vw,62.256vh) scale(.3662)}to{transform:translate(35.3218vw,100vh) scale(.3662)}}.snow:nth-child(299){opacity:1.0718;transform:translate(82.4624vw,-10px) scale(.624);animation:fall-299 16s -9s linear infinite}@keyframes fall-299{33.451%{transform:translate(75.4106vw,33.451vh) scale(.624)}to{transform:translate(78.9365vw,100vh) scale(.624)}}.snow:nth-child(300){opacity:.7148;transform:translate(9.4838vw,-10px) scale(.7013);animation:fall-300 13s -30s linear infinite}@keyframes fall-300{68.714%{transform:translate(8.3967vw,68.714vh) scale(.7013)}to{transform:translate(8.94025vw,100vh) scale(.7013)}}.snow:nth-child(301){opacity:1.099;transform:translate(24.4897vw,-10px) scale(.3081);animation:fall-301 22s -25s linear infinite}@keyframes fall-301{78.412%{transform:translate(14.9346vw,78.412vh) scale(.3081)}to{transform:translate(19.71215vw,100vh) scale(.3081)}}.snow:nth-child(302){opacity:1.079;transform:translate(66.1134vw,-10px) scale(.4051);animation:fall-302 26s -14s linear infinite}@keyframes fall-302{75.79%{transform:translate(62.8479vw,75.79vh) scale(.4051)}to{transform:translate(64.48065vw,100vh) scale(.4051)}}.snow:nth-child(303){opacity:1.2184;transform:translate(71.3863vw,-10px) scale(.6623);animation:fall-303 18s -9s linear infinite}@keyframes fall-303{32.636%{transform:translate(73.4758vw,32.636vh) scale(.6623)}to{transform:translate(72.43105vw,100vh) scale(.6623)}}.snow:nth-child(304){opacity:.743;transform:translate(59.2652vw,-10px) scale(.1518);animation:fall-304 19s -26s linear infinite}@keyframes fall-304{53.796%{transform:translate(56.1427vw,53.796vh) scale(.1518)}to{transform:translate(57.70395vw,100vh) scale(.1518)}}.snow:nth-child(305){opacity:.0712;transform:translate(92.0315vw,-10px) scale(.0559);animation:fall-305 13s -22s linear infinite}@keyframes fall-305{42.207%{transform:translate(100.339vw,42.207vh) scale(.0559)}to{transform:translate(96.18525vw,100vh) scale(.0559)}}.snow:nth-child(306){opacity:1.4916;transform:translate(97.9327vw,-10px) scale(.8907);animation:fall-306 26s -20s linear infinite}@keyframes fall-306{40.037%{transform:translate(106.9135vw,40.037vh) scale(.8907)}to{transform:translate(102.4231vw,100vh) scale(.8907)}}.snow:nth-child(307){opacity:.69;transform:translate(12.6494vw,-10px) scale(.1524);animation:fall-307 29s -1s linear infinite}@keyframes fall-307{75.487%{transform:translate(14.0819vw,75.487vh) scale(.1524)}to{transform:translate(13.36565vw,100vh) scale(.1524)}}.snow:nth-child(308){opacity:1.6526;transform:translate(80.0942vw,-10px) scale(.4114);animation:fall-308 26s -21s linear infinite}@keyframes fall-308{79.647%{transform:translate(74.6139vw,79.647vh) scale(.4114)}to{transform:translate(77.35405vw,100vh) scale(.4114)}}.snow:nth-child(309){opacity:.9236;transform:translate(8.0259vw,-10px) scale(.0339);animation:fall-309 10s -23s linear infinite}@keyframes fall-309{33.737%{transform:translate(3.6476vw,33.737vh) scale(.0339)}to{transform:translate(5.83675vw,100vh) scale(.0339)}}.snow:nth-child(310){opacity:.2378;transform:translate(25.3237vw,-10px) scale(.0252);animation:fall-310 26s -20s linear infinite}@keyframes fall-310{41.188%{transform:translate(24.9535vw,41.188vh) scale(.0252)}to{transform:translate(25.1386vw,100vh) scale(.0252)}}.snow:nth-child(311){opacity:1.7954;transform:translate(78.2771vw,-10px) scale(.8342);animation:fall-311 19s -25s linear infinite}@keyframes fall-311{47.131%{transform:translate(78.6308vw,47.131vh) scale(.8342)}to{transform:translate(78.45395vw,100vh) scale(.8342)}}.snow:nth-child(312){opacity:1.6482;transform:translate(82.1609vw,-10px) scale(.9263);animation:fall-312 26s -16s linear infinite}@keyframes fall-312{64.796%{transform:translate(85.0247vw,64.796vh) scale(.9263)}to{transform:translate(83.5928vw,100vh) scale(.9263)}}.snow:nth-child(313){opacity:1.048;transform:translate(29.6267vw,-10px) scale(.4367);animation:fall-313 24s -27s linear infinite}@keyframes fall-313{62.155%{transform:translate(30.5593vw,62.155vh) scale(.4367)}to{transform:translate(30.093vw,100vh) scale(.4367)}}.snow:nth-child(314){opacity:1.206;transform:translate(53.4417vw,-10px) scale(.1533);animation:fall-314 21s -21s linear infinite}@keyframes fall-314{41.215%{transform:translate(44.5909vw,41.215vh) scale(.1533)}to{transform:translate(49.0163vw,100vh) scale(.1533)}}.snow:nth-child(315){opacity:.9056;transform:translate(33.4741vw,-10px) scale(.4908);animation:fall-315 10s -4s linear infinite}@keyframes fall-315{44.568%{transform:translate(36.5398vw,44.568vh) scale(.4908)}to{transform:translate(35.00695vw,100vh) scale(.4908)}}.snow:nth-child(316){opacity:1.2178;transform:translate(27.8809vw,-10px) scale(.9084);animation:fall-316 14s -1s linear infinite}@keyframes fall-316{38.028%{transform:translate(19.8831vw,38.028vh) scale(.9084)}to{transform:translate(23.882vw,100vh) scale(.9084)}}.snow:nth-child(317){opacity:.8902;transform:translate(60.0692vw,-10px) scale(.3025);animation:fall-317 27s -11s linear infinite}@keyframes fall-317{34.016%{transform:translate(54.5815vw,34.016vh) scale(.3025)}to{transform:translate(57.32535vw,100vh) scale(.3025)}}.snow:nth-child(318){opacity:1.158;transform:translate(61.5567vw,-10px) scale(.3863);animation:fall-318 12s -19s linear infinite}@keyframes fall-318{38.724%{transform:translate(64.3071vw,38.724vh) scale(.3863)}to{transform:translate(62.9319vw,100vh) scale(.3863)}}.snow:nth-child(319){opacity:1.332;transform:translate(3.1921vw,-10px) scale(.5381);animation:fall-319 29s -4s linear infinite}@keyframes fall-319{37.64%{transform:translate(-3.6059vw,37.64vh) scale(.5381)}to{transform:translate(-.2069vw,100vh) scale(.5381)}}.snow:nth-child(320){opacity:.6348;transform:translate(37.7794vw,-10px) scale(.4828);animation:fall-320 25s -4s linear infinite}@keyframes fall-320{67.235%{transform:translate(45.9909vw,67.235vh) scale(.4828)}to{transform:translate(41.88515vw,100vh) scale(.4828)}}.snow:nth-child(321){opacity:1.5636;transform:translate(39.425vw,-10px) scale(.414);animation:fall-321 14s -16s linear infinite}@keyframes fall-321{33.724%{transform:translate(48.8409vw,33.724vh) scale(.414)}to{transform:translate(44.13295vw,100vh) scale(.414)}}.snow:nth-child(322){opacity:.119;transform:translate(62.3888vw,-10px) scale(.2185);animation:fall-322 18s -30s linear infinite}@keyframes fall-322{63.205%{transform:translate(57.4379vw,63.205vh) scale(.2185)}to{transform:translate(59.91335vw,100vh) scale(.2185)}}.snow:nth-child(323){opacity:1.9228;transform:translate(56.9725vw,-10px) scale(.0964);animation:fall-323 16s -9s linear infinite}@keyframes fall-323{39.291%{transform:translate(60.1545vw,39.291vh) scale(.0964)}to{transform:translate(58.5635vw,100vh) scale(.0964)}}.snow:nth-child(324){opacity:1.1146;transform:translate(92.5509vw,-10px) scale(.2813);animation:fall-324 25s -23s linear infinite}@keyframes fall-324{56.898%{transform:translate(95.589vw,56.898vh) scale(.2813)}to{transform:translate(94.06995vw,100vh) scale(.2813)}}.snow:nth-child(325){opacity:1.187;transform:translate(81.6886vw,-10px) scale(.9222);animation:fall-325 18s -9s linear infinite}@keyframes fall-325{76.048%{transform:translate(79.0412vw,76.048vh) scale(.9222)}to{transform:translate(80.3649vw,100vh) scale(.9222)}}.snow:nth-child(326){opacity:.0338;transform:translate(45.9212vw,-10px) scale(.8662);animation:fall-326 20s -26s linear infinite}@keyframes fall-326{48.161%{transform:translate(46.6685vw,48.161vh) scale(.8662)}to{transform:translate(46.29485vw,100vh) scale(.8662)}}.snow:nth-child(327){opacity:1.8262;transform:translate(17.0185vw,-10px) scale(.3672);animation:fall-327 12s -16s linear infinite}@keyframes fall-327{61.895%{transform:translate(24.1008vw,61.895vh) scale(.3672)}to{transform:translate(20.55965vw,100vh) scale(.3672)}}.snow:nth-child(328){opacity:1.9908;transform:translate(14.2651vw,-10px) scale(.7862);animation:fall-328 15s -24s linear infinite}@keyframes fall-328{35.426%{transform:translate(19.2434vw,35.426vh) scale(.7862)}to{transform:translate(16.75425vw,100vh) scale(.7862)}}.snow:nth-child(329){opacity:.0594;transform:translate(18.7384vw,-10px) scale(.8915);animation:fall-329 30s -26s linear infinite}@keyframes fall-329{53.925%{transform:translate(25.3003vw,53.925vh) scale(.8915)}to{transform:translate(22.01935vw,100vh) scale(.8915)}}.snow:nth-child(330){opacity:1.223;transform:translate(73.8608vw,-10px) scale(.356);animation:fall-330 25s -29s linear infinite}@keyframes fall-330{62.528%{transform:translate(80.1361vw,62.528vh) scale(.356)}to{transform:translate(76.99845vw,100vh) scale(.356)}}.snow:nth-child(331){opacity:1.6736;transform:translate(58.0571vw,-10px) scale(.6247);animation:fall-331 15s -3s linear infinite}@keyframes fall-331{67.871%{transform:translate(52.5253vw,67.871vh) scale(.6247)}to{transform:translate(55.2912vw,100vh) scale(.6247)}}.snow:nth-child(332){opacity:1.1868;transform:translate(25.626vw,-10px) scale(.6982);animation:fall-332 15s -5s linear infinite}@keyframes fall-332{61.46%{transform:translate(16.7665vw,61.46vh) scale(.6982)}to{transform:translate(21.19625vw,100vh) scale(.6982)}}.snow:nth-child(333){opacity:.7408;transform:translate(59.6451vw,-10px) scale(.8092);animation:fall-333 27s -22s linear infinite}@keyframes fall-333{57.666%{transform:translate(56.8525vw,57.666vh) scale(.8092)}to{transform:translate(58.2488vw,100vh) scale(.8092)}}.snow:nth-child(334){opacity:.3338;transform:translate(38.1353vw,-10px) scale(.6408);animation:fall-334 12s -4s linear infinite}@keyframes fall-334{56.27%{transform:translate(36.7977vw,56.27vh) scale(.6408)}to{transform:translate(37.4665vw,100vh) scale(.6408)}}.snow:nth-child(335){opacity:1.0828;transform:translate(62.3164vw,-10px) scale(.9371);animation:fall-335 30s -22s linear infinite}@keyframes fall-335{76.991%{transform:translate(55.675vw,76.991vh) scale(.9371)}to{transform:translate(58.9957vw,100vh) scale(.9371)}}.snow:nth-child(336){opacity:1.149;transform:translate(68.5246vw,-10px) scale(.8128);animation:fall-336 28s -1s linear infinite}@keyframes fall-336{58.236%{transform:translate(69.1279vw,58.236vh) scale(.8128)}to{transform:translate(68.82625vw,100vh) scale(.8128)}}.snow:nth-child(337){opacity:1.821;transform:translate(54.9132vw,-10px) scale(.499);animation:fall-337 19s -22s linear infinite}@keyframes fall-337{53.619%{transform:translate(62.0438vw,53.619vh) scale(.499)}to{transform:translate(58.4785vw,100vh) scale(.499)}}.snow:nth-child(338){opacity:1.3932;transform:translate(93.0813vw,-10px) scale(.0091);animation:fall-338 13s -14s linear infinite}@keyframes fall-338{38.968%{transform:translate(95.3259vw,38.968vh) scale(.0091)}to{transform:translate(94.2036vw,100vh) scale(.0091)}}.snow:nth-child(339){opacity:.2824;transform:translate(97.1185vw,-10px) scale(.7371);animation:fall-339 19s -17s linear infinite}@keyframes fall-339{69.281%{transform:translate(93.929vw,69.281vh) scale(.7371)}to{transform:translate(95.52375vw,100vh) scale(.7371)}}.snow:nth-child(340){opacity:.0716;transform:translate(16.5647vw,-10px) scale(.3729);animation:fall-340 21s -10s linear infinite}@keyframes fall-340{46.534%{transform:translate(10.7393vw,46.534vh) scale(.3729)}to{transform:translate(13.652vw,100vh) scale(.3729)}}.snow:nth-child(341){opacity:1.719;transform:translate(71.1288vw,-10px) scale(.0716);animation:fall-341 18s -22s linear infinite}@keyframes fall-341{33.311%{transform:translate(80.7462vw,33.311vh) scale(.0716)}to{transform:translate(75.9375vw,100vh) scale(.0716)}}.snow:nth-child(342){opacity:1.7662;transform:translate(63.0034vw,-10px) scale(.1606);animation:fall-342 29s -9s linear infinite}@keyframes fall-342{50.29%{transform:translate(71.133vw,50.29vh) scale(.1606)}to{transform:translate(67.0682vw,100vh) scale(.1606)}}.snow:nth-child(343){opacity:.3672;transform:translate(92.0249vw,-10px) scale(.5755);animation:fall-343 28s -26s linear infinite}@keyframes fall-343{66.355%{transform:translate(87.1992vw,66.355vh) scale(.5755)}to{transform:translate(89.61205vw,100vh) scale(.5755)}}.snow:nth-child(344){opacity:1.4178;transform:translate(32.9899vw,-10px) scale(.4696);animation:fall-344 26s -13s linear infinite}@keyframes fall-344{71.603%{transform:translate(39.6147vw,71.603vh) scale(.4696)}to{transform:translate(36.3023vw,100vh) scale(.4696)}}.snow:nth-child(345){opacity:.3254;transform:translate(72.4247vw,-10px) scale(.7986);animation:fall-345 27s -18s linear infinite}@keyframes fall-345{55.41%{transform:translate(73.9317vw,55.41vh) scale(.7986)}to{transform:translate(73.1782vw,100vh) scale(.7986)}}.snow:nth-child(346){opacity:1.7436;transform:translate(58.3696vw,-10px) scale(.9027);animation:fall-346 28s -16s linear infinite}@keyframes fall-346{74.503%{transform:translate(50.3201vw,74.503vh) scale(.9027)}to{transform:translate(54.34485vw,100vh) scale(.9027)}}.snow:nth-child(347){opacity:1.1812;transform:translate(3.6787vw,-10px) scale(.1617);animation:fall-347 14s -6s linear infinite}@keyframes fall-347{46.547%{transform:translate(-3.0167vw,46.547vh) scale(.1617)}to{transform:translate(.331vw,100vh) scale(.1617)}}.snow:nth-child(348){opacity:.0616;transform:translate(44.2108vw,-10px) scale(.7927);animation:fall-348 16s -29s linear infinite}@keyframes fall-348{30.609%{transform:translate(41.7143vw,30.609vh) scale(.7927)}to{transform:translate(42.96255vw,100vh) scale(.7927)}}.snow:nth-child(349){opacity:.1992;transform:translate(86.4496vw,-10px) scale(.1037);animation:fall-349 30s -25s linear infinite}@keyframes fall-349{62.376%{transform:translate(94.601vw,62.376vh) scale(.1037)}to{transform:translate(90.5253vw,100vh) scale(.1037)}}.snow:nth-child(350){opacity:.206;transform:translate(41.3882vw,-10px) scale(.4275);animation:fall-350 11s -1s linear infinite}@keyframes fall-350{62.317%{transform:translate(47.2598vw,62.317vh) scale(.4275)}to{transform:translate(44.324vw,100vh) scale(.4275)}}.snow:nth-child(351){opacity:.3474;transform:translate(71.2086vw,-10px) scale(.0947);animation:fall-351 17s -16s linear infinite}@keyframes fall-351{60.552%{transform:translate(62.5971vw,60.552vh) scale(.0947)}to{transform:translate(66.90285vw,100vh) scale(.0947)}}.snow:nth-child(352){opacity:1.14;transform:translate(58.402vw,-10px) scale(.687);animation:fall-352 24s -7s linear infinite}@keyframes fall-352{69.085%{transform:translate(56.5145vw,69.085vh) scale(.687)}to{transform:translate(57.45825vw,100vh) scale(.687)}}.snow:nth-child(353){opacity:1.4228;transform:translate(81.9063vw,-10px) scale(.4251);animation:fall-353 24s -13s linear infinite}@keyframes fall-353{53.551%{transform:translate(82.5992vw,53.551vh) scale(.4251)}to{transform:translate(82.25275vw,100vh) scale(.4251)}}.snow:nth-child(354){opacity:1.382;transform:translate(88.0072vw,-10px) scale(.1961);animation:fall-354 30s -17s linear infinite}@keyframes fall-354{68.106%{transform:translate(87.8928vw,68.106vh) scale(.1961)}to{transform:translate(87.95vw,100vh) scale(.1961)}}.snow:nth-child(355){opacity:1.542;transform:translate(46.9542vw,-10px) scale(.7746);animation:fall-355 14s -8s linear infinite}@keyframes fall-355{57.042%{transform:translate(43.1098vw,57.042vh) scale(.7746)}to{transform:translate(45.032vw,100vh) scale(.7746)}}.snow:nth-child(356){opacity:.7356;transform:translate(83.9713vw,-10px) scale(.1146);animation:fall-356 30s -29s linear infinite}@keyframes fall-356{48.022%{transform:translate(76.4548vw,48.022vh) scale(.1146)}to{transform:translate(80.21305vw,100vh) scale(.1146)}}.snow:nth-child(357){opacity:.2936;transform:translate(.7326vw,-10px) scale(.6453);animation:fall-357 12s -27s linear infinite}@keyframes fall-357{74.375%{transform:translate(.8751vw,74.375vh) scale(.6453)}to{transform:translate(.80385vw,100vh) scale(.6453)}}.snow:nth-child(358){opacity:1.6112;transform:translate(40.6862vw,-10px) scale(.3339);animation:fall-358 10s -29s linear infinite}@keyframes fall-358{42.639%{transform:translate(31.706vw,42.639vh) scale(.3339)}to{transform:translate(36.1961vw,100vh) scale(.3339)}}.snow:nth-child(359){opacity:.2888;transform:translate(70.3079vw,-10px) scale(.6204);animation:fall-359 26s -19s linear infinite}@keyframes fall-359{68.312%{transform:translate(65.0485vw,68.312vh) scale(.6204)}to{transform:translate(67.6782vw,100vh) scale(.6204)}}.snow:nth-child(360){opacity:.2012;transform:translate(53.1662vw,-10px) scale(.9012);animation:fall-360 28s -28s linear infinite}@keyframes fall-360{71.936%{transform:translate(49.2699vw,71.936vh) scale(.9012)}to{transform:translate(51.21805vw,100vh) scale(.9012)}}.snow:nth-child(361){opacity:.1124;transform:translate(39.7633vw,-10px) scale(.6871);animation:fall-361 24s -29s linear infinite}@keyframes fall-361{39.601%{transform:translate(35.7976vw,39.601vh) scale(.6871)}to{transform:translate(37.78045vw,100vh) scale(.6871)}}.snow:nth-child(362){opacity:1.4134;transform:translate(28.2175vw,-10px) scale(.651);animation:fall-362 22s -17s linear infinite}@keyframes fall-362{54.515%{transform:translate(36.3055vw,54.515vh) scale(.651)}to{transform:translate(32.2615vw,100vh) scale(.651)}}.snow:nth-child(363){opacity:.4488;transform:translate(35.0431vw,-10px) scale(.5089);animation:fall-363 26s -6s linear infinite}@keyframes fall-363{66.761%{transform:translate(35.8092vw,66.761vh) scale(.5089)}to{transform:translate(35.42615vw,100vh) scale(.5089)}}.snow:nth-child(364){opacity:1.782;transform:translate(63.6198vw,-10px) scale(.5851);animation:fall-364 15s -15s linear infinite}@keyframes fall-364{40.481%{transform:translate(72.5342vw,40.481vh) scale(.5851)}to{transform:translate(68.077vw,100vh) scale(.5851)}}.snow:nth-child(365){opacity:1.9588;transform:translate(73.8432vw,-10px) scale(.6008);animation:fall-365 24s -4s linear infinite}@keyframes fall-365{68.973%{transform:translate(74.7466vw,68.973vh) scale(.6008)}to{transform:translate(74.2949vw,100vh) scale(.6008)}}.snow:nth-child(366){opacity:.2568;transform:translate(55.481vw,-10px) scale(.3946);animation:fall-366 24s -27s linear infinite}@keyframes fall-366{38.586%{transform:translate(54.6461vw,38.586vh) scale(.3946)}to{transform:translate(55.06355vw,100vh) scale(.3946)}}.snow:nth-child(367){opacity:1.8968;transform:translate(29.3724vw,-10px) scale(.7918);animation:fall-367 25s -22s linear infinite}@keyframes fall-367{48.55%{transform:translate(35.0379vw,48.55vh) scale(.7918)}to{transform:translate(32.20515vw,100vh) scale(.7918)}}.snow:nth-child(368){opacity:1.0844;transform:translate(.8485vw,-10px) scale(.2382);animation:fall-368 10s -9s linear infinite}@keyframes fall-368{76.275%{transform:translate(5.1649vw,76.275vh) scale(.2382)}to{transform:translate(3.0067vw,100vh) scale(.2382)}}.snow:nth-child(369){opacity:1.0604;transform:translate(57.7975vw,-10px) scale(.5444);animation:fall-369 30s -25s linear infinite}@keyframes fall-369{34.814%{transform:translate(65.9845vw,34.814vh) scale(.5444)}to{transform:translate(61.891vw,100vh) scale(.5444)}}.snow:nth-child(370){opacity:1.8402;transform:translate(13.9175vw,-10px) scale(.4063);animation:fall-370 24s -16s linear infinite}@keyframes fall-370{55.702%{transform:translate(14.044vw,55.702vh) scale(.4063)}to{transform:translate(13.98075vw,100vh) scale(.4063)}}.snow:nth-child(371){opacity:1.6278;transform:translate(95.0766vw,-10px) scale(.8219);animation:fall-371 17s -24s linear infinite}@keyframes fall-371{75.673%{transform:translate(90.5361vw,75.673vh) scale(.8219)}to{transform:translate(92.80635vw,100vh) scale(.8219)}}.snow:nth-child(372){opacity:.7476;transform:translate(72.3842vw,-10px) scale(.2299);animation:fall-372 20s -29s linear infinite}@keyframes fall-372{58.753%{transform:translate(68.4971vw,58.753vh) scale(.2299)}to{transform:translate(70.44065vw,100vh) scale(.2299)}}.snow:nth-child(373){opacity:.5776;transform:translate(57.587vw,-10px) scale(.0544);animation:fall-373 21s -8s linear infinite}@keyframes fall-373{52.203%{transform:translate(66.9205vw,52.203vh) scale(.0544)}to{transform:translate(62.25375vw,100vh) scale(.0544)}}.snow:nth-child(374){opacity:1.783;transform:translate(47.6944vw,-10px) scale(.077);animation:fall-374 21s -13s linear infinite}@keyframes fall-374{53.434%{transform:translate(44.9097vw,53.434vh) scale(.077)}to{transform:translate(46.30205vw,100vh) scale(.077)}}.snow:nth-child(375){opacity:.0838;transform:translate(50.9604vw,-10px) scale(.297);animation:fall-375 25s -30s linear infinite}@keyframes fall-375{55.29%{transform:translate(41.0223vw,55.29vh) scale(.297)}to{transform:translate(45.99135vw,100vh) scale(.297)}}.snow:nth-child(376){opacity:1.9178;transform:translate(39.4803vw,-10px) scale(.4396);animation:fall-376 25s -29s linear infinite}@keyframes fall-376{32.675%{transform:translate(42.6428vw,32.675vh) scale(.4396)}to{transform:translate(41.06155vw,100vh) scale(.4396)}}.snow:nth-child(377){opacity:.2562;transform:translate(32.1915vw,-10px) scale(.0506);animation:fall-377 23s -26s linear infinite}@keyframes fall-377{53.024%{transform:translate(24.6844vw,53.024vh) scale(.0506)}to{transform:translate(28.43795vw,100vh) scale(.0506)}}.snow:nth-child(378){opacity:.212;transform:translate(85.1081vw,-10px) scale(.7336);animation:fall-378 23s -16s linear infinite}@keyframes fall-378{71.355%{transform:translate(85.5432vw,71.355vh) scale(.7336)}to{transform:translate(85.32565vw,100vh) scale(.7336)}}.snow:nth-child(379){opacity:.8198;transform:translate(48.3101vw,-10px) scale(.8267);animation:fall-379 28s -4s linear infinite}@keyframes fall-379{41.847%{transform:translate(53.1854vw,41.847vh) scale(.8267)}to{transform:translate(50.74775vw,100vh) scale(.8267)}}.snow:nth-child(380){opacity:1.6996;transform:translate(74.9337vw,-10px) scale(.9195);animation:fall-380 10s -4s linear infinite}@keyframes fall-380{41.611%{transform:translate(70.8053vw,41.611vh) scale(.9195)}to{transform:translate(72.8695vw,100vh) scale(.9195)}}.snow:nth-child(381){opacity:.658;transform:translate(2.9124vw,-10px) scale(.1904);animation:fall-381 17s -5s linear infinite}@keyframes fall-381{44.592%{transform:translate(1.1116vw,44.592vh) scale(.1904)}to{transform:translate(2.012vw,100vh) scale(.1904)}}.snow:nth-child(382){opacity:.2762;transform:translate(81.3205vw,-10px) scale(.1355);animation:fall-382 19s -7s linear infinite}@keyframes fall-382{68.997%{transform:translate(88.9589vw,68.997vh) scale(.1355)}to{transform:translate(85.1397vw,100vh) scale(.1355)}}.snow:nth-child(383){opacity:1.2768;transform:translate(60.1558vw,-10px) scale(.8262);animation:fall-383 26s -30s linear infinite}@keyframes fall-383{55.374%{transform:translate(59.4565vw,55.374vh) scale(.8262)}to{transform:translate(59.80615vw,100vh) scale(.8262)}}.snow:nth-child(384){opacity:.2324;transform:translate(55.6655vw,-10px) scale(.3423);animation:fall-384 16s -28s linear infinite}@keyframes fall-384{63.767%{transform:translate(63.9709vw,63.767vh) scale(.3423)}to{transform:translate(59.8182vw,100vh) scale(.3423)}}.snow:nth-child(385){opacity:1.0286;transform:translate(47.4555vw,-10px) scale(.7979);animation:fall-385 30s -23s linear infinite}@keyframes fall-385{53.238%{transform:translate(39.8372vw,53.238vh) scale(.7979)}to{transform:translate(43.64635vw,100vh) scale(.7979)}}.snow:nth-child(386){opacity:.9586;transform:translate(75.9019vw,-10px) scale(.0677);animation:fall-386 22s -20s linear infinite}@keyframes fall-386{46.517%{transform:translate(76.9137vw,46.517vh) scale(.0677)}to{transform:translate(76.4078vw,100vh) scale(.0677)}}.snow:nth-child(387){opacity:.719;transform:translate(73.9011vw,-10px) scale(.5027);animation:fall-387 26s -18s linear infinite}@keyframes fall-387{44.471%{transform:translate(81.8452vw,44.471vh) scale(.5027)}to{transform:translate(77.87315vw,100vh) scale(.5027)}}.snow:nth-child(388){opacity:1.6236;transform:translate(60.1897vw,-10px) scale(.246);animation:fall-388 27s -24s linear infinite}@keyframes fall-388{56.225%{transform:translate(69.0542vw,56.225vh) scale(.246)}to{transform:translate(64.62195vw,100vh) scale(.246)}}.snow:nth-child(389){opacity:.9936;transform:translate(56.5672vw,-10px) scale(.0404);animation:fall-389 25s -20s linear infinite}@keyframes fall-389{48.17%{transform:translate(58.3484vw,48.17vh) scale(.0404)}to{transform:translate(57.4578vw,100vh) scale(.0404)}}.snow:nth-child(390){opacity:.7094;transform:translate(62.9277vw,-10px) scale(.9688);animation:fall-390 28s -30s linear infinite}@keyframes fall-390{77.788%{transform:translate(58.7245vw,77.788vh) scale(.9688)}to{transform:translate(60.8261vw,100vh) scale(.9688)}}.snow:nth-child(391){opacity:.7166;transform:translate(55.9927vw,-10px) scale(.1228);animation:fall-391 24s -24s linear infinite}@keyframes fall-391{77.085%{transform:translate(59.8726vw,77.085vh) scale(.1228)}to{transform:translate(57.93265vw,100vh) scale(.1228)}}.snow:nth-child(392){opacity:1.28;transform:translate(76.1695vw,-10px) scale(.0163);animation:fall-392 19s -1s linear infinite}@keyframes fall-392{33.177%{transform:translate(66.9816vw,33.177vh) scale(.0163)}to{transform:translate(71.57555vw,100vh) scale(.0163)}}.snow:nth-child(393){opacity:1.6784;transform:translate(21.6273vw,-10px) scale(.7002);animation:fall-393 14s -11s linear infinite}@keyframes fall-393{73.495%{transform:translate(25.5439vw,73.495vh) scale(.7002)}to{transform:translate(23.5856vw,100vh) scale(.7002)}}.snow:nth-child(394){opacity:.598;transform:translate(96.7659vw,-10px) scale(.2006);animation:fall-394 28s -9s linear infinite}@keyframes fall-394{66.028%{transform:translate(87.2416vw,66.028vh) scale(.2006)}to{transform:translate(92.00375vw,100vh) scale(.2006)}}.snow:nth-child(395){opacity:1.5838;transform:translate(59.6739vw,-10px) scale(.1612);animation:fall-395 22s -29s linear infinite}@keyframes fall-395{76.214%{transform:translate(51.6529vw,76.214vh) scale(.1612)}to{transform:translate(55.6634vw,100vh) scale(.1612)}}.snow:nth-child(396){opacity:1.1844;transform:translate(66.1045vw,-10px) scale(.32);animation:fall-396 20s -30s linear infinite}@keyframes fall-396{66.221%{transform:translate(66.2294vw,66.221vh) scale(.32)}to{transform:translate(66.16695vw,100vh) scale(.32)}}.snow:nth-child(397){opacity:.9004;transform:translate(48.7735vw,-10px) scale(.859);animation:fall-397 11s -28s linear infinite}@keyframes fall-397{42.698%{transform:translate(55.1174vw,42.698vh) scale(.859)}to{transform:translate(51.94545vw,100vh) scale(.859)}}.snow:nth-child(398){opacity:.2826;transform:translate(55.3538vw,-10px) scale(.7514);animation:fall-398 26s -3s linear infinite}@keyframes fall-398{69.217%{transform:translate(60.2996vw,69.217vh) scale(.7514)}to{transform:translate(57.8267vw,100vh) scale(.7514)}}.snow:nth-child(399){opacity:.5844;transform:translate(82.4257vw,-10px) scale(.9224);animation:fall-399 22s -21s linear infinite}@keyframes fall-399{58.899%{transform:translate(78.7628vw,58.899vh) scale(.9224)}to{transform:translate(80.59425vw,100vh) scale(.9224)}}.snow:nth-child(400){opacity:1.5812;transform:translate(31.9832vw,-10px) scale(.248);animation:fall-400 25s -8s linear infinite}@keyframes fall-400{37.811%{transform:translate(31.8382vw,37.811vh) scale(.248)}to{transform:translate(31.9107vw,100vh) scale(.248)}}\n"] }]
25
25
  }], ctorParameters: function () { return [{ type: i1.TokenService }, { type: i1.AppState }, { type: i2.Router }]; } });
26
26
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NvcmUvc3JjL2xpYi9hcHAuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vcHJvamVjdHMvY29yZS9zcmMvbGliL2FwcC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxVQUFVO0FBQ1YsT0FBTyxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFZN0QsTUFBTSxPQUFPLFlBQVk7SUFJckIsWUFBb0IsR0FBaUIsRUFBUyxNQUFnQixFQUFVLE1BQWM7UUFBbEUsUUFBRyxHQUFILEdBQUcsQ0FBYztRQUFTLFdBQU0sR0FBTixNQUFNLENBQVU7UUFBVSxXQUFNLEdBQU4sTUFBTSxDQUFRO1FBRi9FLFVBQUssR0FBYSxFQUFFLENBQUM7UUFJeEIsSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLGFBQWE7WUFDekIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDLEVBQUU7Z0JBQ3hCLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBRTNCLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLFlBQVk7WUFDdEIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxPQUFPLEVBQUUsRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDdEUsQ0FBQzs7eUdBWlEsWUFBWTs2RkFBWixZQUFZLGdEQ2J6QixpS0FHK0I7MkZEVWxCLFlBQVk7a0JBTnhCLFNBQVM7K0JBQ0ksVUFBVSxpQkFDTCxpQkFBaUIsQ0FBQyxJQUFJIiwic291cmNlc0NvbnRlbnQiOlsiLy8gQW5ndWxhclxyXG5pbXBvcnQgeyBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSBcIkBhbmd1bGFyL3JvdXRlclwiO1xyXG5cclxuLy8gQ29uZmlndXJhemlvbmlcclxuIGltcG9ydCB7IEFwcFN0YXRlLCBUb2tlblNlcnZpY2UgfSBmcm9tIFwiQGVzZmFlbnphL2NvcmUvc2VydmljZXNcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gICAgc2VsZWN0b3I6ICdhcHAtcm9vdCcsXHJcbiAgICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxyXG4gICAgc3R5bGVVcmxzOiBbXCIuL2FwcC5jb21wb25lbnQuc2Nzc1wiXSxcclxuICAgIHRlbXBsYXRlVXJsOiAnLi9hcHAuY29tcG9uZW50Lmh0bWwnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBBcHBDb21wb25lbnQge1xyXG5cclxuICAgIHB1YmxpYyBzbm93czogbnVtYmVyW10gPSBbXTtcclxuXHJcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIGJ0czogVG9rZW5TZXJ2aWNlLCBwdWJsaWMgX3N0YXRlOiBBcHBTdGF0ZSwgcHJpdmF0ZSByb3V0ZXI6IFJvdXRlcikge1xyXG5cclxuICAgICAgICBpZiAodGhpcy5fc3RhdGUuY2hyaXN0bWFzVGltZSlcclxuICAgICAgICAgICAgZm9yIChsZXQgaSA9IDA7IGkgPCA0MDA7IGkrKylcclxuICAgICAgICAgICAgICAgIHRoaXMuc25vd3MucHVzaChpKTtcclxuXHJcbiAgICAgICAgaWYgKCF0aGlzLmJ0cy5hY2NvdW50U2NvcGUpXHJcbiAgICAgICAgICAgIHRoaXMucm91dGVyLm5hdmlnYXRlKFtcImxvZ2luXCIsIHsgZnJvbVVybDogdGhpcy5yb3V0ZXIudXJsIH1dKTtcclxuICAgIH1cclxufSIsIjxuZy1jb250YWluZXIgKm5nSWY9XCJfc3RhdGUuY2hyaXN0bWFzVGltZVwiPlxyXG4gICAgPGRpdiAqbmdGb3I9XCJsZXQgaSBvZiBzbm93c1wiIGNsYXNzPVwic25vd1wiPjwvZGl2PlxyXG48L25nLWNvbnRhaW5lcj5cclxuPHJvdXRlci1vdXRsZXQ+PC9yb3V0ZXItb3V0bGV0PiJdfQ==