@esfaenza/core 15.2.178 → 15.2.180-beta1

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 (110) hide show
  1. package/assets/fontawesome/css/all.css +27093 -0
  2. package/assets/fontawesome/css/all.min.css +9 -0
  3. package/assets/fontawesome/css/brands.css +1522 -0
  4. package/assets/fontawesome/css/brands.min.css +6 -0
  5. package/assets/fontawesome/css/duotone.css +12491 -0
  6. package/assets/fontawesome/css/duotone.min.css +6 -0
  7. package/assets/fontawesome/css/fontawesome.css +12984 -0
  8. package/assets/fontawesome/css/fontawesome.min.css +9 -0
  9. package/assets/fontawesome/css/light.css +19 -0
  10. package/assets/fontawesome/css/light.min.css +6 -0
  11. package/assets/fontawesome/css/regular.css +19 -0
  12. package/assets/fontawesome/css/regular.min.css +6 -0
  13. package/assets/fontawesome/css/sharp-regular.css +19 -0
  14. package/assets/fontawesome/css/sharp-regular.min.css +6 -0
  15. package/assets/fontawesome/css/sharp-solid.css +19 -0
  16. package/assets/fontawesome/css/sharp-solid.min.css +6 -0
  17. package/assets/fontawesome/css/solid.css +19 -0
  18. package/assets/fontawesome/css/solid.min.css +6 -0
  19. package/assets/fontawesome/css/svg-with-js.css +638 -0
  20. package/assets/fontawesome/css/svg-with-js.min.css +6 -0
  21. package/assets/fontawesome/css/thin.css +19 -0
  22. package/assets/fontawesome/css/thin.min.css +6 -0
  23. package/assets/fontawesome/css/v4-font-face.css +26 -0
  24. package/assets/fontawesome/css/v4-font-face.min.css +6 -0
  25. package/assets/fontawesome/css/v4-shims.css +2194 -0
  26. package/assets/fontawesome/css/v4-shims.min.css +6 -0
  27. package/assets/fontawesome/css/v5-font-face.css +34 -0
  28. package/assets/fontawesome/css/v5-font-face.min.css +6 -0
  29. package/assets/fontawesome/webfonts/fa-brands-400.ttf +0 -0
  30. package/assets/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
  31. package/assets/fontawesome/webfonts/fa-duotone-900.ttf +0 -0
  32. package/assets/fontawesome/webfonts/fa-duotone-900.woff2 +0 -0
  33. package/assets/fontawesome/webfonts/fa-light-300.ttf +0 -0
  34. package/assets/fontawesome/webfonts/fa-light-300.woff2 +0 -0
  35. package/assets/fontawesome/webfonts/fa-regular-400.ttf +0 -0
  36. package/assets/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
  37. package/assets/fontawesome/webfonts/fa-sharp-regular-400.ttf +0 -0
  38. package/assets/fontawesome/webfonts/fa-sharp-regular-400.woff2 +0 -0
  39. package/assets/fontawesome/webfonts/fa-sharp-solid-900.ttf +0 -0
  40. package/assets/fontawesome/webfonts/fa-sharp-solid-900.woff2 +0 -0
  41. package/assets/fontawesome/webfonts/fa-solid-900.ttf +0 -0
  42. package/assets/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
  43. package/assets/fontawesome/webfonts/fa-thin-100.ttf +0 -0
  44. package/assets/fontawesome/webfonts/fa-thin-100.woff2 +0 -0
  45. package/assets/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
  46. package/assets/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
  47. package/components/breadcrumb/breadcrumb.component.d.ts +12 -8
  48. package/components/components.module.d.ts +2 -1
  49. package/components/labeled-span/labeled-span.component.d.ts +11 -0
  50. package/components/navbar/navbar.component.d.ts +4 -14
  51. package/components/public-api.d.ts +2 -0
  52. package/components/sidebar/sidebar.component.d.ts +25 -5
  53. package/components/sidebar/sidebar.component.loc.d.ts +8 -0
  54. package/components/user_infos/user_infos.component.d.ts +48 -0
  55. package/components/user_infos/user_infos.component.loc.d.ts +8 -0
  56. package/domain/models/user/UpdateAccountRecoverySettingsDto.d.ts +5 -0
  57. package/domain/models/user/UpdatePasswordDto.d.ts +9 -0
  58. package/domain/models/user/UpdateProfilePictureDto.d.ts +4 -0
  59. package/domain/models/user/UserAccount.d.ts +14 -0
  60. package/domain/public-api.d.ts +4 -0
  61. package/esm2020/components/breadcrumb/breadcrumb.component.mjs +51 -42
  62. package/esm2020/components/components.module.mjs +8 -4
  63. package/esm2020/components/labeled-span/labeled-span.component.mjs +25 -0
  64. package/esm2020/components/navbar/navbar.component.loc.mjs +2 -1
  65. package/esm2020/components/navbar/navbar.component.mjs +12 -55
  66. package/esm2020/components/page/pages.component.mjs +3 -3
  67. package/esm2020/components/public-api.mjs +3 -1
  68. package/esm2020/components/sidebar/sidebar.component.loc.mjs +39 -0
  69. package/esm2020/components/sidebar/sidebar.component.mjs +100 -14
  70. package/esm2020/components/user_infos/user_infos.component.loc.mjs +43 -0
  71. package/esm2020/components/user_infos/user_infos.component.mjs +141 -0
  72. package/esm2020/domain/models/user/UpdateAccountRecoverySettingsDto.mjs +7 -0
  73. package/esm2020/domain/models/user/UpdatePasswordDto.mjs +11 -0
  74. package/esm2020/domain/models/user/UpdateProfilePictureDto.mjs +6 -0
  75. package/esm2020/domain/models/user/UserAccount.mjs +3 -0
  76. package/esm2020/domain/public-api.mjs +5 -1
  77. package/esm2020/lib/app.component.mjs +2 -2
  78. package/esm2020/lib/core.module.mjs +11 -5
  79. package/esm2020/services/classes/preferences/user/app.userpreferences.base.mjs +74 -0
  80. package/esm2020/services/public-api.mjs +2 -1
  81. package/fesm2015/esfaenza-core-components.mjs +427 -148
  82. package/fesm2015/esfaenza-core-components.mjs.map +1 -1
  83. package/fesm2015/esfaenza-core-domain.mjs +28 -1
  84. package/fesm2015/esfaenza-core-domain.mjs.map +1 -1
  85. package/fesm2015/esfaenza-core-services.mjs +85 -5
  86. package/fesm2015/esfaenza-core-services.mjs.map +1 -1
  87. package/fesm2015/esfaenza-core.mjs +12 -6
  88. package/fesm2015/esfaenza-core.mjs.map +1 -1
  89. package/fesm2020/esfaenza-core-components.mjs +416 -147
  90. package/fesm2020/esfaenza-core-components.mjs.map +1 -1
  91. package/fesm2020/esfaenza-core-domain.mjs +28 -1
  92. package/fesm2020/esfaenza-core-domain.mjs.map +1 -1
  93. package/fesm2020/esfaenza-core-services.mjs +70 -5
  94. package/fesm2020/esfaenza-core-services.mjs.map +1 -1
  95. package/fesm2020/esfaenza-core.mjs +12 -6
  96. package/fesm2020/esfaenza-core.mjs.map +1 -1
  97. package/lib/core.module.d.ts +2 -1
  98. package/package.json +1 -1
  99. package/services/classes/preferences/user/app.userpreferences.base.d.ts +25 -0
  100. package/services/public-api.d.ts +1 -0
  101. package/theme/styles/_variables.scss +1 -0
  102. package/theme/styles/skins/enuma.scss +61 -0
  103. package/theme/styles/skins/jace.scss +63 -0
  104. package/assets/fonts/fontawesome/FontAwesome.otf +0 -0
  105. package/assets/fonts/fontawesome/fontawesome-webfont.eot +0 -0
  106. package/assets/fonts/fontawesome/fontawesome-webfont.svg +0 -2671
  107. package/assets/fonts/fontawesome/fontawesome-webfont.ttf +0 -0
  108. package/assets/fonts/fontawesome/fontawesome-webfont.woff +0 -0
  109. package/assets/fonts/fontawesome/fontawesome-webfont.woff2 +0 -0
  110. package/assets/styles/font-awesome.min.css +0 -2929
@@ -22,9 +22,9 @@ export class AppComponent {
22
22
  }
23
23
  }
24
24
  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 });
25
- AppComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AppComponent, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows; trackBy: snowTrackBy\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: [".table-borderless>tbody>tr>td,.table-borderless>tbody>tr>th,.table-borderless>tfoot>tr>td,.table-borderless>tfoot>tr>th,.table-borderless>thead>tr>td,.table-borderless>thead>tr>th{border:none}.table,.table-responsive{margin-bottom:5px}a:hover,a:focus{text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}*{outline:none!important}.modal-title{width:calc(100% - 20px)}.progress{height:20px}.progress.progress-primary[value]::-webkit-progress-value{background-color:#024a88}.progress.progress-primary[value]::-moz-progress-bar{background-color:#024a88}.progress.progress-primary[value]::-ms-fill{background-color:#024a88}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#024a88}}.progress.progress-info[value]::-webkit-progress-value{background-color:#248dad}.progress.progress-info[value]::-moz-progress-bar{background-color:#248dad}.progress.progress-info[value]::-ms-fill{background-color:#248dad}@media screen and (min-width: 0\\fffd){.progress.progress-info .progress-bar{background-color:#248dad}}.progress.progress-danger[value]::-webkit-progress-value{background-color:#bf1725}.progress.progress-danger[value]::-moz-progress-bar{background-color:#bf1725}.progress.progress-danger[value]::-ms-fill{background-color:#bf1725}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#bf1725}}.progress.progress-success[value]::-webkit-progress-value{background-color:#2d922d}.progress.progress-success[value]::-moz-progress-bar{background-color:#2d922d}.progress.progress-success[value]::-ms-fill{background-color:#2d922d}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#2d922d}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#f79a17}.progress.progress-warning[value]::-moz-progress-bar{background-color:#f79a17}.progress.progress-warning[value]::-ms-fill{background-color:#f79a17}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#f79a17}}.progress[value]::-moz-progress-bar{border-radius:0}.progress[value]::-webkit-progress-value{border-radius:0}.progress[value=\"100\"]::-moz-progress-bar{border-radius:0}.progress[value=\"100\"]::-webkit-progress-value{border-radius:0}.progress-xs{height:7px}.progress-sm{height:10px}.progress-md{height:13px}.progress-bar-info-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem;background-color:#5bc0de!important}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800px){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.wizard-step-container{background-color:#fff;box-shadow:#63636333 0 2px 8px;padding:10px}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.app-search-background{z-index:9999;margin-top:60px;padding:0;background-color:#0000004d;width:100vw;height:calc(100vh - 60px)}.app-search-result-box{height:calc(100% - 35px);overflow:hidden;margin:20px}.app-search-card{margin-top:2px;margin-bottom:10px;padding:15px;background-color:#fff;box-shadow:#06182c66 0 0 0 2px,#06182ca6 0 4px 6px -1px,#ffffff14 0 1px inset}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.mat-chip-list-wrapper input.mat-input-element,.mat-chip-list-wrapper .mat-standard-chip{margin:1px 4px 4px!important;padding-top:0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:1.1522;transform:translate(48.3104vw,-10px) scale(.3928);animation:fall-1 24s -11s linear infinite}@keyframes fall-1{30.418%{transform:translate(46.5585vw,30.418vh) scale(.3928)}to{transform:translate(47.43445vw,99vh) scale(.3928)}}.snow:nth-child(2){opacity:.1554;transform:translate(26.7352vw,-10px) scale(.9299);animation:fall-2 17s -7s linear infinite}@keyframes fall-2{50.76%{transform:translate(19.03vw,50.76vh) scale(.9299)}to{transform:translate(22.8826vw,99vh) scale(.9299)}}.snow:nth-child(3){opacity:.157;transform:translate(88.3835vw,-10px) scale(.5274);animation:fall-3 21s -15s linear infinite}@keyframes fall-3{45.231%{transform:translate(79.9109vw,45.231vh) scale(.5274)}to{transform:translate(84.1472vw,99vh) scale(.5274)}}.snow:nth-child(4){opacity:.2874;transform:translate(54.1152vw,-10px) scale(.8277);animation:fall-4 29s -30s linear infinite}@keyframes fall-4{56.992%{transform:translate(57.9718vw,56.992vh) scale(.8277)}to{transform:translate(56.0435vw,99vh) scale(.8277)}}.snow:nth-child(5){opacity:1.2178;transform:translate(93.4998vw,-10px) scale(.8644);animation:fall-5 13s -18s linear infinite}@keyframes fall-5{47.988%{transform:translate(98.0703vw,47.988vh) scale(.8644)}to{transform:translate(95.78505vw,99vh) scale(.8644)}}.snow:nth-child(6){opacity:1.4366;transform:translate(39.9709vw,-10px) scale(.8924);animation:fall-6 17s -21s linear infinite}@keyframes fall-6{75.741%{transform:translate(45.1546vw,75.741vh) scale(.8924)}to{transform:translate(42.56275vw,99vh) scale(.8924)}}.snow:nth-child(7){opacity:.431;transform:translate(65.8019vw,-10px) scale(.802);animation:fall-7 19s -22s linear infinite}@keyframes fall-7{72.104%{transform:translate(56.2494vw,72.104vh) scale(.802)}to{transform:translate(61.02565vw,99vh) scale(.802)}}.snow:nth-child(8){opacity:1.0438;transform:translate(68.1858vw,-10px) scale(.3819);animation:fall-8 20s -3s linear infinite}@keyframes fall-8{37.983%{transform:translate(68.6721vw,37.983vh) scale(.3819)}to{transform:translate(68.42895vw,99vh) scale(.3819)}}.snow:nth-child(9){opacity:1.5536;transform:translate(82.9527vw,-10px) scale(.2538);animation:fall-9 24s -5s linear infinite}@keyframes fall-9{51.05%{transform:translate(84.9895vw,51.05vh) scale(.2538)}to{transform:translate(83.9711vw,99vh) scale(.2538)}}.snow:nth-child(10){opacity:1.7506;transform:translate(83.7375vw,-10px) scale(.7123);animation:fall-10 10s -28s linear infinite}@keyframes fall-10{78.691%{transform:translate(87.1321vw,78.691vh) scale(.7123)}to{transform:translate(85.4348vw,99vh) scale(.7123)}}.snow:nth-child(11){opacity:1.6962;transform:translate(3.9315vw,-10px) scale(.1841);animation:fall-11 26s -19s linear infinite}@keyframes fall-11{53.906%{transform:translate(11.4142vw,53.906vh) scale(.1841)}to{transform:translate(7.67285vw,99vh) scale(.1841)}}.snow:nth-child(12){opacity:1.146;transform:translate(1.1283vw,-10px) scale(.5742);animation:fall-12 13s -21s linear infinite}@keyframes fall-12{42.643%{transform:translate(5.6891vw,42.643vh) scale(.5742)}to{transform:translate(3.4087vw,99vh) scale(.5742)}}.snow:nth-child(13){opacity:.9056;transform:translate(94.685vw,-10px) scale(.9916);animation:fall-13 14s -3s linear infinite}@keyframes fall-13{79.363%{transform:translate(101.9001vw,79.363vh) scale(.9916)}to{transform:translate(98.29255vw,99vh) scale(.9916)}}.snow:nth-child(14){opacity:1.7766;transform:translate(58.6406vw,-10px) scale(.2073);animation:fall-14 22s -18s linear infinite}@keyframes fall-14{57.583%{transform:translate(61.8622vw,57.583vh) scale(.2073)}to{transform:translate(60.2514vw,99vh) scale(.2073)}}.snow:nth-child(15){opacity:.1888;transform:translate(50.3502vw,-10px) scale(.7433);animation:fall-15 21s -21s linear infinite}@keyframes fall-15{41.18%{transform:translate(46.8944vw,41.18vh) scale(.7433)}to{transform:translate(48.6223vw,99vh) scale(.7433)}}.snow:nth-child(16){opacity:.361;transform:translate(11.8861vw,-10px) scale(.6658);animation:fall-16 19s -3s linear infinite}@keyframes fall-16{32.569%{transform:translate(11.059vw,32.569vh) scale(.6658)}to{transform:translate(11.47255vw,99vh) scale(.6658)}}.snow:nth-child(17){opacity:.9744;transform:translate(30.1994vw,-10px) scale(.7729);animation:fall-17 16s -13s linear infinite}@keyframes fall-17{44.006%{transform:translate(38.0889vw,44.006vh) scale(.7729)}to{transform:translate(34.14415vw,99vh) scale(.7729)}}.snow:nth-child(18){opacity:.9874;transform:translate(20.5917vw,-10px) scale(.722);animation:fall-18 28s -14s linear infinite}@keyframes fall-18{71.53%{transform:translate(16.4459vw,71.53vh) scale(.722)}to{transform:translate(18.5188vw,99vh) scale(.722)}}.snow:nth-child(19){opacity:.543;transform:translate(21.2197vw,-10px) scale(.4942);animation:fall-19 27s -8s linear infinite}@keyframes fall-19{41.209%{transform:translate(29.9417vw,41.209vh) scale(.4942)}to{transform:translate(25.5807vw,99vh) scale(.4942)}}.snow:nth-child(20){opacity:1.319;transform:translate(24.0267vw,-10px) scale(.2591);animation:fall-20 29s -21s linear infinite}@keyframes fall-20{56.688%{transform:translate(28.0243vw,56.688vh) scale(.2591)}to{transform:translate(26.0255vw,99vh) scale(.2591)}}.snow:nth-child(21){opacity:.1964;transform:translate(64.5216vw,-10px) scale(.263);animation:fall-21 19s -23s linear infinite}@keyframes fall-21{32.297%{transform:translate(62.1756vw,32.297vh) scale(.263)}to{transform:translate(63.3486vw,99vh) scale(.263)}}.snow:nth-child(22){opacity:1.0358;transform:translate(30.5498vw,-10px) scale(.8772);animation:fall-22 21s -28s linear infinite}@keyframes fall-22{43.411%{transform:translate(32.0021vw,43.411vh) scale(.8772)}to{transform:translate(31.27595vw,99vh) scale(.8772)}}.snow:nth-child(23){opacity:.9126;transform:translate(59.521vw,-10px) scale(.3973);animation:fall-23 21s -6s linear infinite}@keyframes fall-23{45.739%{transform:translate(69.0883vw,45.739vh) scale(.3973)}to{transform:translate(64.30465vw,99vh) scale(.3973)}}.snow:nth-child(24){opacity:1.3582;transform:translate(51.1093vw,-10px) scale(.7519);animation:fall-24 27s -10s linear infinite}@keyframes fall-24{62.982%{transform:translate(57.8843vw,62.982vh) scale(.7519)}to{transform:translate(54.4968vw,99vh) scale(.7519)}}.snow:nth-child(25){opacity:.491;transform:translate(25.0564vw,-10px) scale(.4811);animation:fall-25 28s -25s linear infinite}@keyframes fall-25{32.549%{transform:translate(27.833vw,32.549vh) scale(.4811)}to{transform:translate(26.4447vw,99vh) scale(.4811)}}.snow:nth-child(26){opacity:.242;transform:translate(13.8648vw,-10px) scale(.2813);animation:fall-26 17s -5s linear infinite}@keyframes fall-26{48.23%{transform:translate(12.1778vw,48.23vh) scale(.2813)}to{transform:translate(13.0213vw,99vh) scale(.2813)}}.snow:nth-child(27){opacity:.4054;transform:translate(92.9105vw,-10px) scale(.3138);animation:fall-27 14s -29s linear infinite}@keyframes fall-27{79.923%{transform:translate(95.7033vw,79.923vh) scale(.3138)}to{transform:translate(94.3069vw,99vh) scale(.3138)}}.snow:nth-child(28){opacity:1.3866;transform:translate(68.3287vw,-10px) scale(.3726);animation:fall-28 16s -14s linear infinite}@keyframes fall-28{43.106%{transform:translate(58.7081vw,43.106vh) scale(.3726)}to{transform:translate(63.5184vw,99vh) scale(.3726)}}.snow:nth-child(29){opacity:.5866;transform:translate(83.8578vw,-10px) scale(.2089);animation:fall-29 10s -2s linear infinite}@keyframes fall-29{52.794%{transform:translate(80.2858vw,52.794vh) scale(.2089)}to{transform:translate(82.0718vw,99vh) scale(.2089)}}.snow:nth-child(30){opacity:1.5486;transform:translate(2.7451vw,-10px) scale(.1488);animation:fall-30 22s -27s linear infinite}@keyframes fall-30{37.521%{transform:translate(6.9465vw,37.521vh) scale(.1488)}to{transform:translate(4.8458vw,99vh) scale(.1488)}}.snow:nth-child(31){opacity:.4624;transform:translate(73.5279vw,-10px) scale(.5251);animation:fall-31 27s -10s linear infinite}@keyframes fall-31{38.256%{transform:translate(77.7694vw,38.256vh) scale(.5251)}to{transform:translate(75.64865vw,99vh) scale(.5251)}}.snow:nth-child(32){opacity:.7806;transform:translate(27.5516vw,-10px) scale(.9322);animation:fall-32 22s -5s linear infinite}@keyframes fall-32{58.273%{transform:translate(33.6186vw,58.273vh) scale(.9322)}to{transform:translate(30.5851vw,99vh) scale(.9322)}}.snow:nth-child(33){opacity:1.6558;transform:translate(69.0513vw,-10px) scale(.4687);animation:fall-33 18s -1s linear infinite}@keyframes fall-33{77.299%{transform:translate(67.1728vw,77.299vh) scale(.4687)}to{transform:translate(68.11205vw,99vh) scale(.4687)}}.snow:nth-child(34){opacity:1.1038;transform:translate(21.4009vw,-10px) scale(.5017);animation:fall-34 27s -11s linear infinite}@keyframes fall-34{49.821%{transform:translate(15.3759vw,49.821vh) scale(.5017)}to{transform:translate(18.3884vw,99vh) scale(.5017)}}.snow:nth-child(35){opacity:.373;transform:translate(48.6993vw,-10px) scale(.0978);animation:fall-35 13s -18s linear infinite}@keyframes fall-35{66.658%{transform:translate(47.8145vw,66.658vh) scale(.0978)}to{transform:translate(48.2569vw,99vh) scale(.0978)}}.snow:nth-child(36){opacity:.1698;transform:translate(42.2082vw,-10px) scale(.9922);animation:fall-36 22s -18s linear infinite}@keyframes fall-36{65.719%{transform:translate(51.2266vw,65.719vh) scale(.9922)}to{transform:translate(46.7174vw,99vh) scale(.9922)}}.snow:nth-child(37){opacity:.1912;transform:translate(26.8803vw,-10px) scale(.246);animation:fall-37 11s -16s linear infinite}@keyframes fall-37{47.219%{transform:translate(24.5698vw,47.219vh) scale(.246)}to{transform:translate(25.72505vw,99vh) scale(.246)}}.snow:nth-child(38){opacity:1.2688;transform:translate(96.1793vw,-10px) scale(.7542);animation:fall-38 17s -10s linear infinite}@keyframes fall-38{50.888%{transform:translate(94.0429vw,50.888vh) scale(.7542)}to{transform:translate(95.1111vw,99vh) scale(.7542)}}.snow:nth-child(39){opacity:.4594;transform:translate(74.2647vw,-10px) scale(.1899);animation:fall-39 22s -16s linear infinite}@keyframes fall-39{56.499%{transform:translate(77.94vw,56.499vh) scale(.1899)}to{transform:translate(76.10235vw,99vh) scale(.1899)}}.snow:nth-child(40){opacity:1.032;transform:translate(18.0048vw,-10px) scale(.5468);animation:fall-40 27s -30s linear infinite}@keyframes fall-40{66.276%{transform:translate(22.4331vw,66.276vh) scale(.5468)}to{transform:translate(20.21895vw,99vh) scale(.5468)}}.snow:nth-child(41){opacity:1.1648;transform:translate(30.0016vw,-10px) scale(.9162);animation:fall-41 24s -4s linear infinite}@keyframes fall-41{45.426%{transform:translate(22.0337vw,45.426vh) scale(.9162)}to{transform:translate(26.01765vw,99vh) scale(.9162)}}.snow:nth-child(42){opacity:.066;transform:translate(20.4141vw,-10px) scale(.6281);animation:fall-42 11s -30s linear infinite}@keyframes fall-42{33.03%{transform:translate(29.6856vw,33.03vh) scale(.6281)}to{transform:translate(25.04985vw,99vh) scale(.6281)}}.snow:nth-child(43){opacity:.5852;transform:translate(62.257vw,-10px) scale(.2433);animation:fall-43 12s -5s linear infinite}@keyframes fall-43{62.04%{transform:translate(70.1261vw,62.04vh) scale(.2433)}to{transform:translate(66.19155vw,99vh) scale(.2433)}}.snow:nth-child(44){opacity:.4292;transform:translate(71.0373vw,-10px) scale(.757);animation:fall-44 13s -30s linear infinite}@keyframes fall-44{39.146%{transform:translate(63.0756vw,39.146vh) scale(.757)}to{transform:translate(67.05645vw,99vh) scale(.757)}}.snow:nth-child(45){opacity:.7922;transform:translate(25.7605vw,-10px) scale(.9622);animation:fall-45 21s -5s linear infinite}@keyframes fall-45{53.276%{transform:translate(32.0081vw,53.276vh) scale(.9622)}to{transform:translate(28.8843vw,99vh) scale(.9622)}}.snow:nth-child(46){opacity:.8258;transform:translate(72.5345vw,-10px) scale(.4303);animation:fall-46 10s -25s linear infinite}@keyframes fall-46{64.211%{transform:translate(71.5217vw,64.211vh) scale(.4303)}to{transform:translate(72.0281vw,99vh) scale(.4303)}}.snow:nth-child(47){opacity:.6964;transform:translate(79.7641vw,-10px) scale(.3255);animation:fall-47 20s -18s linear infinite}@keyframes fall-47{58.268%{transform:translate(82.1884vw,58.268vh) scale(.3255)}to{transform:translate(80.97625vw,99vh) scale(.3255)}}.snow:nth-child(48){opacity:.7822;transform:translate(98.6849vw,-10px) scale(.2708);animation:fall-48 18s -14s linear infinite}@keyframes fall-48{55.756%{transform:translate(98.9692vw,55.756vh) scale(.2708)}to{transform:translate(98.82705vw,99vh) scale(.2708)}}.snow:nth-child(49){opacity:.905;transform:translate(47.8207vw,-10px) scale(.9684);animation:fall-49 23s -24s linear infinite}@keyframes fall-49{54.31%{transform:translate(45.6828vw,54.31vh) scale(.9684)}to{transform:translate(46.75175vw,99vh) scale(.9684)}}.snow:nth-child(50){opacity:.6538;transform:translate(21.0023vw,-10px) scale(.1277);animation:fall-50 18s -8s linear infinite}@keyframes fall-50{57.433%{transform:translate(28.0577vw,57.433vh) scale(.1277)}to{transform:translate(24.53vw,99vh) scale(.1277)}}.snow:nth-child(51){opacity:1.7414;transform:translate(59.2954vw,-10px) scale(.8614);animation:fall-51 13s -8s linear infinite}@keyframes fall-51{30.14%{transform:translate(58.5889vw,30.14vh) scale(.8614)}to{transform:translate(58.94215vw,99vh) scale(.8614)}}.snow:nth-child(52){opacity:.3256;transform:translate(73.7025vw,-10px) scale(.2007);animation:fall-52 28s -23s linear infinite}@keyframes fall-52{52.155%{transform:translate(82.9893vw,52.155vh) scale(.2007)}to{transform:translate(78.3459vw,99vh) scale(.2007)}}.snow:nth-child(53){opacity:.266;transform:translate(94.8914vw,-10px) scale(.0408);animation:fall-53 16s -6s linear infinite}@keyframes fall-53{72.345%{transform:translate(89.8377vw,72.345vh) scale(.0408)}to{transform:translate(92.36455vw,99vh) scale(.0408)}}.snow:nth-child(54){opacity:.4466;transform:translate(13.4453vw,-10px) scale(.4803);animation:fall-54 19s -22s linear infinite}@keyframes fall-54{46.444%{transform:translate(6.2704vw,46.444vh) scale(.4803)}to{transform:translate(9.85785vw,99vh) scale(.4803)}}.snow:nth-child(55){opacity:.66;transform:translate(75.4568vw,-10px) scale(.2663);animation:fall-55 23s -19s linear infinite}@keyframes fall-55{53.843%{transform:translate(70.8019vw,53.843vh) scale(.2663)}to{transform:translate(73.12935vw,99vh) scale(.2663)}}.snow:nth-child(56){opacity:1.4868;transform:translate(21.4896vw,-10px) scale(.2261);animation:fall-56 17s -2s linear infinite}@keyframes fall-56{34.721%{transform:translate(31.113vw,34.721vh) scale(.2261)}to{transform:translate(26.3013vw,99vh) scale(.2261)}}.snow:nth-child(57){opacity:.0478;transform:translate(96.5447vw,-10px) scale(.6093);animation:fall-57 17s -16s linear infinite}@keyframes fall-57{58.867%{transform:translate(92.2695vw,58.867vh) scale(.6093)}to{transform:translate(94.4071vw,99vh) scale(.6093)}}.snow:nth-child(58){opacity:.6696;transform:translate(54.6886vw,-10px) scale(.0146);animation:fall-58 12s -24s linear infinite}@keyframes fall-58{59.774%{transform:translate(64.2682vw,59.774vh) scale(.0146)}to{transform:translate(59.4784vw,99vh) scale(.0146)}}.snow:nth-child(59){opacity:1.3854;transform:translate(30.1697vw,-10px) scale(.884);animation:fall-59 21s -11s linear infinite}@keyframes fall-59{58.836%{transform:translate(29.4678vw,58.836vh) scale(.884)}to{transform:translate(29.81875vw,99vh) scale(.884)}}.snow:nth-child(60){opacity:1.703;transform:translate(57.1214vw,-10px) scale(.1053);animation:fall-60 21s -7s linear infinite}@keyframes fall-60{69.612%{transform:translate(48.9878vw,69.612vh) scale(.1053)}to{transform:translate(53.0546vw,99vh) scale(.1053)}}.snow:nth-child(61){opacity:1.3822;transform:translate(35.0726vw,-10px) scale(.9854);animation:fall-61 26s -27s linear infinite}@keyframes fall-61{64.968%{transform:translate(30.9467vw,64.968vh) scale(.9854)}to{transform:translate(33.00965vw,99vh) scale(.9854)}}.snow:nth-child(62){opacity:.5118;transform:translate(68.1059vw,-10px) scale(.9932);animation:fall-62 28s -5s linear infinite}@keyframes fall-62{59.411%{transform:translate(65.4574vw,59.411vh) scale(.9932)}to{transform:translate(66.78165vw,99vh) scale(.9932)}}.snow:nth-child(63){opacity:1.5932;transform:translate(50.1126vw,-10px) scale(.4335);animation:fall-63 13s -2s linear infinite}@keyframes fall-63{57.941%{transform:translate(47.5253vw,57.941vh) scale(.4335)}to{transform:translate(48.81895vw,99vh) scale(.4335)}}.snow:nth-child(64){opacity:1.6236;transform:translate(60.5782vw,-10px) scale(.5329);animation:fall-64 21s -14s linear infinite}@keyframes fall-64{40.772%{transform:translate(55.51vw,40.772vh) scale(.5329)}to{transform:translate(58.0441vw,99vh) scale(.5329)}}.snow:nth-child(65){opacity:1.4324;transform:translate(54.6575vw,-10px) scale(.8408);animation:fall-65 15s -20s linear infinite}@keyframes fall-65{50.823%{transform:translate(58.9373vw,50.823vh) scale(.8408)}to{transform:translate(56.7974vw,99vh) scale(.8408)}}.snow:nth-child(66){opacity:.6944;transform:translate(78.0905vw,-10px) scale(.4652);animation:fall-66 27s -6s linear infinite}@keyframes fall-66{43.357%{transform:translate(82.0784vw,43.357vh) scale(.4652)}to{transform:translate(80.08445vw,99vh) scale(.4652)}}.snow:nth-child(67){opacity:.898;transform:translate(58.0392vw,-10px) scale(.7084);animation:fall-67 23s -5s linear infinite}@keyframes fall-67{77.815%{transform:translate(48.865vw,77.815vh) scale(.7084)}to{transform:translate(53.4521vw,99vh) scale(.7084)}}.snow:nth-child(68){opacity:1.2494;transform:translate(99.1203vw,-10px) scale(.18);animation:fall-68 11s -3s linear infinite}@keyframes fall-68{31.913%{transform:translate(96.221vw,31.913vh) scale(.18)}to{transform:translate(97.67065vw,99vh) scale(.18)}}.snow:nth-child(69){opacity:1.8364;transform:translate(83.5201vw,-10px) scale(.4476);animation:fall-69 28s -18s linear infinite}@keyframes fall-69{66.157%{transform:translate(87.5562vw,66.157vh) scale(.4476)}to{transform:translate(85.53815vw,99vh) scale(.4476)}}.snow:nth-child(70){opacity:.3908;transform:translate(77.3299vw,-10px) scale(.099);animation:fall-70 11s -26s linear infinite}@keyframes fall-70{64.691%{transform:translate(81.2462vw,64.691vh) scale(.099)}to{transform:translate(79.28805vw,99vh) scale(.099)}}.snow:nth-child(71){opacity:1.6122;transform:translate(15.1229vw,-10px) scale(.0121);animation:fall-71 16s -12s linear infinite}@keyframes fall-71{33.411%{transform:translate(8.0126vw,33.411vh) scale(.0121)}to{transform:translate(11.56775vw,99vh) scale(.0121)}}.snow:nth-child(72){opacity:.6692;transform:translate(50.8658vw,-10px) scale(.232);animation:fall-72 10s -4s linear infinite}@keyframes fall-72{61.186%{transform:translate(57.5676vw,61.186vh) scale(.232)}to{transform:translate(54.2167vw,99vh) scale(.232)}}.snow:nth-child(73){opacity:1.3854;transform:translate(65.7584vw,-10px) scale(.6936);animation:fall-73 25s -20s linear infinite}@keyframes fall-73{33.581%{transform:translate(72.9824vw,33.581vh) scale(.6936)}to{transform:translate(69.3704vw,99vh) scale(.6936)}}.snow:nth-child(74){opacity:.8812;transform:translate(55.3988vw,-10px) scale(.0899);animation:fall-74 23s -11s linear infinite}@keyframes fall-74{65.877%{transform:translate(50.4315vw,65.877vh) scale(.0899)}to{transform:translate(52.91515vw,99vh) scale(.0899)}}.snow:nth-child(75){opacity:1.8462;transform:translate(80.1392vw,-10px) scale(.6939);animation:fall-75 23s -22s linear infinite}@keyframes fall-75{50.103%{transform:translate(82.0686vw,50.103vh) scale(.6939)}to{transform:translate(81.1039vw,99vh) scale(.6939)}}.snow:nth-child(76){opacity:.2758;transform:translate(59.6207vw,-10px) scale(.4964);animation:fall-76 25s -3s linear infinite}@keyframes fall-76{51.64%{transform:translate(49.6392vw,51.64vh) scale(.4964)}to{transform:translate(54.62995vw,99vh) scale(.4964)}}.snow:nth-child(77){opacity:1.7822;transform:translate(97.2463vw,-10px) scale(.022);animation:fall-77 30s -24s linear infinite}@keyframes fall-77{70.348%{transform:translate(90.3645vw,70.348vh) scale(.022)}to{transform:translate(93.8054vw,99vh) scale(.022)}}.snow:nth-child(78){opacity:.3786;transform:translate(35.6404vw,-10px) scale(.5263);animation:fall-78 12s -30s linear infinite}@keyframes fall-78{58.346%{transform:translate(37.5933vw,58.346vh) scale(.5263)}to{transform:translate(36.61685vw,99vh) scale(.5263)}}.snow:nth-child(79){opacity:1.1244;transform:translate(96.1256vw,-10px) scale(.1365);animation:fall-79 18s -24s linear infinite}@keyframes fall-79{59.668%{transform:translate(92.6521vw,59.668vh) scale(.1365)}to{transform:translate(94.38885vw,99vh) scale(.1365)}}.snow:nth-child(80){opacity:1.95;transform:translate(27.4192vw,-10px) scale(.2875);animation:fall-80 16s -8s linear infinite}@keyframes fall-80{30.954%{transform:translate(28.2663vw,30.954vh) scale(.2875)}to{transform:translate(27.84275vw,99vh) scale(.2875)}}.snow:nth-child(81){opacity:1.2576;transform:translate(84.0536vw,-10px) scale(.5725);animation:fall-81 22s -2s linear infinite}@keyframes fall-81{79.83%{transform:translate(76.9516vw,79.83vh) scale(.5725)}to{transform:translate(80.5026vw,99vh) scale(.5725)}}.snow:nth-child(82){opacity:1.688;transform:translate(97.0725vw,-10px) scale(.8458);animation:fall-82 15s -21s linear infinite}@keyframes fall-82{61.913%{transform:translate(103.5897vw,61.913vh) scale(.8458)}to{transform:translate(100.3311vw,99vh) scale(.8458)}}.snow:nth-child(83){opacity:.0364;transform:translate(24.7582vw,-10px) scale(.3067);animation:fall-83 10s -26s linear infinite}@keyframes fall-83{44.636%{transform:translate(16.5729vw,44.636vh) scale(.3067)}to{transform:translate(20.66555vw,99vh) scale(.3067)}}.snow:nth-child(84){opacity:.5234;transform:translate(64.0466vw,-10px) scale(.9929);animation:fall-84 28s -2s linear infinite}@keyframes fall-84{53.187%{transform:translate(58.3837vw,53.187vh) scale(.9929)}to{transform:translate(61.21515vw,99vh) scale(.9929)}}.snow:nth-child(85){opacity:.9658;transform:translate(42.7265vw,-10px) scale(.0598);animation:fall-85 16s -23s linear infinite}@keyframes fall-85{32.725%{transform:translate(37.6394vw,32.725vh) scale(.0598)}to{transform:translate(40.18295vw,99vh) scale(.0598)}}.snow:nth-child(86){opacity:.4918;transform:translate(30.2351vw,-10px) scale(.0507);animation:fall-86 29s -5s linear infinite}@keyframes fall-86{67.876%{transform:translate(31.1098vw,67.876vh) scale(.0507)}to{transform:translate(30.67245vw,99vh) scale(.0507)}}.snow:nth-child(87){opacity:.1982;transform:translate(45.807vw,-10px) scale(.252);animation:fall-87 23s -22s linear infinite}@keyframes fall-87{65.542%{transform:translate(40.7293vw,65.542vh) scale(.252)}to{transform:translate(43.26815vw,99vh) scale(.252)}}.snow:nth-child(88){opacity:.8268;transform:translate(22.6271vw,-10px) scale(.1058);animation:fall-88 12s -8s linear infinite}@keyframes fall-88{74.025%{transform:translate(22.4667vw,74.025vh) scale(.1058)}to{transform:translate(22.5469vw,99vh) scale(.1058)}}.snow:nth-child(89){opacity:.6068;transform:translate(36.1895vw,-10px) scale(.689);animation:fall-89 16s -25s linear infinite}@keyframes fall-89{63.766%{transform:translate(30.2854vw,63.766vh) scale(.689)}to{transform:translate(33.23745vw,99vh) scale(.689)}}.snow:nth-child(90){opacity:1.6358;transform:translate(64.9255vw,-10px) scale(.9103);animation:fall-90 21s -25s linear infinite}@keyframes fall-90{50.41%{transform:translate(63.4896vw,50.41vh) scale(.9103)}to{transform:translate(64.20755vw,99vh) scale(.9103)}}.snow:nth-child(91){opacity:.1344;transform:translate(66.6222vw,-10px) scale(.1971);animation:fall-91 27s -25s linear infinite}@keyframes fall-91{31.886%{transform:translate(58.1877vw,31.886vh) scale(.1971)}to{transform:translate(62.40495vw,99vh) scale(.1971)}}.snow:nth-child(92){opacity:.7848;transform:translate(99.3372vw,-10px) scale(.0021);animation:fall-92 23s -4s linear infinite}@keyframes fall-92{74.141%{transform:translate(101.68vw,74.141vh) scale(.0021)}to{transform:translate(100.5086vw,99vh) scale(.0021)}}.snow:nth-child(93){opacity:1.5224;transform:translate(91.1063vw,-10px) scale(.3706);animation:fall-93 28s -29s linear infinite}@keyframes fall-93{75.705%{transform:translate(92.8978vw,75.705vh) scale(.3706)}to{transform:translate(92.00205vw,99vh) scale(.3706)}}.snow:nth-child(94){opacity:1.4992;transform:translate(49.4237vw,-10px) scale(.4536);animation:fall-94 29s -29s linear infinite}@keyframes fall-94{35.517%{transform:translate(49.2269vw,35.517vh) scale(.4536)}to{transform:translate(49.3253vw,99vh) scale(.4536)}}.snow:nth-child(95){opacity:.2478;transform:translate(54.4248vw,-10px) scale(.4561);animation:fall-95 10s -4s linear infinite}@keyframes fall-95{44.406%{transform:translate(64.3571vw,44.406vh) scale(.4561)}to{transform:translate(59.39095vw,99vh) scale(.4561)}}.snow:nth-child(96){opacity:1.9848;transform:translate(15.0984vw,-10px) scale(.6563);animation:fall-96 28s -6s linear infinite}@keyframes fall-96{68.973%{transform:translate(14.8759vw,68.973vh) scale(.6563)}to{transform:translate(14.98715vw,99vh) scale(.6563)}}.snow:nth-child(97){opacity:.2014;transform:translate(78.6281vw,-10px) scale(.7398);animation:fall-97 27s -29s linear infinite}@keyframes fall-97{33.462%{transform:translate(85.661vw,33.462vh) scale(.7398)}to{transform:translate(82.14455vw,99vh) scale(.7398)}}.snow:nth-child(98){opacity:.2666;transform:translate(50.4702vw,-10px) scale(.0062);animation:fall-98 19s -25s linear infinite}@keyframes fall-98{32.48%{transform:translate(48.5905vw,32.48vh) scale(.0062)}to{transform:translate(49.53035vw,99vh) scale(.0062)}}.snow:nth-child(99){opacity:.373;transform:translate(13.1579vw,-10px) scale(.0636);animation:fall-99 13s -23s linear infinite}@keyframes fall-99{44.206%{transform:translate(6.3819vw,44.206vh) scale(.0636)}to{transform:translate(9.7699vw,99vh) scale(.0636)}}.snow:nth-child(100){opacity:1.2414;transform:translate(68.0682vw,-10px) scale(.0191);animation:fall-100 10s -27s linear infinite}@keyframes fall-100{77.527%{transform:translate(77.0394vw,77.527vh) scale(.0191)}to{transform:translate(72.5538vw,99vh) scale(.0191)}}.snow:nth-child(101){opacity:.2434;transform:translate(15.4401vw,-10px) scale(.8376);animation:fall-101 22s -11s linear infinite}@keyframes fall-101{66.167%{transform:translate(15.3769vw,66.167vh) scale(.8376)}to{transform:translate(15.4085vw,99vh) scale(.8376)}}.snow:nth-child(102){opacity:.8084;transform:translate(7.0597vw,-10px) scale(.0767);animation:fall-102 27s -20s linear infinite}@keyframes fall-102{73.229%{transform:translate(-2.7823vw,73.229vh) scale(.0767)}to{transform:translate(2.1387vw,99vh) scale(.0767)}}.snow:nth-child(103){opacity:.149;transform:translate(62.3916vw,-10px) scale(.1689);animation:fall-103 13s -24s linear infinite}@keyframes fall-103{61.038%{transform:translate(61.7603vw,61.038vh) scale(.1689)}to{transform:translate(62.07595vw,99vh) scale(.1689)}}.snow:nth-child(104){opacity:1.1192;transform:translate(70.7321vw,-10px) scale(.5246);animation:fall-104 27s -25s linear infinite}@keyframes fall-104{77.52%{transform:translate(70.2286vw,77.52vh) scale(.5246)}to{transform:translate(70.48035vw,99vh) scale(.5246)}}.snow:nth-child(105){opacity:1.8278;transform:translate(63.773vw,-10px) scale(.4129);animation:fall-105 20s -18s linear infinite}@keyframes fall-105{58.419%{transform:translate(61.1567vw,58.419vh) scale(.4129)}to{transform:translate(62.46485vw,99vh) scale(.4129)}}.snow:nth-child(106){opacity:1.592;transform:translate(13.4271vw,-10px) scale(.7112);animation:fall-106 17s -5s linear infinite}@keyframes fall-106{41.36%{transform:translate(15.8348vw,41.36vh) scale(.7112)}to{transform:translate(14.63095vw,99vh) scale(.7112)}}.snow:nth-child(107){opacity:.7322;transform:translate(4.5502vw,-10px) scale(.797);animation:fall-107 10s -1s linear infinite}@keyframes fall-107{71.259%{transform:translate(7.3053vw,71.259vh) scale(.797)}to{transform:translate(5.92775vw,99vh) scale(.797)}}.snow:nth-child(108){opacity:.542;transform:translate(32.0303vw,-10px) scale(.7465);animation:fall-108 18s -27s linear infinite}@keyframes fall-108{57.969%{transform:translate(40.3392vw,57.969vh) scale(.7465)}to{transform:translate(36.18475vw,99vh) scale(.7465)}}.snow:nth-child(109){opacity:.0246;transform:translate(70.6148vw,-10px) scale(.9301);animation:fall-109 18s -18s linear infinite}@keyframes fall-109{34.784%{transform:translate(73.3228vw,34.784vh) scale(.9301)}to{transform:translate(71.9688vw,99vh) scale(.9301)}}.snow:nth-child(110){opacity:1.8952;transform:translate(30.8075vw,-10px) scale(.4821);animation:fall-110 27s -8s linear infinite}@keyframes fall-110{35.605%{transform:translate(25.7254vw,35.605vh) scale(.4821)}to{transform:translate(28.26645vw,99vh) scale(.4821)}}.snow:nth-child(111){opacity:.1304;transform:translate(17.2681vw,-10px) scale(.6155);animation:fall-111 12s -2s linear infinite}@keyframes fall-111{61.69%{transform:translate(15.399vw,61.69vh) scale(.6155)}to{transform:translate(16.33355vw,99vh) scale(.6155)}}.snow:nth-child(112){opacity:.6492;transform:translate(15.2077vw,-10px) scale(.2513);animation:fall-112 24s -18s linear infinite}@keyframes fall-112{76.564%{transform:translate(7.9648vw,76.564vh) scale(.2513)}to{transform:translate(11.58625vw,99vh) scale(.2513)}}.snow:nth-child(113){opacity:1.3362;transform:translate(93.0761vw,-10px) scale(.7079);animation:fall-113 22s -23s linear infinite}@keyframes fall-113{66.981%{transform:translate(98.8723vw,66.981vh) scale(.7079)}to{transform:translate(95.9742vw,99vh) scale(.7079)}}.snow:nth-child(114){opacity:1.1656;transform:translate(68.2174vw,-10px) scale(.4965);animation:fall-114 13s -13s linear infinite}@keyframes fall-114{40.9%{transform:translate(72.1804vw,40.9vh) scale(.4965)}to{transform:translate(70.1989vw,99vh) scale(.4965)}}.snow:nth-child(115){opacity:.8524;transform:translate(.113vw,-10px) scale(.315);animation:fall-115 24s -24s linear infinite}@keyframes fall-115{59.95%{transform:translate(6.9683vw,59.95vh) scale(.315)}to{transform:translate(3.54065vw,99vh) scale(.315)}}.snow:nth-child(116){opacity:.2488;transform:translate(28.6059vw,-10px) scale(.1241);animation:fall-116 22s -6s linear infinite}@keyframes fall-116{34.129%{transform:translate(34.505vw,34.129vh) scale(.1241)}to{transform:translate(31.55545vw,99vh) scale(.1241)}}.snow:nth-child(117){opacity:.3696;transform:translate(30.6493vw,-10px) scale(.9343);animation:fall-117 15s -7s linear infinite}@keyframes fall-117{39.978%{transform:translate(21.2801vw,39.978vh) scale(.9343)}to{transform:translate(25.9647vw,99vh) scale(.9343)}}.snow:nth-child(118){opacity:1.6964;transform:translate(22.178vw,-10px) scale(.4501);animation:fall-118 16s -2s linear infinite}@keyframes fall-118{42.198%{transform:translate(17.1985vw,42.198vh) scale(.4501)}to{transform:translate(19.68825vw,99vh) scale(.4501)}}.snow:nth-child(119){opacity:1.3466;transform:translate(66.9777vw,-10px) scale(.4613);animation:fall-119 18s -11s linear infinite}@keyframes fall-119{49.424%{transform:translate(71.9853vw,49.424vh) scale(.4613)}to{transform:translate(69.4815vw,99vh) scale(.4613)}}.snow:nth-child(120){opacity:1.2366;transform:translate(91.3518vw,-10px) scale(.0335);animation:fall-120 25s -1s linear infinite}@keyframes fall-120{79.515%{transform:translate(91.2633vw,79.515vh) scale(.0335)}to{transform:translate(91.30755vw,99vh) scale(.0335)}}.snow:nth-child(121){opacity:.847;transform:translate(69.2419vw,-10px) scale(.6268);animation:fall-121 20s -20s linear infinite}@keyframes fall-121{43.739%{transform:translate(76.6207vw,43.739vh) scale(.6268)}to{transform:translate(72.9313vw,99vh) scale(.6268)}}.snow:nth-child(122){opacity:1.3674;transform:translate(10.4141vw,-10px) scale(.4572);animation:fall-122 27s -13s linear infinite}@keyframes fall-122{72.289%{transform:translate(12.5449vw,72.289vh) scale(.4572)}to{transform:translate(11.4795vw,99vh) scale(.4572)}}.snow:nth-child(123){opacity:.798;transform:translate(77.4682vw,-10px) scale(.4762);animation:fall-123 13s -3s linear infinite}@keyframes fall-123{68.007%{transform:translate(78.5914vw,68.007vh) scale(.4762)}to{transform:translate(78.0298vw,99vh) scale(.4762)}}.snow:nth-child(124){opacity:.7656;transform:translate(45.4181vw,-10px) scale(.7039);animation:fall-124 13s -25s linear infinite}@keyframes fall-124{76.278%{transform:translate(39.6218vw,76.278vh) scale(.7039)}to{transform:translate(42.51995vw,99vh) scale(.7039)}}.snow:nth-child(125){opacity:.817;transform:translate(53.2015vw,-10px) scale(.9369);animation:fall-125 13s -12s linear infinite}@keyframes fall-125{62.351%{transform:translate(45.2047vw,62.351vh) scale(.9369)}to{transform:translate(49.2031vw,99vh) scale(.9369)}}.snow:nth-child(126){opacity:1.2836;transform:translate(82.296vw,-10px) scale(.8899);animation:fall-126 26s -26s linear infinite}@keyframes fall-126{72.617%{transform:translate(76.3831vw,72.617vh) scale(.8899)}to{transform:translate(79.33955vw,99vh) scale(.8899)}}.snow:nth-child(127){opacity:.6482;transform:translate(28.3382vw,-10px) scale(.6399);animation:fall-127 13s -26s linear infinite}@keyframes fall-127{42.265%{transform:translate(33.9832vw,42.265vh) scale(.6399)}to{transform:translate(31.1607vw,99vh) scale(.6399)}}.snow:nth-child(128){opacity:.2442;transform:translate(2.9467vw,-10px) scale(.6072);animation:fall-128 12s -25s linear infinite}@keyframes fall-128{65.668%{transform:translate(-5.1653vw,65.668vh) scale(.6072)}to{transform:translate(-1.1093vw,99vh) scale(.6072)}}.snow:nth-child(129){opacity:.745;transform:translate(39.0125vw,-10px) scale(.7902);animation:fall-129 18s -17s linear infinite}@keyframes fall-129{70.367%{transform:translate(43.3202vw,70.367vh) scale(.7902)}to{transform:translate(41.16635vw,99vh) scale(.7902)}}.snow:nth-child(130){opacity:1.0706;transform:translate(14.3955vw,-10px) scale(.0362);animation:fall-130 10s -12s linear infinite}@keyframes fall-130{66.698%{transform:translate(23.6576vw,66.698vh) scale(.0362)}to{transform:translate(19.02655vw,99vh) scale(.0362)}}.snow:nth-child(131){opacity:.6224;transform:translate(94.074vw,-10px) scale(.046);animation:fall-131 29s -4s linear infinite}@keyframes fall-131{48.715%{transform:translate(103.6065vw,48.715vh) scale(.046)}to{transform:translate(98.84025vw,99vh) scale(.046)}}.snow:nth-child(132){opacity:.7654;transform:translate(37.7311vw,-10px) scale(.909);animation:fall-132 25s -11s linear infinite}@keyframes fall-132{74.926%{transform:translate(41.3391vw,74.926vh) scale(.909)}to{transform:translate(39.5351vw,99vh) scale(.909)}}.snow:nth-child(133){opacity:1.4632;transform:translate(10.6549vw,-10px) scale(.3192);animation:fall-133 25s -5s linear infinite}@keyframes fall-133{38.195%{transform:translate(3.7476vw,38.195vh) scale(.3192)}to{transform:translate(7.20125vw,99vh) scale(.3192)}}.snow:nth-child(134){opacity:.6894;transform:translate(58.8515vw,-10px) scale(.7543);animation:fall-134 16s -24s linear infinite}@keyframes fall-134{52.083%{transform:translate(51.1582vw,52.083vh) scale(.7543)}to{transform:translate(55.00485vw,99vh) scale(.7543)}}.snow:nth-child(135){opacity:.111;transform:translate(72.5712vw,-10px) scale(.6928);animation:fall-135 16s -2s linear infinite}@keyframes fall-135{51.845%{transform:translate(63.5277vw,51.845vh) scale(.6928)}to{transform:translate(68.04945vw,99vh) scale(.6928)}}.snow:nth-child(136){opacity:.7898;transform:translate(20.1971vw,-10px) scale(.4099);animation:fall-136 21s -4s linear infinite}@keyframes fall-136{60.396%{transform:translate(12.6423vw,60.396vh) scale(.4099)}to{transform:translate(16.4197vw,99vh) scale(.4099)}}.snow:nth-child(137){opacity:1.3616;transform:translate(54.825vw,-10px) scale(.2617);animation:fall-137 16s -9s linear infinite}@keyframes fall-137{33.084%{transform:translate(51.0728vw,33.084vh) scale(.2617)}to{transform:translate(52.9489vw,99vh) scale(.2617)}}.snow:nth-child(138){opacity:1.3394;transform:translate(81.4231vw,-10px) scale(.3427);animation:fall-138 14s -27s linear infinite}@keyframes fall-138{34.836%{transform:translate(80.1547vw,34.836vh) scale(.3427)}to{transform:translate(80.7889vw,99vh) scale(.3427)}}.snow:nth-child(139){opacity:1.329;transform:translate(74.8955vw,-10px) scale(.4358);animation:fall-139 14s -28s linear infinite}@keyframes fall-139{71.395%{transform:translate(69.4254vw,71.395vh) scale(.4358)}to{transform:translate(72.16045vw,99vh) scale(.4358)}}.snow:nth-child(140){opacity:1.933;transform:translate(35.8454vw,-10px) scale(.8301);animation:fall-140 10s -30s linear infinite}@keyframes fall-140{56.748%{transform:translate(37.677vw,56.748vh) scale(.8301)}to{transform:translate(36.7612vw,99vh) scale(.8301)}}.snow:nth-child(141){opacity:1.6992;transform:translate(90.1917vw,-10px) scale(.5824);animation:fall-141 29s -13s linear infinite}@keyframes fall-141{77.23%{transform:translate(91.8159vw,77.23vh) scale(.5824)}to{transform:translate(91.0038vw,99vh) scale(.5824)}}.snow:nth-child(142){opacity:.5772;transform:translate(54.8715vw,-10px) scale(.8865);animation:fall-142 12s -28s linear infinite}@keyframes fall-142{65.608%{transform:translate(48.3641vw,65.608vh) scale(.8865)}to{transform:translate(51.6178vw,99vh) scale(.8865)}}.snow:nth-child(143){opacity:1.006;transform:translate(24.951vw,-10px) scale(.7037);animation:fall-143 21s -12s linear infinite}@keyframes fall-143{51.903%{transform:translate(26.795vw,51.903vh) scale(.7037)}to{transform:translate(25.873vw,99vh) scale(.7037)}}.snow:nth-child(144){opacity:1.1712;transform:translate(24.8653vw,-10px) scale(.0566);animation:fall-144 28s -4s linear infinite}@keyframes fall-144{49.465%{transform:translate(14.9973vw,49.465vh) scale(.0566)}to{transform:translate(19.9313vw,99vh) scale(.0566)}}.snow:nth-child(145){opacity:1.5934;transform:translate(49.9541vw,-10px) scale(.8705);animation:fall-145 20s -28s linear infinite}@keyframes fall-145{71.093%{transform:translate(43.228vw,71.093vh) scale(.8705)}to{transform:translate(46.59105vw,99vh) scale(.8705)}}.snow:nth-child(146){opacity:.7452;transform:translate(4.8732vw,-10px) scale(.2894);animation:fall-146 18s -17s linear infinite}@keyframes fall-146{54.23%{transform:translate(-.3817vw,54.23vh) scale(.2894)}to{transform:translate(2.24575vw,99vh) scale(.2894)}}.snow:nth-child(147){opacity:1.6686;transform:translate(80.9875vw,-10px) scale(.6025);animation:fall-147 21s -27s linear infinite}@keyframes fall-147{40.026%{transform:translate(85.5736vw,40.026vh) scale(.6025)}to{transform:translate(83.28055vw,99vh) scale(.6025)}}.snow:nth-child(148){opacity:.4884;transform:translate(87.5683vw,-10px) scale(.801);animation:fall-148 12s -4s linear infinite}@keyframes fall-148{50.933%{transform:translate(84.6611vw,50.933vh) scale(.801)}to{transform:translate(86.1147vw,99vh) scale(.801)}}.snow:nth-child(149){opacity:.351;transform:translate(62.5968vw,-10px) scale(.4624);animation:fall-149 28s -29s linear infinite}@keyframes fall-149{53.645%{transform:translate(71.6196vw,53.645vh) scale(.4624)}to{transform:translate(67.1082vw,99vh) scale(.4624)}}.snow:nth-child(150){opacity:.0194;transform:translate(9.9275vw,-10px) scale(.6748);animation:fall-150 23s -26s linear infinite}@keyframes fall-150{36.421%{transform:translate(17.4403vw,36.421vh) scale(.6748)}to{transform:translate(13.6839vw,99vh) scale(.6748)}}.snow:nth-child(151){opacity:1.1942;transform:translate(23.9376vw,-10px) scale(.7221);animation:fall-151 30s -30s linear infinite}@keyframes fall-151{34.318%{transform:translate(28.1527vw,34.318vh) scale(.7221)}to{transform:translate(26.04515vw,99vh) scale(.7221)}}.snow:nth-child(152){opacity:1.535;transform:translate(61.5894vw,-10px) scale(.0994);animation:fall-152 26s -2s linear infinite}@keyframes fall-152{35.213%{transform:translate(61.4952vw,35.213vh) scale(.0994)}to{transform:translate(61.5423vw,99vh) scale(.0994)}}.snow:nth-child(153){opacity:.8692;transform:translate(81.8686vw,-10px) scale(.4689);animation:fall-153 30s -5s linear infinite}@keyframes fall-153{46.939%{transform:translate(75.896vw,46.939vh) scale(.4689)}to{transform:translate(78.8823vw,99vh) scale(.4689)}}.snow:nth-child(154){opacity:1.4546;transform:translate(74.423vw,-10px) scale(.9227);animation:fall-154 18s -28s linear infinite}@keyframes fall-154{44.139%{transform:translate(75.6481vw,44.139vh) scale(.9227)}to{transform:translate(75.03555vw,99vh) scale(.9227)}}.snow:nth-child(155){opacity:1.2896;transform:translate(68.0589vw,-10px) scale(.3241);animation:fall-155 30s -9s linear infinite}@keyframes fall-155{49.101%{transform:translate(62.6397vw,49.101vh) scale(.3241)}to{transform:translate(65.3493vw,99vh) scale(.3241)}}.snow:nth-child(156){opacity:1.1646;transform:translate(61.4722vw,-10px) scale(.1729);animation:fall-156 19s -2s linear infinite}@keyframes fall-156{70.322%{transform:translate(51.5789vw,70.322vh) scale(.1729)}to{transform:translate(56.52555vw,99vh) scale(.1729)}}.snow:nth-child(157){opacity:1.214;transform:translate(2.6384vw,-10px) scale(.7072);animation:fall-157 26s -28s linear infinite}@keyframes fall-157{55.617%{transform:translate(10.8463vw,55.617vh) scale(.7072)}to{transform:translate(6.74235vw,99vh) scale(.7072)}}.snow:nth-child(158){opacity:1.1986;transform:translate(14.8854vw,-10px) scale(.6461);animation:fall-158 16s -6s linear infinite}@keyframes fall-158{51.111%{transform:translate(9.0868vw,51.111vh) scale(.6461)}to{transform:translate(11.9861vw,99vh) scale(.6461)}}.snow:nth-child(159){opacity:1.5196;transform:translate(1.1886vw,-10px) scale(.2852);animation:fall-159 30s -21s linear infinite}@keyframes fall-159{70.005%{transform:translate(-6.6765vw,70.005vh) scale(.2852)}to{transform:translate(-2.74395vw,99vh) scale(.2852)}}.snow:nth-child(160){opacity:1.3408;transform:translate(12.195vw,-10px) scale(.9007);animation:fall-160 11s -15s linear infinite}@keyframes fall-160{42.246%{transform:translate(9.2835vw,42.246vh) scale(.9007)}to{transform:translate(10.73925vw,99vh) scale(.9007)}}.snow:nth-child(161){opacity:.1298;transform:translate(42.4139vw,-10px) scale(.8068);animation:fall-161 30s -29s linear infinite}@keyframes fall-161{40.198%{transform:translate(51.1264vw,40.198vh) scale(.8068)}to{transform:translate(46.77015vw,99vh) scale(.8068)}}.snow:nth-child(162){opacity:.6118;transform:translate(69.2185vw,-10px) scale(.1519);animation:fall-162 20s -10s linear infinite}@keyframes fall-162{69.373%{transform:translate(69.4256vw,69.373vh) scale(.1519)}to{transform:translate(69.32205vw,99vh) scale(.1519)}}.snow:nth-child(163){opacity:1.3974;transform:translate(21.2447vw,-10px) scale(.6048);animation:fall-163 28s -6s linear infinite}@keyframes fall-163{69.558%{transform:translate(29.1764vw,69.558vh) scale(.6048)}to{transform:translate(25.21055vw,99vh) scale(.6048)}}.snow:nth-child(164){opacity:.2022;transform:translate(66.466vw,-10px) scale(.5369);animation:fall-164 26s -17s linear infinite}@keyframes fall-164{31.846%{transform:translate(73.5953vw,31.846vh) scale(.5369)}to{transform:translate(70.03065vw,99vh) scale(.5369)}}.snow:nth-child(165){opacity:1.6416;transform:translate(90.6186vw,-10px) scale(.5382);animation:fall-165 30s -10s linear infinite}@keyframes fall-165{55.022%{transform:translate(88.8509vw,55.022vh) scale(.5382)}to{transform:translate(89.73475vw,99vh) scale(.5382)}}.snow:nth-child(166){opacity:1.9688;transform:translate(30.2455vw,-10px) scale(.333);animation:fall-166 26s -25s linear infinite}@keyframes fall-166{56.661%{transform:translate(33.1657vw,56.661vh) scale(.333)}to{transform:translate(31.7056vw,99vh) scale(.333)}}.snow:nth-child(167){opacity:1.737;transform:translate(9.7881vw,-10px) scale(.6858);animation:fall-167 22s -3s linear infinite}@keyframes fall-167{60.549%{transform:translate(5.9657vw,60.549vh) scale(.6858)}to{transform:translate(7.8769vw,99vh) scale(.6858)}}.snow:nth-child(168){opacity:.039;transform:translate(17.4751vw,-10px) scale(.3629);animation:fall-168 23s -9s linear infinite}@keyframes fall-168{68.426%{transform:translate(24.8342vw,68.426vh) scale(.3629)}to{transform:translate(21.15465vw,99vh) scale(.3629)}}.snow:nth-child(169){opacity:.1308;transform:translate(2.266vw,-10px) scale(.3937);animation:fall-169 30s -5s linear infinite}@keyframes fall-169{62.954%{transform:translate(3.6603vw,62.954vh) scale(.3937)}to{transform:translate(2.96315vw,99vh) scale(.3937)}}.snow:nth-child(170){opacity:.7988;transform:translate(74.2337vw,-10px) scale(.722);animation:fall-170 11s -9s linear infinite}@keyframes fall-170{54.43%{transform:translate(80.3816vw,54.43vh) scale(.722)}to{transform:translate(77.30765vw,99vh) scale(.722)}}.snow:nth-child(171){opacity:1.7888;transform:translate(26.9503vw,-10px) scale(.4212);animation:fall-171 11s -19s linear infinite}@keyframes fall-171{69.261%{transform:translate(33.3119vw,69.261vh) scale(.4212)}to{transform:translate(30.1311vw,99vh) scale(.4212)}}.snow:nth-child(172){opacity:.5748;transform:translate(14.4287vw,-10px) scale(.7573);animation:fall-172 12s -2s linear infinite}@keyframes fall-172{53.466%{transform:translate(4.6395vw,53.466vh) scale(.7573)}to{transform:translate(9.5341vw,99vh) scale(.7573)}}.snow:nth-child(173){opacity:.8912;transform:translate(90.7416vw,-10px) scale(.4613);animation:fall-173 21s -28s linear infinite}@keyframes fall-173{56.772%{transform:translate(89.1471vw,56.772vh) scale(.4613)}to{transform:translate(89.94435vw,99vh) scale(.4613)}}.snow:nth-child(174){opacity:1.6384;transform:translate(55.2657vw,-10px) scale(.7499);animation:fall-174 29s -3s linear infinite}@keyframes fall-174{59.639%{transform:translate(61.0205vw,59.639vh) scale(.7499)}to{transform:translate(58.1431vw,99vh) scale(.7499)}}.snow:nth-child(175){opacity:.5524;transform:translate(67.1121vw,-10px) scale(.4969);animation:fall-175 25s -10s linear infinite}@keyframes fall-175{76.657%{transform:translate(68.0835vw,76.657vh) scale(.4969)}to{transform:translate(67.5978vw,99vh) scale(.4969)}}.snow:nth-child(176){opacity:1.2412;transform:translate(7.6233vw,-10px) scale(.0226);animation:fall-176 12s -19s linear infinite}@keyframes fall-176{50.947%{transform:translate(3.4685vw,50.947vh) scale(.0226)}to{transform:translate(5.5459vw,99vh) scale(.0226)}}.snow:nth-child(177){opacity:1.9408;transform:translate(58.372vw,-10px) scale(.2475);animation:fall-177 21s -5s linear infinite}@keyframes fall-177{38.223%{transform:translate(62.7156vw,38.223vh) scale(.2475)}to{transform:translate(60.5438vw,99vh) scale(.2475)}}.snow:nth-child(178){opacity:.3944;transform:translate(61.6351vw,-10px) scale(.0566);animation:fall-178 25s -9s linear infinite}@keyframes fall-178{65.453%{transform:translate(57.3808vw,65.453vh) scale(.0566)}to{transform:translate(59.50795vw,99vh) scale(.0566)}}.snow:nth-child(179){opacity:1.1236;transform:translate(10.3885vw,-10px) scale(.654);animation:fall-179 19s -20s linear infinite}@keyframes fall-179{62.876%{transform:translate(12.2567vw,62.876vh) scale(.654)}to{transform:translate(11.3226vw,99vh) scale(.654)}}.snow:nth-child(180){opacity:1.7048;transform:translate(11.8823vw,-10px) scale(.1447);animation:fall-180 10s -23s linear infinite}@keyframes fall-180{59.541%{transform:translate(21.144vw,59.541vh) scale(.1447)}to{transform:translate(16.51315vw,99vh) scale(.1447)}}.snow:nth-child(181){opacity:.206;transform:translate(71.5196vw,-10px) scale(.5531);animation:fall-181 14s -13s linear infinite}@keyframes fall-181{34.948%{transform:translate(70.6249vw,34.948vh) scale(.5531)}to{transform:translate(71.07225vw,99vh) scale(.5531)}}.snow:nth-child(182){opacity:.5676;transform:translate(9.8458vw,-10px) scale(.2291);animation:fall-182 25s -3s linear infinite}@keyframes fall-182{58.123%{transform:translate(17.3989vw,58.123vh) scale(.2291)}to{transform:translate(13.62235vw,99vh) scale(.2291)}}.snow:nth-child(183){opacity:1.1038;transform:translate(13.8654vw,-10px) scale(.3449);animation:fall-183 18s -1s linear infinite}@keyframes fall-183{52.41%{transform:translate(9.1434vw,52.41vh) scale(.3449)}to{transform:translate(11.5044vw,99vh) scale(.3449)}}.snow:nth-child(184){opacity:1.7822;transform:translate(3.2112vw,-10px) scale(.8666);animation:fall-184 13s -28s linear infinite}@keyframes fall-184{54.864%{transform:translate(9.1442vw,54.864vh) scale(.8666)}to{transform:translate(6.1777vw,99vh) scale(.8666)}}.snow:nth-child(185){opacity:1.585;transform:translate(54.345vw,-10px) scale(.794);animation:fall-185 22s -17s linear infinite}@keyframes fall-185{33.73%{transform:translate(53.7725vw,33.73vh) scale(.794)}to{transform:translate(54.05875vw,99vh) scale(.794)}}.snow:nth-child(186){opacity:.2194;transform:translate(65.9431vw,-10px) scale(.5974);animation:fall-186 16s -5s linear infinite}@keyframes fall-186{61.175%{transform:translate(70.5514vw,61.175vh) scale(.5974)}to{transform:translate(68.24725vw,99vh) scale(.5974)}}.snow:nth-child(187){opacity:.66;transform:translate(34.5204vw,-10px) scale(.7502);animation:fall-187 18s -24s linear infinite}@keyframes fall-187{50.531%{transform:translate(25.8048vw,50.531vh) scale(.7502)}to{transform:translate(30.1626vw,99vh) scale(.7502)}}.snow:nth-child(188){opacity:.1926;transform:translate(6.2971vw,-10px) scale(.119);animation:fall-188 13s -13s linear infinite}@keyframes fall-188{60.103%{transform:translate(9.7598vw,60.103vh) scale(.119)}to{transform:translate(8.02845vw,99vh) scale(.119)}}.snow:nth-child(189){opacity:1.4862;transform:translate(62.5568vw,-10px) scale(.7885);animation:fall-189 25s -20s linear infinite}@keyframes fall-189{58.763%{transform:translate(56.7053vw,58.763vh) scale(.7885)}to{transform:translate(59.63105vw,99vh) scale(.7885)}}.snow:nth-child(190){opacity:.3488;transform:translate(3.0506vw,-10px) scale(.2231);animation:fall-190 11s -28s linear infinite}@keyframes fall-190{67.762%{transform:translate(3.2632vw,67.762vh) scale(.2231)}to{transform:translate(3.1569vw,99vh) scale(.2231)}}.snow:nth-child(191){opacity:.9358;transform:translate(9.1012vw,-10px) scale(.805);animation:fall-191 28s -21s linear infinite}@keyframes fall-191{52.918%{transform:translate(8.8158vw,52.918vh) scale(.805)}to{transform:translate(8.9585vw,99vh) scale(.805)}}.snow:nth-child(192){opacity:.4932;transform:translate(95.1339vw,-10px) scale(.4666);animation:fall-192 17s -11s linear infinite}@keyframes fall-192{36.774%{transform:translate(90.7929vw,36.774vh) scale(.4666)}to{transform:translate(92.9634vw,99vh) scale(.4666)}}.snow:nth-child(193){opacity:.766;transform:translate(17.4037vw,-10px) scale(.912);animation:fall-193 23s -20s linear infinite}@keyframes fall-193{79.612%{transform:translate(10.8259vw,79.612vh) scale(.912)}to{transform:translate(14.1148vw,99vh) scale(.912)}}.snow:nth-child(194){opacity:1.64;transform:translate(15.0392vw,-10px) scale(.6355);animation:fall-194 15s -24s linear infinite}@keyframes fall-194{74.76%{transform:translate(19.0808vw,74.76vh) scale(.6355)}to{transform:translate(17.06vw,99vh) scale(.6355)}}.snow:nth-child(195){opacity:1.8612;transform:translate(96.7729vw,-10px) scale(.6292);animation:fall-195 23s -11s linear infinite}@keyframes fall-195{51.45%{transform:translate(95.7709vw,51.45vh) scale(.6292)}to{transform:translate(96.2719vw,99vh) scale(.6292)}}.snow:nth-child(196){opacity:.8182;transform:translate(30.1605vw,-10px) scale(.3718);animation:fall-196 15s -28s linear infinite}@keyframes fall-196{42.589%{transform:translate(21.147vw,42.589vh) scale(.3718)}to{transform:translate(25.65375vw,99vh) scale(.3718)}}.snow:nth-child(197){opacity:.4936;transform:translate(18.792vw,-10px) scale(.0111);animation:fall-197 27s -6s linear infinite}@keyframes fall-197{31.625%{transform:translate(16.9259vw,31.625vh) scale(.0111)}to{transform:translate(17.85895vw,99vh) scale(.0111)}}.snow:nth-child(198){opacity:1.4716;transform:translate(18.3428vw,-10px) scale(.6995);animation:fall-198 12s -5s linear infinite}@keyframes fall-198{76.224%{transform:translate(12.6237vw,76.224vh) scale(.6995)}to{transform:translate(15.48325vw,99vh) scale(.6995)}}.snow:nth-child(199){opacity:.2754;transform:translate(68.5409vw,-10px) scale(.6072);animation:fall-199 14s -17s linear infinite}@keyframes fall-199{59.57%{transform:translate(63.5929vw,59.57vh) scale(.6072)}to{transform:translate(66.0669vw,99vh) scale(.6072)}}.snow:nth-child(200){opacity:.4518;transform:translate(93.9851vw,-10px) scale(.6551);animation:fall-200 25s -5s linear infinite}@keyframes fall-200{41.353%{transform:translate(98.7496vw,41.353vh) scale(.6551)}to{transform:translate(96.36735vw,99vh) scale(.6551)}}.snow:nth-child(201){opacity:.3934;transform:translate(72.3058vw,-10px) scale(.0552);animation:fall-201 24s -14s linear infinite}@keyframes fall-201{73.578%{transform:translate(77.0012vw,73.578vh) scale(.0552)}to{transform:translate(74.6535vw,99vh) scale(.0552)}}.snow:nth-child(202){opacity:1.8212;transform:translate(85.5022vw,-10px) scale(.5022);animation:fall-202 26s -3s linear infinite}@keyframes fall-202{32.63%{transform:translate(83.7846vw,32.63vh) scale(.5022)}to{transform:translate(84.6434vw,99vh) scale(.5022)}}.snow:nth-child(203){opacity:1.4996;transform:translate(29.204vw,-10px) scale(.5278);animation:fall-203 25s -1s linear infinite}@keyframes fall-203{56.051%{transform:translate(24.0206vw,56.051vh) scale(.5278)}to{transform:translate(26.6123vw,99vh) scale(.5278)}}.snow:nth-child(204){opacity:.396;transform:translate(22.1159vw,-10px) scale(.3088);animation:fall-204 12s -26s linear infinite}@keyframes fall-204{52.826%{transform:translate(20.3646vw,52.826vh) scale(.3088)}to{transform:translate(21.24025vw,99vh) scale(.3088)}}.snow:nth-child(205){opacity:.506;transform:translate(51.6513vw,-10px) scale(.3971);animation:fall-205 21s -28s linear infinite}@keyframes fall-205{66.475%{transform:translate(50.889vw,66.475vh) scale(.3971)}to{transform:translate(51.27015vw,99vh) scale(.3971)}}.snow:nth-child(206){opacity:1.7032;transform:translate(89.8951vw,-10px) scale(.7575);animation:fall-206 22s -7s linear infinite}@keyframes fall-206{71.66%{transform:translate(82.5367vw,71.66vh) scale(.7575)}to{transform:translate(86.2159vw,99vh) scale(.7575)}}.snow:nth-child(207){opacity:1.5716;transform:translate(99.9686vw,-10px) scale(.3475);animation:fall-207 12s -15s linear infinite}@keyframes fall-207{66.314%{transform:translate(106.1914vw,66.314vh) scale(.3475)}to{transform:translate(103.08vw,99vh) scale(.3475)}}.snow:nth-child(208){opacity:1.1108;transform:translate(2.2691vw,-10px) scale(.4655);animation:fall-208 13s -29s linear infinite}@keyframes fall-208{60.029%{transform:translate(11.7635vw,60.029vh) scale(.4655)}to{transform:translate(7.0163vw,99vh) scale(.4655)}}.snow:nth-child(209){opacity:1.451;transform:translate(75.1054vw,-10px) scale(.6497);animation:fall-209 17s -11s linear infinite}@keyframes fall-209{63.748%{transform:translate(72.8365vw,63.748vh) scale(.6497)}to{transform:translate(73.97095vw,99vh) scale(.6497)}}.snow:nth-child(210){opacity:.9184;transform:translate(27.2559vw,-10px) scale(.6861);animation:fall-210 21s -8s linear infinite}@keyframes fall-210{38.087%{transform:translate(33.9774vw,38.087vh) scale(.6861)}to{transform:translate(30.61665vw,99vh) scale(.6861)}}.snow:nth-child(211){opacity:1.4912;transform:translate(66.9695vw,-10px) scale(.7376);animation:fall-211 14s -25s linear infinite}@keyframes fall-211{57.016%{transform:translate(59.6316vw,57.016vh) scale(.7376)}to{transform:translate(63.30055vw,99vh) scale(.7376)}}.snow:nth-child(212){opacity:.581;transform:translate(98.8749vw,-10px) scale(.6748);animation:fall-212 22s -30s linear infinite}@keyframes fall-212{57.352%{transform:translate(102.5551vw,57.352vh) scale(.6748)}to{transform:translate(100.715vw,99vh) scale(.6748)}}.snow:nth-child(213){opacity:1.9068;transform:translate(46.773vw,-10px) scale(.1175);animation:fall-213 26s -2s linear infinite}@keyframes fall-213{64.442%{transform:translate(52.6787vw,64.442vh) scale(.1175)}to{transform:translate(49.72585vw,99vh) scale(.1175)}}.snow:nth-child(214){opacity:.9462;transform:translate(26.3812vw,-10px) scale(.0143);animation:fall-214 21s -3s linear infinite}@keyframes fall-214{46.751%{transform:translate(21.2223vw,46.751vh) scale(.0143)}to{transform:translate(23.80175vw,99vh) scale(.0143)}}.snow:nth-child(215){opacity:1.877;transform:translate(35.1653vw,-10px) scale(.0701);animation:fall-215 22s -21s linear infinite}@keyframes fall-215{71.601%{transform:translate(37.2325vw,71.601vh) scale(.0701)}to{transform:translate(36.1989vw,99vh) scale(.0701)}}.snow:nth-child(216){opacity:.3412;transform:translate(96.3779vw,-10px) scale(.8898);animation:fall-216 26s -5s linear infinite}@keyframes fall-216{33.323%{transform:translate(102.0881vw,33.323vh) scale(.8898)}to{transform:translate(99.233vw,99vh) scale(.8898)}}.snow:nth-child(217){opacity:1.7738;transform:translate(99.5028vw,-10px) scale(.7474);animation:fall-217 10s -15s linear infinite}@keyframes fall-217{41.779%{transform:translate(96.9148vw,41.779vh) scale(.7474)}to{transform:translate(98.2088vw,99vh) scale(.7474)}}.snow:nth-child(218){opacity:.6414;transform:translate(6.0274vw,-10px) scale(.7435);animation:fall-218 28s -7s linear infinite}@keyframes fall-218{31.196%{transform:translate(-3.3949vw,31.196vh) scale(.7435)}to{transform:translate(1.31625vw,99vh) scale(.7435)}}.snow:nth-child(219){opacity:1.3976;transform:translate(44.1924vw,-10px) scale(.3421);animation:fall-219 16s -24s linear infinite}@keyframes fall-219{43.764%{transform:translate(35.0661vw,43.764vh) scale(.3421)}to{transform:translate(39.62925vw,99vh) scale(.3421)}}.snow:nth-child(220){opacity:1.424;transform:translate(76.824vw,-10px) scale(.3578);animation:fall-220 19s -12s linear infinite}@keyframes fall-220{44.701%{transform:translate(86.7772vw,44.701vh) scale(.3578)}to{transform:translate(81.8006vw,99vh) scale(.3578)}}.snow:nth-child(221){opacity:.7886;transform:translate(28.8142vw,-10px) scale(.6387);animation:fall-221 27s -21s linear infinite}@keyframes fall-221{38.37%{transform:translate(21.4966vw,38.37vh) scale(.6387)}to{transform:translate(25.1554vw,99vh) scale(.6387)}}.snow:nth-child(222){opacity:1.446;transform:translate(1.8808vw,-10px) scale(.9693);animation:fall-222 27s -4s linear infinite}@keyframes fall-222{43.263%{transform:translate(1.742vw,43.263vh) scale(.9693)}to{transform:translate(1.8114vw,99vh) scale(.9693)}}.snow:nth-child(223){opacity:1.1542;transform:translate(90.1864vw,-10px) scale(.3502);animation:fall-223 11s -19s linear infinite}@keyframes fall-223{38.578%{transform:translate(97.282vw,38.578vh) scale(.3502)}to{transform:translate(93.7342vw,99vh) scale(.3502)}}.snow:nth-child(224){opacity:1.481;transform:translate(25.4284vw,-10px) scale(.4616);animation:fall-224 23s -5s linear infinite}@keyframes fall-224{34.957%{transform:translate(24.7057vw,34.957vh) scale(.4616)}to{transform:translate(25.06705vw,99vh) scale(.4616)}}.snow:nth-child(225){opacity:1.7202;transform:translate(89.43vw,-10px) scale(.8533);animation:fall-225 14s -19s linear infinite}@keyframes fall-225{37.828%{transform:translate(92.801vw,37.828vh) scale(.8533)}to{transform:translate(91.1155vw,99vh) scale(.8533)}}.snow:nth-child(226){opacity:.3976;transform:translate(39.0986vw,-10px) scale(.9848);animation:fall-226 14s -14s linear infinite}@keyframes fall-226{62.786%{transform:translate(47.1395vw,62.786vh) scale(.9848)}to{transform:translate(43.11905vw,99vh) scale(.9848)}}.snow:nth-child(227){opacity:.1796;transform:translate(52.2681vw,-10px) scale(.9359);animation:fall-227 14s -2s linear infinite}@keyframes fall-227{59.339%{transform:translate(53.1243vw,59.339vh) scale(.9359)}to{transform:translate(52.6962vw,99vh) scale(.9359)}}.snow:nth-child(228){opacity:.7858;transform:translate(39.4697vw,-10px) scale(.5685);animation:fall-228 16s -17s linear infinite}@keyframes fall-228{47.524%{transform:translate(34.6226vw,47.524vh) scale(.5685)}to{transform:translate(37.04615vw,99vh) scale(.5685)}}.snow:nth-child(229){opacity:.0674;transform:translate(16.1737vw,-10px) scale(.049);animation:fall-229 29s -30s linear infinite}@keyframes fall-229{34.838%{transform:translate(10.1132vw,34.838vh) scale(.049)}to{transform:translate(13.14345vw,99vh) scale(.049)}}.snow:nth-child(230){opacity:.3528;transform:translate(63.5557vw,-10px) scale(.316);animation:fall-230 19s -19s linear infinite}@keyframes fall-230{43.37%{transform:translate(67.622vw,43.37vh) scale(.316)}to{transform:translate(65.58885vw,99vh) scale(.316)}}.snow:nth-child(231){opacity:1.5378;transform:translate(57.2658vw,-10px) scale(.8773);animation:fall-231 20s -12s linear infinite}@keyframes fall-231{44.282%{transform:translate(56.3759vw,44.282vh) scale(.8773)}to{transform:translate(56.82085vw,99vh) scale(.8773)}}.snow:nth-child(232){opacity:.5306;transform:translate(86.54vw,-10px) scale(.3825);animation:fall-232 19s -30s linear infinite}@keyframes fall-232{52.361%{transform:translate(90.5308vw,52.361vh) scale(.3825)}to{transform:translate(88.5354vw,99vh) scale(.3825)}}.snow:nth-child(233){opacity:1.974;transform:translate(18.5015vw,-10px) scale(.3208);animation:fall-233 21s -30s linear infinite}@keyframes fall-233{66.252%{transform:translate(17.8375vw,66.252vh) scale(.3208)}to{transform:translate(18.1695vw,99vh) scale(.3208)}}.snow:nth-child(234){opacity:1.7068;transform:translate(2.0102vw,-10px) scale(.6964);animation:fall-234 18s -17s linear infinite}@keyframes fall-234{78.269%{transform:translate(3.6815vw,78.269vh) scale(.6964)}to{transform:translate(2.84585vw,99vh) scale(.6964)}}.snow:nth-child(235){opacity:1.7884;transform:translate(40.1616vw,-10px) scale(.0242);animation:fall-235 21s -11s linear infinite}@keyframes fall-235{56.112%{transform:translate(31.3546vw,56.112vh) scale(.0242)}to{transform:translate(35.7581vw,99vh) scale(.0242)}}.snow:nth-child(236){opacity:.1288;transform:translate(45.9416vw,-10px) scale(.1803);animation:fall-236 20s -13s linear infinite}@keyframes fall-236{36.381%{transform:translate(37.8335vw,36.381vh) scale(.1803)}to{transform:translate(41.88755vw,99vh) scale(.1803)}}.snow:nth-child(237){opacity:.978;transform:translate(21.9936vw,-10px) scale(.5212);animation:fall-237 17s -21s linear infinite}@keyframes fall-237{74.639%{transform:translate(14.7761vw,74.639vh) scale(.5212)}to{transform:translate(18.38485vw,99vh) scale(.5212)}}.snow:nth-child(238){opacity:.8338;transform:translate(66.7013vw,-10px) scale(.463);animation:fall-238 13s -19s linear infinite}@keyframes fall-238{33.859%{transform:translate(66.3034vw,33.859vh) scale(.463)}to{transform:translate(66.50235vw,99vh) scale(.463)}}.snow:nth-child(239){opacity:1.8794;transform:translate(71.463vw,-10px) scale(.011);animation:fall-239 22s -10s linear infinite}@keyframes fall-239{49.178%{transform:translate(67.3764vw,49.178vh) scale(.011)}to{transform:translate(69.4197vw,99vh) scale(.011)}}.snow:nth-child(240){opacity:.2952;transform:translate(38.067vw,-10px) scale(.9314);animation:fall-240 12s -12s linear infinite}@keyframes fall-240{58.277%{transform:translate(44.9559vw,58.277vh) scale(.9314)}to{transform:translate(41.51145vw,99vh) scale(.9314)}}.snow:nth-child(241){opacity:.5016;transform:translate(27.7959vw,-10px) scale(.7632);animation:fall-241 23s -11s linear infinite}@keyframes fall-241{64.373%{transform:translate(32.1456vw,64.373vh) scale(.7632)}to{transform:translate(29.97075vw,99vh) scale(.7632)}}.snow:nth-child(242){opacity:1.082;transform:translate(95.763vw,-10px) scale(.478);animation:fall-242 26s -6s linear infinite}@keyframes fall-242{36.162%{transform:translate(88.3719vw,36.162vh) scale(.478)}to{transform:translate(92.06745vw,99vh) scale(.478)}}.snow:nth-child(243){opacity:1.18;transform:translate(30.5499vw,-10px) scale(.6773);animation:fall-243 29s -3s linear infinite}@keyframes fall-243{43.421%{transform:translate(26.6796vw,43.421vh) scale(.6773)}to{transform:translate(28.61475vw,99vh) scale(.6773)}}.snow:nth-child(244){opacity:1.5928;transform:translate(98.9277vw,-10px) scale(.0533);animation:fall-244 10s -7s linear infinite}@keyframes fall-244{35.498%{transform:translate(89.7244vw,35.498vh) scale(.0533)}to{transform:translate(94.32605vw,99vh) scale(.0533)}}.snow:nth-child(245){opacity:.078;transform:translate(3.596vw,-10px) scale(.7969);animation:fall-245 16s -21s linear infinite}@keyframes fall-245{63.351%{transform:translate(10.8411vw,63.351vh) scale(.7969)}to{transform:translate(7.21855vw,99vh) scale(.7969)}}.snow:nth-child(246){opacity:.34;transform:translate(11.9408vw,-10px) scale(.8398);animation:fall-246 11s -30s linear infinite}@keyframes fall-246{41.987%{transform:translate(7.3463vw,41.987vh) scale(.8398)}to{transform:translate(9.64355vw,99vh) scale(.8398)}}.snow:nth-child(247){opacity:1.044;transform:translate(77.5872vw,-10px) scale(.7639);animation:fall-247 14s -9s linear infinite}@keyframes fall-247{46.289%{transform:translate(80.869vw,46.289vh) scale(.7639)}to{transform:translate(79.2281vw,99vh) scale(.7639)}}.snow:nth-child(248){opacity:1.371;transform:translate(88.084vw,-10px) scale(.9295);animation:fall-248 13s -14s linear infinite}@keyframes fall-248{46.386%{transform:translate(79.242vw,46.386vh) scale(.9295)}to{transform:translate(83.663vw,99vh) scale(.9295)}}.snow:nth-child(249){opacity:1.2596;transform:translate(3.5211vw,-10px) scale(.8118);animation:fall-249 18s -29s linear infinite}@keyframes fall-249{47.204%{transform:translate(12.8887vw,47.204vh) scale(.8118)}to{transform:translate(8.2049vw,99vh) scale(.8118)}}.snow:nth-child(250){opacity:.6756;transform:translate(29.9573vw,-10px) scale(.524);animation:fall-250 19s -2s linear infinite}@keyframes fall-250{50.195%{transform:translate(31.5483vw,50.195vh) scale(.524)}to{transform:translate(30.7528vw,99vh) scale(.524)}}.snow:nth-child(251){opacity:1.5458;transform:translate(84.1527vw,-10px) scale(.7271);animation:fall-251 23s -10s linear infinite}@keyframes fall-251{45.305%{transform:translate(75.576vw,45.305vh) scale(.7271)}to{transform:translate(79.86435vw,99vh) scale(.7271)}}.snow:nth-child(252){opacity:.604;transform:translate(68.9976vw,-10px) scale(.6503);animation:fall-252 16s -25s linear infinite}@keyframes fall-252{64.94%{transform:translate(72.3798vw,64.94vh) scale(.6503)}to{transform:translate(70.6887vw,99vh) scale(.6503)}}.snow:nth-child(253){opacity:1.7466;transform:translate(91.7456vw,-10px) scale(.0781);animation:fall-253 29s -12s linear infinite}@keyframes fall-253{31.594%{transform:translate(93.0698vw,31.594vh) scale(.0781)}to{transform:translate(92.4077vw,99vh) scale(.0781)}}.snow:nth-child(254){opacity:.676;transform:translate(95.6842vw,-10px) scale(.9054);animation:fall-254 17s -13s linear infinite}@keyframes fall-254{65.097%{transform:translate(102.6914vw,65.097vh) scale(.9054)}to{transform:translate(99.1878vw,99vh) scale(.9054)}}.snow:nth-child(255){opacity:1.872;transform:translate(32.0691vw,-10px) scale(.8558);animation:fall-255 11s -23s linear infinite}@keyframes fall-255{30.278%{transform:translate(27.7223vw,30.278vh) scale(.8558)}to{transform:translate(29.8957vw,99vh) scale(.8558)}}.snow:nth-child(256){opacity:.5806;transform:translate(25.8515vw,-10px) scale(.533);animation:fall-256 15s -1s linear infinite}@keyframes fall-256{70.713%{transform:translate(30.582vw,70.713vh) scale(.533)}to{transform:translate(28.21675vw,99vh) scale(.533)}}.snow:nth-child(257){opacity:.9934;transform:translate(21.4808vw,-10px) scale(.6228);animation:fall-257 22s -12s linear infinite}@keyframes fall-257{48.536%{transform:translate(21.5079vw,48.536vh) scale(.6228)}to{transform:translate(21.49435vw,99vh) scale(.6228)}}.snow:nth-child(258){opacity:.2544;transform:translate(92.6487vw,-10px) scale(.4153);animation:fall-258 22s -29s linear infinite}@keyframes fall-258{36.53%{transform:translate(86.4673vw,36.53vh) scale(.4153)}to{transform:translate(89.558vw,99vh) scale(.4153)}}.snow:nth-child(259){opacity:.5074;transform:translate(64.5561vw,-10px) scale(.746);animation:fall-259 25s -4s linear infinite}@keyframes fall-259{39.917%{transform:translate(67.247vw,39.917vh) scale(.746)}to{transform:translate(65.90155vw,99vh) scale(.746)}}.snow:nth-child(260){opacity:.6386;transform:translate(18.3086vw,-10px) scale(.8788);animation:fall-260 15s -17s linear infinite}@keyframes fall-260{65.331%{transform:translate(15.5885vw,65.331vh) scale(.8788)}to{transform:translate(16.94855vw,99vh) scale(.8788)}}.snow:nth-child(261){opacity:.9466;transform:translate(88.8106vw,-10px) scale(.1434);animation:fall-261 27s -12s linear infinite}@keyframes fall-261{77.993%{transform:translate(85.9334vw,77.993vh) scale(.1434)}to{transform:translate(87.372vw,99vh) scale(.1434)}}.snow:nth-child(262){opacity:1.7212;transform:translate(34.1737vw,-10px) scale(.8536);animation:fall-262 22s -2s linear infinite}@keyframes fall-262{64.456%{transform:translate(36.3071vw,64.456vh) scale(.8536)}to{transform:translate(35.2404vw,99vh) scale(.8536)}}.snow:nth-child(263){opacity:.8424;transform:translate(35.1829vw,-10px) scale(.3764);animation:fall-263 16s -12s linear infinite}@keyframes fall-263{60.764%{transform:translate(31.6864vw,60.764vh) scale(.3764)}to{transform:translate(33.43465vw,99vh) scale(.3764)}}.snow:nth-child(264){opacity:1.1016;transform:translate(92.9619vw,-10px) scale(.1574);animation:fall-264 27s -5s linear infinite}@keyframes fall-264{63.83%{transform:translate(99.9983vw,63.83vh) scale(.1574)}to{transform:translate(96.4801vw,99vh) scale(.1574)}}.snow:nth-child(265){opacity:1.264;transform:translate(73.5608vw,-10px) scale(.875);animation:fall-265 29s -1s linear infinite}@keyframes fall-265{46.236%{transform:translate(72.2428vw,46.236vh) scale(.875)}to{transform:translate(72.9018vw,99vh) scale(.875)}}.snow:nth-child(266){opacity:1.091;transform:translate(7.7005vw,-10px) scale(.6212);animation:fall-266 20s -14s linear infinite}@keyframes fall-266{44.415%{transform:translate(8.8773vw,44.415vh) scale(.6212)}to{transform:translate(8.2889vw,99vh) scale(.6212)}}.snow:nth-child(267){opacity:.4052;transform:translate(83.9993vw,-10px) scale(.6431);animation:fall-267 29s -17s linear infinite}@keyframes fall-267{44.849%{transform:translate(91.791vw,44.849vh) scale(.6431)}to{transform:translate(87.89515vw,99vh) scale(.6431)}}.snow:nth-child(268){opacity:.5302;transform:translate(49.8012vw,-10px) scale(.4606);animation:fall-268 15s -25s linear infinite}@keyframes fall-268{49.608%{transform:translate(56.5581vw,49.608vh) scale(.4606)}to{transform:translate(53.17965vw,99vh) scale(.4606)}}.snow:nth-child(269){opacity:.2144;transform:translate(28.7488vw,-10px) scale(.571);animation:fall-269 26s -15s linear infinite}@keyframes fall-269{43.63%{transform:translate(31.0981vw,43.63vh) scale(.571)}to{transform:translate(29.92345vw,99vh) scale(.571)}}.snow:nth-child(270){opacity:1.123;transform:translate(35.8351vw,-10px) scale(.9673);animation:fall-270 24s -3s linear infinite}@keyframes fall-270{49.356%{transform:translate(36.1803vw,49.356vh) scale(.9673)}to{transform:translate(36.0077vw,99vh) scale(.9673)}}.snow:nth-child(271){opacity:1.2786;transform:translate(82.7115vw,-10px) scale(.0289);animation:fall-271 10s -2s linear infinite}@keyframes fall-271{33.446%{transform:translate(92.6586vw,33.446vh) scale(.0289)}to{transform:translate(87.68505vw,99vh) scale(.0289)}}.snow:nth-child(272){opacity:.5224;transform:translate(79.1153vw,-10px) scale(.19);animation:fall-272 16s -6s linear infinite}@keyframes fall-272{79.273%{transform:translate(88.3384vw,79.273vh) scale(.19)}to{transform:translate(83.72685vw,99vh) scale(.19)}}.snow:nth-child(273){opacity:1.4682;transform:translate(7.3765vw,-10px) scale(.697);animation:fall-273 15s -3s linear infinite}@keyframes fall-273{74.465%{transform:translate(.8264vw,74.465vh) scale(.697)}to{transform:translate(4.10145vw,99vh) scale(.697)}}.snow:nth-child(274){opacity:.4522;transform:translate(24.4771vw,-10px) scale(.6749);animation:fall-274 30s -6s linear infinite}@keyframes fall-274{71.941%{transform:translate(15.0038vw,71.941vh) scale(.6749)}to{transform:translate(19.74045vw,99vh) scale(.6749)}}.snow:nth-child(275){opacity:1.2584;transform:translate(82.7927vw,-10px) scale(.033);animation:fall-275 20s -7s linear infinite}@keyframes fall-275{50.366%{transform:translate(90.8228vw,50.366vh) scale(.033)}to{transform:translate(86.80775vw,99vh) scale(.033)}}.snow:nth-child(276){opacity:.5478;transform:translate(71.1464vw,-10px) scale(.8215);animation:fall-276 20s -29s linear infinite}@keyframes fall-276{67.246%{transform:translate(62.9656vw,67.246vh) scale(.8215)}to{transform:translate(67.056vw,99vh) scale(.8215)}}.snow:nth-child(277){opacity:1.7366;transform:translate(61.6828vw,-10px) scale(.0302);animation:fall-277 21s -8s linear infinite}@keyframes fall-277{33.521%{transform:translate(61.3434vw,33.521vh) scale(.0302)}to{transform:translate(61.5131vw,99vh) scale(.0302)}}.snow:nth-child(278){opacity:.3364;transform:translate(51.5307vw,-10px) scale(.6223);animation:fall-278 11s -3s linear infinite}@keyframes fall-278{46.403%{transform:translate(42.6701vw,46.403vh) scale(.6223)}to{transform:translate(47.1004vw,99vh) scale(.6223)}}.snow:nth-child(279){opacity:.4134;transform:translate(48.3969vw,-10px) scale(.2948);animation:fall-279 28s -3s linear infinite}@keyframes fall-279{30.763%{transform:translate(46.3176vw,30.763vh) scale(.2948)}to{transform:translate(47.35725vw,99vh) scale(.2948)}}.snow:nth-child(280){opacity:.5428;transform:translate(40.9451vw,-10px) scale(.8672);animation:fall-280 24s -14s linear infinite}@keyframes fall-280{66.671%{transform:translate(37.1214vw,66.671vh) scale(.8672)}to{transform:translate(39.03325vw,99vh) scale(.8672)}}.snow:nth-child(281){opacity:.771;transform:translate(61.8053vw,-10px) scale(.6976);animation:fall-281 10s -18s linear infinite}@keyframes fall-281{64.04%{transform:translate(52.1403vw,64.04vh) scale(.6976)}to{transform:translate(56.9728vw,99vh) scale(.6976)}}.snow:nth-child(282){opacity:.3628;transform:translate(47.005vw,-10px) scale(.1337);animation:fall-282 10s -13s linear infinite}@keyframes fall-282{48.953%{transform:translate(38.2157vw,48.953vh) scale(.1337)}to{transform:translate(42.61035vw,99vh) scale(.1337)}}.snow:nth-child(283){opacity:.567;transform:translate(29.9274vw,-10px) scale(.6837);animation:fall-283 23s -9s linear infinite}@keyframes fall-283{68.143%{transform:translate(35.3202vw,68.143vh) scale(.6837)}to{transform:translate(32.6238vw,99vh) scale(.6837)}}.snow:nth-child(284){opacity:.6002;transform:translate(58.9557vw,-10px) scale(.9715);animation:fall-284 26s -22s linear infinite}@keyframes fall-284{65.068%{transform:translate(51.5476vw,65.068vh) scale(.9715)}to{transform:translate(55.25165vw,99vh) scale(.9715)}}.snow:nth-child(285){opacity:.4276;transform:translate(8.241vw,-10px) scale(.7551);animation:fall-285 29s -8s linear infinite}@keyframes fall-285{46.051%{transform:translate(16.4363vw,46.051vh) scale(.7551)}to{transform:translate(12.33865vw,99vh) scale(.7551)}}.snow:nth-child(286){opacity:1.7064;transform:translate(63.3754vw,-10px) scale(.0965);animation:fall-286 21s -24s linear infinite}@keyframes fall-286{75.675%{transform:translate(62.4312vw,75.675vh) scale(.0965)}to{transform:translate(62.9033vw,99vh) scale(.0965)}}.snow:nth-child(287){opacity:.8538;transform:translate(63.0445vw,-10px) scale(.9885);animation:fall-287 16s -20s linear infinite}@keyframes fall-287{33.156%{transform:translate(62.7342vw,33.156vh) scale(.9885)}to{transform:translate(62.88935vw,99vh) scale(.9885)}}.snow:nth-child(288){opacity:1.2362;transform:translate(74.8184vw,-10px) scale(.3419);animation:fall-288 22s -22s linear infinite}@keyframes fall-288{44.058%{transform:translate(72.8485vw,44.058vh) scale(.3419)}to{transform:translate(73.83345vw,99vh) scale(.3419)}}.snow:nth-child(289){opacity:1.3604;transform:translate(38.0887vw,-10px) scale(.1194);animation:fall-289 22s -13s linear infinite}@keyframes fall-289{60.735%{transform:translate(31.0319vw,60.735vh) scale(.1194)}to{transform:translate(34.5603vw,99vh) scale(.1194)}}.snow:nth-child(290){opacity:.3914;transform:translate(80.7208vw,-10px) scale(.9057);animation:fall-290 25s -24s linear infinite}@keyframes fall-290{60.106%{transform:translate(74.2694vw,60.106vh) scale(.9057)}to{transform:translate(77.4951vw,99vh) scale(.9057)}}.snow:nth-child(291){opacity:.8556;transform:translate(11.196vw,-10px) scale(.0278);animation:fall-291 13s -12s linear infinite}@keyframes fall-291{42.839%{transform:translate(21.038vw,42.839vh) scale(.0278)}to{transform:translate(16.117vw,99vh) scale(.0278)}}.snow:nth-child(292){opacity:.2362;transform:translate(58.9494vw,-10px) scale(.044);animation:fall-292 14s -4s linear infinite}@keyframes fall-292{49.921%{transform:translate(57.0756vw,49.921vh) scale(.044)}to{transform:translate(58.0125vw,99vh) scale(.044)}}.snow:nth-child(293){opacity:.5268;transform:translate(2.4164vw,-10px) scale(.5233);animation:fall-293 29s -27s linear infinite}@keyframes fall-293{38.593%{transform:translate(-6.8686vw,38.593vh) scale(.5233)}to{transform:translate(-2.2261vw,99vh) scale(.5233)}}.snow:nth-child(294){opacity:1.4762;transform:translate(29.9578vw,-10px) scale(.2401);animation:fall-294 18s -25s linear infinite}@keyframes fall-294{54.452%{transform:translate(30.801vw,54.452vh) scale(.2401)}to{transform:translate(30.3794vw,99vh) scale(.2401)}}.snow:nth-child(295){opacity:1.596;transform:translate(53.9916vw,-10px) scale(.0231);animation:fall-295 28s -12s linear infinite}@keyframes fall-295{42.689%{transform:translate(60.6397vw,42.689vh) scale(.0231)}to{transform:translate(57.31565vw,99vh) scale(.0231)}}.snow:nth-child(296){opacity:.0668;transform:translate(67.399vw,-10px) scale(.3277);animation:fall-296 12s -7s linear infinite}@keyframes fall-296{75.746%{transform:translate(61.087vw,75.746vh) scale(.3277)}to{transform:translate(64.243vw,99vh) scale(.3277)}}.snow:nth-child(297){opacity:1.7076;transform:translate(92.7043vw,-10px) scale(.6012);animation:fall-297 10s -8s linear infinite}@keyframes fall-297{40.484%{transform:translate(100.9807vw,40.484vh) scale(.6012)}to{transform:translate(96.8425vw,99vh) scale(.6012)}}.snow:nth-child(298){opacity:.454;transform:translate(57.3966vw,-10px) scale(.5797);animation:fall-298 25s -14s linear infinite}@keyframes fall-298{51.198%{transform:translate(51.719vw,51.198vh) scale(.5797)}to{transform:translate(54.5578vw,99vh) scale(.5797)}}.snow:nth-child(299){opacity:1.491;transform:translate(87.3814vw,-10px) scale(.7925);animation:fall-299 17s -9s linear infinite}@keyframes fall-299{39.551%{transform:translate(82.8549vw,39.551vh) scale(.7925)}to{transform:translate(85.11815vw,99vh) scale(.7925)}}.snow:nth-child(300){opacity:1.783;transform:translate(61.4595vw,-10px) scale(.1333);animation:fall-300 14s -26s linear infinite}@keyframes fall-300{61.408%{transform:translate(53.2978vw,61.408vh) scale(.1333)}to{transform:translate(57.37865vw,99vh) scale(.1333)}}.snow:nth-child(301){opacity:1.6314;transform:translate(.3516vw,-10px) scale(.6893);animation:fall-301 15s -27s linear infinite}@keyframes fall-301{38.79%{transform:translate(-8.7869vw,38.79vh) scale(.6893)}to{transform:translate(-4.21765vw,99vh) scale(.6893)}}.snow:nth-child(302){opacity:.495;transform:translate(69.2569vw,-10px) scale(.6236);animation:fall-302 11s -7s linear infinite}@keyframes fall-302{32.253%{transform:translate(68.5157vw,32.253vh) scale(.6236)}to{transform:translate(68.8863vw,99vh) scale(.6236)}}.snow:nth-child(303){opacity:1.1986;transform:translate(9.7105vw,-10px) scale(.3462);animation:fall-303 14s -17s linear infinite}@keyframes fall-303{58.466%{transform:translate(14.0445vw,58.466vh) scale(.3462)}to{transform:translate(11.8775vw,99vh) scale(.3462)}}.snow:nth-child(304){opacity:.8306;transform:translate(75.988vw,-10px) scale(.1714);animation:fall-304 14s -18s linear infinite}@keyframes fall-304{60.44%{transform:translate(68.3385vw,60.44vh) scale(.1714)}to{transform:translate(72.16325vw,99vh) scale(.1714)}}.snow:nth-child(305){opacity:.8176;transform:translate(56.2177vw,-10px) scale(.3683);animation:fall-305 25s -27s linear infinite}@keyframes fall-305{70.805%{transform:translate(51.9951vw,70.805vh) scale(.3683)}to{transform:translate(54.1064vw,99vh) scale(.3683)}}.snow:nth-child(306){opacity:1.3652;transform:translate(22.2166vw,-10px) scale(.5333);animation:fall-306 18s -17s linear infinite}@keyframes fall-306{42.935%{transform:translate(29.8952vw,42.935vh) scale(.5333)}to{transform:translate(26.0559vw,99vh) scale(.5333)}}.snow:nth-child(307){opacity:1.8736;transform:translate(49.2317vw,-10px) scale(.6424);animation:fall-307 14s -30s linear infinite}@keyframes fall-307{31.682%{transform:translate(43.6238vw,31.682vh) scale(.6424)}to{transform:translate(46.42775vw,99vh) scale(.6424)}}.snow:nth-child(308){opacity:1.5094;transform:translate(48.7601vw,-10px) scale(.8342);animation:fall-308 14s -30s linear infinite}@keyframes fall-308{74.744%{transform:translate(41.2909vw,74.744vh) scale(.8342)}to{transform:translate(45.0255vw,99vh) scale(.8342)}}.snow:nth-child(309){opacity:1.8318;transform:translate(13.3853vw,-10px) scale(.0787);animation:fall-309 29s -19s linear infinite}@keyframes fall-309{63.597%{transform:translate(4.8576vw,63.597vh) scale(.0787)}to{transform:translate(9.12145vw,99vh) scale(.0787)}}.snow:nth-child(310){opacity:1.8914;transform:translate(58.0426vw,-10px) scale(.9263);animation:fall-310 10s -1s linear infinite}@keyframes fall-310{43.995%{transform:translate(59.31vw,43.995vh) scale(.9263)}to{transform:translate(58.6763vw,99vh) scale(.9263)}}.snow:nth-child(311){opacity:1.751;transform:translate(69.759vw,-10px) scale(.0587);animation:fall-311 11s -7s linear infinite}@keyframes fall-311{36.009%{transform:translate(79.067vw,36.009vh) scale(.0587)}to{transform:translate(74.413vw,99vh) scale(.0587)}}.snow:nth-child(312){opacity:.0882;transform:translate(96.0749vw,-10px) scale(.0824);animation:fall-312 30s -27s linear infinite}@keyframes fall-312{69.144%{transform:translate(95.7588vw,69.144vh) scale(.0824)}to{transform:translate(95.91685vw,99vh) scale(.0824)}}.snow:nth-child(313){opacity:1.093;transform:translate(1.4475vw,-10px) scale(.3408);animation:fall-313 27s -3s linear infinite}@keyframes fall-313{79.284%{transform:translate(7.5717vw,79.284vh) scale(.3408)}to{transform:translate(4.5096vw,99vh) scale(.3408)}}.snow:nth-child(314){opacity:1.0606;transform:translate(39.2792vw,-10px) scale(.6639);animation:fall-314 25s -28s linear infinite}@keyframes fall-314{56.892%{transform:translate(37.7894vw,56.892vh) scale(.6639)}to{transform:translate(38.5343vw,99vh) scale(.6639)}}.snow:nth-child(315){opacity:1.0146;transform:translate(24.6227vw,-10px) scale(.4284);animation:fall-315 17s -22s linear infinite}@keyframes fall-315{30.241%{transform:translate(23.2078vw,30.241vh) scale(.4284)}to{transform:translate(23.91525vw,99vh) scale(.4284)}}.snow:nth-child(316){opacity:.4864;transform:translate(73.1481vw,-10px) scale(.8021);animation:fall-316 18s -3s linear infinite}@keyframes fall-316{70.333%{transform:translate(75.6369vw,70.333vh) scale(.8021)}to{transform:translate(74.3925vw,99vh) scale(.8021)}}.snow:nth-child(317){opacity:.0512;transform:translate(80.2553vw,-10px) scale(.471);animation:fall-317 29s -8s linear infinite}@keyframes fall-317{73.039%{transform:translate(87.4309vw,73.039vh) scale(.471)}to{transform:translate(83.8431vw,99vh) scale(.471)}}.snow:nth-child(318){opacity:.4616;transform:translate(30.8492vw,-10px) scale(.7562);animation:fall-318 27s -4s linear infinite}@keyframes fall-318{55.335%{transform:translate(29.1498vw,55.335vh) scale(.7562)}to{transform:translate(29.9995vw,99vh) scale(.7562)}}.snow:nth-child(319){opacity:.2312;transform:translate(22.5492vw,-10px) scale(.3766);animation:fall-319 27s -8s linear infinite}@keyframes fall-319{31.726%{transform:translate(27.0261vw,31.726vh) scale(.3766)}to{transform:translate(24.78765vw,99vh) scale(.3766)}}.snow:nth-child(320){opacity:.595;transform:translate(33.927vw,-10px) scale(.1622);animation:fall-320 25s -17s linear infinite}@keyframes fall-320{33.439%{transform:translate(30.106vw,33.439vh) scale(.1622)}to{transform:translate(32.0165vw,99vh) scale(.1622)}}.snow:nth-child(321){opacity:1.2704;transform:translate(30.8483vw,-10px) scale(.885);animation:fall-321 12s -28s linear infinite}@keyframes fall-321{64.402%{transform:translate(22.4677vw,64.402vh) scale(.885)}to{transform:translate(26.658vw,99vh) scale(.885)}}.snow:nth-child(322){opacity:.1214;transform:translate(32.9825vw,-10px) scale(.334);animation:fall-322 25s -26s linear infinite}@keyframes fall-322{43.316%{transform:translate(26.3694vw,43.316vh) scale(.334)}to{transform:translate(29.67595vw,99vh) scale(.334)}}.snow:nth-child(323){opacity:1.0456;transform:translate(83.4722vw,-10px) scale(.6315);animation:fall-323 11s -14s linear infinite}@keyframes fall-323{42.433%{transform:translate(92.4845vw,42.433vh) scale(.6315)}to{transform:translate(87.97835vw,99vh) scale(.6315)}}.snow:nth-child(324){opacity:1.3728;transform:translate(42.7816vw,-10px) scale(.6939);animation:fall-324 30s -14s linear infinite}@keyframes fall-324{37.778%{transform:translate(33.2397vw,37.778vh) scale(.6939)}to{transform:translate(38.01065vw,99vh) scale(.6939)}}.snow:nth-child(325){opacity:1.1076;transform:translate(8.4817vw,-10px) scale(.0503);animation:fall-325 29s -25s linear infinite}@keyframes fall-325{73.834%{transform:translate(1.2277vw,73.834vh) scale(.0503)}to{transform:translate(4.8547vw,99vh) scale(.0503)}}.snow:nth-child(326){opacity:1.2096;transform:translate(15.5896vw,-10px) scale(.8915);animation:fall-326 11s -19s linear infinite}@keyframes fall-326{57.054%{transform:translate(19.1609vw,57.054vh) scale(.8915)}to{transform:translate(17.37525vw,99vh) scale(.8915)}}.snow:nth-child(327){opacity:1.8788;transform:translate(11.4447vw,-10px) scale(.9989);animation:fall-327 29s -12s linear infinite}@keyframes fall-327{39.243%{transform:translate(13.8297vw,39.243vh) scale(.9989)}to{transform:translate(12.6372vw,99vh) scale(.9989)}}.snow:nth-child(328){opacity:.7162;transform:translate(43.7258vw,-10px) scale(.332);animation:fall-328 18s -20s linear infinite}@keyframes fall-328{61.452%{transform:translate(39.9607vw,61.452vh) scale(.332)}to{transform:translate(41.84325vw,99vh) scale(.332)}}.snow:nth-child(329){opacity:1.5134;transform:translate(89.2651vw,-10px) scale(.1026);animation:fall-329 24s -1s linear infinite}@keyframes fall-329{43.273%{transform:translate(86.1757vw,43.273vh) scale(.1026)}to{transform:translate(87.7204vw,99vh) scale(.1026)}}.snow:nth-child(330){opacity:1.994;transform:translate(48.9487vw,-10px) scale(.9277);animation:fall-330 19s -21s linear infinite}@keyframes fall-330{61.098%{transform:translate(44.2404vw,61.098vh) scale(.9277)}to{transform:translate(46.59455vw,99vh) scale(.9277)}}.snow:nth-child(331){opacity:.3598;transform:translate(83.8056vw,-10px) scale(.9637);animation:fall-331 16s -1s linear infinite}@keyframes fall-331{79.271%{transform:translate(76.884vw,79.271vh) scale(.9637)}to{transform:translate(80.3448vw,99vh) scale(.9637)}}.snow:nth-child(332){opacity:1.9028;transform:translate(30.0627vw,-10px) scale(.7513);animation:fall-332 16s -18s linear infinite}@keyframes fall-332{35.858%{transform:translate(37.2521vw,35.858vh) scale(.7513)}to{transform:translate(33.6574vw,99vh) scale(.7513)}}.snow:nth-child(333){opacity:.5728;transform:translate(11.7287vw,-10px) scale(.8404);animation:fall-333 11s -28s linear infinite}@keyframes fall-333{61.272%{transform:translate(13.1663vw,61.272vh) scale(.8404)}to{transform:translate(12.4475vw,99vh) scale(.8404)}}.snow:nth-child(334){opacity:.6154;transform:translate(74.3258vw,-10px) scale(.9996);animation:fall-334 25s -25s linear infinite}@keyframes fall-334{45.381%{transform:translate(77.8869vw,45.381vh) scale(.9996)}to{transform:translate(76.10635vw,99vh) scale(.9996)}}.snow:nth-child(335){opacity:1.0078;transform:translate(64.641vw,-10px) scale(.0528);animation:fall-335 21s -13s linear infinite}@keyframes fall-335{66.797%{transform:translate(72.2516vw,66.797vh) scale(.0528)}to{transform:translate(68.4463vw,99vh) scale(.0528)}}.snow:nth-child(336){opacity:1.0214;transform:translate(98.5084vw,-10px) scale(.0899);animation:fall-336 29s -13s linear infinite}@keyframes fall-336{46.115%{transform:translate(100.6328vw,46.115vh) scale(.0899)}to{transform:translate(99.5706vw,99vh) scale(.0899)}}.snow:nth-child(337){opacity:1.4894;transform:translate(99.5836vw,-10px) scale(.0911);animation:fall-337 28s -2s linear infinite}@keyframes fall-337{36.1%{transform:translate(99.5177vw,36.1vh) scale(.0911)}to{transform:translate(99.55065vw,99vh) scale(.0911)}}.snow:nth-child(338){opacity:.1486;transform:translate(40.1338vw,-10px) scale(.0828);animation:fall-338 17s -7s linear infinite}@keyframes fall-338{54.099%{transform:translate(37.8156vw,54.099vh) scale(.0828)}to{transform:translate(38.9747vw,99vh) scale(.0828)}}.snow:nth-child(339){opacity:1.1656;transform:translate(50.9087vw,-10px) scale(.9189);animation:fall-339 27s -28s linear infinite}@keyframes fall-339{62.944%{transform:translate(41.7573vw,62.944vh) scale(.9189)}to{transform:translate(46.333vw,99vh) scale(.9189)}}.snow:nth-child(340){opacity:1.3928;transform:translate(33.539vw,-10px) scale(.146);animation:fall-340 28s -9s linear infinite}@keyframes fall-340{52.207%{transform:translate(36.616vw,52.207vh) scale(.146)}to{transform:translate(35.0775vw,99vh) scale(.146)}}.snow:nth-child(341){opacity:1.549;transform:translate(92.8534vw,-10px) scale(.3169);animation:fall-341 11s -22s linear infinite}@keyframes fall-341{72.271%{transform:translate(90.9076vw,72.271vh) scale(.3169)}to{transform:translate(91.8805vw,99vh) scale(.3169)}}.snow:nth-child(342){opacity:1.8226;transform:translate(11.862vw,-10px) scale(.6358);animation:fall-342 24s -28s linear infinite}@keyframes fall-342{55.131%{transform:translate(12.6909vw,55.131vh) scale(.6358)}to{transform:translate(12.27645vw,99vh) scale(.6358)}}.snow:nth-child(343){opacity:.9816;transform:translate(86.5219vw,-10px) scale(.6125);animation:fall-343 13s -7s linear infinite}@keyframes fall-343{47.757%{transform:translate(88.973vw,47.757vh) scale(.6125)}to{transform:translate(87.74745vw,99vh) scale(.6125)}}.snow:nth-child(344){opacity:1.2896;transform:translate(19.8179vw,-10px) scale(.3676);animation:fall-344 27s -17s linear infinite}@keyframes fall-344{63.439%{transform:translate(23.4545vw,63.439vh) scale(.3676)}to{transform:translate(21.6362vw,99vh) scale(.3676)}}.snow:nth-child(345){opacity:.6668;transform:translate(70.7221vw,-10px) scale(.1055);animation:fall-345 12s -7s linear infinite}@keyframes fall-345{44.172%{transform:translate(61.7374vw,44.172vh) scale(.1055)}to{transform:translate(66.22975vw,99vh) scale(.1055)}}.snow:nth-child(346){opacity:.7492;transform:translate(28.2331vw,-10px) scale(.2187);animation:fall-346 30s -25s linear infinite}@keyframes fall-346{61.669%{transform:translate(27.2712vw,61.669vh) scale(.2187)}to{transform:translate(27.75215vw,99vh) scale(.2187)}}.snow:nth-child(347){opacity:.9734;transform:translate(34.3075vw,-10px) scale(.7443);animation:fall-347 12s -23s linear infinite}@keyframes fall-347{51.408%{transform:translate(36.73vw,51.408vh) scale(.7443)}to{transform:translate(35.51875vw,99vh) scale(.7443)}}.snow:nth-child(348){opacity:1.94;transform:translate(96.816vw,-10px) scale(.6579);animation:fall-348 13s -11s linear infinite}@keyframes fall-348{36.653%{transform:translate(95.1825vw,36.653vh) scale(.6579)}to{transform:translate(95.99925vw,99vh) scale(.6579)}}.snow:nth-child(349){opacity:.0344;transform:translate(79.4181vw,-10px) scale(.5183);animation:fall-349 16s -22s linear infinite}@keyframes fall-349{51.149%{transform:translate(73.1475vw,51.149vh) scale(.5183)}to{transform:translate(76.2828vw,99vh) scale(.5183)}}.snow:nth-child(350){opacity:1.264;transform:translate(13.5902vw,-10px) scale(.7213);animation:fall-350 13s -2s linear infinite}@keyframes fall-350{44.034%{transform:translate(7.9837vw,44.034vh) scale(.7213)}to{transform:translate(10.78695vw,99vh) scale(.7213)}}.snow:nth-child(351){opacity:.3658;transform:translate(88.6236vw,-10px) scale(.1294);animation:fall-351 15s -23s linear infinite}@keyframes fall-351{35.39%{transform:translate(79.6624vw,35.39vh) scale(.1294)}to{transform:translate(84.143vw,99vh) scale(.1294)}}.snow:nth-child(352){opacity:.8902;transform:translate(73.4062vw,-10px) scale(.668);animation:fall-352 23s -24s linear infinite}@keyframes fall-352{74.718%{transform:translate(65.6369vw,74.718vh) scale(.668)}to{transform:translate(69.52155vw,99vh) scale(.668)}}.snow:nth-child(353){opacity:.9812;transform:translate(45.1957vw,-10px) scale(.6716);animation:fall-353 19s -20s linear infinite}@keyframes fall-353{44.699%{transform:translate(47.2427vw,44.699vh) scale(.6716)}to{transform:translate(46.2192vw,99vh) scale(.6716)}}.snow:nth-child(354){opacity:1.321;transform:translate(70.9659vw,-10px) scale(.1639);animation:fall-354 23s -5s linear infinite}@keyframes fall-354{46.875%{transform:translate(62.5325vw,46.875vh) scale(.1639)}to{transform:translate(66.7492vw,99vh) scale(.1639)}}.snow:nth-child(355){opacity:.7524;transform:translate(89.8707vw,-10px) scale(.8085);animation:fall-355 16s -26s linear infinite}@keyframes fall-355{56.106%{transform:translate(99.622vw,56.106vh) scale(.8085)}to{transform:translate(94.74635vw,99vh) scale(.8085)}}.snow:nth-child(356){opacity:1.974;transform:translate(59.968vw,-10px) scale(.7094);animation:fall-356 20s -10s linear infinite}@keyframes fall-356{30.035%{transform:translate(64.0036vw,30.035vh) scale(.7094)}to{transform:translate(61.9858vw,99vh) scale(.7094)}}.snow:nth-child(357){opacity:1.8776;transform:translate(86.9805vw,-10px) scale(.1479);animation:fall-357 14s -1s linear infinite}@keyframes fall-357{59.392%{transform:translate(96.0978vw,59.392vh) scale(.1479)}to{transform:translate(91.53915vw,99vh) scale(.1479)}}.snow:nth-child(358){opacity:.1824;transform:translate(95.4391vw,-10px) scale(.3444);animation:fall-358 21s -20s linear infinite}@keyframes fall-358{55.038%{transform:translate(102.6104vw,55.038vh) scale(.3444)}to{transform:translate(99.02475vw,99vh) scale(.3444)}}.snow:nth-child(359){opacity:1.2946;transform:translate(75.2341vw,-10px) scale(.2018);animation:fall-359 13s -13s linear infinite}@keyframes fall-359{77.221%{transform:translate(72.1313vw,77.221vh) scale(.2018)}to{transform:translate(73.6827vw,99vh) scale(.2018)}}.snow:nth-child(360){opacity:.2982;transform:translate(99.2861vw,-10px) scale(.925);animation:fall-360 30s -3s linear infinite}@keyframes fall-360{37.423%{transform:translate(94.8344vw,37.423vh) scale(.925)}to{transform:translate(97.06025vw,99vh) scale(.925)}}.snow:nth-child(361){opacity:.7162;transform:translate(63.5391vw,-10px) scale(.1967);animation:fall-361 30s -28s linear infinite}@keyframes fall-361{65.168%{transform:translate(69.3252vw,65.168vh) scale(.1967)}to{transform:translate(66.43215vw,99vh) scale(.1967)}}.snow:nth-child(362){opacity:.4062;transform:translate(29.9539vw,-10px) scale(.7334);animation:fall-362 13s -30s linear infinite}@keyframes fall-362{78.612%{transform:translate(33.7807vw,78.612vh) scale(.7334)}to{transform:translate(31.8673vw,99vh) scale(.7334)}}.snow:nth-child(363){opacity:.5798;transform:translate(70.0831vw,-10px) scale(.5706);animation:fall-363 18s -1s linear infinite}@keyframes fall-363{74.096%{transform:translate(64.8381vw,74.096vh) scale(.5706)}to{transform:translate(67.4606vw,99vh) scale(.5706)}}.snow:nth-child(364){opacity:1.6486;transform:translate(69.4713vw,-10px) scale(.4362);animation:fall-364 15s -8s linear infinite}@keyframes fall-364{62.675%{transform:translate(69.1173vw,62.675vh) scale(.4362)}to{transform:translate(69.2943vw,99vh) scale(.4362)}}.snow:nth-child(365){opacity:1.3694;transform:translate(35.5829vw,-10px) scale(.2201);animation:fall-365 28s -2s linear infinite}@keyframes fall-365{77.675%{transform:translate(36.4428vw,77.675vh) scale(.2201)}to{transform:translate(36.01285vw,99vh) scale(.2201)}}.snow:nth-child(366){opacity:.3118;transform:translate(92.7835vw,-10px) scale(.6708);animation:fall-366 30s -22s linear infinite}@keyframes fall-366{79.395%{transform:translate(83.5192vw,79.395vh) scale(.6708)}to{transform:translate(88.15135vw,99vh) scale(.6708)}}.snow:nth-child(367){opacity:.4042;transform:translate(68.0353vw,-10px) scale(.7459);animation:fall-367 11s -30s linear infinite}@keyframes fall-367{44.907%{transform:translate(63.0965vw,44.907vh) scale(.7459)}to{transform:translate(65.5659vw,99vh) scale(.7459)}}.snow:nth-child(368){opacity:.6078;transform:translate(51.9115vw,-10px) scale(.1332);animation:fall-368 29s -19s linear infinite}@keyframes fall-368{33.539%{transform:translate(53.3686vw,33.539vh) scale(.1332)}to{transform:translate(52.64005vw,99vh) scale(.1332)}}.snow:nth-child(369){opacity:.5548;transform:translate(52.6218vw,-10px) scale(.4648);animation:fall-369 15s -14s linear infinite}@keyframes fall-369{62.43%{transform:translate(57.1339vw,62.43vh) scale(.4648)}to{transform:translate(54.87785vw,99vh) scale(.4648)}}.snow:nth-child(370){opacity:1.5924;transform:translate(.9872vw,-10px) scale(.4727);animation:fall-370 18s -28s linear infinite}@keyframes fall-370{33.854%{transform:translate(2.1795vw,33.854vh) scale(.4727)}to{transform:translate(1.58335vw,99vh) scale(.4727)}}.snow:nth-child(371){opacity:.7532;transform:translate(41.7125vw,-10px) scale(.5589);animation:fall-371 14s -8s linear infinite}@keyframes fall-371{60.596%{transform:translate(33.7984vw,60.596vh) scale(.5589)}to{transform:translate(37.75545vw,99vh) scale(.5589)}}.snow:nth-child(372){opacity:1.859;transform:translate(62.3053vw,-10px) scale(.1391);animation:fall-372 20s -9s linear infinite}@keyframes fall-372{47.813%{transform:translate(64.5968vw,47.813vh) scale(.1391)}to{transform:translate(63.45105vw,99vh) scale(.1391)}}.snow:nth-child(373){opacity:.425;transform:translate(67.8337vw,-10px) scale(.1207);animation:fall-373 16s -23s linear infinite}@keyframes fall-373{54.256%{transform:translate(65.0704vw,54.256vh) scale(.1207)}to{transform:translate(66.45205vw,99vh) scale(.1207)}}.snow:nth-child(374){opacity:1.7108;transform:translate(63.9022vw,-10px) scale(.0238);animation:fall-374 13s -9s linear infinite}@keyframes fall-374{71.243%{transform:translate(67.8228vw,71.243vh) scale(.0238)}to{transform:translate(65.8625vw,99vh) scale(.0238)}}.snow:nth-child(375){opacity:.8612;transform:translate(68.6717vw,-10px) scale(.2125);animation:fall-375 12s -3s linear infinite}@keyframes fall-375{61.848%{transform:translate(69.8937vw,61.848vh) scale(.2125)}to{transform:translate(69.2827vw,99vh) scale(.2125)}}.snow:nth-child(376){opacity:.998;transform:translate(80.2344vw,-10px) scale(.9661);animation:fall-376 21s -5s linear infinite}@keyframes fall-376{53.956%{transform:translate(77.797vw,53.956vh) scale(.9661)}to{transform:translate(79.0157vw,99vh) scale(.9661)}}.snow:nth-child(377){opacity:.8278;transform:translate(28.868vw,-10px) scale(.8761);animation:fall-377 28s -30s linear infinite}@keyframes fall-377{71.867%{transform:translate(34.9023vw,71.867vh) scale(.8761)}to{transform:translate(31.88515vw,99vh) scale(.8761)}}.snow:nth-child(378){opacity:1.1276;transform:translate(35.654vw,-10px) scale(.7564);animation:fall-378 16s -3s linear infinite}@keyframes fall-378{48.446%{transform:translate(36.3734vw,48.446vh) scale(.7564)}to{transform:translate(36.0137vw,99vh) scale(.7564)}}.snow:nth-child(379){opacity:.9266;transform:translate(12.3015vw,-10px) scale(.2102);animation:fall-379 14s -7s linear infinite}@keyframes fall-379{67.998%{transform:translate(17.2182vw,67.998vh) scale(.2102)}to{transform:translate(14.75985vw,99vh) scale(.2102)}}.snow:nth-child(380){opacity:1.344;transform:translate(44.6337vw,-10px) scale(.01);animation:fall-380 29s -19s linear infinite}@keyframes fall-380{71.633%{transform:translate(47.4718vw,71.633vh) scale(.01)}to{transform:translate(46.05275vw,99vh) scale(.01)}}.snow:nth-child(381){opacity:.693;transform:translate(32.7069vw,-10px) scale(.5871);animation:fall-381 28s -26s linear infinite}@keyframes fall-381{67.093%{transform:translate(27.7276vw,67.093vh) scale(.5871)}to{transform:translate(30.21725vw,99vh) scale(.5871)}}.snow:nth-child(382){opacity:.0224;transform:translate(90.4574vw,-10px) scale(.1131);animation:fall-382 16s -14s linear infinite}@keyframes fall-382{55.351%{transform:translate(91.4607vw,55.351vh) scale(.1131)}to{transform:translate(90.95905vw,99vh) scale(.1131)}}.snow:nth-child(383){opacity:1.6054;transform:translate(85.1637vw,-10px) scale(.7716);animation:fall-383 30s -14s linear infinite}@keyframes fall-383{31.189%{transform:translate(90.3972vw,31.189vh) scale(.7716)}to{transform:translate(87.78045vw,99vh) scale(.7716)}}.snow:nth-child(384){opacity:1.6366;transform:translate(6.0528vw,-10px) scale(.0339);animation:fall-384 30s -16s linear infinite}@keyframes fall-384{64.307%{transform:translate(7.6271vw,64.307vh) scale(.0339)}to{transform:translate(6.83995vw,99vh) scale(.0339)}}.snow:nth-child(385){opacity:.8482;transform:translate(45.3307vw,-10px) scale(.1006);animation:fall-385 30s -7s linear infinite}@keyframes fall-385{46.601%{transform:translate(52.0237vw,46.601vh) scale(.1006)}to{transform:translate(48.6772vw,99vh) scale(.1006)}}.snow:nth-child(386){opacity:1.8782;transform:translate(50.0483vw,-10px) scale(.7487);animation:fall-386 27s -14s linear infinite}@keyframes fall-386{50.853%{transform:translate(45.7509vw,50.853vh) scale(.7487)}to{transform:translate(47.8996vw,99vh) scale(.7487)}}.snow:nth-child(387){opacity:1.3646;transform:translate(36.9521vw,-10px) scale(.5473);animation:fall-387 12s -29s linear infinite}@keyframes fall-387{74.345%{transform:translate(41.6735vw,74.345vh) scale(.5473)}to{transform:translate(39.3128vw,99vh) scale(.5473)}}.snow:nth-child(388){opacity:1.2084;transform:translate(66.1194vw,-10px) scale(.7522);animation:fall-388 14s -8s linear infinite}@keyframes fall-388{67.702%{transform:translate(61.156vw,67.702vh) scale(.7522)}to{transform:translate(63.6377vw,99vh) scale(.7522)}}.snow:nth-child(389){opacity:1.9678;transform:translate(24.6106vw,-10px) scale(.8487);animation:fall-389 19s -4s linear infinite}@keyframes fall-389{69.749%{transform:translate(18.7966vw,69.749vh) scale(.8487)}to{transform:translate(21.7036vw,99vh) scale(.8487)}}.snow:nth-child(390){opacity:.8166;transform:translate(72.1731vw,-10px) scale(.1676);animation:fall-390 25s -4s linear infinite}@keyframes fall-390{76.266%{transform:translate(67.3246vw,76.266vh) scale(.1676)}to{transform:translate(69.74885vw,99vh) scale(.1676)}}.snow:nth-child(391){opacity:.3032;transform:translate(35.6691vw,-10px) scale(.6871);animation:fall-391 13s -18s linear infinite}@keyframes fall-391{69.548%{transform:translate(38.5466vw,69.548vh) scale(.6871)}to{transform:translate(37.10785vw,99vh) scale(.6871)}}.snow:nth-child(392){opacity:.9744;transform:translate(37.0285vw,-10px) scale(.1285);animation:fall-392 21s -20s linear infinite}@keyframes fall-392{62.752%{transform:translate(45.1115vw,62.752vh) scale(.1285)}to{transform:translate(41.07vw,99vh) scale(.1285)}}.snow:nth-child(393){opacity:1.1296;transform:translate(42.6576vw,-10px) scale(.1401);animation:fall-393 14s -24s linear infinite}@keyframes fall-393{72.707%{transform:translate(48.6663vw,72.707vh) scale(.1401)}to{transform:translate(45.66195vw,99vh) scale(.1401)}}.snow:nth-child(394){opacity:.6626;transform:translate(39.4683vw,-10px) scale(.8439);animation:fall-394 16s -6s linear infinite}@keyframes fall-394{40.479%{transform:translate(35.7497vw,40.479vh) scale(.8439)}to{transform:translate(37.609vw,99vh) scale(.8439)}}.snow:nth-child(395){opacity:1.5578;transform:translate(85.0598vw,-10px) scale(.5304);animation:fall-395 14s -3s linear infinite}@keyframes fall-395{61.225%{transform:translate(88.1223vw,61.225vh) scale(.5304)}to{transform:translate(86.59105vw,99vh) scale(.5304)}}.snow:nth-child(396){opacity:.6132;transform:translate(77.8628vw,-10px) scale(.0802);animation:fall-396 26s -22s linear infinite}@keyframes fall-396{78.979%{transform:translate(83.479vw,78.979vh) scale(.0802)}to{transform:translate(80.6709vw,99vh) scale(.0802)}}.snow:nth-child(397){opacity:.012;transform:translate(81.3148vw,-10px) scale(.6526);animation:fall-397 28s -18s linear infinite}@keyframes fall-397{31.715%{transform:translate(84.1303vw,31.715vh) scale(.6526)}to{transform:translate(82.72255vw,99vh) scale(.6526)}}.snow:nth-child(398){opacity:.9012;transform:translate(80.5807vw,-10px) scale(.3167);animation:fall-398 20s -22s linear infinite}@keyframes fall-398{43.924%{transform:translate(88.0622vw,43.924vh) scale(.3167)}to{transform:translate(84.32145vw,99vh) scale(.3167)}}.snow:nth-child(399){opacity:1.775;transform:translate(45.9117vw,-10px) scale(.6349);animation:fall-399 18s -25s linear infinite}@keyframes fall-399{49.14%{transform:translate(38.8571vw,49.14vh) scale(.6349)}to{transform:translate(42.3844vw,99vh) scale(.6349)}}.snow:nth-child(400){opacity:1.9504;transform:translate(7.22vw,-10px) scale(.8326);animation:fall-400 20s -4s linear infinite}@keyframes fall-400{33.798%{transform:translate(14.2746vw,33.798vh) scale(.8326)}to{transform:translate(10.7473vw,99vh) scale(.8326)}}\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 });
25
+ AppComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AppComponent, selector: "app-root", ngImport: i0, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows; trackBy: snowTrackBy\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: [".table-borderless>tbody>tr>td,.table-borderless>tbody>tr>th,.table-borderless>tfoot>tr>td,.table-borderless>tfoot>tr>th,.table-borderless>thead>tr>td,.table-borderless>thead>tr>th{border:none}.table,.table-responsive{margin-bottom:5px}a:hover,a:focus{text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}*{outline:none!important}.modal-title{width:calc(100% - 20px)}.progress{height:20px}.progress.progress-primary[value]::-webkit-progress-value{background-color:#024a88}.progress.progress-primary[value]::-moz-progress-bar{background-color:#024a88}.progress.progress-primary[value]::-ms-fill{background-color:#024a88}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#024a88}}.progress.progress-info[value]::-webkit-progress-value{background-color:#248dad}.progress.progress-info[value]::-moz-progress-bar{background-color:#248dad}.progress.progress-info[value]::-ms-fill{background-color:#248dad}@media screen and (min-width: 0\\fffd){.progress.progress-info .progress-bar{background-color:#248dad}}.progress.progress-danger[value]::-webkit-progress-value{background-color:#bf1725}.progress.progress-danger[value]::-moz-progress-bar{background-color:#bf1725}.progress.progress-danger[value]::-ms-fill{background-color:#bf1725}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#bf1725}}.progress.progress-success[value]::-webkit-progress-value{background-color:#2d922d}.progress.progress-success[value]::-moz-progress-bar{background-color:#2d922d}.progress.progress-success[value]::-ms-fill{background-color:#2d922d}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#2d922d}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#f79a17}.progress.progress-warning[value]::-moz-progress-bar{background-color:#f79a17}.progress.progress-warning[value]::-ms-fill{background-color:#f79a17}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#f79a17}}.progress[value]::-moz-progress-bar{border-radius:0}.progress[value]::-webkit-progress-value{border-radius:0}.progress[value=\"100\"]::-moz-progress-bar{border-radius:0}.progress[value=\"100\"]::-webkit-progress-value{border-radius:0}.progress-xs{height:7px}.progress-sm{height:10px}.progress-md{height:13px}.progress-bar-info-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem;background-color:#5bc0de!important}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800px){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.wizard-step-container{background-color:#fff;box-shadow:#63636333 0 2px 8px;padding:10px}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.app-search-background{z-index:9999;margin-top:60px;padding:0;background-color:#0000004d;width:100vw;height:calc(100vh - 60px)}.app-search-result-box{height:calc(100% - 35px);overflow:hidden;margin:20px}.app-search-card{margin-top:2px;margin-bottom:10px;padding:15px;background-color:#fff;box-shadow:#06182c66 0 0 0 2px,#06182ca6 0 4px 6px -1px,#ffffff14 0 1px inset}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.mat-chip-list-wrapper input.mat-input-element,.mat-chip-list-wrapper .mat-standard-chip{margin:1px 4px 4px!important;padding-top:0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.3728;transform:translate(33.7095vw,-10px) scale(.4669);animation:fall-1 24s -24s linear infinite}@keyframes fall-1{76.536%{transform:translate(25.9721vw,76.536vh) scale(.4669)}to{transform:translate(29.8408vw,99vh) scale(.4669)}}.snow:nth-child(2){opacity:1.9778;transform:translate(16.8164vw,-10px) scale(.17);animation:fall-2 19s -7s linear infinite}@keyframes fall-2{74.007%{transform:translate(17.5615vw,74.007vh) scale(.17)}to{transform:translate(17.18895vw,99vh) scale(.17)}}.snow:nth-child(3){opacity:.9472;transform:translate(65.2934vw,-10px) scale(.4632);animation:fall-3 25s -4s linear infinite}@keyframes fall-3{76.185%{transform:translate(70.7125vw,76.185vh) scale(.4632)}to{transform:translate(68.00295vw,99vh) scale(.4632)}}.snow:nth-child(4){opacity:1.6716;transform:translate(18.8627vw,-10px) scale(.1958);animation:fall-4 26s -27s linear infinite}@keyframes fall-4{45.18%{transform:translate(9.592vw,45.18vh) scale(.1958)}to{transform:translate(14.22735vw,99vh) scale(.1958)}}.snow:nth-child(5){opacity:1.5898;transform:translate(74.3744vw,-10px) scale(.2243);animation:fall-5 16s -21s linear infinite}@keyframes fall-5{31.786%{transform:translate(84.2832vw,31.786vh) scale(.2243)}to{transform:translate(79.3288vw,99vh) scale(.2243)}}.snow:nth-child(6){opacity:.5774;transform:translate(97.4346vw,-10px) scale(.3558);animation:fall-6 24s -15s linear infinite}@keyframes fall-6{63.613%{transform:translate(106.2817vw,63.613vh) scale(.3558)}to{transform:translate(101.85815vw,99vh) scale(.3558)}}.snow:nth-child(7){opacity:.3906;transform:translate(74.0445vw,-10px) scale(.3633);animation:fall-7 29s -15s linear infinite}@keyframes fall-7{46.508%{transform:translate(75.5232vw,46.508vh) scale(.3633)}to{transform:translate(74.78385vw,99vh) scale(.3633)}}.snow:nth-child(8){opacity:1.4774;transform:translate(16.085vw,-10px) scale(.0908);animation:fall-8 12s -18s linear infinite}@keyframes fall-8{71.599%{transform:translate(15.6452vw,71.599vh) scale(.0908)}to{transform:translate(15.8651vw,99vh) scale(.0908)}}.snow:nth-child(9){opacity:.1766;transform:translate(76.8425vw,-10px) scale(.166);animation:fall-9 13s -12s linear infinite}@keyframes fall-9{33.319%{transform:translate(83.7326vw,33.319vh) scale(.166)}to{transform:translate(80.28755vw,99vh) scale(.166)}}.snow:nth-child(10){opacity:.5984;transform:translate(6.1012vw,-10px) scale(.2302);animation:fall-10 21s -3s linear infinite}@keyframes fall-10{65.842%{transform:translate(3.3988vw,65.842vh) scale(.2302)}to{transform:translate(4.75vw,99vh) scale(.2302)}}.snow:nth-child(11){opacity:1.0374;transform:translate(12.7948vw,-10px) scale(.9556);animation:fall-11 20s -5s linear infinite}@keyframes fall-11{45.677%{transform:translate(6.1285vw,45.677vh) scale(.9556)}to{transform:translate(9.46165vw,99vh) scale(.9556)}}.snow:nth-child(12){opacity:1.9178;transform:translate(52.2194vw,-10px) scale(.3957);animation:fall-12 24s -5s linear infinite}@keyframes fall-12{39.759%{transform:translate(59.0636vw,39.759vh) scale(.3957)}to{transform:translate(55.6415vw,99vh) scale(.3957)}}.snow:nth-child(13){opacity:1.2006;transform:translate(44.2828vw,-10px) scale(.0802);animation:fall-13 11s -24s linear infinite}@keyframes fall-13{79.769%{transform:translate(41.4369vw,79.769vh) scale(.0802)}to{transform:translate(42.85985vw,99vh) scale(.0802)}}.snow:nth-child(14){opacity:.8276;transform:translate(84.856vw,-10px) scale(.9905);animation:fall-14 11s -6s linear infinite}@keyframes fall-14{69.784%{transform:translate(93.5926vw,69.784vh) scale(.9905)}to{transform:translate(89.2243vw,99vh) scale(.9905)}}.snow:nth-child(15){opacity:.259;transform:translate(20.3895vw,-10px) scale(.3318);animation:fall-15 15s -11s linear infinite}@keyframes fall-15{52.832%{transform:translate(10.7689vw,52.832vh) scale(.3318)}to{transform:translate(15.5792vw,99vh) scale(.3318)}}.snow:nth-child(16){opacity:1.0824;transform:translate(28.9456vw,-10px) scale(.138);animation:fall-16 17s -14s linear infinite}@keyframes fall-16{68.127%{transform:translate(25.3255vw,68.127vh) scale(.138)}to{transform:translate(27.13555vw,99vh) scale(.138)}}.snow:nth-child(17){opacity:1.6818;transform:translate(49.8413vw,-10px) scale(.2494);animation:fall-17 11s -4s linear infinite}@keyframes fall-17{44.523%{transform:translate(50.685vw,44.523vh) scale(.2494)}to{transform:translate(50.26315vw,99vh) scale(.2494)}}.snow:nth-child(18){opacity:.593;transform:translate(72.8082vw,-10px) scale(.0669);animation:fall-18 26s -6s linear infinite}@keyframes fall-18{63.657%{transform:translate(81.6927vw,63.657vh) scale(.0669)}to{transform:translate(77.25045vw,99vh) scale(.0669)}}.snow:nth-child(19){opacity:.9066;transform:translate(41.6333vw,-10px) scale(.6333);animation:fall-19 30s -27s linear infinite}@keyframes fall-19{45.616%{transform:translate(41.3239vw,45.616vh) scale(.6333)}to{transform:translate(41.4786vw,99vh) scale(.6333)}}.snow:nth-child(20){opacity:1.3078;transform:translate(71.4501vw,-10px) scale(.2418);animation:fall-20 20s -5s linear infinite}@keyframes fall-20{70.27%{transform:translate(71.3083vw,70.27vh) scale(.2418)}to{transform:translate(71.3792vw,99vh) scale(.2418)}}.snow:nth-child(21){opacity:.2106;transform:translate(44.6853vw,-10px) scale(.1308);animation:fall-21 11s -23s linear infinite}@keyframes fall-21{51.533%{transform:translate(41.4535vw,51.533vh) scale(.1308)}to{transform:translate(43.0694vw,99vh) scale(.1308)}}.snow:nth-child(22){opacity:.9888;transform:translate(6.2337vw,-10px) scale(.4801);animation:fall-22 22s -14s linear infinite}@keyframes fall-22{66.149%{transform:translate(8.4443vw,66.149vh) scale(.4801)}to{transform:translate(7.339vw,99vh) scale(.4801)}}.snow:nth-child(23){opacity:1.5074;transform:translate(20.099vw,-10px) scale(.7065);animation:fall-23 13s -17s linear infinite}@keyframes fall-23{72.63%{transform:translate(22.6297vw,72.63vh) scale(.7065)}to{transform:translate(21.36435vw,99vh) scale(.7065)}}.snow:nth-child(24){opacity:.1882;transform:translate(18.9159vw,-10px) scale(.5806);animation:fall-24 26s -16s linear infinite}@keyframes fall-24{37.324%{transform:translate(14.0047vw,37.324vh) scale(.5806)}to{transform:translate(16.4603vw,99vh) scale(.5806)}}.snow:nth-child(25){opacity:.136;transform:translate(17.7556vw,-10px) scale(.97);animation:fall-25 27s -5s linear infinite}@keyframes fall-25{57.491%{transform:translate(9.8258vw,57.491vh) scale(.97)}to{transform:translate(13.7907vw,99vh) scale(.97)}}.snow:nth-child(26){opacity:.075;transform:translate(71.6504vw,-10px) scale(.6221);animation:fall-26 13s -23s linear infinite}@keyframes fall-26{62.808%{transform:translate(68.2175vw,62.808vh) scale(.6221)}to{transform:translate(69.93395vw,99vh) scale(.6221)}}.snow:nth-child(27){opacity:.2842;transform:translate(62.9303vw,-10px) scale(.5038);animation:fall-27 13s -30s linear infinite}@keyframes fall-27{61.286%{transform:translate(54.3846vw,61.286vh) scale(.5038)}to{transform:translate(58.65745vw,99vh) scale(.5038)}}.snow:nth-child(28){opacity:1.908;transform:translate(45.6116vw,-10px) scale(.2966);animation:fall-28 26s -29s linear infinite}@keyframes fall-28{60.126%{transform:translate(41.5455vw,60.126vh) scale(.2966)}to{transform:translate(43.57855vw,99vh) scale(.2966)}}.snow:nth-child(29){opacity:1.106;transform:translate(39.214vw,-10px) scale(.862);animation:fall-29 26s -27s linear infinite}@keyframes fall-29{57.072%{transform:translate(38.6132vw,57.072vh) scale(.862)}to{transform:translate(38.9136vw,99vh) scale(.862)}}.snow:nth-child(30){opacity:1.0022;transform:translate(88.3523vw,-10px) scale(.5403);animation:fall-30 14s -27s linear infinite}@keyframes fall-30{35.833%{transform:translate(85.6461vw,35.833vh) scale(.5403)}to{transform:translate(86.9992vw,99vh) scale(.5403)}}.snow:nth-child(31){opacity:.4034;transform:translate(50.744vw,-10px) scale(.8585);animation:fall-31 19s -27s linear infinite}@keyframes fall-31{30.738%{transform:translate(56.1637vw,30.738vh) scale(.8585)}to{transform:translate(53.45385vw,99vh) scale(.8585)}}.snow:nth-child(32){opacity:.7822;transform:translate(11.8944vw,-10px) scale(.5534);animation:fall-32 13s -28s linear infinite}@keyframes fall-32{47.86%{transform:translate(11.7074vw,47.86vh) scale(.5534)}to{transform:translate(11.8009vw,99vh) scale(.5534)}}.snow:nth-child(33){opacity:.1374;transform:translate(82.7713vw,-10px) scale(.4387);animation:fall-33 22s -30s linear infinite}@keyframes fall-33{31.396%{transform:translate(82.9299vw,31.396vh) scale(.4387)}to{transform:translate(82.8506vw,99vh) scale(.4387)}}.snow:nth-child(34){opacity:.5098;transform:translate(90.4939vw,-10px) scale(.5452);animation:fall-34 10s -1s linear infinite}@keyframes fall-34{65.435%{transform:translate(93.8913vw,65.435vh) scale(.5452)}to{transform:translate(92.1926vw,99vh) scale(.5452)}}.snow:nth-child(35){opacity:.865;transform:translate(28.7063vw,-10px) scale(.8397);animation:fall-35 10s -14s linear infinite}@keyframes fall-35{66.769%{transform:translate(26.5332vw,66.769vh) scale(.8397)}to{transform:translate(27.61975vw,99vh) scale(.8397)}}.snow:nth-child(36){opacity:.0808;transform:translate(26.4277vw,-10px) scale(.7132);animation:fall-36 14s -4s linear infinite}@keyframes fall-36{32.964%{transform:translate(28.5725vw,32.964vh) scale(.7132)}to{transform:translate(27.5001vw,99vh) scale(.7132)}}.snow:nth-child(37){opacity:1.3478;transform:translate(21.0082vw,-10px) scale(.1217);animation:fall-37 27s -26s linear infinite}@keyframes fall-37{61.57%{transform:translate(13.637vw,61.57vh) scale(.1217)}to{transform:translate(17.3226vw,99vh) scale(.1217)}}.snow:nth-child(38){opacity:.9968;transform:translate(81.8109vw,-10px) scale(.9281);animation:fall-38 25s -17s linear infinite}@keyframes fall-38{62.642%{transform:translate(72.9164vw,62.642vh) scale(.9281)}to{transform:translate(77.36365vw,99vh) scale(.9281)}}.snow:nth-child(39){opacity:.5504;transform:translate(37.9324vw,-10px) scale(.478);animation:fall-39 26s -23s linear infinite}@keyframes fall-39{57.647%{transform:translate(43.3308vw,57.647vh) scale(.478)}to{transform:translate(40.6316vw,99vh) scale(.478)}}.snow:nth-child(40){opacity:1.537;transform:translate(14.2876vw,-10px) scale(.4082);animation:fall-40 15s -10s linear infinite}@keyframes fall-40{57.216%{transform:translate(15.1815vw,57.216vh) scale(.4082)}to{transform:translate(14.73455vw,99vh) scale(.4082)}}.snow:nth-child(41){opacity:.16;transform:translate(67.7267vw,-10px) scale(.7234);animation:fall-41 24s -27s linear infinite}@keyframes fall-41{35.857%{transform:translate(73.0376vw,35.857vh) scale(.7234)}to{transform:translate(70.38215vw,99vh) scale(.7234)}}.snow:nth-child(42){opacity:1.2876;transform:translate(20.5012vw,-10px) scale(.0308);animation:fall-42 27s -10s linear infinite}@keyframes fall-42{56.327%{transform:translate(28.0233vw,56.327vh) scale(.0308)}to{transform:translate(24.26225vw,99vh) scale(.0308)}}.snow:nth-child(43){opacity:.9792;transform:translate(88.0544vw,-10px) scale(.2894);animation:fall-43 12s -23s linear infinite}@keyframes fall-43{55.727%{transform:translate(80.0599vw,55.727vh) scale(.2894)}to{transform:translate(84.05715vw,99vh) scale(.2894)}}.snow:nth-child(44){opacity:.4154;transform:translate(71.0622vw,-10px) scale(.6843);animation:fall-44 13s -18s linear infinite}@keyframes fall-44{46.985%{transform:translate(79.4548vw,46.985vh) scale(.6843)}to{transform:translate(75.2585vw,99vh) scale(.6843)}}.snow:nth-child(45){opacity:1.4258;transform:translate(20.2086vw,-10px) scale(.1567);animation:fall-45 25s -2s linear infinite}@keyframes fall-45{71.652%{transform:translate(28.4689vw,71.652vh) scale(.1567)}to{transform:translate(24.33875vw,99vh) scale(.1567)}}.snow:nth-child(46){opacity:.401;transform:translate(5.5597vw,-10px) scale(.3384);animation:fall-46 28s -2s linear infinite}@keyframes fall-46{50.171%{transform:translate(-.1609vw,50.171vh) scale(.3384)}to{transform:translate(2.6994vw,99vh) scale(.3384)}}.snow:nth-child(47){opacity:1.6654;transform:translate(41.3958vw,-10px) scale(.7558);animation:fall-47 24s -15s linear infinite}@keyframes fall-47{68.21%{transform:translate(33.4905vw,68.21vh) scale(.7558)}to{transform:translate(37.44315vw,99vh) scale(.7558)}}.snow:nth-child(48){opacity:.1342;transform:translate(4.0454vw,-10px) scale(.2928);animation:fall-48 17s -15s linear infinite}@keyframes fall-48{41.255%{transform:translate(13.9565vw,41.255vh) scale(.2928)}to{transform:translate(9.00095vw,99vh) scale(.2928)}}.snow:nth-child(49){opacity:.4644;transform:translate(47.955vw,-10px) scale(.8247);animation:fall-49 21s -22s linear infinite}@keyframes fall-49{34.225%{transform:translate(41.8884vw,34.225vh) scale(.8247)}to{transform:translate(44.9217vw,99vh) scale(.8247)}}.snow:nth-child(50){opacity:1.8612;transform:translate(84.4133vw,-10px) scale(.5282);animation:fall-50 26s -8s linear infinite}@keyframes fall-50{43.535%{transform:translate(78.8606vw,43.535vh) scale(.5282)}to{transform:translate(81.63695vw,99vh) scale(.5282)}}.snow:nth-child(51){opacity:1.5472;transform:translate(14.1369vw,-10px) scale(.5228);animation:fall-51 28s -24s linear infinite}@keyframes fall-51{66.777%{transform:translate(16.5647vw,66.777vh) scale(.5228)}to{transform:translate(15.3508vw,99vh) scale(.5228)}}.snow:nth-child(52){opacity:.4808;transform:translate(8.7539vw,-10px) scale(.1541);animation:fall-52 19s -29s linear infinite}@keyframes fall-52{58.624%{transform:translate(15.8877vw,58.624vh) scale(.1541)}to{transform:translate(12.3208vw,99vh) scale(.1541)}}.snow:nth-child(53){opacity:1.631;transform:translate(76.9256vw,-10px) scale(.7096);animation:fall-53 26s -29s linear infinite}@keyframes fall-53{45.358%{transform:translate(86.1069vw,45.358vh) scale(.7096)}to{transform:translate(81.51625vw,99vh) scale(.7096)}}.snow:nth-child(54){opacity:.539;transform:translate(34.5223vw,-10px) scale(.7021);animation:fall-54 18s -19s linear infinite}@keyframes fall-54{76.79%{transform:translate(28.413vw,76.79vh) scale(.7021)}to{transform:translate(31.46765vw,99vh) scale(.7021)}}.snow:nth-child(55){opacity:.1492;transform:translate(20.0074vw,-10px) scale(.9);animation:fall-55 23s -3s linear infinite}@keyframes fall-55{66.639%{transform:translate(29.1927vw,66.639vh) scale(.9)}to{transform:translate(24.60005vw,99vh) scale(.9)}}.snow:nth-child(56){opacity:.9868;transform:translate(57.6521vw,-10px) scale(.0106);animation:fall-56 30s -16s linear infinite}@keyframes fall-56{64.776%{transform:translate(55.3405vw,64.776vh) scale(.0106)}to{transform:translate(56.4963vw,99vh) scale(.0106)}}.snow:nth-child(57){opacity:1.329;transform:translate(33.1041vw,-10px) scale(.8831);animation:fall-57 13s -20s linear infinite}@keyframes fall-57{67.717%{transform:translate(41.4218vw,67.717vh) scale(.8831)}to{transform:translate(37.26295vw,99vh) scale(.8831)}}.snow:nth-child(58){opacity:1.9464;transform:translate(44.8595vw,-10px) scale(.5236);animation:fall-58 18s -28s linear infinite}@keyframes fall-58{67.749%{transform:translate(53.8553vw,67.749vh) scale(.5236)}to{transform:translate(49.3574vw,99vh) scale(.5236)}}.snow:nth-child(59){opacity:1.1874;transform:translate(94.947vw,-10px) scale(.2904);animation:fall-59 12s -3s linear infinite}@keyframes fall-59{75.19%{transform:translate(87.3144vw,75.19vh) scale(.2904)}to{transform:translate(91.1307vw,99vh) scale(.2904)}}.snow:nth-child(60){opacity:.6236;transform:translate(27.2028vw,-10px) scale(.8671);animation:fall-60 17s -1s linear infinite}@keyframes fall-60{79.166%{transform:translate(20.8779vw,79.166vh) scale(.8671)}to{transform:translate(24.04035vw,99vh) scale(.8671)}}.snow:nth-child(61){opacity:.6774;transform:translate(39.9026vw,-10px) scale(.8272);animation:fall-61 21s -8s linear infinite}@keyframes fall-61{72.68%{transform:translate(34.8307vw,72.68vh) scale(.8272)}to{transform:translate(37.36665vw,99vh) scale(.8272)}}.snow:nth-child(62){opacity:1.3772;transform:translate(68.6696vw,-10px) scale(.0033);animation:fall-62 25s -23s linear infinite}@keyframes fall-62{45.5%{transform:translate(68.621vw,45.5vh) scale(.0033)}to{transform:translate(68.6453vw,99vh) scale(.0033)}}.snow:nth-child(63){opacity:.1628;transform:translate(3.1182vw,-10px) scale(.0907);animation:fall-63 18s -7s linear infinite}@keyframes fall-63{42.093%{transform:translate(9.6227vw,42.093vh) scale(.0907)}to{transform:translate(6.37045vw,99vh) scale(.0907)}}.snow:nth-child(64){opacity:1.8414;transform:translate(56.4315vw,-10px) scale(.7467);animation:fall-64 18s -26s linear infinite}@keyframes fall-64{38.159%{transform:translate(53.0968vw,38.159vh) scale(.7467)}to{transform:translate(54.76415vw,99vh) scale(.7467)}}.snow:nth-child(65){opacity:1.1518;transform:translate(79.74vw,-10px) scale(.604);animation:fall-65 28s -1s linear infinite}@keyframes fall-65{33.804%{transform:translate(87.0697vw,33.804vh) scale(.604)}to{transform:translate(83.40485vw,99vh) scale(.604)}}.snow:nth-child(66){opacity:1.7674;transform:translate(7.7678vw,-10px) scale(.0186);animation:fall-66 12s -27s linear infinite}@keyframes fall-66{56.801%{transform:translate(-1.7545vw,56.801vh) scale(.0186)}to{transform:translate(3.00665vw,99vh) scale(.0186)}}.snow:nth-child(67){opacity:.1514;transform:translate(91.966vw,-10px) scale(.7936);animation:fall-67 23s -26s linear infinite}@keyframes fall-67{61.907%{transform:translate(91.4963vw,61.907vh) scale(.7936)}to{transform:translate(91.73115vw,99vh) scale(.7936)}}.snow:nth-child(68){opacity:.6212;transform:translate(25.7384vw,-10px) scale(.2036);animation:fall-68 22s -26s linear infinite}@keyframes fall-68{78.362%{transform:translate(30.1548vw,78.362vh) scale(.2036)}to{transform:translate(27.9466vw,99vh) scale(.2036)}}.snow:nth-child(69){opacity:1.2966;transform:translate(24.9777vw,-10px) scale(.032);animation:fall-69 20s -26s linear infinite}@keyframes fall-69{42.727%{transform:translate(18.2391vw,42.727vh) scale(.032)}to{transform:translate(21.6084vw,99vh) scale(.032)}}.snow:nth-child(70){opacity:1.5032;transform:translate(25.0647vw,-10px) scale(.9491);animation:fall-70 16s -17s linear infinite}@keyframes fall-70{43.421%{transform:translate(28.0002vw,43.421vh) scale(.9491)}to{transform:translate(26.53245vw,99vh) scale(.9491)}}.snow:nth-child(71){opacity:1.7724;transform:translate(16.146vw,-10px) scale(.2831);animation:fall-71 23s -10s linear infinite}@keyframes fall-71{70.254%{transform:translate(9.704vw,70.254vh) scale(.2831)}to{transform:translate(12.925vw,99vh) scale(.2831)}}.snow:nth-child(72){opacity:.2174;transform:translate(59.6294vw,-10px) scale(.4633);animation:fall-72 13s -7s linear infinite}@keyframes fall-72{49.712%{transform:translate(53.5873vw,49.712vh) scale(.4633)}to{transform:translate(56.60835vw,99vh) scale(.4633)}}.snow:nth-child(73){opacity:.5212;transform:translate(47.4954vw,-10px) scale(.4247);animation:fall-73 26s -22s linear infinite}@keyframes fall-73{39%{transform:translate(39.622vw,39vh) scale(.4247)}to{transform:translate(43.5587vw,99vh) scale(.4247)}}.snow:nth-child(74){opacity:.6488;transform:translate(80.7207vw,-10px) scale(.7051);animation:fall-74 25s -18s linear infinite}@keyframes fall-74{31.054%{transform:translate(90.6563vw,31.054vh) scale(.7051)}to{transform:translate(85.6885vw,99vh) scale(.7051)}}.snow:nth-child(75){opacity:.4364;transform:translate(29.6476vw,-10px) scale(.1626);animation:fall-75 22s -20s linear infinite}@keyframes fall-75{33.33%{transform:translate(19.9043vw,33.33vh) scale(.1626)}to{transform:translate(24.77595vw,99vh) scale(.1626)}}.snow:nth-child(76){opacity:.6818;transform:translate(84.3745vw,-10px) scale(.8487);animation:fall-76 10s -4s linear infinite}@keyframes fall-76{33.991%{transform:translate(88.8677vw,33.991vh) scale(.8487)}to{transform:translate(86.6211vw,99vh) scale(.8487)}}.snow:nth-child(77){opacity:.801;transform:translate(4.0477vw,-10px) scale(.9422);animation:fall-77 15s -19s linear infinite}@keyframes fall-77{40.687%{transform:translate(3.6147vw,40.687vh) scale(.9422)}to{transform:translate(3.8312vw,99vh) scale(.9422)}}.snow:nth-child(78){opacity:1.6506;transform:translate(51.3597vw,-10px) scale(.6741);animation:fall-78 13s -24s linear infinite}@keyframes fall-78{57.34%{transform:translate(42.6952vw,57.34vh) scale(.6741)}to{transform:translate(47.02745vw,99vh) scale(.6741)}}.snow:nth-child(79){opacity:.7912;transform:translate(19.5615vw,-10px) scale(.2747);animation:fall-79 16s -6s linear infinite}@keyframes fall-79{67.497%{transform:translate(17.7564vw,67.497vh) scale(.2747)}to{transform:translate(18.65895vw,99vh) scale(.2747)}}.snow:nth-child(80){opacity:.9544;transform:translate(98.7691vw,-10px) scale(.5171);animation:fall-80 24s -25s linear infinite}@keyframes fall-80{52.91%{transform:translate(89.5145vw,52.91vh) scale(.5171)}to{transform:translate(94.1418vw,99vh) scale(.5171)}}.snow:nth-child(81){opacity:1.8224;transform:translate(67.4887vw,-10px) scale(.428);animation:fall-81 14s -17s linear infinite}@keyframes fall-81{63.41%{transform:translate(58.8965vw,63.41vh) scale(.428)}to{transform:translate(63.1926vw,99vh) scale(.428)}}.snow:nth-child(82){opacity:1.2832;transform:translate(80.1149vw,-10px) scale(.4693);animation:fall-82 17s -16s linear infinite}@keyframes fall-82{60.027%{transform:translate(80.6028vw,60.027vh) scale(.4693)}to{transform:translate(80.35885vw,99vh) scale(.4693)}}.snow:nth-child(83){opacity:1.5402;transform:translate(82.7791vw,-10px) scale(.3119);animation:fall-83 16s -23s linear infinite}@keyframes fall-83{47.302%{transform:translate(80.9172vw,47.302vh) scale(.3119)}to{transform:translate(81.84815vw,99vh) scale(.3119)}}.snow:nth-child(84){opacity:.4256;transform:translate(12.3684vw,-10px) scale(.8109);animation:fall-84 22s -1s linear infinite}@keyframes fall-84{35.668%{transform:translate(15.2446vw,35.668vh) scale(.8109)}to{transform:translate(13.8065vw,99vh) scale(.8109)}}.snow:nth-child(85){opacity:1.718;transform:translate(24.9631vw,-10px) scale(.9694);animation:fall-85 21s -11s linear infinite}@keyframes fall-85{55.758%{transform:translate(26.7735vw,55.758vh) scale(.9694)}to{transform:translate(25.8683vw,99vh) scale(.9694)}}.snow:nth-child(86){opacity:1.0102;transform:translate(17.9787vw,-10px) scale(.0495);animation:fall-86 10s -18s linear infinite}@keyframes fall-86{69.417%{transform:translate(26.394vw,69.417vh) scale(.0495)}to{transform:translate(22.18635vw,99vh) scale(.0495)}}.snow:nth-child(87){opacity:1.8818;transform:translate(34.5882vw,-10px) scale(.4862);animation:fall-87 22s -24s linear infinite}@keyframes fall-87{57.869%{transform:translate(32.7367vw,57.869vh) scale(.4862)}to{transform:translate(33.66245vw,99vh) scale(.4862)}}.snow:nth-child(88){opacity:1.7122;transform:translate(45.4692vw,-10px) scale(.6035);animation:fall-88 24s -18s linear infinite}@keyframes fall-88{79.984%{transform:translate(52.1577vw,79.984vh) scale(.6035)}to{transform:translate(48.81345vw,99vh) scale(.6035)}}.snow:nth-child(89){opacity:.987;transform:translate(70.6672vw,-10px) scale(.7015);animation:fall-89 24s -4s linear infinite}@keyframes fall-89{39.533%{transform:translate(72.793vw,39.533vh) scale(.7015)}to{transform:translate(71.7301vw,99vh) scale(.7015)}}.snow:nth-child(90){opacity:1.892;transform:translate(48.3686vw,-10px) scale(.5887);animation:fall-90 16s -20s linear infinite}@keyframes fall-90{45.188%{transform:translate(46.3299vw,45.188vh) scale(.5887)}to{transform:translate(47.34925vw,99vh) scale(.5887)}}.snow:nth-child(91){opacity:.7078;transform:translate(29.8099vw,-10px) scale(.8508);animation:fall-91 23s -9s linear infinite}@keyframes fall-91{30.893%{transform:translate(28.442vw,30.893vh) scale(.8508)}to{transform:translate(29.12595vw,99vh) scale(.8508)}}.snow:nth-child(92){opacity:1.7388;transform:translate(9.6277vw,-10px) scale(.6981);animation:fall-92 16s -21s linear infinite}@keyframes fall-92{62.534%{transform:translate(6.5271vw,62.534vh) scale(.6981)}to{transform:translate(8.0774vw,99vh) scale(.6981)}}.snow:nth-child(93){opacity:1.1066;transform:translate(10.5456vw,-10px) scale(.7984);animation:fall-93 11s -18s linear infinite}@keyframes fall-93{75.888%{transform:translate(10.9336vw,75.888vh) scale(.7984)}to{transform:translate(10.7396vw,99vh) scale(.7984)}}.snow:nth-child(94){opacity:1.6886;transform:translate(57.9053vw,-10px) scale(.8676);animation:fall-94 11s -23s linear infinite}@keyframes fall-94{60.099%{transform:translate(65.5622vw,60.099vh) scale(.8676)}to{transform:translate(61.73375vw,99vh) scale(.8676)}}.snow:nth-child(95){opacity:.448;transform:translate(89.3597vw,-10px) scale(.3866);animation:fall-95 16s -26s linear infinite}@keyframes fall-95{34.712%{transform:translate(90.3139vw,34.712vh) scale(.3866)}to{transform:translate(89.8368vw,99vh) scale(.3866)}}.snow:nth-child(96){opacity:1.4532;transform:translate(14.3798vw,-10px) scale(.3439);animation:fall-96 12s -24s linear infinite}@keyframes fall-96{77.071%{transform:translate(10.3936vw,77.071vh) scale(.3439)}to{transform:translate(12.3867vw,99vh) scale(.3439)}}.snow:nth-child(97){opacity:.1818;transform:translate(91.2861vw,-10px) scale(.26);animation:fall-97 15s -17s linear infinite}@keyframes fall-97{51.242%{transform:translate(90.9033vw,51.242vh) scale(.26)}to{transform:translate(91.0947vw,99vh) scale(.26)}}.snow:nth-child(98){opacity:.018;transform:translate(47.2255vw,-10px) scale(.4484);animation:fall-98 23s -20s linear infinite}@keyframes fall-98{76.624%{transform:translate(37.6514vw,76.624vh) scale(.4484)}to{transform:translate(42.43845vw,99vh) scale(.4484)}}.snow:nth-child(99){opacity:.3294;transform:translate(63.1688vw,-10px) scale(.2089);animation:fall-99 11s -1s linear infinite}@keyframes fall-99{72.43%{transform:translate(60.6275vw,72.43vh) scale(.2089)}to{transform:translate(61.89815vw,99vh) scale(.2089)}}.snow:nth-child(100){opacity:1.7172;transform:translate(77.9218vw,-10px) scale(.9459);animation:fall-100 29s -20s linear infinite}@keyframes fall-100{61.046%{transform:translate(69.3811vw,61.046vh) scale(.9459)}to{transform:translate(73.65145vw,99vh) scale(.9459)}}.snow:nth-child(101){opacity:1.5512;transform:translate(57.3668vw,-10px) scale(.4091);animation:fall-101 24s -18s linear infinite}@keyframes fall-101{53.027%{transform:translate(59.253vw,53.027vh) scale(.4091)}to{transform:translate(58.3099vw,99vh) scale(.4091)}}.snow:nth-child(102){opacity:1.524;transform:translate(48.2999vw,-10px) scale(.543);animation:fall-102 22s -4s linear infinite}@keyframes fall-102{37.027%{transform:translate(42.0263vw,37.027vh) scale(.543)}to{transform:translate(45.1631vw,99vh) scale(.543)}}.snow:nth-child(103){opacity:1.3674;transform:translate(69.9384vw,-10px) scale(.7109);animation:fall-103 29s -24s linear infinite}@keyframes fall-103{78.819%{transform:translate(76.1161vw,78.819vh) scale(.7109)}to{transform:translate(73.02725vw,99vh) scale(.7109)}}.snow:nth-child(104){opacity:1.0758;transform:translate(44.0583vw,-10px) scale(.5152);animation:fall-104 25s -7s linear infinite}@keyframes fall-104{49.611%{transform:translate(50.9746vw,49.611vh) scale(.5152)}to{transform:translate(47.51645vw,99vh) scale(.5152)}}.snow:nth-child(105){opacity:1.9798;transform:translate(69.7845vw,-10px) scale(.8657);animation:fall-105 28s -13s linear infinite}@keyframes fall-105{39.397%{transform:translate(60.5871vw,39.397vh) scale(.8657)}to{transform:translate(65.1858vw,99vh) scale(.8657)}}.snow:nth-child(106){opacity:1.9334;transform:translate(36.938vw,-10px) scale(.6493);animation:fall-106 13s -19s linear infinite}@keyframes fall-106{39.432%{transform:translate(41.4774vw,39.432vh) scale(.6493)}to{transform:translate(39.2077vw,99vh) scale(.6493)}}.snow:nth-child(107){opacity:1.1406;transform:translate(22.4302vw,-10px) scale(.6177);animation:fall-107 28s -13s linear infinite}@keyframes fall-107{74.466%{transform:translate(15.6665vw,74.466vh) scale(.6177)}to{transform:translate(19.04835vw,99vh) scale(.6177)}}.snow:nth-child(108){opacity:.8044;transform:translate(80.2905vw,-10px) scale(.4267);animation:fall-108 18s -12s linear infinite}@keyframes fall-108{40.48%{transform:translate(85.2745vw,40.48vh) scale(.4267)}to{transform:translate(82.7825vw,99vh) scale(.4267)}}.snow:nth-child(109){opacity:.3756;transform:translate(9.6632vw,-10px) scale(.0509);animation:fall-109 10s -1s linear infinite}@keyframes fall-109{63.655%{transform:translate(7.8186vw,63.655vh) scale(.0509)}to{transform:translate(8.7409vw,99vh) scale(.0509)}}.snow:nth-child(110){opacity:.0298;transform:translate(79.9037vw,-10px) scale(.3355);animation:fall-110 18s -27s linear infinite}@keyframes fall-110{33.336%{transform:translate(73.2488vw,33.336vh) scale(.3355)}to{transform:translate(76.57625vw,99vh) scale(.3355)}}.snow:nth-child(111){opacity:1.354;transform:translate(47.0153vw,-10px) scale(.7856);animation:fall-111 18s -24s linear infinite}@keyframes fall-111{39.555%{transform:translate(41.6415vw,39.555vh) scale(.7856)}to{transform:translate(44.3284vw,99vh) scale(.7856)}}.snow:nth-child(112){opacity:1.023;transform:translate(88.5695vw,-10px) scale(.0821);animation:fall-112 13s -25s linear infinite}@keyframes fall-112{53.42%{transform:translate(83.6655vw,53.42vh) scale(.0821)}to{transform:translate(86.1175vw,99vh) scale(.0821)}}.snow:nth-child(113){opacity:.8608;transform:translate(4.6776vw,-10px) scale(.993);animation:fall-113 25s -20s linear infinite}@keyframes fall-113{45.03%{transform:translate(-1.2977vw,45.03vh) scale(.993)}to{transform:translate(1.68995vw,99vh) scale(.993)}}.snow:nth-child(114){opacity:.4978;transform:translate(27.6624vw,-10px) scale(.2509);animation:fall-114 19s -8s linear infinite}@keyframes fall-114{42.756%{transform:translate(17.9746vw,42.756vh) scale(.2509)}to{transform:translate(22.8185vw,99vh) scale(.2509)}}.snow:nth-child(115){opacity:.804;transform:translate(93.2102vw,-10px) scale(.8187);animation:fall-115 19s -26s linear infinite}@keyframes fall-115{47.636%{transform:translate(94.6903vw,47.636vh) scale(.8187)}to{transform:translate(93.95025vw,99vh) scale(.8187)}}.snow:nth-child(116){opacity:.0262;transform:translate(47.8204vw,-10px) scale(.6057);animation:fall-116 20s -28s linear infinite}@keyframes fall-116{58.721%{transform:translate(50.977vw,58.721vh) scale(.6057)}to{transform:translate(49.3987vw,99vh) scale(.6057)}}.snow:nth-child(117){opacity:.3044;transform:translate(94.8563vw,-10px) scale(.8913);animation:fall-117 14s -16s linear infinite}@keyframes fall-117{67.974%{transform:translate(89.5297vw,67.974vh) scale(.8913)}to{transform:translate(92.193vw,99vh) scale(.8913)}}.snow:nth-child(118){opacity:.1006;transform:translate(95.8232vw,-10px) scale(.4247);animation:fall-118 12s -28s linear infinite}@keyframes fall-118{50.883%{transform:translate(102.6937vw,50.883vh) scale(.4247)}to{transform:translate(99.25845vw,99vh) scale(.4247)}}.snow:nth-child(119){opacity:.589;transform:translate(89.0263vw,-10px) scale(.8523);animation:fall-119 17s -8s linear infinite}@keyframes fall-119{50.781%{transform:translate(80.8775vw,50.781vh) scale(.8523)}to{transform:translate(84.9519vw,99vh) scale(.8523)}}.snow:nth-child(120){opacity:1.7524;transform:translate(88.3061vw,-10px) scale(.9169);animation:fall-120 20s -11s linear infinite}@keyframes fall-120{32.716%{transform:translate(94.5031vw,32.716vh) scale(.9169)}to{transform:translate(91.4046vw,99vh) scale(.9169)}}.snow:nth-child(121){opacity:.9498;transform:translate(53.5611vw,-10px) scale(.0905);animation:fall-121 11s -8s linear infinite}@keyframes fall-121{55.91%{transform:translate(60.8242vw,55.91vh) scale(.0905)}to{transform:translate(57.19265vw,99vh) scale(.0905)}}.snow:nth-child(122){opacity:1.188;transform:translate(.5931vw,-10px) scale(.4016);animation:fall-122 10s -19s linear infinite}@keyframes fall-122{61.76%{transform:translate(-2.8032vw,61.76vh) scale(.4016)}to{transform:translate(-1.10505vw,99vh) scale(.4016)}}.snow:nth-child(123){opacity:.6256;transform:translate(84.1323vw,-10px) scale(.8051);animation:fall-123 10s -2s linear infinite}@keyframes fall-123{40.891%{transform:translate(78.6254vw,40.891vh) scale(.8051)}to{transform:translate(81.37885vw,99vh) scale(.8051)}}.snow:nth-child(124){opacity:1.2234;transform:translate(11.6853vw,-10px) scale(.3519);animation:fall-124 26s -21s linear infinite}@keyframes fall-124{34.032%{transform:translate(6.9516vw,34.032vh) scale(.3519)}to{transform:translate(9.31845vw,99vh) scale(.3519)}}.snow:nth-child(125){opacity:1.4376;transform:translate(16.8134vw,-10px) scale(.4672);animation:fall-125 19s -4s linear infinite}@keyframes fall-125{35.448%{transform:translate(7.441vw,35.448vh) scale(.4672)}to{transform:translate(12.1272vw,99vh) scale(.4672)}}.snow:nth-child(126){opacity:.5734;transform:translate(53.9947vw,-10px) scale(.1565);animation:fall-126 27s -15s linear infinite}@keyframes fall-126{41.198%{transform:translate(53.8539vw,41.198vh) scale(.1565)}to{transform:translate(53.9243vw,99vh) scale(.1565)}}.snow:nth-child(127){opacity:.7872;transform:translate(95.2573vw,-10px) scale(.1964);animation:fall-127 15s -14s linear infinite}@keyframes fall-127{54.933%{transform:translate(94.0446vw,54.933vh) scale(.1964)}to{transform:translate(94.65095vw,99vh) scale(.1964)}}.snow:nth-child(128){opacity:1.668;transform:translate(19.6517vw,-10px) scale(.8343);animation:fall-128 15s -12s linear infinite}@keyframes fall-128{69.632%{transform:translate(18.268vw,69.632vh) scale(.8343)}to{transform:translate(18.95985vw,99vh) scale(.8343)}}.snow:nth-child(129){opacity:1.958;transform:translate(84.5689vw,-10px) scale(.8702);animation:fall-129 11s -24s linear infinite}@keyframes fall-129{50.203%{transform:translate(92.2141vw,50.203vh) scale(.8702)}to{transform:translate(88.3915vw,99vh) scale(.8702)}}.snow:nth-child(130){opacity:.3114;transform:translate(.3646vw,-10px) scale(.0205);animation:fall-130 12s -17s linear infinite}@keyframes fall-130{51.755%{transform:translate(2.1806vw,51.755vh) scale(.0205)}to{transform:translate(1.2726vw,99vh) scale(.0205)}}.snow:nth-child(131){opacity:.191;transform:translate(85.3642vw,-10px) scale(.4785);animation:fall-131 22s -10s linear infinite}@keyframes fall-131{60.539%{transform:translate(81.2513vw,60.539vh) scale(.4785)}to{transform:translate(83.30775vw,99vh) scale(.4785)}}.snow:nth-child(132){opacity:.407;transform:translate(61.6694vw,-10px) scale(.0954);animation:fall-132 24s -26s linear infinite}@keyframes fall-132{48.136%{transform:translate(64.5299vw,48.136vh) scale(.0954)}to{transform:translate(63.09965vw,99vh) scale(.0954)}}.snow:nth-child(133){opacity:1.9548;transform:translate(42.1385vw,-10px) scale(.0274);animation:fall-133 23s -1s linear infinite}@keyframes fall-133{33.316%{transform:translate(39.5961vw,33.316vh) scale(.0274)}to{transform:translate(40.8673vw,99vh) scale(.0274)}}.snow:nth-child(134){opacity:.441;transform:translate(32.7744vw,-10px) scale(.2982);animation:fall-134 21s -11s linear infinite}@keyframes fall-134{68.118%{transform:translate(30.0796vw,68.118vh) scale(.2982)}to{transform:translate(31.427vw,99vh) scale(.2982)}}.snow:nth-child(135){opacity:1.7562;transform:translate(4.497vw,-10px) scale(.9668);animation:fall-135 28s -20s linear infinite}@keyframes fall-135{54.476%{transform:translate(-2.7388vw,54.476vh) scale(.9668)}to{transform:translate(.8791vw,99vh) scale(.9668)}}.snow:nth-child(136){opacity:1.6138;transform:translate(32.7684vw,-10px) scale(.8351);animation:fall-136 15s -25s linear infinite}@keyframes fall-136{44.824%{transform:translate(38.6741vw,44.824vh) scale(.8351)}to{transform:translate(35.72125vw,99vh) scale(.8351)}}.snow:nth-child(137){opacity:.9876;transform:translate(68.5454vw,-10px) scale(.3859);animation:fall-137 22s -26s linear infinite}@keyframes fall-137{55.779%{transform:translate(72.1533vw,55.779vh) scale(.3859)}to{transform:translate(70.34935vw,99vh) scale(.3859)}}.snow:nth-child(138){opacity:1.5558;transform:translate(57.673vw,-10px) scale(.0721);animation:fall-138 28s -5s linear infinite}@keyframes fall-138{64.045%{transform:translate(57.8879vw,64.045vh) scale(.0721)}to{transform:translate(57.78045vw,99vh) scale(.0721)}}.snow:nth-child(139){opacity:1.7886;transform:translate(11.4538vw,-10px) scale(.5514);animation:fall-139 12s -21s linear infinite}@keyframes fall-139{49.754%{transform:translate(19.6733vw,49.754vh) scale(.5514)}to{transform:translate(15.56355vw,99vh) scale(.5514)}}.snow:nth-child(140){opacity:.4892;transform:translate(85.1715vw,-10px) scale(.4576);animation:fall-140 17s -28s linear infinite}@keyframes fall-140{40.518%{transform:translate(76.4668vw,40.518vh) scale(.4576)}to{transform:translate(80.81915vw,99vh) scale(.4576)}}.snow:nth-child(141){opacity:1.629;transform:translate(30.9385vw,-10px) scale(.2652);animation:fall-141 23s -5s linear infinite}@keyframes fall-141{75.243%{transform:translate(40.7198vw,75.243vh) scale(.2652)}to{transform:translate(35.82915vw,99vh) scale(.2652)}}.snow:nth-child(142){opacity:.422;transform:translate(37.2989vw,-10px) scale(.2998);animation:fall-142 29s -1s linear infinite}@keyframes fall-142{66.458%{transform:translate(39.2662vw,66.458vh) scale(.2998)}to{transform:translate(38.28255vw,99vh) scale(.2998)}}.snow:nth-child(143){opacity:1.0912;transform:translate(17.9608vw,-10px) scale(.4292);animation:fall-143 19s -27s linear infinite}@keyframes fall-143{34.412%{transform:translate(19.6776vw,34.412vh) scale(.4292)}to{transform:translate(18.8192vw,99vh) scale(.4292)}}.snow:nth-child(144){opacity:.4754;transform:translate(12.8535vw,-10px) scale(.8874);animation:fall-144 14s -6s linear infinite}@keyframes fall-144{72.805%{transform:translate(13.7908vw,72.805vh) scale(.8874)}to{transform:translate(13.32215vw,99vh) scale(.8874)}}.snow:nth-child(145){opacity:.9446;transform:translate(35.4232vw,-10px) scale(.9418);animation:fall-145 21s -14s linear infinite}@keyframes fall-145{36.123%{transform:translate(34.4282vw,36.123vh) scale(.9418)}to{transform:translate(34.9257vw,99vh) scale(.9418)}}.snow:nth-child(146){opacity:1.8038;transform:translate(41.821vw,-10px) scale(.7639);animation:fall-146 27s -8s linear infinite}@keyframes fall-146{34.652%{transform:translate(47.4533vw,34.652vh) scale(.7639)}to{transform:translate(44.63715vw,99vh) scale(.7639)}}.snow:nth-child(147){opacity:1.6554;transform:translate(53.6917vw,-10px) scale(.8383);animation:fall-147 29s -23s linear infinite}@keyframes fall-147{30.79%{transform:translate(50.9776vw,30.79vh) scale(.8383)}to{transform:translate(52.33465vw,99vh) scale(.8383)}}.snow:nth-child(148){opacity:.1744;transform:translate(20.9391vw,-10px) scale(.3438);animation:fall-148 27s -29s linear infinite}@keyframes fall-148{66.437%{transform:translate(19.498vw,66.437vh) scale(.3438)}to{transform:translate(20.21855vw,99vh) scale(.3438)}}.snow:nth-child(149){opacity:1.7078;transform:translate(15.8102vw,-10px) scale(.9315);animation:fall-149 13s -15s linear infinite}@keyframes fall-149{71.72%{transform:translate(23.6743vw,71.72vh) scale(.9315)}to{transform:translate(19.74225vw,99vh) scale(.9315)}}.snow:nth-child(150){opacity:.728;transform:translate(77.0736vw,-10px) scale(.2778);animation:fall-150 12s -3s linear infinite}@keyframes fall-150{37.586%{transform:translate(68.3248vw,37.586vh) scale(.2778)}to{transform:translate(72.6992vw,99vh) scale(.2778)}}.snow:nth-child(151){opacity:.3318;transform:translate(18.441vw,-10px) scale(.8221);animation:fall-151 30s -16s linear infinite}@keyframes fall-151{54.914%{transform:translate(10.2221vw,54.914vh) scale(.8221)}to{transform:translate(14.33155vw,99vh) scale(.8221)}}.snow:nth-child(152){opacity:1.2388;transform:translate(10.5465vw,-10px) scale(.8562);animation:fall-152 19s -20s linear infinite}@keyframes fall-152{68.244%{transform:translate(12.1733vw,68.244vh) scale(.8562)}to{transform:translate(11.3599vw,99vh) scale(.8562)}}.snow:nth-child(153){opacity:.6236;transform:translate(58.6637vw,-10px) scale(.7609);animation:fall-153 12s -15s linear infinite}@keyframes fall-153{43.303%{transform:translate(61.5128vw,43.303vh) scale(.7609)}to{transform:translate(60.08825vw,99vh) scale(.7609)}}.snow:nth-child(154){opacity:1.5326;transform:translate(15.9143vw,-10px) scale(.1978);animation:fall-154 22s -14s linear infinite}@keyframes fall-154{31.539%{transform:translate(25.0891vw,31.539vh) scale(.1978)}to{transform:translate(20.5017vw,99vh) scale(.1978)}}.snow:nth-child(155){opacity:.209;transform:translate(14.2956vw,-10px) scale(.4603);animation:fall-155 27s -1s linear infinite}@keyframes fall-155{47.392%{transform:translate(6.2657vw,47.392vh) scale(.4603)}to{transform:translate(10.28065vw,99vh) scale(.4603)}}.snow:nth-child(156){opacity:1.724;transform:translate(74.1198vw,-10px) scale(.0901);animation:fall-156 12s -27s linear infinite}@keyframes fall-156{32.36%{transform:translate(82.7464vw,32.36vh) scale(.0901)}to{transform:translate(78.4331vw,99vh) scale(.0901)}}.snow:nth-child(157){opacity:1.6402;transform:translate(24.9104vw,-10px) scale(.5855);animation:fall-157 22s -7s linear infinite}@keyframes fall-157{69.756%{transform:translate(15.8705vw,69.756vh) scale(.5855)}to{transform:translate(20.39045vw,99vh) scale(.5855)}}.snow:nth-child(158){opacity:1.103;transform:translate(54.8834vw,-10px) scale(.0921);animation:fall-158 11s -13s linear infinite}@keyframes fall-158{42.468%{transform:translate(55.3087vw,42.468vh) scale(.0921)}to{transform:translate(55.09605vw,99vh) scale(.0921)}}.snow:nth-child(159){opacity:1.7482;transform:translate(74.7737vw,-10px) scale(.7505);animation:fall-159 11s -21s linear infinite}@keyframes fall-159{49.291%{transform:translate(78.699vw,49.291vh) scale(.7505)}to{transform:translate(76.73635vw,99vh) scale(.7505)}}.snow:nth-child(160){opacity:1.6288;transform:translate(58.8547vw,-10px) scale(.3811);animation:fall-160 14s -9s linear infinite}@keyframes fall-160{75.063%{transform:translate(60.0184vw,75.063vh) scale(.3811)}to{transform:translate(59.43655vw,99vh) scale(.3811)}}.snow:nth-child(161){opacity:.232;transform:translate(9.6109vw,-10px) scale(.1524);animation:fall-161 23s -5s linear infinite}@keyframes fall-161{40.251%{transform:translate(17.8024vw,40.251vh) scale(.1524)}to{transform:translate(13.70665vw,99vh) scale(.1524)}}.snow:nth-child(162){opacity:1.981;transform:translate(51.3132vw,-10px) scale(.4831);animation:fall-162 29s -29s linear infinite}@keyframes fall-162{61.69%{transform:translate(58.3896vw,61.69vh) scale(.4831)}to{transform:translate(54.8514vw,99vh) scale(.4831)}}.snow:nth-child(163){opacity:.7004;transform:translate(37.728vw,-10px) scale(.2258);animation:fall-163 25s -24s linear infinite}@keyframes fall-163{76.371%{transform:translate(38.6627vw,76.371vh) scale(.2258)}to{transform:translate(38.19535vw,99vh) scale(.2258)}}.snow:nth-child(164){opacity:1.0872;transform:translate(71.2865vw,-10px) scale(.1237);animation:fall-164 28s -3s linear infinite}@keyframes fall-164{33.29%{transform:translate(71.5254vw,33.29vh) scale(.1237)}to{transform:translate(71.40595vw,99vh) scale(.1237)}}.snow:nth-child(165){opacity:1.6604;transform:translate(14.8135vw,-10px) scale(.8969);animation:fall-165 18s -5s linear infinite}@keyframes fall-165{72.789%{transform:translate(17.3324vw,72.789vh) scale(.8969)}to{transform:translate(16.07295vw,99vh) scale(.8969)}}.snow:nth-child(166){opacity:.6456;transform:translate(44.9039vw,-10px) scale(.4944);animation:fall-166 25s -19s linear infinite}@keyframes fall-166{73.299%{transform:translate(35.2778vw,73.299vh) scale(.4944)}to{transform:translate(40.09085vw,99vh) scale(.4944)}}.snow:nth-child(167){opacity:.9732;transform:translate(76.8157vw,-10px) scale(.9348);animation:fall-167 29s -4s linear infinite}@keyframes fall-167{64.423%{transform:translate(77.9364vw,64.423vh) scale(.9348)}to{transform:translate(77.37605vw,99vh) scale(.9348)}}.snow:nth-child(168){opacity:.4768;transform:translate(88.3612vw,-10px) scale(.501);animation:fall-168 20s -24s linear infinite}@keyframes fall-168{73.738%{transform:translate(78.3759vw,73.738vh) scale(.501)}to{transform:translate(83.36855vw,99vh) scale(.501)}}.snow:nth-child(169){opacity:1.676;transform:translate(41.9738vw,-10px) scale(.2332);animation:fall-169 27s -30s linear infinite}@keyframes fall-169{53.239%{transform:translate(46.221vw,53.239vh) scale(.2332)}to{transform:translate(44.0974vw,99vh) scale(.2332)}}.snow:nth-child(170){opacity:.7744;transform:translate(2.1069vw,-10px) scale(.4636);animation:fall-170 30s -19s linear infinite}@keyframes fall-170{68.31%{transform:translate(3.1562vw,68.31vh) scale(.4636)}to{transform:translate(2.63155vw,99vh) scale(.4636)}}.snow:nth-child(171){opacity:1.4886;transform:translate(64.8235vw,-10px) scale(.5228);animation:fall-171 27s -20s linear infinite}@keyframes fall-171{39.332%{transform:translate(61.3616vw,39.332vh) scale(.5228)}to{transform:translate(63.09255vw,99vh) scale(.5228)}}.snow:nth-child(172){opacity:.88;transform:translate(33.116vw,-10px) scale(.9921);animation:fall-172 10s -26s linear infinite}@keyframes fall-172{78.977%{transform:translate(24.129vw,78.977vh) scale(.9921)}to{transform:translate(28.6225vw,99vh) scale(.9921)}}.snow:nth-child(173){opacity:1.1512;transform:translate(99.3923vw,-10px) scale(.5927);animation:fall-173 16s -29s linear infinite}@keyframes fall-173{47.279%{transform:translate(102.1913vw,47.279vh) scale(.5927)}to{transform:translate(100.7918vw,99vh) scale(.5927)}}.snow:nth-child(174){opacity:1.0446;transform:translate(93.2906vw,-10px) scale(.3654);animation:fall-174 27s -3s linear infinite}@keyframes fall-174{78.003%{transform:translate(90.7071vw,78.003vh) scale(.3654)}to{transform:translate(91.99885vw,99vh) scale(.3654)}}.snow:nth-child(175){opacity:.9258;transform:translate(14.7326vw,-10px) scale(.7621);animation:fall-175 20s -22s linear infinite}@keyframes fall-175{70.075%{transform:translate(18.7576vw,70.075vh) scale(.7621)}to{transform:translate(16.7451vw,99vh) scale(.7621)}}.snow:nth-child(176){opacity:.832;transform:translate(8.7149vw,-10px) scale(.1577);animation:fall-176 13s -30s linear infinite}@keyframes fall-176{30.608%{transform:translate(7.098vw,30.608vh) scale(.1577)}to{transform:translate(7.90645vw,99vh) scale(.1577)}}.snow:nth-child(177){opacity:.9594;transform:translate(17.4975vw,-10px) scale(.9804);animation:fall-177 29s -24s linear infinite}@keyframes fall-177{45.085%{transform:translate(21.5472vw,45.085vh) scale(.9804)}to{transform:translate(19.52235vw,99vh) scale(.9804)}}.snow:nth-child(178){opacity:1.7416;transform:translate(39.9903vw,-10px) scale(.6609);animation:fall-178 28s -4s linear infinite}@keyframes fall-178{53.654%{transform:translate(39.1426vw,53.654vh) scale(.6609)}to{transform:translate(39.56645vw,99vh) scale(.6609)}}.snow:nth-child(179){opacity:1.2732;transform:translate(78.083vw,-10px) scale(.1315);animation:fall-179 24s -5s linear infinite}@keyframes fall-179{58.977%{transform:translate(78.0617vw,58.977vh) scale(.1315)}to{transform:translate(78.07235vw,99vh) scale(.1315)}}.snow:nth-child(180){opacity:.2256;transform:translate(27.739vw,-10px) scale(.1834);animation:fall-180 19s -5s linear infinite}@keyframes fall-180{40.569%{transform:translate(23.1585vw,40.569vh) scale(.1834)}to{transform:translate(25.44875vw,99vh) scale(.1834)}}.snow:nth-child(181){opacity:.594;transform:translate(44.7136vw,-10px) scale(.0892);animation:fall-181 18s -30s linear infinite}@keyframes fall-181{49.809%{transform:translate(54.2153vw,49.809vh) scale(.0892)}to{transform:translate(49.46445vw,99vh) scale(.0892)}}.snow:nth-child(182){opacity:1.707;transform:translate(50.5028vw,-10px) scale(.2563);animation:fall-182 23s -28s linear infinite}@keyframes fall-182{56.817%{transform:translate(41.7049vw,56.817vh) scale(.2563)}to{transform:translate(46.10385vw,99vh) scale(.2563)}}.snow:nth-child(183){opacity:.0284;transform:translate(96.0901vw,-10px) scale(.2884);animation:fall-183 27s -1s linear infinite}@keyframes fall-183{64.079%{transform:translate(102.7927vw,64.079vh) scale(.2884)}to{transform:translate(99.4414vw,99vh) scale(.2884)}}.snow:nth-child(184){opacity:1.7198;transform:translate(82.8853vw,-10px) scale(.7333);animation:fall-184 25s -9s linear infinite}@keyframes fall-184{40.504%{transform:translate(75.0965vw,40.504vh) scale(.7333)}to{transform:translate(78.9909vw,99vh) scale(.7333)}}.snow:nth-child(185){opacity:1.846;transform:translate(97.3814vw,-10px) scale(.1324);animation:fall-185 11s -4s linear infinite}@keyframes fall-185{45.489%{transform:translate(99.3788vw,45.489vh) scale(.1324)}to{transform:translate(98.3801vw,99vh) scale(.1324)}}.snow:nth-child(186){opacity:.8278;transform:translate(38.9867vw,-10px) scale(.3881);animation:fall-186 14s -16s linear infinite}@keyframes fall-186{69.63%{transform:translate(32.6109vw,69.63vh) scale(.3881)}to{transform:translate(35.7988vw,99vh) scale(.3881)}}.snow:nth-child(187){opacity:1.576;transform:translate(25.5465vw,-10px) scale(.306);animation:fall-187 19s -15s linear infinite}@keyframes fall-187{47.536%{transform:translate(30.1942vw,47.536vh) scale(.306)}to{transform:translate(27.87035vw,99vh) scale(.306)}}.snow:nth-child(188){opacity:1.3732;transform:translate(52.999vw,-10px) scale(.5329);animation:fall-188 16s -20s linear infinite}@keyframes fall-188{49.395%{transform:translate(60.2045vw,49.395vh) scale(.5329)}to{transform:translate(56.60175vw,99vh) scale(.5329)}}.snow:nth-child(189){opacity:1.0836;transform:translate(95.6622vw,-10px) scale(.7349);animation:fall-189 14s -26s linear infinite}@keyframes fall-189{35.005%{transform:translate(105.6099vw,35.005vh) scale(.7349)}to{transform:translate(100.63605vw,99vh) scale(.7349)}}.snow:nth-child(190){opacity:1.9624;transform:translate(85.3053vw,-10px) scale(.4213);animation:fall-190 30s -25s linear infinite}@keyframes fall-190{76.154%{transform:translate(85.2122vw,76.154vh) scale(.4213)}to{transform:translate(85.25875vw,99vh) scale(.4213)}}.snow:nth-child(191){opacity:1.7198;transform:translate(51.2429vw,-10px) scale(.9427);animation:fall-191 17s -13s linear infinite}@keyframes fall-191{32.556%{transform:translate(55.8271vw,32.556vh) scale(.9427)}to{transform:translate(53.535vw,99vh) scale(.9427)}}.snow:nth-child(192){opacity:.5366;transform:translate(22.8527vw,-10px) scale(.112);animation:fall-192 23s -14s linear infinite}@keyframes fall-192{35.062%{transform:translate(26.0551vw,35.062vh) scale(.112)}to{transform:translate(24.4539vw,99vh) scale(.112)}}.snow:nth-child(193){opacity:.1778;transform:translate(68.1932vw,-10px) scale(.2724);animation:fall-193 10s -18s linear infinite}@keyframes fall-193{71.175%{transform:translate(77.8789vw,71.175vh) scale(.2724)}to{transform:translate(73.03605vw,99vh) scale(.2724)}}.snow:nth-child(194){opacity:1.681;transform:translate(66.2931vw,-10px) scale(.2474);animation:fall-194 26s -26s linear infinite}@keyframes fall-194{52.187%{transform:translate(72.6882vw,52.187vh) scale(.2474)}to{transform:translate(69.49065vw,99vh) scale(.2474)}}.snow:nth-child(195){opacity:1.6928;transform:translate(84.0035vw,-10px) scale(.3836);animation:fall-195 26s -12s linear infinite}@keyframes fall-195{63.547%{transform:translate(81.1473vw,63.547vh) scale(.3836)}to{transform:translate(82.5754vw,99vh) scale(.3836)}}.snow:nth-child(196){opacity:1.0494;transform:translate(54.4809vw,-10px) scale(.4405);animation:fall-196 10s -20s linear infinite}@keyframes fall-196{41.425%{transform:translate(51.621vw,41.425vh) scale(.4405)}to{transform:translate(53.05095vw,99vh) scale(.4405)}}.snow:nth-child(197){opacity:1.5528;transform:translate(96.266vw,-10px) scale(.3882);animation:fall-197 29s -28s linear infinite}@keyframes fall-197{62.778%{transform:translate(90.3701vw,62.778vh) scale(.3882)}to{transform:translate(93.31805vw,99vh) scale(.3882)}}.snow:nth-child(198){opacity:1.4898;transform:translate(69.5632vw,-10px) scale(.964);animation:fall-198 29s -8s linear infinite}@keyframes fall-198{43.426%{transform:translate(68.2024vw,43.426vh) scale(.964)}to{transform:translate(68.8828vw,99vh) scale(.964)}}.snow:nth-child(199){opacity:.4754;transform:translate(15.7072vw,-10px) scale(.409);animation:fall-199 22s -10s linear infinite}@keyframes fall-199{42.615%{transform:translate(13.8014vw,42.615vh) scale(.409)}to{transform:translate(14.7543vw,99vh) scale(.409)}}.snow:nth-child(200){opacity:1.7582;transform:translate(44.2594vw,-10px) scale(.2413);animation:fall-200 29s -28s linear infinite}@keyframes fall-200{57.039%{transform:translate(49.8492vw,57.039vh) scale(.2413)}to{transform:translate(47.0543vw,99vh) scale(.2413)}}.snow:nth-child(201){opacity:.0586;transform:translate(91.3394vw,-10px) scale(.3446);animation:fall-201 21s -30s linear infinite}@keyframes fall-201{70.778%{transform:translate(82.509vw,70.778vh) scale(.3446)}to{transform:translate(86.9242vw,99vh) scale(.3446)}}.snow:nth-child(202){opacity:.6616;transform:translate(80.6278vw,-10px) scale(.6361);animation:fall-202 14s -26s linear infinite}@keyframes fall-202{41.249%{transform:translate(87.2363vw,41.249vh) scale(.6361)}to{transform:translate(83.93205vw,99vh) scale(.6361)}}.snow:nth-child(203){opacity:1.295;transform:translate(11.2647vw,-10px) scale(.7847);animation:fall-203 13s -4s linear infinite}@keyframes fall-203{77.153%{transform:translate(7.7611vw,77.153vh) scale(.7847)}to{transform:translate(9.5129vw,99vh) scale(.7847)}}.snow:nth-child(204){opacity:.8166;transform:translate(45.7618vw,-10px) scale(.2423);animation:fall-204 18s -10s linear infinite}@keyframes fall-204{74.487%{transform:translate(41.6828vw,74.487vh) scale(.2423)}to{transform:translate(43.7223vw,99vh) scale(.2423)}}.snow:nth-child(205){opacity:1.5516;transform:translate(82.3656vw,-10px) scale(.2392);animation:fall-205 14s -2s linear infinite}@keyframes fall-205{32.405%{transform:translate(78.6556vw,32.405vh) scale(.2392)}to{transform:translate(80.5106vw,99vh) scale(.2392)}}.snow:nth-child(206){opacity:1.064;transform:translate(73.0543vw,-10px) scale(.0562);animation:fall-206 10s -18s linear infinite}@keyframes fall-206{78.681%{transform:translate(75.2837vw,78.681vh) scale(.0562)}to{transform:translate(74.169vw,99vh) scale(.0562)}}.snow:nth-child(207){opacity:.7014;transform:translate(94.716vw,-10px) scale(.4735);animation:fall-207 19s -23s linear infinite}@keyframes fall-207{77.125%{transform:translate(85.135vw,77.125vh) scale(.4735)}to{transform:translate(89.9255vw,99vh) scale(.4735)}}.snow:nth-child(208){opacity:.6716;transform:translate(80.2012vw,-10px) scale(.6549);animation:fall-208 19s -13s linear infinite}@keyframes fall-208{44.845%{transform:translate(84.3271vw,44.845vh) scale(.6549)}to{transform:translate(82.26415vw,99vh) scale(.6549)}}.snow:nth-child(209){opacity:1.3596;transform:translate(71.603vw,-10px) scale(.2645);animation:fall-209 24s -27s linear infinite}@keyframes fall-209{44.375%{transform:translate(81.0556vw,44.375vh) scale(.2645)}to{transform:translate(76.3293vw,99vh) scale(.2645)}}.snow:nth-child(210){opacity:.2794;transform:translate(43.4107vw,-10px) scale(.5459);animation:fall-210 11s -26s linear infinite}@keyframes fall-210{30.508%{transform:translate(49.2916vw,30.508vh) scale(.5459)}to{transform:translate(46.35115vw,99vh) scale(.5459)}}.snow:nth-child(211){opacity:.145;transform:translate(40.5491vw,-10px) scale(.2349);animation:fall-211 18s -18s linear infinite}@keyframes fall-211{58.906%{transform:translate(39.9227vw,58.906vh) scale(.2349)}to{transform:translate(40.2359vw,99vh) scale(.2349)}}.snow:nth-child(212){opacity:1.0076;transform:translate(1.3963vw,-10px) scale(.7896);animation:fall-212 24s -8s linear infinite}@keyframes fall-212{43.406%{transform:translate(-8.1194vw,43.406vh) scale(.7896)}to{transform:translate(-3.36155vw,99vh) scale(.7896)}}.snow:nth-child(213){opacity:1.6516;transform:translate(81.2147vw,-10px) scale(.1499);animation:fall-213 23s -21s linear infinite}@keyframes fall-213{71.238%{transform:translate(75.7591vw,71.238vh) scale(.1499)}to{transform:translate(78.4869vw,99vh) scale(.1499)}}.snow:nth-child(214){opacity:1.3416;transform:translate(71.4885vw,-10px) scale(.5643);animation:fall-214 18s -27s linear infinite}@keyframes fall-214{41.508%{transform:translate(81.0419vw,41.508vh) scale(.5643)}to{transform:translate(76.2652vw,99vh) scale(.5643)}}.snow:nth-child(215){opacity:.2442;transform:translate(9.592vw,-10px) scale(.2968);animation:fall-215 26s -15s linear infinite}@keyframes fall-215{75.372%{transform:translate(2.8221vw,75.372vh) scale(.2968)}to{transform:translate(6.20705vw,99vh) scale(.2968)}}.snow:nth-child(216){opacity:.156;transform:translate(40.5666vw,-10px) scale(.7229);animation:fall-216 15s -27s linear infinite}@keyframes fall-216{68.293%{transform:translate(38.4979vw,68.293vh) scale(.7229)}to{transform:translate(39.53225vw,99vh) scale(.7229)}}.snow:nth-child(217){opacity:1.1212;transform:translate(81.1159vw,-10px) scale(.0716);animation:fall-217 29s -30s linear infinite}@keyframes fall-217{56.855%{transform:translate(71.6109vw,56.855vh) scale(.0716)}to{transform:translate(76.3634vw,99vh) scale(.0716)}}.snow:nth-child(218){opacity:.7682;transform:translate(38.7682vw,-10px) scale(.9844);animation:fall-218 14s -28s linear infinite}@keyframes fall-218{38.587%{transform:translate(38.8623vw,38.587vh) scale(.9844)}to{transform:translate(38.81525vw,99vh) scale(.9844)}}.snow:nth-child(219){opacity:1.7014;transform:translate(15.6978vw,-10px) scale(.1521);animation:fall-219 21s -11s linear infinite}@keyframes fall-219{58.306%{transform:translate(16.5039vw,58.306vh) scale(.1521)}to{transform:translate(16.10085vw,99vh) scale(.1521)}}.snow:nth-child(220){opacity:.6004;transform:translate(4.6384vw,-10px) scale(.8649);animation:fall-220 22s -16s linear infinite}@keyframes fall-220{60.465%{transform:translate(1.5vw,60.465vh) scale(.8649)}to{transform:translate(3.0692vw,99vh) scale(.8649)}}.snow:nth-child(221){opacity:.0086;transform:translate(4.3077vw,-10px) scale(.109);animation:fall-221 12s -7s linear infinite}@keyframes fall-221{30.226%{transform:translate(-3.1302vw,30.226vh) scale(.109)}to{transform:translate(.58875vw,99vh) scale(.109)}}.snow:nth-child(222){opacity:1.2768;transform:translate(78.5926vw,-10px) scale(.3547);animation:fall-222 24s -17s linear infinite}@keyframes fall-222{30.313%{transform:translate(87.9271vw,30.313vh) scale(.3547)}to{transform:translate(83.25985vw,99vh) scale(.3547)}}.snow:nth-child(223){opacity:.5356;transform:translate(18.2256vw,-10px) scale(.9843);animation:fall-223 29s -18s linear infinite}@keyframes fall-223{76.709%{transform:translate(21.9778vw,76.709vh) scale(.9843)}to{transform:translate(20.1017vw,99vh) scale(.9843)}}.snow:nth-child(224){opacity:.2956;transform:translate(40.7329vw,-10px) scale(.7406);animation:fall-224 20s -15s linear infinite}@keyframes fall-224{30.501%{transform:translate(42.6619vw,30.501vh) scale(.7406)}to{transform:translate(41.6974vw,99vh) scale(.7406)}}.snow:nth-child(225){opacity:.0734;transform:translate(39.0503vw,-10px) scale(.4186);animation:fall-225 16s -15s linear infinite}@keyframes fall-225{72.485%{transform:translate(41.8379vw,72.485vh) scale(.4186)}to{transform:translate(40.4441vw,99vh) scale(.4186)}}.snow:nth-child(226){opacity:1.832;transform:translate(68.6992vw,-10px) scale(.8847);animation:fall-226 17s -20s linear infinite}@keyframes fall-226{42.142%{transform:translate(62.165vw,42.142vh) scale(.8847)}to{transform:translate(65.4321vw,99vh) scale(.8847)}}.snow:nth-child(227){opacity:1.648;transform:translate(71.3082vw,-10px) scale(.2069);animation:fall-227 22s -27s linear infinite}@keyframes fall-227{70.431%{transform:translate(68.3467vw,70.431vh) scale(.2069)}to{transform:translate(69.82745vw,99vh) scale(.2069)}}.snow:nth-child(228){opacity:1.7466;transform:translate(13.4286vw,-10px) scale(.9791);animation:fall-228 15s -24s linear infinite}@keyframes fall-228{37.101%{transform:translate(6.9616vw,37.101vh) scale(.9791)}to{transform:translate(10.1951vw,99vh) scale(.9791)}}.snow:nth-child(229){opacity:1.1236;transform:translate(58.1942vw,-10px) scale(.6744);animation:fall-229 10s -4s linear infinite}@keyframes fall-229{34.134%{transform:translate(58.8173vw,34.134vh) scale(.6744)}to{transform:translate(58.50575vw,99vh) scale(.6744)}}.snow:nth-child(230){opacity:.243;transform:translate(52.2738vw,-10px) scale(.5356);animation:fall-230 24s -29s linear infinite}@keyframes fall-230{76.753%{transform:translate(58.1938vw,76.753vh) scale(.5356)}to{transform:translate(55.2338vw,99vh) scale(.5356)}}.snow:nth-child(231){opacity:.5054;transform:translate(65.3517vw,-10px) scale(.5195);animation:fall-231 25s -13s linear infinite}@keyframes fall-231{67.754%{transform:translate(60.7586vw,67.754vh) scale(.5195)}to{transform:translate(63.05515vw,99vh) scale(.5195)}}.snow:nth-child(232){opacity:1.3026;transform:translate(62.0832vw,-10px) scale(.3479);animation:fall-232 22s -9s linear infinite}@keyframes fall-232{72.161%{transform:translate(62.0353vw,72.161vh) scale(.3479)}to{transform:translate(62.05925vw,99vh) scale(.3479)}}.snow:nth-child(233){opacity:1.4642;transform:translate(.8496vw,-10px) scale(.315);animation:fall-233 15s -8s linear infinite}@keyframes fall-233{79.337%{transform:translate(-4.6031vw,79.337vh) scale(.315)}to{transform:translate(-1.87675vw,99vh) scale(.315)}}.snow:nth-child(234){opacity:.8358;transform:translate(31.5577vw,-10px) scale(.8221);animation:fall-234 23s -4s linear infinite}@keyframes fall-234{46.679%{transform:translate(32.9964vw,46.679vh) scale(.8221)}to{transform:translate(32.27705vw,99vh) scale(.8221)}}.snow:nth-child(235){opacity:1.3688;transform:translate(3.4308vw,-10px) scale(.3952);animation:fall-235 20s -22s linear infinite}@keyframes fall-235{65.585%{transform:translate(1.2705vw,65.585vh) scale(.3952)}to{transform:translate(2.35065vw,99vh) scale(.3952)}}.snow:nth-child(236){opacity:1.6858;transform:translate(93.8769vw,-10px) scale(.9988);animation:fall-236 18s -14s linear infinite}@keyframes fall-236{46.044%{transform:translate(91.1513vw,46.044vh) scale(.9988)}to{transform:translate(92.5141vw,99vh) scale(.9988)}}.snow:nth-child(237){opacity:1.683;transform:translate(63.8202vw,-10px) scale(.7293);animation:fall-237 15s -18s linear infinite}@keyframes fall-237{69.093%{transform:translate(59.0656vw,69.093vh) scale(.7293)}to{transform:translate(61.4429vw,99vh) scale(.7293)}}.snow:nth-child(238){opacity:.697;transform:translate(74.908vw,-10px) scale(.212);animation:fall-238 23s -22s linear infinite}@keyframes fall-238{71.963%{transform:translate(74.7199vw,71.963vh) scale(.212)}to{transform:translate(74.81395vw,99vh) scale(.212)}}.snow:nth-child(239){opacity:1.5596;transform:translate(4.0468vw,-10px) scale(.4117);animation:fall-239 22s -21s linear infinite}@keyframes fall-239{32.486%{transform:translate(1.7865vw,32.486vh) scale(.4117)}to{transform:translate(2.91665vw,99vh) scale(.4117)}}.snow:nth-child(240){opacity:.6518;transform:translate(49.3504vw,-10px) scale(.5196);animation:fall-240 10s -28s linear infinite}@keyframes fall-240{63.8%{transform:translate(48.4904vw,63.8vh) scale(.5196)}to{transform:translate(48.9204vw,99vh) scale(.5196)}}.snow:nth-child(241){opacity:.082;transform:translate(34.563vw,-10px) scale(.7676);animation:fall-241 15s -28s linear infinite}@keyframes fall-241{62.688%{transform:translate(29.4846vw,62.688vh) scale(.7676)}to{transform:translate(32.0238vw,99vh) scale(.7676)}}.snow:nth-child(242){opacity:1.416;transform:translate(91.0523vw,-10px) scale(.8965);animation:fall-242 30s -17s linear infinite}@keyframes fall-242{55.412%{transform:translate(92.0078vw,55.412vh) scale(.8965)}to{transform:translate(91.53005vw,99vh) scale(.8965)}}.snow:nth-child(243){opacity:.7542;transform:translate(47.8145vw,-10px) scale(.8168);animation:fall-243 21s -4s linear infinite}@keyframes fall-243{63.804%{transform:translate(54.0644vw,63.804vh) scale(.8168)}to{transform:translate(50.93945vw,99vh) scale(.8168)}}.snow:nth-child(244){opacity:.7226;transform:translate(65.8544vw,-10px) scale(.9408);animation:fall-244 20s -4s linear infinite}@keyframes fall-244{45.44%{transform:translate(56.5762vw,45.44vh) scale(.9408)}to{transform:translate(61.2153vw,99vh) scale(.9408)}}.snow:nth-child(245){opacity:1.1172;transform:translate(35.1332vw,-10px) scale(.4946);animation:fall-245 16s -16s linear infinite}@keyframes fall-245{73.477%{transform:translate(40.4893vw,73.477vh) scale(.4946)}to{transform:translate(37.81125vw,99vh) scale(.4946)}}.snow:nth-child(246){opacity:1.0926;transform:translate(16.5594vw,-10px) scale(.6161);animation:fall-246 15s -17s linear infinite}@keyframes fall-246{36.199%{transform:translate(12.6191vw,36.199vh) scale(.6161)}to{transform:translate(14.58925vw,99vh) scale(.6161)}}.snow:nth-child(247){opacity:1.3948;transform:translate(19.1054vw,-10px) scale(.4608);animation:fall-247 22s -27s linear infinite}@keyframes fall-247{55.489%{transform:translate(14.2757vw,55.489vh) scale(.4608)}to{transform:translate(16.69055vw,99vh) scale(.4608)}}.snow:nth-child(248){opacity:.9812;transform:translate(27.9587vw,-10px) scale(.0895);animation:fall-248 17s -8s linear infinite}@keyframes fall-248{51.76%{transform:translate(23.5143vw,51.76vh) scale(.0895)}to{transform:translate(25.7365vw,99vh) scale(.0895)}}.snow:nth-child(249){opacity:1.465;transform:translate(.2276vw,-10px) scale(.9541);animation:fall-249 25s -22s linear infinite}@keyframes fall-249{72.64%{transform:translate(3.7048vw,72.64vh) scale(.9541)}to{transform:translate(1.9662vw,99vh) scale(.9541)}}.snow:nth-child(250){opacity:1.1198;transform:translate(36.8631vw,-10px) scale(.8964);animation:fall-250 15s -5s linear infinite}@keyframes fall-250{77.901%{transform:translate(39.5996vw,77.901vh) scale(.8964)}to{transform:translate(38.23135vw,99vh) scale(.8964)}}.snow:nth-child(251){opacity:.1038;transform:translate(27.0158vw,-10px) scale(.4422);animation:fall-251 16s -2s linear infinite}@keyframes fall-251{72.688%{transform:translate(21.2109vw,72.688vh) scale(.4422)}to{transform:translate(24.11335vw,99vh) scale(.4422)}}.snow:nth-child(252){opacity:.0232;transform:translate(97.3093vw,-10px) scale(.6023);animation:fall-252 24s -14s linear infinite}@keyframes fall-252{61.572%{transform:translate(91.8303vw,61.572vh) scale(.6023)}to{transform:translate(94.5698vw,99vh) scale(.6023)}}.snow:nth-child(253){opacity:.6574;transform:translate(18.001vw,-10px) scale(.866);animation:fall-253 30s -18s linear infinite}@keyframes fall-253{37.407%{transform:translate(9.2592vw,37.407vh) scale(.866)}to{transform:translate(13.6301vw,99vh) scale(.866)}}.snow:nth-child(254){opacity:1.4608;transform:translate(85.271vw,-10px) scale(.8293);animation:fall-254 22s -5s linear infinite}@keyframes fall-254{70.002%{transform:translate(79.7014vw,70.002vh) scale(.8293)}to{transform:translate(82.4862vw,99vh) scale(.8293)}}.snow:nth-child(255){opacity:1.1596;transform:translate(5.1156vw,-10px) scale(.2956);animation:fall-255 14s -12s linear infinite}@keyframes fall-255{37.153%{transform:translate(-.1134vw,37.153vh) scale(.2956)}to{transform:translate(2.5011vw,99vh) scale(.2956)}}.snow:nth-child(256){opacity:.827;transform:translate(80.1196vw,-10px) scale(.876);animation:fall-256 12s -18s linear infinite}@keyframes fall-256{46.227%{transform:translate(75.4824vw,46.227vh) scale(.876)}to{transform:translate(77.801vw,99vh) scale(.876)}}.snow:nth-child(257){opacity:.538;transform:translate(78.6498vw,-10px) scale(.1258);animation:fall-257 13s -13s linear infinite}@keyframes fall-257{66.637%{transform:translate(79.7386vw,66.637vh) scale(.1258)}to{transform:translate(79.1942vw,99vh) scale(.1258)}}.snow:nth-child(258){opacity:1.9784;transform:translate(75.3435vw,-10px) scale(.9979);animation:fall-258 14s -21s linear infinite}@keyframes fall-258{70.003%{transform:translate(75.1048vw,70.003vh) scale(.9979)}to{transform:translate(75.22415vw,99vh) scale(.9979)}}.snow:nth-child(259){opacity:1.9684;transform:translate(24.0015vw,-10px) scale(.7452);animation:fall-259 17s -28s linear infinite}@keyframes fall-259{56.172%{transform:translate(27.0896vw,56.172vh) scale(.7452)}to{transform:translate(25.54555vw,99vh) scale(.7452)}}.snow:nth-child(260){opacity:1.2208;transform:translate(24.0481vw,-10px) scale(.1125);animation:fall-260 10s -13s linear infinite}@keyframes fall-260{74.44%{transform:translate(30.3056vw,74.44vh) scale(.1125)}to{transform:translate(27.17685vw,99vh) scale(.1125)}}.snow:nth-child(261){opacity:1.187;transform:translate(25.8236vw,-10px) scale(.2643);animation:fall-261 27s -29s linear infinite}@keyframes fall-261{64.677%{transform:translate(20.4706vw,64.677vh) scale(.2643)}to{transform:translate(23.1471vw,99vh) scale(.2643)}}.snow:nth-child(262){opacity:1.0126;transform:translate(56.4092vw,-10px) scale(.1654);animation:fall-262 10s -15s linear infinite}@keyframes fall-262{40.339%{transform:translate(54.451vw,40.339vh) scale(.1654)}to{transform:translate(55.4301vw,99vh) scale(.1654)}}.snow:nth-child(263){opacity:.3224;transform:translate(61.7891vw,-10px) scale(.2522);animation:fall-263 19s -5s linear infinite}@keyframes fall-263{57.134%{transform:translate(58.3903vw,57.134vh) scale(.2522)}to{transform:translate(60.0897vw,99vh) scale(.2522)}}.snow:nth-child(264){opacity:.3836;transform:translate(97.1673vw,-10px) scale(.5966);animation:fall-264 14s -23s linear infinite}@keyframes fall-264{67.339%{transform:translate(92.5365vw,67.339vh) scale(.5966)}to{transform:translate(94.8519vw,99vh) scale(.5966)}}.snow:nth-child(265){opacity:1.4754;transform:translate(43.3869vw,-10px) scale(.0505);animation:fall-265 19s -6s linear infinite}@keyframes fall-265{68.276%{transform:translate(46.3722vw,68.276vh) scale(.0505)}to{transform:translate(44.87955vw,99vh) scale(.0505)}}.snow:nth-child(266){opacity:.582;transform:translate(25.573vw,-10px) scale(.2671);animation:fall-266 27s -27s linear infinite}@keyframes fall-266{57.555%{transform:translate(20.4017vw,57.555vh) scale(.2671)}to{transform:translate(22.98735vw,99vh) scale(.2671)}}.snow:nth-child(267){opacity:.815;transform:translate(18.5312vw,-10px) scale(.1844);animation:fall-267 22s -4s linear infinite}@keyframes fall-267{71.392%{transform:translate(12.7236vw,71.392vh) scale(.1844)}to{transform:translate(15.6274vw,99vh) scale(.1844)}}.snow:nth-child(268){opacity:1.836;transform:translate(29.8468vw,-10px) scale(.7657);animation:fall-268 15s -30s linear infinite}@keyframes fall-268{60.08%{transform:translate(24.993vw,60.08vh) scale(.7657)}to{transform:translate(27.4199vw,99vh) scale(.7657)}}.snow:nth-child(269){opacity:1.3586;transform:translate(12.6382vw,-10px) scale(.4236);animation:fall-269 17s -14s linear infinite}@keyframes fall-269{40.769%{transform:translate(3.8665vw,40.769vh) scale(.4236)}to{transform:translate(8.25235vw,99vh) scale(.4236)}}.snow:nth-child(270){opacity:1.8586;transform:translate(85.0906vw,-10px) scale(.5933);animation:fall-270 24s -27s linear infinite}@keyframes fall-270{46.581%{transform:translate(76.2946vw,46.581vh) scale(.5933)}to{transform:translate(80.6926vw,99vh) scale(.5933)}}.snow:nth-child(271){opacity:1.6252;transform:translate(73.2592vw,-10px) scale(.8951);animation:fall-271 30s -16s linear infinite}@keyframes fall-271{53.192%{transform:translate(69.5311vw,53.192vh) scale(.8951)}to{transform:translate(71.39515vw,99vh) scale(.8951)}}.snow:nth-child(272){opacity:.664;transform:translate(50.6385vw,-10px) scale(.735);animation:fall-272 16s -2s linear infinite}@keyframes fall-272{74.432%{transform:translate(46.8904vw,74.432vh) scale(.735)}to{transform:translate(48.76445vw,99vh) scale(.735)}}.snow:nth-child(273){opacity:.1222;transform:translate(18.9012vw,-10px) scale(.2488);animation:fall-273 17s -21s linear infinite}@keyframes fall-273{46.19%{transform:translate(12.0913vw,46.19vh) scale(.2488)}to{transform:translate(15.49625vw,99vh) scale(.2488)}}.snow:nth-child(274){opacity:1.8416;transform:translate(35.6354vw,-10px) scale(.2307);animation:fall-274 29s -5s linear infinite}@keyframes fall-274{57.481%{transform:translate(29.4458vw,57.481vh) scale(.2307)}to{transform:translate(32.5406vw,99vh) scale(.2307)}}.snow:nth-child(275){opacity:.832;transform:translate(34.0227vw,-10px) scale(.4407);animation:fall-275 18s -10s linear infinite}@keyframes fall-275{53.432%{transform:translate(35.7011vw,53.432vh) scale(.4407)}to{transform:translate(34.8619vw,99vh) scale(.4407)}}.snow:nth-child(276){opacity:.3264;transform:translate(58.8532vw,-10px) scale(.1546);animation:fall-276 21s -21s linear infinite}@keyframes fall-276{74.284%{transform:translate(53.6491vw,74.284vh) scale(.1546)}to{transform:translate(56.25115vw,99vh) scale(.1546)}}.snow:nth-child(277){opacity:.4118;transform:translate(52.1806vw,-10px) scale(.9417);animation:fall-277 11s -13s linear infinite}@keyframes fall-277{39.076%{transform:translate(46.7565vw,39.076vh) scale(.9417)}to{transform:translate(49.46855vw,99vh) scale(.9417)}}.snow:nth-child(278){opacity:1.916;transform:translate(11.4112vw,-10px) scale(.9534);animation:fall-278 19s -21s linear infinite}@keyframes fall-278{49.723%{transform:translate(21.1279vw,49.723vh) scale(.9534)}to{transform:translate(16.26955vw,99vh) scale(.9534)}}.snow:nth-child(279){opacity:.195;transform:translate(47.4824vw,-10px) scale(.4916);animation:fall-279 27s -16s linear infinite}@keyframes fall-279{57.606%{transform:translate(56.3374vw,57.606vh) scale(.4916)}to{transform:translate(51.9099vw,99vh) scale(.4916)}}.snow:nth-child(280){opacity:.3524;transform:translate(97.1955vw,-10px) scale(.5428);animation:fall-280 21s -25s linear infinite}@keyframes fall-280{77.491%{transform:translate(106.6974vw,77.491vh) scale(.5428)}to{transform:translate(101.94645vw,99vh) scale(.5428)}}.snow:nth-child(281){opacity:.411;transform:translate(65.895vw,-10px) scale(.5199);animation:fall-281 18s -27s linear infinite}@keyframes fall-281{51.658%{transform:translate(68.3492vw,51.658vh) scale(.5199)}to{transform:translate(67.1221vw,99vh) scale(.5199)}}.snow:nth-child(282){opacity:1.5896;transform:translate(89.5709vw,-10px) scale(.9253);animation:fall-282 20s -19s linear infinite}@keyframes fall-282{52.61%{transform:translate(90.0764vw,52.61vh) scale(.9253)}to{transform:translate(89.82365vw,99vh) scale(.9253)}}.snow:nth-child(283){opacity:.3438;transform:translate(54.9692vw,-10px) scale(.9715);animation:fall-283 23s -8s linear infinite}@keyframes fall-283{56.598%{transform:translate(56.4654vw,56.598vh) scale(.9715)}to{transform:translate(55.7173vw,99vh) scale(.9715)}}.snow:nth-child(284){opacity:.6762;transform:translate(35.63vw,-10px) scale(.7225);animation:fall-284 30s -17s linear infinite}@keyframes fall-284{46.847%{transform:translate(28.0222vw,46.847vh) scale(.7225)}to{transform:translate(31.8261vw,99vh) scale(.7225)}}.snow:nth-child(285){opacity:.9778;transform:translate(17.4778vw,-10px) scale(.474);animation:fall-285 10s -16s linear infinite}@keyframes fall-285{47.442%{transform:translate(23.0758vw,47.442vh) scale(.474)}to{transform:translate(20.2768vw,99vh) scale(.474)}}.snow:nth-child(286){opacity:.0028;transform:translate(24.0075vw,-10px) scale(.3922);animation:fall-286 20s -22s linear infinite}@keyframes fall-286{52.336%{transform:translate(24.8124vw,52.336vh) scale(.3922)}to{transform:translate(24.40995vw,99vh) scale(.3922)}}.snow:nth-child(287){opacity:.282;transform:translate(97.5395vw,-10px) scale(.5847);animation:fall-287 12s -5s linear infinite}@keyframes fall-287{59.077%{transform:translate(95.3793vw,59.077vh) scale(.5847)}to{transform:translate(96.4594vw,99vh) scale(.5847)}}.snow:nth-child(288){opacity:1.0286;transform:translate(40.0933vw,-10px) scale(.7397);animation:fall-288 18s -26s linear infinite}@keyframes fall-288{42.097%{transform:translate(39.4715vw,42.097vh) scale(.7397)}to{transform:translate(39.7824vw,99vh) scale(.7397)}}.snow:nth-child(289){opacity:1.2968;transform:translate(16.8962vw,-10px) scale(.5073);animation:fall-289 15s -9s linear infinite}@keyframes fall-289{69.825%{transform:translate(13.0617vw,69.825vh) scale(.5073)}to{transform:translate(14.97895vw,99vh) scale(.5073)}}.snow:nth-child(290){opacity:.7364;transform:translate(65.651vw,-10px) scale(.2863);animation:fall-290 18s -5s linear infinite}@keyframes fall-290{44.477%{transform:translate(59.0502vw,44.477vh) scale(.2863)}to{transform:translate(62.3506vw,99vh) scale(.2863)}}.snow:nth-child(291){opacity:1.4572;transform:translate(29.2901vw,-10px) scale(.7714);animation:fall-291 30s -24s linear infinite}@keyframes fall-291{47.671%{transform:translate(33.9318vw,47.671vh) scale(.7714)}to{transform:translate(31.61095vw,99vh) scale(.7714)}}.snow:nth-child(292){opacity:1.0532;transform:translate(55.121vw,-10px) scale(.1632);animation:fall-292 21s -25s linear infinite}@keyframes fall-292{52.735%{transform:translate(45.2757vw,52.735vh) scale(.1632)}to{transform:translate(50.19835vw,99vh) scale(.1632)}}.snow:nth-child(293){opacity:1.8292;transform:translate(36.7366vw,-10px) scale(.72);animation:fall-293 21s -21s linear infinite}@keyframes fall-293{53.349%{transform:translate(42.0131vw,53.349vh) scale(.72)}to{transform:translate(39.37485vw,99vh) scale(.72)}}.snow:nth-child(294){opacity:.6756;transform:translate(81.4388vw,-10px) scale(.9621);animation:fall-294 24s -26s linear infinite}@keyframes fall-294{64.66%{transform:translate(88.338vw,64.66vh) scale(.9621)}to{transform:translate(84.8884vw,99vh) scale(.9621)}}.snow:nth-child(295){opacity:1.0434;transform:translate(85.0465vw,-10px) scale(.2813);animation:fall-295 10s -26s linear infinite}@keyframes fall-295{69.535%{transform:translate(85.5868vw,69.535vh) scale(.2813)}to{transform:translate(85.31665vw,99vh) scale(.2813)}}.snow:nth-child(296){opacity:.9306;transform:translate(26.4149vw,-10px) scale(.9686);animation:fall-296 21s -15s linear infinite}@keyframes fall-296{66.272%{transform:translate(31.8352vw,66.272vh) scale(.9686)}to{transform:translate(29.12505vw,99vh) scale(.9686)}}.snow:nth-child(297){opacity:1.1418;transform:translate(55.626vw,-10px) scale(.6033);animation:fall-297 18s -25s linear infinite}@keyframes fall-297{71.375%{transform:translate(61.7229vw,71.375vh) scale(.6033)}to{transform:translate(58.67445vw,99vh) scale(.6033)}}.snow:nth-child(298){opacity:1.9638;transform:translate(74.3555vw,-10px) scale(.1208);animation:fall-298 26s -1s linear infinite}@keyframes fall-298{60.766%{transform:translate(65.6415vw,60.766vh) scale(.1208)}to{transform:translate(69.9985vw,99vh) scale(.1208)}}.snow:nth-child(299){opacity:.876;transform:translate(31.7436vw,-10px) scale(.0185);animation:fall-299 30s -6s linear infinite}@keyframes fall-299{59.888%{transform:translate(30.1451vw,59.888vh) scale(.0185)}to{transform:translate(30.94435vw,99vh) scale(.0185)}}.snow:nth-child(300){opacity:1.6456;transform:translate(41.2816vw,-10px) scale(.68);animation:fall-300 26s -7s linear infinite}@keyframes fall-300{47.674%{transform:translate(41.1002vw,47.674vh) scale(.68)}to{transform:translate(41.1909vw,99vh) scale(.68)}}.snow:nth-child(301){opacity:.7382;transform:translate(15.6782vw,-10px) scale(.9673);animation:fall-301 18s -12s linear infinite}@keyframes fall-301{40.522%{transform:translate(14.0834vw,40.522vh) scale(.9673)}to{transform:translate(14.8808vw,99vh) scale(.9673)}}.snow:nth-child(302){opacity:.22;transform:translate(71.7542vw,-10px) scale(.7085);animation:fall-302 11s -9s linear infinite}@keyframes fall-302{40.968%{transform:translate(81.6524vw,40.968vh) scale(.7085)}to{transform:translate(76.7033vw,99vh) scale(.7085)}}.snow:nth-child(303){opacity:1.5278;transform:translate(12.0804vw,-10px) scale(.0377);animation:fall-303 18s -12s linear infinite}@keyframes fall-303{62.26%{transform:translate(15.9262vw,62.26vh) scale(.0377)}to{transform:translate(14.0033vw,99vh) scale(.0377)}}.snow:nth-child(304){opacity:.7796;transform:translate(69.3567vw,-10px) scale(.5342);animation:fall-304 16s -30s linear infinite}@keyframes fall-304{79.399%{transform:translate(60.2753vw,79.399vh) scale(.5342)}to{transform:translate(64.816vw,99vh) scale(.5342)}}.snow:nth-child(305){opacity:.8774;transform:translate(3.5853vw,-10px) scale(.6085);animation:fall-305 16s -11s linear infinite}@keyframes fall-305{43.178%{transform:translate(3.3701vw,43.178vh) scale(.6085)}to{transform:translate(3.4777vw,99vh) scale(.6085)}}.snow:nth-child(306){opacity:1.1914;transform:translate(93.2858vw,-10px) scale(.1892);animation:fall-306 13s -16s linear infinite}@keyframes fall-306{68.642%{transform:translate(98.4915vw,68.642vh) scale(.1892)}to{transform:translate(95.88865vw,99vh) scale(.1892)}}.snow:nth-child(307){opacity:.533;transform:translate(76.0716vw,-10px) scale(.8939);animation:fall-307 14s -25s linear infinite}@keyframes fall-307{45.851%{transform:translate(79.3375vw,45.851vh) scale(.8939)}to{transform:translate(77.70455vw,99vh) scale(.8939)}}.snow:nth-child(308){opacity:.8978;transform:translate(59.4253vw,-10px) scale(.2833);animation:fall-308 24s -7s linear infinite}@keyframes fall-308{50.085%{transform:translate(62.4362vw,50.085vh) scale(.2833)}to{transform:translate(60.93075vw,99vh) scale(.2833)}}.snow:nth-child(309){opacity:.0324;transform:translate(40.3237vw,-10px) scale(.4597);animation:fall-309 30s -13s linear infinite}@keyframes fall-309{57.625%{transform:translate(38.2715vw,57.625vh) scale(.4597)}to{transform:translate(39.2976vw,99vh) scale(.4597)}}.snow:nth-child(310){opacity:1.6498;transform:translate(18.1656vw,-10px) scale(.6139);animation:fall-310 24s -23s linear infinite}@keyframes fall-310{32.395%{transform:translate(16.9401vw,32.395vh) scale(.6139)}to{transform:translate(17.55285vw,99vh) scale(.6139)}}.snow:nth-child(311){opacity:.1236;transform:translate(97.9465vw,-10px) scale(.7465);animation:fall-311 28s -17s linear infinite}@keyframes fall-311{37.436%{transform:translate(98.1947vw,37.436vh) scale(.7465)}to{transform:translate(98.0706vw,99vh) scale(.7465)}}.snow:nth-child(312){opacity:1.779;transform:translate(44.5958vw,-10px) scale(.869);animation:fall-312 11s -22s linear infinite}@keyframes fall-312{32.933%{transform:translate(36.1566vw,32.933vh) scale(.869)}to{transform:translate(40.3762vw,99vh) scale(.869)}}.snow:nth-child(313){opacity:.1836;transform:translate(34.0191vw,-10px) scale(.0995);animation:fall-313 10s -17s linear infinite}@keyframes fall-313{46.876%{transform:translate(33.1035vw,46.876vh) scale(.0995)}to{transform:translate(33.5613vw,99vh) scale(.0995)}}.snow:nth-child(314){opacity:1.3554;transform:translate(26.0746vw,-10px) scale(.634);animation:fall-314 29s -2s linear infinite}@keyframes fall-314{41.587%{transform:translate(27.3641vw,41.587vh) scale(.634)}to{transform:translate(26.71935vw,99vh) scale(.634)}}.snow:nth-child(315){opacity:1.3536;transform:translate(58.9357vw,-10px) scale(.5423);animation:fall-315 28s -12s linear infinite}@keyframes fall-315{39.689%{transform:translate(59.5593vw,39.689vh) scale(.5423)}to{transform:translate(59.2475vw,99vh) scale(.5423)}}.snow:nth-child(316){opacity:1.2254;transform:translate(51.0576vw,-10px) scale(.3795);animation:fall-316 25s -19s linear infinite}@keyframes fall-316{69.5%{transform:translate(49.0634vw,69.5vh) scale(.3795)}to{transform:translate(50.0605vw,99vh) scale(.3795)}}.snow:nth-child(317){opacity:1.2036;transform:translate(97.281vw,-10px) scale(.8813);animation:fall-317 11s -10s linear infinite}@keyframes fall-317{63.461%{transform:translate(99.2758vw,63.461vh) scale(.8813)}to{transform:translate(98.2784vw,99vh) scale(.8813)}}.snow:nth-child(318){opacity:.809;transform:translate(99.4606vw,-10px) scale(.5088);animation:fall-318 21s -1s linear infinite}@keyframes fall-318{55.175%{transform:translate(92.4412vw,55.175vh) scale(.5088)}to{transform:translate(95.9509vw,99vh) scale(.5088)}}.snow:nth-child(319){opacity:.382;transform:translate(68.2819vw,-10px) scale(.2856);animation:fall-319 21s -6s linear infinite}@keyframes fall-319{45.757%{transform:translate(69.6062vw,45.757vh) scale(.2856)}to{transform:translate(68.94405vw,99vh) scale(.2856)}}.snow:nth-child(320){opacity:1.5782;transform:translate(19.0042vw,-10px) scale(.2872);animation:fall-320 18s -26s linear infinite}@keyframes fall-320{76.894%{transform:translate(22.067vw,76.894vh) scale(.2872)}to{transform:translate(20.5356vw,99vh) scale(.2872)}}.snow:nth-child(321){opacity:1.4878;transform:translate(70.604vw,-10px) scale(.1025);animation:fall-321 27s -3s linear infinite}@keyframes fall-321{65.998%{transform:translate(78.21vw,65.998vh) scale(.1025)}to{transform:translate(74.407vw,99vh) scale(.1025)}}.snow:nth-child(322){opacity:1.1774;transform:translate(50.0251vw,-10px) scale(.7743);animation:fall-322 13s -12s linear infinite}@keyframes fall-322{46.407%{transform:translate(50.3727vw,46.407vh) scale(.7743)}to{transform:translate(50.1989vw,99vh) scale(.7743)}}.snow:nth-child(323){opacity:.3972;transform:translate(59.812vw,-10px) scale(.9365);animation:fall-323 11s -14s linear infinite}@keyframes fall-323{61.544%{transform:translate(63.1923vw,61.544vh) scale(.9365)}to{transform:translate(61.50215vw,99vh) scale(.9365)}}.snow:nth-child(324){opacity:1.0898;transform:translate(4.438vw,-10px) scale(.3309);animation:fall-324 25s -27s linear infinite}@keyframes fall-324{34.871%{transform:translate(1.9746vw,34.871vh) scale(.3309)}to{transform:translate(3.2063vw,99vh) scale(.3309)}}.snow:nth-child(325){opacity:1.2292;transform:translate(28.3074vw,-10px) scale(.2039);animation:fall-325 19s -18s linear infinite}@keyframes fall-325{76.497%{transform:translate(24.8077vw,76.497vh) scale(.2039)}to{transform:translate(26.55755vw,99vh) scale(.2039)}}.snow:nth-child(326){opacity:1.5718;transform:translate(60.8697vw,-10px) scale(.3124);animation:fall-326 13s -7s linear infinite}@keyframes fall-326{54.212%{transform:translate(58.4107vw,54.212vh) scale(.3124)}to{transform:translate(59.6402vw,99vh) scale(.3124)}}.snow:nth-child(327){opacity:1.8386;transform:translate(55.7833vw,-10px) scale(.9519);animation:fall-327 16s -12s linear infinite}@keyframes fall-327{76.022%{transform:translate(58.2177vw,76.022vh) scale(.9519)}to{transform:translate(57.0005vw,99vh) scale(.9519)}}.snow:nth-child(328){opacity:1.2832;transform:translate(84.5592vw,-10px) scale(.4695);animation:fall-328 13s -12s linear infinite}@keyframes fall-328{62.608%{transform:translate(85.5358vw,62.608vh) scale(.4695)}to{transform:translate(85.0475vw,99vh) scale(.4695)}}.snow:nth-child(329){opacity:.355;transform:translate(31.5606vw,-10px) scale(.4968);animation:fall-329 18s -23s linear infinite}@keyframes fall-329{36.155%{transform:translate(41.3314vw,36.155vh) scale(.4968)}to{transform:translate(36.446vw,99vh) scale(.4968)}}.snow:nth-child(330){opacity:1.7736;transform:translate(68.0036vw,-10px) scale(.7522);animation:fall-330 20s -27s linear infinite}@keyframes fall-330{67.756%{transform:translate(63.7682vw,67.756vh) scale(.7522)}to{transform:translate(65.8859vw,99vh) scale(.7522)}}.snow:nth-child(331){opacity:1.1838;transform:translate(9.4596vw,-10px) scale(.7469);animation:fall-331 13s -27s linear infinite}@keyframes fall-331{58.742%{transform:translate(10.4457vw,58.742vh) scale(.7469)}to{transform:translate(9.95265vw,99vh) scale(.7469)}}.snow:nth-child(332){opacity:1.1006;transform:translate(7.4721vw,-10px) scale(.3825);animation:fall-332 26s -3s linear infinite}@keyframes fall-332{54.545%{transform:translate(.3714vw,54.545vh) scale(.3825)}to{transform:translate(3.92175vw,99vh) scale(.3825)}}.snow:nth-child(333){opacity:1.9276;transform:translate(25.9252vw,-10px) scale(.1584);animation:fall-333 23s -15s linear infinite}@keyframes fall-333{47.545%{transform:translate(32.1348vw,47.545vh) scale(.1584)}to{transform:translate(29.03vw,99vh) scale(.1584)}}.snow:nth-child(334){opacity:.4512;transform:translate(59.6597vw,-10px) scale(.6665);animation:fall-334 19s -16s linear infinite}@keyframes fall-334{79.499%{transform:translate(53.1935vw,79.499vh) scale(.6665)}to{transform:translate(56.4266vw,99vh) scale(.6665)}}.snow:nth-child(335){opacity:1.3016;transform:translate(40.644vw,-10px) scale(.8986);animation:fall-335 25s -24s linear infinite}@keyframes fall-335{76.173%{transform:translate(49.5795vw,76.173vh) scale(.8986)}to{transform:translate(45.11175vw,99vh) scale(.8986)}}.snow:nth-child(336){opacity:1.551;transform:translate(71.9539vw,-10px) scale(.1595);animation:fall-336 23s -29s linear infinite}@keyframes fall-336{41.226%{transform:translate(63.5034vw,41.226vh) scale(.1595)}to{transform:translate(67.72865vw,99vh) scale(.1595)}}.snow:nth-child(337){opacity:1.9398;transform:translate(39.4236vw,-10px) scale(.1073);animation:fall-337 15s -16s linear infinite}@keyframes fall-337{71.655%{transform:translate(34.7862vw,71.655vh) scale(.1073)}to{transform:translate(37.1049vw,99vh) scale(.1073)}}.snow:nth-child(338){opacity:.826;transform:translate(97.2778vw,-10px) scale(.7336);animation:fall-338 22s -1s linear infinite}@keyframes fall-338{54.279%{transform:translate(93.0074vw,54.279vh) scale(.7336)}to{transform:translate(95.1426vw,99vh) scale(.7336)}}.snow:nth-child(339){opacity:.5026;transform:translate(44.6058vw,-10px) scale(.8334);animation:fall-339 24s -26s linear infinite}@keyframes fall-339{59.677%{transform:translate(48.3781vw,59.677vh) scale(.8334)}to{transform:translate(46.49195vw,99vh) scale(.8334)}}.snow:nth-child(340){opacity:1.2684;transform:translate(40.9033vw,-10px) scale(.0833);animation:fall-340 24s -17s linear infinite}@keyframes fall-340{41.025%{transform:translate(48.3223vw,41.025vh) scale(.0833)}to{transform:translate(44.6128vw,99vh) scale(.0833)}}.snow:nth-child(341){opacity:1.9842;transform:translate(60.636vw,-10px) scale(.7036);animation:fall-341 30s -25s linear infinite}@keyframes fall-341{77.906%{transform:translate(66.3075vw,77.906vh) scale(.7036)}to{transform:translate(63.47175vw,99vh) scale(.7036)}}.snow:nth-child(342){opacity:1.7768;transform:translate(13.0657vw,-10px) scale(.1545);animation:fall-342 27s -11s linear infinite}@keyframes fall-342{37.927%{transform:translate(10.0741vw,37.927vh) scale(.1545)}to{transform:translate(11.5699vw,99vh) scale(.1545)}}.snow:nth-child(343){opacity:.1118;transform:translate(55.3191vw,-10px) scale(.064);animation:fall-343 25s -29s linear infinite}@keyframes fall-343{74.637%{transform:translate(63.5148vw,74.637vh) scale(.064)}to{transform:translate(59.41695vw,99vh) scale(.064)}}.snow:nth-child(344){opacity:.0318;transform:translate(66.711vw,-10px) scale(.1836);animation:fall-344 18s -24s linear infinite}@keyframes fall-344{76.549%{transform:translate(66.9754vw,76.549vh) scale(.1836)}to{transform:translate(66.8432vw,99vh) scale(.1836)}}.snow:nth-child(345){opacity:.0464;transform:translate(35.9459vw,-10px) scale(.0065);animation:fall-345 11s -1s linear infinite}@keyframes fall-345{37.933%{transform:translate(28.2012vw,37.933vh) scale(.0065)}to{transform:translate(32.07355vw,99vh) scale(.0065)}}.snow:nth-child(346){opacity:1.7812;transform:translate(17.2039vw,-10px) scale(.8148);animation:fall-346 21s -30s linear infinite}@keyframes fall-346{67.81%{transform:translate(9.5185vw,67.81vh) scale(.8148)}to{transform:translate(13.3612vw,99vh) scale(.8148)}}.snow:nth-child(347){opacity:.8432;transform:translate(81.684vw,-10px) scale(.0083);animation:fall-347 25s -27s linear infinite}@keyframes fall-347{39.713%{transform:translate(87.0672vw,39.713vh) scale(.0083)}to{transform:translate(84.3756vw,99vh) scale(.0083)}}.snow:nth-child(348){opacity:.3238;transform:translate(15.7275vw,-10px) scale(.2433);animation:fall-348 17s -20s linear infinite}@keyframes fall-348{69.464%{transform:translate(22.6288vw,69.464vh) scale(.2433)}to{transform:translate(19.17815vw,99vh) scale(.2433)}}.snow:nth-child(349){opacity:1.4946;transform:translate(17.9379vw,-10px) scale(.7985);animation:fall-349 24s -12s linear infinite}@keyframes fall-349{35.075%{transform:translate(18.8287vw,35.075vh) scale(.7985)}to{transform:translate(18.3833vw,99vh) scale(.7985)}}.snow:nth-child(350){opacity:1.5138;transform:translate(48.0069vw,-10px) scale(.2317);animation:fall-350 25s -24s linear infinite}@keyframes fall-350{75.412%{transform:translate(46.9659vw,75.412vh) scale(.2317)}to{transform:translate(47.4864vw,99vh) scale(.2317)}}.snow:nth-child(351){opacity:1.8658;transform:translate(77.3145vw,-10px) scale(.6097);animation:fall-351 10s -24s linear infinite}@keyframes fall-351{33.408%{transform:translate(72.0164vw,33.408vh) scale(.6097)}to{transform:translate(74.66545vw,99vh) scale(.6097)}}.snow:nth-child(352){opacity:.8572;transform:translate(13.8517vw,-10px) scale(.3273);animation:fall-352 16s -19s linear infinite}@keyframes fall-352{52.781%{transform:translate(20.526vw,52.781vh) scale(.3273)}to{transform:translate(17.18885vw,99vh) scale(.3273)}}.snow:nth-child(353){opacity:1.8494;transform:translate(72.2664vw,-10px) scale(.1172);animation:fall-353 28s -12s linear infinite}@keyframes fall-353{33.82%{transform:translate(63.861vw,33.82vh) scale(.1172)}to{transform:translate(68.0637vw,99vh) scale(.1172)}}.snow:nth-child(354){opacity:1.2868;transform:translate(56.0869vw,-10px) scale(.4497);animation:fall-354 10s -20s linear infinite}@keyframes fall-354{34.171%{transform:translate(58.525vw,34.171vh) scale(.4497)}to{transform:translate(57.30595vw,99vh) scale(.4497)}}.snow:nth-child(355){opacity:1.8558;transform:translate(25.8627vw,-10px) scale(.4996);animation:fall-355 10s -6s linear infinite}@keyframes fall-355{48.885%{transform:translate(28.027vw,48.885vh) scale(.4996)}to{transform:translate(26.94485vw,99vh) scale(.4996)}}.snow:nth-child(356){opacity:1.2394;transform:translate(8.9985vw,-10px) scale(.2755);animation:fall-356 10s -22s linear infinite}@keyframes fall-356{54.986%{transform:translate(17.7865vw,54.986vh) scale(.2755)}to{transform:translate(13.3925vw,99vh) scale(.2755)}}.snow:nth-child(357){opacity:1.426;transform:translate(78.8652vw,-10px) scale(.4954);animation:fall-357 14s -7s linear infinite}@keyframes fall-357{55.308%{transform:translate(80.0628vw,55.308vh) scale(.4954)}to{transform:translate(79.464vw,99vh) scale(.4954)}}.snow:nth-child(358){opacity:1.0028;transform:translate(21.2056vw,-10px) scale(.271);animation:fall-358 25s -28s linear infinite}@keyframes fall-358{74.798%{transform:translate(26.2621vw,74.798vh) scale(.271)}to{transform:translate(23.73385vw,99vh) scale(.271)}}.snow:nth-child(359){opacity:.5242;transform:translate(1.4758vw,-10px) scale(.3612);animation:fall-359 15s -2s linear infinite}@keyframes fall-359{47.897%{transform:translate(-8.0636vw,47.897vh) scale(.3612)}to{transform:translate(-3.2939vw,99vh) scale(.3612)}}.snow:nth-child(360){opacity:.6814;transform:translate(65.1152vw,-10px) scale(.2127);animation:fall-360 15s -22s linear infinite}@keyframes fall-360{54.247%{transform:translate(59.9385vw,54.247vh) scale(.2127)}to{transform:translate(62.52685vw,99vh) scale(.2127)}}.snow:nth-child(361){opacity:1.8112;transform:translate(20.7828vw,-10px) scale(.9243);animation:fall-361 11s -23s linear infinite}@keyframes fall-361{64.6%{transform:translate(27.7573vw,64.6vh) scale(.9243)}to{transform:translate(24.27005vw,99vh) scale(.9243)}}.snow:nth-child(362){opacity:.0824;transform:translate(81.24vw,-10px) scale(.6693);animation:fall-362 11s -12s linear infinite}@keyframes fall-362{59.34%{transform:translate(81.2115vw,59.34vh) scale(.6693)}to{transform:translate(81.22575vw,99vh) scale(.6693)}}.snow:nth-child(363){opacity:1.6454;transform:translate(11.588vw,-10px) scale(.283);animation:fall-363 28s -18s linear infinite}@keyframes fall-363{73.449%{transform:translate(4.5209vw,73.449vh) scale(.283)}to{transform:translate(8.05445vw,99vh) scale(.283)}}.snow:nth-child(364){opacity:1.7692;transform:translate(50.7214vw,-10px) scale(.6049);animation:fall-364 20s -7s linear infinite}@keyframes fall-364{33.454%{transform:translate(58.2389vw,33.454vh) scale(.6049)}to{transform:translate(54.48015vw,99vh) scale(.6049)}}.snow:nth-child(365){opacity:.2054;transform:translate(65.7314vw,-10px) scale(.5587);animation:fall-365 17s -9s linear infinite}@keyframes fall-365{31.242%{transform:translate(68.6467vw,31.242vh) scale(.5587)}to{transform:translate(67.18905vw,99vh) scale(.5587)}}.snow:nth-child(366){opacity:1.09;transform:translate(.7294vw,-10px) scale(.3203);animation:fall-366 20s -18s linear infinite}@keyframes fall-366{54.661%{transform:translate(-7.6078vw,54.661vh) scale(.3203)}to{transform:translate(-3.4392vw,99vh) scale(.3203)}}.snow:nth-child(367){opacity:1.7516;transform:translate(6.2391vw,-10px) scale(.6463);animation:fall-367 20s -27s linear infinite}@keyframes fall-367{68.128%{transform:translate(.1659vw,68.128vh) scale(.6463)}to{transform:translate(3.2025vw,99vh) scale(.6463)}}.snow:nth-child(368){opacity:1.7492;transform:translate(8.3799vw,-10px) scale(.6361);animation:fall-368 12s -19s linear infinite}@keyframes fall-368{78.161%{transform:translate(11.629vw,78.161vh) scale(.6361)}to{transform:translate(10.00445vw,99vh) scale(.6361)}}.snow:nth-child(369){opacity:.567;transform:translate(33.7933vw,-10px) scale(.2953);animation:fall-369 13s -30s linear infinite}@keyframes fall-369{36.828%{transform:translate(38.5038vw,36.828vh) scale(.2953)}to{transform:translate(36.14855vw,99vh) scale(.2953)}}.snow:nth-child(370){opacity:1.4728;transform:translate(21.7931vw,-10px) scale(.9458);animation:fall-370 20s -5s linear infinite}@keyframes fall-370{45.486%{transform:translate(27.8915vw,45.486vh) scale(.9458)}to{transform:translate(24.8423vw,99vh) scale(.9458)}}.snow:nth-child(371){opacity:.2728;transform:translate(91.8051vw,-10px) scale(.4043);animation:fall-371 18s -23s linear infinite}@keyframes fall-371{48.079%{transform:translate(95.0778vw,48.079vh) scale(.4043)}to{transform:translate(93.44145vw,99vh) scale(.4043)}}.snow:nth-child(372){opacity:.9416;transform:translate(78.6142vw,-10px) scale(.6968);animation:fall-372 18s -5s linear infinite}@keyframes fall-372{56.043%{transform:translate(83.4087vw,56.043vh) scale(.6968)}to{transform:translate(81.01145vw,99vh) scale(.6968)}}.snow:nth-child(373){opacity:.3444;transform:translate(65.0083vw,-10px) scale(.5889);animation:fall-373 29s -8s linear infinite}@keyframes fall-373{30.826%{transform:translate(74.3272vw,30.826vh) scale(.5889)}to{transform:translate(69.66775vw,99vh) scale(.5889)}}.snow:nth-child(374){opacity:1.9022;transform:translate(4.9819vw,-10px) scale(.2676);animation:fall-374 15s -23s linear infinite}@keyframes fall-374{39.053%{transform:translate(-2.1578vw,39.053vh) scale(.2676)}to{transform:translate(1.41205vw,99vh) scale(.2676)}}.snow:nth-child(375){opacity:.1656;transform:translate(90.6376vw,-10px) scale(.5911);animation:fall-375 19s -1s linear infinite}@keyframes fall-375{50.326%{transform:translate(88.5651vw,50.326vh) scale(.5911)}to{transform:translate(89.60135vw,99vh) scale(.5911)}}.snow:nth-child(376){opacity:.3356;transform:translate(87.7848vw,-10px) scale(.0627);animation:fall-376 21s -5s linear infinite}@keyframes fall-376{32.844%{transform:translate(78.8552vw,32.844vh) scale(.0627)}to{transform:translate(83.32vw,99vh) scale(.0627)}}.snow:nth-child(377){opacity:1.913;transform:translate(29.8607vw,-10px) scale(.3987);animation:fall-377 16s -7s linear infinite}@keyframes fall-377{49.982%{transform:translate(29.8982vw,49.982vh) scale(.3987)}to{transform:translate(29.87945vw,99vh) scale(.3987)}}.snow:nth-child(378){opacity:1.5818;transform:translate(81.2096vw,-10px) scale(.6259);animation:fall-378 12s -9s linear infinite}@keyframes fall-378{73.608%{transform:translate(72.4867vw,73.608vh) scale(.6259)}to{transform:translate(76.84815vw,99vh) scale(.6259)}}.snow:nth-child(379){opacity:.5092;transform:translate(18.7939vw,-10px) scale(.8548);animation:fall-379 30s -29s linear infinite}@keyframes fall-379{71.076%{transform:translate(12.4962vw,71.076vh) scale(.8548)}to{transform:translate(15.64505vw,99vh) scale(.8548)}}.snow:nth-child(380){opacity:.2634;transform:translate(50.5044vw,-10px) scale(.3791);animation:fall-380 10s -30s linear infinite}@keyframes fall-380{41.947%{transform:translate(46.9315vw,41.947vh) scale(.3791)}to{transform:translate(48.71795vw,99vh) scale(.3791)}}.snow:nth-child(381){opacity:1.7414;transform:translate(2.5725vw,-10px) scale(.3063);animation:fall-381 17s -15s linear infinite}@keyframes fall-381{76.791%{transform:translate(6.9698vw,76.791vh) scale(.3063)}to{transform:translate(4.77115vw,99vh) scale(.3063)}}.snow:nth-child(382){opacity:.4292;transform:translate(46.2775vw,-10px) scale(.7496);animation:fall-382 19s -21s linear infinite}@keyframes fall-382{33.866%{transform:translate(49.3348vw,33.866vh) scale(.7496)}to{transform:translate(47.80615vw,99vh) scale(.7496)}}.snow:nth-child(383){opacity:.829;transform:translate(87.6106vw,-10px) scale(.7717);animation:fall-383 15s -16s linear infinite}@keyframes fall-383{78.931%{transform:translate(88.8734vw,78.931vh) scale(.7717)}to{transform:translate(88.242vw,99vh) scale(.7717)}}.snow:nth-child(384){opacity:1.147;transform:translate(71.2571vw,-10px) scale(.7194);animation:fall-384 17s -15s linear infinite}@keyframes fall-384{43.102%{transform:translate(64.7989vw,43.102vh) scale(.7194)}to{transform:translate(68.028vw,99vh) scale(.7194)}}.snow:nth-child(385){opacity:1.1316;transform:translate(3.4034vw,-10px) scale(.6741);animation:fall-385 28s -23s linear infinite}@keyframes fall-385{56.812%{transform:translate(4.0472vw,56.812vh) scale(.6741)}to{transform:translate(3.7253vw,99vh) scale(.6741)}}.snow:nth-child(386){opacity:.2516;transform:translate(92.1557vw,-10px) scale(.0513);animation:fall-386 18s -4s linear infinite}@keyframes fall-386{38.83%{transform:translate(95.6607vw,38.83vh) scale(.0513)}to{transform:translate(93.9082vw,99vh) scale(.0513)}}.snow:nth-child(387){opacity:1.6754;transform:translate(20.0342vw,-10px) scale(.85);animation:fall-387 28s -13s linear infinite}@keyframes fall-387{34.147%{transform:translate(14.5272vw,34.147vh) scale(.85)}to{transform:translate(17.2807vw,99vh) scale(.85)}}.snow:nth-child(388){opacity:1.672;transform:translate(58.1998vw,-10px) scale(.7134);animation:fall-388 14s -22s linear infinite}@keyframes fall-388{67.837%{transform:translate(64.8225vw,67.837vh) scale(.7134)}to{transform:translate(61.51115vw,99vh) scale(.7134)}}.snow:nth-child(389){opacity:1.8792;transform:translate(29.3673vw,-10px) scale(.3365);animation:fall-389 17s -24s linear infinite}@keyframes fall-389{64.869%{transform:translate(35.843vw,64.869vh) scale(.3365)}to{transform:translate(32.60515vw,99vh) scale(.3365)}}.snow:nth-child(390){opacity:1.476;transform:translate(63.6799vw,-10px) scale(.5485);animation:fall-390 16s -18s linear infinite}@keyframes fall-390{79.555%{transform:translate(56.4447vw,79.555vh) scale(.5485)}to{transform:translate(60.0623vw,99vh) scale(.5485)}}.snow:nth-child(391){opacity:.319;transform:translate(13.3877vw,-10px) scale(.0891);animation:fall-391 29s -3s linear infinite}@keyframes fall-391{49.087%{transform:translate(16.0784vw,49.087vh) scale(.0891)}to{transform:translate(14.73305vw,99vh) scale(.0891)}}.snow:nth-child(392){opacity:.356;transform:translate(88.8411vw,-10px) scale(.9509);animation:fall-392 29s -7s linear infinite}@keyframes fall-392{51.061%{transform:translate(96.8685vw,51.061vh) scale(.9509)}to{transform:translate(92.8548vw,99vh) scale(.9509)}}.snow:nth-child(393){opacity:.56;transform:translate(10.6405vw,-10px) scale(.7392);animation:fall-393 13s -6s linear infinite}@keyframes fall-393{73.262%{transform:translate(13.2038vw,73.262vh) scale(.7392)}to{transform:translate(11.92215vw,99vh) scale(.7392)}}.snow:nth-child(394){opacity:.049;transform:translate(52.9019vw,-10px) scale(.5972);animation:fall-394 24s -11s linear infinite}@keyframes fall-394{32.397%{transform:translate(50.2911vw,32.397vh) scale(.5972)}to{transform:translate(51.5965vw,99vh) scale(.5972)}}.snow:nth-child(395){opacity:.8514;transform:translate(81.1418vw,-10px) scale(.7673);animation:fall-395 23s -15s linear infinite}@keyframes fall-395{43.669%{transform:translate(75.1506vw,43.669vh) scale(.7673)}to{transform:translate(78.1462vw,99vh) scale(.7673)}}.snow:nth-child(396){opacity:.747;transform:translate(88.7736vw,-10px) scale(.5697);animation:fall-396 21s -16s linear infinite}@keyframes fall-396{64.111%{transform:translate(91.3689vw,64.111vh) scale(.5697)}to{transform:translate(90.07125vw,99vh) scale(.5697)}}.snow:nth-child(397){opacity:.8698;transform:translate(34.1828vw,-10px) scale(.9674);animation:fall-397 18s -20s linear infinite}@keyframes fall-397{55.543%{transform:translate(30.5561vw,55.543vh) scale(.9674)}to{transform:translate(32.36945vw,99vh) scale(.9674)}}.snow:nth-child(398){opacity:.0984;transform:translate(37.9638vw,-10px) scale(.7024);animation:fall-398 27s -27s linear infinite}@keyframes fall-398{39.484%{transform:translate(40.4761vw,39.484vh) scale(.7024)}to{transform:translate(39.21995vw,99vh) scale(.7024)}}.snow:nth-child(399){opacity:1.9174;transform:translate(2.8619vw,-10px) scale(.2694);animation:fall-399 30s -21s linear infinite}@keyframes fall-399{74.493%{transform:translate(1.2497vw,74.493vh) scale(.2694)}to{transform:translate(2.0558vw,99vh) scale(.2694)}}.snow:nth-child(400){opacity:1.08;transform:translate(13.7401vw,-10px) scale(.638);animation:fall-400 25s -27s linear infinite}@keyframes fall-400{32.751%{transform:translate(15.4684vw,32.751vh) scale(.638)}to{transform:translate(14.60425vw,99vh) scale(.638)}}\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 });
26
26
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AppComponent, decorators: [{
27
27
  type: Component,
28
- args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows; trackBy: snowTrackBy\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: [".table-borderless>tbody>tr>td,.table-borderless>tbody>tr>th,.table-borderless>tfoot>tr>td,.table-borderless>tfoot>tr>th,.table-borderless>thead>tr>td,.table-borderless>thead>tr>th{border:none}.table,.table-responsive{margin-bottom:5px}a:hover,a:focus{text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}*{outline:none!important}.modal-title{width:calc(100% - 20px)}.progress{height:20px}.progress.progress-primary[value]::-webkit-progress-value{background-color:#024a88}.progress.progress-primary[value]::-moz-progress-bar{background-color:#024a88}.progress.progress-primary[value]::-ms-fill{background-color:#024a88}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#024a88}}.progress.progress-info[value]::-webkit-progress-value{background-color:#248dad}.progress.progress-info[value]::-moz-progress-bar{background-color:#248dad}.progress.progress-info[value]::-ms-fill{background-color:#248dad}@media screen and (min-width: 0\\fffd){.progress.progress-info .progress-bar{background-color:#248dad}}.progress.progress-danger[value]::-webkit-progress-value{background-color:#bf1725}.progress.progress-danger[value]::-moz-progress-bar{background-color:#bf1725}.progress.progress-danger[value]::-ms-fill{background-color:#bf1725}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#bf1725}}.progress.progress-success[value]::-webkit-progress-value{background-color:#2d922d}.progress.progress-success[value]::-moz-progress-bar{background-color:#2d922d}.progress.progress-success[value]::-ms-fill{background-color:#2d922d}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#2d922d}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#f79a17}.progress.progress-warning[value]::-moz-progress-bar{background-color:#f79a17}.progress.progress-warning[value]::-ms-fill{background-color:#f79a17}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#f79a17}}.progress[value]::-moz-progress-bar{border-radius:0}.progress[value]::-webkit-progress-value{border-radius:0}.progress[value=\"100\"]::-moz-progress-bar{border-radius:0}.progress[value=\"100\"]::-webkit-progress-value{border-radius:0}.progress-xs{height:7px}.progress-sm{height:10px}.progress-md{height:13px}.progress-bar-info-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem;background-color:#5bc0de!important}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800px){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.wizard-step-container{background-color:#fff;box-shadow:#63636333 0 2px 8px;padding:10px}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.app-search-background{z-index:9999;margin-top:60px;padding:0;background-color:#0000004d;width:100vw;height:calc(100vh - 60px)}.app-search-result-box{height:calc(100% - 35px);overflow:hidden;margin:20px}.app-search-card{margin-top:2px;margin-bottom:10px;padding:15px;background-color:#fff;box-shadow:#06182c66 0 0 0 2px,#06182ca6 0 4px 6px -1px,#ffffff14 0 1px inset}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.mat-chip-list-wrapper input.mat-input-element,.mat-chip-list-wrapper .mat-standard-chip{margin:1px 4px 4px!important;padding-top:0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:1.1522;transform:translate(48.3104vw,-10px) scale(.3928);animation:fall-1 24s -11s linear infinite}@keyframes fall-1{30.418%{transform:translate(46.5585vw,30.418vh) scale(.3928)}to{transform:translate(47.43445vw,99vh) scale(.3928)}}.snow:nth-child(2){opacity:.1554;transform:translate(26.7352vw,-10px) scale(.9299);animation:fall-2 17s -7s linear infinite}@keyframes fall-2{50.76%{transform:translate(19.03vw,50.76vh) scale(.9299)}to{transform:translate(22.8826vw,99vh) scale(.9299)}}.snow:nth-child(3){opacity:.157;transform:translate(88.3835vw,-10px) scale(.5274);animation:fall-3 21s -15s linear infinite}@keyframes fall-3{45.231%{transform:translate(79.9109vw,45.231vh) scale(.5274)}to{transform:translate(84.1472vw,99vh) scale(.5274)}}.snow:nth-child(4){opacity:.2874;transform:translate(54.1152vw,-10px) scale(.8277);animation:fall-4 29s -30s linear infinite}@keyframes fall-4{56.992%{transform:translate(57.9718vw,56.992vh) scale(.8277)}to{transform:translate(56.0435vw,99vh) scale(.8277)}}.snow:nth-child(5){opacity:1.2178;transform:translate(93.4998vw,-10px) scale(.8644);animation:fall-5 13s -18s linear infinite}@keyframes fall-5{47.988%{transform:translate(98.0703vw,47.988vh) scale(.8644)}to{transform:translate(95.78505vw,99vh) scale(.8644)}}.snow:nth-child(6){opacity:1.4366;transform:translate(39.9709vw,-10px) scale(.8924);animation:fall-6 17s -21s linear infinite}@keyframes fall-6{75.741%{transform:translate(45.1546vw,75.741vh) scale(.8924)}to{transform:translate(42.56275vw,99vh) scale(.8924)}}.snow:nth-child(7){opacity:.431;transform:translate(65.8019vw,-10px) scale(.802);animation:fall-7 19s -22s linear infinite}@keyframes fall-7{72.104%{transform:translate(56.2494vw,72.104vh) scale(.802)}to{transform:translate(61.02565vw,99vh) scale(.802)}}.snow:nth-child(8){opacity:1.0438;transform:translate(68.1858vw,-10px) scale(.3819);animation:fall-8 20s -3s linear infinite}@keyframes fall-8{37.983%{transform:translate(68.6721vw,37.983vh) scale(.3819)}to{transform:translate(68.42895vw,99vh) scale(.3819)}}.snow:nth-child(9){opacity:1.5536;transform:translate(82.9527vw,-10px) scale(.2538);animation:fall-9 24s -5s linear infinite}@keyframes fall-9{51.05%{transform:translate(84.9895vw,51.05vh) scale(.2538)}to{transform:translate(83.9711vw,99vh) scale(.2538)}}.snow:nth-child(10){opacity:1.7506;transform:translate(83.7375vw,-10px) scale(.7123);animation:fall-10 10s -28s linear infinite}@keyframes fall-10{78.691%{transform:translate(87.1321vw,78.691vh) scale(.7123)}to{transform:translate(85.4348vw,99vh) scale(.7123)}}.snow:nth-child(11){opacity:1.6962;transform:translate(3.9315vw,-10px) scale(.1841);animation:fall-11 26s -19s linear infinite}@keyframes fall-11{53.906%{transform:translate(11.4142vw,53.906vh) scale(.1841)}to{transform:translate(7.67285vw,99vh) scale(.1841)}}.snow:nth-child(12){opacity:1.146;transform:translate(1.1283vw,-10px) scale(.5742);animation:fall-12 13s -21s linear infinite}@keyframes fall-12{42.643%{transform:translate(5.6891vw,42.643vh) scale(.5742)}to{transform:translate(3.4087vw,99vh) scale(.5742)}}.snow:nth-child(13){opacity:.9056;transform:translate(94.685vw,-10px) scale(.9916);animation:fall-13 14s -3s linear infinite}@keyframes fall-13{79.363%{transform:translate(101.9001vw,79.363vh) scale(.9916)}to{transform:translate(98.29255vw,99vh) scale(.9916)}}.snow:nth-child(14){opacity:1.7766;transform:translate(58.6406vw,-10px) scale(.2073);animation:fall-14 22s -18s linear infinite}@keyframes fall-14{57.583%{transform:translate(61.8622vw,57.583vh) scale(.2073)}to{transform:translate(60.2514vw,99vh) scale(.2073)}}.snow:nth-child(15){opacity:.1888;transform:translate(50.3502vw,-10px) scale(.7433);animation:fall-15 21s -21s linear infinite}@keyframes fall-15{41.18%{transform:translate(46.8944vw,41.18vh) scale(.7433)}to{transform:translate(48.6223vw,99vh) scale(.7433)}}.snow:nth-child(16){opacity:.361;transform:translate(11.8861vw,-10px) scale(.6658);animation:fall-16 19s -3s linear infinite}@keyframes fall-16{32.569%{transform:translate(11.059vw,32.569vh) scale(.6658)}to{transform:translate(11.47255vw,99vh) scale(.6658)}}.snow:nth-child(17){opacity:.9744;transform:translate(30.1994vw,-10px) scale(.7729);animation:fall-17 16s -13s linear infinite}@keyframes fall-17{44.006%{transform:translate(38.0889vw,44.006vh) scale(.7729)}to{transform:translate(34.14415vw,99vh) scale(.7729)}}.snow:nth-child(18){opacity:.9874;transform:translate(20.5917vw,-10px) scale(.722);animation:fall-18 28s -14s linear infinite}@keyframes fall-18{71.53%{transform:translate(16.4459vw,71.53vh) scale(.722)}to{transform:translate(18.5188vw,99vh) scale(.722)}}.snow:nth-child(19){opacity:.543;transform:translate(21.2197vw,-10px) scale(.4942);animation:fall-19 27s -8s linear infinite}@keyframes fall-19{41.209%{transform:translate(29.9417vw,41.209vh) scale(.4942)}to{transform:translate(25.5807vw,99vh) scale(.4942)}}.snow:nth-child(20){opacity:1.319;transform:translate(24.0267vw,-10px) scale(.2591);animation:fall-20 29s -21s linear infinite}@keyframes fall-20{56.688%{transform:translate(28.0243vw,56.688vh) scale(.2591)}to{transform:translate(26.0255vw,99vh) scale(.2591)}}.snow:nth-child(21){opacity:.1964;transform:translate(64.5216vw,-10px) scale(.263);animation:fall-21 19s -23s linear infinite}@keyframes fall-21{32.297%{transform:translate(62.1756vw,32.297vh) scale(.263)}to{transform:translate(63.3486vw,99vh) scale(.263)}}.snow:nth-child(22){opacity:1.0358;transform:translate(30.5498vw,-10px) scale(.8772);animation:fall-22 21s -28s linear infinite}@keyframes fall-22{43.411%{transform:translate(32.0021vw,43.411vh) scale(.8772)}to{transform:translate(31.27595vw,99vh) scale(.8772)}}.snow:nth-child(23){opacity:.9126;transform:translate(59.521vw,-10px) scale(.3973);animation:fall-23 21s -6s linear infinite}@keyframes fall-23{45.739%{transform:translate(69.0883vw,45.739vh) scale(.3973)}to{transform:translate(64.30465vw,99vh) scale(.3973)}}.snow:nth-child(24){opacity:1.3582;transform:translate(51.1093vw,-10px) scale(.7519);animation:fall-24 27s -10s linear infinite}@keyframes fall-24{62.982%{transform:translate(57.8843vw,62.982vh) scale(.7519)}to{transform:translate(54.4968vw,99vh) scale(.7519)}}.snow:nth-child(25){opacity:.491;transform:translate(25.0564vw,-10px) scale(.4811);animation:fall-25 28s -25s linear infinite}@keyframes fall-25{32.549%{transform:translate(27.833vw,32.549vh) scale(.4811)}to{transform:translate(26.4447vw,99vh) scale(.4811)}}.snow:nth-child(26){opacity:.242;transform:translate(13.8648vw,-10px) scale(.2813);animation:fall-26 17s -5s linear infinite}@keyframes fall-26{48.23%{transform:translate(12.1778vw,48.23vh) scale(.2813)}to{transform:translate(13.0213vw,99vh) scale(.2813)}}.snow:nth-child(27){opacity:.4054;transform:translate(92.9105vw,-10px) scale(.3138);animation:fall-27 14s -29s linear infinite}@keyframes fall-27{79.923%{transform:translate(95.7033vw,79.923vh) scale(.3138)}to{transform:translate(94.3069vw,99vh) scale(.3138)}}.snow:nth-child(28){opacity:1.3866;transform:translate(68.3287vw,-10px) scale(.3726);animation:fall-28 16s -14s linear infinite}@keyframes fall-28{43.106%{transform:translate(58.7081vw,43.106vh) scale(.3726)}to{transform:translate(63.5184vw,99vh) scale(.3726)}}.snow:nth-child(29){opacity:.5866;transform:translate(83.8578vw,-10px) scale(.2089);animation:fall-29 10s -2s linear infinite}@keyframes fall-29{52.794%{transform:translate(80.2858vw,52.794vh) scale(.2089)}to{transform:translate(82.0718vw,99vh) scale(.2089)}}.snow:nth-child(30){opacity:1.5486;transform:translate(2.7451vw,-10px) scale(.1488);animation:fall-30 22s -27s linear infinite}@keyframes fall-30{37.521%{transform:translate(6.9465vw,37.521vh) scale(.1488)}to{transform:translate(4.8458vw,99vh) scale(.1488)}}.snow:nth-child(31){opacity:.4624;transform:translate(73.5279vw,-10px) scale(.5251);animation:fall-31 27s -10s linear infinite}@keyframes fall-31{38.256%{transform:translate(77.7694vw,38.256vh) scale(.5251)}to{transform:translate(75.64865vw,99vh) scale(.5251)}}.snow:nth-child(32){opacity:.7806;transform:translate(27.5516vw,-10px) scale(.9322);animation:fall-32 22s -5s linear infinite}@keyframes fall-32{58.273%{transform:translate(33.6186vw,58.273vh) scale(.9322)}to{transform:translate(30.5851vw,99vh) scale(.9322)}}.snow:nth-child(33){opacity:1.6558;transform:translate(69.0513vw,-10px) scale(.4687);animation:fall-33 18s -1s linear infinite}@keyframes fall-33{77.299%{transform:translate(67.1728vw,77.299vh) scale(.4687)}to{transform:translate(68.11205vw,99vh) scale(.4687)}}.snow:nth-child(34){opacity:1.1038;transform:translate(21.4009vw,-10px) scale(.5017);animation:fall-34 27s -11s linear infinite}@keyframes fall-34{49.821%{transform:translate(15.3759vw,49.821vh) scale(.5017)}to{transform:translate(18.3884vw,99vh) scale(.5017)}}.snow:nth-child(35){opacity:.373;transform:translate(48.6993vw,-10px) scale(.0978);animation:fall-35 13s -18s linear infinite}@keyframes fall-35{66.658%{transform:translate(47.8145vw,66.658vh) scale(.0978)}to{transform:translate(48.2569vw,99vh) scale(.0978)}}.snow:nth-child(36){opacity:.1698;transform:translate(42.2082vw,-10px) scale(.9922);animation:fall-36 22s -18s linear infinite}@keyframes fall-36{65.719%{transform:translate(51.2266vw,65.719vh) scale(.9922)}to{transform:translate(46.7174vw,99vh) scale(.9922)}}.snow:nth-child(37){opacity:.1912;transform:translate(26.8803vw,-10px) scale(.246);animation:fall-37 11s -16s linear infinite}@keyframes fall-37{47.219%{transform:translate(24.5698vw,47.219vh) scale(.246)}to{transform:translate(25.72505vw,99vh) scale(.246)}}.snow:nth-child(38){opacity:1.2688;transform:translate(96.1793vw,-10px) scale(.7542);animation:fall-38 17s -10s linear infinite}@keyframes fall-38{50.888%{transform:translate(94.0429vw,50.888vh) scale(.7542)}to{transform:translate(95.1111vw,99vh) scale(.7542)}}.snow:nth-child(39){opacity:.4594;transform:translate(74.2647vw,-10px) scale(.1899);animation:fall-39 22s -16s linear infinite}@keyframes fall-39{56.499%{transform:translate(77.94vw,56.499vh) scale(.1899)}to{transform:translate(76.10235vw,99vh) scale(.1899)}}.snow:nth-child(40){opacity:1.032;transform:translate(18.0048vw,-10px) scale(.5468);animation:fall-40 27s -30s linear infinite}@keyframes fall-40{66.276%{transform:translate(22.4331vw,66.276vh) scale(.5468)}to{transform:translate(20.21895vw,99vh) scale(.5468)}}.snow:nth-child(41){opacity:1.1648;transform:translate(30.0016vw,-10px) scale(.9162);animation:fall-41 24s -4s linear infinite}@keyframes fall-41{45.426%{transform:translate(22.0337vw,45.426vh) scale(.9162)}to{transform:translate(26.01765vw,99vh) scale(.9162)}}.snow:nth-child(42){opacity:.066;transform:translate(20.4141vw,-10px) scale(.6281);animation:fall-42 11s -30s linear infinite}@keyframes fall-42{33.03%{transform:translate(29.6856vw,33.03vh) scale(.6281)}to{transform:translate(25.04985vw,99vh) scale(.6281)}}.snow:nth-child(43){opacity:.5852;transform:translate(62.257vw,-10px) scale(.2433);animation:fall-43 12s -5s linear infinite}@keyframes fall-43{62.04%{transform:translate(70.1261vw,62.04vh) scale(.2433)}to{transform:translate(66.19155vw,99vh) scale(.2433)}}.snow:nth-child(44){opacity:.4292;transform:translate(71.0373vw,-10px) scale(.757);animation:fall-44 13s -30s linear infinite}@keyframes fall-44{39.146%{transform:translate(63.0756vw,39.146vh) scale(.757)}to{transform:translate(67.05645vw,99vh) scale(.757)}}.snow:nth-child(45){opacity:.7922;transform:translate(25.7605vw,-10px) scale(.9622);animation:fall-45 21s -5s linear infinite}@keyframes fall-45{53.276%{transform:translate(32.0081vw,53.276vh) scale(.9622)}to{transform:translate(28.8843vw,99vh) scale(.9622)}}.snow:nth-child(46){opacity:.8258;transform:translate(72.5345vw,-10px) scale(.4303);animation:fall-46 10s -25s linear infinite}@keyframes fall-46{64.211%{transform:translate(71.5217vw,64.211vh) scale(.4303)}to{transform:translate(72.0281vw,99vh) scale(.4303)}}.snow:nth-child(47){opacity:.6964;transform:translate(79.7641vw,-10px) scale(.3255);animation:fall-47 20s -18s linear infinite}@keyframes fall-47{58.268%{transform:translate(82.1884vw,58.268vh) scale(.3255)}to{transform:translate(80.97625vw,99vh) scale(.3255)}}.snow:nth-child(48){opacity:.7822;transform:translate(98.6849vw,-10px) scale(.2708);animation:fall-48 18s -14s linear infinite}@keyframes fall-48{55.756%{transform:translate(98.9692vw,55.756vh) scale(.2708)}to{transform:translate(98.82705vw,99vh) scale(.2708)}}.snow:nth-child(49){opacity:.905;transform:translate(47.8207vw,-10px) scale(.9684);animation:fall-49 23s -24s linear infinite}@keyframes fall-49{54.31%{transform:translate(45.6828vw,54.31vh) scale(.9684)}to{transform:translate(46.75175vw,99vh) scale(.9684)}}.snow:nth-child(50){opacity:.6538;transform:translate(21.0023vw,-10px) scale(.1277);animation:fall-50 18s -8s linear infinite}@keyframes fall-50{57.433%{transform:translate(28.0577vw,57.433vh) scale(.1277)}to{transform:translate(24.53vw,99vh) scale(.1277)}}.snow:nth-child(51){opacity:1.7414;transform:translate(59.2954vw,-10px) scale(.8614);animation:fall-51 13s -8s linear infinite}@keyframes fall-51{30.14%{transform:translate(58.5889vw,30.14vh) scale(.8614)}to{transform:translate(58.94215vw,99vh) scale(.8614)}}.snow:nth-child(52){opacity:.3256;transform:translate(73.7025vw,-10px) scale(.2007);animation:fall-52 28s -23s linear infinite}@keyframes fall-52{52.155%{transform:translate(82.9893vw,52.155vh) scale(.2007)}to{transform:translate(78.3459vw,99vh) scale(.2007)}}.snow:nth-child(53){opacity:.266;transform:translate(94.8914vw,-10px) scale(.0408);animation:fall-53 16s -6s linear infinite}@keyframes fall-53{72.345%{transform:translate(89.8377vw,72.345vh) scale(.0408)}to{transform:translate(92.36455vw,99vh) scale(.0408)}}.snow:nth-child(54){opacity:.4466;transform:translate(13.4453vw,-10px) scale(.4803);animation:fall-54 19s -22s linear infinite}@keyframes fall-54{46.444%{transform:translate(6.2704vw,46.444vh) scale(.4803)}to{transform:translate(9.85785vw,99vh) scale(.4803)}}.snow:nth-child(55){opacity:.66;transform:translate(75.4568vw,-10px) scale(.2663);animation:fall-55 23s -19s linear infinite}@keyframes fall-55{53.843%{transform:translate(70.8019vw,53.843vh) scale(.2663)}to{transform:translate(73.12935vw,99vh) scale(.2663)}}.snow:nth-child(56){opacity:1.4868;transform:translate(21.4896vw,-10px) scale(.2261);animation:fall-56 17s -2s linear infinite}@keyframes fall-56{34.721%{transform:translate(31.113vw,34.721vh) scale(.2261)}to{transform:translate(26.3013vw,99vh) scale(.2261)}}.snow:nth-child(57){opacity:.0478;transform:translate(96.5447vw,-10px) scale(.6093);animation:fall-57 17s -16s linear infinite}@keyframes fall-57{58.867%{transform:translate(92.2695vw,58.867vh) scale(.6093)}to{transform:translate(94.4071vw,99vh) scale(.6093)}}.snow:nth-child(58){opacity:.6696;transform:translate(54.6886vw,-10px) scale(.0146);animation:fall-58 12s -24s linear infinite}@keyframes fall-58{59.774%{transform:translate(64.2682vw,59.774vh) scale(.0146)}to{transform:translate(59.4784vw,99vh) scale(.0146)}}.snow:nth-child(59){opacity:1.3854;transform:translate(30.1697vw,-10px) scale(.884);animation:fall-59 21s -11s linear infinite}@keyframes fall-59{58.836%{transform:translate(29.4678vw,58.836vh) scale(.884)}to{transform:translate(29.81875vw,99vh) scale(.884)}}.snow:nth-child(60){opacity:1.703;transform:translate(57.1214vw,-10px) scale(.1053);animation:fall-60 21s -7s linear infinite}@keyframes fall-60{69.612%{transform:translate(48.9878vw,69.612vh) scale(.1053)}to{transform:translate(53.0546vw,99vh) scale(.1053)}}.snow:nth-child(61){opacity:1.3822;transform:translate(35.0726vw,-10px) scale(.9854);animation:fall-61 26s -27s linear infinite}@keyframes fall-61{64.968%{transform:translate(30.9467vw,64.968vh) scale(.9854)}to{transform:translate(33.00965vw,99vh) scale(.9854)}}.snow:nth-child(62){opacity:.5118;transform:translate(68.1059vw,-10px) scale(.9932);animation:fall-62 28s -5s linear infinite}@keyframes fall-62{59.411%{transform:translate(65.4574vw,59.411vh) scale(.9932)}to{transform:translate(66.78165vw,99vh) scale(.9932)}}.snow:nth-child(63){opacity:1.5932;transform:translate(50.1126vw,-10px) scale(.4335);animation:fall-63 13s -2s linear infinite}@keyframes fall-63{57.941%{transform:translate(47.5253vw,57.941vh) scale(.4335)}to{transform:translate(48.81895vw,99vh) scale(.4335)}}.snow:nth-child(64){opacity:1.6236;transform:translate(60.5782vw,-10px) scale(.5329);animation:fall-64 21s -14s linear infinite}@keyframes fall-64{40.772%{transform:translate(55.51vw,40.772vh) scale(.5329)}to{transform:translate(58.0441vw,99vh) scale(.5329)}}.snow:nth-child(65){opacity:1.4324;transform:translate(54.6575vw,-10px) scale(.8408);animation:fall-65 15s -20s linear infinite}@keyframes fall-65{50.823%{transform:translate(58.9373vw,50.823vh) scale(.8408)}to{transform:translate(56.7974vw,99vh) scale(.8408)}}.snow:nth-child(66){opacity:.6944;transform:translate(78.0905vw,-10px) scale(.4652);animation:fall-66 27s -6s linear infinite}@keyframes fall-66{43.357%{transform:translate(82.0784vw,43.357vh) scale(.4652)}to{transform:translate(80.08445vw,99vh) scale(.4652)}}.snow:nth-child(67){opacity:.898;transform:translate(58.0392vw,-10px) scale(.7084);animation:fall-67 23s -5s linear infinite}@keyframes fall-67{77.815%{transform:translate(48.865vw,77.815vh) scale(.7084)}to{transform:translate(53.4521vw,99vh) scale(.7084)}}.snow:nth-child(68){opacity:1.2494;transform:translate(99.1203vw,-10px) scale(.18);animation:fall-68 11s -3s linear infinite}@keyframes fall-68{31.913%{transform:translate(96.221vw,31.913vh) scale(.18)}to{transform:translate(97.67065vw,99vh) scale(.18)}}.snow:nth-child(69){opacity:1.8364;transform:translate(83.5201vw,-10px) scale(.4476);animation:fall-69 28s -18s linear infinite}@keyframes fall-69{66.157%{transform:translate(87.5562vw,66.157vh) scale(.4476)}to{transform:translate(85.53815vw,99vh) scale(.4476)}}.snow:nth-child(70){opacity:.3908;transform:translate(77.3299vw,-10px) scale(.099);animation:fall-70 11s -26s linear infinite}@keyframes fall-70{64.691%{transform:translate(81.2462vw,64.691vh) scale(.099)}to{transform:translate(79.28805vw,99vh) scale(.099)}}.snow:nth-child(71){opacity:1.6122;transform:translate(15.1229vw,-10px) scale(.0121);animation:fall-71 16s -12s linear infinite}@keyframes fall-71{33.411%{transform:translate(8.0126vw,33.411vh) scale(.0121)}to{transform:translate(11.56775vw,99vh) scale(.0121)}}.snow:nth-child(72){opacity:.6692;transform:translate(50.8658vw,-10px) scale(.232);animation:fall-72 10s -4s linear infinite}@keyframes fall-72{61.186%{transform:translate(57.5676vw,61.186vh) scale(.232)}to{transform:translate(54.2167vw,99vh) scale(.232)}}.snow:nth-child(73){opacity:1.3854;transform:translate(65.7584vw,-10px) scale(.6936);animation:fall-73 25s -20s linear infinite}@keyframes fall-73{33.581%{transform:translate(72.9824vw,33.581vh) scale(.6936)}to{transform:translate(69.3704vw,99vh) scale(.6936)}}.snow:nth-child(74){opacity:.8812;transform:translate(55.3988vw,-10px) scale(.0899);animation:fall-74 23s -11s linear infinite}@keyframes fall-74{65.877%{transform:translate(50.4315vw,65.877vh) scale(.0899)}to{transform:translate(52.91515vw,99vh) scale(.0899)}}.snow:nth-child(75){opacity:1.8462;transform:translate(80.1392vw,-10px) scale(.6939);animation:fall-75 23s -22s linear infinite}@keyframes fall-75{50.103%{transform:translate(82.0686vw,50.103vh) scale(.6939)}to{transform:translate(81.1039vw,99vh) scale(.6939)}}.snow:nth-child(76){opacity:.2758;transform:translate(59.6207vw,-10px) scale(.4964);animation:fall-76 25s -3s linear infinite}@keyframes fall-76{51.64%{transform:translate(49.6392vw,51.64vh) scale(.4964)}to{transform:translate(54.62995vw,99vh) scale(.4964)}}.snow:nth-child(77){opacity:1.7822;transform:translate(97.2463vw,-10px) scale(.022);animation:fall-77 30s -24s linear infinite}@keyframes fall-77{70.348%{transform:translate(90.3645vw,70.348vh) scale(.022)}to{transform:translate(93.8054vw,99vh) scale(.022)}}.snow:nth-child(78){opacity:.3786;transform:translate(35.6404vw,-10px) scale(.5263);animation:fall-78 12s -30s linear infinite}@keyframes fall-78{58.346%{transform:translate(37.5933vw,58.346vh) scale(.5263)}to{transform:translate(36.61685vw,99vh) scale(.5263)}}.snow:nth-child(79){opacity:1.1244;transform:translate(96.1256vw,-10px) scale(.1365);animation:fall-79 18s -24s linear infinite}@keyframes fall-79{59.668%{transform:translate(92.6521vw,59.668vh) scale(.1365)}to{transform:translate(94.38885vw,99vh) scale(.1365)}}.snow:nth-child(80){opacity:1.95;transform:translate(27.4192vw,-10px) scale(.2875);animation:fall-80 16s -8s linear infinite}@keyframes fall-80{30.954%{transform:translate(28.2663vw,30.954vh) scale(.2875)}to{transform:translate(27.84275vw,99vh) scale(.2875)}}.snow:nth-child(81){opacity:1.2576;transform:translate(84.0536vw,-10px) scale(.5725);animation:fall-81 22s -2s linear infinite}@keyframes fall-81{79.83%{transform:translate(76.9516vw,79.83vh) scale(.5725)}to{transform:translate(80.5026vw,99vh) scale(.5725)}}.snow:nth-child(82){opacity:1.688;transform:translate(97.0725vw,-10px) scale(.8458);animation:fall-82 15s -21s linear infinite}@keyframes fall-82{61.913%{transform:translate(103.5897vw,61.913vh) scale(.8458)}to{transform:translate(100.3311vw,99vh) scale(.8458)}}.snow:nth-child(83){opacity:.0364;transform:translate(24.7582vw,-10px) scale(.3067);animation:fall-83 10s -26s linear infinite}@keyframes fall-83{44.636%{transform:translate(16.5729vw,44.636vh) scale(.3067)}to{transform:translate(20.66555vw,99vh) scale(.3067)}}.snow:nth-child(84){opacity:.5234;transform:translate(64.0466vw,-10px) scale(.9929);animation:fall-84 28s -2s linear infinite}@keyframes fall-84{53.187%{transform:translate(58.3837vw,53.187vh) scale(.9929)}to{transform:translate(61.21515vw,99vh) scale(.9929)}}.snow:nth-child(85){opacity:.9658;transform:translate(42.7265vw,-10px) scale(.0598);animation:fall-85 16s -23s linear infinite}@keyframes fall-85{32.725%{transform:translate(37.6394vw,32.725vh) scale(.0598)}to{transform:translate(40.18295vw,99vh) scale(.0598)}}.snow:nth-child(86){opacity:.4918;transform:translate(30.2351vw,-10px) scale(.0507);animation:fall-86 29s -5s linear infinite}@keyframes fall-86{67.876%{transform:translate(31.1098vw,67.876vh) scale(.0507)}to{transform:translate(30.67245vw,99vh) scale(.0507)}}.snow:nth-child(87){opacity:.1982;transform:translate(45.807vw,-10px) scale(.252);animation:fall-87 23s -22s linear infinite}@keyframes fall-87{65.542%{transform:translate(40.7293vw,65.542vh) scale(.252)}to{transform:translate(43.26815vw,99vh) scale(.252)}}.snow:nth-child(88){opacity:.8268;transform:translate(22.6271vw,-10px) scale(.1058);animation:fall-88 12s -8s linear infinite}@keyframes fall-88{74.025%{transform:translate(22.4667vw,74.025vh) scale(.1058)}to{transform:translate(22.5469vw,99vh) scale(.1058)}}.snow:nth-child(89){opacity:.6068;transform:translate(36.1895vw,-10px) scale(.689);animation:fall-89 16s -25s linear infinite}@keyframes fall-89{63.766%{transform:translate(30.2854vw,63.766vh) scale(.689)}to{transform:translate(33.23745vw,99vh) scale(.689)}}.snow:nth-child(90){opacity:1.6358;transform:translate(64.9255vw,-10px) scale(.9103);animation:fall-90 21s -25s linear infinite}@keyframes fall-90{50.41%{transform:translate(63.4896vw,50.41vh) scale(.9103)}to{transform:translate(64.20755vw,99vh) scale(.9103)}}.snow:nth-child(91){opacity:.1344;transform:translate(66.6222vw,-10px) scale(.1971);animation:fall-91 27s -25s linear infinite}@keyframes fall-91{31.886%{transform:translate(58.1877vw,31.886vh) scale(.1971)}to{transform:translate(62.40495vw,99vh) scale(.1971)}}.snow:nth-child(92){opacity:.7848;transform:translate(99.3372vw,-10px) scale(.0021);animation:fall-92 23s -4s linear infinite}@keyframes fall-92{74.141%{transform:translate(101.68vw,74.141vh) scale(.0021)}to{transform:translate(100.5086vw,99vh) scale(.0021)}}.snow:nth-child(93){opacity:1.5224;transform:translate(91.1063vw,-10px) scale(.3706);animation:fall-93 28s -29s linear infinite}@keyframes fall-93{75.705%{transform:translate(92.8978vw,75.705vh) scale(.3706)}to{transform:translate(92.00205vw,99vh) scale(.3706)}}.snow:nth-child(94){opacity:1.4992;transform:translate(49.4237vw,-10px) scale(.4536);animation:fall-94 29s -29s linear infinite}@keyframes fall-94{35.517%{transform:translate(49.2269vw,35.517vh) scale(.4536)}to{transform:translate(49.3253vw,99vh) scale(.4536)}}.snow:nth-child(95){opacity:.2478;transform:translate(54.4248vw,-10px) scale(.4561);animation:fall-95 10s -4s linear infinite}@keyframes fall-95{44.406%{transform:translate(64.3571vw,44.406vh) scale(.4561)}to{transform:translate(59.39095vw,99vh) scale(.4561)}}.snow:nth-child(96){opacity:1.9848;transform:translate(15.0984vw,-10px) scale(.6563);animation:fall-96 28s -6s linear infinite}@keyframes fall-96{68.973%{transform:translate(14.8759vw,68.973vh) scale(.6563)}to{transform:translate(14.98715vw,99vh) scale(.6563)}}.snow:nth-child(97){opacity:.2014;transform:translate(78.6281vw,-10px) scale(.7398);animation:fall-97 27s -29s linear infinite}@keyframes fall-97{33.462%{transform:translate(85.661vw,33.462vh) scale(.7398)}to{transform:translate(82.14455vw,99vh) scale(.7398)}}.snow:nth-child(98){opacity:.2666;transform:translate(50.4702vw,-10px) scale(.0062);animation:fall-98 19s -25s linear infinite}@keyframes fall-98{32.48%{transform:translate(48.5905vw,32.48vh) scale(.0062)}to{transform:translate(49.53035vw,99vh) scale(.0062)}}.snow:nth-child(99){opacity:.373;transform:translate(13.1579vw,-10px) scale(.0636);animation:fall-99 13s -23s linear infinite}@keyframes fall-99{44.206%{transform:translate(6.3819vw,44.206vh) scale(.0636)}to{transform:translate(9.7699vw,99vh) scale(.0636)}}.snow:nth-child(100){opacity:1.2414;transform:translate(68.0682vw,-10px) scale(.0191);animation:fall-100 10s -27s linear infinite}@keyframes fall-100{77.527%{transform:translate(77.0394vw,77.527vh) scale(.0191)}to{transform:translate(72.5538vw,99vh) scale(.0191)}}.snow:nth-child(101){opacity:.2434;transform:translate(15.4401vw,-10px) scale(.8376);animation:fall-101 22s -11s linear infinite}@keyframes fall-101{66.167%{transform:translate(15.3769vw,66.167vh) scale(.8376)}to{transform:translate(15.4085vw,99vh) scale(.8376)}}.snow:nth-child(102){opacity:.8084;transform:translate(7.0597vw,-10px) scale(.0767);animation:fall-102 27s -20s linear infinite}@keyframes fall-102{73.229%{transform:translate(-2.7823vw,73.229vh) scale(.0767)}to{transform:translate(2.1387vw,99vh) scale(.0767)}}.snow:nth-child(103){opacity:.149;transform:translate(62.3916vw,-10px) scale(.1689);animation:fall-103 13s -24s linear infinite}@keyframes fall-103{61.038%{transform:translate(61.7603vw,61.038vh) scale(.1689)}to{transform:translate(62.07595vw,99vh) scale(.1689)}}.snow:nth-child(104){opacity:1.1192;transform:translate(70.7321vw,-10px) scale(.5246);animation:fall-104 27s -25s linear infinite}@keyframes fall-104{77.52%{transform:translate(70.2286vw,77.52vh) scale(.5246)}to{transform:translate(70.48035vw,99vh) scale(.5246)}}.snow:nth-child(105){opacity:1.8278;transform:translate(63.773vw,-10px) scale(.4129);animation:fall-105 20s -18s linear infinite}@keyframes fall-105{58.419%{transform:translate(61.1567vw,58.419vh) scale(.4129)}to{transform:translate(62.46485vw,99vh) scale(.4129)}}.snow:nth-child(106){opacity:1.592;transform:translate(13.4271vw,-10px) scale(.7112);animation:fall-106 17s -5s linear infinite}@keyframes fall-106{41.36%{transform:translate(15.8348vw,41.36vh) scale(.7112)}to{transform:translate(14.63095vw,99vh) scale(.7112)}}.snow:nth-child(107){opacity:.7322;transform:translate(4.5502vw,-10px) scale(.797);animation:fall-107 10s -1s linear infinite}@keyframes fall-107{71.259%{transform:translate(7.3053vw,71.259vh) scale(.797)}to{transform:translate(5.92775vw,99vh) scale(.797)}}.snow:nth-child(108){opacity:.542;transform:translate(32.0303vw,-10px) scale(.7465);animation:fall-108 18s -27s linear infinite}@keyframes fall-108{57.969%{transform:translate(40.3392vw,57.969vh) scale(.7465)}to{transform:translate(36.18475vw,99vh) scale(.7465)}}.snow:nth-child(109){opacity:.0246;transform:translate(70.6148vw,-10px) scale(.9301);animation:fall-109 18s -18s linear infinite}@keyframes fall-109{34.784%{transform:translate(73.3228vw,34.784vh) scale(.9301)}to{transform:translate(71.9688vw,99vh) scale(.9301)}}.snow:nth-child(110){opacity:1.8952;transform:translate(30.8075vw,-10px) scale(.4821);animation:fall-110 27s -8s linear infinite}@keyframes fall-110{35.605%{transform:translate(25.7254vw,35.605vh) scale(.4821)}to{transform:translate(28.26645vw,99vh) scale(.4821)}}.snow:nth-child(111){opacity:.1304;transform:translate(17.2681vw,-10px) scale(.6155);animation:fall-111 12s -2s linear infinite}@keyframes fall-111{61.69%{transform:translate(15.399vw,61.69vh) scale(.6155)}to{transform:translate(16.33355vw,99vh) scale(.6155)}}.snow:nth-child(112){opacity:.6492;transform:translate(15.2077vw,-10px) scale(.2513);animation:fall-112 24s -18s linear infinite}@keyframes fall-112{76.564%{transform:translate(7.9648vw,76.564vh) scale(.2513)}to{transform:translate(11.58625vw,99vh) scale(.2513)}}.snow:nth-child(113){opacity:1.3362;transform:translate(93.0761vw,-10px) scale(.7079);animation:fall-113 22s -23s linear infinite}@keyframes fall-113{66.981%{transform:translate(98.8723vw,66.981vh) scale(.7079)}to{transform:translate(95.9742vw,99vh) scale(.7079)}}.snow:nth-child(114){opacity:1.1656;transform:translate(68.2174vw,-10px) scale(.4965);animation:fall-114 13s -13s linear infinite}@keyframes fall-114{40.9%{transform:translate(72.1804vw,40.9vh) scale(.4965)}to{transform:translate(70.1989vw,99vh) scale(.4965)}}.snow:nth-child(115){opacity:.8524;transform:translate(.113vw,-10px) scale(.315);animation:fall-115 24s -24s linear infinite}@keyframes fall-115{59.95%{transform:translate(6.9683vw,59.95vh) scale(.315)}to{transform:translate(3.54065vw,99vh) scale(.315)}}.snow:nth-child(116){opacity:.2488;transform:translate(28.6059vw,-10px) scale(.1241);animation:fall-116 22s -6s linear infinite}@keyframes fall-116{34.129%{transform:translate(34.505vw,34.129vh) scale(.1241)}to{transform:translate(31.55545vw,99vh) scale(.1241)}}.snow:nth-child(117){opacity:.3696;transform:translate(30.6493vw,-10px) scale(.9343);animation:fall-117 15s -7s linear infinite}@keyframes fall-117{39.978%{transform:translate(21.2801vw,39.978vh) scale(.9343)}to{transform:translate(25.9647vw,99vh) scale(.9343)}}.snow:nth-child(118){opacity:1.6964;transform:translate(22.178vw,-10px) scale(.4501);animation:fall-118 16s -2s linear infinite}@keyframes fall-118{42.198%{transform:translate(17.1985vw,42.198vh) scale(.4501)}to{transform:translate(19.68825vw,99vh) scale(.4501)}}.snow:nth-child(119){opacity:1.3466;transform:translate(66.9777vw,-10px) scale(.4613);animation:fall-119 18s -11s linear infinite}@keyframes fall-119{49.424%{transform:translate(71.9853vw,49.424vh) scale(.4613)}to{transform:translate(69.4815vw,99vh) scale(.4613)}}.snow:nth-child(120){opacity:1.2366;transform:translate(91.3518vw,-10px) scale(.0335);animation:fall-120 25s -1s linear infinite}@keyframes fall-120{79.515%{transform:translate(91.2633vw,79.515vh) scale(.0335)}to{transform:translate(91.30755vw,99vh) scale(.0335)}}.snow:nth-child(121){opacity:.847;transform:translate(69.2419vw,-10px) scale(.6268);animation:fall-121 20s -20s linear infinite}@keyframes fall-121{43.739%{transform:translate(76.6207vw,43.739vh) scale(.6268)}to{transform:translate(72.9313vw,99vh) scale(.6268)}}.snow:nth-child(122){opacity:1.3674;transform:translate(10.4141vw,-10px) scale(.4572);animation:fall-122 27s -13s linear infinite}@keyframes fall-122{72.289%{transform:translate(12.5449vw,72.289vh) scale(.4572)}to{transform:translate(11.4795vw,99vh) scale(.4572)}}.snow:nth-child(123){opacity:.798;transform:translate(77.4682vw,-10px) scale(.4762);animation:fall-123 13s -3s linear infinite}@keyframes fall-123{68.007%{transform:translate(78.5914vw,68.007vh) scale(.4762)}to{transform:translate(78.0298vw,99vh) scale(.4762)}}.snow:nth-child(124){opacity:.7656;transform:translate(45.4181vw,-10px) scale(.7039);animation:fall-124 13s -25s linear infinite}@keyframes fall-124{76.278%{transform:translate(39.6218vw,76.278vh) scale(.7039)}to{transform:translate(42.51995vw,99vh) scale(.7039)}}.snow:nth-child(125){opacity:.817;transform:translate(53.2015vw,-10px) scale(.9369);animation:fall-125 13s -12s linear infinite}@keyframes fall-125{62.351%{transform:translate(45.2047vw,62.351vh) scale(.9369)}to{transform:translate(49.2031vw,99vh) scale(.9369)}}.snow:nth-child(126){opacity:1.2836;transform:translate(82.296vw,-10px) scale(.8899);animation:fall-126 26s -26s linear infinite}@keyframes fall-126{72.617%{transform:translate(76.3831vw,72.617vh) scale(.8899)}to{transform:translate(79.33955vw,99vh) scale(.8899)}}.snow:nth-child(127){opacity:.6482;transform:translate(28.3382vw,-10px) scale(.6399);animation:fall-127 13s -26s linear infinite}@keyframes fall-127{42.265%{transform:translate(33.9832vw,42.265vh) scale(.6399)}to{transform:translate(31.1607vw,99vh) scale(.6399)}}.snow:nth-child(128){opacity:.2442;transform:translate(2.9467vw,-10px) scale(.6072);animation:fall-128 12s -25s linear infinite}@keyframes fall-128{65.668%{transform:translate(-5.1653vw,65.668vh) scale(.6072)}to{transform:translate(-1.1093vw,99vh) scale(.6072)}}.snow:nth-child(129){opacity:.745;transform:translate(39.0125vw,-10px) scale(.7902);animation:fall-129 18s -17s linear infinite}@keyframes fall-129{70.367%{transform:translate(43.3202vw,70.367vh) scale(.7902)}to{transform:translate(41.16635vw,99vh) scale(.7902)}}.snow:nth-child(130){opacity:1.0706;transform:translate(14.3955vw,-10px) scale(.0362);animation:fall-130 10s -12s linear infinite}@keyframes fall-130{66.698%{transform:translate(23.6576vw,66.698vh) scale(.0362)}to{transform:translate(19.02655vw,99vh) scale(.0362)}}.snow:nth-child(131){opacity:.6224;transform:translate(94.074vw,-10px) scale(.046);animation:fall-131 29s -4s linear infinite}@keyframes fall-131{48.715%{transform:translate(103.6065vw,48.715vh) scale(.046)}to{transform:translate(98.84025vw,99vh) scale(.046)}}.snow:nth-child(132){opacity:.7654;transform:translate(37.7311vw,-10px) scale(.909);animation:fall-132 25s -11s linear infinite}@keyframes fall-132{74.926%{transform:translate(41.3391vw,74.926vh) scale(.909)}to{transform:translate(39.5351vw,99vh) scale(.909)}}.snow:nth-child(133){opacity:1.4632;transform:translate(10.6549vw,-10px) scale(.3192);animation:fall-133 25s -5s linear infinite}@keyframes fall-133{38.195%{transform:translate(3.7476vw,38.195vh) scale(.3192)}to{transform:translate(7.20125vw,99vh) scale(.3192)}}.snow:nth-child(134){opacity:.6894;transform:translate(58.8515vw,-10px) scale(.7543);animation:fall-134 16s -24s linear infinite}@keyframes fall-134{52.083%{transform:translate(51.1582vw,52.083vh) scale(.7543)}to{transform:translate(55.00485vw,99vh) scale(.7543)}}.snow:nth-child(135){opacity:.111;transform:translate(72.5712vw,-10px) scale(.6928);animation:fall-135 16s -2s linear infinite}@keyframes fall-135{51.845%{transform:translate(63.5277vw,51.845vh) scale(.6928)}to{transform:translate(68.04945vw,99vh) scale(.6928)}}.snow:nth-child(136){opacity:.7898;transform:translate(20.1971vw,-10px) scale(.4099);animation:fall-136 21s -4s linear infinite}@keyframes fall-136{60.396%{transform:translate(12.6423vw,60.396vh) scale(.4099)}to{transform:translate(16.4197vw,99vh) scale(.4099)}}.snow:nth-child(137){opacity:1.3616;transform:translate(54.825vw,-10px) scale(.2617);animation:fall-137 16s -9s linear infinite}@keyframes fall-137{33.084%{transform:translate(51.0728vw,33.084vh) scale(.2617)}to{transform:translate(52.9489vw,99vh) scale(.2617)}}.snow:nth-child(138){opacity:1.3394;transform:translate(81.4231vw,-10px) scale(.3427);animation:fall-138 14s -27s linear infinite}@keyframes fall-138{34.836%{transform:translate(80.1547vw,34.836vh) scale(.3427)}to{transform:translate(80.7889vw,99vh) scale(.3427)}}.snow:nth-child(139){opacity:1.329;transform:translate(74.8955vw,-10px) scale(.4358);animation:fall-139 14s -28s linear infinite}@keyframes fall-139{71.395%{transform:translate(69.4254vw,71.395vh) scale(.4358)}to{transform:translate(72.16045vw,99vh) scale(.4358)}}.snow:nth-child(140){opacity:1.933;transform:translate(35.8454vw,-10px) scale(.8301);animation:fall-140 10s -30s linear infinite}@keyframes fall-140{56.748%{transform:translate(37.677vw,56.748vh) scale(.8301)}to{transform:translate(36.7612vw,99vh) scale(.8301)}}.snow:nth-child(141){opacity:1.6992;transform:translate(90.1917vw,-10px) scale(.5824);animation:fall-141 29s -13s linear infinite}@keyframes fall-141{77.23%{transform:translate(91.8159vw,77.23vh) scale(.5824)}to{transform:translate(91.0038vw,99vh) scale(.5824)}}.snow:nth-child(142){opacity:.5772;transform:translate(54.8715vw,-10px) scale(.8865);animation:fall-142 12s -28s linear infinite}@keyframes fall-142{65.608%{transform:translate(48.3641vw,65.608vh) scale(.8865)}to{transform:translate(51.6178vw,99vh) scale(.8865)}}.snow:nth-child(143){opacity:1.006;transform:translate(24.951vw,-10px) scale(.7037);animation:fall-143 21s -12s linear infinite}@keyframes fall-143{51.903%{transform:translate(26.795vw,51.903vh) scale(.7037)}to{transform:translate(25.873vw,99vh) scale(.7037)}}.snow:nth-child(144){opacity:1.1712;transform:translate(24.8653vw,-10px) scale(.0566);animation:fall-144 28s -4s linear infinite}@keyframes fall-144{49.465%{transform:translate(14.9973vw,49.465vh) scale(.0566)}to{transform:translate(19.9313vw,99vh) scale(.0566)}}.snow:nth-child(145){opacity:1.5934;transform:translate(49.9541vw,-10px) scale(.8705);animation:fall-145 20s -28s linear infinite}@keyframes fall-145{71.093%{transform:translate(43.228vw,71.093vh) scale(.8705)}to{transform:translate(46.59105vw,99vh) scale(.8705)}}.snow:nth-child(146){opacity:.7452;transform:translate(4.8732vw,-10px) scale(.2894);animation:fall-146 18s -17s linear infinite}@keyframes fall-146{54.23%{transform:translate(-.3817vw,54.23vh) scale(.2894)}to{transform:translate(2.24575vw,99vh) scale(.2894)}}.snow:nth-child(147){opacity:1.6686;transform:translate(80.9875vw,-10px) scale(.6025);animation:fall-147 21s -27s linear infinite}@keyframes fall-147{40.026%{transform:translate(85.5736vw,40.026vh) scale(.6025)}to{transform:translate(83.28055vw,99vh) scale(.6025)}}.snow:nth-child(148){opacity:.4884;transform:translate(87.5683vw,-10px) scale(.801);animation:fall-148 12s -4s linear infinite}@keyframes fall-148{50.933%{transform:translate(84.6611vw,50.933vh) scale(.801)}to{transform:translate(86.1147vw,99vh) scale(.801)}}.snow:nth-child(149){opacity:.351;transform:translate(62.5968vw,-10px) scale(.4624);animation:fall-149 28s -29s linear infinite}@keyframes fall-149{53.645%{transform:translate(71.6196vw,53.645vh) scale(.4624)}to{transform:translate(67.1082vw,99vh) scale(.4624)}}.snow:nth-child(150){opacity:.0194;transform:translate(9.9275vw,-10px) scale(.6748);animation:fall-150 23s -26s linear infinite}@keyframes fall-150{36.421%{transform:translate(17.4403vw,36.421vh) scale(.6748)}to{transform:translate(13.6839vw,99vh) scale(.6748)}}.snow:nth-child(151){opacity:1.1942;transform:translate(23.9376vw,-10px) scale(.7221);animation:fall-151 30s -30s linear infinite}@keyframes fall-151{34.318%{transform:translate(28.1527vw,34.318vh) scale(.7221)}to{transform:translate(26.04515vw,99vh) scale(.7221)}}.snow:nth-child(152){opacity:1.535;transform:translate(61.5894vw,-10px) scale(.0994);animation:fall-152 26s -2s linear infinite}@keyframes fall-152{35.213%{transform:translate(61.4952vw,35.213vh) scale(.0994)}to{transform:translate(61.5423vw,99vh) scale(.0994)}}.snow:nth-child(153){opacity:.8692;transform:translate(81.8686vw,-10px) scale(.4689);animation:fall-153 30s -5s linear infinite}@keyframes fall-153{46.939%{transform:translate(75.896vw,46.939vh) scale(.4689)}to{transform:translate(78.8823vw,99vh) scale(.4689)}}.snow:nth-child(154){opacity:1.4546;transform:translate(74.423vw,-10px) scale(.9227);animation:fall-154 18s -28s linear infinite}@keyframes fall-154{44.139%{transform:translate(75.6481vw,44.139vh) scale(.9227)}to{transform:translate(75.03555vw,99vh) scale(.9227)}}.snow:nth-child(155){opacity:1.2896;transform:translate(68.0589vw,-10px) scale(.3241);animation:fall-155 30s -9s linear infinite}@keyframes fall-155{49.101%{transform:translate(62.6397vw,49.101vh) scale(.3241)}to{transform:translate(65.3493vw,99vh) scale(.3241)}}.snow:nth-child(156){opacity:1.1646;transform:translate(61.4722vw,-10px) scale(.1729);animation:fall-156 19s -2s linear infinite}@keyframes fall-156{70.322%{transform:translate(51.5789vw,70.322vh) scale(.1729)}to{transform:translate(56.52555vw,99vh) scale(.1729)}}.snow:nth-child(157){opacity:1.214;transform:translate(2.6384vw,-10px) scale(.7072);animation:fall-157 26s -28s linear infinite}@keyframes fall-157{55.617%{transform:translate(10.8463vw,55.617vh) scale(.7072)}to{transform:translate(6.74235vw,99vh) scale(.7072)}}.snow:nth-child(158){opacity:1.1986;transform:translate(14.8854vw,-10px) scale(.6461);animation:fall-158 16s -6s linear infinite}@keyframes fall-158{51.111%{transform:translate(9.0868vw,51.111vh) scale(.6461)}to{transform:translate(11.9861vw,99vh) scale(.6461)}}.snow:nth-child(159){opacity:1.5196;transform:translate(1.1886vw,-10px) scale(.2852);animation:fall-159 30s -21s linear infinite}@keyframes fall-159{70.005%{transform:translate(-6.6765vw,70.005vh) scale(.2852)}to{transform:translate(-2.74395vw,99vh) scale(.2852)}}.snow:nth-child(160){opacity:1.3408;transform:translate(12.195vw,-10px) scale(.9007);animation:fall-160 11s -15s linear infinite}@keyframes fall-160{42.246%{transform:translate(9.2835vw,42.246vh) scale(.9007)}to{transform:translate(10.73925vw,99vh) scale(.9007)}}.snow:nth-child(161){opacity:.1298;transform:translate(42.4139vw,-10px) scale(.8068);animation:fall-161 30s -29s linear infinite}@keyframes fall-161{40.198%{transform:translate(51.1264vw,40.198vh) scale(.8068)}to{transform:translate(46.77015vw,99vh) scale(.8068)}}.snow:nth-child(162){opacity:.6118;transform:translate(69.2185vw,-10px) scale(.1519);animation:fall-162 20s -10s linear infinite}@keyframes fall-162{69.373%{transform:translate(69.4256vw,69.373vh) scale(.1519)}to{transform:translate(69.32205vw,99vh) scale(.1519)}}.snow:nth-child(163){opacity:1.3974;transform:translate(21.2447vw,-10px) scale(.6048);animation:fall-163 28s -6s linear infinite}@keyframes fall-163{69.558%{transform:translate(29.1764vw,69.558vh) scale(.6048)}to{transform:translate(25.21055vw,99vh) scale(.6048)}}.snow:nth-child(164){opacity:.2022;transform:translate(66.466vw,-10px) scale(.5369);animation:fall-164 26s -17s linear infinite}@keyframes fall-164{31.846%{transform:translate(73.5953vw,31.846vh) scale(.5369)}to{transform:translate(70.03065vw,99vh) scale(.5369)}}.snow:nth-child(165){opacity:1.6416;transform:translate(90.6186vw,-10px) scale(.5382);animation:fall-165 30s -10s linear infinite}@keyframes fall-165{55.022%{transform:translate(88.8509vw,55.022vh) scale(.5382)}to{transform:translate(89.73475vw,99vh) scale(.5382)}}.snow:nth-child(166){opacity:1.9688;transform:translate(30.2455vw,-10px) scale(.333);animation:fall-166 26s -25s linear infinite}@keyframes fall-166{56.661%{transform:translate(33.1657vw,56.661vh) scale(.333)}to{transform:translate(31.7056vw,99vh) scale(.333)}}.snow:nth-child(167){opacity:1.737;transform:translate(9.7881vw,-10px) scale(.6858);animation:fall-167 22s -3s linear infinite}@keyframes fall-167{60.549%{transform:translate(5.9657vw,60.549vh) scale(.6858)}to{transform:translate(7.8769vw,99vh) scale(.6858)}}.snow:nth-child(168){opacity:.039;transform:translate(17.4751vw,-10px) scale(.3629);animation:fall-168 23s -9s linear infinite}@keyframes fall-168{68.426%{transform:translate(24.8342vw,68.426vh) scale(.3629)}to{transform:translate(21.15465vw,99vh) scale(.3629)}}.snow:nth-child(169){opacity:.1308;transform:translate(2.266vw,-10px) scale(.3937);animation:fall-169 30s -5s linear infinite}@keyframes fall-169{62.954%{transform:translate(3.6603vw,62.954vh) scale(.3937)}to{transform:translate(2.96315vw,99vh) scale(.3937)}}.snow:nth-child(170){opacity:.7988;transform:translate(74.2337vw,-10px) scale(.722);animation:fall-170 11s -9s linear infinite}@keyframes fall-170{54.43%{transform:translate(80.3816vw,54.43vh) scale(.722)}to{transform:translate(77.30765vw,99vh) scale(.722)}}.snow:nth-child(171){opacity:1.7888;transform:translate(26.9503vw,-10px) scale(.4212);animation:fall-171 11s -19s linear infinite}@keyframes fall-171{69.261%{transform:translate(33.3119vw,69.261vh) scale(.4212)}to{transform:translate(30.1311vw,99vh) scale(.4212)}}.snow:nth-child(172){opacity:.5748;transform:translate(14.4287vw,-10px) scale(.7573);animation:fall-172 12s -2s linear infinite}@keyframes fall-172{53.466%{transform:translate(4.6395vw,53.466vh) scale(.7573)}to{transform:translate(9.5341vw,99vh) scale(.7573)}}.snow:nth-child(173){opacity:.8912;transform:translate(90.7416vw,-10px) scale(.4613);animation:fall-173 21s -28s linear infinite}@keyframes fall-173{56.772%{transform:translate(89.1471vw,56.772vh) scale(.4613)}to{transform:translate(89.94435vw,99vh) scale(.4613)}}.snow:nth-child(174){opacity:1.6384;transform:translate(55.2657vw,-10px) scale(.7499);animation:fall-174 29s -3s linear infinite}@keyframes fall-174{59.639%{transform:translate(61.0205vw,59.639vh) scale(.7499)}to{transform:translate(58.1431vw,99vh) scale(.7499)}}.snow:nth-child(175){opacity:.5524;transform:translate(67.1121vw,-10px) scale(.4969);animation:fall-175 25s -10s linear infinite}@keyframes fall-175{76.657%{transform:translate(68.0835vw,76.657vh) scale(.4969)}to{transform:translate(67.5978vw,99vh) scale(.4969)}}.snow:nth-child(176){opacity:1.2412;transform:translate(7.6233vw,-10px) scale(.0226);animation:fall-176 12s -19s linear infinite}@keyframes fall-176{50.947%{transform:translate(3.4685vw,50.947vh) scale(.0226)}to{transform:translate(5.5459vw,99vh) scale(.0226)}}.snow:nth-child(177){opacity:1.9408;transform:translate(58.372vw,-10px) scale(.2475);animation:fall-177 21s -5s linear infinite}@keyframes fall-177{38.223%{transform:translate(62.7156vw,38.223vh) scale(.2475)}to{transform:translate(60.5438vw,99vh) scale(.2475)}}.snow:nth-child(178){opacity:.3944;transform:translate(61.6351vw,-10px) scale(.0566);animation:fall-178 25s -9s linear infinite}@keyframes fall-178{65.453%{transform:translate(57.3808vw,65.453vh) scale(.0566)}to{transform:translate(59.50795vw,99vh) scale(.0566)}}.snow:nth-child(179){opacity:1.1236;transform:translate(10.3885vw,-10px) scale(.654);animation:fall-179 19s -20s linear infinite}@keyframes fall-179{62.876%{transform:translate(12.2567vw,62.876vh) scale(.654)}to{transform:translate(11.3226vw,99vh) scale(.654)}}.snow:nth-child(180){opacity:1.7048;transform:translate(11.8823vw,-10px) scale(.1447);animation:fall-180 10s -23s linear infinite}@keyframes fall-180{59.541%{transform:translate(21.144vw,59.541vh) scale(.1447)}to{transform:translate(16.51315vw,99vh) scale(.1447)}}.snow:nth-child(181){opacity:.206;transform:translate(71.5196vw,-10px) scale(.5531);animation:fall-181 14s -13s linear infinite}@keyframes fall-181{34.948%{transform:translate(70.6249vw,34.948vh) scale(.5531)}to{transform:translate(71.07225vw,99vh) scale(.5531)}}.snow:nth-child(182){opacity:.5676;transform:translate(9.8458vw,-10px) scale(.2291);animation:fall-182 25s -3s linear infinite}@keyframes fall-182{58.123%{transform:translate(17.3989vw,58.123vh) scale(.2291)}to{transform:translate(13.62235vw,99vh) scale(.2291)}}.snow:nth-child(183){opacity:1.1038;transform:translate(13.8654vw,-10px) scale(.3449);animation:fall-183 18s -1s linear infinite}@keyframes fall-183{52.41%{transform:translate(9.1434vw,52.41vh) scale(.3449)}to{transform:translate(11.5044vw,99vh) scale(.3449)}}.snow:nth-child(184){opacity:1.7822;transform:translate(3.2112vw,-10px) scale(.8666);animation:fall-184 13s -28s linear infinite}@keyframes fall-184{54.864%{transform:translate(9.1442vw,54.864vh) scale(.8666)}to{transform:translate(6.1777vw,99vh) scale(.8666)}}.snow:nth-child(185){opacity:1.585;transform:translate(54.345vw,-10px) scale(.794);animation:fall-185 22s -17s linear infinite}@keyframes fall-185{33.73%{transform:translate(53.7725vw,33.73vh) scale(.794)}to{transform:translate(54.05875vw,99vh) scale(.794)}}.snow:nth-child(186){opacity:.2194;transform:translate(65.9431vw,-10px) scale(.5974);animation:fall-186 16s -5s linear infinite}@keyframes fall-186{61.175%{transform:translate(70.5514vw,61.175vh) scale(.5974)}to{transform:translate(68.24725vw,99vh) scale(.5974)}}.snow:nth-child(187){opacity:.66;transform:translate(34.5204vw,-10px) scale(.7502);animation:fall-187 18s -24s linear infinite}@keyframes fall-187{50.531%{transform:translate(25.8048vw,50.531vh) scale(.7502)}to{transform:translate(30.1626vw,99vh) scale(.7502)}}.snow:nth-child(188){opacity:.1926;transform:translate(6.2971vw,-10px) scale(.119);animation:fall-188 13s -13s linear infinite}@keyframes fall-188{60.103%{transform:translate(9.7598vw,60.103vh) scale(.119)}to{transform:translate(8.02845vw,99vh) scale(.119)}}.snow:nth-child(189){opacity:1.4862;transform:translate(62.5568vw,-10px) scale(.7885);animation:fall-189 25s -20s linear infinite}@keyframes fall-189{58.763%{transform:translate(56.7053vw,58.763vh) scale(.7885)}to{transform:translate(59.63105vw,99vh) scale(.7885)}}.snow:nth-child(190){opacity:.3488;transform:translate(3.0506vw,-10px) scale(.2231);animation:fall-190 11s -28s linear infinite}@keyframes fall-190{67.762%{transform:translate(3.2632vw,67.762vh) scale(.2231)}to{transform:translate(3.1569vw,99vh) scale(.2231)}}.snow:nth-child(191){opacity:.9358;transform:translate(9.1012vw,-10px) scale(.805);animation:fall-191 28s -21s linear infinite}@keyframes fall-191{52.918%{transform:translate(8.8158vw,52.918vh) scale(.805)}to{transform:translate(8.9585vw,99vh) scale(.805)}}.snow:nth-child(192){opacity:.4932;transform:translate(95.1339vw,-10px) scale(.4666);animation:fall-192 17s -11s linear infinite}@keyframes fall-192{36.774%{transform:translate(90.7929vw,36.774vh) scale(.4666)}to{transform:translate(92.9634vw,99vh) scale(.4666)}}.snow:nth-child(193){opacity:.766;transform:translate(17.4037vw,-10px) scale(.912);animation:fall-193 23s -20s linear infinite}@keyframes fall-193{79.612%{transform:translate(10.8259vw,79.612vh) scale(.912)}to{transform:translate(14.1148vw,99vh) scale(.912)}}.snow:nth-child(194){opacity:1.64;transform:translate(15.0392vw,-10px) scale(.6355);animation:fall-194 15s -24s linear infinite}@keyframes fall-194{74.76%{transform:translate(19.0808vw,74.76vh) scale(.6355)}to{transform:translate(17.06vw,99vh) scale(.6355)}}.snow:nth-child(195){opacity:1.8612;transform:translate(96.7729vw,-10px) scale(.6292);animation:fall-195 23s -11s linear infinite}@keyframes fall-195{51.45%{transform:translate(95.7709vw,51.45vh) scale(.6292)}to{transform:translate(96.2719vw,99vh) scale(.6292)}}.snow:nth-child(196){opacity:.8182;transform:translate(30.1605vw,-10px) scale(.3718);animation:fall-196 15s -28s linear infinite}@keyframes fall-196{42.589%{transform:translate(21.147vw,42.589vh) scale(.3718)}to{transform:translate(25.65375vw,99vh) scale(.3718)}}.snow:nth-child(197){opacity:.4936;transform:translate(18.792vw,-10px) scale(.0111);animation:fall-197 27s -6s linear infinite}@keyframes fall-197{31.625%{transform:translate(16.9259vw,31.625vh) scale(.0111)}to{transform:translate(17.85895vw,99vh) scale(.0111)}}.snow:nth-child(198){opacity:1.4716;transform:translate(18.3428vw,-10px) scale(.6995);animation:fall-198 12s -5s linear infinite}@keyframes fall-198{76.224%{transform:translate(12.6237vw,76.224vh) scale(.6995)}to{transform:translate(15.48325vw,99vh) scale(.6995)}}.snow:nth-child(199){opacity:.2754;transform:translate(68.5409vw,-10px) scale(.6072);animation:fall-199 14s -17s linear infinite}@keyframes fall-199{59.57%{transform:translate(63.5929vw,59.57vh) scale(.6072)}to{transform:translate(66.0669vw,99vh) scale(.6072)}}.snow:nth-child(200){opacity:.4518;transform:translate(93.9851vw,-10px) scale(.6551);animation:fall-200 25s -5s linear infinite}@keyframes fall-200{41.353%{transform:translate(98.7496vw,41.353vh) scale(.6551)}to{transform:translate(96.36735vw,99vh) scale(.6551)}}.snow:nth-child(201){opacity:.3934;transform:translate(72.3058vw,-10px) scale(.0552);animation:fall-201 24s -14s linear infinite}@keyframes fall-201{73.578%{transform:translate(77.0012vw,73.578vh) scale(.0552)}to{transform:translate(74.6535vw,99vh) scale(.0552)}}.snow:nth-child(202){opacity:1.8212;transform:translate(85.5022vw,-10px) scale(.5022);animation:fall-202 26s -3s linear infinite}@keyframes fall-202{32.63%{transform:translate(83.7846vw,32.63vh) scale(.5022)}to{transform:translate(84.6434vw,99vh) scale(.5022)}}.snow:nth-child(203){opacity:1.4996;transform:translate(29.204vw,-10px) scale(.5278);animation:fall-203 25s -1s linear infinite}@keyframes fall-203{56.051%{transform:translate(24.0206vw,56.051vh) scale(.5278)}to{transform:translate(26.6123vw,99vh) scale(.5278)}}.snow:nth-child(204){opacity:.396;transform:translate(22.1159vw,-10px) scale(.3088);animation:fall-204 12s -26s linear infinite}@keyframes fall-204{52.826%{transform:translate(20.3646vw,52.826vh) scale(.3088)}to{transform:translate(21.24025vw,99vh) scale(.3088)}}.snow:nth-child(205){opacity:.506;transform:translate(51.6513vw,-10px) scale(.3971);animation:fall-205 21s -28s linear infinite}@keyframes fall-205{66.475%{transform:translate(50.889vw,66.475vh) scale(.3971)}to{transform:translate(51.27015vw,99vh) scale(.3971)}}.snow:nth-child(206){opacity:1.7032;transform:translate(89.8951vw,-10px) scale(.7575);animation:fall-206 22s -7s linear infinite}@keyframes fall-206{71.66%{transform:translate(82.5367vw,71.66vh) scale(.7575)}to{transform:translate(86.2159vw,99vh) scale(.7575)}}.snow:nth-child(207){opacity:1.5716;transform:translate(99.9686vw,-10px) scale(.3475);animation:fall-207 12s -15s linear infinite}@keyframes fall-207{66.314%{transform:translate(106.1914vw,66.314vh) scale(.3475)}to{transform:translate(103.08vw,99vh) scale(.3475)}}.snow:nth-child(208){opacity:1.1108;transform:translate(2.2691vw,-10px) scale(.4655);animation:fall-208 13s -29s linear infinite}@keyframes fall-208{60.029%{transform:translate(11.7635vw,60.029vh) scale(.4655)}to{transform:translate(7.0163vw,99vh) scale(.4655)}}.snow:nth-child(209){opacity:1.451;transform:translate(75.1054vw,-10px) scale(.6497);animation:fall-209 17s -11s linear infinite}@keyframes fall-209{63.748%{transform:translate(72.8365vw,63.748vh) scale(.6497)}to{transform:translate(73.97095vw,99vh) scale(.6497)}}.snow:nth-child(210){opacity:.9184;transform:translate(27.2559vw,-10px) scale(.6861);animation:fall-210 21s -8s linear infinite}@keyframes fall-210{38.087%{transform:translate(33.9774vw,38.087vh) scale(.6861)}to{transform:translate(30.61665vw,99vh) scale(.6861)}}.snow:nth-child(211){opacity:1.4912;transform:translate(66.9695vw,-10px) scale(.7376);animation:fall-211 14s -25s linear infinite}@keyframes fall-211{57.016%{transform:translate(59.6316vw,57.016vh) scale(.7376)}to{transform:translate(63.30055vw,99vh) scale(.7376)}}.snow:nth-child(212){opacity:.581;transform:translate(98.8749vw,-10px) scale(.6748);animation:fall-212 22s -30s linear infinite}@keyframes fall-212{57.352%{transform:translate(102.5551vw,57.352vh) scale(.6748)}to{transform:translate(100.715vw,99vh) scale(.6748)}}.snow:nth-child(213){opacity:1.9068;transform:translate(46.773vw,-10px) scale(.1175);animation:fall-213 26s -2s linear infinite}@keyframes fall-213{64.442%{transform:translate(52.6787vw,64.442vh) scale(.1175)}to{transform:translate(49.72585vw,99vh) scale(.1175)}}.snow:nth-child(214){opacity:.9462;transform:translate(26.3812vw,-10px) scale(.0143);animation:fall-214 21s -3s linear infinite}@keyframes fall-214{46.751%{transform:translate(21.2223vw,46.751vh) scale(.0143)}to{transform:translate(23.80175vw,99vh) scale(.0143)}}.snow:nth-child(215){opacity:1.877;transform:translate(35.1653vw,-10px) scale(.0701);animation:fall-215 22s -21s linear infinite}@keyframes fall-215{71.601%{transform:translate(37.2325vw,71.601vh) scale(.0701)}to{transform:translate(36.1989vw,99vh) scale(.0701)}}.snow:nth-child(216){opacity:.3412;transform:translate(96.3779vw,-10px) scale(.8898);animation:fall-216 26s -5s linear infinite}@keyframes fall-216{33.323%{transform:translate(102.0881vw,33.323vh) scale(.8898)}to{transform:translate(99.233vw,99vh) scale(.8898)}}.snow:nth-child(217){opacity:1.7738;transform:translate(99.5028vw,-10px) scale(.7474);animation:fall-217 10s -15s linear infinite}@keyframes fall-217{41.779%{transform:translate(96.9148vw,41.779vh) scale(.7474)}to{transform:translate(98.2088vw,99vh) scale(.7474)}}.snow:nth-child(218){opacity:.6414;transform:translate(6.0274vw,-10px) scale(.7435);animation:fall-218 28s -7s linear infinite}@keyframes fall-218{31.196%{transform:translate(-3.3949vw,31.196vh) scale(.7435)}to{transform:translate(1.31625vw,99vh) scale(.7435)}}.snow:nth-child(219){opacity:1.3976;transform:translate(44.1924vw,-10px) scale(.3421);animation:fall-219 16s -24s linear infinite}@keyframes fall-219{43.764%{transform:translate(35.0661vw,43.764vh) scale(.3421)}to{transform:translate(39.62925vw,99vh) scale(.3421)}}.snow:nth-child(220){opacity:1.424;transform:translate(76.824vw,-10px) scale(.3578);animation:fall-220 19s -12s linear infinite}@keyframes fall-220{44.701%{transform:translate(86.7772vw,44.701vh) scale(.3578)}to{transform:translate(81.8006vw,99vh) scale(.3578)}}.snow:nth-child(221){opacity:.7886;transform:translate(28.8142vw,-10px) scale(.6387);animation:fall-221 27s -21s linear infinite}@keyframes fall-221{38.37%{transform:translate(21.4966vw,38.37vh) scale(.6387)}to{transform:translate(25.1554vw,99vh) scale(.6387)}}.snow:nth-child(222){opacity:1.446;transform:translate(1.8808vw,-10px) scale(.9693);animation:fall-222 27s -4s linear infinite}@keyframes fall-222{43.263%{transform:translate(1.742vw,43.263vh) scale(.9693)}to{transform:translate(1.8114vw,99vh) scale(.9693)}}.snow:nth-child(223){opacity:1.1542;transform:translate(90.1864vw,-10px) scale(.3502);animation:fall-223 11s -19s linear infinite}@keyframes fall-223{38.578%{transform:translate(97.282vw,38.578vh) scale(.3502)}to{transform:translate(93.7342vw,99vh) scale(.3502)}}.snow:nth-child(224){opacity:1.481;transform:translate(25.4284vw,-10px) scale(.4616);animation:fall-224 23s -5s linear infinite}@keyframes fall-224{34.957%{transform:translate(24.7057vw,34.957vh) scale(.4616)}to{transform:translate(25.06705vw,99vh) scale(.4616)}}.snow:nth-child(225){opacity:1.7202;transform:translate(89.43vw,-10px) scale(.8533);animation:fall-225 14s -19s linear infinite}@keyframes fall-225{37.828%{transform:translate(92.801vw,37.828vh) scale(.8533)}to{transform:translate(91.1155vw,99vh) scale(.8533)}}.snow:nth-child(226){opacity:.3976;transform:translate(39.0986vw,-10px) scale(.9848);animation:fall-226 14s -14s linear infinite}@keyframes fall-226{62.786%{transform:translate(47.1395vw,62.786vh) scale(.9848)}to{transform:translate(43.11905vw,99vh) scale(.9848)}}.snow:nth-child(227){opacity:.1796;transform:translate(52.2681vw,-10px) scale(.9359);animation:fall-227 14s -2s linear infinite}@keyframes fall-227{59.339%{transform:translate(53.1243vw,59.339vh) scale(.9359)}to{transform:translate(52.6962vw,99vh) scale(.9359)}}.snow:nth-child(228){opacity:.7858;transform:translate(39.4697vw,-10px) scale(.5685);animation:fall-228 16s -17s linear infinite}@keyframes fall-228{47.524%{transform:translate(34.6226vw,47.524vh) scale(.5685)}to{transform:translate(37.04615vw,99vh) scale(.5685)}}.snow:nth-child(229){opacity:.0674;transform:translate(16.1737vw,-10px) scale(.049);animation:fall-229 29s -30s linear infinite}@keyframes fall-229{34.838%{transform:translate(10.1132vw,34.838vh) scale(.049)}to{transform:translate(13.14345vw,99vh) scale(.049)}}.snow:nth-child(230){opacity:.3528;transform:translate(63.5557vw,-10px) scale(.316);animation:fall-230 19s -19s linear infinite}@keyframes fall-230{43.37%{transform:translate(67.622vw,43.37vh) scale(.316)}to{transform:translate(65.58885vw,99vh) scale(.316)}}.snow:nth-child(231){opacity:1.5378;transform:translate(57.2658vw,-10px) scale(.8773);animation:fall-231 20s -12s linear infinite}@keyframes fall-231{44.282%{transform:translate(56.3759vw,44.282vh) scale(.8773)}to{transform:translate(56.82085vw,99vh) scale(.8773)}}.snow:nth-child(232){opacity:.5306;transform:translate(86.54vw,-10px) scale(.3825);animation:fall-232 19s -30s linear infinite}@keyframes fall-232{52.361%{transform:translate(90.5308vw,52.361vh) scale(.3825)}to{transform:translate(88.5354vw,99vh) scale(.3825)}}.snow:nth-child(233){opacity:1.974;transform:translate(18.5015vw,-10px) scale(.3208);animation:fall-233 21s -30s linear infinite}@keyframes fall-233{66.252%{transform:translate(17.8375vw,66.252vh) scale(.3208)}to{transform:translate(18.1695vw,99vh) scale(.3208)}}.snow:nth-child(234){opacity:1.7068;transform:translate(2.0102vw,-10px) scale(.6964);animation:fall-234 18s -17s linear infinite}@keyframes fall-234{78.269%{transform:translate(3.6815vw,78.269vh) scale(.6964)}to{transform:translate(2.84585vw,99vh) scale(.6964)}}.snow:nth-child(235){opacity:1.7884;transform:translate(40.1616vw,-10px) scale(.0242);animation:fall-235 21s -11s linear infinite}@keyframes fall-235{56.112%{transform:translate(31.3546vw,56.112vh) scale(.0242)}to{transform:translate(35.7581vw,99vh) scale(.0242)}}.snow:nth-child(236){opacity:.1288;transform:translate(45.9416vw,-10px) scale(.1803);animation:fall-236 20s -13s linear infinite}@keyframes fall-236{36.381%{transform:translate(37.8335vw,36.381vh) scale(.1803)}to{transform:translate(41.88755vw,99vh) scale(.1803)}}.snow:nth-child(237){opacity:.978;transform:translate(21.9936vw,-10px) scale(.5212);animation:fall-237 17s -21s linear infinite}@keyframes fall-237{74.639%{transform:translate(14.7761vw,74.639vh) scale(.5212)}to{transform:translate(18.38485vw,99vh) scale(.5212)}}.snow:nth-child(238){opacity:.8338;transform:translate(66.7013vw,-10px) scale(.463);animation:fall-238 13s -19s linear infinite}@keyframes fall-238{33.859%{transform:translate(66.3034vw,33.859vh) scale(.463)}to{transform:translate(66.50235vw,99vh) scale(.463)}}.snow:nth-child(239){opacity:1.8794;transform:translate(71.463vw,-10px) scale(.011);animation:fall-239 22s -10s linear infinite}@keyframes fall-239{49.178%{transform:translate(67.3764vw,49.178vh) scale(.011)}to{transform:translate(69.4197vw,99vh) scale(.011)}}.snow:nth-child(240){opacity:.2952;transform:translate(38.067vw,-10px) scale(.9314);animation:fall-240 12s -12s linear infinite}@keyframes fall-240{58.277%{transform:translate(44.9559vw,58.277vh) scale(.9314)}to{transform:translate(41.51145vw,99vh) scale(.9314)}}.snow:nth-child(241){opacity:.5016;transform:translate(27.7959vw,-10px) scale(.7632);animation:fall-241 23s -11s linear infinite}@keyframes fall-241{64.373%{transform:translate(32.1456vw,64.373vh) scale(.7632)}to{transform:translate(29.97075vw,99vh) scale(.7632)}}.snow:nth-child(242){opacity:1.082;transform:translate(95.763vw,-10px) scale(.478);animation:fall-242 26s -6s linear infinite}@keyframes fall-242{36.162%{transform:translate(88.3719vw,36.162vh) scale(.478)}to{transform:translate(92.06745vw,99vh) scale(.478)}}.snow:nth-child(243){opacity:1.18;transform:translate(30.5499vw,-10px) scale(.6773);animation:fall-243 29s -3s linear infinite}@keyframes fall-243{43.421%{transform:translate(26.6796vw,43.421vh) scale(.6773)}to{transform:translate(28.61475vw,99vh) scale(.6773)}}.snow:nth-child(244){opacity:1.5928;transform:translate(98.9277vw,-10px) scale(.0533);animation:fall-244 10s -7s linear infinite}@keyframes fall-244{35.498%{transform:translate(89.7244vw,35.498vh) scale(.0533)}to{transform:translate(94.32605vw,99vh) scale(.0533)}}.snow:nth-child(245){opacity:.078;transform:translate(3.596vw,-10px) scale(.7969);animation:fall-245 16s -21s linear infinite}@keyframes fall-245{63.351%{transform:translate(10.8411vw,63.351vh) scale(.7969)}to{transform:translate(7.21855vw,99vh) scale(.7969)}}.snow:nth-child(246){opacity:.34;transform:translate(11.9408vw,-10px) scale(.8398);animation:fall-246 11s -30s linear infinite}@keyframes fall-246{41.987%{transform:translate(7.3463vw,41.987vh) scale(.8398)}to{transform:translate(9.64355vw,99vh) scale(.8398)}}.snow:nth-child(247){opacity:1.044;transform:translate(77.5872vw,-10px) scale(.7639);animation:fall-247 14s -9s linear infinite}@keyframes fall-247{46.289%{transform:translate(80.869vw,46.289vh) scale(.7639)}to{transform:translate(79.2281vw,99vh) scale(.7639)}}.snow:nth-child(248){opacity:1.371;transform:translate(88.084vw,-10px) scale(.9295);animation:fall-248 13s -14s linear infinite}@keyframes fall-248{46.386%{transform:translate(79.242vw,46.386vh) scale(.9295)}to{transform:translate(83.663vw,99vh) scale(.9295)}}.snow:nth-child(249){opacity:1.2596;transform:translate(3.5211vw,-10px) scale(.8118);animation:fall-249 18s -29s linear infinite}@keyframes fall-249{47.204%{transform:translate(12.8887vw,47.204vh) scale(.8118)}to{transform:translate(8.2049vw,99vh) scale(.8118)}}.snow:nth-child(250){opacity:.6756;transform:translate(29.9573vw,-10px) scale(.524);animation:fall-250 19s -2s linear infinite}@keyframes fall-250{50.195%{transform:translate(31.5483vw,50.195vh) scale(.524)}to{transform:translate(30.7528vw,99vh) scale(.524)}}.snow:nth-child(251){opacity:1.5458;transform:translate(84.1527vw,-10px) scale(.7271);animation:fall-251 23s -10s linear infinite}@keyframes fall-251{45.305%{transform:translate(75.576vw,45.305vh) scale(.7271)}to{transform:translate(79.86435vw,99vh) scale(.7271)}}.snow:nth-child(252){opacity:.604;transform:translate(68.9976vw,-10px) scale(.6503);animation:fall-252 16s -25s linear infinite}@keyframes fall-252{64.94%{transform:translate(72.3798vw,64.94vh) scale(.6503)}to{transform:translate(70.6887vw,99vh) scale(.6503)}}.snow:nth-child(253){opacity:1.7466;transform:translate(91.7456vw,-10px) scale(.0781);animation:fall-253 29s -12s linear infinite}@keyframes fall-253{31.594%{transform:translate(93.0698vw,31.594vh) scale(.0781)}to{transform:translate(92.4077vw,99vh) scale(.0781)}}.snow:nth-child(254){opacity:.676;transform:translate(95.6842vw,-10px) scale(.9054);animation:fall-254 17s -13s linear infinite}@keyframes fall-254{65.097%{transform:translate(102.6914vw,65.097vh) scale(.9054)}to{transform:translate(99.1878vw,99vh) scale(.9054)}}.snow:nth-child(255){opacity:1.872;transform:translate(32.0691vw,-10px) scale(.8558);animation:fall-255 11s -23s linear infinite}@keyframes fall-255{30.278%{transform:translate(27.7223vw,30.278vh) scale(.8558)}to{transform:translate(29.8957vw,99vh) scale(.8558)}}.snow:nth-child(256){opacity:.5806;transform:translate(25.8515vw,-10px) scale(.533);animation:fall-256 15s -1s linear infinite}@keyframes fall-256{70.713%{transform:translate(30.582vw,70.713vh) scale(.533)}to{transform:translate(28.21675vw,99vh) scale(.533)}}.snow:nth-child(257){opacity:.9934;transform:translate(21.4808vw,-10px) scale(.6228);animation:fall-257 22s -12s linear infinite}@keyframes fall-257{48.536%{transform:translate(21.5079vw,48.536vh) scale(.6228)}to{transform:translate(21.49435vw,99vh) scale(.6228)}}.snow:nth-child(258){opacity:.2544;transform:translate(92.6487vw,-10px) scale(.4153);animation:fall-258 22s -29s linear infinite}@keyframes fall-258{36.53%{transform:translate(86.4673vw,36.53vh) scale(.4153)}to{transform:translate(89.558vw,99vh) scale(.4153)}}.snow:nth-child(259){opacity:.5074;transform:translate(64.5561vw,-10px) scale(.746);animation:fall-259 25s -4s linear infinite}@keyframes fall-259{39.917%{transform:translate(67.247vw,39.917vh) scale(.746)}to{transform:translate(65.90155vw,99vh) scale(.746)}}.snow:nth-child(260){opacity:.6386;transform:translate(18.3086vw,-10px) scale(.8788);animation:fall-260 15s -17s linear infinite}@keyframes fall-260{65.331%{transform:translate(15.5885vw,65.331vh) scale(.8788)}to{transform:translate(16.94855vw,99vh) scale(.8788)}}.snow:nth-child(261){opacity:.9466;transform:translate(88.8106vw,-10px) scale(.1434);animation:fall-261 27s -12s linear infinite}@keyframes fall-261{77.993%{transform:translate(85.9334vw,77.993vh) scale(.1434)}to{transform:translate(87.372vw,99vh) scale(.1434)}}.snow:nth-child(262){opacity:1.7212;transform:translate(34.1737vw,-10px) scale(.8536);animation:fall-262 22s -2s linear infinite}@keyframes fall-262{64.456%{transform:translate(36.3071vw,64.456vh) scale(.8536)}to{transform:translate(35.2404vw,99vh) scale(.8536)}}.snow:nth-child(263){opacity:.8424;transform:translate(35.1829vw,-10px) scale(.3764);animation:fall-263 16s -12s linear infinite}@keyframes fall-263{60.764%{transform:translate(31.6864vw,60.764vh) scale(.3764)}to{transform:translate(33.43465vw,99vh) scale(.3764)}}.snow:nth-child(264){opacity:1.1016;transform:translate(92.9619vw,-10px) scale(.1574);animation:fall-264 27s -5s linear infinite}@keyframes fall-264{63.83%{transform:translate(99.9983vw,63.83vh) scale(.1574)}to{transform:translate(96.4801vw,99vh) scale(.1574)}}.snow:nth-child(265){opacity:1.264;transform:translate(73.5608vw,-10px) scale(.875);animation:fall-265 29s -1s linear infinite}@keyframes fall-265{46.236%{transform:translate(72.2428vw,46.236vh) scale(.875)}to{transform:translate(72.9018vw,99vh) scale(.875)}}.snow:nth-child(266){opacity:1.091;transform:translate(7.7005vw,-10px) scale(.6212);animation:fall-266 20s -14s linear infinite}@keyframes fall-266{44.415%{transform:translate(8.8773vw,44.415vh) scale(.6212)}to{transform:translate(8.2889vw,99vh) scale(.6212)}}.snow:nth-child(267){opacity:.4052;transform:translate(83.9993vw,-10px) scale(.6431);animation:fall-267 29s -17s linear infinite}@keyframes fall-267{44.849%{transform:translate(91.791vw,44.849vh) scale(.6431)}to{transform:translate(87.89515vw,99vh) scale(.6431)}}.snow:nth-child(268){opacity:.5302;transform:translate(49.8012vw,-10px) scale(.4606);animation:fall-268 15s -25s linear infinite}@keyframes fall-268{49.608%{transform:translate(56.5581vw,49.608vh) scale(.4606)}to{transform:translate(53.17965vw,99vh) scale(.4606)}}.snow:nth-child(269){opacity:.2144;transform:translate(28.7488vw,-10px) scale(.571);animation:fall-269 26s -15s linear infinite}@keyframes fall-269{43.63%{transform:translate(31.0981vw,43.63vh) scale(.571)}to{transform:translate(29.92345vw,99vh) scale(.571)}}.snow:nth-child(270){opacity:1.123;transform:translate(35.8351vw,-10px) scale(.9673);animation:fall-270 24s -3s linear infinite}@keyframes fall-270{49.356%{transform:translate(36.1803vw,49.356vh) scale(.9673)}to{transform:translate(36.0077vw,99vh) scale(.9673)}}.snow:nth-child(271){opacity:1.2786;transform:translate(82.7115vw,-10px) scale(.0289);animation:fall-271 10s -2s linear infinite}@keyframes fall-271{33.446%{transform:translate(92.6586vw,33.446vh) scale(.0289)}to{transform:translate(87.68505vw,99vh) scale(.0289)}}.snow:nth-child(272){opacity:.5224;transform:translate(79.1153vw,-10px) scale(.19);animation:fall-272 16s -6s linear infinite}@keyframes fall-272{79.273%{transform:translate(88.3384vw,79.273vh) scale(.19)}to{transform:translate(83.72685vw,99vh) scale(.19)}}.snow:nth-child(273){opacity:1.4682;transform:translate(7.3765vw,-10px) scale(.697);animation:fall-273 15s -3s linear infinite}@keyframes fall-273{74.465%{transform:translate(.8264vw,74.465vh) scale(.697)}to{transform:translate(4.10145vw,99vh) scale(.697)}}.snow:nth-child(274){opacity:.4522;transform:translate(24.4771vw,-10px) scale(.6749);animation:fall-274 30s -6s linear infinite}@keyframes fall-274{71.941%{transform:translate(15.0038vw,71.941vh) scale(.6749)}to{transform:translate(19.74045vw,99vh) scale(.6749)}}.snow:nth-child(275){opacity:1.2584;transform:translate(82.7927vw,-10px) scale(.033);animation:fall-275 20s -7s linear infinite}@keyframes fall-275{50.366%{transform:translate(90.8228vw,50.366vh) scale(.033)}to{transform:translate(86.80775vw,99vh) scale(.033)}}.snow:nth-child(276){opacity:.5478;transform:translate(71.1464vw,-10px) scale(.8215);animation:fall-276 20s -29s linear infinite}@keyframes fall-276{67.246%{transform:translate(62.9656vw,67.246vh) scale(.8215)}to{transform:translate(67.056vw,99vh) scale(.8215)}}.snow:nth-child(277){opacity:1.7366;transform:translate(61.6828vw,-10px) scale(.0302);animation:fall-277 21s -8s linear infinite}@keyframes fall-277{33.521%{transform:translate(61.3434vw,33.521vh) scale(.0302)}to{transform:translate(61.5131vw,99vh) scale(.0302)}}.snow:nth-child(278){opacity:.3364;transform:translate(51.5307vw,-10px) scale(.6223);animation:fall-278 11s -3s linear infinite}@keyframes fall-278{46.403%{transform:translate(42.6701vw,46.403vh) scale(.6223)}to{transform:translate(47.1004vw,99vh) scale(.6223)}}.snow:nth-child(279){opacity:.4134;transform:translate(48.3969vw,-10px) scale(.2948);animation:fall-279 28s -3s linear infinite}@keyframes fall-279{30.763%{transform:translate(46.3176vw,30.763vh) scale(.2948)}to{transform:translate(47.35725vw,99vh) scale(.2948)}}.snow:nth-child(280){opacity:.5428;transform:translate(40.9451vw,-10px) scale(.8672);animation:fall-280 24s -14s linear infinite}@keyframes fall-280{66.671%{transform:translate(37.1214vw,66.671vh) scale(.8672)}to{transform:translate(39.03325vw,99vh) scale(.8672)}}.snow:nth-child(281){opacity:.771;transform:translate(61.8053vw,-10px) scale(.6976);animation:fall-281 10s -18s linear infinite}@keyframes fall-281{64.04%{transform:translate(52.1403vw,64.04vh) scale(.6976)}to{transform:translate(56.9728vw,99vh) scale(.6976)}}.snow:nth-child(282){opacity:.3628;transform:translate(47.005vw,-10px) scale(.1337);animation:fall-282 10s -13s linear infinite}@keyframes fall-282{48.953%{transform:translate(38.2157vw,48.953vh) scale(.1337)}to{transform:translate(42.61035vw,99vh) scale(.1337)}}.snow:nth-child(283){opacity:.567;transform:translate(29.9274vw,-10px) scale(.6837);animation:fall-283 23s -9s linear infinite}@keyframes fall-283{68.143%{transform:translate(35.3202vw,68.143vh) scale(.6837)}to{transform:translate(32.6238vw,99vh) scale(.6837)}}.snow:nth-child(284){opacity:.6002;transform:translate(58.9557vw,-10px) scale(.9715);animation:fall-284 26s -22s linear infinite}@keyframes fall-284{65.068%{transform:translate(51.5476vw,65.068vh) scale(.9715)}to{transform:translate(55.25165vw,99vh) scale(.9715)}}.snow:nth-child(285){opacity:.4276;transform:translate(8.241vw,-10px) scale(.7551);animation:fall-285 29s -8s linear infinite}@keyframes fall-285{46.051%{transform:translate(16.4363vw,46.051vh) scale(.7551)}to{transform:translate(12.33865vw,99vh) scale(.7551)}}.snow:nth-child(286){opacity:1.7064;transform:translate(63.3754vw,-10px) scale(.0965);animation:fall-286 21s -24s linear infinite}@keyframes fall-286{75.675%{transform:translate(62.4312vw,75.675vh) scale(.0965)}to{transform:translate(62.9033vw,99vh) scale(.0965)}}.snow:nth-child(287){opacity:.8538;transform:translate(63.0445vw,-10px) scale(.9885);animation:fall-287 16s -20s linear infinite}@keyframes fall-287{33.156%{transform:translate(62.7342vw,33.156vh) scale(.9885)}to{transform:translate(62.88935vw,99vh) scale(.9885)}}.snow:nth-child(288){opacity:1.2362;transform:translate(74.8184vw,-10px) scale(.3419);animation:fall-288 22s -22s linear infinite}@keyframes fall-288{44.058%{transform:translate(72.8485vw,44.058vh) scale(.3419)}to{transform:translate(73.83345vw,99vh) scale(.3419)}}.snow:nth-child(289){opacity:1.3604;transform:translate(38.0887vw,-10px) scale(.1194);animation:fall-289 22s -13s linear infinite}@keyframes fall-289{60.735%{transform:translate(31.0319vw,60.735vh) scale(.1194)}to{transform:translate(34.5603vw,99vh) scale(.1194)}}.snow:nth-child(290){opacity:.3914;transform:translate(80.7208vw,-10px) scale(.9057);animation:fall-290 25s -24s linear infinite}@keyframes fall-290{60.106%{transform:translate(74.2694vw,60.106vh) scale(.9057)}to{transform:translate(77.4951vw,99vh) scale(.9057)}}.snow:nth-child(291){opacity:.8556;transform:translate(11.196vw,-10px) scale(.0278);animation:fall-291 13s -12s linear infinite}@keyframes fall-291{42.839%{transform:translate(21.038vw,42.839vh) scale(.0278)}to{transform:translate(16.117vw,99vh) scale(.0278)}}.snow:nth-child(292){opacity:.2362;transform:translate(58.9494vw,-10px) scale(.044);animation:fall-292 14s -4s linear infinite}@keyframes fall-292{49.921%{transform:translate(57.0756vw,49.921vh) scale(.044)}to{transform:translate(58.0125vw,99vh) scale(.044)}}.snow:nth-child(293){opacity:.5268;transform:translate(2.4164vw,-10px) scale(.5233);animation:fall-293 29s -27s linear infinite}@keyframes fall-293{38.593%{transform:translate(-6.8686vw,38.593vh) scale(.5233)}to{transform:translate(-2.2261vw,99vh) scale(.5233)}}.snow:nth-child(294){opacity:1.4762;transform:translate(29.9578vw,-10px) scale(.2401);animation:fall-294 18s -25s linear infinite}@keyframes fall-294{54.452%{transform:translate(30.801vw,54.452vh) scale(.2401)}to{transform:translate(30.3794vw,99vh) scale(.2401)}}.snow:nth-child(295){opacity:1.596;transform:translate(53.9916vw,-10px) scale(.0231);animation:fall-295 28s -12s linear infinite}@keyframes fall-295{42.689%{transform:translate(60.6397vw,42.689vh) scale(.0231)}to{transform:translate(57.31565vw,99vh) scale(.0231)}}.snow:nth-child(296){opacity:.0668;transform:translate(67.399vw,-10px) scale(.3277);animation:fall-296 12s -7s linear infinite}@keyframes fall-296{75.746%{transform:translate(61.087vw,75.746vh) scale(.3277)}to{transform:translate(64.243vw,99vh) scale(.3277)}}.snow:nth-child(297){opacity:1.7076;transform:translate(92.7043vw,-10px) scale(.6012);animation:fall-297 10s -8s linear infinite}@keyframes fall-297{40.484%{transform:translate(100.9807vw,40.484vh) scale(.6012)}to{transform:translate(96.8425vw,99vh) scale(.6012)}}.snow:nth-child(298){opacity:.454;transform:translate(57.3966vw,-10px) scale(.5797);animation:fall-298 25s -14s linear infinite}@keyframes fall-298{51.198%{transform:translate(51.719vw,51.198vh) scale(.5797)}to{transform:translate(54.5578vw,99vh) scale(.5797)}}.snow:nth-child(299){opacity:1.491;transform:translate(87.3814vw,-10px) scale(.7925);animation:fall-299 17s -9s linear infinite}@keyframes fall-299{39.551%{transform:translate(82.8549vw,39.551vh) scale(.7925)}to{transform:translate(85.11815vw,99vh) scale(.7925)}}.snow:nth-child(300){opacity:1.783;transform:translate(61.4595vw,-10px) scale(.1333);animation:fall-300 14s -26s linear infinite}@keyframes fall-300{61.408%{transform:translate(53.2978vw,61.408vh) scale(.1333)}to{transform:translate(57.37865vw,99vh) scale(.1333)}}.snow:nth-child(301){opacity:1.6314;transform:translate(.3516vw,-10px) scale(.6893);animation:fall-301 15s -27s linear infinite}@keyframes fall-301{38.79%{transform:translate(-8.7869vw,38.79vh) scale(.6893)}to{transform:translate(-4.21765vw,99vh) scale(.6893)}}.snow:nth-child(302){opacity:.495;transform:translate(69.2569vw,-10px) scale(.6236);animation:fall-302 11s -7s linear infinite}@keyframes fall-302{32.253%{transform:translate(68.5157vw,32.253vh) scale(.6236)}to{transform:translate(68.8863vw,99vh) scale(.6236)}}.snow:nth-child(303){opacity:1.1986;transform:translate(9.7105vw,-10px) scale(.3462);animation:fall-303 14s -17s linear infinite}@keyframes fall-303{58.466%{transform:translate(14.0445vw,58.466vh) scale(.3462)}to{transform:translate(11.8775vw,99vh) scale(.3462)}}.snow:nth-child(304){opacity:.8306;transform:translate(75.988vw,-10px) scale(.1714);animation:fall-304 14s -18s linear infinite}@keyframes fall-304{60.44%{transform:translate(68.3385vw,60.44vh) scale(.1714)}to{transform:translate(72.16325vw,99vh) scale(.1714)}}.snow:nth-child(305){opacity:.8176;transform:translate(56.2177vw,-10px) scale(.3683);animation:fall-305 25s -27s linear infinite}@keyframes fall-305{70.805%{transform:translate(51.9951vw,70.805vh) scale(.3683)}to{transform:translate(54.1064vw,99vh) scale(.3683)}}.snow:nth-child(306){opacity:1.3652;transform:translate(22.2166vw,-10px) scale(.5333);animation:fall-306 18s -17s linear infinite}@keyframes fall-306{42.935%{transform:translate(29.8952vw,42.935vh) scale(.5333)}to{transform:translate(26.0559vw,99vh) scale(.5333)}}.snow:nth-child(307){opacity:1.8736;transform:translate(49.2317vw,-10px) scale(.6424);animation:fall-307 14s -30s linear infinite}@keyframes fall-307{31.682%{transform:translate(43.6238vw,31.682vh) scale(.6424)}to{transform:translate(46.42775vw,99vh) scale(.6424)}}.snow:nth-child(308){opacity:1.5094;transform:translate(48.7601vw,-10px) scale(.8342);animation:fall-308 14s -30s linear infinite}@keyframes fall-308{74.744%{transform:translate(41.2909vw,74.744vh) scale(.8342)}to{transform:translate(45.0255vw,99vh) scale(.8342)}}.snow:nth-child(309){opacity:1.8318;transform:translate(13.3853vw,-10px) scale(.0787);animation:fall-309 29s -19s linear infinite}@keyframes fall-309{63.597%{transform:translate(4.8576vw,63.597vh) scale(.0787)}to{transform:translate(9.12145vw,99vh) scale(.0787)}}.snow:nth-child(310){opacity:1.8914;transform:translate(58.0426vw,-10px) scale(.9263);animation:fall-310 10s -1s linear infinite}@keyframes fall-310{43.995%{transform:translate(59.31vw,43.995vh) scale(.9263)}to{transform:translate(58.6763vw,99vh) scale(.9263)}}.snow:nth-child(311){opacity:1.751;transform:translate(69.759vw,-10px) scale(.0587);animation:fall-311 11s -7s linear infinite}@keyframes fall-311{36.009%{transform:translate(79.067vw,36.009vh) scale(.0587)}to{transform:translate(74.413vw,99vh) scale(.0587)}}.snow:nth-child(312){opacity:.0882;transform:translate(96.0749vw,-10px) scale(.0824);animation:fall-312 30s -27s linear infinite}@keyframes fall-312{69.144%{transform:translate(95.7588vw,69.144vh) scale(.0824)}to{transform:translate(95.91685vw,99vh) scale(.0824)}}.snow:nth-child(313){opacity:1.093;transform:translate(1.4475vw,-10px) scale(.3408);animation:fall-313 27s -3s linear infinite}@keyframes fall-313{79.284%{transform:translate(7.5717vw,79.284vh) scale(.3408)}to{transform:translate(4.5096vw,99vh) scale(.3408)}}.snow:nth-child(314){opacity:1.0606;transform:translate(39.2792vw,-10px) scale(.6639);animation:fall-314 25s -28s linear infinite}@keyframes fall-314{56.892%{transform:translate(37.7894vw,56.892vh) scale(.6639)}to{transform:translate(38.5343vw,99vh) scale(.6639)}}.snow:nth-child(315){opacity:1.0146;transform:translate(24.6227vw,-10px) scale(.4284);animation:fall-315 17s -22s linear infinite}@keyframes fall-315{30.241%{transform:translate(23.2078vw,30.241vh) scale(.4284)}to{transform:translate(23.91525vw,99vh) scale(.4284)}}.snow:nth-child(316){opacity:.4864;transform:translate(73.1481vw,-10px) scale(.8021);animation:fall-316 18s -3s linear infinite}@keyframes fall-316{70.333%{transform:translate(75.6369vw,70.333vh) scale(.8021)}to{transform:translate(74.3925vw,99vh) scale(.8021)}}.snow:nth-child(317){opacity:.0512;transform:translate(80.2553vw,-10px) scale(.471);animation:fall-317 29s -8s linear infinite}@keyframes fall-317{73.039%{transform:translate(87.4309vw,73.039vh) scale(.471)}to{transform:translate(83.8431vw,99vh) scale(.471)}}.snow:nth-child(318){opacity:.4616;transform:translate(30.8492vw,-10px) scale(.7562);animation:fall-318 27s -4s linear infinite}@keyframes fall-318{55.335%{transform:translate(29.1498vw,55.335vh) scale(.7562)}to{transform:translate(29.9995vw,99vh) scale(.7562)}}.snow:nth-child(319){opacity:.2312;transform:translate(22.5492vw,-10px) scale(.3766);animation:fall-319 27s -8s linear infinite}@keyframes fall-319{31.726%{transform:translate(27.0261vw,31.726vh) scale(.3766)}to{transform:translate(24.78765vw,99vh) scale(.3766)}}.snow:nth-child(320){opacity:.595;transform:translate(33.927vw,-10px) scale(.1622);animation:fall-320 25s -17s linear infinite}@keyframes fall-320{33.439%{transform:translate(30.106vw,33.439vh) scale(.1622)}to{transform:translate(32.0165vw,99vh) scale(.1622)}}.snow:nth-child(321){opacity:1.2704;transform:translate(30.8483vw,-10px) scale(.885);animation:fall-321 12s -28s linear infinite}@keyframes fall-321{64.402%{transform:translate(22.4677vw,64.402vh) scale(.885)}to{transform:translate(26.658vw,99vh) scale(.885)}}.snow:nth-child(322){opacity:.1214;transform:translate(32.9825vw,-10px) scale(.334);animation:fall-322 25s -26s linear infinite}@keyframes fall-322{43.316%{transform:translate(26.3694vw,43.316vh) scale(.334)}to{transform:translate(29.67595vw,99vh) scale(.334)}}.snow:nth-child(323){opacity:1.0456;transform:translate(83.4722vw,-10px) scale(.6315);animation:fall-323 11s -14s linear infinite}@keyframes fall-323{42.433%{transform:translate(92.4845vw,42.433vh) scale(.6315)}to{transform:translate(87.97835vw,99vh) scale(.6315)}}.snow:nth-child(324){opacity:1.3728;transform:translate(42.7816vw,-10px) scale(.6939);animation:fall-324 30s -14s linear infinite}@keyframes fall-324{37.778%{transform:translate(33.2397vw,37.778vh) scale(.6939)}to{transform:translate(38.01065vw,99vh) scale(.6939)}}.snow:nth-child(325){opacity:1.1076;transform:translate(8.4817vw,-10px) scale(.0503);animation:fall-325 29s -25s linear infinite}@keyframes fall-325{73.834%{transform:translate(1.2277vw,73.834vh) scale(.0503)}to{transform:translate(4.8547vw,99vh) scale(.0503)}}.snow:nth-child(326){opacity:1.2096;transform:translate(15.5896vw,-10px) scale(.8915);animation:fall-326 11s -19s linear infinite}@keyframes fall-326{57.054%{transform:translate(19.1609vw,57.054vh) scale(.8915)}to{transform:translate(17.37525vw,99vh) scale(.8915)}}.snow:nth-child(327){opacity:1.8788;transform:translate(11.4447vw,-10px) scale(.9989);animation:fall-327 29s -12s linear infinite}@keyframes fall-327{39.243%{transform:translate(13.8297vw,39.243vh) scale(.9989)}to{transform:translate(12.6372vw,99vh) scale(.9989)}}.snow:nth-child(328){opacity:.7162;transform:translate(43.7258vw,-10px) scale(.332);animation:fall-328 18s -20s linear infinite}@keyframes fall-328{61.452%{transform:translate(39.9607vw,61.452vh) scale(.332)}to{transform:translate(41.84325vw,99vh) scale(.332)}}.snow:nth-child(329){opacity:1.5134;transform:translate(89.2651vw,-10px) scale(.1026);animation:fall-329 24s -1s linear infinite}@keyframes fall-329{43.273%{transform:translate(86.1757vw,43.273vh) scale(.1026)}to{transform:translate(87.7204vw,99vh) scale(.1026)}}.snow:nth-child(330){opacity:1.994;transform:translate(48.9487vw,-10px) scale(.9277);animation:fall-330 19s -21s linear infinite}@keyframes fall-330{61.098%{transform:translate(44.2404vw,61.098vh) scale(.9277)}to{transform:translate(46.59455vw,99vh) scale(.9277)}}.snow:nth-child(331){opacity:.3598;transform:translate(83.8056vw,-10px) scale(.9637);animation:fall-331 16s -1s linear infinite}@keyframes fall-331{79.271%{transform:translate(76.884vw,79.271vh) scale(.9637)}to{transform:translate(80.3448vw,99vh) scale(.9637)}}.snow:nth-child(332){opacity:1.9028;transform:translate(30.0627vw,-10px) scale(.7513);animation:fall-332 16s -18s linear infinite}@keyframes fall-332{35.858%{transform:translate(37.2521vw,35.858vh) scale(.7513)}to{transform:translate(33.6574vw,99vh) scale(.7513)}}.snow:nth-child(333){opacity:.5728;transform:translate(11.7287vw,-10px) scale(.8404);animation:fall-333 11s -28s linear infinite}@keyframes fall-333{61.272%{transform:translate(13.1663vw,61.272vh) scale(.8404)}to{transform:translate(12.4475vw,99vh) scale(.8404)}}.snow:nth-child(334){opacity:.6154;transform:translate(74.3258vw,-10px) scale(.9996);animation:fall-334 25s -25s linear infinite}@keyframes fall-334{45.381%{transform:translate(77.8869vw,45.381vh) scale(.9996)}to{transform:translate(76.10635vw,99vh) scale(.9996)}}.snow:nth-child(335){opacity:1.0078;transform:translate(64.641vw,-10px) scale(.0528);animation:fall-335 21s -13s linear infinite}@keyframes fall-335{66.797%{transform:translate(72.2516vw,66.797vh) scale(.0528)}to{transform:translate(68.4463vw,99vh) scale(.0528)}}.snow:nth-child(336){opacity:1.0214;transform:translate(98.5084vw,-10px) scale(.0899);animation:fall-336 29s -13s linear infinite}@keyframes fall-336{46.115%{transform:translate(100.6328vw,46.115vh) scale(.0899)}to{transform:translate(99.5706vw,99vh) scale(.0899)}}.snow:nth-child(337){opacity:1.4894;transform:translate(99.5836vw,-10px) scale(.0911);animation:fall-337 28s -2s linear infinite}@keyframes fall-337{36.1%{transform:translate(99.5177vw,36.1vh) scale(.0911)}to{transform:translate(99.55065vw,99vh) scale(.0911)}}.snow:nth-child(338){opacity:.1486;transform:translate(40.1338vw,-10px) scale(.0828);animation:fall-338 17s -7s linear infinite}@keyframes fall-338{54.099%{transform:translate(37.8156vw,54.099vh) scale(.0828)}to{transform:translate(38.9747vw,99vh) scale(.0828)}}.snow:nth-child(339){opacity:1.1656;transform:translate(50.9087vw,-10px) scale(.9189);animation:fall-339 27s -28s linear infinite}@keyframes fall-339{62.944%{transform:translate(41.7573vw,62.944vh) scale(.9189)}to{transform:translate(46.333vw,99vh) scale(.9189)}}.snow:nth-child(340){opacity:1.3928;transform:translate(33.539vw,-10px) scale(.146);animation:fall-340 28s -9s linear infinite}@keyframes fall-340{52.207%{transform:translate(36.616vw,52.207vh) scale(.146)}to{transform:translate(35.0775vw,99vh) scale(.146)}}.snow:nth-child(341){opacity:1.549;transform:translate(92.8534vw,-10px) scale(.3169);animation:fall-341 11s -22s linear infinite}@keyframes fall-341{72.271%{transform:translate(90.9076vw,72.271vh) scale(.3169)}to{transform:translate(91.8805vw,99vh) scale(.3169)}}.snow:nth-child(342){opacity:1.8226;transform:translate(11.862vw,-10px) scale(.6358);animation:fall-342 24s -28s linear infinite}@keyframes fall-342{55.131%{transform:translate(12.6909vw,55.131vh) scale(.6358)}to{transform:translate(12.27645vw,99vh) scale(.6358)}}.snow:nth-child(343){opacity:.9816;transform:translate(86.5219vw,-10px) scale(.6125);animation:fall-343 13s -7s linear infinite}@keyframes fall-343{47.757%{transform:translate(88.973vw,47.757vh) scale(.6125)}to{transform:translate(87.74745vw,99vh) scale(.6125)}}.snow:nth-child(344){opacity:1.2896;transform:translate(19.8179vw,-10px) scale(.3676);animation:fall-344 27s -17s linear infinite}@keyframes fall-344{63.439%{transform:translate(23.4545vw,63.439vh) scale(.3676)}to{transform:translate(21.6362vw,99vh) scale(.3676)}}.snow:nth-child(345){opacity:.6668;transform:translate(70.7221vw,-10px) scale(.1055);animation:fall-345 12s -7s linear infinite}@keyframes fall-345{44.172%{transform:translate(61.7374vw,44.172vh) scale(.1055)}to{transform:translate(66.22975vw,99vh) scale(.1055)}}.snow:nth-child(346){opacity:.7492;transform:translate(28.2331vw,-10px) scale(.2187);animation:fall-346 30s -25s linear infinite}@keyframes fall-346{61.669%{transform:translate(27.2712vw,61.669vh) scale(.2187)}to{transform:translate(27.75215vw,99vh) scale(.2187)}}.snow:nth-child(347){opacity:.9734;transform:translate(34.3075vw,-10px) scale(.7443);animation:fall-347 12s -23s linear infinite}@keyframes fall-347{51.408%{transform:translate(36.73vw,51.408vh) scale(.7443)}to{transform:translate(35.51875vw,99vh) scale(.7443)}}.snow:nth-child(348){opacity:1.94;transform:translate(96.816vw,-10px) scale(.6579);animation:fall-348 13s -11s linear infinite}@keyframes fall-348{36.653%{transform:translate(95.1825vw,36.653vh) scale(.6579)}to{transform:translate(95.99925vw,99vh) scale(.6579)}}.snow:nth-child(349){opacity:.0344;transform:translate(79.4181vw,-10px) scale(.5183);animation:fall-349 16s -22s linear infinite}@keyframes fall-349{51.149%{transform:translate(73.1475vw,51.149vh) scale(.5183)}to{transform:translate(76.2828vw,99vh) scale(.5183)}}.snow:nth-child(350){opacity:1.264;transform:translate(13.5902vw,-10px) scale(.7213);animation:fall-350 13s -2s linear infinite}@keyframes fall-350{44.034%{transform:translate(7.9837vw,44.034vh) scale(.7213)}to{transform:translate(10.78695vw,99vh) scale(.7213)}}.snow:nth-child(351){opacity:.3658;transform:translate(88.6236vw,-10px) scale(.1294);animation:fall-351 15s -23s linear infinite}@keyframes fall-351{35.39%{transform:translate(79.6624vw,35.39vh) scale(.1294)}to{transform:translate(84.143vw,99vh) scale(.1294)}}.snow:nth-child(352){opacity:.8902;transform:translate(73.4062vw,-10px) scale(.668);animation:fall-352 23s -24s linear infinite}@keyframes fall-352{74.718%{transform:translate(65.6369vw,74.718vh) scale(.668)}to{transform:translate(69.52155vw,99vh) scale(.668)}}.snow:nth-child(353){opacity:.9812;transform:translate(45.1957vw,-10px) scale(.6716);animation:fall-353 19s -20s linear infinite}@keyframes fall-353{44.699%{transform:translate(47.2427vw,44.699vh) scale(.6716)}to{transform:translate(46.2192vw,99vh) scale(.6716)}}.snow:nth-child(354){opacity:1.321;transform:translate(70.9659vw,-10px) scale(.1639);animation:fall-354 23s -5s linear infinite}@keyframes fall-354{46.875%{transform:translate(62.5325vw,46.875vh) scale(.1639)}to{transform:translate(66.7492vw,99vh) scale(.1639)}}.snow:nth-child(355){opacity:.7524;transform:translate(89.8707vw,-10px) scale(.8085);animation:fall-355 16s -26s linear infinite}@keyframes fall-355{56.106%{transform:translate(99.622vw,56.106vh) scale(.8085)}to{transform:translate(94.74635vw,99vh) scale(.8085)}}.snow:nth-child(356){opacity:1.974;transform:translate(59.968vw,-10px) scale(.7094);animation:fall-356 20s -10s linear infinite}@keyframes fall-356{30.035%{transform:translate(64.0036vw,30.035vh) scale(.7094)}to{transform:translate(61.9858vw,99vh) scale(.7094)}}.snow:nth-child(357){opacity:1.8776;transform:translate(86.9805vw,-10px) scale(.1479);animation:fall-357 14s -1s linear infinite}@keyframes fall-357{59.392%{transform:translate(96.0978vw,59.392vh) scale(.1479)}to{transform:translate(91.53915vw,99vh) scale(.1479)}}.snow:nth-child(358){opacity:.1824;transform:translate(95.4391vw,-10px) scale(.3444);animation:fall-358 21s -20s linear infinite}@keyframes fall-358{55.038%{transform:translate(102.6104vw,55.038vh) scale(.3444)}to{transform:translate(99.02475vw,99vh) scale(.3444)}}.snow:nth-child(359){opacity:1.2946;transform:translate(75.2341vw,-10px) scale(.2018);animation:fall-359 13s -13s linear infinite}@keyframes fall-359{77.221%{transform:translate(72.1313vw,77.221vh) scale(.2018)}to{transform:translate(73.6827vw,99vh) scale(.2018)}}.snow:nth-child(360){opacity:.2982;transform:translate(99.2861vw,-10px) scale(.925);animation:fall-360 30s -3s linear infinite}@keyframes fall-360{37.423%{transform:translate(94.8344vw,37.423vh) scale(.925)}to{transform:translate(97.06025vw,99vh) scale(.925)}}.snow:nth-child(361){opacity:.7162;transform:translate(63.5391vw,-10px) scale(.1967);animation:fall-361 30s -28s linear infinite}@keyframes fall-361{65.168%{transform:translate(69.3252vw,65.168vh) scale(.1967)}to{transform:translate(66.43215vw,99vh) scale(.1967)}}.snow:nth-child(362){opacity:.4062;transform:translate(29.9539vw,-10px) scale(.7334);animation:fall-362 13s -30s linear infinite}@keyframes fall-362{78.612%{transform:translate(33.7807vw,78.612vh) scale(.7334)}to{transform:translate(31.8673vw,99vh) scale(.7334)}}.snow:nth-child(363){opacity:.5798;transform:translate(70.0831vw,-10px) scale(.5706);animation:fall-363 18s -1s linear infinite}@keyframes fall-363{74.096%{transform:translate(64.8381vw,74.096vh) scale(.5706)}to{transform:translate(67.4606vw,99vh) scale(.5706)}}.snow:nth-child(364){opacity:1.6486;transform:translate(69.4713vw,-10px) scale(.4362);animation:fall-364 15s -8s linear infinite}@keyframes fall-364{62.675%{transform:translate(69.1173vw,62.675vh) scale(.4362)}to{transform:translate(69.2943vw,99vh) scale(.4362)}}.snow:nth-child(365){opacity:1.3694;transform:translate(35.5829vw,-10px) scale(.2201);animation:fall-365 28s -2s linear infinite}@keyframes fall-365{77.675%{transform:translate(36.4428vw,77.675vh) scale(.2201)}to{transform:translate(36.01285vw,99vh) scale(.2201)}}.snow:nth-child(366){opacity:.3118;transform:translate(92.7835vw,-10px) scale(.6708);animation:fall-366 30s -22s linear infinite}@keyframes fall-366{79.395%{transform:translate(83.5192vw,79.395vh) scale(.6708)}to{transform:translate(88.15135vw,99vh) scale(.6708)}}.snow:nth-child(367){opacity:.4042;transform:translate(68.0353vw,-10px) scale(.7459);animation:fall-367 11s -30s linear infinite}@keyframes fall-367{44.907%{transform:translate(63.0965vw,44.907vh) scale(.7459)}to{transform:translate(65.5659vw,99vh) scale(.7459)}}.snow:nth-child(368){opacity:.6078;transform:translate(51.9115vw,-10px) scale(.1332);animation:fall-368 29s -19s linear infinite}@keyframes fall-368{33.539%{transform:translate(53.3686vw,33.539vh) scale(.1332)}to{transform:translate(52.64005vw,99vh) scale(.1332)}}.snow:nth-child(369){opacity:.5548;transform:translate(52.6218vw,-10px) scale(.4648);animation:fall-369 15s -14s linear infinite}@keyframes fall-369{62.43%{transform:translate(57.1339vw,62.43vh) scale(.4648)}to{transform:translate(54.87785vw,99vh) scale(.4648)}}.snow:nth-child(370){opacity:1.5924;transform:translate(.9872vw,-10px) scale(.4727);animation:fall-370 18s -28s linear infinite}@keyframes fall-370{33.854%{transform:translate(2.1795vw,33.854vh) scale(.4727)}to{transform:translate(1.58335vw,99vh) scale(.4727)}}.snow:nth-child(371){opacity:.7532;transform:translate(41.7125vw,-10px) scale(.5589);animation:fall-371 14s -8s linear infinite}@keyframes fall-371{60.596%{transform:translate(33.7984vw,60.596vh) scale(.5589)}to{transform:translate(37.75545vw,99vh) scale(.5589)}}.snow:nth-child(372){opacity:1.859;transform:translate(62.3053vw,-10px) scale(.1391);animation:fall-372 20s -9s linear infinite}@keyframes fall-372{47.813%{transform:translate(64.5968vw,47.813vh) scale(.1391)}to{transform:translate(63.45105vw,99vh) scale(.1391)}}.snow:nth-child(373){opacity:.425;transform:translate(67.8337vw,-10px) scale(.1207);animation:fall-373 16s -23s linear infinite}@keyframes fall-373{54.256%{transform:translate(65.0704vw,54.256vh) scale(.1207)}to{transform:translate(66.45205vw,99vh) scale(.1207)}}.snow:nth-child(374){opacity:1.7108;transform:translate(63.9022vw,-10px) scale(.0238);animation:fall-374 13s -9s linear infinite}@keyframes fall-374{71.243%{transform:translate(67.8228vw,71.243vh) scale(.0238)}to{transform:translate(65.8625vw,99vh) scale(.0238)}}.snow:nth-child(375){opacity:.8612;transform:translate(68.6717vw,-10px) scale(.2125);animation:fall-375 12s -3s linear infinite}@keyframes fall-375{61.848%{transform:translate(69.8937vw,61.848vh) scale(.2125)}to{transform:translate(69.2827vw,99vh) scale(.2125)}}.snow:nth-child(376){opacity:.998;transform:translate(80.2344vw,-10px) scale(.9661);animation:fall-376 21s -5s linear infinite}@keyframes fall-376{53.956%{transform:translate(77.797vw,53.956vh) scale(.9661)}to{transform:translate(79.0157vw,99vh) scale(.9661)}}.snow:nth-child(377){opacity:.8278;transform:translate(28.868vw,-10px) scale(.8761);animation:fall-377 28s -30s linear infinite}@keyframes fall-377{71.867%{transform:translate(34.9023vw,71.867vh) scale(.8761)}to{transform:translate(31.88515vw,99vh) scale(.8761)}}.snow:nth-child(378){opacity:1.1276;transform:translate(35.654vw,-10px) scale(.7564);animation:fall-378 16s -3s linear infinite}@keyframes fall-378{48.446%{transform:translate(36.3734vw,48.446vh) scale(.7564)}to{transform:translate(36.0137vw,99vh) scale(.7564)}}.snow:nth-child(379){opacity:.9266;transform:translate(12.3015vw,-10px) scale(.2102);animation:fall-379 14s -7s linear infinite}@keyframes fall-379{67.998%{transform:translate(17.2182vw,67.998vh) scale(.2102)}to{transform:translate(14.75985vw,99vh) scale(.2102)}}.snow:nth-child(380){opacity:1.344;transform:translate(44.6337vw,-10px) scale(.01);animation:fall-380 29s -19s linear infinite}@keyframes fall-380{71.633%{transform:translate(47.4718vw,71.633vh) scale(.01)}to{transform:translate(46.05275vw,99vh) scale(.01)}}.snow:nth-child(381){opacity:.693;transform:translate(32.7069vw,-10px) scale(.5871);animation:fall-381 28s -26s linear infinite}@keyframes fall-381{67.093%{transform:translate(27.7276vw,67.093vh) scale(.5871)}to{transform:translate(30.21725vw,99vh) scale(.5871)}}.snow:nth-child(382){opacity:.0224;transform:translate(90.4574vw,-10px) scale(.1131);animation:fall-382 16s -14s linear infinite}@keyframes fall-382{55.351%{transform:translate(91.4607vw,55.351vh) scale(.1131)}to{transform:translate(90.95905vw,99vh) scale(.1131)}}.snow:nth-child(383){opacity:1.6054;transform:translate(85.1637vw,-10px) scale(.7716);animation:fall-383 30s -14s linear infinite}@keyframes fall-383{31.189%{transform:translate(90.3972vw,31.189vh) scale(.7716)}to{transform:translate(87.78045vw,99vh) scale(.7716)}}.snow:nth-child(384){opacity:1.6366;transform:translate(6.0528vw,-10px) scale(.0339);animation:fall-384 30s -16s linear infinite}@keyframes fall-384{64.307%{transform:translate(7.6271vw,64.307vh) scale(.0339)}to{transform:translate(6.83995vw,99vh) scale(.0339)}}.snow:nth-child(385){opacity:.8482;transform:translate(45.3307vw,-10px) scale(.1006);animation:fall-385 30s -7s linear infinite}@keyframes fall-385{46.601%{transform:translate(52.0237vw,46.601vh) scale(.1006)}to{transform:translate(48.6772vw,99vh) scale(.1006)}}.snow:nth-child(386){opacity:1.8782;transform:translate(50.0483vw,-10px) scale(.7487);animation:fall-386 27s -14s linear infinite}@keyframes fall-386{50.853%{transform:translate(45.7509vw,50.853vh) scale(.7487)}to{transform:translate(47.8996vw,99vh) scale(.7487)}}.snow:nth-child(387){opacity:1.3646;transform:translate(36.9521vw,-10px) scale(.5473);animation:fall-387 12s -29s linear infinite}@keyframes fall-387{74.345%{transform:translate(41.6735vw,74.345vh) scale(.5473)}to{transform:translate(39.3128vw,99vh) scale(.5473)}}.snow:nth-child(388){opacity:1.2084;transform:translate(66.1194vw,-10px) scale(.7522);animation:fall-388 14s -8s linear infinite}@keyframes fall-388{67.702%{transform:translate(61.156vw,67.702vh) scale(.7522)}to{transform:translate(63.6377vw,99vh) scale(.7522)}}.snow:nth-child(389){opacity:1.9678;transform:translate(24.6106vw,-10px) scale(.8487);animation:fall-389 19s -4s linear infinite}@keyframes fall-389{69.749%{transform:translate(18.7966vw,69.749vh) scale(.8487)}to{transform:translate(21.7036vw,99vh) scale(.8487)}}.snow:nth-child(390){opacity:.8166;transform:translate(72.1731vw,-10px) scale(.1676);animation:fall-390 25s -4s linear infinite}@keyframes fall-390{76.266%{transform:translate(67.3246vw,76.266vh) scale(.1676)}to{transform:translate(69.74885vw,99vh) scale(.1676)}}.snow:nth-child(391){opacity:.3032;transform:translate(35.6691vw,-10px) scale(.6871);animation:fall-391 13s -18s linear infinite}@keyframes fall-391{69.548%{transform:translate(38.5466vw,69.548vh) scale(.6871)}to{transform:translate(37.10785vw,99vh) scale(.6871)}}.snow:nth-child(392){opacity:.9744;transform:translate(37.0285vw,-10px) scale(.1285);animation:fall-392 21s -20s linear infinite}@keyframes fall-392{62.752%{transform:translate(45.1115vw,62.752vh) scale(.1285)}to{transform:translate(41.07vw,99vh) scale(.1285)}}.snow:nth-child(393){opacity:1.1296;transform:translate(42.6576vw,-10px) scale(.1401);animation:fall-393 14s -24s linear infinite}@keyframes fall-393{72.707%{transform:translate(48.6663vw,72.707vh) scale(.1401)}to{transform:translate(45.66195vw,99vh) scale(.1401)}}.snow:nth-child(394){opacity:.6626;transform:translate(39.4683vw,-10px) scale(.8439);animation:fall-394 16s -6s linear infinite}@keyframes fall-394{40.479%{transform:translate(35.7497vw,40.479vh) scale(.8439)}to{transform:translate(37.609vw,99vh) scale(.8439)}}.snow:nth-child(395){opacity:1.5578;transform:translate(85.0598vw,-10px) scale(.5304);animation:fall-395 14s -3s linear infinite}@keyframes fall-395{61.225%{transform:translate(88.1223vw,61.225vh) scale(.5304)}to{transform:translate(86.59105vw,99vh) scale(.5304)}}.snow:nth-child(396){opacity:.6132;transform:translate(77.8628vw,-10px) scale(.0802);animation:fall-396 26s -22s linear infinite}@keyframes fall-396{78.979%{transform:translate(83.479vw,78.979vh) scale(.0802)}to{transform:translate(80.6709vw,99vh) scale(.0802)}}.snow:nth-child(397){opacity:.012;transform:translate(81.3148vw,-10px) scale(.6526);animation:fall-397 28s -18s linear infinite}@keyframes fall-397{31.715%{transform:translate(84.1303vw,31.715vh) scale(.6526)}to{transform:translate(82.72255vw,99vh) scale(.6526)}}.snow:nth-child(398){opacity:.9012;transform:translate(80.5807vw,-10px) scale(.3167);animation:fall-398 20s -22s linear infinite}@keyframes fall-398{43.924%{transform:translate(88.0622vw,43.924vh) scale(.3167)}to{transform:translate(84.32145vw,99vh) scale(.3167)}}.snow:nth-child(399){opacity:1.775;transform:translate(45.9117vw,-10px) scale(.6349);animation:fall-399 18s -25s linear infinite}@keyframes fall-399{49.14%{transform:translate(38.8571vw,49.14vh) scale(.6349)}to{transform:translate(42.3844vw,99vh) scale(.6349)}}.snow:nth-child(400){opacity:1.9504;transform:translate(7.22vw,-10px) scale(.8326);animation:fall-400 20s -4s linear infinite}@keyframes fall-400{33.798%{transform:translate(14.2746vw,33.798vh) scale(.8326)}to{transform:translate(10.7473vw,99vh) scale(.8326)}}\n"] }]
28
+ args: [{ selector: 'app-root', encapsulation: ViewEncapsulation.None, template: "<ng-container *ngIf=\"_state.christmasTime\">\r\n <div *ngFor=\"let i of snows; trackBy: snowTrackBy\" class=\"snow\"></div>\r\n</ng-container>\r\n<router-outlet></router-outlet>", styles: [".table-borderless>tbody>tr>td,.table-borderless>tbody>tr>th,.table-borderless>tfoot>tr>td,.table-borderless>tfoot>tr>th,.table-borderless>thead>tr>td,.table-borderless>thead>tr>th{border:none}.table,.table-responsive{margin-bottom:5px}a:hover,a:focus{text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}*{outline:none!important}.modal-title{width:calc(100% - 20px)}.progress{height:20px}.progress.progress-primary[value]::-webkit-progress-value{background-color:#024a88}.progress.progress-primary[value]::-moz-progress-bar{background-color:#024a88}.progress.progress-primary[value]::-ms-fill{background-color:#024a88}@media screen and (min-width: 0\\fffd){.progress.progress-primary .progress-bar{background-color:#024a88}}.progress.progress-info[value]::-webkit-progress-value{background-color:#248dad}.progress.progress-info[value]::-moz-progress-bar{background-color:#248dad}.progress.progress-info[value]::-ms-fill{background-color:#248dad}@media screen and (min-width: 0\\fffd){.progress.progress-info .progress-bar{background-color:#248dad}}.progress.progress-danger[value]::-webkit-progress-value{background-color:#bf1725}.progress.progress-danger[value]::-moz-progress-bar{background-color:#bf1725}.progress.progress-danger[value]::-ms-fill{background-color:#bf1725}@media screen and (min-width: 0\\fffd){.progress.progress-danger .progress-bar{background-color:#bf1725}}.progress.progress-success[value]::-webkit-progress-value{background-color:#2d922d}.progress.progress-success[value]::-moz-progress-bar{background-color:#2d922d}.progress.progress-success[value]::-ms-fill{background-color:#2d922d}@media screen and (min-width: 0\\fffd){.progress.progress-success .progress-bar{background-color:#2d922d}}.progress.progress-warning[value]::-webkit-progress-value{background-color:#f79a17}.progress.progress-warning[value]::-moz-progress-bar{background-color:#f79a17}.progress.progress-warning[value]::-ms-fill{background-color:#f79a17}@media screen and (min-width: 0\\fffd){.progress.progress-warning .progress-bar{background-color:#f79a17}}.progress[value]::-moz-progress-bar{border-radius:0}.progress[value]::-webkit-progress-value{border-radius:0}.progress[value=\"100\"]::-moz-progress-bar{border-radius:0}.progress[value=\"100\"]::-webkit-progress-value{border-radius:0}.progress-xs{height:7px}.progress-sm{height:10px}.progress-md{height:13px}.progress-bar-info-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem;background-color:#5bc0de!important}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.tag{font-weight:400;line-height:1.4;letter-spacing:.03em}.tag.tag-primary{background-color:#024a88}.tag.tag-info{background-color:#248dad}.tag.tag-danger{background-color:#bf1725}.tag.tag-success{background-color:#2d922d}.tag.tag-warning{background-color:#f79a17}.tag.tag-dark{background-color:#000}.tag.tag-main{background-color:#242d3a}.card{border:none;border-radius:0;width:100%;overflow:hidden;margin-bottom:29px;box-shadow:1px 1px 5px #00000040;display:block}.card .card-header{background:#344154;color:#fff;line-height:10px;border-radius:0;border:none}.card .card-header a{color:#fff}.card .card-header a:hover{color:#fffc}.card .card-footer{background:#344154;color:#fff;line-height:6px;border-radius:0;border:none}.card.card-outline-default{background:transparent;border:1px solid #fff}.card.card-primary{background:#024a88}.card.card-primary.medium-opacity{background:rgba(2,74,136,.5)}.card.card-outline-primary{background:transparent;border:1px solid #024a88}.card.card-success{background:#2d922d;margin-bottom:15px}.card.card-success.medium-opacity{background:rgba(45,146,45,.5)}.card.card-outline-success{background:transparent;border:1px solid #2d922d}.card.card-info{background:#248dad;margin-bottom:15px}.card.card-info.medium-opacity{background:rgba(36,141,173,.5)}.card.card-outline-info{background:transparent;border:1px solid #248dad}.card.card-warning{background:#f79a17;margin-bottom:15px}.card.card-warning.medium-opacity{background:rgba(247,154,23,.5)}.card.card-outline-warning{background:transparent;border:1px solid #f79a17}.card.card-danger{background:#bf1725;margin-bottom:15px}.card.card-danger.medium-opacity{background:rgba(191,23,37,.5)}.card.card-outline-danger{background:transparent;border:1px solid #bf1725}.card.card-primary .card-header,.card.card-success .card-header,.card.card-info .card-header,.card.card-danger .card-header,.card.card-warning .card-header{background:rgba(0,0,0,.4)}.card.card-primary .card-body,.card.card-success .card-body,.card.card-info .card-body,.card.card-danger .card-body,.card.card-warning .card-body{color:#fff}.card.card-primary .card-footer,.card.card-success .card-footer,.card.card-info .card-footer,.card.card-danger .card-footer,.card.card-warning .card-footer{background:rgba(0,0,0,.2)}.card.overlay .card-img{border-radius:0;-moz-filter:brightness(100%);-ms-filter:brightness(100%);-o-filter:brightness(100%);filter:brightness(100%)}.card.overlay:hover .card-img{-moz-filter:brightness(80%);-ms-filter:brightness(80%);-o-filter:brightness(80%);filter:brightness(80%)}.card.overlay .card-img-overlay{color:#fff}.card.overlay .card-img-overlay.overlay-bottom{top:auto}.card.overlay .card-img-overlay.slide-up{transform:translateY(100%)}.card.overlay .card-img-overlay.slide-down{transform:translateY(-100%)}.card.overlay .card-img-overlay.slide-left{transform:translate(-100%)}.card.overlay .card-img-overlay.slide-right{transform:translate(100%)}.card.overlay .card-img-overlay.hover-opacity{opacity:0}.card.overlay:hover .slide-up,.card.overlay:hover .slide-down{transform:translateY(0)}.card.overlay:hover .slide-left,.card.overlay:hover .slide-right{transform:translate(0)}.card.overlay:hover .hover-opacity{opacity:1}@media (min-width: 1400px){.d-xxl-block{display:block!important}}@media (min-width: 576px){.card-columns{-moz-column-count:3;-moz-column-gap:1.25rem}}.btn{border-radius:0}.btn:focus{outline:0}.btn:active{outline:0!important}.btn-rounded{border-radius:25rem}.btn-xs{padding:.2rem .4rem;font-size:.715rem}.btn-primary{background:rgba(2,74,136,.8)!important;border-color:#024a88cc!important}.btn-primary.medium-opacity{background:rgba(2,74,136,.5);border-color:#024a881a}.btn-primary:hover,.btn-primary:focus{background:#024a88;border-color:#024a88}.btn-primary:active{background:rgba(2,74,136,.95)!important;border-color:#024a88f2!important}.btn-success{background:rgba(45,146,45,.8);border-color:#2d922dcc}.btn-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d1a}.btn-success:hover,.btn-success:focus{background:#2d922d;border-color:#2d922d}.btn-success:active{background:rgba(45,146,45,.95)!important;border-color:#2d922df2!important}.btn-info{background:rgba(36,141,173,.8);border-color:#248dadcc}.btn-info.medium-opacity{background:rgba(36,141,173,.5);border-color:#248dad1a}.btn-info:hover,.btn-info:focus{background:#248dad;border-color:#248dad}.btn-info:active{background:rgba(36,141,173,.95)!important;border-color:#248dadf2!important}.btn-warning{background:rgba(247,154,23,.8);border-color:#f79a17cc}.btn-warning.medium-opacity{background:rgba(247,154,23,.5);border-color:#f79a171a}.btn-warning:hover,.btn-warning:focus{background:#f79a17;border-color:#f79a17}.btn-warning:active{background:rgba(247,154,23,.95)!important;border-color:#f79a17f2!important}.btn-danger{background:rgba(191,23,37,.8);border-color:#bf1725cc}.btn-danger.medium-opacity{background:rgba(191,23,37,.5);border-color:#bf17251a}.btn-danger:hover,.btn-danger:focus{background:#bf1725;border-color:#bf1725}.btn-danger:active{background:rgba(191,23,37,.95)!important;border-color:#bf1725f2!important}.btn-dark{background:rgba(0,0,0,.8);border-color:#000c;color:#fff}.btn-dark.medium-opacity{background:rgba(0,0,0,.5);border-color:#0000001a}.btn-dark:hover{background:black;border-color:#000}.btn-dark:active{background:rgba(0,0,0,.95)!important;border-color:#000000f2!important}.btn-main{background:rgba(36,45,58,.8);border-color:#242d3acc;color:#fff}.btn-main.medium-opacity{background:rgba(36,45,58,.5);border-color:#242d3a1a}.btn-main:hover{color:#fff!important;background:#242d3a;border-color:#242d3a}.btn-main:active{background:rgba(36,45,58,.95)!important;border-color:#242d3af2!important}.btn-outline-primary{color:#024a88;border-color:#024a88}.btn-outline-primary:hover,.btn-outline-primary:focus{color:#fff;background:#024a88;border-color:#024a88}.btn-outline-primary:active,.btn-outline-primary.active{color:#fff!important;background:#024a88!important;border-color:#024a88!important}.btn-outline-success{color:#2d922d;border-color:#2d922d}.btn-outline-success:hover,.btn-outline-success:focus{color:#fff;background:#2d922d;border-color:#2d922d}.btn-outline-success:active,.btn-outline-success.active{color:#fff!important;background:#2d922d!important;border-color:#2d922d!important}.btn-outline-info{color:#248dad;border-color:#248dad}.btn-outline-info:hover,.btn-outline-info:focus{color:#fff;background:#248dad;border-color:#248dad}.btn-outline-info:active,.btn-outline-info.active{color:#fff!important;background:#248dad!important;border-color:#248dad!important}.btn-outline-warning{color:#f79a17;border-color:#f79a17}.btn-outline-warning:hover,.btn-outline-warning:focus{color:#fff;background:#f79a17;border-color:#f79a17}.btn-outline-warning:active,.btn-outline-warning.active{color:#fff!important;background:#f79a17!important;border-color:#f79a17!important}.btn-outline-danger{color:#bf1725;border-color:#bf1725}.btn-outline-danger:hover,.btn-outline-danger:focus{color:#fff;background:#bf1725;border-color:#bf1725}.btn-outline-danger:active,.btn-outline-danger.active{color:#fff!important;background:#bf1725!important;border-color:#bf1725!important}.btn-outline-dark{color:#000;border-color:#000;background:transparent}.btn-outline-dark:hover,.btn-outline-dark:focus{color:#fff;background:#000;border-color:#000}.btn-outline-main{color:#242d3a;border-color:#242d3a;background:transparent}.btn-outline-main:hover,.btn-outline-main:focus{color:#fff;background:#242D3A;border-color:#242d3a}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-radius:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{border-radius:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn-file-upload{height:35px;padding-top:3px!important}.text-primary{color:#024a88!important}.text-success{color:#2d922d!important}.text-info{color:#248dad!important}.text-warning{color:#f79a17!important}.text-danger{color:#bf1725!important}.background-success{background-color:#2d922d!important}.background-info{background-color:#248dad!important}.background-warning{background-color:#f79a17!important}.background-danger{background-color:#bf1725!important}.blockquote{font-size:1.2rem}.blockquote-footer{font-size:70%}.nav-tabs{background-color:#ccc;border:1px solid #ccc}.nav-tabs .nav-item .nav-link{color:#242d3acc;background-color:transparent;border:none;cursor:default}.nav-tabs .nav-item .nav-link.active{background-color:#fff;color:#242d3a}.nav-tabs .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.nav-tabs.top{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.nav-tabs.bottom{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.nav-tabs.bottom .nav-item{margin-bottom:0;margin-top:-1px}.nav-tabs.bottom .nav-item .nav-link{border-radius:0 0 .3rem .3rem}.nav-tabs.tabs-primary{background-color:#024a8866;border:1px solid #024a88}.nav-tabs.tabs-primary .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-primary .nav-item .nav-link.active{background-color:#024a88;color:#fff}.nav-tabs.tabs-primary .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-success{background-color:#2d922d66;border:1px solid #2d922d}.nav-tabs.tabs-success .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-success .nav-item .nav-link.active{background-color:#2d922d;color:#fff}.nav-tabs.tabs-success .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-info{background-color:#248dad66;border:1px solid #248dad}.nav-tabs.tabs-info .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-info .nav-item .nav-link.active{background-color:#248dad;color:#fff}.nav-tabs.tabs-info .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-warning{background-color:#f79a1766;border:1px solid #f79a17}.nav-tabs.tabs-warning .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-warning .nav-item .nav-link.active{background-color:#f79a17;color:#fff}.nav-tabs.tabs-warning .nav-item .nav-link:not(.active):hover{color:#fff}.nav-tabs.tabs-danger{background-color:#bf172566;border:1px solid #bf1725}.nav-tabs.tabs-danger .nav-item .nav-link{color:#fffc}.nav-tabs.tabs-danger .nav-item .nav-link.active{background-color:#bf1725;color:#fff}.nav-tabs.tabs-danger .nav-item .nav-link:not(.active):hover{color:#fff}.tab-content{position:relative;z-index:1;border:1px solid #ccc;background:#fff}.tab-content .tab-pane{padding:1rem}.tab-content.tab-content-primary{background-color:#024a88;color:#fff;border-color:#024a88}.tab-content.tab-content-success{background-color:#2d922d;color:#fff;border-color:#2d922d}.tab-content.tab-content-info{background-color:#248dad;color:#fff;border-color:#248dad}.tab-content.tab-content-warning{background-color:#f79a17;color:#fff;border-color:#f79a17}.tab-content.tab-content-danger{background-color:#bf1725;color:#fff;border-color:#bf1725}.tab-content.top{border-top:none}.tab-content.bottom{border-bottom:none}.vertical-tabs .nav{padding-right:0;overflow:hidden;background-color:#ccc;border:1px solid #ccc}.vertical-tabs .nav.left{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-right:none;margin-right:-1px;z-index:2}.vertical-tabs .nav.right{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-left:none;margin-left:-1px;z-index:2}.vertical-tabs .nav .nav-item .nav-link{color:#242d3acc;background-color:transparent;border-radius:0;cursor:default}.vertical-tabs .nav .nav-item .nav-link.active{background-color:#fff}.vertical-tabs .nav .nav-item .nav-link:not(.active):hover{background-color:transparent;color:#242d3a;cursor:pointer}.vertical-tabs .nav .nav-item .nav-link.disabled{color:#242d3a99;cursor:not-allowed!important}.alert.alert-success{background-color:#2d922d;border-color:#2d922d;color:#fff}.alert.alert-success.medium-opacity{background:rgba(45,146,45,.5);border-color:#2d922d99}.alert.alert-info{background-color:#248dad;border-color:#248dad;color:#fff}.alert.alert-info.medium-opacity{background-color:#248dad80;border-color:#248dad99}.alert.alert-warning{background-color:#f79a17;border-color:#f79a17;color:#fff}.alert.alert-warning.medium-opacity{background-color:#f79a1780;border-color:#f79a1799}.alert.alert-danger{background-color:#bf1725;border-color:#bf1725;color:#fff}.alert.alert-danger.medium-opacity{background-color:#bf172580;border-color:#bf172599}.modal{z-index:99999;padding-top:10%}.modal-dialog .modal-content{color:#000}.modal-dialog .modal-content .modal-header{border-top-left-radius:.2rem;border-top-right-radius:.2rem;padding:10px 15px}.modal-dialog .modal-content .modal-header.modal-primary{color:#fff;background-color:#024a88}.modal-dialog .modal-content .modal-header.modal-success{color:#fff;background-color:#2d922d}.modal-dialog .modal-content .modal-header.modal-info{color:#fff;background-color:#248dad}.modal-dialog .modal-content .modal-header.modal-warning{color:#fff;background-color:#f79a17}.modal-dialog .modal-content .modal-header.modal-danger{color:#fff;background-color:#bf1725}.modal-dialog .modal-content .modal-header i{margin-right:10px}.modal-dialog .modal-content .modal-footer{padding:10px 15px}.list-group .list-group-item{border-radius:0;padding:.55rem 1.25rem;color:#000c}.list-group .list-group-item.active{color:#ffffffe6;background-color:#024a88;border-color:#024a88}.list-group .list-group-item.active:hover,.list-group .list-group-item.active:focus{color:#fff!important}.list-group .list-group-item.disabled{color:#818a91;background-color:#ddd}.list-group .list-group-item:not(.disabled):focus{color:#000}.list-group .list-group-item.list-group-item-primary{color:#fff;background-color:#024a88}.list-group .list-group-item.list-group-item-success{color:#fff;background-color:#2d922d}.list-group .list-group-item.list-group-item-info{color:#fff;background-color:#248dad}.list-group .list-group-item.list-group-item-warning{color:#fff;background-color:#f79a17}.list-group .list-group-item.list-group-item-danger{color:#fff;background-color:#bf1725}.has-success .form-control-success{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.has-success .form-control{border-color:#2d922dcc}.has-success .form-control:focus{box-shadow:none;border-color:#2d922d80}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .form-check-label,.has-success .form-check-inline,.has-success .custom-control{color:#2d922d}.has-warning .form-control-warning{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f79a17' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E\")}.has-warning .form-control{border-color:#f79a17cc}.has-warning .form-control:focus{box-shadow:none;border-color:#f79a1780}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .form-check-label,.has-warning .form-check-inline,.has-warning .custom-control{color:#f79a17}.has-danger .form-control-danger{background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.has-danger .form-control{border-color:#bf1725cc}.has-danger .form-control:focus{box-shadow:none;border-color:#bf172580}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .form-check-label,.has-danger .form-check-inline,.has-danger .custom-control{color:#bf1725}.form-group label{margin-bottom:2px}.help-block{color:#555;font-size:12px}.form-control.checking-field.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important}.form-control.checking-combo.forced-invalid{padding-right:2.25rem!important;background-repeat:no-repeat!important;background-position:center right .625rem!important;background-size:1.25rem 1.25rem!important;border-color:#bf1725!important;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")!important;background-position:calc(100% - 20px)!important}.form-control{border-radius:0;font-size:14px}.form-control:focus{border-color:#55555580}.form-control.checking-field.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-field.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\")}.form-control.checking-field.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.form-control.checking-combo.ng-touched{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem}.form-control.checking-combo.ng-touched.ng-invalid{border-color:#bf1725;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bf1725' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control.checking-combo.ng-touched.ng-valid{border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-position:calc(100% - 20px)}.form-control-rounded{border-radius:16px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#555555b3}.input-group .input-group-addon{padding:.3rem .7rem;border-radius:0}.input-group-btn .btn{padding:.36rem .9rem;font-size:17px}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn:not(:first-child),.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn{border-radius:0}select.form-control:not([multiple]) option{color:#000c}select.form-control:not([size]):not([multiple]){height:calc(2.5rem - 5px)}input[type=color].form-control{padding:0}.form-inline .form-group input{width:100%}.form-space-md .form-group{margin-bottom:.75rem}.form-space-lg .form-group{margin-bottom:1rem}.form-group{margin-bottom:.5rem}.dropdown-menu{padding-top:0;padding-bottom:0;border-radius:0;font-size:14px;box-shadow:0 6px 12px #0003}.dropdown-menu a{color:#242d3a}.dropdown-menu a:hover{color:#fff;background-color:#242d3a}.dropdown-menu:before{content:\" \";position:absolute;top:-12px;right:30px;display:block;width:0;height:0;border:6px solid transparent;border-bottom-color:#fff}.custom-control-label:before,.custom-control-label:after{top:.2rem}.custom-checkbox.checkbox-circle .custom-control-label:before,.custom-checkbox.checkbox-circle .custom-control-label:after{border-radius:50%}.custom-checkbox .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-checkbox .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-checkbox .custom-control-input.checkbox-primary:checked~.custom-control-label:before{background:#024a88}.custom-checkbox .custom-control-input.checkbox-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-checkbox .custom-control-input.checkbox-success:checked~.custom-control-label:before{background:#2d922d}.custom-checkbox .custom-control-input.checkbox-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-checkbox .custom-control-input.checkbox-info:checked~.custom-control-label:before{background:#248dad}.custom-checkbox .custom-control-input.checkbox-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-checkbox .custom-control-input.checkbox-warning:checked~.custom-control-label:before{background:#f79a17}.custom-checkbox .custom-control-input.checkbox-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-checkbox .custom-control-input.checkbox-danger:checked~.custom-control-label:before{background:#bf1725}.custom-checkbox .custom-control-input.checkbox-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-checkbox .custom-control-input.checkbox-main:checked~.custom-control-label:before{background:#242D3A}.custom-checkbox .custom-control-input.checkbox-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-radio .custom-control-input:checked~.custom-control-label:before{background:rgba(85,85,85,.7)}.custom-radio .custom-control-input:focus~.custom-control-label:before{border:1px solid white;box-shadow:0 0 0 1px #555555b3}.custom-radio .custom-control-input.radio-primary:checked~.custom-control-label:before{background:#024a88}.custom-radio .custom-control-input.radio-primary:focus~.custom-control-label:before{box-shadow:0 0 0 1px #024a88}.custom-radio .custom-control-input.radio-success:checked~.custom-control-label:before{background:#2d922d}.custom-radio .custom-control-input.radio-success:focus~.custom-control-label:before{box-shadow:0 0 0 1px #2d922d}.custom-radio .custom-control-input.radio-info:checked~.custom-control-label:before{background:#248dad}.custom-radio .custom-control-input.radio-info:focus~.custom-control-label:before{box-shadow:0 0 0 1px #248dad}.custom-radio .custom-control-input.radio-warning:checked~.custom-control-label:before{background:#f79a17}.custom-radio .custom-control-input.radio-warning:focus~.custom-control-label:before{box-shadow:0 0 0 1px #f79a17}.custom-radio .custom-control-input.radio-danger:checked~.custom-control-label:before{background:#bf1725}.custom-radio .custom-control-input.radio-danger:focus~.custom-control-label:before{box-shadow:0 0 0 1px #bf1725}.custom-radio .custom-control-input.radio-main:checked~.custom-control-label:before{background:#242D3A}.custom-radio .custom-control-input.radio-main:focus~.custom-control-label:before{box-shadow:0 0 0 1px #242d3a}.custom-select,.custom-select:focus{background:rgba(255,255,255,.1) url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center;background-size:8px 10px}.bg-primary{background:#024a88!important}.bg-primary.medium-opacity{background:rgba(2,74,136,.5)!important}.bg-success{background:#2d922d!important}.bg-success.medium-opacity{background:rgba(45,146,45,.5)!important}.bg-warning{background:#f79a17!important}.bg-warning.medium-opacity{background:rgba(247,154,23,.5)!important}.bg-danger{background:#bf1725!important}.bg-danger.medium-opacity{background:rgba(191,23,37,.5)!important}.bg-main{background:#242d3a!important}.bg-main.medium-opacity{background:rgba(36,45,58,.5)!important}.bg-dark{background:black!important}.bg-dark.medium-opacity{background:rgba(0,0,0,.5)!important}.custom-select{width:100%}code{background-color:#e9ebee}.app-margin-top-5{margin-top:5px!important}.app-margin-top-10{margin-top:10px!important}.app-margin-top-15{margin-top:15px!important}.app-margin-top-20{margin-top:20px!important}.app-margin-top-25{margin-top:25px!important}.app-margin-top-30{margin-top:30px!important}.app-margin-top-35{margin-top:35px!important}.app-margin-top-40{margin-top:40px!important}.app-margin-top-60{margin-top:60px!important}@media (min-width: 1280px){.modal-xl{max-width:1024px}}@media (min-width: 1600px){.modal-xxl{max-width:1280px}}@media (min-width: 1800px){.modal-feminist{max-width:1366px}}.modal-header{cursor:pointer!important}::-ms-reveal{display:none}.app-fill{width:100%;height:100%}.app-flex-left{margin-right:auto}.lastfix{margin-bottom:-.5rem}.app-inline-wrapped{display:inline!important}.app-inline-wrapped:after{content:\"\\a\";white-space:pre}.app-mat-form-slider{margin-top:-10px;width:100%;padding:0}.app-updevery-input{width:30px;display:inline;padding:1px;height:20px}.mv-input{padding:5px 10px 5px 5px;width:100px;height:30px}.mv-input:focus{box-shadow:none!important}.input-group-addon{background-color:#eceeef;border:1px solid rgba(0,0,0,.15)}.app-flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.app-white-button{background-color:#fff;border-color:#ccc}.app-bigplus{text-align:center;font-size:95px;color:#ccc;font-weight:200;cursor:pointer}.app-bigplus :hover{background-color:#eee}.app-wrap{white-space:pre-wrap;word-break:break-word}.app-min-height-145{min-height:145px}.tooltip{pointer-events:auto!important;-webkit-user-select:none!important;-moz-user-select:none!important;-khtml-user-select:none!important;-ms-user-select:none!important;cursor:default!important}.ace_gutter-cell.ace_breakpoint{border-radius:20px 0 0 20px;box-shadow:0 0 1px 1px red inset}.tab-body{padding:15px;border:1px solid #bbb;width:100%}.tab-header-page{border-bottom:20px solid #bbb;border-left:20px solid transparent;border-right:20px solid transparent;cursor:pointer;height:0;text-align:center}.tab-selected{border-bottom:20px solid #bbb;font-weight:700}.tab-unselected{border-bottom:20px solid #ddd}.app-bullet{font-weight:700;font-size:25px;line-height:0;vertical-align:sub}.app-input-password{width:calc(100% - 30px)!important;display:inline-block!important;margin-right:10px!important}.swal2-container{z-index:9999999999999!important}.app-margin-bottom-min-10{margin-bottom:-10px}.app-margin-bottom-min-15{margin-bottom:-15px}.input-group-addon-color{background-color:#eceeef!important}.no-bg-img{background-image:none!important;padding-right:0!important}::placeholder{color:#aaa!important}ngx-charts-advanced-pie-chart,ngx-charts-number-card,ngx-charts-bar-vertical,ngx-charts-bar-horizontal,ngx-charts-tree-map,ngx-charts-charts{display:block;min-height:1px}.table-striped tbody tr:nth-of-type(odd){background-color:#f2f2f2}.app-flip-y{transform:scaleY(-1)}.app-flip-x{transform:scaleX(-1)}.app-std-border-right{border-right:2px solid #ccc}.app-std-border-left{border-left:2px solid #ccc}.dropdown-menu>li>a:empty{padding:0}.app-caret-none{color:transparent!important;text-shadow:0 0 0 black!important}.app-caret-none:focus{outline:none}.app-break-words{word-break:break-all}.app-simple-border{border:1px solid #eceeef}.scrolling-box{max-height:250px;overflow-x:hidden;overflow-y:auto}.app-ace-higlight{background:rgba(255,50,50,.2);position:absolute}.ace_editor,.ace_editor div{font-family:monospace}.fixed-sm-border{border-width:1px;border-radius:0}.app-dashed-box{border:2px dashed #ccc;padding:10px}.app-small-dashed-box{border:1px dashed #ccc;padding:7px;font-size:small}.app-empty-char{position:absolute;top:45%;left:33%;font-size:18px;font-style:italic}.app-textbox-stringyfied{border:0;background-color:#fff;color:#000;font-weight:700}.app-sticky-last-column{right:0;position:sticky;z-index:0;background-color:#fff}.app-sticky-last-column-alt{right:0;position:sticky;z-index:0;background-color:#f2f2f2}.app-sticky-divider{width:100%;height:1px;z-index:999;background-color:#eee}.app-sticky-first-column{left:-1px;z-index:999;position:sticky;background-color:#ccc}.app-dropdown-stringyfied{color:#000!important;padding:0;height:20px!important;background-color:#fff!important;border:0;font-weight:700;outline:0!important;background:white;opacity:1!important;-moz-appearance:none!important;-webkit-appearance:none!important}.app-dropdown-stringyfied::-ms-expand{display:none!important}.background-danger{background-color:#e9967a}.checking-field,.checking-combo{box-shadow:unset!important}.app-border-none{border:none}.app-padding-leftonly-15{padding:0 0 0 15px!important}.app-width-auto{width:auto}.app-line-through{text-decoration:line-through}.app-margin-auto{margin:auto}.app-upper-right-remove{position:absolute;right:10px;font-size:25px;top:5px}.app-inline-block{display:inline-block}.swal2-success{border-color:#2d922d!important;color:#2d922d!important}.swal2-info{border-color:#248dad!important;color:#248dad!important}.swal2-warning{border-color:#f79a17!important;color:#f79a17!important}.swal2-danger{border-color:#bf1725!important;color:#bf1725!important}.app-slash{font-size:30px;line-height:1;margin-top:2px;text-align:center}.table-mh-435{min-height:435px}.table-b0 th,.table-b0 td{border-top:none!important;border-left:none!important}.table-b0{border:0px}.table-b0 th{border-bottom:none!important}.table-b0:last-child{border:none!important}.job-step-number{position:absolute;right:10px;font-size:16px;top:2px;font-weight:700}.dropdown-menu:before{display:none}.app-table-dotted-menu{padding:0 0 2px!important;color:#999}.app-rtl{direction:rtl}.app-border-1{border:1px solid rgba(0,0,0,.15)!important}.app-no-selection{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.wizard-step-container{background-color:#fff;box-shadow:#63636333 0 2px 8px;padding:10px}.app-right-border{border-right:2px solid #ccc}.app-mtu-fixed-height{height:302px}.app-mtu-fixed-height-wrapper{height:204px;overflow:auto}.app-upper-right-close{position:absolute;top:0;right:15px;font-size:20px}.toast-message{white-space:pre-wrap}.app-overflow-auto{overflow:auto}.app-no-border{border:none!important}.app-contextmenu{background-color:#fff;border:1px solid;padding:10px 30px}.app-contextmenu-item{margin-left:-30px;margin-right:-30px;cursor:pointer}.app-contextmenu-item>span{padding:3px 30px}.app-contextmenu-item:hover{background-color:#ddd}.app-lh-0{line-height:0}.app-lh-05{line-height:.5}.app-lh-1{line-height:1}.app-lh-2{line-height:2}.app-lh-2-important{line-height:2!important}.app-lh-22{line-height:2.2}.app-display-block{display:block!important}.app-input-inline-icon{padding:0;margin:0;position:absolute;top:2px;right:20px}.app-bordered-box{border:1px solid #ccc}.app-mr-auto{margin-right:auto}.app-mrd-infobox-small{border:1px solid #ccc;padding:5px;border-radius:5px}.app-mrd-infobox{border:1px solid #ccc;padding:5px;border-radius:5px;margin-top:-5px;float:left}.app-mrd-infobox-editmode{margin-bottom:-20px;margin-top:-6px}.app-whitespace-prewrap{white-space:pre-wrap}.app-white-selectable{background-color:#fff}.app-white-selected{background-color:#ddd!important}.app-bb-box{border-bottom:2px solid #ddd}.app-white-selectable:hover{background-color:#ddd}.app-placeholder{color:#aaa}.app-placeholder-dark{color:#777}.modal-open{overflow:inherit;padding-right:0!important}.dropdown-menu a:hover{color:#000!important;background-color:#f5f5f5}.dropdown-menu span:hover,.dropdown-item a:hover{color:#000!important;background-color:transparent}.dropdown-item empty{color:#000!important;background-color:#f5f5f5}.app-history-box{max-height:775px;overflow-x:hidden;overflow-y:auto}.app-date-width,.app-input-width{width:100px}.load-more-btn{width:100%;margin-top:10px;background-color:ButtonFace}.app-max-width-100{max-width:100px}.app-search-buttons{position:absolute;top:55px;right:20px}.app-left-0{left:0}.app-left-4{left:4px}.app-left-10{left:10px}.app-bottom-0{bottom:0}.app-bottom-10{bottom:10px}.app-right-0{right:0}.app-right-10{right:10px!important}.app-right-20{right:20px}.app-right-25{right:25px}.app-right-50{right:50px}.app-top-2{top:2px}.app-top-5{top:5px}.app-top-20,.app-top-40{top:20px}.m-t-min-1{margin-top:-1px}.m-t-min-3{margin-top:-3px}.m-t-min-5{margin-top:-5px}.m-t-min-6{margin-top:-6px}.m-t-min-10{margin-top:-10px}.app-uppercase{text-transform:uppercase}.app-col-sm-10-with-addon{width:calc(83.33333% - 56px)!important}.app-bring-to-front{z-index:9999999!important}.modal{z-index:99999998!important}.app-bring-to-front-strong,.guppy_help{z-index:99999999!important}bs-dropdown-container{z-index:99999999!important}.app-bold{font-weight:700}.app-float-left{float:left}.app-float-right{float:right}.app-no-resize{resize:none}.app-table-no-border{border-top:none!important}.app-upper-left-indicator{position:absolute;top:2px;right:5px}.app-dialog-button{margin-bottom:19px;margin-top:1px;font-size:25px}.app-z-index-0{z-index:0!important}.app-col-divide:after{width:0px;content:\"-\";display:block;position:absolute;top:10px;bottom:0;right:2px;font-weight:700}.app-widgets-expanded{padding-right:20px!important;padding-top:10px!important;padding-bottom:0!important}.app-widget-head-expanded{padding:0 0 0 20px}.app-upper-right-trash{position:absolute;right:15px;top:15px;cursor:pointer;z-index:99}.app-absolute{position:absolute}.app-relative{position:relative}.app-box-ricarico{width:250px;position:absolute;bottom:35px}.app-box-ricarico-edit{width:250px;position:absolute;bottom:21px}.app-input-ricarico{display:inline;margin-left:2px;width:20%}.app-no-overflow{overflow:hidden}.app-overflow-visible{overflow:visible}.app-limited-block{max-height:350px;overflow:auto}.app-refresh-button{position:absolute;top:10px}.app-float-right{float:right!important}.app-intable-input{padding:2px 5px}.app-intable-select{padding:2px 5px;height:23px!important}.app-option-placeholder{color:#aaa!important}.app-option-placeholder option{color:#000!important}.app-lightgrey{color:#666}.app-bg-lightgrey{background-color:#ddd!important}.app-width-1000{width:1000px!important}.app-width-10{width:10px!important}.app-width-20{width:20px!important}.app-width-30{width:30px!important}.app-width-40{width:40px!important}.app-width-50{width:50px!important}.app-width-60{width:60px!important}.app-width-70{width:70px!important}.app-width-80{width:80px!important}.app-width-90{width:90px!important}.app-width-100{width:100px!important}.app-width-110{width:110px!important}.app-width-120{width:120px!important}.app-width-130{width:130px!important}.app-width-180{width:180px!important}.app-width-435{width:435px!important}.app-height-350{height:350px}.app-height-250{height:250px}.app-height-275{height:275px}.app-height-300{height:300px}.app-height-380{height:380px}.app-height-370{height:370px}.app-max-height-370{max-height:370px}.app-height-400,.app-height-425{height:400px}.app-height-450{height:450px}.app-height-560{height:560px}.app-sm2-minus-5{float:left;width:calc(16.66667% - 5px)!important}.app-sm10-plus-5{float:left;width:calc(83.33333% + 5px)!important}.app-deadline-todo{background-color:#87cefa!important}.app-deadline-done{background-color:#90ee90!important}.app-font-size-12{font-size:12px!important}.app-font-size-14{font-size:14px!important}.app-font-size-15{font-size:15px!important}.app-font-size-16{font-size:16px!important}.app-font-size-17{font-size:17px!important}.app-font-size-18{font-size:18px!important}.app-font-size-20{font-size:20px!important}.app-font-size-22{font-size:22px!important}.app-font-size-25{font-size:25px!important}.app-font-size-59{font-size:59px!important}.app-selected{background-color:#b0c4de}.app-aff-90{color:#006400}.app-aff-80{color:green}.app-aff-70{color:#90ee90}.app-aff-60{color:#3cb371}.app-aff-50{color:#ff8c00}.app-aff-40{color:red}.app-bg-aff-90{background-color:#006400}.app-bg-aff-80{background-color:green}.app-bg-aff-70{background-color:#90ee90}.app-bg-aff-60{background-color:#3cb371}.app-bg-aff-50{background-color:#ff8c00}.app-bg-aff-40{background-color:red}.app-scarico-materiale-body{max-height:500px;overflow:auto;overflow-x:hidden}.app-max-height-550{max-height:550px}.app-max-height-300{max-height:300px}.app-success-row{background-color:#389c90!important}.app-danger-row{background-color:#9c3838!important}.app-info-row{background-color:#388b9c!important}.app-active-readonly{color:#555!important;background-color:#fff!important}.app-reading-info{position:absolute;top:5px;left:5px;font-size:20px}.app-loading-over{display:none;margin:auto;position:absolute;inset:0;width:100%;height:100%;z-index:99;background:rgba(0,0,0,.5) none repeat}.app-loading-over-internal{color:#fff;position:absolute;top:48%;left:45%;font-size:15px}.app-circle{display:inline-block;width:10px;height:10px;border-radius:50%}.loader-img{position:absolute;width:140px;top:35%;left:calc(50% - 70px)}.app-timepicker-success{padding-right:1.75rem;background-repeat:no-repeat;background-position:center right .625rem;background-size:1.25rem 1.25rem;border-color:#2d922d;background-image:url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%232d922d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\")}.app-success-row-link{color:ivory!important}.dropdown-item:hover{color:#fff!important}.app-fixed-height-700{height:700px;overflow:auto;overflow-x:hidden}.app-fixed-height-610{height:610px;overflow:auto;overflow-x:hidden}.app-fixed-height-685{height:685px;overflow:auto;overflow-x:hidden}.app-arrow{height:15px;width:100%;text-align:center}.app-visible{display:block!important}.app-scheduling-symbol{position:absolute;right:15px;font-size:2.15em;z-index:100}.app-arrow:hover{background-color:#d3d3d3}.app-calendar-box{width:calc(100% - 380px);padding-left:10px;float:right}.app-deadline-box-container{width:380px;height:100%;float:left}.app-deadline-box{padding:0 3px;margin-bottom:5px;margin-left:5px;margin-right:5px;border-style:solid;border-color:#d3d3d3;border-width:2px;position:relative}.app-input-icon{position:absolute;color:#696969;top:11px;left:5px;z-index:999}.app-input-icon:hover{color:#696969}.app-text-center{text-align:center}.app-text-right{text-align:right}.app-text-left{text-align:left}.app-fe-sm-v{position:relative;top:0;width:1px;left:5px;font-size:8px;font-weight:700;color:#000;text-shadow:0px 0px .2px black}.app-fe-v{position:relative;top:-10px;left:145px;width:1px;font-size:11px;font-weight:700;color:#fffac2;text-shadow:0px 0px 1px #fffbcc}.app-card-function-button{padding:.5rem 1.25rem;border-bottom:solid 2px #D9D9D9}.app-modal-function-button{padding:8px 15px;border-bottom:solid 1px #D9D9D9}.app-no-bg-img{background-image:none!important}.app-widget-head-button{font-size:1.15rem;margin-top:-2px;margin-bottom:-5px;margin-left:10px}.app-line-separator{height:3px;background:rgb(237,237,237);border-bottom:1px solid rgb(237,237,237);margin-bottom:10px}.app-small-line-separator{height:2px;background:#ccc;border-bottom:1px solid #ccc;margin-bottom:5px;margin-top:5px}.app-link{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block}.app-link:hover{color:#23527c!important;cursor:pointer;text-decoration:underline!important}.app-link-nocol{cursor:pointer;text-decoration:none}.app-link-nocol:hover{text-decoration:underline}.app-btn-widget{position:absolute;margin:0;top:3.5px;background-color:#414b50;cursor:pointer}.app-btn-widget-spacer{visibility:hidden;height:1px}.app-btn-widget:hover{background-color:#697378}.app-inline{display:inline}.app-btn-search{width:40.85px;height:38px}.app-fa-cell-fix{display:table-cell}.app-display-none{display:none}.app-border-radius-5{border-radius:5px!important}.app-no-padding{padding:0!important}.app-padding-5{padding:5px!important}.app-padding-2{padding:2px!important}.app-padding-3{padding:3px!important}.app-padding-10{padding:10px!important}.app-padding-15{padding:15px!important}.app-padding-left-0{padding-left:0!important}.app-padding-left-5{padding-left:5px!important}.app-padding-left-10{padding-left:10px!important}.app-padding-left-15{padding-left:15px!important}.app-padding-left-20{padding-left:20px!important}.app-padding-left-25{padding-left:25px!important}.app-padding-left-30{padding-left:30px!important}.app-padding-left-35{padding-left:35px!important}.app-padding-left-40{padding-left:40px!important}.app-padding-left-45{padding-left:45px!important}.app-padding-right-0{padding-right:0!important}.app-padding-right-5{padding-right:5px!important}.app-padding-right-10{padding-right:10px!important}.app-padding-right-15{padding-right:15px!important}.app-margin-0{margin:0!important}.app-margin-right-min-10{margin-right:-10px!important}.app-margin-left-min-2{margin-left:-2px}.app-margin-left-min-5{margin-left:-5px}.app-margin-left-min-10{margin-left:-10px!important}.app-margin-right-min-20{margin-right:-20px!important}.app-margin-left-0{margin-left:0!important}.app-margin-left-5{margin-left:5px!important}.app-margin-left-6{margin-left:6px!important}.app-margin-left-15{margin-left:15px!important}.app-margin-left-25{margin-left:25px!important}.app-margin-right-10{margin-right:10px!important}.app-margin-right-15{margin-right:15px!important}.app-margin-right-20{margin-right:20px!important}.app-margin-right-25{margin-right:25px!important}.app-margin-right-5{margin-right:5px!important}.app-margin-top-min-10{margin-top:-10px!important}.app-margin-top-min-15{margin-top:-15px!important}.app-margin-left-10{margin-left:10px!important}.app-margin-bottom-0{margin-bottom:0!important}.app-margin-bottom-2{margin-bottom:2px!important}.app-margin-bottom-5{margin-bottom:5px!important}.app-margin-bottom-10{margin-bottom:10px!important}.app-margin-bottom-14{margin-bottom:14px!important}.app-margin-bottom-15{margin-bottom:15px!important}.app-margin-bottom-20{margin-bottom:20px!important}.app-margin-bottom-25{margin-bottom:25px!important}.app-margin-bottom-30{margin-bottom:30px!important}.app-border-radius-10{border-radius:10px}.app-no-margin{margin:0!important}.app-no-row-margin{margin-left:0!important;margin-right:0!important}.app-white-text{color:#fff!important}.app-black-text{color:#242424!important}.app-pointer{cursor:pointer}.app-not-allowed{cursor:not-allowed}.app-hidden-view{visibility:hidden!important}.app-afterline-button{margin-top:5px;color:#fff;background-color:inherit;border-width:2px;border-color:#fff;font-weight:700;margin-bottom:-5px}.app-afterline-button-black{color:#000;background-color:inherit;border-width:2px;border-color:#000;font-weight:700;margin-bottom:5px}.m-t-min-2{margin-top:-2px}.m-t-1{margin-top:1px}.m-t-2{margin-top:2px}.m-t-3{margin-top:3px}.m-t-4{margin-top:4px}.m-t-6{margin-top:6px}.m-t-7{margin-top:7px}.m-t-8{margin-top:8px}.m-t-9{margin-top:9px}.m-t-10{margin-top:10px}.m-t-30{margin-top:30px}.f-s-25{font-size:25px}.app-pullleft-1{margin-right:1px}.app-pullleft-2{margin-right:2px}.app-pullleft-3{margin-right:3px}.app-pullleft-4{margin-right:4px}.app-pullleft-5{margin-right:5px}.app-pullleft-6{margin-right:6px}.app-pullleft-7{margin-right:7px}.app-pullleft-8{margin-right:8px}.app-pullleft-9{margin-right:9px}.app-pullleft-10{margin-right:10px}.app-pullleft-15{margin-right:15px}.app-pullright-1{margin-left:1px}.app-pullright-2{margin-left:2px}.app-pullright-3{margin-left:3px}.app-pullright-4{margin-left:4px}.app-pullright-5{margin-left:5px}.app-pullright-6{margin-left:6px}.app-pullright-7{margin-left:7px}.app-pullright-8{margin-left:8px}.app-pullright-9{margin-left:9px}.app-pullright-10{margin-left:10px}.app-pullright-15{margin-left:15px}.app-pullup-1{margin-bottom:1px}.app-pullup-2{margin-bottom:2px}.app-pullup-3{margin-bottom:3px}.app-pullup-4{margin-bottom:4px}.app-pullup-5{margin-bottom:5px}.app-pullup-6{margin-bottom:6px}.app-pullup-7{margin-bottom:7px}.app-pullup-8{margin-bottom:8px}.app-pullup-9{margin-bottom:9px}.app-pullup-10{margin-bottom:10px}.app-pullup-15{margin-bottom:15px}.app-one-clm-width{width:100%}.app-two-clm-width{width:50%}.app-three-clm-width{width:33.333%}.app-four-clm-width{width:25%}.app-five-clm-width{width:20%}.app-six-clm-width{width:16.666%}.app-col-12{width:100%}.app-col-11{width:91.66666667%}.app-col-10{width:83.33333333%}.app-col-9{width:75%}.app-col-8{width:66.66666667%}.app-col-7{width:58.33333333%}.app-col-6{width:50%}.app-col-5{width:41.66666667%}.app-col-4{width:33.33333333%}.app-col-3{width:25%}.app-col-2{width:16.66666667%}.app-col-1{width:8.33333333%}.app-padding-bottom-0{padding-bottom:0!important}.app-padding-bottom-5{padding-bottom:5px}.app-padding-bottom-10{padding-bottom:10px}.app-padding-top-0{padding-top:0!important}.app-padding-top-3{padding-top:3px!important}.app-padding-top-8{padding-top:8px!important}.app-padding-top-5{padding-top:5px!important}.app-padding-top-10{padding-top:10px!important}.app-padding-top-13{padding-top:13px!important}.app-padding-top-15{padding-top:15px!important}.app-padding-top-16{padding-top:16px!important}.app-mb-0{margin-bottom:0}.file-upload .file-upload-btn{position:absolute;width:100%;height:35px;z-index:9;opacity:0}.file-upload .delete-file{position:absolute;right:50px;top:8px;font-size:16px;opacity:.8;cursor:pointer;z-index:99;visibility:hidden}.file-upload:hover .delete-file{visibility:visible}.app-right-15{right:15px}.app-top-0{top:0}.app-top-10{top:10px}.app-fs-30{font-size:30px}.app-fs-16{font-size:16px}.app-fs-20{font-size:20px}.app-fs-23{font-size:23px}.app-fs-24{font-size:24px}.app-fs-18{font-size:18px}.app-fs-14{font-size:14px}.app-fs-12{font-size:12px}.selectable-timeline{height:20px;display:flex}.timeline-element-selected{cursor:pointer;text-decoration:underline;font-weight:700}.timeline-element-unselected{cursor:pointer;font-style:italic}.timeline-arrow{width:15px}.timeline-element-container{width:calc(100% - 37px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:flex}.app-checkbox-label{margin-left:5px;margin-top:-1px}.app-nowrap{white-space:nowrap}.app-min-height-365{min-height:365px}.app-min-width-std-395{min-width:395px}.app-min-width-std-110{min-width:110px}.app-min-width-std-150{min-width:150px}.app-min-width-std-220{min-width:220px}.app-min-width-std-120{min-width:120px}.app-min-width-std-70{min-width:70px}.app-ltab-border{border-left:2px solid #bbb}.app-rtab-border{border-right:2px solid #bbb}.app-col-min{width:1px}.app-filter-wrapper{padding-left:0;margin-top:20px}.app-first-filter-line{margin-top:-20px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;text-align:left;border:1px solid #CCC;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{text-decoration:none;outline:0}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right-user{left:-250px;right:0;top:-2px;width:242px}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{position:fixed;inset:0}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;content:\"\"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.app-search-background{z-index:9999;margin-top:60px;padding:0;background-color:#0000004d;width:100vw;height:calc(100vh - 60px)}.app-search-result-box{height:calc(100% - 35px);overflow:hidden;margin:20px}.app-search-card{margin-top:2px;margin-bottom:10px;padding:15px;background-color:#fff;box-shadow:#06182c66 0 0 0 2px,#06182ca6 0 4px 6px -1px,#ffffff14 0 1px inset}.pace .pace-progress{background:#637CA0;position:absolute;height:3px;z-index:0}.pace .pace-progress-inner{display:none}.pace .pace-activity{position:absolute;top:10px;left:10px;border-width:1px;right:auto;width:18px;height:18px;border-top-color:#242d3a;border-left-color:#242d3a}.slimScrollBar,.slimScrollRail{border-radius:0!important;width:4px!important}.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";filter:alpha(opacity=80);pointer-events:none}.gu-hide{left:-9999px!important}.gu-unselectable{-webkit-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)\";filter:alpha(opacity=20)}.guppy_help{max-height:400px;overflow-y:scroll}.toast-container{margin-top:55px}.ngx-json-viewer .segment-type-null>.segment-main>.segment-value{background-color:inherit!important}.swal2-html-container{overflow:hidden}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local(\"Roboto Thin\"),local(\"Roboto-Thin\"),url(/assets/fonts/google/Roboto/Roboto-Thin.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local(\"Roboto Thin Italic\"),local(\"Roboto-ThinItalic\"),url(/assets/fonts/google/Roboto/Roboto-ThinItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local(\"Roboto Light\"),local(\"Roboto-Light\"),url(/assets/fonts/google/Roboto/Roboto-Light.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local(\"Roboto Light Italic\"),local(\"Roboto-LightItalic\"),url(/assets/fonts/google/Roboto/Roboto-LightItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local(\"Roboto Regular\"),local(\"Roboto-Regular\"),url(/assets/fonts/google/Roboto/Roboto-Regular.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local(\"Roboto Italic\"),local(\"Roboto-Italic\"),url(/assets/fonts/google/Roboto/Roboto-Italic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local(\"Roboto Medium\"),local(\"Roboto-Medium\"),url(/assets/fonts/google/Roboto/Roboto-Medium.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local(\"Roboto Medium Italic\"),local(\"Roboto-MediumItalic\"),url(/assets/fonts/google/Roboto/Roboto-MediumItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local(\"Roboto Bold\"),local(\"Roboto-Bold\"),url(/assets/fonts/google/Roboto/Roboto-Bold.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local(\"Roboto Bold Italic\"),local(\"Roboto-BoldItalic\"),url(/assets/fonts/google/Roboto/Roboto-BoldItalic.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local(\"Roboto Black\"),local(\"Roboto-Black\"),url(/assets/fonts/google/Roboto/Roboto-Black.ttf) format(\"truetype\")}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local(\"Roboto Black Italic\"),local(\"Roboto-BlackItalic\"),url(/assets/fonts/google/Roboto/Roboto-BlackItalic.ttf) format(\"truetype\")}html{height:100%;min-height:100%}body{font-family:Roboto,sans-serif;font-size:14px;color:#242424}body:before{content:\"\";position:fixed;width:100%;height:100%;top:0;left:0;background:#e9ebee;will-change:transform;z-index:-1}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-weight:400}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-size:70%}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-button{width:0px;height:0px}::-webkit-scrollbar-thumb{background:#e1e1e1;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-thumb:hover{background:#cccccc}::-webkit-scrollbar-thumb:active{background:#888888}::-webkit-scrollbar-track{background:#666666;border:0px none #ffffff;border-radius:0}::-webkit-scrollbar-track:hover{background:#666666}::-webkit-scrollbar-track:active{background:#333333}::-webkit-scrollbar-corner{background:transparent}.transition{transition:.3s}.widget-controls{position:absolute;z-index:1;top:0;right:0;padding:10px 20px;font-size:14px}.widget-controls a{color:#fff;margin-left:7px;line-height:1;vertical-align:top;display:inline-block}.widget-controls a i.glyphicon-resize-full{font-size:13px}.widget-controls a:hover{color:#ffffffb3}.widget-controls a.dropdown-toggle:after{display:none}.widget-controls ul.dropdown-menu{min-width:9rem;padding:0;border-radius:0}.widget-controls ul.dropdown-menu li{padding:4px;overflow:hidden}.widget-controls ul.dropdown-menu li a{color:#242d3a;font-size:13px;width:100%}.widget-controls ul.dropdown-menu li:hover{background-color:#242d3a}.widget-controls ul.dropdown-menu li:hover a{color:#fff}.card.fullscreened .card-header{line-height:35px}.card.fullscreened .card-header .widget-controls{padding:20px}.card.fullscreened .card-header .widget-controls a{margin-left:12px}.card.fullscreened .card-header .widget-controls a.setting{display:none}.card.fullscreened.card-primary{background:#024a88}.card.fullscreened.card-success{background:#2d922d}.card.fullscreened.card-info{background:#248dad}.card.fullscreened.card-warning{background:#f79a17}.card.fullscreened.card-danger{background:#bf1725}.scrolling{height:100%;overflow-y:scroll;padding-bottom:60px}.no-margin{margin:0}.bottom-15{margin-bottom:15px}.m-t-5{margin-top:5px}.m-t-15{margin-top:15px}.res-img{width:100%}.chart-outher{width:55%;margin:0 auto}.p-t-10{padding-top:10%}.o-visible{overflow:visible}.w-150{width:150px}.w-200{width:200px}@media (max-width: 543px){.chart-outher{width:100%}}@media (min-width: 544px) and (max-width: 767px){.chart-outher{width:85%}}@media (min-width: 992px) and (max-width: 1199px){.chart-outher{width:65%}}.mat-form-field-disabled .mat-form-field-wrapper{background-color:#ddd}.mat-no-border-top .mat-form-field-infix{border-top:none!important}.mat-dflt-margin,.mat-form-field-appearance-outline .mat-form-field-wrapper{margin-top:.125em!important;margin-bottom:.125em!important}.mat-form-field-wrapper{padding-bottom:0;height:35px;min-height:35px!important;margin-bottom:-7px!important}.mat-full-width{width:100%}.mat-full-height .mat-form-field-wrapper{height:100%!important}.mat-form-field-appearance-outline .mat-form-field-infix{padding-top:5px;padding-bottom:0;height:36px}.mat-form-field-appearance-outline .mat-form-field-infix select.mat-input-element{background-color:transparent;margin-bottom:-11px!important;margin-top:-2px!important;padding-top:0!important;top:0!important}.mat-form-field-appearance-outline .mat-form-field-infix input{display:inline-flex;margin-top:-8px;margin-bottom:-5px;padding-top:8px}.mat-form-field-appearance-outline .mat-form-field-suffix{height:25px!important;top:-2px!important}.mat-form-field-appearance-outline .mat-form-field-suffix .form-input-suffix{margin-right:5px!important;position:absolute!important;top:7px!important;right:4px!important}.mat-form-field-appearance-outline .mat-form-field-infix .form-input-suffix{position:relative!important;top:-4px!important}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:32px!important}.mat-form-field-label-wrapper{top:-8px}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{top:60%!important}.mat-form-field-suffix{margin-right:-10px!important}.cdk-overlay-container{z-index:99999999!important}.mat-height-fixed .mat-form-field-flex{height:38px!important}.mat-height-auto .mat-form-field-flex{height:auto!important;padding-bottom:5px!important;padding-top:5px!important;padding-right:2px!important}.mat-height-auto .mat-form-field-infix{height:auto!important}.mat-icon-button-override{width:25px!important;top:0!important;color:#000000a3!important;position:absolute!important}.mat-icon-button-override-suffix{right:-5px!important}.mat-icon-button-override-prefix{left:-5px!important}.mat-option{height:25px!important;font-size:14px!important}.ngx-mat-timepicker .mat-form-field-infix{border-top:none!important}.mat-form-field-wrapper .form-control{width:100%;border:none;padding:0;line-height:1}.mat-form-field-wrapper .form-control:focus{box-shadow:none!important}.mat-form-field-wrapper .form-control.checking-field.ng-touched{padding-right:0;background-position-y:14px!important;background-position-x:right;padding-top:8px;padding-bottom:0}.mat-height-auto .form-control.checking-field.ng-touched{padding-right:25px;background-position:center right .625rem!important}.mat-form-field-wrapper .form-control.input-small.checking-field.ng-touched{background-position-y:9px!important;padding-right:25px}.mat-form-field-wrapper .form-control{background-color:transparent!important}.mat-form-field-wrapper .form-control.checking-combo.ng-touched{padding-right:45px;background-position-y:8px!important;padding-top:4px!important}.mat-form-field-wrapper .form-control.checking-combo.ng-untouched{padding-right:20px;background-position-y:8px!important;padding-top:4px!important}.mat-input-with-suffix{width:calc(100% - 35px)!important;display:inline-block!important;margin-right:10px!important}.mat-input-group-addon .mat-form-field-appearance-outline .mat-form-field-wrapper{background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.mat-form-field-appearance-outline textarea{padding:5px 0!important}.mat-chip-list-wrapper input.mat-input-element,.mat-chip-list-wrapper .mat-standard-chip{margin:1px 4px 4px!important;padding-top:0!important}.snow{position:absolute;width:10px;height:10px;background:white;border-radius:50%}.snow:nth-child(1){opacity:.3728;transform:translate(33.7095vw,-10px) scale(.4669);animation:fall-1 24s -24s linear infinite}@keyframes fall-1{76.536%{transform:translate(25.9721vw,76.536vh) scale(.4669)}to{transform:translate(29.8408vw,99vh) scale(.4669)}}.snow:nth-child(2){opacity:1.9778;transform:translate(16.8164vw,-10px) scale(.17);animation:fall-2 19s -7s linear infinite}@keyframes fall-2{74.007%{transform:translate(17.5615vw,74.007vh) scale(.17)}to{transform:translate(17.18895vw,99vh) scale(.17)}}.snow:nth-child(3){opacity:.9472;transform:translate(65.2934vw,-10px) scale(.4632);animation:fall-3 25s -4s linear infinite}@keyframes fall-3{76.185%{transform:translate(70.7125vw,76.185vh) scale(.4632)}to{transform:translate(68.00295vw,99vh) scale(.4632)}}.snow:nth-child(4){opacity:1.6716;transform:translate(18.8627vw,-10px) scale(.1958);animation:fall-4 26s -27s linear infinite}@keyframes fall-4{45.18%{transform:translate(9.592vw,45.18vh) scale(.1958)}to{transform:translate(14.22735vw,99vh) scale(.1958)}}.snow:nth-child(5){opacity:1.5898;transform:translate(74.3744vw,-10px) scale(.2243);animation:fall-5 16s -21s linear infinite}@keyframes fall-5{31.786%{transform:translate(84.2832vw,31.786vh) scale(.2243)}to{transform:translate(79.3288vw,99vh) scale(.2243)}}.snow:nth-child(6){opacity:.5774;transform:translate(97.4346vw,-10px) scale(.3558);animation:fall-6 24s -15s linear infinite}@keyframes fall-6{63.613%{transform:translate(106.2817vw,63.613vh) scale(.3558)}to{transform:translate(101.85815vw,99vh) scale(.3558)}}.snow:nth-child(7){opacity:.3906;transform:translate(74.0445vw,-10px) scale(.3633);animation:fall-7 29s -15s linear infinite}@keyframes fall-7{46.508%{transform:translate(75.5232vw,46.508vh) scale(.3633)}to{transform:translate(74.78385vw,99vh) scale(.3633)}}.snow:nth-child(8){opacity:1.4774;transform:translate(16.085vw,-10px) scale(.0908);animation:fall-8 12s -18s linear infinite}@keyframes fall-8{71.599%{transform:translate(15.6452vw,71.599vh) scale(.0908)}to{transform:translate(15.8651vw,99vh) scale(.0908)}}.snow:nth-child(9){opacity:.1766;transform:translate(76.8425vw,-10px) scale(.166);animation:fall-9 13s -12s linear infinite}@keyframes fall-9{33.319%{transform:translate(83.7326vw,33.319vh) scale(.166)}to{transform:translate(80.28755vw,99vh) scale(.166)}}.snow:nth-child(10){opacity:.5984;transform:translate(6.1012vw,-10px) scale(.2302);animation:fall-10 21s -3s linear infinite}@keyframes fall-10{65.842%{transform:translate(3.3988vw,65.842vh) scale(.2302)}to{transform:translate(4.75vw,99vh) scale(.2302)}}.snow:nth-child(11){opacity:1.0374;transform:translate(12.7948vw,-10px) scale(.9556);animation:fall-11 20s -5s linear infinite}@keyframes fall-11{45.677%{transform:translate(6.1285vw,45.677vh) scale(.9556)}to{transform:translate(9.46165vw,99vh) scale(.9556)}}.snow:nth-child(12){opacity:1.9178;transform:translate(52.2194vw,-10px) scale(.3957);animation:fall-12 24s -5s linear infinite}@keyframes fall-12{39.759%{transform:translate(59.0636vw,39.759vh) scale(.3957)}to{transform:translate(55.6415vw,99vh) scale(.3957)}}.snow:nth-child(13){opacity:1.2006;transform:translate(44.2828vw,-10px) scale(.0802);animation:fall-13 11s -24s linear infinite}@keyframes fall-13{79.769%{transform:translate(41.4369vw,79.769vh) scale(.0802)}to{transform:translate(42.85985vw,99vh) scale(.0802)}}.snow:nth-child(14){opacity:.8276;transform:translate(84.856vw,-10px) scale(.9905);animation:fall-14 11s -6s linear infinite}@keyframes fall-14{69.784%{transform:translate(93.5926vw,69.784vh) scale(.9905)}to{transform:translate(89.2243vw,99vh) scale(.9905)}}.snow:nth-child(15){opacity:.259;transform:translate(20.3895vw,-10px) scale(.3318);animation:fall-15 15s -11s linear infinite}@keyframes fall-15{52.832%{transform:translate(10.7689vw,52.832vh) scale(.3318)}to{transform:translate(15.5792vw,99vh) scale(.3318)}}.snow:nth-child(16){opacity:1.0824;transform:translate(28.9456vw,-10px) scale(.138);animation:fall-16 17s -14s linear infinite}@keyframes fall-16{68.127%{transform:translate(25.3255vw,68.127vh) scale(.138)}to{transform:translate(27.13555vw,99vh) scale(.138)}}.snow:nth-child(17){opacity:1.6818;transform:translate(49.8413vw,-10px) scale(.2494);animation:fall-17 11s -4s linear infinite}@keyframes fall-17{44.523%{transform:translate(50.685vw,44.523vh) scale(.2494)}to{transform:translate(50.26315vw,99vh) scale(.2494)}}.snow:nth-child(18){opacity:.593;transform:translate(72.8082vw,-10px) scale(.0669);animation:fall-18 26s -6s linear infinite}@keyframes fall-18{63.657%{transform:translate(81.6927vw,63.657vh) scale(.0669)}to{transform:translate(77.25045vw,99vh) scale(.0669)}}.snow:nth-child(19){opacity:.9066;transform:translate(41.6333vw,-10px) scale(.6333);animation:fall-19 30s -27s linear infinite}@keyframes fall-19{45.616%{transform:translate(41.3239vw,45.616vh) scale(.6333)}to{transform:translate(41.4786vw,99vh) scale(.6333)}}.snow:nth-child(20){opacity:1.3078;transform:translate(71.4501vw,-10px) scale(.2418);animation:fall-20 20s -5s linear infinite}@keyframes fall-20{70.27%{transform:translate(71.3083vw,70.27vh) scale(.2418)}to{transform:translate(71.3792vw,99vh) scale(.2418)}}.snow:nth-child(21){opacity:.2106;transform:translate(44.6853vw,-10px) scale(.1308);animation:fall-21 11s -23s linear infinite}@keyframes fall-21{51.533%{transform:translate(41.4535vw,51.533vh) scale(.1308)}to{transform:translate(43.0694vw,99vh) scale(.1308)}}.snow:nth-child(22){opacity:.9888;transform:translate(6.2337vw,-10px) scale(.4801);animation:fall-22 22s -14s linear infinite}@keyframes fall-22{66.149%{transform:translate(8.4443vw,66.149vh) scale(.4801)}to{transform:translate(7.339vw,99vh) scale(.4801)}}.snow:nth-child(23){opacity:1.5074;transform:translate(20.099vw,-10px) scale(.7065);animation:fall-23 13s -17s linear infinite}@keyframes fall-23{72.63%{transform:translate(22.6297vw,72.63vh) scale(.7065)}to{transform:translate(21.36435vw,99vh) scale(.7065)}}.snow:nth-child(24){opacity:.1882;transform:translate(18.9159vw,-10px) scale(.5806);animation:fall-24 26s -16s linear infinite}@keyframes fall-24{37.324%{transform:translate(14.0047vw,37.324vh) scale(.5806)}to{transform:translate(16.4603vw,99vh) scale(.5806)}}.snow:nth-child(25){opacity:.136;transform:translate(17.7556vw,-10px) scale(.97);animation:fall-25 27s -5s linear infinite}@keyframes fall-25{57.491%{transform:translate(9.8258vw,57.491vh) scale(.97)}to{transform:translate(13.7907vw,99vh) scale(.97)}}.snow:nth-child(26){opacity:.075;transform:translate(71.6504vw,-10px) scale(.6221);animation:fall-26 13s -23s linear infinite}@keyframes fall-26{62.808%{transform:translate(68.2175vw,62.808vh) scale(.6221)}to{transform:translate(69.93395vw,99vh) scale(.6221)}}.snow:nth-child(27){opacity:.2842;transform:translate(62.9303vw,-10px) scale(.5038);animation:fall-27 13s -30s linear infinite}@keyframes fall-27{61.286%{transform:translate(54.3846vw,61.286vh) scale(.5038)}to{transform:translate(58.65745vw,99vh) scale(.5038)}}.snow:nth-child(28){opacity:1.908;transform:translate(45.6116vw,-10px) scale(.2966);animation:fall-28 26s -29s linear infinite}@keyframes fall-28{60.126%{transform:translate(41.5455vw,60.126vh) scale(.2966)}to{transform:translate(43.57855vw,99vh) scale(.2966)}}.snow:nth-child(29){opacity:1.106;transform:translate(39.214vw,-10px) scale(.862);animation:fall-29 26s -27s linear infinite}@keyframes fall-29{57.072%{transform:translate(38.6132vw,57.072vh) scale(.862)}to{transform:translate(38.9136vw,99vh) scale(.862)}}.snow:nth-child(30){opacity:1.0022;transform:translate(88.3523vw,-10px) scale(.5403);animation:fall-30 14s -27s linear infinite}@keyframes fall-30{35.833%{transform:translate(85.6461vw,35.833vh) scale(.5403)}to{transform:translate(86.9992vw,99vh) scale(.5403)}}.snow:nth-child(31){opacity:.4034;transform:translate(50.744vw,-10px) scale(.8585);animation:fall-31 19s -27s linear infinite}@keyframes fall-31{30.738%{transform:translate(56.1637vw,30.738vh) scale(.8585)}to{transform:translate(53.45385vw,99vh) scale(.8585)}}.snow:nth-child(32){opacity:.7822;transform:translate(11.8944vw,-10px) scale(.5534);animation:fall-32 13s -28s linear infinite}@keyframes fall-32{47.86%{transform:translate(11.7074vw,47.86vh) scale(.5534)}to{transform:translate(11.8009vw,99vh) scale(.5534)}}.snow:nth-child(33){opacity:.1374;transform:translate(82.7713vw,-10px) scale(.4387);animation:fall-33 22s -30s linear infinite}@keyframes fall-33{31.396%{transform:translate(82.9299vw,31.396vh) scale(.4387)}to{transform:translate(82.8506vw,99vh) scale(.4387)}}.snow:nth-child(34){opacity:.5098;transform:translate(90.4939vw,-10px) scale(.5452);animation:fall-34 10s -1s linear infinite}@keyframes fall-34{65.435%{transform:translate(93.8913vw,65.435vh) scale(.5452)}to{transform:translate(92.1926vw,99vh) scale(.5452)}}.snow:nth-child(35){opacity:.865;transform:translate(28.7063vw,-10px) scale(.8397);animation:fall-35 10s -14s linear infinite}@keyframes fall-35{66.769%{transform:translate(26.5332vw,66.769vh) scale(.8397)}to{transform:translate(27.61975vw,99vh) scale(.8397)}}.snow:nth-child(36){opacity:.0808;transform:translate(26.4277vw,-10px) scale(.7132);animation:fall-36 14s -4s linear infinite}@keyframes fall-36{32.964%{transform:translate(28.5725vw,32.964vh) scale(.7132)}to{transform:translate(27.5001vw,99vh) scale(.7132)}}.snow:nth-child(37){opacity:1.3478;transform:translate(21.0082vw,-10px) scale(.1217);animation:fall-37 27s -26s linear infinite}@keyframes fall-37{61.57%{transform:translate(13.637vw,61.57vh) scale(.1217)}to{transform:translate(17.3226vw,99vh) scale(.1217)}}.snow:nth-child(38){opacity:.9968;transform:translate(81.8109vw,-10px) scale(.9281);animation:fall-38 25s -17s linear infinite}@keyframes fall-38{62.642%{transform:translate(72.9164vw,62.642vh) scale(.9281)}to{transform:translate(77.36365vw,99vh) scale(.9281)}}.snow:nth-child(39){opacity:.5504;transform:translate(37.9324vw,-10px) scale(.478);animation:fall-39 26s -23s linear infinite}@keyframes fall-39{57.647%{transform:translate(43.3308vw,57.647vh) scale(.478)}to{transform:translate(40.6316vw,99vh) scale(.478)}}.snow:nth-child(40){opacity:1.537;transform:translate(14.2876vw,-10px) scale(.4082);animation:fall-40 15s -10s linear infinite}@keyframes fall-40{57.216%{transform:translate(15.1815vw,57.216vh) scale(.4082)}to{transform:translate(14.73455vw,99vh) scale(.4082)}}.snow:nth-child(41){opacity:.16;transform:translate(67.7267vw,-10px) scale(.7234);animation:fall-41 24s -27s linear infinite}@keyframes fall-41{35.857%{transform:translate(73.0376vw,35.857vh) scale(.7234)}to{transform:translate(70.38215vw,99vh) scale(.7234)}}.snow:nth-child(42){opacity:1.2876;transform:translate(20.5012vw,-10px) scale(.0308);animation:fall-42 27s -10s linear infinite}@keyframes fall-42{56.327%{transform:translate(28.0233vw,56.327vh) scale(.0308)}to{transform:translate(24.26225vw,99vh) scale(.0308)}}.snow:nth-child(43){opacity:.9792;transform:translate(88.0544vw,-10px) scale(.2894);animation:fall-43 12s -23s linear infinite}@keyframes fall-43{55.727%{transform:translate(80.0599vw,55.727vh) scale(.2894)}to{transform:translate(84.05715vw,99vh) scale(.2894)}}.snow:nth-child(44){opacity:.4154;transform:translate(71.0622vw,-10px) scale(.6843);animation:fall-44 13s -18s linear infinite}@keyframes fall-44{46.985%{transform:translate(79.4548vw,46.985vh) scale(.6843)}to{transform:translate(75.2585vw,99vh) scale(.6843)}}.snow:nth-child(45){opacity:1.4258;transform:translate(20.2086vw,-10px) scale(.1567);animation:fall-45 25s -2s linear infinite}@keyframes fall-45{71.652%{transform:translate(28.4689vw,71.652vh) scale(.1567)}to{transform:translate(24.33875vw,99vh) scale(.1567)}}.snow:nth-child(46){opacity:.401;transform:translate(5.5597vw,-10px) scale(.3384);animation:fall-46 28s -2s linear infinite}@keyframes fall-46{50.171%{transform:translate(-.1609vw,50.171vh) scale(.3384)}to{transform:translate(2.6994vw,99vh) scale(.3384)}}.snow:nth-child(47){opacity:1.6654;transform:translate(41.3958vw,-10px) scale(.7558);animation:fall-47 24s -15s linear infinite}@keyframes fall-47{68.21%{transform:translate(33.4905vw,68.21vh) scale(.7558)}to{transform:translate(37.44315vw,99vh) scale(.7558)}}.snow:nth-child(48){opacity:.1342;transform:translate(4.0454vw,-10px) scale(.2928);animation:fall-48 17s -15s linear infinite}@keyframes fall-48{41.255%{transform:translate(13.9565vw,41.255vh) scale(.2928)}to{transform:translate(9.00095vw,99vh) scale(.2928)}}.snow:nth-child(49){opacity:.4644;transform:translate(47.955vw,-10px) scale(.8247);animation:fall-49 21s -22s linear infinite}@keyframes fall-49{34.225%{transform:translate(41.8884vw,34.225vh) scale(.8247)}to{transform:translate(44.9217vw,99vh) scale(.8247)}}.snow:nth-child(50){opacity:1.8612;transform:translate(84.4133vw,-10px) scale(.5282);animation:fall-50 26s -8s linear infinite}@keyframes fall-50{43.535%{transform:translate(78.8606vw,43.535vh) scale(.5282)}to{transform:translate(81.63695vw,99vh) scale(.5282)}}.snow:nth-child(51){opacity:1.5472;transform:translate(14.1369vw,-10px) scale(.5228);animation:fall-51 28s -24s linear infinite}@keyframes fall-51{66.777%{transform:translate(16.5647vw,66.777vh) scale(.5228)}to{transform:translate(15.3508vw,99vh) scale(.5228)}}.snow:nth-child(52){opacity:.4808;transform:translate(8.7539vw,-10px) scale(.1541);animation:fall-52 19s -29s linear infinite}@keyframes fall-52{58.624%{transform:translate(15.8877vw,58.624vh) scale(.1541)}to{transform:translate(12.3208vw,99vh) scale(.1541)}}.snow:nth-child(53){opacity:1.631;transform:translate(76.9256vw,-10px) scale(.7096);animation:fall-53 26s -29s linear infinite}@keyframes fall-53{45.358%{transform:translate(86.1069vw,45.358vh) scale(.7096)}to{transform:translate(81.51625vw,99vh) scale(.7096)}}.snow:nth-child(54){opacity:.539;transform:translate(34.5223vw,-10px) scale(.7021);animation:fall-54 18s -19s linear infinite}@keyframes fall-54{76.79%{transform:translate(28.413vw,76.79vh) scale(.7021)}to{transform:translate(31.46765vw,99vh) scale(.7021)}}.snow:nth-child(55){opacity:.1492;transform:translate(20.0074vw,-10px) scale(.9);animation:fall-55 23s -3s linear infinite}@keyframes fall-55{66.639%{transform:translate(29.1927vw,66.639vh) scale(.9)}to{transform:translate(24.60005vw,99vh) scale(.9)}}.snow:nth-child(56){opacity:.9868;transform:translate(57.6521vw,-10px) scale(.0106);animation:fall-56 30s -16s linear infinite}@keyframes fall-56{64.776%{transform:translate(55.3405vw,64.776vh) scale(.0106)}to{transform:translate(56.4963vw,99vh) scale(.0106)}}.snow:nth-child(57){opacity:1.329;transform:translate(33.1041vw,-10px) scale(.8831);animation:fall-57 13s -20s linear infinite}@keyframes fall-57{67.717%{transform:translate(41.4218vw,67.717vh) scale(.8831)}to{transform:translate(37.26295vw,99vh) scale(.8831)}}.snow:nth-child(58){opacity:1.9464;transform:translate(44.8595vw,-10px) scale(.5236);animation:fall-58 18s -28s linear infinite}@keyframes fall-58{67.749%{transform:translate(53.8553vw,67.749vh) scale(.5236)}to{transform:translate(49.3574vw,99vh) scale(.5236)}}.snow:nth-child(59){opacity:1.1874;transform:translate(94.947vw,-10px) scale(.2904);animation:fall-59 12s -3s linear infinite}@keyframes fall-59{75.19%{transform:translate(87.3144vw,75.19vh) scale(.2904)}to{transform:translate(91.1307vw,99vh) scale(.2904)}}.snow:nth-child(60){opacity:.6236;transform:translate(27.2028vw,-10px) scale(.8671);animation:fall-60 17s -1s linear infinite}@keyframes fall-60{79.166%{transform:translate(20.8779vw,79.166vh) scale(.8671)}to{transform:translate(24.04035vw,99vh) scale(.8671)}}.snow:nth-child(61){opacity:.6774;transform:translate(39.9026vw,-10px) scale(.8272);animation:fall-61 21s -8s linear infinite}@keyframes fall-61{72.68%{transform:translate(34.8307vw,72.68vh) scale(.8272)}to{transform:translate(37.36665vw,99vh) scale(.8272)}}.snow:nth-child(62){opacity:1.3772;transform:translate(68.6696vw,-10px) scale(.0033);animation:fall-62 25s -23s linear infinite}@keyframes fall-62{45.5%{transform:translate(68.621vw,45.5vh) scale(.0033)}to{transform:translate(68.6453vw,99vh) scale(.0033)}}.snow:nth-child(63){opacity:.1628;transform:translate(3.1182vw,-10px) scale(.0907);animation:fall-63 18s -7s linear infinite}@keyframes fall-63{42.093%{transform:translate(9.6227vw,42.093vh) scale(.0907)}to{transform:translate(6.37045vw,99vh) scale(.0907)}}.snow:nth-child(64){opacity:1.8414;transform:translate(56.4315vw,-10px) scale(.7467);animation:fall-64 18s -26s linear infinite}@keyframes fall-64{38.159%{transform:translate(53.0968vw,38.159vh) scale(.7467)}to{transform:translate(54.76415vw,99vh) scale(.7467)}}.snow:nth-child(65){opacity:1.1518;transform:translate(79.74vw,-10px) scale(.604);animation:fall-65 28s -1s linear infinite}@keyframes fall-65{33.804%{transform:translate(87.0697vw,33.804vh) scale(.604)}to{transform:translate(83.40485vw,99vh) scale(.604)}}.snow:nth-child(66){opacity:1.7674;transform:translate(7.7678vw,-10px) scale(.0186);animation:fall-66 12s -27s linear infinite}@keyframes fall-66{56.801%{transform:translate(-1.7545vw,56.801vh) scale(.0186)}to{transform:translate(3.00665vw,99vh) scale(.0186)}}.snow:nth-child(67){opacity:.1514;transform:translate(91.966vw,-10px) scale(.7936);animation:fall-67 23s -26s linear infinite}@keyframes fall-67{61.907%{transform:translate(91.4963vw,61.907vh) scale(.7936)}to{transform:translate(91.73115vw,99vh) scale(.7936)}}.snow:nth-child(68){opacity:.6212;transform:translate(25.7384vw,-10px) scale(.2036);animation:fall-68 22s -26s linear infinite}@keyframes fall-68{78.362%{transform:translate(30.1548vw,78.362vh) scale(.2036)}to{transform:translate(27.9466vw,99vh) scale(.2036)}}.snow:nth-child(69){opacity:1.2966;transform:translate(24.9777vw,-10px) scale(.032);animation:fall-69 20s -26s linear infinite}@keyframes fall-69{42.727%{transform:translate(18.2391vw,42.727vh) scale(.032)}to{transform:translate(21.6084vw,99vh) scale(.032)}}.snow:nth-child(70){opacity:1.5032;transform:translate(25.0647vw,-10px) scale(.9491);animation:fall-70 16s -17s linear infinite}@keyframes fall-70{43.421%{transform:translate(28.0002vw,43.421vh) scale(.9491)}to{transform:translate(26.53245vw,99vh) scale(.9491)}}.snow:nth-child(71){opacity:1.7724;transform:translate(16.146vw,-10px) scale(.2831);animation:fall-71 23s -10s linear infinite}@keyframes fall-71{70.254%{transform:translate(9.704vw,70.254vh) scale(.2831)}to{transform:translate(12.925vw,99vh) scale(.2831)}}.snow:nth-child(72){opacity:.2174;transform:translate(59.6294vw,-10px) scale(.4633);animation:fall-72 13s -7s linear infinite}@keyframes fall-72{49.712%{transform:translate(53.5873vw,49.712vh) scale(.4633)}to{transform:translate(56.60835vw,99vh) scale(.4633)}}.snow:nth-child(73){opacity:.5212;transform:translate(47.4954vw,-10px) scale(.4247);animation:fall-73 26s -22s linear infinite}@keyframes fall-73{39%{transform:translate(39.622vw,39vh) scale(.4247)}to{transform:translate(43.5587vw,99vh) scale(.4247)}}.snow:nth-child(74){opacity:.6488;transform:translate(80.7207vw,-10px) scale(.7051);animation:fall-74 25s -18s linear infinite}@keyframes fall-74{31.054%{transform:translate(90.6563vw,31.054vh) scale(.7051)}to{transform:translate(85.6885vw,99vh) scale(.7051)}}.snow:nth-child(75){opacity:.4364;transform:translate(29.6476vw,-10px) scale(.1626);animation:fall-75 22s -20s linear infinite}@keyframes fall-75{33.33%{transform:translate(19.9043vw,33.33vh) scale(.1626)}to{transform:translate(24.77595vw,99vh) scale(.1626)}}.snow:nth-child(76){opacity:.6818;transform:translate(84.3745vw,-10px) scale(.8487);animation:fall-76 10s -4s linear infinite}@keyframes fall-76{33.991%{transform:translate(88.8677vw,33.991vh) scale(.8487)}to{transform:translate(86.6211vw,99vh) scale(.8487)}}.snow:nth-child(77){opacity:.801;transform:translate(4.0477vw,-10px) scale(.9422);animation:fall-77 15s -19s linear infinite}@keyframes fall-77{40.687%{transform:translate(3.6147vw,40.687vh) scale(.9422)}to{transform:translate(3.8312vw,99vh) scale(.9422)}}.snow:nth-child(78){opacity:1.6506;transform:translate(51.3597vw,-10px) scale(.6741);animation:fall-78 13s -24s linear infinite}@keyframes fall-78{57.34%{transform:translate(42.6952vw,57.34vh) scale(.6741)}to{transform:translate(47.02745vw,99vh) scale(.6741)}}.snow:nth-child(79){opacity:.7912;transform:translate(19.5615vw,-10px) scale(.2747);animation:fall-79 16s -6s linear infinite}@keyframes fall-79{67.497%{transform:translate(17.7564vw,67.497vh) scale(.2747)}to{transform:translate(18.65895vw,99vh) scale(.2747)}}.snow:nth-child(80){opacity:.9544;transform:translate(98.7691vw,-10px) scale(.5171);animation:fall-80 24s -25s linear infinite}@keyframes fall-80{52.91%{transform:translate(89.5145vw,52.91vh) scale(.5171)}to{transform:translate(94.1418vw,99vh) scale(.5171)}}.snow:nth-child(81){opacity:1.8224;transform:translate(67.4887vw,-10px) scale(.428);animation:fall-81 14s -17s linear infinite}@keyframes fall-81{63.41%{transform:translate(58.8965vw,63.41vh) scale(.428)}to{transform:translate(63.1926vw,99vh) scale(.428)}}.snow:nth-child(82){opacity:1.2832;transform:translate(80.1149vw,-10px) scale(.4693);animation:fall-82 17s -16s linear infinite}@keyframes fall-82{60.027%{transform:translate(80.6028vw,60.027vh) scale(.4693)}to{transform:translate(80.35885vw,99vh) scale(.4693)}}.snow:nth-child(83){opacity:1.5402;transform:translate(82.7791vw,-10px) scale(.3119);animation:fall-83 16s -23s linear infinite}@keyframes fall-83{47.302%{transform:translate(80.9172vw,47.302vh) scale(.3119)}to{transform:translate(81.84815vw,99vh) scale(.3119)}}.snow:nth-child(84){opacity:.4256;transform:translate(12.3684vw,-10px) scale(.8109);animation:fall-84 22s -1s linear infinite}@keyframes fall-84{35.668%{transform:translate(15.2446vw,35.668vh) scale(.8109)}to{transform:translate(13.8065vw,99vh) scale(.8109)}}.snow:nth-child(85){opacity:1.718;transform:translate(24.9631vw,-10px) scale(.9694);animation:fall-85 21s -11s linear infinite}@keyframes fall-85{55.758%{transform:translate(26.7735vw,55.758vh) scale(.9694)}to{transform:translate(25.8683vw,99vh) scale(.9694)}}.snow:nth-child(86){opacity:1.0102;transform:translate(17.9787vw,-10px) scale(.0495);animation:fall-86 10s -18s linear infinite}@keyframes fall-86{69.417%{transform:translate(26.394vw,69.417vh) scale(.0495)}to{transform:translate(22.18635vw,99vh) scale(.0495)}}.snow:nth-child(87){opacity:1.8818;transform:translate(34.5882vw,-10px) scale(.4862);animation:fall-87 22s -24s linear infinite}@keyframes fall-87{57.869%{transform:translate(32.7367vw,57.869vh) scale(.4862)}to{transform:translate(33.66245vw,99vh) scale(.4862)}}.snow:nth-child(88){opacity:1.7122;transform:translate(45.4692vw,-10px) scale(.6035);animation:fall-88 24s -18s linear infinite}@keyframes fall-88{79.984%{transform:translate(52.1577vw,79.984vh) scale(.6035)}to{transform:translate(48.81345vw,99vh) scale(.6035)}}.snow:nth-child(89){opacity:.987;transform:translate(70.6672vw,-10px) scale(.7015);animation:fall-89 24s -4s linear infinite}@keyframes fall-89{39.533%{transform:translate(72.793vw,39.533vh) scale(.7015)}to{transform:translate(71.7301vw,99vh) scale(.7015)}}.snow:nth-child(90){opacity:1.892;transform:translate(48.3686vw,-10px) scale(.5887);animation:fall-90 16s -20s linear infinite}@keyframes fall-90{45.188%{transform:translate(46.3299vw,45.188vh) scale(.5887)}to{transform:translate(47.34925vw,99vh) scale(.5887)}}.snow:nth-child(91){opacity:.7078;transform:translate(29.8099vw,-10px) scale(.8508);animation:fall-91 23s -9s linear infinite}@keyframes fall-91{30.893%{transform:translate(28.442vw,30.893vh) scale(.8508)}to{transform:translate(29.12595vw,99vh) scale(.8508)}}.snow:nth-child(92){opacity:1.7388;transform:translate(9.6277vw,-10px) scale(.6981);animation:fall-92 16s -21s linear infinite}@keyframes fall-92{62.534%{transform:translate(6.5271vw,62.534vh) scale(.6981)}to{transform:translate(8.0774vw,99vh) scale(.6981)}}.snow:nth-child(93){opacity:1.1066;transform:translate(10.5456vw,-10px) scale(.7984);animation:fall-93 11s -18s linear infinite}@keyframes fall-93{75.888%{transform:translate(10.9336vw,75.888vh) scale(.7984)}to{transform:translate(10.7396vw,99vh) scale(.7984)}}.snow:nth-child(94){opacity:1.6886;transform:translate(57.9053vw,-10px) scale(.8676);animation:fall-94 11s -23s linear infinite}@keyframes fall-94{60.099%{transform:translate(65.5622vw,60.099vh) scale(.8676)}to{transform:translate(61.73375vw,99vh) scale(.8676)}}.snow:nth-child(95){opacity:.448;transform:translate(89.3597vw,-10px) scale(.3866);animation:fall-95 16s -26s linear infinite}@keyframes fall-95{34.712%{transform:translate(90.3139vw,34.712vh) scale(.3866)}to{transform:translate(89.8368vw,99vh) scale(.3866)}}.snow:nth-child(96){opacity:1.4532;transform:translate(14.3798vw,-10px) scale(.3439);animation:fall-96 12s -24s linear infinite}@keyframes fall-96{77.071%{transform:translate(10.3936vw,77.071vh) scale(.3439)}to{transform:translate(12.3867vw,99vh) scale(.3439)}}.snow:nth-child(97){opacity:.1818;transform:translate(91.2861vw,-10px) scale(.26);animation:fall-97 15s -17s linear infinite}@keyframes fall-97{51.242%{transform:translate(90.9033vw,51.242vh) scale(.26)}to{transform:translate(91.0947vw,99vh) scale(.26)}}.snow:nth-child(98){opacity:.018;transform:translate(47.2255vw,-10px) scale(.4484);animation:fall-98 23s -20s linear infinite}@keyframes fall-98{76.624%{transform:translate(37.6514vw,76.624vh) scale(.4484)}to{transform:translate(42.43845vw,99vh) scale(.4484)}}.snow:nth-child(99){opacity:.3294;transform:translate(63.1688vw,-10px) scale(.2089);animation:fall-99 11s -1s linear infinite}@keyframes fall-99{72.43%{transform:translate(60.6275vw,72.43vh) scale(.2089)}to{transform:translate(61.89815vw,99vh) scale(.2089)}}.snow:nth-child(100){opacity:1.7172;transform:translate(77.9218vw,-10px) scale(.9459);animation:fall-100 29s -20s linear infinite}@keyframes fall-100{61.046%{transform:translate(69.3811vw,61.046vh) scale(.9459)}to{transform:translate(73.65145vw,99vh) scale(.9459)}}.snow:nth-child(101){opacity:1.5512;transform:translate(57.3668vw,-10px) scale(.4091);animation:fall-101 24s -18s linear infinite}@keyframes fall-101{53.027%{transform:translate(59.253vw,53.027vh) scale(.4091)}to{transform:translate(58.3099vw,99vh) scale(.4091)}}.snow:nth-child(102){opacity:1.524;transform:translate(48.2999vw,-10px) scale(.543);animation:fall-102 22s -4s linear infinite}@keyframes fall-102{37.027%{transform:translate(42.0263vw,37.027vh) scale(.543)}to{transform:translate(45.1631vw,99vh) scale(.543)}}.snow:nth-child(103){opacity:1.3674;transform:translate(69.9384vw,-10px) scale(.7109);animation:fall-103 29s -24s linear infinite}@keyframes fall-103{78.819%{transform:translate(76.1161vw,78.819vh) scale(.7109)}to{transform:translate(73.02725vw,99vh) scale(.7109)}}.snow:nth-child(104){opacity:1.0758;transform:translate(44.0583vw,-10px) scale(.5152);animation:fall-104 25s -7s linear infinite}@keyframes fall-104{49.611%{transform:translate(50.9746vw,49.611vh) scale(.5152)}to{transform:translate(47.51645vw,99vh) scale(.5152)}}.snow:nth-child(105){opacity:1.9798;transform:translate(69.7845vw,-10px) scale(.8657);animation:fall-105 28s -13s linear infinite}@keyframes fall-105{39.397%{transform:translate(60.5871vw,39.397vh) scale(.8657)}to{transform:translate(65.1858vw,99vh) scale(.8657)}}.snow:nth-child(106){opacity:1.9334;transform:translate(36.938vw,-10px) scale(.6493);animation:fall-106 13s -19s linear infinite}@keyframes fall-106{39.432%{transform:translate(41.4774vw,39.432vh) scale(.6493)}to{transform:translate(39.2077vw,99vh) scale(.6493)}}.snow:nth-child(107){opacity:1.1406;transform:translate(22.4302vw,-10px) scale(.6177);animation:fall-107 28s -13s linear infinite}@keyframes fall-107{74.466%{transform:translate(15.6665vw,74.466vh) scale(.6177)}to{transform:translate(19.04835vw,99vh) scale(.6177)}}.snow:nth-child(108){opacity:.8044;transform:translate(80.2905vw,-10px) scale(.4267);animation:fall-108 18s -12s linear infinite}@keyframes fall-108{40.48%{transform:translate(85.2745vw,40.48vh) scale(.4267)}to{transform:translate(82.7825vw,99vh) scale(.4267)}}.snow:nth-child(109){opacity:.3756;transform:translate(9.6632vw,-10px) scale(.0509);animation:fall-109 10s -1s linear infinite}@keyframes fall-109{63.655%{transform:translate(7.8186vw,63.655vh) scale(.0509)}to{transform:translate(8.7409vw,99vh) scale(.0509)}}.snow:nth-child(110){opacity:.0298;transform:translate(79.9037vw,-10px) scale(.3355);animation:fall-110 18s -27s linear infinite}@keyframes fall-110{33.336%{transform:translate(73.2488vw,33.336vh) scale(.3355)}to{transform:translate(76.57625vw,99vh) scale(.3355)}}.snow:nth-child(111){opacity:1.354;transform:translate(47.0153vw,-10px) scale(.7856);animation:fall-111 18s -24s linear infinite}@keyframes fall-111{39.555%{transform:translate(41.6415vw,39.555vh) scale(.7856)}to{transform:translate(44.3284vw,99vh) scale(.7856)}}.snow:nth-child(112){opacity:1.023;transform:translate(88.5695vw,-10px) scale(.0821);animation:fall-112 13s -25s linear infinite}@keyframes fall-112{53.42%{transform:translate(83.6655vw,53.42vh) scale(.0821)}to{transform:translate(86.1175vw,99vh) scale(.0821)}}.snow:nth-child(113){opacity:.8608;transform:translate(4.6776vw,-10px) scale(.993);animation:fall-113 25s -20s linear infinite}@keyframes fall-113{45.03%{transform:translate(-1.2977vw,45.03vh) scale(.993)}to{transform:translate(1.68995vw,99vh) scale(.993)}}.snow:nth-child(114){opacity:.4978;transform:translate(27.6624vw,-10px) scale(.2509);animation:fall-114 19s -8s linear infinite}@keyframes fall-114{42.756%{transform:translate(17.9746vw,42.756vh) scale(.2509)}to{transform:translate(22.8185vw,99vh) scale(.2509)}}.snow:nth-child(115){opacity:.804;transform:translate(93.2102vw,-10px) scale(.8187);animation:fall-115 19s -26s linear infinite}@keyframes fall-115{47.636%{transform:translate(94.6903vw,47.636vh) scale(.8187)}to{transform:translate(93.95025vw,99vh) scale(.8187)}}.snow:nth-child(116){opacity:.0262;transform:translate(47.8204vw,-10px) scale(.6057);animation:fall-116 20s -28s linear infinite}@keyframes fall-116{58.721%{transform:translate(50.977vw,58.721vh) scale(.6057)}to{transform:translate(49.3987vw,99vh) scale(.6057)}}.snow:nth-child(117){opacity:.3044;transform:translate(94.8563vw,-10px) scale(.8913);animation:fall-117 14s -16s linear infinite}@keyframes fall-117{67.974%{transform:translate(89.5297vw,67.974vh) scale(.8913)}to{transform:translate(92.193vw,99vh) scale(.8913)}}.snow:nth-child(118){opacity:.1006;transform:translate(95.8232vw,-10px) scale(.4247);animation:fall-118 12s -28s linear infinite}@keyframes fall-118{50.883%{transform:translate(102.6937vw,50.883vh) scale(.4247)}to{transform:translate(99.25845vw,99vh) scale(.4247)}}.snow:nth-child(119){opacity:.589;transform:translate(89.0263vw,-10px) scale(.8523);animation:fall-119 17s -8s linear infinite}@keyframes fall-119{50.781%{transform:translate(80.8775vw,50.781vh) scale(.8523)}to{transform:translate(84.9519vw,99vh) scale(.8523)}}.snow:nth-child(120){opacity:1.7524;transform:translate(88.3061vw,-10px) scale(.9169);animation:fall-120 20s -11s linear infinite}@keyframes fall-120{32.716%{transform:translate(94.5031vw,32.716vh) scale(.9169)}to{transform:translate(91.4046vw,99vh) scale(.9169)}}.snow:nth-child(121){opacity:.9498;transform:translate(53.5611vw,-10px) scale(.0905);animation:fall-121 11s -8s linear infinite}@keyframes fall-121{55.91%{transform:translate(60.8242vw,55.91vh) scale(.0905)}to{transform:translate(57.19265vw,99vh) scale(.0905)}}.snow:nth-child(122){opacity:1.188;transform:translate(.5931vw,-10px) scale(.4016);animation:fall-122 10s -19s linear infinite}@keyframes fall-122{61.76%{transform:translate(-2.8032vw,61.76vh) scale(.4016)}to{transform:translate(-1.10505vw,99vh) scale(.4016)}}.snow:nth-child(123){opacity:.6256;transform:translate(84.1323vw,-10px) scale(.8051);animation:fall-123 10s -2s linear infinite}@keyframes fall-123{40.891%{transform:translate(78.6254vw,40.891vh) scale(.8051)}to{transform:translate(81.37885vw,99vh) scale(.8051)}}.snow:nth-child(124){opacity:1.2234;transform:translate(11.6853vw,-10px) scale(.3519);animation:fall-124 26s -21s linear infinite}@keyframes fall-124{34.032%{transform:translate(6.9516vw,34.032vh) scale(.3519)}to{transform:translate(9.31845vw,99vh) scale(.3519)}}.snow:nth-child(125){opacity:1.4376;transform:translate(16.8134vw,-10px) scale(.4672);animation:fall-125 19s -4s linear infinite}@keyframes fall-125{35.448%{transform:translate(7.441vw,35.448vh) scale(.4672)}to{transform:translate(12.1272vw,99vh) scale(.4672)}}.snow:nth-child(126){opacity:.5734;transform:translate(53.9947vw,-10px) scale(.1565);animation:fall-126 27s -15s linear infinite}@keyframes fall-126{41.198%{transform:translate(53.8539vw,41.198vh) scale(.1565)}to{transform:translate(53.9243vw,99vh) scale(.1565)}}.snow:nth-child(127){opacity:.7872;transform:translate(95.2573vw,-10px) scale(.1964);animation:fall-127 15s -14s linear infinite}@keyframes fall-127{54.933%{transform:translate(94.0446vw,54.933vh) scale(.1964)}to{transform:translate(94.65095vw,99vh) scale(.1964)}}.snow:nth-child(128){opacity:1.668;transform:translate(19.6517vw,-10px) scale(.8343);animation:fall-128 15s -12s linear infinite}@keyframes fall-128{69.632%{transform:translate(18.268vw,69.632vh) scale(.8343)}to{transform:translate(18.95985vw,99vh) scale(.8343)}}.snow:nth-child(129){opacity:1.958;transform:translate(84.5689vw,-10px) scale(.8702);animation:fall-129 11s -24s linear infinite}@keyframes fall-129{50.203%{transform:translate(92.2141vw,50.203vh) scale(.8702)}to{transform:translate(88.3915vw,99vh) scale(.8702)}}.snow:nth-child(130){opacity:.3114;transform:translate(.3646vw,-10px) scale(.0205);animation:fall-130 12s -17s linear infinite}@keyframes fall-130{51.755%{transform:translate(2.1806vw,51.755vh) scale(.0205)}to{transform:translate(1.2726vw,99vh) scale(.0205)}}.snow:nth-child(131){opacity:.191;transform:translate(85.3642vw,-10px) scale(.4785);animation:fall-131 22s -10s linear infinite}@keyframes fall-131{60.539%{transform:translate(81.2513vw,60.539vh) scale(.4785)}to{transform:translate(83.30775vw,99vh) scale(.4785)}}.snow:nth-child(132){opacity:.407;transform:translate(61.6694vw,-10px) scale(.0954);animation:fall-132 24s -26s linear infinite}@keyframes fall-132{48.136%{transform:translate(64.5299vw,48.136vh) scale(.0954)}to{transform:translate(63.09965vw,99vh) scale(.0954)}}.snow:nth-child(133){opacity:1.9548;transform:translate(42.1385vw,-10px) scale(.0274);animation:fall-133 23s -1s linear infinite}@keyframes fall-133{33.316%{transform:translate(39.5961vw,33.316vh) scale(.0274)}to{transform:translate(40.8673vw,99vh) scale(.0274)}}.snow:nth-child(134){opacity:.441;transform:translate(32.7744vw,-10px) scale(.2982);animation:fall-134 21s -11s linear infinite}@keyframes fall-134{68.118%{transform:translate(30.0796vw,68.118vh) scale(.2982)}to{transform:translate(31.427vw,99vh) scale(.2982)}}.snow:nth-child(135){opacity:1.7562;transform:translate(4.497vw,-10px) scale(.9668);animation:fall-135 28s -20s linear infinite}@keyframes fall-135{54.476%{transform:translate(-2.7388vw,54.476vh) scale(.9668)}to{transform:translate(.8791vw,99vh) scale(.9668)}}.snow:nth-child(136){opacity:1.6138;transform:translate(32.7684vw,-10px) scale(.8351);animation:fall-136 15s -25s linear infinite}@keyframes fall-136{44.824%{transform:translate(38.6741vw,44.824vh) scale(.8351)}to{transform:translate(35.72125vw,99vh) scale(.8351)}}.snow:nth-child(137){opacity:.9876;transform:translate(68.5454vw,-10px) scale(.3859);animation:fall-137 22s -26s linear infinite}@keyframes fall-137{55.779%{transform:translate(72.1533vw,55.779vh) scale(.3859)}to{transform:translate(70.34935vw,99vh) scale(.3859)}}.snow:nth-child(138){opacity:1.5558;transform:translate(57.673vw,-10px) scale(.0721);animation:fall-138 28s -5s linear infinite}@keyframes fall-138{64.045%{transform:translate(57.8879vw,64.045vh) scale(.0721)}to{transform:translate(57.78045vw,99vh) scale(.0721)}}.snow:nth-child(139){opacity:1.7886;transform:translate(11.4538vw,-10px) scale(.5514);animation:fall-139 12s -21s linear infinite}@keyframes fall-139{49.754%{transform:translate(19.6733vw,49.754vh) scale(.5514)}to{transform:translate(15.56355vw,99vh) scale(.5514)}}.snow:nth-child(140){opacity:.4892;transform:translate(85.1715vw,-10px) scale(.4576);animation:fall-140 17s -28s linear infinite}@keyframes fall-140{40.518%{transform:translate(76.4668vw,40.518vh) scale(.4576)}to{transform:translate(80.81915vw,99vh) scale(.4576)}}.snow:nth-child(141){opacity:1.629;transform:translate(30.9385vw,-10px) scale(.2652);animation:fall-141 23s -5s linear infinite}@keyframes fall-141{75.243%{transform:translate(40.7198vw,75.243vh) scale(.2652)}to{transform:translate(35.82915vw,99vh) scale(.2652)}}.snow:nth-child(142){opacity:.422;transform:translate(37.2989vw,-10px) scale(.2998);animation:fall-142 29s -1s linear infinite}@keyframes fall-142{66.458%{transform:translate(39.2662vw,66.458vh) scale(.2998)}to{transform:translate(38.28255vw,99vh) scale(.2998)}}.snow:nth-child(143){opacity:1.0912;transform:translate(17.9608vw,-10px) scale(.4292);animation:fall-143 19s -27s linear infinite}@keyframes fall-143{34.412%{transform:translate(19.6776vw,34.412vh) scale(.4292)}to{transform:translate(18.8192vw,99vh) scale(.4292)}}.snow:nth-child(144){opacity:.4754;transform:translate(12.8535vw,-10px) scale(.8874);animation:fall-144 14s -6s linear infinite}@keyframes fall-144{72.805%{transform:translate(13.7908vw,72.805vh) scale(.8874)}to{transform:translate(13.32215vw,99vh) scale(.8874)}}.snow:nth-child(145){opacity:.9446;transform:translate(35.4232vw,-10px) scale(.9418);animation:fall-145 21s -14s linear infinite}@keyframes fall-145{36.123%{transform:translate(34.4282vw,36.123vh) scale(.9418)}to{transform:translate(34.9257vw,99vh) scale(.9418)}}.snow:nth-child(146){opacity:1.8038;transform:translate(41.821vw,-10px) scale(.7639);animation:fall-146 27s -8s linear infinite}@keyframes fall-146{34.652%{transform:translate(47.4533vw,34.652vh) scale(.7639)}to{transform:translate(44.63715vw,99vh) scale(.7639)}}.snow:nth-child(147){opacity:1.6554;transform:translate(53.6917vw,-10px) scale(.8383);animation:fall-147 29s -23s linear infinite}@keyframes fall-147{30.79%{transform:translate(50.9776vw,30.79vh) scale(.8383)}to{transform:translate(52.33465vw,99vh) scale(.8383)}}.snow:nth-child(148){opacity:.1744;transform:translate(20.9391vw,-10px) scale(.3438);animation:fall-148 27s -29s linear infinite}@keyframes fall-148{66.437%{transform:translate(19.498vw,66.437vh) scale(.3438)}to{transform:translate(20.21855vw,99vh) scale(.3438)}}.snow:nth-child(149){opacity:1.7078;transform:translate(15.8102vw,-10px) scale(.9315);animation:fall-149 13s -15s linear infinite}@keyframes fall-149{71.72%{transform:translate(23.6743vw,71.72vh) scale(.9315)}to{transform:translate(19.74225vw,99vh) scale(.9315)}}.snow:nth-child(150){opacity:.728;transform:translate(77.0736vw,-10px) scale(.2778);animation:fall-150 12s -3s linear infinite}@keyframes fall-150{37.586%{transform:translate(68.3248vw,37.586vh) scale(.2778)}to{transform:translate(72.6992vw,99vh) scale(.2778)}}.snow:nth-child(151){opacity:.3318;transform:translate(18.441vw,-10px) scale(.8221);animation:fall-151 30s -16s linear infinite}@keyframes fall-151{54.914%{transform:translate(10.2221vw,54.914vh) scale(.8221)}to{transform:translate(14.33155vw,99vh) scale(.8221)}}.snow:nth-child(152){opacity:1.2388;transform:translate(10.5465vw,-10px) scale(.8562);animation:fall-152 19s -20s linear infinite}@keyframes fall-152{68.244%{transform:translate(12.1733vw,68.244vh) scale(.8562)}to{transform:translate(11.3599vw,99vh) scale(.8562)}}.snow:nth-child(153){opacity:.6236;transform:translate(58.6637vw,-10px) scale(.7609);animation:fall-153 12s -15s linear infinite}@keyframes fall-153{43.303%{transform:translate(61.5128vw,43.303vh) scale(.7609)}to{transform:translate(60.08825vw,99vh) scale(.7609)}}.snow:nth-child(154){opacity:1.5326;transform:translate(15.9143vw,-10px) scale(.1978);animation:fall-154 22s -14s linear infinite}@keyframes fall-154{31.539%{transform:translate(25.0891vw,31.539vh) scale(.1978)}to{transform:translate(20.5017vw,99vh) scale(.1978)}}.snow:nth-child(155){opacity:.209;transform:translate(14.2956vw,-10px) scale(.4603);animation:fall-155 27s -1s linear infinite}@keyframes fall-155{47.392%{transform:translate(6.2657vw,47.392vh) scale(.4603)}to{transform:translate(10.28065vw,99vh) scale(.4603)}}.snow:nth-child(156){opacity:1.724;transform:translate(74.1198vw,-10px) scale(.0901);animation:fall-156 12s -27s linear infinite}@keyframes fall-156{32.36%{transform:translate(82.7464vw,32.36vh) scale(.0901)}to{transform:translate(78.4331vw,99vh) scale(.0901)}}.snow:nth-child(157){opacity:1.6402;transform:translate(24.9104vw,-10px) scale(.5855);animation:fall-157 22s -7s linear infinite}@keyframes fall-157{69.756%{transform:translate(15.8705vw,69.756vh) scale(.5855)}to{transform:translate(20.39045vw,99vh) scale(.5855)}}.snow:nth-child(158){opacity:1.103;transform:translate(54.8834vw,-10px) scale(.0921);animation:fall-158 11s -13s linear infinite}@keyframes fall-158{42.468%{transform:translate(55.3087vw,42.468vh) scale(.0921)}to{transform:translate(55.09605vw,99vh) scale(.0921)}}.snow:nth-child(159){opacity:1.7482;transform:translate(74.7737vw,-10px) scale(.7505);animation:fall-159 11s -21s linear infinite}@keyframes fall-159{49.291%{transform:translate(78.699vw,49.291vh) scale(.7505)}to{transform:translate(76.73635vw,99vh) scale(.7505)}}.snow:nth-child(160){opacity:1.6288;transform:translate(58.8547vw,-10px) scale(.3811);animation:fall-160 14s -9s linear infinite}@keyframes fall-160{75.063%{transform:translate(60.0184vw,75.063vh) scale(.3811)}to{transform:translate(59.43655vw,99vh) scale(.3811)}}.snow:nth-child(161){opacity:.232;transform:translate(9.6109vw,-10px) scale(.1524);animation:fall-161 23s -5s linear infinite}@keyframes fall-161{40.251%{transform:translate(17.8024vw,40.251vh) scale(.1524)}to{transform:translate(13.70665vw,99vh) scale(.1524)}}.snow:nth-child(162){opacity:1.981;transform:translate(51.3132vw,-10px) scale(.4831);animation:fall-162 29s -29s linear infinite}@keyframes fall-162{61.69%{transform:translate(58.3896vw,61.69vh) scale(.4831)}to{transform:translate(54.8514vw,99vh) scale(.4831)}}.snow:nth-child(163){opacity:.7004;transform:translate(37.728vw,-10px) scale(.2258);animation:fall-163 25s -24s linear infinite}@keyframes fall-163{76.371%{transform:translate(38.6627vw,76.371vh) scale(.2258)}to{transform:translate(38.19535vw,99vh) scale(.2258)}}.snow:nth-child(164){opacity:1.0872;transform:translate(71.2865vw,-10px) scale(.1237);animation:fall-164 28s -3s linear infinite}@keyframes fall-164{33.29%{transform:translate(71.5254vw,33.29vh) scale(.1237)}to{transform:translate(71.40595vw,99vh) scale(.1237)}}.snow:nth-child(165){opacity:1.6604;transform:translate(14.8135vw,-10px) scale(.8969);animation:fall-165 18s -5s linear infinite}@keyframes fall-165{72.789%{transform:translate(17.3324vw,72.789vh) scale(.8969)}to{transform:translate(16.07295vw,99vh) scale(.8969)}}.snow:nth-child(166){opacity:.6456;transform:translate(44.9039vw,-10px) scale(.4944);animation:fall-166 25s -19s linear infinite}@keyframes fall-166{73.299%{transform:translate(35.2778vw,73.299vh) scale(.4944)}to{transform:translate(40.09085vw,99vh) scale(.4944)}}.snow:nth-child(167){opacity:.9732;transform:translate(76.8157vw,-10px) scale(.9348);animation:fall-167 29s -4s linear infinite}@keyframes fall-167{64.423%{transform:translate(77.9364vw,64.423vh) scale(.9348)}to{transform:translate(77.37605vw,99vh) scale(.9348)}}.snow:nth-child(168){opacity:.4768;transform:translate(88.3612vw,-10px) scale(.501);animation:fall-168 20s -24s linear infinite}@keyframes fall-168{73.738%{transform:translate(78.3759vw,73.738vh) scale(.501)}to{transform:translate(83.36855vw,99vh) scale(.501)}}.snow:nth-child(169){opacity:1.676;transform:translate(41.9738vw,-10px) scale(.2332);animation:fall-169 27s -30s linear infinite}@keyframes fall-169{53.239%{transform:translate(46.221vw,53.239vh) scale(.2332)}to{transform:translate(44.0974vw,99vh) scale(.2332)}}.snow:nth-child(170){opacity:.7744;transform:translate(2.1069vw,-10px) scale(.4636);animation:fall-170 30s -19s linear infinite}@keyframes fall-170{68.31%{transform:translate(3.1562vw,68.31vh) scale(.4636)}to{transform:translate(2.63155vw,99vh) scale(.4636)}}.snow:nth-child(171){opacity:1.4886;transform:translate(64.8235vw,-10px) scale(.5228);animation:fall-171 27s -20s linear infinite}@keyframes fall-171{39.332%{transform:translate(61.3616vw,39.332vh) scale(.5228)}to{transform:translate(63.09255vw,99vh) scale(.5228)}}.snow:nth-child(172){opacity:.88;transform:translate(33.116vw,-10px) scale(.9921);animation:fall-172 10s -26s linear infinite}@keyframes fall-172{78.977%{transform:translate(24.129vw,78.977vh) scale(.9921)}to{transform:translate(28.6225vw,99vh) scale(.9921)}}.snow:nth-child(173){opacity:1.1512;transform:translate(99.3923vw,-10px) scale(.5927);animation:fall-173 16s -29s linear infinite}@keyframes fall-173{47.279%{transform:translate(102.1913vw,47.279vh) scale(.5927)}to{transform:translate(100.7918vw,99vh) scale(.5927)}}.snow:nth-child(174){opacity:1.0446;transform:translate(93.2906vw,-10px) scale(.3654);animation:fall-174 27s -3s linear infinite}@keyframes fall-174{78.003%{transform:translate(90.7071vw,78.003vh) scale(.3654)}to{transform:translate(91.99885vw,99vh) scale(.3654)}}.snow:nth-child(175){opacity:.9258;transform:translate(14.7326vw,-10px) scale(.7621);animation:fall-175 20s -22s linear infinite}@keyframes fall-175{70.075%{transform:translate(18.7576vw,70.075vh) scale(.7621)}to{transform:translate(16.7451vw,99vh) scale(.7621)}}.snow:nth-child(176){opacity:.832;transform:translate(8.7149vw,-10px) scale(.1577);animation:fall-176 13s -30s linear infinite}@keyframes fall-176{30.608%{transform:translate(7.098vw,30.608vh) scale(.1577)}to{transform:translate(7.90645vw,99vh) scale(.1577)}}.snow:nth-child(177){opacity:.9594;transform:translate(17.4975vw,-10px) scale(.9804);animation:fall-177 29s -24s linear infinite}@keyframes fall-177{45.085%{transform:translate(21.5472vw,45.085vh) scale(.9804)}to{transform:translate(19.52235vw,99vh) scale(.9804)}}.snow:nth-child(178){opacity:1.7416;transform:translate(39.9903vw,-10px) scale(.6609);animation:fall-178 28s -4s linear infinite}@keyframes fall-178{53.654%{transform:translate(39.1426vw,53.654vh) scale(.6609)}to{transform:translate(39.56645vw,99vh) scale(.6609)}}.snow:nth-child(179){opacity:1.2732;transform:translate(78.083vw,-10px) scale(.1315);animation:fall-179 24s -5s linear infinite}@keyframes fall-179{58.977%{transform:translate(78.0617vw,58.977vh) scale(.1315)}to{transform:translate(78.07235vw,99vh) scale(.1315)}}.snow:nth-child(180){opacity:.2256;transform:translate(27.739vw,-10px) scale(.1834);animation:fall-180 19s -5s linear infinite}@keyframes fall-180{40.569%{transform:translate(23.1585vw,40.569vh) scale(.1834)}to{transform:translate(25.44875vw,99vh) scale(.1834)}}.snow:nth-child(181){opacity:.594;transform:translate(44.7136vw,-10px) scale(.0892);animation:fall-181 18s -30s linear infinite}@keyframes fall-181{49.809%{transform:translate(54.2153vw,49.809vh) scale(.0892)}to{transform:translate(49.46445vw,99vh) scale(.0892)}}.snow:nth-child(182){opacity:1.707;transform:translate(50.5028vw,-10px) scale(.2563);animation:fall-182 23s -28s linear infinite}@keyframes fall-182{56.817%{transform:translate(41.7049vw,56.817vh) scale(.2563)}to{transform:translate(46.10385vw,99vh) scale(.2563)}}.snow:nth-child(183){opacity:.0284;transform:translate(96.0901vw,-10px) scale(.2884);animation:fall-183 27s -1s linear infinite}@keyframes fall-183{64.079%{transform:translate(102.7927vw,64.079vh) scale(.2884)}to{transform:translate(99.4414vw,99vh) scale(.2884)}}.snow:nth-child(184){opacity:1.7198;transform:translate(82.8853vw,-10px) scale(.7333);animation:fall-184 25s -9s linear infinite}@keyframes fall-184{40.504%{transform:translate(75.0965vw,40.504vh) scale(.7333)}to{transform:translate(78.9909vw,99vh) scale(.7333)}}.snow:nth-child(185){opacity:1.846;transform:translate(97.3814vw,-10px) scale(.1324);animation:fall-185 11s -4s linear infinite}@keyframes fall-185{45.489%{transform:translate(99.3788vw,45.489vh) scale(.1324)}to{transform:translate(98.3801vw,99vh) scale(.1324)}}.snow:nth-child(186){opacity:.8278;transform:translate(38.9867vw,-10px) scale(.3881);animation:fall-186 14s -16s linear infinite}@keyframes fall-186{69.63%{transform:translate(32.6109vw,69.63vh) scale(.3881)}to{transform:translate(35.7988vw,99vh) scale(.3881)}}.snow:nth-child(187){opacity:1.576;transform:translate(25.5465vw,-10px) scale(.306);animation:fall-187 19s -15s linear infinite}@keyframes fall-187{47.536%{transform:translate(30.1942vw,47.536vh) scale(.306)}to{transform:translate(27.87035vw,99vh) scale(.306)}}.snow:nth-child(188){opacity:1.3732;transform:translate(52.999vw,-10px) scale(.5329);animation:fall-188 16s -20s linear infinite}@keyframes fall-188{49.395%{transform:translate(60.2045vw,49.395vh) scale(.5329)}to{transform:translate(56.60175vw,99vh) scale(.5329)}}.snow:nth-child(189){opacity:1.0836;transform:translate(95.6622vw,-10px) scale(.7349);animation:fall-189 14s -26s linear infinite}@keyframes fall-189{35.005%{transform:translate(105.6099vw,35.005vh) scale(.7349)}to{transform:translate(100.63605vw,99vh) scale(.7349)}}.snow:nth-child(190){opacity:1.9624;transform:translate(85.3053vw,-10px) scale(.4213);animation:fall-190 30s -25s linear infinite}@keyframes fall-190{76.154%{transform:translate(85.2122vw,76.154vh) scale(.4213)}to{transform:translate(85.25875vw,99vh) scale(.4213)}}.snow:nth-child(191){opacity:1.7198;transform:translate(51.2429vw,-10px) scale(.9427);animation:fall-191 17s -13s linear infinite}@keyframes fall-191{32.556%{transform:translate(55.8271vw,32.556vh) scale(.9427)}to{transform:translate(53.535vw,99vh) scale(.9427)}}.snow:nth-child(192){opacity:.5366;transform:translate(22.8527vw,-10px) scale(.112);animation:fall-192 23s -14s linear infinite}@keyframes fall-192{35.062%{transform:translate(26.0551vw,35.062vh) scale(.112)}to{transform:translate(24.4539vw,99vh) scale(.112)}}.snow:nth-child(193){opacity:.1778;transform:translate(68.1932vw,-10px) scale(.2724);animation:fall-193 10s -18s linear infinite}@keyframes fall-193{71.175%{transform:translate(77.8789vw,71.175vh) scale(.2724)}to{transform:translate(73.03605vw,99vh) scale(.2724)}}.snow:nth-child(194){opacity:1.681;transform:translate(66.2931vw,-10px) scale(.2474);animation:fall-194 26s -26s linear infinite}@keyframes fall-194{52.187%{transform:translate(72.6882vw,52.187vh) scale(.2474)}to{transform:translate(69.49065vw,99vh) scale(.2474)}}.snow:nth-child(195){opacity:1.6928;transform:translate(84.0035vw,-10px) scale(.3836);animation:fall-195 26s -12s linear infinite}@keyframes fall-195{63.547%{transform:translate(81.1473vw,63.547vh) scale(.3836)}to{transform:translate(82.5754vw,99vh) scale(.3836)}}.snow:nth-child(196){opacity:1.0494;transform:translate(54.4809vw,-10px) scale(.4405);animation:fall-196 10s -20s linear infinite}@keyframes fall-196{41.425%{transform:translate(51.621vw,41.425vh) scale(.4405)}to{transform:translate(53.05095vw,99vh) scale(.4405)}}.snow:nth-child(197){opacity:1.5528;transform:translate(96.266vw,-10px) scale(.3882);animation:fall-197 29s -28s linear infinite}@keyframes fall-197{62.778%{transform:translate(90.3701vw,62.778vh) scale(.3882)}to{transform:translate(93.31805vw,99vh) scale(.3882)}}.snow:nth-child(198){opacity:1.4898;transform:translate(69.5632vw,-10px) scale(.964);animation:fall-198 29s -8s linear infinite}@keyframes fall-198{43.426%{transform:translate(68.2024vw,43.426vh) scale(.964)}to{transform:translate(68.8828vw,99vh) scale(.964)}}.snow:nth-child(199){opacity:.4754;transform:translate(15.7072vw,-10px) scale(.409);animation:fall-199 22s -10s linear infinite}@keyframes fall-199{42.615%{transform:translate(13.8014vw,42.615vh) scale(.409)}to{transform:translate(14.7543vw,99vh) scale(.409)}}.snow:nth-child(200){opacity:1.7582;transform:translate(44.2594vw,-10px) scale(.2413);animation:fall-200 29s -28s linear infinite}@keyframes fall-200{57.039%{transform:translate(49.8492vw,57.039vh) scale(.2413)}to{transform:translate(47.0543vw,99vh) scale(.2413)}}.snow:nth-child(201){opacity:.0586;transform:translate(91.3394vw,-10px) scale(.3446);animation:fall-201 21s -30s linear infinite}@keyframes fall-201{70.778%{transform:translate(82.509vw,70.778vh) scale(.3446)}to{transform:translate(86.9242vw,99vh) scale(.3446)}}.snow:nth-child(202){opacity:.6616;transform:translate(80.6278vw,-10px) scale(.6361);animation:fall-202 14s -26s linear infinite}@keyframes fall-202{41.249%{transform:translate(87.2363vw,41.249vh) scale(.6361)}to{transform:translate(83.93205vw,99vh) scale(.6361)}}.snow:nth-child(203){opacity:1.295;transform:translate(11.2647vw,-10px) scale(.7847);animation:fall-203 13s -4s linear infinite}@keyframes fall-203{77.153%{transform:translate(7.7611vw,77.153vh) scale(.7847)}to{transform:translate(9.5129vw,99vh) scale(.7847)}}.snow:nth-child(204){opacity:.8166;transform:translate(45.7618vw,-10px) scale(.2423);animation:fall-204 18s -10s linear infinite}@keyframes fall-204{74.487%{transform:translate(41.6828vw,74.487vh) scale(.2423)}to{transform:translate(43.7223vw,99vh) scale(.2423)}}.snow:nth-child(205){opacity:1.5516;transform:translate(82.3656vw,-10px) scale(.2392);animation:fall-205 14s -2s linear infinite}@keyframes fall-205{32.405%{transform:translate(78.6556vw,32.405vh) scale(.2392)}to{transform:translate(80.5106vw,99vh) scale(.2392)}}.snow:nth-child(206){opacity:1.064;transform:translate(73.0543vw,-10px) scale(.0562);animation:fall-206 10s -18s linear infinite}@keyframes fall-206{78.681%{transform:translate(75.2837vw,78.681vh) scale(.0562)}to{transform:translate(74.169vw,99vh) scale(.0562)}}.snow:nth-child(207){opacity:.7014;transform:translate(94.716vw,-10px) scale(.4735);animation:fall-207 19s -23s linear infinite}@keyframes fall-207{77.125%{transform:translate(85.135vw,77.125vh) scale(.4735)}to{transform:translate(89.9255vw,99vh) scale(.4735)}}.snow:nth-child(208){opacity:.6716;transform:translate(80.2012vw,-10px) scale(.6549);animation:fall-208 19s -13s linear infinite}@keyframes fall-208{44.845%{transform:translate(84.3271vw,44.845vh) scale(.6549)}to{transform:translate(82.26415vw,99vh) scale(.6549)}}.snow:nth-child(209){opacity:1.3596;transform:translate(71.603vw,-10px) scale(.2645);animation:fall-209 24s -27s linear infinite}@keyframes fall-209{44.375%{transform:translate(81.0556vw,44.375vh) scale(.2645)}to{transform:translate(76.3293vw,99vh) scale(.2645)}}.snow:nth-child(210){opacity:.2794;transform:translate(43.4107vw,-10px) scale(.5459);animation:fall-210 11s -26s linear infinite}@keyframes fall-210{30.508%{transform:translate(49.2916vw,30.508vh) scale(.5459)}to{transform:translate(46.35115vw,99vh) scale(.5459)}}.snow:nth-child(211){opacity:.145;transform:translate(40.5491vw,-10px) scale(.2349);animation:fall-211 18s -18s linear infinite}@keyframes fall-211{58.906%{transform:translate(39.9227vw,58.906vh) scale(.2349)}to{transform:translate(40.2359vw,99vh) scale(.2349)}}.snow:nth-child(212){opacity:1.0076;transform:translate(1.3963vw,-10px) scale(.7896);animation:fall-212 24s -8s linear infinite}@keyframes fall-212{43.406%{transform:translate(-8.1194vw,43.406vh) scale(.7896)}to{transform:translate(-3.36155vw,99vh) scale(.7896)}}.snow:nth-child(213){opacity:1.6516;transform:translate(81.2147vw,-10px) scale(.1499);animation:fall-213 23s -21s linear infinite}@keyframes fall-213{71.238%{transform:translate(75.7591vw,71.238vh) scale(.1499)}to{transform:translate(78.4869vw,99vh) scale(.1499)}}.snow:nth-child(214){opacity:1.3416;transform:translate(71.4885vw,-10px) scale(.5643);animation:fall-214 18s -27s linear infinite}@keyframes fall-214{41.508%{transform:translate(81.0419vw,41.508vh) scale(.5643)}to{transform:translate(76.2652vw,99vh) scale(.5643)}}.snow:nth-child(215){opacity:.2442;transform:translate(9.592vw,-10px) scale(.2968);animation:fall-215 26s -15s linear infinite}@keyframes fall-215{75.372%{transform:translate(2.8221vw,75.372vh) scale(.2968)}to{transform:translate(6.20705vw,99vh) scale(.2968)}}.snow:nth-child(216){opacity:.156;transform:translate(40.5666vw,-10px) scale(.7229);animation:fall-216 15s -27s linear infinite}@keyframes fall-216{68.293%{transform:translate(38.4979vw,68.293vh) scale(.7229)}to{transform:translate(39.53225vw,99vh) scale(.7229)}}.snow:nth-child(217){opacity:1.1212;transform:translate(81.1159vw,-10px) scale(.0716);animation:fall-217 29s -30s linear infinite}@keyframes fall-217{56.855%{transform:translate(71.6109vw,56.855vh) scale(.0716)}to{transform:translate(76.3634vw,99vh) scale(.0716)}}.snow:nth-child(218){opacity:.7682;transform:translate(38.7682vw,-10px) scale(.9844);animation:fall-218 14s -28s linear infinite}@keyframes fall-218{38.587%{transform:translate(38.8623vw,38.587vh) scale(.9844)}to{transform:translate(38.81525vw,99vh) scale(.9844)}}.snow:nth-child(219){opacity:1.7014;transform:translate(15.6978vw,-10px) scale(.1521);animation:fall-219 21s -11s linear infinite}@keyframes fall-219{58.306%{transform:translate(16.5039vw,58.306vh) scale(.1521)}to{transform:translate(16.10085vw,99vh) scale(.1521)}}.snow:nth-child(220){opacity:.6004;transform:translate(4.6384vw,-10px) scale(.8649);animation:fall-220 22s -16s linear infinite}@keyframes fall-220{60.465%{transform:translate(1.5vw,60.465vh) scale(.8649)}to{transform:translate(3.0692vw,99vh) scale(.8649)}}.snow:nth-child(221){opacity:.0086;transform:translate(4.3077vw,-10px) scale(.109);animation:fall-221 12s -7s linear infinite}@keyframes fall-221{30.226%{transform:translate(-3.1302vw,30.226vh) scale(.109)}to{transform:translate(.58875vw,99vh) scale(.109)}}.snow:nth-child(222){opacity:1.2768;transform:translate(78.5926vw,-10px) scale(.3547);animation:fall-222 24s -17s linear infinite}@keyframes fall-222{30.313%{transform:translate(87.9271vw,30.313vh) scale(.3547)}to{transform:translate(83.25985vw,99vh) scale(.3547)}}.snow:nth-child(223){opacity:.5356;transform:translate(18.2256vw,-10px) scale(.9843);animation:fall-223 29s -18s linear infinite}@keyframes fall-223{76.709%{transform:translate(21.9778vw,76.709vh) scale(.9843)}to{transform:translate(20.1017vw,99vh) scale(.9843)}}.snow:nth-child(224){opacity:.2956;transform:translate(40.7329vw,-10px) scale(.7406);animation:fall-224 20s -15s linear infinite}@keyframes fall-224{30.501%{transform:translate(42.6619vw,30.501vh) scale(.7406)}to{transform:translate(41.6974vw,99vh) scale(.7406)}}.snow:nth-child(225){opacity:.0734;transform:translate(39.0503vw,-10px) scale(.4186);animation:fall-225 16s -15s linear infinite}@keyframes fall-225{72.485%{transform:translate(41.8379vw,72.485vh) scale(.4186)}to{transform:translate(40.4441vw,99vh) scale(.4186)}}.snow:nth-child(226){opacity:1.832;transform:translate(68.6992vw,-10px) scale(.8847);animation:fall-226 17s -20s linear infinite}@keyframes fall-226{42.142%{transform:translate(62.165vw,42.142vh) scale(.8847)}to{transform:translate(65.4321vw,99vh) scale(.8847)}}.snow:nth-child(227){opacity:1.648;transform:translate(71.3082vw,-10px) scale(.2069);animation:fall-227 22s -27s linear infinite}@keyframes fall-227{70.431%{transform:translate(68.3467vw,70.431vh) scale(.2069)}to{transform:translate(69.82745vw,99vh) scale(.2069)}}.snow:nth-child(228){opacity:1.7466;transform:translate(13.4286vw,-10px) scale(.9791);animation:fall-228 15s -24s linear infinite}@keyframes fall-228{37.101%{transform:translate(6.9616vw,37.101vh) scale(.9791)}to{transform:translate(10.1951vw,99vh) scale(.9791)}}.snow:nth-child(229){opacity:1.1236;transform:translate(58.1942vw,-10px) scale(.6744);animation:fall-229 10s -4s linear infinite}@keyframes fall-229{34.134%{transform:translate(58.8173vw,34.134vh) scale(.6744)}to{transform:translate(58.50575vw,99vh) scale(.6744)}}.snow:nth-child(230){opacity:.243;transform:translate(52.2738vw,-10px) scale(.5356);animation:fall-230 24s -29s linear infinite}@keyframes fall-230{76.753%{transform:translate(58.1938vw,76.753vh) scale(.5356)}to{transform:translate(55.2338vw,99vh) scale(.5356)}}.snow:nth-child(231){opacity:.5054;transform:translate(65.3517vw,-10px) scale(.5195);animation:fall-231 25s -13s linear infinite}@keyframes fall-231{67.754%{transform:translate(60.7586vw,67.754vh) scale(.5195)}to{transform:translate(63.05515vw,99vh) scale(.5195)}}.snow:nth-child(232){opacity:1.3026;transform:translate(62.0832vw,-10px) scale(.3479);animation:fall-232 22s -9s linear infinite}@keyframes fall-232{72.161%{transform:translate(62.0353vw,72.161vh) scale(.3479)}to{transform:translate(62.05925vw,99vh) scale(.3479)}}.snow:nth-child(233){opacity:1.4642;transform:translate(.8496vw,-10px) scale(.315);animation:fall-233 15s -8s linear infinite}@keyframes fall-233{79.337%{transform:translate(-4.6031vw,79.337vh) scale(.315)}to{transform:translate(-1.87675vw,99vh) scale(.315)}}.snow:nth-child(234){opacity:.8358;transform:translate(31.5577vw,-10px) scale(.8221);animation:fall-234 23s -4s linear infinite}@keyframes fall-234{46.679%{transform:translate(32.9964vw,46.679vh) scale(.8221)}to{transform:translate(32.27705vw,99vh) scale(.8221)}}.snow:nth-child(235){opacity:1.3688;transform:translate(3.4308vw,-10px) scale(.3952);animation:fall-235 20s -22s linear infinite}@keyframes fall-235{65.585%{transform:translate(1.2705vw,65.585vh) scale(.3952)}to{transform:translate(2.35065vw,99vh) scale(.3952)}}.snow:nth-child(236){opacity:1.6858;transform:translate(93.8769vw,-10px) scale(.9988);animation:fall-236 18s -14s linear infinite}@keyframes fall-236{46.044%{transform:translate(91.1513vw,46.044vh) scale(.9988)}to{transform:translate(92.5141vw,99vh) scale(.9988)}}.snow:nth-child(237){opacity:1.683;transform:translate(63.8202vw,-10px) scale(.7293);animation:fall-237 15s -18s linear infinite}@keyframes fall-237{69.093%{transform:translate(59.0656vw,69.093vh) scale(.7293)}to{transform:translate(61.4429vw,99vh) scale(.7293)}}.snow:nth-child(238){opacity:.697;transform:translate(74.908vw,-10px) scale(.212);animation:fall-238 23s -22s linear infinite}@keyframes fall-238{71.963%{transform:translate(74.7199vw,71.963vh) scale(.212)}to{transform:translate(74.81395vw,99vh) scale(.212)}}.snow:nth-child(239){opacity:1.5596;transform:translate(4.0468vw,-10px) scale(.4117);animation:fall-239 22s -21s linear infinite}@keyframes fall-239{32.486%{transform:translate(1.7865vw,32.486vh) scale(.4117)}to{transform:translate(2.91665vw,99vh) scale(.4117)}}.snow:nth-child(240){opacity:.6518;transform:translate(49.3504vw,-10px) scale(.5196);animation:fall-240 10s -28s linear infinite}@keyframes fall-240{63.8%{transform:translate(48.4904vw,63.8vh) scale(.5196)}to{transform:translate(48.9204vw,99vh) scale(.5196)}}.snow:nth-child(241){opacity:.082;transform:translate(34.563vw,-10px) scale(.7676);animation:fall-241 15s -28s linear infinite}@keyframes fall-241{62.688%{transform:translate(29.4846vw,62.688vh) scale(.7676)}to{transform:translate(32.0238vw,99vh) scale(.7676)}}.snow:nth-child(242){opacity:1.416;transform:translate(91.0523vw,-10px) scale(.8965);animation:fall-242 30s -17s linear infinite}@keyframes fall-242{55.412%{transform:translate(92.0078vw,55.412vh) scale(.8965)}to{transform:translate(91.53005vw,99vh) scale(.8965)}}.snow:nth-child(243){opacity:.7542;transform:translate(47.8145vw,-10px) scale(.8168);animation:fall-243 21s -4s linear infinite}@keyframes fall-243{63.804%{transform:translate(54.0644vw,63.804vh) scale(.8168)}to{transform:translate(50.93945vw,99vh) scale(.8168)}}.snow:nth-child(244){opacity:.7226;transform:translate(65.8544vw,-10px) scale(.9408);animation:fall-244 20s -4s linear infinite}@keyframes fall-244{45.44%{transform:translate(56.5762vw,45.44vh) scale(.9408)}to{transform:translate(61.2153vw,99vh) scale(.9408)}}.snow:nth-child(245){opacity:1.1172;transform:translate(35.1332vw,-10px) scale(.4946);animation:fall-245 16s -16s linear infinite}@keyframes fall-245{73.477%{transform:translate(40.4893vw,73.477vh) scale(.4946)}to{transform:translate(37.81125vw,99vh) scale(.4946)}}.snow:nth-child(246){opacity:1.0926;transform:translate(16.5594vw,-10px) scale(.6161);animation:fall-246 15s -17s linear infinite}@keyframes fall-246{36.199%{transform:translate(12.6191vw,36.199vh) scale(.6161)}to{transform:translate(14.58925vw,99vh) scale(.6161)}}.snow:nth-child(247){opacity:1.3948;transform:translate(19.1054vw,-10px) scale(.4608);animation:fall-247 22s -27s linear infinite}@keyframes fall-247{55.489%{transform:translate(14.2757vw,55.489vh) scale(.4608)}to{transform:translate(16.69055vw,99vh) scale(.4608)}}.snow:nth-child(248){opacity:.9812;transform:translate(27.9587vw,-10px) scale(.0895);animation:fall-248 17s -8s linear infinite}@keyframes fall-248{51.76%{transform:translate(23.5143vw,51.76vh) scale(.0895)}to{transform:translate(25.7365vw,99vh) scale(.0895)}}.snow:nth-child(249){opacity:1.465;transform:translate(.2276vw,-10px) scale(.9541);animation:fall-249 25s -22s linear infinite}@keyframes fall-249{72.64%{transform:translate(3.7048vw,72.64vh) scale(.9541)}to{transform:translate(1.9662vw,99vh) scale(.9541)}}.snow:nth-child(250){opacity:1.1198;transform:translate(36.8631vw,-10px) scale(.8964);animation:fall-250 15s -5s linear infinite}@keyframes fall-250{77.901%{transform:translate(39.5996vw,77.901vh) scale(.8964)}to{transform:translate(38.23135vw,99vh) scale(.8964)}}.snow:nth-child(251){opacity:.1038;transform:translate(27.0158vw,-10px) scale(.4422);animation:fall-251 16s -2s linear infinite}@keyframes fall-251{72.688%{transform:translate(21.2109vw,72.688vh) scale(.4422)}to{transform:translate(24.11335vw,99vh) scale(.4422)}}.snow:nth-child(252){opacity:.0232;transform:translate(97.3093vw,-10px) scale(.6023);animation:fall-252 24s -14s linear infinite}@keyframes fall-252{61.572%{transform:translate(91.8303vw,61.572vh) scale(.6023)}to{transform:translate(94.5698vw,99vh) scale(.6023)}}.snow:nth-child(253){opacity:.6574;transform:translate(18.001vw,-10px) scale(.866);animation:fall-253 30s -18s linear infinite}@keyframes fall-253{37.407%{transform:translate(9.2592vw,37.407vh) scale(.866)}to{transform:translate(13.6301vw,99vh) scale(.866)}}.snow:nth-child(254){opacity:1.4608;transform:translate(85.271vw,-10px) scale(.8293);animation:fall-254 22s -5s linear infinite}@keyframes fall-254{70.002%{transform:translate(79.7014vw,70.002vh) scale(.8293)}to{transform:translate(82.4862vw,99vh) scale(.8293)}}.snow:nth-child(255){opacity:1.1596;transform:translate(5.1156vw,-10px) scale(.2956);animation:fall-255 14s -12s linear infinite}@keyframes fall-255{37.153%{transform:translate(-.1134vw,37.153vh) scale(.2956)}to{transform:translate(2.5011vw,99vh) scale(.2956)}}.snow:nth-child(256){opacity:.827;transform:translate(80.1196vw,-10px) scale(.876);animation:fall-256 12s -18s linear infinite}@keyframes fall-256{46.227%{transform:translate(75.4824vw,46.227vh) scale(.876)}to{transform:translate(77.801vw,99vh) scale(.876)}}.snow:nth-child(257){opacity:.538;transform:translate(78.6498vw,-10px) scale(.1258);animation:fall-257 13s -13s linear infinite}@keyframes fall-257{66.637%{transform:translate(79.7386vw,66.637vh) scale(.1258)}to{transform:translate(79.1942vw,99vh) scale(.1258)}}.snow:nth-child(258){opacity:1.9784;transform:translate(75.3435vw,-10px) scale(.9979);animation:fall-258 14s -21s linear infinite}@keyframes fall-258{70.003%{transform:translate(75.1048vw,70.003vh) scale(.9979)}to{transform:translate(75.22415vw,99vh) scale(.9979)}}.snow:nth-child(259){opacity:1.9684;transform:translate(24.0015vw,-10px) scale(.7452);animation:fall-259 17s -28s linear infinite}@keyframes fall-259{56.172%{transform:translate(27.0896vw,56.172vh) scale(.7452)}to{transform:translate(25.54555vw,99vh) scale(.7452)}}.snow:nth-child(260){opacity:1.2208;transform:translate(24.0481vw,-10px) scale(.1125);animation:fall-260 10s -13s linear infinite}@keyframes fall-260{74.44%{transform:translate(30.3056vw,74.44vh) scale(.1125)}to{transform:translate(27.17685vw,99vh) scale(.1125)}}.snow:nth-child(261){opacity:1.187;transform:translate(25.8236vw,-10px) scale(.2643);animation:fall-261 27s -29s linear infinite}@keyframes fall-261{64.677%{transform:translate(20.4706vw,64.677vh) scale(.2643)}to{transform:translate(23.1471vw,99vh) scale(.2643)}}.snow:nth-child(262){opacity:1.0126;transform:translate(56.4092vw,-10px) scale(.1654);animation:fall-262 10s -15s linear infinite}@keyframes fall-262{40.339%{transform:translate(54.451vw,40.339vh) scale(.1654)}to{transform:translate(55.4301vw,99vh) scale(.1654)}}.snow:nth-child(263){opacity:.3224;transform:translate(61.7891vw,-10px) scale(.2522);animation:fall-263 19s -5s linear infinite}@keyframes fall-263{57.134%{transform:translate(58.3903vw,57.134vh) scale(.2522)}to{transform:translate(60.0897vw,99vh) scale(.2522)}}.snow:nth-child(264){opacity:.3836;transform:translate(97.1673vw,-10px) scale(.5966);animation:fall-264 14s -23s linear infinite}@keyframes fall-264{67.339%{transform:translate(92.5365vw,67.339vh) scale(.5966)}to{transform:translate(94.8519vw,99vh) scale(.5966)}}.snow:nth-child(265){opacity:1.4754;transform:translate(43.3869vw,-10px) scale(.0505);animation:fall-265 19s -6s linear infinite}@keyframes fall-265{68.276%{transform:translate(46.3722vw,68.276vh) scale(.0505)}to{transform:translate(44.87955vw,99vh) scale(.0505)}}.snow:nth-child(266){opacity:.582;transform:translate(25.573vw,-10px) scale(.2671);animation:fall-266 27s -27s linear infinite}@keyframes fall-266{57.555%{transform:translate(20.4017vw,57.555vh) scale(.2671)}to{transform:translate(22.98735vw,99vh) scale(.2671)}}.snow:nth-child(267){opacity:.815;transform:translate(18.5312vw,-10px) scale(.1844);animation:fall-267 22s -4s linear infinite}@keyframes fall-267{71.392%{transform:translate(12.7236vw,71.392vh) scale(.1844)}to{transform:translate(15.6274vw,99vh) scale(.1844)}}.snow:nth-child(268){opacity:1.836;transform:translate(29.8468vw,-10px) scale(.7657);animation:fall-268 15s -30s linear infinite}@keyframes fall-268{60.08%{transform:translate(24.993vw,60.08vh) scale(.7657)}to{transform:translate(27.4199vw,99vh) scale(.7657)}}.snow:nth-child(269){opacity:1.3586;transform:translate(12.6382vw,-10px) scale(.4236);animation:fall-269 17s -14s linear infinite}@keyframes fall-269{40.769%{transform:translate(3.8665vw,40.769vh) scale(.4236)}to{transform:translate(8.25235vw,99vh) scale(.4236)}}.snow:nth-child(270){opacity:1.8586;transform:translate(85.0906vw,-10px) scale(.5933);animation:fall-270 24s -27s linear infinite}@keyframes fall-270{46.581%{transform:translate(76.2946vw,46.581vh) scale(.5933)}to{transform:translate(80.6926vw,99vh) scale(.5933)}}.snow:nth-child(271){opacity:1.6252;transform:translate(73.2592vw,-10px) scale(.8951);animation:fall-271 30s -16s linear infinite}@keyframes fall-271{53.192%{transform:translate(69.5311vw,53.192vh) scale(.8951)}to{transform:translate(71.39515vw,99vh) scale(.8951)}}.snow:nth-child(272){opacity:.664;transform:translate(50.6385vw,-10px) scale(.735);animation:fall-272 16s -2s linear infinite}@keyframes fall-272{74.432%{transform:translate(46.8904vw,74.432vh) scale(.735)}to{transform:translate(48.76445vw,99vh) scale(.735)}}.snow:nth-child(273){opacity:.1222;transform:translate(18.9012vw,-10px) scale(.2488);animation:fall-273 17s -21s linear infinite}@keyframes fall-273{46.19%{transform:translate(12.0913vw,46.19vh) scale(.2488)}to{transform:translate(15.49625vw,99vh) scale(.2488)}}.snow:nth-child(274){opacity:1.8416;transform:translate(35.6354vw,-10px) scale(.2307);animation:fall-274 29s -5s linear infinite}@keyframes fall-274{57.481%{transform:translate(29.4458vw,57.481vh) scale(.2307)}to{transform:translate(32.5406vw,99vh) scale(.2307)}}.snow:nth-child(275){opacity:.832;transform:translate(34.0227vw,-10px) scale(.4407);animation:fall-275 18s -10s linear infinite}@keyframes fall-275{53.432%{transform:translate(35.7011vw,53.432vh) scale(.4407)}to{transform:translate(34.8619vw,99vh) scale(.4407)}}.snow:nth-child(276){opacity:.3264;transform:translate(58.8532vw,-10px) scale(.1546);animation:fall-276 21s -21s linear infinite}@keyframes fall-276{74.284%{transform:translate(53.6491vw,74.284vh) scale(.1546)}to{transform:translate(56.25115vw,99vh) scale(.1546)}}.snow:nth-child(277){opacity:.4118;transform:translate(52.1806vw,-10px) scale(.9417);animation:fall-277 11s -13s linear infinite}@keyframes fall-277{39.076%{transform:translate(46.7565vw,39.076vh) scale(.9417)}to{transform:translate(49.46855vw,99vh) scale(.9417)}}.snow:nth-child(278){opacity:1.916;transform:translate(11.4112vw,-10px) scale(.9534);animation:fall-278 19s -21s linear infinite}@keyframes fall-278{49.723%{transform:translate(21.1279vw,49.723vh) scale(.9534)}to{transform:translate(16.26955vw,99vh) scale(.9534)}}.snow:nth-child(279){opacity:.195;transform:translate(47.4824vw,-10px) scale(.4916);animation:fall-279 27s -16s linear infinite}@keyframes fall-279{57.606%{transform:translate(56.3374vw,57.606vh) scale(.4916)}to{transform:translate(51.9099vw,99vh) scale(.4916)}}.snow:nth-child(280){opacity:.3524;transform:translate(97.1955vw,-10px) scale(.5428);animation:fall-280 21s -25s linear infinite}@keyframes fall-280{77.491%{transform:translate(106.6974vw,77.491vh) scale(.5428)}to{transform:translate(101.94645vw,99vh) scale(.5428)}}.snow:nth-child(281){opacity:.411;transform:translate(65.895vw,-10px) scale(.5199);animation:fall-281 18s -27s linear infinite}@keyframes fall-281{51.658%{transform:translate(68.3492vw,51.658vh) scale(.5199)}to{transform:translate(67.1221vw,99vh) scale(.5199)}}.snow:nth-child(282){opacity:1.5896;transform:translate(89.5709vw,-10px) scale(.9253);animation:fall-282 20s -19s linear infinite}@keyframes fall-282{52.61%{transform:translate(90.0764vw,52.61vh) scale(.9253)}to{transform:translate(89.82365vw,99vh) scale(.9253)}}.snow:nth-child(283){opacity:.3438;transform:translate(54.9692vw,-10px) scale(.9715);animation:fall-283 23s -8s linear infinite}@keyframes fall-283{56.598%{transform:translate(56.4654vw,56.598vh) scale(.9715)}to{transform:translate(55.7173vw,99vh) scale(.9715)}}.snow:nth-child(284){opacity:.6762;transform:translate(35.63vw,-10px) scale(.7225);animation:fall-284 30s -17s linear infinite}@keyframes fall-284{46.847%{transform:translate(28.0222vw,46.847vh) scale(.7225)}to{transform:translate(31.8261vw,99vh) scale(.7225)}}.snow:nth-child(285){opacity:.9778;transform:translate(17.4778vw,-10px) scale(.474);animation:fall-285 10s -16s linear infinite}@keyframes fall-285{47.442%{transform:translate(23.0758vw,47.442vh) scale(.474)}to{transform:translate(20.2768vw,99vh) scale(.474)}}.snow:nth-child(286){opacity:.0028;transform:translate(24.0075vw,-10px) scale(.3922);animation:fall-286 20s -22s linear infinite}@keyframes fall-286{52.336%{transform:translate(24.8124vw,52.336vh) scale(.3922)}to{transform:translate(24.40995vw,99vh) scale(.3922)}}.snow:nth-child(287){opacity:.282;transform:translate(97.5395vw,-10px) scale(.5847);animation:fall-287 12s -5s linear infinite}@keyframes fall-287{59.077%{transform:translate(95.3793vw,59.077vh) scale(.5847)}to{transform:translate(96.4594vw,99vh) scale(.5847)}}.snow:nth-child(288){opacity:1.0286;transform:translate(40.0933vw,-10px) scale(.7397);animation:fall-288 18s -26s linear infinite}@keyframes fall-288{42.097%{transform:translate(39.4715vw,42.097vh) scale(.7397)}to{transform:translate(39.7824vw,99vh) scale(.7397)}}.snow:nth-child(289){opacity:1.2968;transform:translate(16.8962vw,-10px) scale(.5073);animation:fall-289 15s -9s linear infinite}@keyframes fall-289{69.825%{transform:translate(13.0617vw,69.825vh) scale(.5073)}to{transform:translate(14.97895vw,99vh) scale(.5073)}}.snow:nth-child(290){opacity:.7364;transform:translate(65.651vw,-10px) scale(.2863);animation:fall-290 18s -5s linear infinite}@keyframes fall-290{44.477%{transform:translate(59.0502vw,44.477vh) scale(.2863)}to{transform:translate(62.3506vw,99vh) scale(.2863)}}.snow:nth-child(291){opacity:1.4572;transform:translate(29.2901vw,-10px) scale(.7714);animation:fall-291 30s -24s linear infinite}@keyframes fall-291{47.671%{transform:translate(33.9318vw,47.671vh) scale(.7714)}to{transform:translate(31.61095vw,99vh) scale(.7714)}}.snow:nth-child(292){opacity:1.0532;transform:translate(55.121vw,-10px) scale(.1632);animation:fall-292 21s -25s linear infinite}@keyframes fall-292{52.735%{transform:translate(45.2757vw,52.735vh) scale(.1632)}to{transform:translate(50.19835vw,99vh) scale(.1632)}}.snow:nth-child(293){opacity:1.8292;transform:translate(36.7366vw,-10px) scale(.72);animation:fall-293 21s -21s linear infinite}@keyframes fall-293{53.349%{transform:translate(42.0131vw,53.349vh) scale(.72)}to{transform:translate(39.37485vw,99vh) scale(.72)}}.snow:nth-child(294){opacity:.6756;transform:translate(81.4388vw,-10px) scale(.9621);animation:fall-294 24s -26s linear infinite}@keyframes fall-294{64.66%{transform:translate(88.338vw,64.66vh) scale(.9621)}to{transform:translate(84.8884vw,99vh) scale(.9621)}}.snow:nth-child(295){opacity:1.0434;transform:translate(85.0465vw,-10px) scale(.2813);animation:fall-295 10s -26s linear infinite}@keyframes fall-295{69.535%{transform:translate(85.5868vw,69.535vh) scale(.2813)}to{transform:translate(85.31665vw,99vh) scale(.2813)}}.snow:nth-child(296){opacity:.9306;transform:translate(26.4149vw,-10px) scale(.9686);animation:fall-296 21s -15s linear infinite}@keyframes fall-296{66.272%{transform:translate(31.8352vw,66.272vh) scale(.9686)}to{transform:translate(29.12505vw,99vh) scale(.9686)}}.snow:nth-child(297){opacity:1.1418;transform:translate(55.626vw,-10px) scale(.6033);animation:fall-297 18s -25s linear infinite}@keyframes fall-297{71.375%{transform:translate(61.7229vw,71.375vh) scale(.6033)}to{transform:translate(58.67445vw,99vh) scale(.6033)}}.snow:nth-child(298){opacity:1.9638;transform:translate(74.3555vw,-10px) scale(.1208);animation:fall-298 26s -1s linear infinite}@keyframes fall-298{60.766%{transform:translate(65.6415vw,60.766vh) scale(.1208)}to{transform:translate(69.9985vw,99vh) scale(.1208)}}.snow:nth-child(299){opacity:.876;transform:translate(31.7436vw,-10px) scale(.0185);animation:fall-299 30s -6s linear infinite}@keyframes fall-299{59.888%{transform:translate(30.1451vw,59.888vh) scale(.0185)}to{transform:translate(30.94435vw,99vh) scale(.0185)}}.snow:nth-child(300){opacity:1.6456;transform:translate(41.2816vw,-10px) scale(.68);animation:fall-300 26s -7s linear infinite}@keyframes fall-300{47.674%{transform:translate(41.1002vw,47.674vh) scale(.68)}to{transform:translate(41.1909vw,99vh) scale(.68)}}.snow:nth-child(301){opacity:.7382;transform:translate(15.6782vw,-10px) scale(.9673);animation:fall-301 18s -12s linear infinite}@keyframes fall-301{40.522%{transform:translate(14.0834vw,40.522vh) scale(.9673)}to{transform:translate(14.8808vw,99vh) scale(.9673)}}.snow:nth-child(302){opacity:.22;transform:translate(71.7542vw,-10px) scale(.7085);animation:fall-302 11s -9s linear infinite}@keyframes fall-302{40.968%{transform:translate(81.6524vw,40.968vh) scale(.7085)}to{transform:translate(76.7033vw,99vh) scale(.7085)}}.snow:nth-child(303){opacity:1.5278;transform:translate(12.0804vw,-10px) scale(.0377);animation:fall-303 18s -12s linear infinite}@keyframes fall-303{62.26%{transform:translate(15.9262vw,62.26vh) scale(.0377)}to{transform:translate(14.0033vw,99vh) scale(.0377)}}.snow:nth-child(304){opacity:.7796;transform:translate(69.3567vw,-10px) scale(.5342);animation:fall-304 16s -30s linear infinite}@keyframes fall-304{79.399%{transform:translate(60.2753vw,79.399vh) scale(.5342)}to{transform:translate(64.816vw,99vh) scale(.5342)}}.snow:nth-child(305){opacity:.8774;transform:translate(3.5853vw,-10px) scale(.6085);animation:fall-305 16s -11s linear infinite}@keyframes fall-305{43.178%{transform:translate(3.3701vw,43.178vh) scale(.6085)}to{transform:translate(3.4777vw,99vh) scale(.6085)}}.snow:nth-child(306){opacity:1.1914;transform:translate(93.2858vw,-10px) scale(.1892);animation:fall-306 13s -16s linear infinite}@keyframes fall-306{68.642%{transform:translate(98.4915vw,68.642vh) scale(.1892)}to{transform:translate(95.88865vw,99vh) scale(.1892)}}.snow:nth-child(307){opacity:.533;transform:translate(76.0716vw,-10px) scale(.8939);animation:fall-307 14s -25s linear infinite}@keyframes fall-307{45.851%{transform:translate(79.3375vw,45.851vh) scale(.8939)}to{transform:translate(77.70455vw,99vh) scale(.8939)}}.snow:nth-child(308){opacity:.8978;transform:translate(59.4253vw,-10px) scale(.2833);animation:fall-308 24s -7s linear infinite}@keyframes fall-308{50.085%{transform:translate(62.4362vw,50.085vh) scale(.2833)}to{transform:translate(60.93075vw,99vh) scale(.2833)}}.snow:nth-child(309){opacity:.0324;transform:translate(40.3237vw,-10px) scale(.4597);animation:fall-309 30s -13s linear infinite}@keyframes fall-309{57.625%{transform:translate(38.2715vw,57.625vh) scale(.4597)}to{transform:translate(39.2976vw,99vh) scale(.4597)}}.snow:nth-child(310){opacity:1.6498;transform:translate(18.1656vw,-10px) scale(.6139);animation:fall-310 24s -23s linear infinite}@keyframes fall-310{32.395%{transform:translate(16.9401vw,32.395vh) scale(.6139)}to{transform:translate(17.55285vw,99vh) scale(.6139)}}.snow:nth-child(311){opacity:.1236;transform:translate(97.9465vw,-10px) scale(.7465);animation:fall-311 28s -17s linear infinite}@keyframes fall-311{37.436%{transform:translate(98.1947vw,37.436vh) scale(.7465)}to{transform:translate(98.0706vw,99vh) scale(.7465)}}.snow:nth-child(312){opacity:1.779;transform:translate(44.5958vw,-10px) scale(.869);animation:fall-312 11s -22s linear infinite}@keyframes fall-312{32.933%{transform:translate(36.1566vw,32.933vh) scale(.869)}to{transform:translate(40.3762vw,99vh) scale(.869)}}.snow:nth-child(313){opacity:.1836;transform:translate(34.0191vw,-10px) scale(.0995);animation:fall-313 10s -17s linear infinite}@keyframes fall-313{46.876%{transform:translate(33.1035vw,46.876vh) scale(.0995)}to{transform:translate(33.5613vw,99vh) scale(.0995)}}.snow:nth-child(314){opacity:1.3554;transform:translate(26.0746vw,-10px) scale(.634);animation:fall-314 29s -2s linear infinite}@keyframes fall-314{41.587%{transform:translate(27.3641vw,41.587vh) scale(.634)}to{transform:translate(26.71935vw,99vh) scale(.634)}}.snow:nth-child(315){opacity:1.3536;transform:translate(58.9357vw,-10px) scale(.5423);animation:fall-315 28s -12s linear infinite}@keyframes fall-315{39.689%{transform:translate(59.5593vw,39.689vh) scale(.5423)}to{transform:translate(59.2475vw,99vh) scale(.5423)}}.snow:nth-child(316){opacity:1.2254;transform:translate(51.0576vw,-10px) scale(.3795);animation:fall-316 25s -19s linear infinite}@keyframes fall-316{69.5%{transform:translate(49.0634vw,69.5vh) scale(.3795)}to{transform:translate(50.0605vw,99vh) scale(.3795)}}.snow:nth-child(317){opacity:1.2036;transform:translate(97.281vw,-10px) scale(.8813);animation:fall-317 11s -10s linear infinite}@keyframes fall-317{63.461%{transform:translate(99.2758vw,63.461vh) scale(.8813)}to{transform:translate(98.2784vw,99vh) scale(.8813)}}.snow:nth-child(318){opacity:.809;transform:translate(99.4606vw,-10px) scale(.5088);animation:fall-318 21s -1s linear infinite}@keyframes fall-318{55.175%{transform:translate(92.4412vw,55.175vh) scale(.5088)}to{transform:translate(95.9509vw,99vh) scale(.5088)}}.snow:nth-child(319){opacity:.382;transform:translate(68.2819vw,-10px) scale(.2856);animation:fall-319 21s -6s linear infinite}@keyframes fall-319{45.757%{transform:translate(69.6062vw,45.757vh) scale(.2856)}to{transform:translate(68.94405vw,99vh) scale(.2856)}}.snow:nth-child(320){opacity:1.5782;transform:translate(19.0042vw,-10px) scale(.2872);animation:fall-320 18s -26s linear infinite}@keyframes fall-320{76.894%{transform:translate(22.067vw,76.894vh) scale(.2872)}to{transform:translate(20.5356vw,99vh) scale(.2872)}}.snow:nth-child(321){opacity:1.4878;transform:translate(70.604vw,-10px) scale(.1025);animation:fall-321 27s -3s linear infinite}@keyframes fall-321{65.998%{transform:translate(78.21vw,65.998vh) scale(.1025)}to{transform:translate(74.407vw,99vh) scale(.1025)}}.snow:nth-child(322){opacity:1.1774;transform:translate(50.0251vw,-10px) scale(.7743);animation:fall-322 13s -12s linear infinite}@keyframes fall-322{46.407%{transform:translate(50.3727vw,46.407vh) scale(.7743)}to{transform:translate(50.1989vw,99vh) scale(.7743)}}.snow:nth-child(323){opacity:.3972;transform:translate(59.812vw,-10px) scale(.9365);animation:fall-323 11s -14s linear infinite}@keyframes fall-323{61.544%{transform:translate(63.1923vw,61.544vh) scale(.9365)}to{transform:translate(61.50215vw,99vh) scale(.9365)}}.snow:nth-child(324){opacity:1.0898;transform:translate(4.438vw,-10px) scale(.3309);animation:fall-324 25s -27s linear infinite}@keyframes fall-324{34.871%{transform:translate(1.9746vw,34.871vh) scale(.3309)}to{transform:translate(3.2063vw,99vh) scale(.3309)}}.snow:nth-child(325){opacity:1.2292;transform:translate(28.3074vw,-10px) scale(.2039);animation:fall-325 19s -18s linear infinite}@keyframes fall-325{76.497%{transform:translate(24.8077vw,76.497vh) scale(.2039)}to{transform:translate(26.55755vw,99vh) scale(.2039)}}.snow:nth-child(326){opacity:1.5718;transform:translate(60.8697vw,-10px) scale(.3124);animation:fall-326 13s -7s linear infinite}@keyframes fall-326{54.212%{transform:translate(58.4107vw,54.212vh) scale(.3124)}to{transform:translate(59.6402vw,99vh) scale(.3124)}}.snow:nth-child(327){opacity:1.8386;transform:translate(55.7833vw,-10px) scale(.9519);animation:fall-327 16s -12s linear infinite}@keyframes fall-327{76.022%{transform:translate(58.2177vw,76.022vh) scale(.9519)}to{transform:translate(57.0005vw,99vh) scale(.9519)}}.snow:nth-child(328){opacity:1.2832;transform:translate(84.5592vw,-10px) scale(.4695);animation:fall-328 13s -12s linear infinite}@keyframes fall-328{62.608%{transform:translate(85.5358vw,62.608vh) scale(.4695)}to{transform:translate(85.0475vw,99vh) scale(.4695)}}.snow:nth-child(329){opacity:.355;transform:translate(31.5606vw,-10px) scale(.4968);animation:fall-329 18s -23s linear infinite}@keyframes fall-329{36.155%{transform:translate(41.3314vw,36.155vh) scale(.4968)}to{transform:translate(36.446vw,99vh) scale(.4968)}}.snow:nth-child(330){opacity:1.7736;transform:translate(68.0036vw,-10px) scale(.7522);animation:fall-330 20s -27s linear infinite}@keyframes fall-330{67.756%{transform:translate(63.7682vw,67.756vh) scale(.7522)}to{transform:translate(65.8859vw,99vh) scale(.7522)}}.snow:nth-child(331){opacity:1.1838;transform:translate(9.4596vw,-10px) scale(.7469);animation:fall-331 13s -27s linear infinite}@keyframes fall-331{58.742%{transform:translate(10.4457vw,58.742vh) scale(.7469)}to{transform:translate(9.95265vw,99vh) scale(.7469)}}.snow:nth-child(332){opacity:1.1006;transform:translate(7.4721vw,-10px) scale(.3825);animation:fall-332 26s -3s linear infinite}@keyframes fall-332{54.545%{transform:translate(.3714vw,54.545vh) scale(.3825)}to{transform:translate(3.92175vw,99vh) scale(.3825)}}.snow:nth-child(333){opacity:1.9276;transform:translate(25.9252vw,-10px) scale(.1584);animation:fall-333 23s -15s linear infinite}@keyframes fall-333{47.545%{transform:translate(32.1348vw,47.545vh) scale(.1584)}to{transform:translate(29.03vw,99vh) scale(.1584)}}.snow:nth-child(334){opacity:.4512;transform:translate(59.6597vw,-10px) scale(.6665);animation:fall-334 19s -16s linear infinite}@keyframes fall-334{79.499%{transform:translate(53.1935vw,79.499vh) scale(.6665)}to{transform:translate(56.4266vw,99vh) scale(.6665)}}.snow:nth-child(335){opacity:1.3016;transform:translate(40.644vw,-10px) scale(.8986);animation:fall-335 25s -24s linear infinite}@keyframes fall-335{76.173%{transform:translate(49.5795vw,76.173vh) scale(.8986)}to{transform:translate(45.11175vw,99vh) scale(.8986)}}.snow:nth-child(336){opacity:1.551;transform:translate(71.9539vw,-10px) scale(.1595);animation:fall-336 23s -29s linear infinite}@keyframes fall-336{41.226%{transform:translate(63.5034vw,41.226vh) scale(.1595)}to{transform:translate(67.72865vw,99vh) scale(.1595)}}.snow:nth-child(337){opacity:1.9398;transform:translate(39.4236vw,-10px) scale(.1073);animation:fall-337 15s -16s linear infinite}@keyframes fall-337{71.655%{transform:translate(34.7862vw,71.655vh) scale(.1073)}to{transform:translate(37.1049vw,99vh) scale(.1073)}}.snow:nth-child(338){opacity:.826;transform:translate(97.2778vw,-10px) scale(.7336);animation:fall-338 22s -1s linear infinite}@keyframes fall-338{54.279%{transform:translate(93.0074vw,54.279vh) scale(.7336)}to{transform:translate(95.1426vw,99vh) scale(.7336)}}.snow:nth-child(339){opacity:.5026;transform:translate(44.6058vw,-10px) scale(.8334);animation:fall-339 24s -26s linear infinite}@keyframes fall-339{59.677%{transform:translate(48.3781vw,59.677vh) scale(.8334)}to{transform:translate(46.49195vw,99vh) scale(.8334)}}.snow:nth-child(340){opacity:1.2684;transform:translate(40.9033vw,-10px) scale(.0833);animation:fall-340 24s -17s linear infinite}@keyframes fall-340{41.025%{transform:translate(48.3223vw,41.025vh) scale(.0833)}to{transform:translate(44.6128vw,99vh) scale(.0833)}}.snow:nth-child(341){opacity:1.9842;transform:translate(60.636vw,-10px) scale(.7036);animation:fall-341 30s -25s linear infinite}@keyframes fall-341{77.906%{transform:translate(66.3075vw,77.906vh) scale(.7036)}to{transform:translate(63.47175vw,99vh) scale(.7036)}}.snow:nth-child(342){opacity:1.7768;transform:translate(13.0657vw,-10px) scale(.1545);animation:fall-342 27s -11s linear infinite}@keyframes fall-342{37.927%{transform:translate(10.0741vw,37.927vh) scale(.1545)}to{transform:translate(11.5699vw,99vh) scale(.1545)}}.snow:nth-child(343){opacity:.1118;transform:translate(55.3191vw,-10px) scale(.064);animation:fall-343 25s -29s linear infinite}@keyframes fall-343{74.637%{transform:translate(63.5148vw,74.637vh) scale(.064)}to{transform:translate(59.41695vw,99vh) scale(.064)}}.snow:nth-child(344){opacity:.0318;transform:translate(66.711vw,-10px) scale(.1836);animation:fall-344 18s -24s linear infinite}@keyframes fall-344{76.549%{transform:translate(66.9754vw,76.549vh) scale(.1836)}to{transform:translate(66.8432vw,99vh) scale(.1836)}}.snow:nth-child(345){opacity:.0464;transform:translate(35.9459vw,-10px) scale(.0065);animation:fall-345 11s -1s linear infinite}@keyframes fall-345{37.933%{transform:translate(28.2012vw,37.933vh) scale(.0065)}to{transform:translate(32.07355vw,99vh) scale(.0065)}}.snow:nth-child(346){opacity:1.7812;transform:translate(17.2039vw,-10px) scale(.8148);animation:fall-346 21s -30s linear infinite}@keyframes fall-346{67.81%{transform:translate(9.5185vw,67.81vh) scale(.8148)}to{transform:translate(13.3612vw,99vh) scale(.8148)}}.snow:nth-child(347){opacity:.8432;transform:translate(81.684vw,-10px) scale(.0083);animation:fall-347 25s -27s linear infinite}@keyframes fall-347{39.713%{transform:translate(87.0672vw,39.713vh) scale(.0083)}to{transform:translate(84.3756vw,99vh) scale(.0083)}}.snow:nth-child(348){opacity:.3238;transform:translate(15.7275vw,-10px) scale(.2433);animation:fall-348 17s -20s linear infinite}@keyframes fall-348{69.464%{transform:translate(22.6288vw,69.464vh) scale(.2433)}to{transform:translate(19.17815vw,99vh) scale(.2433)}}.snow:nth-child(349){opacity:1.4946;transform:translate(17.9379vw,-10px) scale(.7985);animation:fall-349 24s -12s linear infinite}@keyframes fall-349{35.075%{transform:translate(18.8287vw,35.075vh) scale(.7985)}to{transform:translate(18.3833vw,99vh) scale(.7985)}}.snow:nth-child(350){opacity:1.5138;transform:translate(48.0069vw,-10px) scale(.2317);animation:fall-350 25s -24s linear infinite}@keyframes fall-350{75.412%{transform:translate(46.9659vw,75.412vh) scale(.2317)}to{transform:translate(47.4864vw,99vh) scale(.2317)}}.snow:nth-child(351){opacity:1.8658;transform:translate(77.3145vw,-10px) scale(.6097);animation:fall-351 10s -24s linear infinite}@keyframes fall-351{33.408%{transform:translate(72.0164vw,33.408vh) scale(.6097)}to{transform:translate(74.66545vw,99vh) scale(.6097)}}.snow:nth-child(352){opacity:.8572;transform:translate(13.8517vw,-10px) scale(.3273);animation:fall-352 16s -19s linear infinite}@keyframes fall-352{52.781%{transform:translate(20.526vw,52.781vh) scale(.3273)}to{transform:translate(17.18885vw,99vh) scale(.3273)}}.snow:nth-child(353){opacity:1.8494;transform:translate(72.2664vw,-10px) scale(.1172);animation:fall-353 28s -12s linear infinite}@keyframes fall-353{33.82%{transform:translate(63.861vw,33.82vh) scale(.1172)}to{transform:translate(68.0637vw,99vh) scale(.1172)}}.snow:nth-child(354){opacity:1.2868;transform:translate(56.0869vw,-10px) scale(.4497);animation:fall-354 10s -20s linear infinite}@keyframes fall-354{34.171%{transform:translate(58.525vw,34.171vh) scale(.4497)}to{transform:translate(57.30595vw,99vh) scale(.4497)}}.snow:nth-child(355){opacity:1.8558;transform:translate(25.8627vw,-10px) scale(.4996);animation:fall-355 10s -6s linear infinite}@keyframes fall-355{48.885%{transform:translate(28.027vw,48.885vh) scale(.4996)}to{transform:translate(26.94485vw,99vh) scale(.4996)}}.snow:nth-child(356){opacity:1.2394;transform:translate(8.9985vw,-10px) scale(.2755);animation:fall-356 10s -22s linear infinite}@keyframes fall-356{54.986%{transform:translate(17.7865vw,54.986vh) scale(.2755)}to{transform:translate(13.3925vw,99vh) scale(.2755)}}.snow:nth-child(357){opacity:1.426;transform:translate(78.8652vw,-10px) scale(.4954);animation:fall-357 14s -7s linear infinite}@keyframes fall-357{55.308%{transform:translate(80.0628vw,55.308vh) scale(.4954)}to{transform:translate(79.464vw,99vh) scale(.4954)}}.snow:nth-child(358){opacity:1.0028;transform:translate(21.2056vw,-10px) scale(.271);animation:fall-358 25s -28s linear infinite}@keyframes fall-358{74.798%{transform:translate(26.2621vw,74.798vh) scale(.271)}to{transform:translate(23.73385vw,99vh) scale(.271)}}.snow:nth-child(359){opacity:.5242;transform:translate(1.4758vw,-10px) scale(.3612);animation:fall-359 15s -2s linear infinite}@keyframes fall-359{47.897%{transform:translate(-8.0636vw,47.897vh) scale(.3612)}to{transform:translate(-3.2939vw,99vh) scale(.3612)}}.snow:nth-child(360){opacity:.6814;transform:translate(65.1152vw,-10px) scale(.2127);animation:fall-360 15s -22s linear infinite}@keyframes fall-360{54.247%{transform:translate(59.9385vw,54.247vh) scale(.2127)}to{transform:translate(62.52685vw,99vh) scale(.2127)}}.snow:nth-child(361){opacity:1.8112;transform:translate(20.7828vw,-10px) scale(.9243);animation:fall-361 11s -23s linear infinite}@keyframes fall-361{64.6%{transform:translate(27.7573vw,64.6vh) scale(.9243)}to{transform:translate(24.27005vw,99vh) scale(.9243)}}.snow:nth-child(362){opacity:.0824;transform:translate(81.24vw,-10px) scale(.6693);animation:fall-362 11s -12s linear infinite}@keyframes fall-362{59.34%{transform:translate(81.2115vw,59.34vh) scale(.6693)}to{transform:translate(81.22575vw,99vh) scale(.6693)}}.snow:nth-child(363){opacity:1.6454;transform:translate(11.588vw,-10px) scale(.283);animation:fall-363 28s -18s linear infinite}@keyframes fall-363{73.449%{transform:translate(4.5209vw,73.449vh) scale(.283)}to{transform:translate(8.05445vw,99vh) scale(.283)}}.snow:nth-child(364){opacity:1.7692;transform:translate(50.7214vw,-10px) scale(.6049);animation:fall-364 20s -7s linear infinite}@keyframes fall-364{33.454%{transform:translate(58.2389vw,33.454vh) scale(.6049)}to{transform:translate(54.48015vw,99vh) scale(.6049)}}.snow:nth-child(365){opacity:.2054;transform:translate(65.7314vw,-10px) scale(.5587);animation:fall-365 17s -9s linear infinite}@keyframes fall-365{31.242%{transform:translate(68.6467vw,31.242vh) scale(.5587)}to{transform:translate(67.18905vw,99vh) scale(.5587)}}.snow:nth-child(366){opacity:1.09;transform:translate(.7294vw,-10px) scale(.3203);animation:fall-366 20s -18s linear infinite}@keyframes fall-366{54.661%{transform:translate(-7.6078vw,54.661vh) scale(.3203)}to{transform:translate(-3.4392vw,99vh) scale(.3203)}}.snow:nth-child(367){opacity:1.7516;transform:translate(6.2391vw,-10px) scale(.6463);animation:fall-367 20s -27s linear infinite}@keyframes fall-367{68.128%{transform:translate(.1659vw,68.128vh) scale(.6463)}to{transform:translate(3.2025vw,99vh) scale(.6463)}}.snow:nth-child(368){opacity:1.7492;transform:translate(8.3799vw,-10px) scale(.6361);animation:fall-368 12s -19s linear infinite}@keyframes fall-368{78.161%{transform:translate(11.629vw,78.161vh) scale(.6361)}to{transform:translate(10.00445vw,99vh) scale(.6361)}}.snow:nth-child(369){opacity:.567;transform:translate(33.7933vw,-10px) scale(.2953);animation:fall-369 13s -30s linear infinite}@keyframes fall-369{36.828%{transform:translate(38.5038vw,36.828vh) scale(.2953)}to{transform:translate(36.14855vw,99vh) scale(.2953)}}.snow:nth-child(370){opacity:1.4728;transform:translate(21.7931vw,-10px) scale(.9458);animation:fall-370 20s -5s linear infinite}@keyframes fall-370{45.486%{transform:translate(27.8915vw,45.486vh) scale(.9458)}to{transform:translate(24.8423vw,99vh) scale(.9458)}}.snow:nth-child(371){opacity:.2728;transform:translate(91.8051vw,-10px) scale(.4043);animation:fall-371 18s -23s linear infinite}@keyframes fall-371{48.079%{transform:translate(95.0778vw,48.079vh) scale(.4043)}to{transform:translate(93.44145vw,99vh) scale(.4043)}}.snow:nth-child(372){opacity:.9416;transform:translate(78.6142vw,-10px) scale(.6968);animation:fall-372 18s -5s linear infinite}@keyframes fall-372{56.043%{transform:translate(83.4087vw,56.043vh) scale(.6968)}to{transform:translate(81.01145vw,99vh) scale(.6968)}}.snow:nth-child(373){opacity:.3444;transform:translate(65.0083vw,-10px) scale(.5889);animation:fall-373 29s -8s linear infinite}@keyframes fall-373{30.826%{transform:translate(74.3272vw,30.826vh) scale(.5889)}to{transform:translate(69.66775vw,99vh) scale(.5889)}}.snow:nth-child(374){opacity:1.9022;transform:translate(4.9819vw,-10px) scale(.2676);animation:fall-374 15s -23s linear infinite}@keyframes fall-374{39.053%{transform:translate(-2.1578vw,39.053vh) scale(.2676)}to{transform:translate(1.41205vw,99vh) scale(.2676)}}.snow:nth-child(375){opacity:.1656;transform:translate(90.6376vw,-10px) scale(.5911);animation:fall-375 19s -1s linear infinite}@keyframes fall-375{50.326%{transform:translate(88.5651vw,50.326vh) scale(.5911)}to{transform:translate(89.60135vw,99vh) scale(.5911)}}.snow:nth-child(376){opacity:.3356;transform:translate(87.7848vw,-10px) scale(.0627);animation:fall-376 21s -5s linear infinite}@keyframes fall-376{32.844%{transform:translate(78.8552vw,32.844vh) scale(.0627)}to{transform:translate(83.32vw,99vh) scale(.0627)}}.snow:nth-child(377){opacity:1.913;transform:translate(29.8607vw,-10px) scale(.3987);animation:fall-377 16s -7s linear infinite}@keyframes fall-377{49.982%{transform:translate(29.8982vw,49.982vh) scale(.3987)}to{transform:translate(29.87945vw,99vh) scale(.3987)}}.snow:nth-child(378){opacity:1.5818;transform:translate(81.2096vw,-10px) scale(.6259);animation:fall-378 12s -9s linear infinite}@keyframes fall-378{73.608%{transform:translate(72.4867vw,73.608vh) scale(.6259)}to{transform:translate(76.84815vw,99vh) scale(.6259)}}.snow:nth-child(379){opacity:.5092;transform:translate(18.7939vw,-10px) scale(.8548);animation:fall-379 30s -29s linear infinite}@keyframes fall-379{71.076%{transform:translate(12.4962vw,71.076vh) scale(.8548)}to{transform:translate(15.64505vw,99vh) scale(.8548)}}.snow:nth-child(380){opacity:.2634;transform:translate(50.5044vw,-10px) scale(.3791);animation:fall-380 10s -30s linear infinite}@keyframes fall-380{41.947%{transform:translate(46.9315vw,41.947vh) scale(.3791)}to{transform:translate(48.71795vw,99vh) scale(.3791)}}.snow:nth-child(381){opacity:1.7414;transform:translate(2.5725vw,-10px) scale(.3063);animation:fall-381 17s -15s linear infinite}@keyframes fall-381{76.791%{transform:translate(6.9698vw,76.791vh) scale(.3063)}to{transform:translate(4.77115vw,99vh) scale(.3063)}}.snow:nth-child(382){opacity:.4292;transform:translate(46.2775vw,-10px) scale(.7496);animation:fall-382 19s -21s linear infinite}@keyframes fall-382{33.866%{transform:translate(49.3348vw,33.866vh) scale(.7496)}to{transform:translate(47.80615vw,99vh) scale(.7496)}}.snow:nth-child(383){opacity:.829;transform:translate(87.6106vw,-10px) scale(.7717);animation:fall-383 15s -16s linear infinite}@keyframes fall-383{78.931%{transform:translate(88.8734vw,78.931vh) scale(.7717)}to{transform:translate(88.242vw,99vh) scale(.7717)}}.snow:nth-child(384){opacity:1.147;transform:translate(71.2571vw,-10px) scale(.7194);animation:fall-384 17s -15s linear infinite}@keyframes fall-384{43.102%{transform:translate(64.7989vw,43.102vh) scale(.7194)}to{transform:translate(68.028vw,99vh) scale(.7194)}}.snow:nth-child(385){opacity:1.1316;transform:translate(3.4034vw,-10px) scale(.6741);animation:fall-385 28s -23s linear infinite}@keyframes fall-385{56.812%{transform:translate(4.0472vw,56.812vh) scale(.6741)}to{transform:translate(3.7253vw,99vh) scale(.6741)}}.snow:nth-child(386){opacity:.2516;transform:translate(92.1557vw,-10px) scale(.0513);animation:fall-386 18s -4s linear infinite}@keyframes fall-386{38.83%{transform:translate(95.6607vw,38.83vh) scale(.0513)}to{transform:translate(93.9082vw,99vh) scale(.0513)}}.snow:nth-child(387){opacity:1.6754;transform:translate(20.0342vw,-10px) scale(.85);animation:fall-387 28s -13s linear infinite}@keyframes fall-387{34.147%{transform:translate(14.5272vw,34.147vh) scale(.85)}to{transform:translate(17.2807vw,99vh) scale(.85)}}.snow:nth-child(388){opacity:1.672;transform:translate(58.1998vw,-10px) scale(.7134);animation:fall-388 14s -22s linear infinite}@keyframes fall-388{67.837%{transform:translate(64.8225vw,67.837vh) scale(.7134)}to{transform:translate(61.51115vw,99vh) scale(.7134)}}.snow:nth-child(389){opacity:1.8792;transform:translate(29.3673vw,-10px) scale(.3365);animation:fall-389 17s -24s linear infinite}@keyframes fall-389{64.869%{transform:translate(35.843vw,64.869vh) scale(.3365)}to{transform:translate(32.60515vw,99vh) scale(.3365)}}.snow:nth-child(390){opacity:1.476;transform:translate(63.6799vw,-10px) scale(.5485);animation:fall-390 16s -18s linear infinite}@keyframes fall-390{79.555%{transform:translate(56.4447vw,79.555vh) scale(.5485)}to{transform:translate(60.0623vw,99vh) scale(.5485)}}.snow:nth-child(391){opacity:.319;transform:translate(13.3877vw,-10px) scale(.0891);animation:fall-391 29s -3s linear infinite}@keyframes fall-391{49.087%{transform:translate(16.0784vw,49.087vh) scale(.0891)}to{transform:translate(14.73305vw,99vh) scale(.0891)}}.snow:nth-child(392){opacity:.356;transform:translate(88.8411vw,-10px) scale(.9509);animation:fall-392 29s -7s linear infinite}@keyframes fall-392{51.061%{transform:translate(96.8685vw,51.061vh) scale(.9509)}to{transform:translate(92.8548vw,99vh) scale(.9509)}}.snow:nth-child(393){opacity:.56;transform:translate(10.6405vw,-10px) scale(.7392);animation:fall-393 13s -6s linear infinite}@keyframes fall-393{73.262%{transform:translate(13.2038vw,73.262vh) scale(.7392)}to{transform:translate(11.92215vw,99vh) scale(.7392)}}.snow:nth-child(394){opacity:.049;transform:translate(52.9019vw,-10px) scale(.5972);animation:fall-394 24s -11s linear infinite}@keyframes fall-394{32.397%{transform:translate(50.2911vw,32.397vh) scale(.5972)}to{transform:translate(51.5965vw,99vh) scale(.5972)}}.snow:nth-child(395){opacity:.8514;transform:translate(81.1418vw,-10px) scale(.7673);animation:fall-395 23s -15s linear infinite}@keyframes fall-395{43.669%{transform:translate(75.1506vw,43.669vh) scale(.7673)}to{transform:translate(78.1462vw,99vh) scale(.7673)}}.snow:nth-child(396){opacity:.747;transform:translate(88.7736vw,-10px) scale(.5697);animation:fall-396 21s -16s linear infinite}@keyframes fall-396{64.111%{transform:translate(91.3689vw,64.111vh) scale(.5697)}to{transform:translate(90.07125vw,99vh) scale(.5697)}}.snow:nth-child(397){opacity:.8698;transform:translate(34.1828vw,-10px) scale(.9674);animation:fall-397 18s -20s linear infinite}@keyframes fall-397{55.543%{transform:translate(30.5561vw,55.543vh) scale(.9674)}to{transform:translate(32.36945vw,99vh) scale(.9674)}}.snow:nth-child(398){opacity:.0984;transform:translate(37.9638vw,-10px) scale(.7024);animation:fall-398 27s -27s linear infinite}@keyframes fall-398{39.484%{transform:translate(40.4761vw,39.484vh) scale(.7024)}to{transform:translate(39.21995vw,99vh) scale(.7024)}}.snow:nth-child(399){opacity:1.9174;transform:translate(2.8619vw,-10px) scale(.2694);animation:fall-399 30s -21s linear infinite}@keyframes fall-399{74.493%{transform:translate(1.2497vw,74.493vh) scale(.2694)}to{transform:translate(2.0558vw,99vh) scale(.2694)}}.snow:nth-child(400){opacity:1.08;transform:translate(13.7401vw,-10px) scale(.638);animation:fall-400 25s -27s linear infinite}@keyframes fall-400{32.751%{transform:translate(15.4684vw,32.751vh) scale(.638)}to{transform:translate(14.60425vw,99vh) scale(.638)}}\n"] }]
29
29
  }], ctorParameters: function () { return [{ type: i1.TokenService }, { type: i1.AppState }, { type: i2.Router }]; } });
30
30
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NvcmUvc3JjL2xpYi9hcHAuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vcHJvamVjdHMvY29yZS9zcmMvbGliL2FwcC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxVQUFVO0FBQ1YsT0FBTyxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFNN0Qsa01BQWtNO0FBT2xNLE1BQU0sT0FBTyxZQUFZO0lBTXJCLFlBQW9CLEdBQWlCLEVBQVMsTUFBZ0IsRUFBVSxNQUFjO1FBQWxFLFFBQUcsR0FBSCxHQUFHLENBQWM7UUFBUyxXQUFNLEdBQU4sTUFBTSxDQUFVO1FBQVUsV0FBTSxHQUFOLE1BQU0sQ0FBUTtRQUovRSxVQUFLLEdBQWEsRUFBRSxDQUFDO1FBRXJCLGdCQUFXLEdBQUcsQ0FBQyxDQUFTLEVBQUUsSUFBUyxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUM7UUFJaEQsSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLGFBQWE7WUFDekIsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDLEVBQUU7Z0JBQ3hCLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBRTNCLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLFlBQVksRUFBRTtZQUN4QixPQUFPLENBQUMsR0FBRyxDQUFDLHVEQUF1RCxDQUFDLENBQUE7WUFDcEUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxPQUFPLEVBQUUsRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLENBQUM7U0FDakU7SUFDTCxDQUFDOzt5R0FoQlEsWUFBWTs2RkFBWixZQUFZLGdEQ2R6Qix1TEFHK0I7MkZEV2xCLFlBQVk7a0JBTnhCLFNBQVM7K0JBQ0ksVUFBVSxpQkFDTCxpQkFBaUIsQ0FBQyxJQUFJIiwic291cmNlc0NvbnRlbnQiOlsiLy8gQW5ndWxhclxyXG5pbXBvcnQgeyBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSBcIkBhbmd1bGFyL3JvdXRlclwiO1xyXG5cclxuLy8gQ29uZmlndXJhemlvbmlcclxuaW1wb3J0IHsgQXBwU3RhdGUsIFRva2VuU2VydmljZSB9IGZyb20gXCJAZXNmYWVuemEvY29yZS9zZXJ2aWNlc1wiO1xyXG5cclxuLyogTi5COiBRdWVzdG8gY29tcG9uZW50ZSBub24gcHXDsiBkaXZlbnRhcmUgc3RhbmRhbG9uZS4gw4ggaWwgcHVudG8gZGkgaW5ncmVzc28gcGVyIGlsIGJvb3RzdHJhcCBkZWkgbW9kdWxpIGRpIEZyb250ZW5kLCBjaGUgTk9OIHNpIGJhc2FubyBzdWkgY29tcG9uZW50aSBzdGFuZGFsb25lIGEgbWVubyBkaSByYXJlIGZ1bnppb25hbGl0w6AgKi9cclxuQENvbXBvbmVudCh7XHJcbiAgICBzZWxlY3RvcjogJ2FwcC1yb290JyxcclxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbiAgICBzdHlsZVVybHM6IFtcIi4vYXBwLmNvbXBvbmVudC5zY3NzXCJdLFxyXG4gICAgdGVtcGxhdGVVcmw6ICcuL2FwcC5jb21wb25lbnQuaHRtbCdcclxufSlcclxuZXhwb3J0IGNsYXNzIEFwcENvbXBvbmVudCB7XHJcblxyXG4gICAgcHVibGljIHNub3dzOiBudW1iZXJbXSA9IFtdO1xyXG5cclxuICAgIHB1YmxpYyBzbm93VHJhY2tCeSA9IChfOiBudW1iZXIsIGl0ZW06IGFueSkgPT4gaXRlbTtcclxuXHJcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIGJ0czogVG9rZW5TZXJ2aWNlLCBwdWJsaWMgX3N0YXRlOiBBcHBTdGF0ZSwgcHJpdmF0ZSByb3V0ZXI6IFJvdXRlcikge1xyXG5cclxuICAgICAgICBpZiAodGhpcy5fc3RhdGUuY2hyaXN0bWFzVGltZSlcclxuICAgICAgICAgICAgZm9yIChsZXQgaSA9IDA7IGkgPCA0MDA7IGkrKylcclxuICAgICAgICAgICAgICAgIHRoaXMuc25vd3MucHVzaChpKTtcclxuXHJcbiAgICAgICAgaWYgKCF0aGlzLmJ0cy5hY2NvdW50U2NvcGUpIHtcclxuICAgICAgICAgICAgY29uc29sZS5sb2coXCJBcHBDb21wb25lbnQgLSBubyBhY2NvdW50IHNjb3BlLCByZWRpcmVjdGluZyB0byBsb2dpblwiKVxyXG4gICAgICAgICAgICB0aGlzLnJvdXRlci5uYXZpZ2F0ZShbXCJsb2dpblwiLCB7IGZyb21Vcmw6IHRoaXMucm91dGVyLnVybCB9XSk7XHJcbiAgICAgICAgfVxyXG4gICAgfVxyXG59IiwiPG5nLWNvbnRhaW5lciAqbmdJZj1cIl9zdGF0ZS5jaHJpc3RtYXNUaW1lXCI+XHJcbiAgICA8ZGl2ICpuZ0Zvcj1cImxldCBpIG9mIHNub3dzOyB0cmFja0J5OiBzbm93VHJhY2tCeVwiIGNsYXNzPVwic25vd1wiPjwvZGl2PlxyXG48L25nLWNvbnRhaW5lcj5cclxuPHJvdXRlci1vdXRsZXQ+PC9yb3V0ZXItb3V0bGV0PiJdfQ==