@progressio_resources/gravity-design-system 1.0.5 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/esm2020/lib/components/gravity-button/gravity-button.component.mjs +22 -0
  2. package/esm2020/lib/components/gravity-calendar/gravity-calendar.component.mjs +90 -0
  3. package/esm2020/lib/components/gravity-checkbox/gravity-checkbox.component.mjs +23 -0
  4. package/esm2020/lib/components/gravity-dropdown-list/gravity-dropdown-list.component.mjs +43 -0
  5. package/esm2020/lib/components/gravity-radio-button/gravity-radio-button.component.mjs +30 -0
  6. package/esm2020/lib/components/gravity-switch/gravity-switch.component.mjs +17 -0
  7. package/esm2020/lib/components/gravity-text-field/gravity-text-field.component.mjs +62 -0
  8. package/esm2020/lib/gravity-design-system.module.mjs +76 -6
  9. package/esm2020/lib/vendor/gravity-tooltip/gravity-tooltip.component.mjs +205 -0
  10. package/esm2020/lib/vendor/gravity-tooltip/gravity-tooltip.directive.mjs +480 -0
  11. package/esm2020/lib/vendor/gravity-tooltip/gravity-tooltip.module.mjs +41 -0
  12. package/esm2020/lib/vendor/gravity-tooltip/index.mjs +4 -0
  13. package/esm2020/lib/vendor/gravity-tooltip/options.interface.mjs +2 -0
  14. package/esm2020/lib/vendor/gravity-tooltip/options.mjs +38 -0
  15. package/esm2020/lib/vendor/gravity-tooltip/options.service.mjs +7 -0
  16. package/esm2020/public-api.mjs +11 -3
  17. package/fesm2015/progressio_resources-gravity-design-system.mjs +1085 -28
  18. package/fesm2015/progressio_resources-gravity-design-system.mjs.map +1 -1
  19. package/fesm2020/progressio_resources-gravity-design-system.mjs +1083 -28
  20. package/fesm2020/progressio_resources-gravity-design-system.mjs.map +1 -1
  21. package/lib/components/gravity-button/gravity-button.component.d.ts +17 -0
  22. package/lib/components/gravity-calendar/gravity-calendar.component.d.ts +40 -0
  23. package/lib/components/gravity-checkbox/gravity-checkbox.component.d.ts +8 -0
  24. package/lib/components/gravity-dropdown-list/gravity-dropdown-list.component.d.ts +36 -0
  25. package/lib/components/gravity-radio-button/gravity-radio-button.component.d.ts +13 -0
  26. package/lib/components/gravity-switch/gravity-switch.component.d.ts +6 -0
  27. package/lib/components/gravity-text-field/gravity-text-field.component.d.ts +35 -0
  28. package/lib/gravity-design-system.module.d.ts +16 -2
  29. package/lib/vendor/gravity-tooltip/gravity-tooltip.component.d.ts +42 -0
  30. package/lib/vendor/gravity-tooltip/gravity-tooltip.directive.d.ts +112 -0
  31. package/lib/vendor/gravity-tooltip/gravity-tooltip.module.d.ts +12 -0
  32. package/lib/vendor/gravity-tooltip/index.d.ts +3 -0
  33. package/lib/vendor/gravity-tooltip/options.d.ts +24 -0
  34. package/lib/vendor/gravity-tooltip/options.interface.d.ts +40 -0
  35. package/lib/vendor/gravity-tooltip/options.service.d.ts +7 -0
  36. package/package.json +9 -2
  37. package/public-api.d.ts +8 -2
  38. package/src/lib/assets/icons/calendar.svg +14 -0
  39. package/src/lib/assets/icons/check.svg +3 -0
  40. package/src/lib/assets/icons/copy.svg +8 -0
  41. package/src/lib/assets/icons/download.svg +7 -0
  42. package/src/lib/assets/icons/edit.svg +8 -0
  43. package/src/lib/assets/icons/eye_closed.svg +8 -0
  44. package/src/lib/assets/icons/eye_open.svg +6 -0
  45. package/src/lib/assets/icons/forgot_password.svg +7 -0
  46. package/src/lib/assets/icons/lock.svg +6 -0
  47. package/src/lib/assets/icons/logout.svg +9 -0
  48. package/src/lib/assets/icons/mail.svg +6 -0
  49. package/src/lib/assets/icons/radio-off.svg +3 -0
  50. package/src/lib/assets/icons/radio-on.svg +3 -0
  51. package/src/lib/assets/icons/search.svg +8 -0
  52. package/src/lib/assets/icons/settings.svg +12 -0
  53. package/src/lib/assets/icons/show_less.svg +6 -0
  54. package/src/lib/assets/icons/show_more.svg +6 -0
  55. package/src/lib/assets/icons/uncheck.svg +3 -0
  56. package/src/lib/assets/icons/user.svg +6 -0
  57. package/src/lib/assets/icons/x.svg +6 -0
  58. package/src/lib/assets/json/icons.json +91 -0
  59. package/src/lib/styles/_card_highlight.scss +40 -0
  60. package/src/lib/styles/_datepicker.scss +101 -0
  61. package/src/lib/styles/_icons.scss +11 -0
  62. package/src/lib/styles/_link.scss +25 -0
  63. package/src/lib/styles/_shared.scss +19 -0
  64. package/src/lib/styles/fundamentals/colors/themes/_hero.theme.scss +253 -195
  65. package/src/lib/styles/fundamentals/colors/tokens/_hero.tokens.scss +307 -194
  66. package/src/lib/styles/fundamentals/typography/_hero.typography.scss +0 -1
  67. package/src/lib/styles/gravity-design-system.scss +7 -0
  68. package/src/lib/styles/overwrite/pretty-checkbox/_core.scss +120 -0
  69. package/src/lib/styles/overwrite/pretty-checkbox/_variables.scss +39 -0
  70. package/src/lib/styles/overwrite/pretty-checkbox/elements/default/_outline.scss +41 -0
  71. package/src/lib/styles/overwrite/pretty-checkbox/elements/switch/_fill.scss +7 -0
  72. package/src/lib/styles/overwrite/pretty-checkbox/elements/switch/_general.scss +47 -0
  73. package/src/lib/styles/overwrite/pretty-checkbox/elements/switch/_mixin.scss +15 -0
  74. package/src/lib/styles/overwrite/pretty-checkbox/pretty-checkbox.scss +29 -0
  75. package/src/lib/vendor/gravity-tooltip/gravity-tooltip.component.html +9 -0
  76. package/src/lib/vendor/gravity-tooltip/gravity-tooltip.component.sass +134 -0
  77. package/src/lib/vendor/gravity-tooltip/gravity-tooltip.component.ts +215 -0
  78. package/src/lib/vendor/gravity-tooltip/gravity-tooltip.directive.ts +506 -0
  79. package/src/lib/vendor/gravity-tooltip/gravity-tooltip.module.ts +33 -0
  80. package/src/lib/vendor/gravity-tooltip/index.ts +3 -0
  81. package/src/lib/vendor/gravity-tooltip/options.interface.ts +37 -0
  82. package/src/lib/vendor/gravity-tooltip/options.service.ts +8 -0
  83. package/src/lib/vendor/gravity-tooltip/options.ts +38 -0
  84. package/esm2020/lib/gravity-design-system.component.mjs +0 -19
  85. package/esm2020/lib/gravity-design-system.service.mjs +0 -11
  86. package/lib/gravity-design-system.component.d.ts +0 -5
  87. package/lib/gravity-design-system.service.d.ts +0 -5
@@ -0,0 +1,40 @@
1
+ export interface TooltipOptions {
2
+ 'placement'?: string;
3
+ 'autoPlacement'?: boolean;
4
+ 'content-type'?: 'string' | 'html' | 'template';
5
+ 'contentType'?: 'string' | 'html' | 'template';
6
+ 'delay'?: number;
7
+ 'show-delay'?: number;
8
+ 'showDelay'?: number;
9
+ 'hide-delay'?: number;
10
+ 'hideDelay'?: number;
11
+ 'hide-delay-mobile'?: number;
12
+ 'hideDelayMobile'?: number;
13
+ 'hideDelayTouchscreen'?: number;
14
+ 'z-index'?: number;
15
+ 'zIndex'?: number;
16
+ 'animation-duration'?: number;
17
+ 'animationDuration'?: number;
18
+ 'animation-duration-default'?: number;
19
+ 'animationDurationDefault'?: number;
20
+ 'trigger'?: string;
21
+ 'tooltip-class'?: string;
22
+ 'tooltipClass'?: string;
23
+ 'display'?: boolean;
24
+ 'display-mobile'?: boolean;
25
+ 'displayMobile'?: boolean;
26
+ 'displayTouchscreen'?: boolean;
27
+ 'shadow'?: boolean;
28
+ 'theme'?: "dark" | "light";
29
+ 'offset'?: number;
30
+ 'width'?: string;
31
+ 'max-width'?: string;
32
+ 'maxWidth'?: string;
33
+ 'id'?: string | number;
34
+ 'hideDelayAfterClick'?: number;
35
+ 'pointerEvents'?: 'auto' | 'none';
36
+ 'position'?: {
37
+ top: number;
38
+ left: number;
39
+ };
40
+ }
@@ -0,0 +1,7 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { TooltipOptions } from './options.interface';
3
+ /**
4
+ * This is not a real service, but it looks like it from the outside.
5
+ * It's just an InjectionToken used to import the config (initOptions) object, provided from the outside
6
+ */
7
+ export declare const TooltipOptionsService: InjectionToken<TooltipOptions>;
package/package.json CHANGED
@@ -1,11 +1,18 @@
1
1
  {
2
2
  "name": "@progressio_resources/gravity-design-system",
3
3
  "description": "Gravity Design System",
4
- "version": "1.0.5",
4
+ "version": "1.0.7",
5
5
  "license": "SEE LICENSE IN LIBRARY-LICENSE",
6
6
  "peerDependencies": {
7
7
  "@angular/common": "^15.1.0",
8
- "@angular/core": "^15.1.0"
8
+ "@angular/core": "^15.1.0",
9
+ "@angular/localize": "^15.1.5",
10
+ "@ng-bootstrap/ng-bootstrap": "^14.2.0",
11
+ "@ng-select/ng-select": "^10.0.4",
12
+ "angular-svg-icon": "^15.0.0",
13
+ "angular-svg-icon-preloader": "^5.0.0",
14
+ "ngx-pretty-checkbox": "^15.1.0",
15
+ "pretty-checkbox": "^3.0.3"
9
16
  },
10
17
  "dependencies": {
11
18
  "tslib": "^2.3.0"
package/public-api.d.ts CHANGED
@@ -1,3 +1,9 @@
1
- export * from './lib/gravity-design-system.service';
2
- export * from './lib/gravity-design-system.component';
3
1
  export * from './lib/gravity-design-system.module';
2
+ export * from './lib/components/gravity-button/gravity-button.component';
3
+ export * from './lib/components/gravity-calendar/gravity-calendar.component';
4
+ export * from './lib/components/gravity-checkbox/gravity-checkbox.component';
5
+ export * from './lib/components/gravity-dropdown-list/gravity-dropdown-list.component';
6
+ export * from './lib/components/gravity-radio-button/gravity-radio-button.component';
7
+ export * from './lib/components/gravity-switch/gravity-switch.component';
8
+ export * from './lib/components/gravity-text-field/gravity-text-field.component';
9
+ export * from './lib/vendor/gravity-tooltip';
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16.668" height="18.333" viewBox="0 0 16.668 18.333">
2
+ <g transform="translate(0 1.666)">
3
+ <path d="M65.77,39.657h-11a2.837,2.837,0,0,1-2.834-2.834v-11A2.837,2.837,0,0,1,54.77,22.99h11A2.837,2.837,0,0,1,68.6,25.823v11A2.837,2.837,0,0,1,65.77,39.657Zm-11-15A1.167,1.167,0,0,0,53.6,25.823v11A1.167,1.167,0,0,0,54.77,37.99h11a1.168,1.168,0,0,0,1.166-1.167v-11a1.167,1.167,0,0,0-1.166-1.166Z" transform="translate(-51.936 -22.99)" fill="var(--icon-color, #888)"/>
4
+ </g>
5
+ <g transform="translate(10.833)">
6
+ <path d="M63.6,26.324a.834.834,0,0,1-.834-.834V22.157a.834.834,0,0,1,1.668,0V25.49A.834.834,0,0,1,63.6,26.324Z" transform="translate(-62.769 -21.324)" fill="var(--icon-color, #888)"/>
7
+ </g>
8
+ <g transform="translate(4.167)">
9
+ <path d="M56.937,26.324a.834.834,0,0,1-.834-.834V22.157a.834.834,0,0,1,1.668,0V25.49A.835.835,0,0,1,56.937,26.324Z" transform="translate(-56.103 -21.324)" fill="var(--icon-color, #888)"/>
10
+ </g>
11
+ <g transform="translate(0 6.666)">
12
+ <path d="M67.77,29.657h-15a.834.834,0,1,1,0-1.667h15a.834.834,0,1,1,0,1.667Z" transform="translate(-51.936 -27.99)" fill="var(--icon-color, #888)"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="17.641" height="13.755" viewBox="0 0 17.641 13.755">
2
+ <path d="M5.251,12.755a.731.731,0,0,1-.531-.233L.219,7.738a.834.834,0,0,1,0-1.127.72.72,0,0,1,1.061,0L5.249,10.83l9.97-10.6a.72.72,0,0,1,1.061,0,.834.834,0,0,1,0,1.127L5.779,12.522a.725.725,0,0,1-.531.233Z" transform="translate(0.571 0.5)" fill="var(--icon-color, #888)" stroke="var(--icon-color, #888)" stroke-miterlimit="10" stroke-width="1"/>
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12">
2
+ <g transform="translate(1.29 2.499)">
3
+ <rect width="6.5" height="6.5" rx="2" transform="translate(3.21 2.001)" fill="none" stroke="var(--icon-color, #888)"
4
+ stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
5
+ <path d="M2.5,7.5H2a1,1,0,0,1-1-1V2A1,1,0,0,1,2,1H6.5a1,1,0,0,1,1,1v.5" transform="translate(-1.29 -2.499)"
6
+ fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="20.206" height="16.695" viewBox="0 0 20.206 16.695">
2
+ <g transform="translate(1.428 0.86)">
3
+ <path d="M6.667,14.167,10,17.5l3.333-3.333" transform="translate(-1.29 -2.499)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
4
+ <line y2="7.5" transform="translate(8.71 7.501)" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
5
+ <path d="M17.4,15.075A4.167,4.167,0,0,0,15,7.5H13.95A6.667,6.667,0,1,0,2.5,13.575" transform="translate(-1.29 -2.499)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
2
+ <g transform="translate(1.29 2.499)">
3
+ <path d="M10,15.833,15.833,10l2.5,2.5L12.5,18.333Z" transform="translate(-1.29 -2.499)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
4
+ <path d="M15,10.833l-1.25-6.25L1.667,1.667,4.583,13.75,10.833,15Z" transform="translate(-1.29 -2.499)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
5
+ <path d="M1.667,1.667,7.988,7.988" transform="translate(-1.29 -2.499)" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
6
+ <circle cx="1.667" cy="1.667" r="1.667" transform="translate(6.21 5.001)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="21.162" height="21.162" viewBox="0 0 21.162 21.162">
2
+ <g transform="translate(0.581 0.581)">
3
+ <g transform="translate(1.29 2.499)">
4
+ <path d="M14.95,14.95A8.4,8.4,0,0,1,10,16.667C4.167,16.667.833,10,.833,10A15.389,15.389,0,0,1,5.05,5.05m3.2-1.517a7.639,7.639,0,0,1,1.75-.2c5.833,0,9.167,6.667,9.167,6.667a15.427,15.427,0,0,1-1.8,2.658m-5.6-.891A2.5,2.5,0,1,1,8.233,8.233" transform="translate(-1.29 -2.499)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
5
+ <line x2="18.333" y2="18.333" transform="translate(-0.457 -1.666)" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="19.581" height="14.786" viewBox="0 0 19.581 14.786">
2
+ <g transform="translate(-0.5 -5)">
3
+ <path d="M1.5,12.393S4.7,6,10.291,6s8.791,6.393,8.791,6.393-3.2,6.393-8.791,6.393S1.5,12.393,1.5,12.393Z" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
4
+ <path d="M18.295,15.9a2.4,2.4,0,1,1-2.4-2.4A2.4,2.4,0,0,1,18.295,15.9Z" transform="translate(-5.607 -3.504)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
2
+ <g transform="translate(-1 -1)">
3
+ <circle cx="6.667" cy="6.667" r="6.667" transform="translate(2.333 2.333)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"/>
4
+ <path d="M6.06,6a2,2,0,0,1,3.887.667c0,1.333-2,2-2,2" transform="translate(1 1)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"/>
5
+ <line x2="0.007" transform="translate(9 12.333)" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.333"/>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="14" height="17.678" viewBox="0 0 14 17.678">
2
+ <g transform="translate(1 0.734)">
3
+ <path d="M10,8.5H2A2.066,2.066,0,0,1,0,6.377V0H12V6.377A2.066,2.066,0,0,1,10,8.5Z" transform="translate(0 7.44)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
4
+ <path d="M0,5.846A5.681,5.681,0,0,1,5.5,0,5.681,5.681,0,0,1,11,5.846" transform="translate(0.5 0.266)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
2
+ <g transform="translate(0.312 0.312)">
3
+ <g transform="translate(2.422 2.422)">
4
+ <path d="M7.344,17.033H4.115A1.615,1.615,0,0,1,2.5,15.417V4.115A1.615,1.615,0,0,1,4.115,2.5H7.344" transform="translate(-2.5 -2.5)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
5
+ <path d="M13.333,13.907,17.37,9.87,13.333,5.833" transform="translate(-2.838 -2.604)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
6
+ <line x1="9.688" transform="translate(4.844 7.266)" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
7
+ </g>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="18.039" height="14.203" viewBox="0 0 18.039 14.203">
2
+ <g transform="translate(-1.607 -5)">
3
+ <path d="M4.525,6h12.2a1.53,1.53,0,0,1,1.525,1.525v9.152A1.53,1.53,0,0,1,16.728,18.2H4.525A1.53,1.53,0,0,1,3,16.677V7.525A1.53,1.53,0,0,1,4.525,6Z" transform="translate(0 0)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
4
+ <path d="M18.253,9l-7.627,5.339L3,9" transform="translate(0 -1.475)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="2.5" y="2.5" width="43" height="43" rx="21.5" stroke="var(--radio-button-on-primary, red)" stroke-width="5"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="28" height="28" rx="14" fill="var(--radio-button-off-primary, red)"/>
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
2
+ <g transform="translate(1.29 2.499)">
3
+ <circle cx="6.667" cy="6.667" r="6.667" transform="translate(1.21 0.001)" fill="none" stroke="var(--icon-color, #888)"
4
+ stroke-linecap="round" stroke-linejoin="round" stroke-width="1.667"/>
5
+ <line x1="3.625" y1="3.625" transform="translate(12.585 11.376)" stroke="var(--icon-color, #888)" stroke-linecap="round"
6
+ stroke-linejoin="round" stroke-width="1.667"/>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="17.244" height="17.225" viewBox="0 0 17.244 17.225">
2
+ <g transform="translate(-73.567 -73.7)">
3
+ <g transform="translate(73.567 73.7)">
4
+ <path d="M92.7,88.8a6.426,6.426,0,0,1-.258.647,1.442,1.442,0,0,0-.189.653,1.088,1.088,0,0,0,.214.635,2.124,2.124,0,0,0,.22.24l.238.238a.186.186,0,0,1,.02.02c.008.008.053.071.03.031.01.016.02.031.028.047.037.061,0-.039.012.031,0,.018.01.035.014.053-.014-.059,0,.016,0,.03s-.008.085,0,.041-.012.043-.012.041-.02.053,0,.006a.6.6,0,0,1-.033.061c-.026.041.045-.043-.014.02a.161.161,0,0,0-.02.022l-.008.008c-.031.033-.065.065-.1.1l-.962.962-.358.358c-.01.01-.02.022-.031.031l-.006.006a.214.214,0,0,1-.022.02c-.026.024-.03.026-.008.006a.342.342,0,0,1-.035.022c-.014.008-.067.026-.018.01l-.053.016c-.077.024.031,0-.016,0-.024,0-.045,0-.067,0s-.053-.01,0,0a.4.4,0,0,1-.065-.018c-.045-.014.053.035-.018-.008-.01-.006-.077-.047-.033-.016a4.378,4.378,0,0,1-.407-.4,1.107,1.107,0,0,0-1.139-.271c-.214.079-.413.193-.62.273a2.581,2.581,0,0,0-.622.271,1.134,1.134,0,0,0-.452.938V94.4s-.008.085,0,.041-.016.053-.02.063c.016-.053-.016.026-.026.045-.031.063.035-.028-.016.022l-.035.035c-.037.037-.012.01,0,0a.744.744,0,0,1-.067.039c-.014.008-.049.014,0,0-.026.008-.051.014-.077.02.059-.012-.018,0-.039,0h-2.06a.534.534,0,0,1-.055,0c.055.006.012,0,0,0s-.089-.03-.028,0a.328.328,0,0,1-.045-.024.324.324,0,0,1-.043-.028c.051.033-.016-.018-.028-.028s-.041-.055-.01-.01a.324.324,0,0,1-.028-.043s-.033-.075-.018-.035-.01-.041-.01-.039-.008-.057,0,0a.5.5,0,0,1,0-.055v-.358a2.208,2.208,0,0,0-.008-.279,1.124,1.124,0,0,0-.254-.6,1.171,1.171,0,0,0-.537-.348c-.212-.075-.413-.153-.612-.246a1.388,1.388,0,0,0-.681-.187,1.088,1.088,0,0,0-.606.214,5.273,5.273,0,0,0-.48.458l-.022.022-.022.022c-.063.059.022-.012-.02.014a.607.607,0,0,1-.061.033c.047-.02,0,0-.006,0s-.094.018-.028.01c-.028,0-.053,0-.081,0s-.053-.01,0,0a.4.4,0,0,1-.065-.018c-.045-.014.053.035-.018-.008l-.047-.028c.037.024-.022-.02-.037-.035-.271-.266-.537-.537-.807-.807l-.474-.474-.14-.14-.03-.03,0,0c-.01-.012-.03-.03-.039-.043.031.043-.014-.031-.016-.033-.028-.049-.008-.018,0-.006-.008-.026-.016-.051-.022-.079.012.057,0-.035,0-.057,0-.073-.02.041.006-.03.006-.018.01-.035.016-.053-.016.049,0,0,.01-.018a.34.34,0,0,1,.022-.035c-.016.018-.018.02,0,0,.055-.065.122-.124.183-.185a1.632,1.632,0,0,0,.5-.7,1.078,1.078,0,0,0-.026-.659c-.083-.222-.2-.425-.281-.641a2.35,2.35,0,0,0-.26-.588,1.156,1.156,0,0,0-.539-.4,2.277,2.277,0,0,0-.75-.057h-.153c-.014,0-.055-.01,0,0-.026-.006-.051-.012-.077-.02.059.018-.012-.006-.024-.012a.323.323,0,0,1-.043-.028c.043.03.01.008,0,0s-.035-.035-.053-.055c.035.043-.014-.03-.024-.047-.035-.061,0,.045-.008-.026,0-.014-.016-.09-.01-.026a3.307,3.307,0,0,1,0-.342v-.689c0-.362-.006-.726,0-1.088v-.006s.008-.085,0-.041.012-.039.012-.037c.008-.047,0-.02,0,0,.008-.02.02-.037.03-.057s.041-.057.006-.014a.7.7,0,0,1,.053-.055c.053-.055-.028.016.01-.008.018-.012.037-.022.055-.031s.049-.014,0,0l.063-.018c.045-.012-.067,0,.014,0h.063a4.648,4.648,0,0,0,.641-.014,1.109,1.109,0,0,0,.58-.266,1.171,1.171,0,0,0,.332-.537,6.069,6.069,0,0,1,.256-.628,1.307,1.307,0,0,0,.171-.663,1.143,1.143,0,0,0-.258-.651c-.057-.069-.124-.13-.187-.195s-.155-.153-.232-.232l-.016-.016a.411.411,0,0,1-.039-.043c.028.037,0,0,0-.01s-.035-.077-.022-.039-.012-.047-.012-.043c-.016-.051,0-.018,0,0,0-.028,0-.053,0-.081,0-.073-.02.041.006-.03.006-.018.01-.035.016-.053-.02.061.053-.087.02-.039a.631.631,0,0,1,.049-.053c.033-.035.069-.069.1-.1l.439-.439.877-.877.029-.03,0,0s.067-.055.035-.031c-.014.012-.008.01.016-.008a.387.387,0,0,1,.049-.026c-.049.022.041-.008.059-.012-.063.014.018,0,.03,0a.481.481,0,0,1,.053,0c-.077-.008.1.037.035.01.018.008.033.018.049.026.061.03-.018-.026.031.022.134.126.258.26.39.388a1.1,1.1,0,0,0,1.163.256c.222-.087.425-.2.643-.283a2.107,2.107,0,0,0,.63-.3,1.134,1.134,0,0,0,.393-.9v-.456a.411.411,0,0,1,0-.049c0-.045-.022.059,0-.014,0-.014.028-.087,0-.028a.328.328,0,0,1,.024-.045s.045-.067.02-.033.028-.03.028-.028a.3.3,0,0,1,.037-.033c-.043.037,0,0,.014-.006s.037-.022.057-.03c-.069.03.106-.014.028-.006.043,0,.087,0,.128,0h2.02c.057,0,.014,0,0,0a.592.592,0,0,1,.063.016c.045.012-.055-.033.014,0,.014.008.03.018.045.026.067.035-.022-.022.012.008s.043.041.063.063c-.035-.043.014.03.024.047.035.061,0-.045.008.026a.39.39,0,0,0,.012.051c-.014-.059,0,.018,0,.031v.374a2.194,2.194,0,0,0,.018.34,1.1,1.1,0,0,0,.27.551,1.215,1.215,0,0,0,.545.329,6.267,6.267,0,0,1,.628.258,1.253,1.253,0,0,0,.661.161,1.131,1.131,0,0,0,.649-.268c.15-.126.279-.275.417-.411l.012-.012s.067-.055.035-.031.045-.026.041-.022.051-.018.006,0a.4.4,0,0,1,.065-.018c.045-.012-.065,0,.016,0,.028,0,.053,0,.081,0-.073-.008.075.026.043.014s.1.059.049.024a.63.63,0,0,1,.053.049c.1.1.2.2.3.3l.988.988.136.136.026.026a.267.267,0,0,0,.024.024c.008.008.03.045.006.008a.534.534,0,0,1,.041.073c-.028-.063.016.112.01.035a.479.479,0,0,1,0,.053s-.008.085,0,.041-.037.11-.01.047a.608.608,0,0,1-.033.061c-.012.018-.01.016.006,0a.411.411,0,0,1-.039.043c-.055.057-.11.11-.167.167a1.547,1.547,0,0,0-.5.718,1.091,1.091,0,0,0,.053.681c.09.216.193.411.275.626a2.034,2.034,0,0,0,.3.624,1.078,1.078,0,0,0,.512.334,2.448,2.448,0,0,0,.74.047h.1c.022,0,.041,0,.063,0-.055-.006-.012,0,0,0l.051.014c-.026-.012-.03-.014-.01-.006s.1.067.059.03l.047.043c.012.012.041.055.01.01a.323.323,0,0,1,.028.043s.033.075.018.035.01.041.01.039c.02.055,0-.037,0,.028V87.4c0,.12,0,.24,0,.358a.319.319,0,0,1,0,.043c0,.045.022-.059,0,.014a.388.388,0,0,0-.014.051c.016-.053,0,0-.006.012s-.022.037-.033.055c.008-.012.037-.037,0,0a.7.7,0,0,1-.055.053c.043-.037,0,0-.014.006s-.037.022-.057.03c.069-.03-.083.014-.041.008s-.041,0-.045,0h-.049a4.858,4.858,0,0,0-.586.008,1.133,1.133,0,0,0-.933.761.3.3,0,0,0,.207.364.3.3,0,0,0,.364-.207c.029-.083-.03.043.012-.031.008-.016.016-.031.026-.047s.024-.037.037-.057c.028-.039-.045.043.012-.014l.037-.039s.063-.055.03-.03.037-.026.035-.024a.775.775,0,0,1,.069-.039c.071-.041-.031.01.016-.008.022-.008.041-.016.063-.022a.527.527,0,0,0,.053-.014c.081-.02-.033,0,.016,0s.081,0,.122,0a3.079,3.079,0,0,0,.687-.026.87.87,0,0,0,.647-.842c0-.136,0-.271,0-.407V85.938a1.92,1.92,0,0,0-.026-.451.875.875,0,0,0-.864-.647h-.5c-.016,0-.118-.012-.059,0-.045-.008-.087-.022-.13-.033s-.016-.006,0,0c-.024-.012-.047-.024-.071-.037l-.045-.03c-.069-.045.024.022-.014-.012-.016-.016-.033-.03-.047-.045s-.057-.069-.024-.022a1.018,1.018,0,0,1-.071-.116c0-.008-.022-.051,0-.006-.01-.026-.018-.053-.028-.079-.041-.122-.089-.244-.138-.362s-.1-.228-.148-.34c-.026-.055-.053-.11-.079-.165s-.01-.024-.006-.012a.845.845,0,0,1-.029-.1c0-.014-.01-.075-.006-.024,0-.02,0-.039,0-.059s0-.049,0-.073c0-.053-.018.065,0-.022a.71.71,0,0,1,.041-.14c-.006.016-.02.033.008-.01.016-.026.03-.051.045-.075.045-.069-.031.024.028-.033a.223.223,0,0,1,.022-.022L93.011,83l.1-.1c.077-.077.155-.153.232-.232a.869.869,0,0,0,.118-1.106,2.508,2.508,0,0,0-.3-.319l-1-1c-.089-.089-.175-.177-.264-.264a.873.873,0,0,0-1.175-.041c-.146.122-.273.271-.409.405l-.03.03c-.059.059.035-.018-.033.028-.016.012-.033.022-.049.031.006,0-.079.041-.043.024s-.051.018-.047.016c-.018.006-.037.012-.055.016s-.087.012-.035.008a.9.9,0,0,1-.146,0c.053,0-.01,0-.024-.006l-.071-.02c-.049-.012-.029-.008-.014,0-.026-.01-.051-.026-.077-.037l-.183-.087c-.234-.106-.474-.189-.714-.281.045.018,0,0-.006,0l-.071-.039-.045-.03c.041.03,0,0,0,0s-.037-.037-.057-.057-.037-.043,0,0a.69.69,0,0,1-.083-.138c.026.051-.016-.051-.02-.069a.67.67,0,0,1-.014-.067c0,.014,0,.055,0,0,0-.037,0-.077,0-.114v-.344a1.244,1.244,0,0,0-.033-.362.863.863,0,0,0-.4-.51,1.123,1.123,0,0,0-.576-.112H85.608a.884.884,0,0,0-.779.421,1.5,1.5,0,0,0-.12.8v.159a.333.333,0,0,1,0,.043.293.293,0,0,1,0,.041c0-.033,0-.031,0,0a1.124,1.124,0,0,1-.033.116c-.018.045.033-.057-.008.016-.008.016-.016.031-.026.047a.5.5,0,0,1-.045.067c.01-.012.033-.035,0,0-.012.012-.024.026-.037.037l-.039.035q.032-.024.006-.006a1.13,1.13,0,0,1-.1.063c-.073.039.047-.012-.031.012l-.071.024c-.116.041-.232.085-.344.132s-.25.106-.374.163c-.049.024-.1.049-.146.071s.059-.014-.028.01c-.03.008-.057.016-.087.022-.087.022.03,0-.024,0-.024,0-.049,0-.073,0a.519.519,0,0,1-.057,0c.053,0-.008,0-.022,0a.9.9,0,0,1-.124-.037c.053.024-.033-.02-.035-.022a.446.446,0,0,1-.075-.049c.035.028-.033-.033-.033-.033l-.02-.02L82.75,80.2a1.333,1.333,0,0,0-.683-.47.908.908,0,0,0-.814.283l-.917.917-.415.415a1,1,0,0,0-.332.637.868.868,0,0,0,.228.641c.055.061.116.116.173.173l.214.214.047.049c-.026-.03,0,.006.008.012.016.026.03.051.045.075,0,.006.026.051.008.01a.406.406,0,0,1,.024.069l.018.071c.014.059,0-.03,0,.037,0,.02,0,.039,0,.059,0,0-.01.1,0,.037a.72.72,0,0,1-.033.128c-.018.051.031-.059-.01.028-.01.022-.022.043-.031.065-.031.067-.063.132-.092.2-.049.112-.1.226-.144.342-.022.057-.043.114-.065.173a.709.709,0,0,1-.026.069l-.024.071c-.012.03-.014.035-.006.016.016-.037-.022.043-.02.039-.008.016-.018.031-.028.047,0,0-.049.067-.024.035s-.031.033-.03.031-.026.024-.037.037c-.053.057.041-.024-.024.02a1.115,1.115,0,0,1-.116.067c.057-.028-.022.006-.03.01s-.035.01-.051.014l-.053.012c.065-.012-.022,0-.031,0-.031,0-.063,0-.092,0a2.464,2.464,0,0,0-.712.037.875.875,0,0,0-.61.834c-.006.386,0,.773,0,1.161v.677A1.615,1.615,0,0,0,78.1,88a.879.879,0,0,0,.868.622h.488l.055,0c.069,0-.03-.012.03,0a1.086,1.086,0,0,1,.13.039c-.051-.02,0,0,.014.01a.54.54,0,0,1,.057.033l.043.03c-.043-.033,0,0,.012.014l.047.047c.053.051-.02-.037.02.026.024.039.047.077.067.118-.02-.045,0,0,0,.006.01.035.024.071.035.1.041.116.085.23.134.344s.1.228.15.338c.026.053.055.1.077.159-.018-.041,0,.018.008.028a.923.923,0,0,1,.024.1c0-.014,0-.049,0,.008,0,.024,0,.049,0,.073s-.006.075,0,.022c0,.02-.008.037-.012.057a.7.7,0,0,1-.02.069c0,.012-.03.067-.008.024a.424.424,0,0,1-.028.051c-.008.014-.051.077-.043.067s-.035.037-.039.041a.311.311,0,0,1-.026.026l-.11.11-.224.224a.869.869,0,0,0-.057,1.171c.075.092.167.173.25.258l.494.494c.256.256.506.515.765.765A.873.873,0,0,0,82.5,93.5c.138-.124.26-.264.391-.392,0,0,.061-.057.041-.039s.049-.033.043-.03l.051-.03c.069-.043-.041.008.035-.018l.055-.018c.02-.006.037-.01.057-.014.035-.006.037-.006.008,0a.319.319,0,0,1,.043,0h.073c.057,0,.024,0,.008,0a.907.907,0,0,1,.144.037c-.039-.014.006,0,.012.006l.1.047.167.077c.124.055.25.108.376.157.051.02.1.039.155.057.03.01.059.02.087.031,0,0,.1.037.041.012a1.007,1.007,0,0,1,.118.067c.047.03.014.012,0,0a.8.8,0,0,1,.094.094c-.033-.037,0-.006,0,0s.029.045.041.067.037.083.016.026a.792.792,0,0,1,.035.116c0,.016.01.073.006.016a.518.518,0,0,1,0,.055c0,.035,0,.071,0,.106v.34a1.187,1.187,0,0,0,.041.372.85.85,0,0,0,.415.5,1.186,1.186,0,0,0,.571.1h.633c.411,0,.822,0,1.234,0a.878.878,0,0,0,.793-.456,1.676,1.676,0,0,0,.1-.789v-.155c0-.024,0-.045,0-.069-.006.053,0-.012.008-.03s.01-.035.014-.051.037-.087.01-.03a1.091,1.091,0,0,1,.059-.1c.008-.012.045-.055.01-.014.012-.014.024-.028.035-.039a.537.537,0,0,1,.049-.045c.016-.014.014-.012-.008,0a.358.358,0,0,1,.045-.03c.016-.01.031-.02.047-.028,0,0,.077-.035.039-.02s.067-.022.051-.018l.071-.024c.122-.043.242-.091.362-.14s.238-.1.356-.157c.022-.01.043-.022.067-.031-.006,0,.1-.041.045-.022a.7.7,0,0,1,.144-.037c-.061.01.033,0,.037,0H90c.057,0,.024,0,.008,0,.029,0,.057.012.085.018l.055.018c.085.028-.024-.014.024.01l.065.035s.069.053.035.024c.069.061.132.13.2.195s.142.144.212.212a.869.869,0,0,0,1.277-.045l.388-.388.948-.948a.977.977,0,0,0,.325-.655.874.874,0,0,0-.252-.635c-.057-.059-.116-.116-.173-.173s-.132-.13-.2-.2a.539.539,0,0,1-.045-.049c.033.039-.024-.035-.024-.035-.01-.016-.02-.033-.03-.051-.045-.075.006.026-.012-.024a.7.7,0,0,1-.022-.069.484.484,0,0,1-.014-.057c-.02-.087,0,.03,0-.022a.953.953,0,0,1,0-.13c-.006.061.008-.033.008-.037,0-.02.012-.037.016-.057.024-.087-.012.022.01-.028.012-.028.026-.053.039-.079.024-.049.047-.1.071-.15.1-.23.2-.466.279-.7a.3.3,0,0,0-.207-.364A.33.33,0,0,0,92.7,88.8Z" transform="translate(-77.978 -78.111)" fill="var(--icon-color, #888)"/>
5
+ <path d="M82.774,90.925H81.319a1.264,1.264,0,0,1-.611-.11.933.933,0,0,1-.459-.547,1.257,1.257,0,0,1-.046-.4v-.34c0-.012,0-.025,0-.037s0-.044,0-.064v0s0-.008,0-.012a.171.171,0,0,1,0-.019c0-.006,0-.014,0-.019-.006-.026-.013-.051-.02-.074l-.007-.013-.011-.023-.005-.012c-.008-.014-.018-.03-.028-.046l-.009-.013,0,0,0,0,0,0h0l0,0-.025-.026-.029-.028-.01-.008-.026-.016c-.018-.011-.036-.022-.054-.032l-.037-.012-.029-.012h0c-.024-.01-.051-.019-.08-.029-.049-.017-.1-.036-.159-.058-.12-.047-.248-.1-.38-.159l-.169-.077-.051-.024-.048-.023-.006,0-.008,0a.812.812,0,0,0-.111-.029h-.1l-.013,0-.046.011-.028.009-.026.008-.006,0-.01.007,0,0-.044.025,0,0-.028.02-.01.006-.033.031c-.053.051-.1.105-.156.158-.076.079-.154.16-.238.236a.959.959,0,0,1-1.315-.024c-.174-.167-.346-.342-.512-.51l-.254-.256-.494-.494-.08-.079a2.146,2.146,0,0,1-.176-.186.954.954,0,0,1,.063-1.288l.335-.335.011-.01.008-.008.007-.007.009-.01.02-.022,0,0,.011-.016.024-.037,0,0,.013-.022.006-.016.008-.019c.007-.018.012-.038.017-.059l.005-.022,0-.012h0c0-.008,0-.019,0-.024v-.007a.382.382,0,0,0,0-.039c0-.008,0-.017,0-.025v0c0-.026-.011-.053-.019-.079a.3.3,0,0,1-.014-.042c-.012-.027-.025-.053-.039-.081l-.027-.055c-.046-.1-.095-.205-.152-.343-.044-.1-.087-.214-.135-.348l-.009-.024c-.01-.027-.02-.056-.029-.086l0-.009c-.013-.025-.027-.049-.043-.074l-.011-.019,0-.006,0,0-.048-.048-.013-.012-.005,0h0l-.023-.015a.456.456,0,0,0-.046-.027l-.008,0-.016-.008-.007,0c-.022-.007-.045-.014-.069-.02l-.027-.007h-.549a.972.972,0,0,1-.953-.685,1.386,1.386,0,0,1-.037-.411c0-.024,0-.047,0-.07v-.677q0-.194,0-.387c0-.254,0-.517,0-.775a.963.963,0,0,1,.673-.917,1.755,1.755,0,0,1,.575-.045c.057,0,.111,0,.163,0h.09l.019,0,.021,0h0l.03-.007.029-.008a.33.33,0,0,1,.054-.022c.026-.014.051-.03.077-.047l0,0v0c.011-.012.021-.022.03-.031l.01-.01h0l.02-.024.014-.019.007-.009c.008-.013.016-.026.022-.037v0l.013-.028.006-.013,0-.005.026-.077c.008-.017.015-.038.022-.06v0c.022-.059.044-.117.065-.174.047-.12.1-.237.145-.346.023-.052.047-.1.071-.153l.023-.048.017-.034.014-.03,0,0,0-.015a.8.8,0,0,0,.026-.089.4.4,0,0,1,0-.042v-.014a.238.238,0,0,0,0-.028c0-.008,0-.015,0-.023s0-.007,0-.01l0-.007-.017-.069a.341.341,0,0,0-.011-.034l-.006-.011,0-.008c-.01-.016-.02-.032-.029-.047l-.015-.025-.007-.009h0l-.015-.016-.022-.023-.214-.214-.057-.055c-.04-.038-.081-.078-.12-.121a.959.959,0,0,1-.251-.708,1.092,1.092,0,0,1,.358-.693l1.332-1.332a.993.993,0,0,1,.892-.308,1.253,1.253,0,0,1,.67.434l.06.061.136.136.021.019.02.02a.4.4,0,0,0,.049.03l.012.006.008,0,.024.013a.9.9,0,0,0,.09.026l.016,0,.022,0h.025c.022,0,.045,0,.065,0H78.9l.065-.016.016,0,.008,0,.007,0c.029-.013.057-.027.087-.042l.056-.028c.147-.068.267-.12.379-.165s.208-.084.348-.133l.075-.025.012,0,0,0a1.049,1.049,0,0,0,.095-.057l.005,0,.022-.02.019-.019.013-.014.007-.007a.472.472,0,0,0,.028-.044v0c.008-.012.014-.026.021-.04l0,0,0,0h0a1.022,1.022,0,0,0,.029-.1l0-.01,0-.01s0,0,0,0v-.011a.256.256,0,0,0,0-.032v-.159c0-.037,0-.074,0-.111a1.334,1.334,0,0,1,.134-.74A.977.977,0,0,1,81.2,73.7h1.879a1.215,1.215,0,0,1,.62.123.947.947,0,0,1,.441.562,1.251,1.251,0,0,1,.037.368v.362c0,.037,0,.074,0,.109h0c0,.02.007.036.011.051v0l.012.033a.373.373,0,0,1,.013.041.6.6,0,0,0,.048.081l0,0,.008.009.018.017.038.038,0,0,.007,0,.019.013.032.018.037.02.01,0,.182.069c.172.064.349.13.521.209h0l.09.043.093.044.033.017.025.013.014,0,.04.011.032.009h0l.023,0,.01,0a.809.809,0,0,0,.087,0l.013,0,.025,0h.005l.046-.013h0l.013,0,.027-.01h0l.032-.016.014-.008.029-.018,0,0,.01-.006.009-.01.03-.03c.046-.045.092-.093.136-.14a3.535,3.535,0,0,1,.279-.271.966.966,0,0,1,1.293.045c.06.058.119.118.176.176l.088.089,1,1,.061.06a1.954,1.954,0,0,1,.244.27A.953.953,0,0,1,89,78.315c-.051.053-.1.105-.156.156l-.076.076-.134.133,0,0-.01.011-.009.009-.007.011c-.009.013-.017.027-.025.041l-.019.031-.007.012a.685.685,0,0,0-.03.109h0s0,0,0,.007v0c0,.019,0,.04,0,.061s0,.02,0,.029v0l0,.009c0,.007,0,.016,0,.022v0a.728.728,0,0,0,.024.082v0l0,.007v0l.039.082.04.083c.049.107.1.222.149.344s.1.251.139.366c.005.013.01.027.014.041l.006.018,0,0,0,.011c.015.028.03.055.047.081a.359.359,0,0,1,.036.04l.019.018.021.02,0,0,.021.014.019.013.052.028h0l.033.009.063.017h.009l.027,0,.032,0h.495a.96.96,0,0,1,.95.715,1.576,1.576,0,0,1,.029.392c0,.026,0,.053,0,.079v1.413q0,.068,0,.135c0,.089,0,.182,0,.273a.954.954,0,0,1-.715.927,2.124,2.124,0,0,1-.541.031c-.058,0-.112,0-.166,0-.037,0-.072,0-.107,0l-.006,0c-.02.006-.039.011-.056.015l-.04.014-.013,0,0,0-.005,0a.688.688,0,0,0-.06.035l-.009.007-.014.01-.028.025h0l-.015.016-.02.021,0,0h0c-.014.02-.024.036-.034.052s-.015.027-.022.041l0,0h0l-.006.018a.473.473,0,0,1-.033.072c-.072.2-.157.413-.251.621-.024.052-.048.1-.072.151l0,0c-.013.025-.026.048-.036.072l0,.008,0,.006c0,.013-.006.024-.01.035l0,.016c0,.006,0,.015,0,.029s0,.019-.005.029c0,.028,0,.058,0,.091,0,0,0,0,0,.007h0a.424.424,0,0,0,.011.046l0,.007a.608.608,0,0,0,.019.06v0l0,.006,0,0,.025.044.015.02.015.023.027.028c.044.045.088.089.131.131l.066.066.057.057c.039.038.078.077.117.118a.96.96,0,0,1,.277.7,1.057,1.057,0,0,1-.35.713L87.6,89.079a.976.976,0,0,1-.815.324,1,1,0,0,1-.586-.278c-.048-.046-.1-.1-.143-.142l-.071-.071-.059-.06c-.039-.04-.076-.078-.115-.114a.223.223,0,0,1-.049-.035l-.053-.029,0,0-.006,0-.05-.016-.024-.005-.031-.007h-.08a.355.355,0,0,1-.041,0,.618.618,0,0,0-.083.022l-.015.007-.029.013-.015.006-.011-.026a.088.088,0,0,0,.05.006l-.03-.078-.043.017.012.031L85.3,88.61h0l.017.05.007,0,.01.028-.036.017-.029.014c-.138.064-.252.115-.359.159-.141.058-.257.1-.366.141l-.072.024a.453.453,0,0,1-.05.019h0l-.028.013h0l-.038.022-.008,0-.013.008,0,0-.007.006a.463.463,0,0,0-.041.038l-.018.019-.016.02c-.015.023-.029.048-.043.075l-.006.015-.008.02-.005.019c0,.008,0,.017-.007.025s0,.014,0,.023,0,.012,0,.017,0,.026,0,.039v.155c0,.039,0,.077,0,.116a1.467,1.467,0,0,1-.111.713.965.965,0,0,1-.871.5ZM80.38,89.419c0,.026,0,.051,0,.075s0,.023,0,.034v.34a1.1,1.1,0,0,0,.037.345.765.765,0,0,0,.37.444,1.1,1.1,0,0,0,.531.091h1.045c.269,0,.548,0,.822,0a.789.789,0,0,0,.714-.408,1.313,1.313,0,0,0,.092-.631c0-.039,0-.079,0-.118v-.155c0-.024,0-.046,0-.068,0,0,0-.007,0-.011h0l0-.009c0-.011,0-.024.006-.03s.006-.024.009-.036l0-.018a.3.3,0,0,1,.016-.042l0,0h0l0-.007A1.161,1.161,0,0,1,84.1,89.1l.017-.023h0l.01-.011,0,0,.026-.028a.652.652,0,0,1,.053-.049h0l.01-.007.007,0,.013-.009,0-.005.078-.039h0l0,.006,0,0,0,0,.019-.009.021-.011a.134.134,0,0,1,.03-.009l.02-.007-.012.006a.09.09,0,0,1,.023,0l0-.011.071-.024c.1-.037.219-.081.356-.138.1-.043.216-.092.352-.156l.025-.012.046-.021h0l.016-.008.031-.014v0a.787.787,0,0,1,.162-.042v0l.029,0,.022,0H85.6v0h.012a.133.133,0,0,1,.03.006l.027.006.024.005.007,0,.055.018a.162.162,0,0,1,.038.011.1.1,0,0,1,.035.024l.044.024.006.006.031.023a.08.08,0,0,0-.035-.012l-.022.022a.088.088,0,0,1-.005.028.078.078,0,0,1-.054.053l-.01.019a.08.08,0,0,0,.014.022l.117-.132h0l0,0c.05.044.1.092.141.138l.057.058.071.072c.046.047.094.095.14.14a.812.812,0,0,0,.484.229.821.821,0,0,0,.668-.274l1.336-1.336a.88.88,0,0,0,.3-.6.783.783,0,0,0-.227-.57c-.037-.038-.076-.077-.114-.114l-.058-.057-.066-.065c-.043-.043-.088-.087-.132-.133a.6.6,0,0,1-.052-.057h0l-.026-.035,0-.007c-.01-.015-.019-.032-.028-.047a.14.14,0,0,1-.024-.036.1.1,0,0,1-.01-.045c0-.013-.008-.026-.011-.037a.547.547,0,0,1-.014-.059.161.161,0,0,1-.011-.041.1.1,0,0,1,0-.046c0-.029,0-.056,0-.081,0-.005,0-.01,0-.015h0c0-.01,0-.026.005-.034v0l0-.009a.352.352,0,0,1,.01-.038c0-.008,0-.014.005-.019v-.006h0a.153.153,0,0,1,.008-.036.1.1,0,0,1,.02-.034c.009-.018.018-.035.027-.052.023-.048.046-.1.069-.146.053-.118.1-.236.15-.353a.412.412,0,0,1-.172,0,.374.374,0,0,1-.206-.139c-.051.132-.1.254-.159.374a1.371,1.371,0,0,0-.181.614,1,1,0,0,0,.2.584,2.058,2.058,0,0,0,.211.23l.242.242a.19.19,0,0,1,.022.022l.019.024.013.017a.082.082,0,0,0-.044-.025l-.056.042.044-.044a.088.088,0,0,0-.09.121l.028-.017a.083.083,0,0,1,.061-.061.091.091,0,0,1,.042,0l.02-.012.018.03a.1.1,0,0,1,.032.045.1.1,0,0,1,.007.054c0,.01.006.021.008.031h0v0a.332.332,0,0,1,0,.043v.02a.159.159,0,0,1-.012.072l0,.009h0a.171.171,0,0,1-.006.022h0l-.007.015h0l0,.008-.005.01a.092.092,0,0,1-.019.044.151.151,0,0,1-.029.03h0l-.011.012-.008.01-.007.007c-.022.023-.045.046-.067.067l-.033.032-1.32,1.32-.008.008a.347.347,0,0,1-.026.026l0,0a.311.311,0,0,1-.027.024.145.145,0,0,1-.059.038h0l-.032.014v0l-.031.009h-.005a.132.132,0,0,1-.051.019.1.1,0,0,1-.056,0h-.021a.165.165,0,0,1-.052-.007.1.1,0,0,1-.046-.009.139.139,0,0,1-.043-.028l-.027-.016,0,0-.005,0A2.232,2.232,0,0,1,86.4,88.5c-.045-.048-.087-.094-.131-.137a1.015,1.015,0,0,0-1.047-.251c-.111.041-.221.093-.327.143s-.192.091-.291.13c-.058.023-.117.043-.174.063a1.558,1.558,0,0,0-.427.2,1.052,1.052,0,0,0-.417.867v.568h-.014l0,0a.424.424,0,0,1-.012.041l0,0-.01.023h0a.1.1,0,0,1-.022.058.107.107,0,0,1-.045.036l-.015.015-.013.013h0l-.007.006h0a.108.108,0,0,1-.044.025l-.026.014a.147.147,0,0,1-.059.018l-.03.007-.013,0v0h-.007l-.049,0H81.206v.01l-.088-.01-.026,0h0l-.018,0-.014,0-.016-.005,0,0a.337.337,0,0,1-.052-.026l0,0a.413.413,0,0,1-.052-.033l0,0-.021-.016-.015-.012-.006-.005-.019-.022h0a.4.4,0,0,1-.035-.055l0,0,0-.011h0l0-.006a.152.152,0,0,1-.011-.023.131.131,0,0,1-.009-.038l0-.005a.147.147,0,0,1,0-.019h0l0-.027-.01-.087h.01v-.307c0-.019,0-.037,0-.056a1.572,1.572,0,0,0-.007-.212,1.031,1.031,0,0,0-.234-.553,1.068,1.068,0,0,0-.5-.321c-.236-.083-.433-.162-.62-.249a1.325,1.325,0,0,0-.639-.179,1,1,0,0,0-.557.2,2.957,2.957,0,0,0-.33.308c-.046.047-.093.1-.142.143l-.044.044a.15.15,0,0,1-.03.029.092.092,0,0,1-.044.019l-.012.006-.022.01h0l-.018.006-.018,0-.021,0v0l-.026,0h-.065a.167.167,0,0,1-.052-.007.1.1,0,0,1-.046-.009.139.139,0,0,1-.042-.028l-.011-.006-.026-.015h0l.014-.022a.1.1,0,0,1,0-.051.093.093,0,0,1,.063-.055l.014-.022a.088.088,0,0,0-.1.145l-.013-.011c-.017-.013-.029-.023-.038-.032-.181-.177-.362-.36-.538-.537l-.269-.27-.653-.653-.011-.012-.013-.013a.166.166,0,0,1-.018-.021l0,0,.032-.023h0l.095-.068h0l.015-.011-.013-.01v0h0l-.011,0v0l-.033.011-.025.014.009-.009-.063.02,0,0,0,0-.027.009h0a.084.084,0,0,0,.026.025.077.077,0,0,0,.008.034l-.015-.026,0,0-.006-.011a.154.154,0,0,1-.026-.073c0-.011-.006-.022-.008-.033v0l.021,0,0-.006h0a.09.09,0,0,1-.017-.018.072.072,0,0,0,0,.025c0-.006,0-.022,0-.036A.113.113,0,0,1,75.7,86.9l.008-.026h0a.293.293,0,0,1,.014-.031l0-.006a.126.126,0,0,1,.019-.034h0l.006-.007a1.863,1.863,0,0,1,.131-.135l.056-.055.036-.035a1.458,1.458,0,0,0,.443-.629.989.989,0,0,0-.023-.6c-.042-.112-.093-.222-.143-.327s-.1-.206-.138-.314c-.019-.049-.036-.1-.053-.146a1.542,1.542,0,0,0-.2-.421,1.068,1.068,0,0,0-.5-.367,1.673,1.673,0,0,0-.576-.054l-.144,0h-.153l-.021,0h0l-.022,0-.01,0-.051-.014v0l-.038-.015-.026-.015a.145.145,0,0,1-.023-.016l-.006,0h0l-.012-.011-.046-.048-.013-.014.02-.017a.09.09,0,0,1-.026-.01.072.072,0,0,0,.007.021l-.016-.026v0a.107.107,0,0,1-.036-.051.1.1,0,0,1,0-.061h-.005a1.871,1.871,0,0,1,0-.247c0-.035,0-.071,0-.1v-.689c0-.12,0-.241,0-.362,0-.239,0-.485,0-.728v-.1h.014v0h0l0-.013h0s0-.011,0-.014a.091.091,0,0,1,.027-.048l0-.005a.209.209,0,0,1,.018-.03h0a.544.544,0,0,1,.047-.05.148.148,0,0,1,.034-.037.1.1,0,0,1,.05-.022h0l.013-.007a.157.157,0,0,1,.037-.015.1.1,0,0,1,.046-.018.145.145,0,0,1,.055,0h.044l.167,0a2.982,2.982,0,0,0,.462-.015,1.021,1.021,0,0,0,.535-.245,1.079,1.079,0,0,0,.306-.5,6.16,6.16,0,0,1,.26-.637,1.238,1.238,0,0,0,.163-.619,1.058,1.058,0,0,0-.238-.6c-.036-.044-.078-.085-.122-.129l-.06-.06-.076-.075-.095-.094v.313l-.155-.5,0-.007v0a.132.132,0,0,1-.007-.028l-.006-.02-.007-.022h0v-.01l-.021-.085.013,0a.126.126,0,0,1,0-.02.1.1,0,0,1,.024-.054l.008-.026.019.006.008,0,0,.007.022.007h0l.063.021h0l.026.009h0l.022.007h0l.007,0a.066.066,0,0,0,0-.008l.007-.007-.007-.005v0l-.109-.076h0l-.028-.019h0a.335.335,0,0,1,.04-.045l.015-.015,0,0c.024-.025.048-.049.071-.072l.033-.033,1.35-1.35.008.008,0-.011,0,0,.017-.014.015-.014,0,0a.128.128,0,0,1,.03-.017.491.491,0,0,1,.052-.026h0l.006.015a.1.1,0,0,1,.02-.014H77.38l.033-.009.014,0,.021-.006v0h.007l.041,0a.559.559,0,0,1,.063,0l0,.028h0l-.016.144h0v0h0l0,0,0,0h0l.012-.027h0l.007-.016h0l.029-.065h0l.009-.02h0l.013-.03.037.019h0a.106.106,0,0,1,.077.054c.072.069.143.14.211.21s.112.113.169.169a1.009,1.009,0,0,0,1.069.237c.106-.041.209-.09.309-.137s.22-.1.335-.147l.121-.044a1.573,1.573,0,0,0,.484-.24,1.048,1.048,0,0,0,.361-.837v-.461a.1.1,0,0,1,0-.056.13.13,0,0,1,.021-.051l0-.008h0a.337.337,0,0,1,.026-.051l.016-.028.006-.011.147-.258v.138l.034-.016.01.024v0l.024.056.032.081h0l-.014-.15h0l0-.023h0c.036,0,.069,0,.1,0h2.068l.008,0h.005l.012,0a.094.094,0,0,1,.047.006.149.149,0,0,1,.045.027h0l.014.008a.142.142,0,0,1,.046.022.1.1,0,0,1,.035.041l.023.024.014.015-.02.017a.091.091,0,0,1,.026.01.072.072,0,0,0-.007-.021l.016.026v0a.107.107,0,0,1,.036.051.1.1,0,0,1,0,.059h0v0l0,.012h0v.008a.331.331,0,0,1,0,.043v.374a2.112,2.112,0,0,0,.017.327,1.012,1.012,0,0,0,.248.506,1.143,1.143,0,0,0,.507.3,6.362,6.362,0,0,1,.637.261,1.183,1.183,0,0,0,.616.153,1.044,1.044,0,0,0,.6-.247,3.706,3.706,0,0,0,.275-.266c.045-.046.091-.094.137-.14l.011-.011.007.007.005-.011,0,0,.012-.01a.143.143,0,0,1,.057-.04l.016-.008h0l.021-.011h0l.019-.006h0a.1.1,0,0,1,.05-.02.14.14,0,0,1,.055,0h.071l0,.017.018,0-.012-.006.019.005a.108.108,0,0,1,.076.029l.021.011-.015,0a.087.087,0,0,1,.014.023l.013-.018a.33.33,0,0,1,.046.041l.015.015,0,0c.067.066.135.134.2.2l.1.1,1.149,1.149.01.011.006.006.007.007a.161.161,0,0,1,.034.048.583.583,0,0,1,.028.052l0,.007-.029.013h0l-.11.05h0l-.015.007v0h0l0,0v0h0l0,0,.053-.006.009,0,.024,0h.009l.047,0v0l.029,0a.562.562,0,0,1,0,.063v.024a.113.113,0,0,1,0,.031.122.122,0,0,1-.016.047l0,.011a.055.055,0,0,0,0-.008.084.084,0,0,1-.011.014l.013.006,0,.007c-.011.024-.024.045-.035.064l0,0,0,0a.485.485,0,0,1-.048.053c-.036.038-.074.075-.111.111l-.056.056-.025.025a1.412,1.412,0,0,0-.447.651,1,1,0,0,0,.049.626c.038.092.08.181.12.268.053.116.109.235.157.36.014.038.028.074.041.111a1.563,1.563,0,0,0,.245.488.994.994,0,0,0,.47.306,1.724,1.724,0,0,0,.556.046l.157,0h.058v-.01l.114.013h0l.013,0h0a.131.131,0,0,1,.048.01h0l.02.01.619.286a.865.865,0,0,0-.021-.143.784.784,0,0,0-.778-.579h-.5l-.047,0-.026,0v0h0a.992.992,0,0,1-.1-.025l-.033-.009-.02-.006h0l-.01,0h0a.121.121,0,0,1-.036-.02l-.032-.018h0L89,80.414l-.018-.012a.173.173,0,0,1-.033-.021.1.1,0,0,1-.027-.032l-.023-.023,0,0-.023-.027,0,0a1.086,1.086,0,0,1-.077-.126l0,0-.006-.014h0l0,0c0-.013-.009-.026-.014-.04s-.008-.024-.012-.036v0c-.037-.11-.083-.23-.136-.356s-.1-.233-.146-.338l-.038-.081-.039-.083a.21.21,0,0,1-.023-.061c-.008-.024-.014-.046-.019-.069a.359.359,0,0,1-.006-.036h0c0-.011,0-.022,0-.034s0-.017,0-.025v-.009c0-.01,0-.021,0-.033a.1.1,0,0,1,0-.044.163.163,0,0,1,.011-.043.861.861,0,0,1,.031-.114.126.126,0,0,1,.011-.028v0h0l0,0h0l.014-.022.016-.027.023-.038a.108.108,0,0,1,.022-.04.11.11,0,0,1,.033-.028l.017-.016.123-.123.077-.076c.051-.051.1-.1.154-.155a.777.777,0,0,0,.109-.993,1.793,1.793,0,0,0-.223-.245l-.063-.062-1-1L87.6,75.8c-.057-.057-.116-.117-.174-.174a.78.78,0,0,0-1.056-.037,3.4,3.4,0,0,0-.264.257c-.045.047-.092.1-.139.143l-.02.02a.11.11,0,0,1-.028.034.112.112,0,0,1-.037.021l-.03.019-.012.007-.006-.009-.006.008,0,.006-.021.011-.022.013a.122.122,0,0,1-.033.011l0,0-.019.006h0c-.022.008-.043.013-.061.018a.412.412,0,0,1-.047.008h0v0a.988.988,0,0,1-.16,0v0l-.039-.007-.038-.01-.032-.009-.023-.006h0l-.01,0-.083-.024,0-.015-.085-.04-.092-.043c-.166-.075-.341-.141-.509-.2l-.1-.036h0l-.1-.04h0l-.019-.01L84.3,75.7l-.038-.021h0l-.025-.016-.008-.005-.017-.011h0L84.2,75.63l0,0-.033-.033-.021-.02-.009-.01h0a.776.776,0,0,1-.094-.155l.158-.078a.084.084,0,0,0-.032-.026.087.087,0,0,1-.025.028l-.042.031-.048-.022h0a.085.085,0,0,0-.008.063l-.011-.03c-.01-.027-.015-.041-.017-.051l-.006-.026A.134.134,0,0,1,84,75.265h0v-.017h0v-.01c0-.041,0-.081,0-.12v-.363a1.1,1.1,0,0,0-.03-.318.78.78,0,0,0-.358-.458,1.05,1.05,0,0,0-.533-.1H81.2a.792.792,0,0,0-.7.378,1.183,1.183,0,0,0-.109.646c0,.038,0,.075,0,.113v.159a.434.434,0,0,1,0,.049.4.4,0,0,1,0,.048h0l0,.011c-.007.027-.014.055-.022.083a.1.1,0,0,1-.011.044.165.165,0,0,1-.02.032c-.007.014-.015.028-.024.044s-.014.024-.023.038a.106.106,0,0,1-.019.029l-.01.011h0l-.009.009-.01.01a.435.435,0,0,1-.032.032l-.015.014a.193.193,0,0,1-.03.026h0c-.03.021-.061.039-.091.055a.125.125,0,0,1-.041.026.11.11,0,0,1-.046.009l-.047.016c-.135.048-.242.089-.338.129s-.228.1-.371.162l-.052.026-.064.031a.1.1,0,0,1-.034.02.152.152,0,0,1-.036.008h0l-.016,0-.068.017a.154.154,0,0,1-.04.012.1.1,0,0,1-.045,0,.825.825,0,0,1-.1,0h0l-.025,0-.008,0a1.052,1.052,0,0,1-.123-.036l-.016-.006v0l-.021-.011-.024-.013a.522.522,0,0,1-.087-.058l.111-.138a.084.084,0,0,0-.04-.012l-.048.048.043-.048a.088.088,0,0,0-.065.148l-.037-.033,0,0-.138-.138-.061-.062a1.1,1.1,0,0,0-.574-.384.823.823,0,0,0-.737.259L75.572,77a.9.9,0,0,0-.307.582.782.782,0,0,0,.206.575c.034.038.073.075.111.112l.059.058.214.214.025.026.013.013.013.014h0l.015.02,0,0,.019.031c.009.015.017.029.025.041a.236.236,0,0,1,.013.022h0a.492.492,0,0,1,.029.084l.015.06a.1.1,0,0,1,.012.038.1.1,0,0,1,0,.039s0,.007,0,.01a.374.374,0,0,1,0,.051h0V79c0,.008,0,.019,0,.027h0a.541.541,0,0,1-.011.058l.012.005L76,79.175a.187.187,0,0,1-.013.026l-.006.012-.016.034-.014.029-.023.05c-.024.051-.047.1-.069.148-.047.107-.1.223-.142.339-.021.056-.042.112-.064.17-.008.024-.016.048-.027.072l-.024.072,0,0,0,.013a.137.137,0,0,1-.015.028l-.006.013h0l0,0,0,0h0l-.039.078-.007,0a.137.137,0,0,1-.016.024.139.139,0,0,1-.019.019l-.012.013,0,0-.007,0,.005.005-.02.02a.118.118,0,0,1-.03.037.111.111,0,0,1-.045.024l-.4.4.195-.311-.039.009-.017,0v0h-.011l-.032,0c-.024,0-.048,0-.068,0H74.98c-.055,0-.113,0-.168,0a1.629,1.629,0,0,0-.517.037.787.787,0,0,0-.548.751c0,.256,0,.518,0,.771q0,.194,0,.388v.677c0,.024,0,.048,0,.072a1.235,1.235,0,0,0,.03.359.787.787,0,0,0,.783.558h.53a.111.111,0,0,1,.044,0,.1.1,0,0,1,.041.014l.006,0a.89.89,0,0,1,.115.036v0l.024.012a.628.628,0,0,1,.063.037l0,0,.019.013.008.005.019.013v0l.022.02.033.033a.113.113,0,0,1,.036.03.106.106,0,0,1,.022.045c.018.029.036.059.052.092l.008.017h0l.006.017c.007.023.016.049.024.073l.009.025c.047.131.088.238.132.339.057.137.1.24.148.335l.026.051a1.247,1.247,0,0,1,.054.115h0l.01.026,0,.008c.006.02.011.04.016.061a.122.122,0,0,1,.01.041h0c0,.009,0,.018,0,.027v0c0,.007,0,.014,0,.021a.553.553,0,0,1,0,.055c0,.007,0,.015,0,.026h0a.339.339,0,0,1-.009.049l0,.017v0A.783.783,0,0,1,76,85.87c0,.007-.006.016-.012.029h0a.5.5,0,0,1-.033.061l-.03.046-.008.012a.114.114,0,0,1-.012.019l-.053.066-.006,0-.007.007-.006.005-.334.334A.779.779,0,0,0,75.45,87.5a2.01,2.01,0,0,0,.162.17l.082.081.493.493.255.257c.166.168.337.341.509.507a.783.783,0,0,0,1.074.02c.079-.071.155-.15.229-.227.052-.054.105-.109.16-.162h0l.015-.014.016-.015.015-.015a.109.109,0,0,1,.024-.016l.023-.016.006.008h.005l-.007-.011.046-.031a.121.121,0,0,1,.076-.031l.013,0,.027-.009h0c.024-.007.046-.012.065-.016l.013,0h.014a.118.118,0,0,1,.027,0h.12a.124.124,0,0,1,.04.009c.035.008.066.018.094.026h0l.006,0,.006,0h0l.023.01.047.023.048.023.166.076c.129.057.255.11.372.156l.152.056c.03.01.062.021.092.034h0L80,88.9v0a.764.764,0,0,1,.1.056l.027.016.013.008h0a.145.145,0,0,1,.039.035l.018.017.033.034a.163.163,0,0,1,.017.02l0,0h0l.007.011.008.013c.012.019.025.039.036.059v0l.008.017.007.015h0a.864.864,0,0,1,.04.129c0,.008,0,.017.005.028h0A.609.609,0,0,1,80.38,89.419Zm2.855.753a.089.089,0,0,0,.036.167l0-.015-.013-.007-.046-.032.009-.055a.084.084,0,0,1,.02-.043Zm-2.191.153a.085.085,0,0,0,.033,0l.023-.068-.019,0-.006.009-.01.012Zm.056-.072-.016.066.01,0,.006-.061Zm2.251.047.005.017.011-.009,0-.007-.012,0Zm.018,0,0,0,0,0Zm-2.452-.076a.084.084,0,0,0,.019.039l.026-.038v0h0l.013-.019-.006-.008a.076.076,0,0,1,.036-.037l.023-.034a.082.082,0,0,0-.024,0l-.005,0,.005.03-.053.016-.008-.011-.028.02h0l-.041.029A.088.088,0,0,0,80.917,90.226Zm.183.027h0Zm-.019,0,.019,0h0v-.008l0,.007,0-.008.008-.072,0,0-.013.033A.078.078,0,0,1,81.081,90.251Zm.045-.084h2.09l.03,0h.016l.03-.008.007,0,.039-.023.034-.034.01-.022a.344.344,0,0,1,.018-.036v0l.006-.022c0-.008,0-.016,0-.025h0v-.474A1.225,1.225,0,0,1,83.9,88.5a1.715,1.715,0,0,1,.475-.222c.056-.019.113-.039.167-.061.093-.036.184-.079.279-.125s.223-.106.342-.15a1.193,1.193,0,0,1,1.232.292c.047.046.092.1.136.143a2.244,2.244,0,0,0,.243.238.441.441,0,0,1,.04.023l.007,0a.314.314,0,0,0,.043.012h.049l.03-.009h.005l.02-.008,0,0,.025-.016,0,0,.012-.011.012-.011.014-.014.012-.012,1.32-1.32.034-.033c.022-.022.043-.042.063-.063l.006-.006a.242.242,0,0,1,.021-.023l0-.006c.008-.013.015-.025.021-.037v0l.01-.049v-.014l0-.018c0-.006,0-.011,0-.017s-.005-.019-.007-.028v0l0-.007-.011-.019a.262.262,0,0,1-.02-.024l-.011-.014-.005-.006,0,0-.009-.009-.238-.238a2.2,2.2,0,0,1-.228-.249,1.183,1.183,0,0,1-.232-.687,1.527,1.527,0,0,1,.2-.692,6.268,6.268,0,0,0,.253-.635v0l.007-.019a1.218,1.218,0,0,1,1-.8,3.009,3.009,0,0,1,.434-.011l.164,0h.071l.024-.008.034-.007.021-.011.013-.01.007,0,.015-.015.012-.012.006-.011.015-.025h0a.4.4,0,0,1,.014-.05c0-.008,0-.018,0-.027,0-.079,0-.16,0-.237,0-.04,0-.08,0-.121V81.253h0a.234.234,0,0,1-.014-.045l-.009-.019-.006-.011L90,81.16l-.022-.02h0a.364.364,0,0,1-.032-.019l-.012-.008-.018-.005L89.9,81.1h-.144l-.153,0a1.854,1.854,0,0,1-.614-.054,1.172,1.172,0,0,1-.553-.362,1.722,1.722,0,0,1-.275-.54c-.013-.036-.026-.072-.04-.109-.046-.119-.1-.231-.152-.349-.041-.088-.083-.179-.122-.274a1.178,1.178,0,0,1-.057-.736,1.567,1.567,0,0,1,.494-.735l.025-.025.057-.057c.038-.037.073-.072.109-.11l.015-.016.007-.011.014-.024a.352.352,0,0,1,.012-.049l0-.009h0l0-.023v0a.24.24,0,0,1-.013-.038.253.253,0,0,1-.006-.036l-.013-.021,0-.007-.016-.016,0-.005-1.149-1.149-.1-.1c-.065-.065-.132-.133-.2-.2L87,76.025l-.005-.005A.35.35,0,0,1,86.95,76l-.006,0-.02,0-.03-.009h-.042l-.033.008h0l-.011,0-.036.021-.021.016h0l-.012.012c-.045.045-.091.092-.135.137a3.835,3.835,0,0,1-.288.279,1.217,1.217,0,0,1-.7.288,1.339,1.339,0,0,1-.707-.17,6.189,6.189,0,0,0-.618-.254,1.3,1.3,0,0,1-.582-.354,1.188,1.188,0,0,1-.291-.6,2.278,2.278,0,0,1-.019-.354V74.65c0-.005,0-.013,0-.021s0-.012,0-.018a.278.278,0,0,1-.006-.032l-.011-.017c-.005-.008-.011-.018-.017-.03l-.034-.034L83.3,74.48l0,0h0l-.034-.009H81.146l-.028.009a.256.256,0,0,1-.04.007l-.019.01-.013.01-.011.007-.008.007,0,0-.009.01,0,0L81,74.546l-.013.019,0,0,0,.006c0,.011-.005.02-.008.028l0,.011,0,.005h0c0,.01,0,.022,0,.033v.456a1.221,1.221,0,0,1-.426.974,1.731,1.731,0,0,1-.536.27l-.118.043c-.109.041-.213.09-.323.142s-.209.1-.32.141a1.186,1.186,0,0,1-1.257-.275c-.058-.056-.116-.115-.171-.171-.07-.071-.143-.145-.217-.215l0,0-.005,0L77.577,76a.263.263,0,0,1-.041-.008l-.032-.011H77.5l-.02,0-.015,0h0a.394.394,0,0,1-.041.01L77.408,76l-.015.01-.023.018h0l-1.35,1.35-.034.034c-.022.021-.044.044-.066.066L75.9,77.5l0,0a.281.281,0,0,1-.014.032.236.236,0,0,1-.018.03l-.007.024v0c0,.017,0,.033,0,.048a.228.228,0,0,1,.016.045c.006.011.011.023.015.032l0,.006,0,0,.018.018.016.016c.051.053.1.1.155.155l.077.077.059.059c.045.045.092.091.134.142a1.233,1.233,0,0,1,.278.7,1.388,1.388,0,0,1-.18.708,5.979,5.979,0,0,0-.252.618,1.244,1.244,0,0,1-.358.575,1.2,1.2,0,0,1-.626.286,3.116,3.116,0,0,1-.49.017l-.163,0H74.5l-.026.007-.022.006-.005,0-.033.019-.012.012-.02.02-.007.011h0l-.014.025-.006.011-.012.073c0,.24,0,.484,0,.719,0,.121,0,.242,0,.363v.689c0,.037,0,.074,0,.11,0,.065,0,.127,0,.187a.326.326,0,0,1,.012.058l.011.017c.005.008.012.018.018.03l.03.031.01.007.01.006.021.008.014.006.024.006h.158l.14,0a1.8,1.8,0,0,1,.639.064,1.244,1.244,0,0,1,.58.428,1.7,1.7,0,0,1,.221.469c.016.047.033.095.051.141.039.1.085.2.133.3s.1.222.149.34a1.169,1.169,0,0,1,.028.714,1.614,1.614,0,0,1-.489.708l-.035.035-.059.057c-.04.038-.077.074-.111.112a.26.26,0,0,0-.015.024l0,0-.008.02v.005c0,.01-.006.021-.009.031v0h0a.57.57,0,0,1,0,.062l.01.033.014.022.01.018,0,0,.017.018.171.171.474.474.269.27c.175.177.356.359.537.536l.025.021.015.013,0,0,.025.014h0a.322.322,0,0,0,.043.012h.041l.03-.007.008,0,.007,0,.036-.021.006,0,.041-.041c.047-.046.094-.094.139-.141a3.085,3.085,0,0,1,.351-.326,1.175,1.175,0,0,1,.654-.232,1.481,1.481,0,0,1,.723.2c.181.084.373.161.6.242a1.252,1.252,0,0,1,.576.376,1.218,1.218,0,0,1,.273.644,1.729,1.729,0,0,1,.009.235c0,.018,0,.037,0,.055v.358c0,.012,0,.02,0,.028a.235.235,0,0,1,.014.044l.009.019.007.011.012.016.007.005a.355.355,0,0,1,.036.031l.007,0,.012.007.005,0,.028.008.01,0Zm2.315-.013.008,0a.089.089,0,0,0,.08-.009.09.09,0,0,0-.007-.023.1.1,0,0,1-.038,0,.091.091,0,0,1-.072-.052.083.083,0,0,0-.02.01.089.089,0,0,0,.049.066l0,0Zm-.132,0v0l0,0Zm.229-.037a.09.09,0,0,1,0,.018.075.075,0,0,0,.011-.013Zm-.109-.038a.089.089,0,0,0,.081.028Zm-.039-.013a.073.073,0,0,0,0,.012l.012-.008ZM84,89.357l.171.017a.041.041,0,0,1,.022-.079l-.153-.075a.078.078,0,0,1-.04.138Zm-3.779-.019a.09.09,0,0,0-.016.035l.168-.015a.09.09,0,0,0-.045-.046.093.093,0,0,1-.107.027Zm3.972-.031v0Zm-4.024-.063a.085.085,0,0,0,0,.021l.158-.063a.089.089,0,0,0-.1-.027l.011.012-.011-.012h0a.088.088,0,0,0-.053.066l.064-.032Zm-.052-.055h0Zm-.086-.107a.1.1,0,0,0,.007.017l.012-.013Zm.049-.106a.1.1,0,0,1-.005.034l-.025.075.1-.111A.089.089,0,0,0,80.078,88.977Zm-.171.04a.087.087,0,0,0,.029.037l.036-.083-.042-.008Zm4.479-.12a.089.089,0,0,0-.025.094l.04-.014.031-.015-.031.015.039-.013-.017-.058A.09.09,0,0,0,84.386,88.9Zm-.039.091h0l-.024-.054,0,0ZM79.9,88.96l.026,0,.027-.062a.088.088,0,0,0-.051.05ZM80,88.9l.007,0v0Zm6.843-.079,0,.014.02,0-.013-.012Zm-9.382,0,0,.014a.088.088,0,0,0,.027-.008.077.077,0,0,1-.016-.011Zm.1-.016,0,.027a.082.082,0,0,0,.025-.016.088.088,0,0,0,.031,0l-.008-.019-.007,0,0-.005-.013-.03,0,0-.011-.024-.016-.037s0,0,0,.006l-.01-.023v0l-.006-.015h0l0,0,0,0h0l0,0,.009.08,0,.054Zm9.3,0a.086.086,0,0,0,.015.016.087.087,0,0,0,.024-.025.1.1,0,0,1-.015-.028l0-.007a.1.1,0,0,1-.01.024A.089.089,0,0,1,86.862,88.8Zm-.142-.017a.09.09,0,0,0,.027,0l-.023-.046.033-.044a.082.082,0,0,1,.046-.032l0-.007a.1.1,0,0,0-.023,0l-.068.092A.092.092,0,0,0,86.72,88.782Zm-.033-.008.019.006a.088.088,0,0,1-.01-.017Zm.162,0v0l.007-.014a.087.087,0,0,0,0-.056ZM77.523,88.7a.087.087,0,0,0,0,.058l0,.01,0-.009A.087.087,0,0,0,77.523,88.7ZM87,88.626l.1.133h0l-.052-.069.056.061a.09.09,0,0,0,.01-.04l-.039-.047.039.039a.087.087,0,0,0-.023-.054A.088.088,0,0,0,87,88.626Zm-.13.063a.092.092,0,0,1,.016.029.083.083,0,0,1,.012-.031l-.011-.012A.087.087,0,0,0,86.868,88.689Zm-9.518-.012a.091.091,0,0,0-.011.015l-.007.013Zm9.519-.013,0,.013.013-.007Zm-1.038-.083a.089.089,0,0,0-.055.088l.009,0,.035-.035,0,0,0,0h0l0-.008A.088.088,0,0,0,85.831,88.581Zm-8.345.081v.007l.007,0Zm9.3-.023h.006l0,0Zm-1.313-.171.027.17a.084.084,0,0,0,.024-.015v-.071l0,.067a.027.027,0,1,1,.052.014v-.005l0-.077v.056l.018-.143a.09.09,0,0,0-.062.041A.088.088,0,0,0,85.474,88.468Zm-.2.08.023.062.043-.017-.032-.084A.087.087,0,0,0,85.278,88.548Zm0,.007.022.053-.02-.059Zm-6.756.024.01.013s0,0,0,0l-.005-.008Zm7.331,0a.093.093,0,0,1,0,.015l.013-.016Zm2.759-1.524h.014l0-.008,0,.008h0a.034.034,0,1,0,.032-.057L88.648,87a.1.1,0,0,1-.032.01v0h0ZM75.7,87.015a.09.09,0,0,0,.02.018l.02-.03.022,0h0a.1.1,0,0,1-.032-.018A.09.09,0,0,0,75.7,87.015Zm.15-.006-.01.017.017,0A.077.077,0,0,0,75.847,87.009Zm-.067,0,.012,0a.087.087,0,0,1,.033.012A.087.087,0,0,0,75.842,87l-.007-.008A.087.087,0,0,1,75.78,87.009ZM88.555,87l.022,0L88.564,87h-.006Zm.121-.024a.082.082,0,0,1,.017.02.085.085,0,0,0,.007-.031l-.019,0Zm-.09.015a.088.088,0,0,0,.036,0l.019-.007-.009,0Zm.009-.159a.089.089,0,0,0-.059.036Zm-.136-.872a.088.088,0,0,0,.008.061l.135-.109a.085.085,0,0,0-.03-.016l-.016.01a.093.093,0,0,1-.048.049A.1.1,0,0,1,88.459,85.962Zm.083-.068a.088.088,0,1,0-.035.038A.087.087,0,0,0,88.543,85.893Zm.017,0v0l0,0Zm-12.729-.069.156.074a.088.088,0,0,0,0-.032l-.071-.026.07.023a.09.09,0,0,0-.02-.041.1.1,0,0,1-.03,0,.091.091,0,0,1-.059-.03A.09.09,0,0,0,75.831,85.825Zm12.519-.251.171.016a.086.086,0,0,0-.011-.032l-.014,0a.09.09,0,0,1-.067,0,.1.1,0,0,1-.019-.01h-.044A.084.084,0,0,0,88.35,85.575ZM75.855,85.54l.013.008a.082.082,0,0,1,.013-.018Zm12.517,0,.033,0a.089.089,0,0,1-.016-.016A.091.091,0,0,0,88.372,85.539Zm.035-.021a.089.089,0,1,0,.038,0A.088.088,0,0,0,88.407,85.519Zm-12.571,0a.081.081,0,0,0,.013.015l.039-.011.007-.006.043-.031.048.023h0A.087.087,0,0,0,76,85.453Zm12.536-1.1a.182.182,0,0,0,.02.141.208.208,0,0,0,.125.1.253.253,0,0,0,.041.006l.224-.225a.212.212,0,0,0-.028-.1.2.2,0,0,0-.118-.1.24.24,0,0,0-.258.153l0,.014Zm-12.928.148a.089.089,0,0,0,.156-.051l-.079.02.079-.022a.085.085,0,0,0,0-.018Zm-.009-.008h0Zm0,0h0Zm-.109-.163a.09.09,0,0,0,.029.005.081.081,0,0,1,.036-.084.1.1,0,0,1,.054-.016.089.089,0,0,0-.017-.042Zm.12-.08a.089.089,0,1,0-.02.053A.086.086,0,0,0,75.445,84.317Zm-.215.018a.09.09,0,0,0,.039,0,.084.084,0,0,1,.019-.072.091.091,0,0,1,.038-.028.09.09,0,0,0-.01-.027l-.041.062.035-.071a.088.088,0,0,0-.017-.017ZM88.924,84.3h0l0-.007,0,0,.007-.006a.132.132,0,0,1,.023-.024l0,0,.021-.014,0,0L89,84.23h0c.021-.014.043-.026.063-.037a.158.158,0,0,1,.035-.022.106.106,0,0,1,.042-.011l.032-.01h0l.031-.007a.14.14,0,0,1,.046-.015.12.12,0,0,1,.044,0h.089c.056,0,.114,0,.171,0a1.993,1.993,0,0,0,.5-.026.778.778,0,0,0,.579-.757c0-.09,0-.181,0-.27,0-.045,0-.091,0-.136V81.526c0-.027,0-.054,0-.081,0-.06,0-.119,0-.176l-.426-.095v0a.1.1,0,0,1,.016.041.1.1,0,0,1,0,.054v1.713c0,.04,0,.08,0,.12,0,.078,0,.158,0,.237a.093.093,0,0,1,.006.026h0l0,.013a.12.12,0,0,1,0,.016.135.135,0,0,1-.017.046l0,.009-.007.023h0a.252.252,0,0,1-.011.026l-.006.01,0,0a.1.1,0,0,1-.029.05h0l-.005.005h0l-.012.011-.012.012a.548.548,0,0,1-.05.047l0,0-.023.016,0,0-.018.01a.386.386,0,0,1-.046.023l0-.011-.009.007h.006l-.007,0a.118.118,0,0,1-.047.016.122.122,0,0,1-.029,0h-.006l-.024,0h-.049l-.168,0a2.869,2.869,0,0,0-.408.01,1.034,1.034,0,0,0-.664.359.461.461,0,0,1,.094,0l.01,0a.376.376,0,0,1,.237.188Q88.917,84.282,88.924,84.3Zm.984-.768a.088.088,0,0,0,.042.157.086.086,0,0,0,.017-.018l-.058-.139Zm-15.536.136a.086.086,0,0,0,.019.017l0-.014,0-.005Zm15.678-.047a.079.079,0,0,1-.011.027.088.088,0,0,0,.029-.006Zm-15.83-.1a.089.089,0,0,0,.048.008l.074-.064a.087.087,0,0,0,0-.024l-.02-.006.006-.009-.067.01.068-.011.005-.012-.006-.009-.143.014a.086.086,0,0,0-.008.018.049.049,0,0,1,.039.086Zm.218,0h0Zm15.522-.011,0,0h0Zm-15.6-.066s0,.006,0,.009l.006-.005Zm-.015-.044h0Zm15.617-2.28h0Zm-15.522,0h.005v-.005Zm-.031-.009a.091.091,0,0,0,.026.008.08.08,0,0,0,.006-.013l0-.006a.084.084,0,0,1-.043-.03A.088.088,0,0,1,74.4,81.108Zm15.537-.023a.086.086,0,0,0,.008.023l.022,0,.059-.068a.088.088,0,0,0-.009-.058.09.09,0,0,0-.048.018l-.006.026h0l0,.009ZM74.4,81a.09.09,0,0,0,0,.026.087.087,0,0,0,.024.048L74.408,81Zm-.05.032.015.01a.088.088,0,0,1,.018.02.09.09,0,0,1-.012-.041.089.089,0,0,1,0-.032l-.014,0A.089.089,0,0,0,74.354,81.032Zm.025-.066h.01l.006-.009v0Zm14.912-.625-.029.171a.089.089,0,0,0,.029-.171Zm-14.215.149a.088.088,0,0,0,.042.016l-.034-.166a.089.089,0,0,0-.045.091.087.087,0,0,0,.032.056v-.064Zm.12-.128a.1.1,0,0,1,.019.043.1.1,0,0,1,0,.028l.024-.039-.04-.084a.087.087,0,0,0-.015.017Zm-.02-.019.008.006-.006-.011Zm-.1-.009h0Zm13.93-.1a.086.086,0,0,0-.049.032.039.039,0,1,0,.067-.034h-.013l-.04.032Zm-.127.06a.082.082,0,0,0,.038.019.09.09,0,0,1,.016-.057h0Zm.12-.076.023,0,0,0a.083.083,0,0,0-.006-.025l-.036.026Zm-13.439-.042h0l0,0-.006,0ZM88.4,79.215a.089.089,0,0,0,.146-.074l-.162.056a.083.083,0,0,0,.015.017l.074-.035Zm-.032-.129.015.012,0,0,.013-.018Zm-.022-.035a.089.089,0,0,0,.019.031l.036-.008.017-.023.053.008a.087.087,0,0,1,.033.012.089.089,0,0,0,.014-.035Zm-12.49-.046.17.025a.086.086,0,0,0-.016-.042l-.026,0a.089.089,0,0,1-.025.008.085.085,0,0,1-.063-.012h-.026A.084.084,0,0,0,75.86,79.006Zm.068-.023.021,0h.014l-.017,0h.025A.085.085,0,0,0,76,78.971a.088.088,0,1,0-.074.011l.023,0Zm.068,0h.013L76,78.977Zm-.118,0H75.9l-.01-.009Zm-.06-.194h0Zm.049-.1a.089.089,0,0,0-.047.1l.158-.07a.089.089,0,0,0-.109-.027h0l.018.022Zm12.764,0h0Zm-.006-.87.014.012a.083.083,0,0,0,.007-.025A.084.084,0,0,1,88.626,77.811Zm-12.892-.051a.086.086,0,0,0,.04.008l.012-.005-.01-.053-.008,0A.087.087,0,0,0,75.734,77.761Zm12.884-.04.035.016a.089.089,0,0,0,.025-.021.091.091,0,0,0-.016-.039l-.018,0a.1.1,0,0,1-.021.006.081.081,0,0,1-.078-.026.086.086,0,0,0-.022.02v.006l.045.02h0l.054.024Zm-12.759-.011v.024h0l.008-.006a.089.089,0,0,0,0-.013Zm.026.018h0v0Zm-.01-.007v0h0Zm12.645-.043h0Zm.128-.006.013,0,0-.006ZM75.88,77.525h0Zm12.69-.134a.087.087,0,0,0-.047.014.088.088,0,0,0-.036.1l.021-.014a.08.08,0,0,1,.056-.057.094.094,0,0,1,.039,0l.029-.019A.09.09,0,0,0,88.569,77.391Zm-2.954-1.326.008.1a.088.088,0,0,0,.043-.028v0a.086.086,0,0,1-.04-.044Zm-.186.075a.089.089,0,0,0,.034.021l.013-.172a.089.089,0,0,0-.072.069l-.042-.011-.031.083a.049.049,0,0,1,.1.008l.019-.068ZM78.7,76.1a.09.09,0,0,0,.054.058l.016-.17-.009,0-.019.08.011-.077a.091.091,0,0,0-.032.021.081.081,0,0,1-.006.064A.1.1,0,0,1,78.7,76.1Zm-.148-.032a.087.087,0,0,0,.032.043l.067-.159a.088.088,0,0,0-.044,0,.077.077,0,0,1-.02.069.1.1,0,0,1-.021.018Zm7.263-.012.01.021,0-.009,0-.007ZM86.969,76l0,0,0,0Zm-1.36-.009V76l.017-.008ZM86.966,76h.012l.079-.109a.089.089,0,0,0-.015-.033.091.091,0,0,0-.046.009h0v0a.09.09,0,0,0-.029-.037.087.087,0,0,0-.025.009l0,.049a.1.1,0,0,1,0,.032l-.006.068h0a.021.021,0,0,1,.039.014Zm-1.343-.012h0Zm-8.127,0h0Zm-.012-.011v.006l0,0Zm-.221-.046.043.044-.042-.055A.09.09,0,0,0,77.263,75.926Zm.262-.061a.088.088,0,0,0-.011.023.086.086,0,0,0,0,.061.088.088,0,0,0,.013-.065A.091.091,0,0,0,77.524,75.864Zm-.066-.012.019.088a.088.088,0,0,0-.019-.088Zm-.009-.041.008.034a.081.081,0,0,1,.026-.025A.086.086,0,0,0,77.449,75.811Zm2.634-.161a.09.09,0,0,0,.064,0l-.105-.133a.091.091,0,0,0-.015.044.081.081,0,0,1,.052.053A.1.1,0,0,1,80.083,75.65Zm4.276-.018.028.011.031-.08a.087.087,0,0,0-.046.007A.1.1,0,0,1,84.359,75.632Zm-4.332-.05a.088.088,0,0,0,.015.036.089.089,0,0,0,.019.02.09.09,0,0,0-.034-.056Zm3.38-.945a.089.089,0,0,0,.166-.04l-.008,0a.09.09,0,0,1-.042.04.083.083,0,0,1-.089-.009Zm-.005.011h0Zm.054-.022a.087.087,0,0,0,.081-.019ZM80.944,74.6l-.025.025a.09.09,0,0,0,.047-.024.084.084,0,0,0,0-.01A.081.081,0,0,1,80.944,74.6Zm-.1,0a.088.088,0,0,0,.034.021h0V74.6Zm0,0,.039,0v0l-.043-.007Zm-.016-.027a.091.091,0,0,0,.008.016v-.014Zm0-.005.01,0v-.025l-.012.01A.089.089,0,0,0,80.819,74.564Zm2.578,0,.005,0a.079.079,0,0,1,.066-.054.09.09,0,0,1,.049,0,.028.028,0,1,0-.039-.04l0,.008a.08.08,0,0,1-.055.041l-.018.015A.087.087,0,0,0,83.4,74.56Zm-.014-.008.006,0s0-.006,0-.009Zm-2.568-.019v0l0,0Zm.24-.048,0,0v0Zm0-.047a.089.089,0,1,0-.02-.051l.02.008Zm7.634,3.114a.031.031,0,0,1-.008-.032A.22.22,0,0,0,88.687,77.552Zm-12.973-.076a.28.28,0,0,0,.016-.033.035.035,0,0,1-.016.033Zm1.87-1.65-.015-.009.032.008Zm3.486-1.518h-.015l.029-.007Z" transform="translate(-73.567 -73.7)" fill="var(--icon-color, #888)"/>
6
+ </g>
7
+ <g transform="translate(78.463 78.598)">
8
+ <path d="M333.614,330.746c0,.083,0,.165-.01.248l-.012.136-.006.053c.008-.065,0,.014-.006.028a3.481,3.481,0,0,1-.118.49c-.024.075-.051.148-.081.222s.016-.033-.006.014c-.008.02-.018.039-.028.059-.018.039-.037.079-.057.116a3.49,3.49,0,0,1-.254.419l-.03.041-.024.031-.024.031a.326.326,0,0,1-.033.039c-.055.065-.112.13-.171.191s-.108.108-.167.159l-.087.077-.049.041c-.01.008-.071.053-.022.018a3.335,3.335,0,0,1-.411.266c-.069.037-.138.073-.209.1l-.049.022c-.049.02-.1.039-.146.057a3.554,3.554,0,0,1-.47.132c-.039.008-.079.016-.118.022,0,0-.085.014-.041.006l-.041.006c-.087.01-.171.016-.258.02a3.267,3.267,0,0,1-.519-.022c-.016,0-.075-.012-.016,0l-.053-.008c-.039-.006-.079-.014-.118-.022-.087-.018-.173-.037-.258-.063s-.151-.045-.224-.073l-.11-.041c-.053-.022-.012-.006,0,0l-.071-.031a3.276,3.276,0,0,1-.431-.238c-.065-.041-.128-.087-.189-.134.045.033,0,0-.012-.01l-.049-.041c-.033-.028-.065-.055-.1-.085a3.184,3.184,0,0,1-.338-.352l-.049-.061-.061-.083c-.049-.071-.1-.142-.142-.216s-.077-.134-.112-.2c-.02-.039-.039-.077-.057-.116-.008-.016-.014-.031-.022-.047-.035-.079.02.055-.012-.026a3.349,3.349,0,0,1-.151-.476q-.027-.118-.047-.236c0-.018-.006-.035-.008-.053.01.059,0,0,0-.016-.006-.049-.01-.1-.014-.15a3.548,3.548,0,0,1,0-.521c0-.035.006-.073.01-.108,0,0,.012-.085.006-.041s.008-.043.006-.041c.014-.089.031-.175.053-.262a3.527,3.527,0,0,1,.151-.462c.02-.047-.03.063.006-.014.008-.016.014-.031.022-.047.018-.039.037-.079.057-.116.037-.073.077-.146.12-.214s.083-.132.128-.195c.022-.031.045-.063.069-.094-.033.045,0,0,.01-.012s.031-.039.049-.059a3.394,3.394,0,0,1,.331-.342c.031-.03.065-.057.1-.085l.039-.033s.065-.051.031-.024l.031-.024.041-.03c.035-.026.071-.049.106-.073a3.283,3.283,0,0,1,.431-.238l.059-.028c.047-.02-.065.026.014-.006l.1-.037c.083-.03.165-.057.25-.081s.153-.039.232-.057c.043-.01.087-.018.132-.024l.053-.008c-.065.01.022,0,.03,0a3.528,3.528,0,0,1,.519-.02c.083,0,.163.01.244.02l.053.006c-.059-.008,0,0,.016,0,.049.008.1.016.146.026a3.2,3.2,0,0,1,.482.138c.037.014.073.027.11.043s-.063-.03.014.006l.047.022a2.535,2.535,0,0,1,.23.118c.067.037.134.079.2.12l.1.065.053.037c.01.008.071.053.022.016a3.563,3.563,0,0,1,.362.327c.053.055.1.114.153.173.022.026.043.053.065.081-.035-.045,0,0,.008.012l.045.063a3.258,3.258,0,0,1,.252.421c.018.035.035.071.051.106.008.016.014.031.022.047.035.077-.014-.033.006.014.033.081.063.163.09.246a3.251,3.251,0,0,1,.114.478s.014.085.006.041.006.043.006.041l.012.122c0,.09,0,.179,0,.266a.3.3,0,0,0,.59,0,3.643,3.643,0,0,0-.671-2.1,3.71,3.71,0,0,0-1.735-1.32,3.639,3.639,0,0,0-2.756,6.728,3.71,3.71,0,0,0,2.262.258,3.659,3.659,0,0,0,2.851-2.969,3.764,3.764,0,0,0,.049-.594.3.3,0,0,0-.3-.3A.3.3,0,0,0,333.614,330.746Z" transform="translate(-326.835 -327.021)" fill="var(--icon-color, #888)"/>
9
+ <path d="M326.155,330.112a3.791,3.791,0,0,1-1.564-.339,3.723,3.723,0,0,1-2.159-3.667,3.782,3.782,0,0,1,.85-2.1,3.749,3.749,0,0,1,4.132-1.125,3.8,3.8,0,0,1,1.776,1.351,3.738,3.738,0,0,1,.688,2.151s0,0,0,0a3.87,3.87,0,0,1-.05.608,3.743,3.743,0,0,1-2.921,3.042A3.822,3.822,0,0,1,326.155,330.112Zm.008-7.275a3.564,3.564,0,0,0-2.744,1.281,3.606,3.606,0,0,0-.81,2,3.546,3.546,0,0,0,2.055,3.491,3.611,3.611,0,0,0,2.209.252,3.563,3.563,0,0,0,2.781-2.9q.02-.127.032-.252a.41.41,0,0,1-.186.055.35.35,0,0,1-.226-.071l-.012.13v0h0c0,.016,0,.027-.006.035a3.567,3.567,0,0,1-.121.5c-.026.081-.056.16-.082.226a.209.209,0,0,1-.009.027.117.117,0,0,1-.012.022l-.015.031c-.017.037-.036.076-.059.119a3.593,3.593,0,0,1-.26.429l-.03.042h0l-.012.018,0,.007h0v0h0l-.026.035,0,0h0l0,0a.41.41,0,0,1-.04.048c-.066.078-.121.139-.173.193s-.115.115-.173.165l-.042.037-.044.039-.026.022-.023.019,0,0-.022.017h0a3.43,3.43,0,0,1-.422.273c-.083.045-.151.079-.215.108l-.049.021h0l-.016.007h0l-.019.008c-.037.015-.076.031-.116.045a3.655,3.655,0,0,1-.482.135h0c-.039.008-.079.016-.119.022h0v0l-.028,0-.023,0-.035,0c-.082.009-.165.016-.264.02a3.36,3.36,0,0,1-.535-.022l-.014,0h0l-.031,0-.022,0h0c-.041-.006-.082-.014-.121-.022-.075-.015-.171-.036-.267-.065s-.161-.049-.23-.075l-.055-.021-.055-.02h-.005l-.038-.017-.033-.014h0a3.4,3.4,0,0,1-.442-.244c-.062-.039-.126-.085-.194-.138h0l-.014-.011h0l-.023-.019-.026-.021c-.035-.029-.067-.057-.1-.087a3.29,3.29,0,0,1-.347-.361l-.05-.062h0l0,0,0,0,0,0h0l-.023-.03-.032-.043c-.058-.084-.1-.154-.145-.222s-.083-.145-.116-.211l-.015-.029c-.014-.029-.029-.058-.043-.089l-.012-.026,0-.005a.119.119,0,0,1-.013-.023.219.219,0,0,1-.008-.022v0a3.393,3.393,0,0,1-.155-.489c-.018-.08-.034-.161-.048-.241v-.006c0-.007,0-.015,0-.022s0-.021,0-.031h0l0-.014c-.006-.051-.01-.1-.014-.154a3.676,3.676,0,0,1,0-.48l-.015.015.032-.207.007-.059h0c.014-.09.032-.178.055-.27a3.566,3.566,0,0,1,.144-.445.12.12,0,0,1,.007-.022l.009-.018,0-.007v0l.009-.02.012-.026c.017-.037.036-.076.059-.119.046-.09.084-.158.123-.219s.081-.13.132-.2c.022-.032.046-.064.07-.1h0l.012-.016c.015-.019.031-.039.05-.06a3.493,3.493,0,0,1,.338-.35c.022-.02.045-.04.067-.06l.03-.026.04-.034,0,.005,0-.005,0,0,.015-.011.017-.013.014-.009,0,0,.018-.012h0l.041-.03c.036-.026.073-.051.109-.074a3.368,3.368,0,0,1,.411-.23l0-.005.083-.034.007,0,.021-.008h0l.046-.018.052-.02c.1-.035.178-.061.256-.082s.161-.041.237-.058c.047-.011.093-.019.14-.025l.023,0,.031,0h0l.02,0,.009,0a3.638,3.638,0,0,1,.532-.02c.1,0,.175.011.252.02l.032,0h.022l.021,0c.053.008.1.016.146.026a3.3,3.3,0,0,1,.5.142l.086.033.019.006.017.008.007,0h0l.02.009.026.012a2.624,2.624,0,0,1,.237.121c.058.032.12.07.2.122l0,0,.047.032.049.033.028.02.024.017.006,0,.02.015h0l.015.012h0a3.649,3.649,0,0,1,.355.323c.048.049.1.106.158.178.022.026.045.055.066.082h0l.011.015.022.031.022.031a3.355,3.355,0,0,1,.259.433c.018.035.036.071.052.108l.012.026.009.02v0l0,.007.009.018a.116.116,0,0,1,.007.02c.026.066.053.138.081.224a3.372,3.372,0,0,1,.117.491v0h0l.016.167a.411.411,0,0,1,.209-.068.346.346,0,0,1,.194.049,3.531,3.531,0,0,0-.637-1.717,3.626,3.626,0,0,0-1.694-1.289A3.435,3.435,0,0,0,326.163,322.837Zm-.434,6.483h0l.033.005a3.2,3.2,0,0,0,.505.021c.093,0,.173-.01.251-.019h0l.013,0,.023,0h.015l.029,0c.037-.006.074-.013.113-.021a3.464,3.464,0,0,0,.459-.129c.037-.013.072-.027.11-.043l.033-.013h0l.046-.02c.06-.026.124-.059.2-.1a3.265,3.265,0,0,0,.384-.247l0,0h0l.013-.011.017-.013.025-.021.023-.019.042-.038.044-.039c.053-.046.106-.1.161-.154s.1-.111.167-.187l0-.005a.234.234,0,0,0,.024-.028h0l.012-.018,0-.006h0l.027-.035,0,0h0l0,0,.03-.041a3.418,3.418,0,0,0,.247-.408c.022-.042.04-.078.055-.112l0,0c.009-.019.018-.036.025-.052l0,0,0,0v0c.026-.065.055-.141.079-.218a3.385,3.385,0,0,0,.115-.478l0-.008c0-.007,0-.027.005-.034v0l0-.029.012-.135c.006-.089.01-.168.01-.24,0-.043,0-.086,0-.13s0-.087,0-.132l-.011-.118h0q0-.008,0-.016l0-.022v-.012h0l0-.028a3.18,3.18,0,0,0-.111-.465c-.031-.093-.059-.169-.088-.239l0-.006,0,0-.012-.026-.009-.019,0,0c-.015-.034-.033-.069-.049-.1a3.173,3.173,0,0,0-.245-.41l-.022-.031-.022-.031,0,0-.017-.023,0,0-.048-.059c-.058-.069-.105-.123-.15-.169a3.484,3.484,0,0,0-.335-.3c-.012-.008-.024-.018-.038-.028l-.026-.018-.024-.017-.048-.033-.048-.032c-.078-.05-.138-.086-.193-.117a2.464,2.464,0,0,0-.223-.115l0,0-.02-.009-.026-.012,0,0-.006,0-.107-.042a3.125,3.125,0,0,0-.469-.134c-.046-.009-.09-.017-.142-.025l-.008,0-.021,0-.036,0c-.073-.009-.148-.015-.238-.019a3.451,3.451,0,0,0-.5.019.283.283,0,0,1-.064.009l-.024,0c-.04.005-.08.012-.122.022-.074.017-.152.035-.228.056s-.151.045-.244.079l-.046.018-.051.019h0l-.005,0-.03.014-.026.012h0a3.21,3.21,0,0,0-.419.232c-.034.022-.069.046-.1.071l-.042.03,0,0h0l0,0-.035.026h0l-.006,0-.013.01h0l-.039.034-.03.026c-.021.018-.043.037-.063.056a3.337,3.337,0,0,0-.323.335l0,0c-.016.018-.031.036-.046.055l-.02.025,0,.005c-.017.023-.035.047-.051.07-.049.068-.089.129-.124.189v0c-.036.057-.072.121-.116.208-.022.042-.04.078-.055.112l0,0-.009.02-.012.026,0,0,0,.006a3.408,3.408,0,0,0-.147.45c-.021.085-.038.167-.051.251,0,.01,0,.02,0,.028s0,.025-.005.033v0c0,.006,0,.012,0,.017h0c0,.032-.008.069-.009.1v0a3.462,3.462,0,0,0,0,.508c0,.051.008.1.013.145,0,.007,0,.024,0,.033v0h0s0,0,0,.007,0,.015,0,.023c.013.076.029.153.046.229a3.225,3.225,0,0,0,.147.461h0l.01.021.012.026.009.02,0,0c.012.028.026.055.04.083l.015.03c.031.062.066.125.109.2s.082.131.138.211l.029.039.03.04.046.058a3.121,3.121,0,0,0,.33.344l0,0c.029.028.06.054.092.081l0,0,.022.019.026.022.023.018.009.007c.055.042.107.078.159.111a3.212,3.212,0,0,0,.419.232l.037.016h0a.163.163,0,0,1,.03.012h0l.055.02.054.02c.065.025.136.048.218.071s.182.047.251.061c.039.008.076.015.112.021l.024,0h.008Zm3.559-2.932a.217.217,0,0,0,.069.152.181.181,0,0,0,.133.054.212.212,0,0,0,.211-.207v0a.218.218,0,0,0-.069-.151.181.181,0,0,0-.133-.054A.214.214,0,0,0,329.288,326.388Z" transform="translate(-322.42 -322.663)" fill="var(--icon-color, #888)"/>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="6.411" height="7.595" viewBox="0 0 6.411 7.595">
2
+ <g transform="translate(63.476 34.288) rotate(180)">
3
+ <path d="M60.27,30.4h0a.5.5,0,0,1-.354-.147l-2.705-2.706a.5.5,0,1,1,.707-.707l2.352,2.353,2.352-2.353a.5.5,0,1,1,.707.707l-2.706,2.706A.5.5,0,0,1,60.27,30.4Z" fill="var(--icon-color, #888)"/>
4
+ <path d="M60.27,34.288h0a.5.5,0,0,1-.354-.146l-2.705-2.706a.5.5,0,1,1,.707-.707l2.352,2.352,2.352-2.352a.5.5,0,1,1,.707.707l-2.706,2.706a.5.5,0,0,1-.353.146Z" fill="var(--icon-color, #888)"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="6.411" height="7.596" viewBox="0 0 6.411 7.596">
2
+ <g transform="translate(-57.065 -26.692)">
3
+ <path d="M60.27,30.4h0a.5.5,0,0,1-.354-.147l-2.705-2.706a.5.5,0,1,1,.707-.707l2.352,2.353,2.352-2.353a.5.5,0,1,1,.707.707l-2.706,2.706A.5.5,0,0,1,60.27,30.4Z" fill="var(--icon-color, #888)"/>
4
+ <path d="M60.27,34.288h0a.5.5,0,0,1-.354-.146l-2.705-2.706a.5.5,0,1,1,.707-.707l2.352,2.352,2.352-2.352a.5.5,0,0,1,.707.707l-2.706,2.706A.5.5,0,0,1,60.27,34.288Z" fill="var(--icon-color, #888)"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="31" height="4" viewBox="0 0 31 4" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 2H28.5" stroke="var(--icon-color, #888)" stroke-width="4" stroke-linecap="round"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="18.598" height="20.672" viewBox="0 0 18.598 20.672">
2
+ <g transform="translate(-5 -3.5)">
3
+ <path d="M22.6,28.724V26.649A4.149,4.149,0,0,0,18.448,22.5h-8.3A4.149,4.149,0,0,0,6,26.649v2.075" transform="translate(0 -5.552)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
4
+ <path d="M20.3,8.649A4.149,4.149,0,1,1,16.149,4.5,4.149,4.149,0,0,1,20.3,8.649Z" transform="translate(-1.851)" fill="none" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="19.166" height="24.645" viewBox="0 0 19.166 24.645">
2
+ <g transform="translate(2.12 2.497)">
3
+ <path d="M0,0,14.926,13.9" transform="translate(0 2.875)" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-width="3"/>
4
+ <path d="M0,0,17.72,9.8" transform="matrix(0.259, -0.966, 0.966, 0.259, 0.469, 17.116)" stroke="var(--icon-color, #888)" stroke-linecap="round" stroke-width="3"/>
5
+ </g>
6
+ </svg>
@@ -0,0 +1,91 @@
1
+ {
2
+ "iconImageFiles": [
3
+ {
4
+ "iconName": "calendar",
5
+ "iconPath": "/assets/gravity/icons/calendar.svg"
6
+ },
7
+ {
8
+ "iconName": "check",
9
+ "iconPath": "/assets/gravity/icons/check.svg"
10
+ },
11
+ {
12
+ "iconName": "copy",
13
+ "iconPath": "/assets/gravity/icons/copy.svg"
14
+ },
15
+ {
16
+ "iconName": "download",
17
+ "iconPath": "/assets/gravity/icons/download.svg"
18
+ },
19
+ {
20
+ "iconName": "edit",
21
+ "iconPath": "/assets/gravity/icons/edit.svg"
22
+ },
23
+ {
24
+ "iconName": "eye_closed",
25
+ "iconPath": "/assets/gravity/icons/eye_closed.svg"
26
+ },
27
+ {
28
+ "iconName": "eye_open",
29
+ "iconPath": "/assets/gravity/icons/eye_open.svg"
30
+ },
31
+ {
32
+ "iconName": "forgot_password",
33
+ "iconPath": "/assets/gravity/icons/forgot_password.svg"
34
+ },
35
+ {
36
+ "iconName": "lock",
37
+ "iconPath": "/assets/gravity/icons/lock.svg"
38
+ },
39
+ {
40
+ "iconName": "logout",
41
+ "iconPath": "/assets/gravity/icons/logout.svg"
42
+ },
43
+ {
44
+ "iconName": "mail",
45
+ "iconPath": "/assets/gravity/icons/mail.svg"
46
+ },
47
+ {
48
+ "iconName": "radio-on",
49
+ "iconPath": "/assets/gravity/icons/radio-on.svg"
50
+ },
51
+ {
52
+ "iconName": "radio-off",
53
+ "iconPath": "/assets/gravity/icons/radio-off.svg"
54
+ },
55
+ {
56
+ "iconName": "search",
57
+ "iconPath": "/assets/gravity/icons/search.svg"
58
+ },
59
+ {
60
+ "iconName": "settings",
61
+ "iconPath": "/assets/gravity/icons/settings.svg"
62
+ },
63
+ {
64
+ "iconName": "show_less",
65
+ "iconPath": "/assets/gravity/icons/show_less.svg"
66
+ },
67
+ {
68
+ "iconName": "show_more",
69
+ "iconPath": "/assets/gravity/icons/show_more.svg"
70
+ },
71
+ {
72
+ "iconName": "uncheck",
73
+ "iconPath": "/assets/gravity/icons/uncheck.svg"
74
+ },
75
+ {
76
+ "iconName": "user",
77
+ "iconPath": "/assets/gravity/icons/user.svg"
78
+ },
79
+ {
80
+ "iconName": "x",
81
+ "iconPath": "/assets/gravity/icons/x.svg"
82
+ }
83
+ ],
84
+ "customIcons": [
85
+ {
86
+ "devNote": "dont delete this, because preloader library needs to find al least one valid object inside customIcons[]",
87
+ "iconName": "default",
88
+ "iconData": "<svg width=\"20\" height=\"16\"><circle cx=\"50\" cy=\"50\" r=\"40\" stroke-width=\"4\" fill=\"gray\"/></svg> "
89
+ }
90
+ ]
91
+ }
@@ -0,0 +1,40 @@
1
+ @import "fundamentals/typography/hero.typography";
2
+ @import "shared";
3
+
4
+ .gravity-card-highlight {
5
+ @extend .hr-body-text, .md-regular;
6
+
7
+ background-color: var(--surface-primary);
8
+ border-left: 1.25rem solid var(--bg-highlight-neutro-secondary);
9
+ border-radius: $border-radius-system;
10
+ color: var(--text-primary);
11
+ padding: 1.5rem;
12
+
13
+ .card-row {
14
+ align-items: center;
15
+ display: flex;
16
+ flex-wrap: wrap;
17
+ justify-content: space-between;
18
+ padding: 1rem 1.5rem 1rem 2rem;
19
+
20
+ &.card-header {
21
+ border-bottom: 1px solid var(--divider-primary);
22
+ }
23
+
24
+ &.card-content {
25
+ border: 1px solid var(--divider-primary);
26
+ border-radius: $border-radius-system;
27
+ margin-top: 1rem;
28
+ }
29
+
30
+ .card-item {
31
+ align-items: center;
32
+ display: flex;
33
+ width: 50%;
34
+
35
+ b {
36
+ margin-right: 1rem;
37
+ }
38
+ }
39
+ }
40
+ }
@@ -0,0 +1,101 @@
1
+ @import "./fundamentals/typography/hero.typography";
2
+ @import "shared";
3
+
4
+ ngb-datepicker.gravity-datepicker-dialog {
5
+ background-color: var(--bg-calender-primary);
6
+ border-radius: $border-radius-system;
7
+ box-shadow: 0 0 10px #AAA;
8
+ color: var(--on-bg-calender-primary);
9
+
10
+ .ngb-dp-header {
11
+ background-color: var(--bg-calendar-nav-primary);
12
+ border-top-left-radius: $border-radius-system;
13
+ border-top-right-radius: $border-radius-system;
14
+ color: var(--on-bg-calendar-nav-primary);
15
+ height: 30px;
16
+ min-width: 264px;
17
+ padding: 10px;
18
+
19
+ ngb-datepicker-navigation {
20
+ .ngb-dp-arrow button {
21
+ @extend .hr-label, .sm-regular;
22
+
23
+ border-radius: 50%;
24
+ color: var(--arrow-calendar-active-primary);
25
+ cursor: pointer;
26
+ height: 32px;
27
+ margin: 0;
28
+ outline: none;
29
+ padding: 0;
30
+ width: 32px;
31
+
32
+ span {
33
+ border: none;
34
+ display: inline-block;
35
+ font-size: 28px;
36
+ height: 100%;
37
+ line-height: 30px;
38
+ margin: 0;
39
+ position: relative;
40
+ transform: none;
41
+ width: 100%;
42
+ }
43
+
44
+ &:not([disabled]):hover {
45
+ background-color: var(--bg-arrow-calendar-hover-primary);
46
+ color: var(--arrow-calendar-hover-primary);
47
+ }
48
+
49
+ &[disabled] {
50
+ color: var(--arrow-calendar-disabled-primary);
51
+ cursor: not-allowed;
52
+ }
53
+ }
54
+
55
+ .ngb-dp-arrow:not(.right) button span:before {
56
+ content: "‹";
57
+ }
58
+
59
+ .ngb-dp-arrow.right button span:after {
60
+ content: "›";
61
+ }
62
+
63
+ .ngb-dp-month-name {
64
+ @extend .hr-label, .md-regular;
65
+ }
66
+ }
67
+ }
68
+
69
+ .ngb-dp-content {
70
+ @extend .hr-label, .sm-regular;
71
+
72
+ min-height: 212px;
73
+ min-width: 264px;
74
+ padding: 10px;
75
+
76
+ .ngb-dp-day {
77
+ border-radius: 50%;
78
+ color: var(--number-calender-active-primary);
79
+ outline: none;
80
+
81
+ .btn-light {
82
+ border-radius: 50%;
83
+ outline: none;
84
+
85
+ &:not(.text-muted):hover {
86
+ background-color: var(--bg-number-calendar-hover-primary);
87
+ color: var(--number-calendar-hover-primary);
88
+ }
89
+
90
+ &.text-muted {
91
+ color: var(--number-calendar-disabled-primary);
92
+ }
93
+
94
+ &.bg-primary.text-white {
95
+ background-color: var(--bg-number-calendar-pressed-primary);
96
+ color: var(--number-calendar-pressed-primary);
97
+ }
98
+ }
99
+ }
100
+ }
101
+ }