@tetacom/ng-components 1.0.150 → 1.1.0

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 (208) hide show
  1. package/assets/color-icons.svg +521 -49
  2. package/assets/file-icons.svg +1 -0
  3. package/assets/icons.svg +138 -205
  4. package/component/accordion/accordion-item/accordion-item.component.d.ts +1 -4
  5. package/component/button/button/button.component.d.ts +1 -4
  6. package/component/checkbox/checkbox/checkbox.component.d.ts +1 -2
  7. package/component/date-picker/date-picker/date-picker.component.d.ts +68 -38
  8. package/component/date-picker/date-picker.module.d.ts +16 -19
  9. package/component/date-picker/day-select/day-select.component.d.ts +51 -0
  10. package/component/date-picker/model/date-picker-mode.enum.d.ts +5 -0
  11. package/component/date-picker/month-picker/month-picker.component.d.ts +50 -16
  12. package/component/date-picker/month-select/month-select.component.d.ts +40 -0
  13. package/component/date-picker/public-api.d.ts +4 -5
  14. package/component/date-picker/service/picker-touch.service.d.ts +12 -0
  15. package/component/date-picker/time-part-control/time-part-control.component.d.ts +26 -0
  16. package/component/date-picker/util/date-picker-util.d.ts +15 -0
  17. package/component/date-picker/year-select/year-select.component.d.ts +45 -0
  18. package/component/dropdown/dropdown-base.d.ts +1 -3
  19. package/component/filter/filter.module.d.ts +2 -1
  20. package/component/icon/icon-file/icon-file.component.d.ts +3 -9
  21. package/component/icon/icon.module.d.ts +5 -4
  22. package/component/icon/public-api.d.ts +0 -1
  23. package/component/input/input/input.component.d.ts +1 -3
  24. package/component/message/model/message.d.ts +0 -3
  25. package/component/public-api.d.ts +0 -2
  26. package/component/select/select/select.component.d.ts +1 -4
  27. package/component/select/select.module.d.ts +2 -1
  28. package/component/switch/switch/switch.component.d.ts +1 -4
  29. package/component/table/table-body/table-body.component.d.ts +1 -0
  30. package/component/table/table.module.d.ts +2 -1
  31. package/component/tree/tree.module.d.ts +2 -1
  32. package/directive/hint/hint.directive.d.ts +1 -3
  33. package/directive/only-number/only-number.directive.d.ts +2 -1
  34. package/directive/public-api.d.ts +1 -0
  35. package/directive/scrollable/public-api.d.ts +3 -0
  36. package/directive/scrollable/scrollable/scrollable.component.d.ts +32 -0
  37. package/directive/scrollable/scrollable.directive.d.ts +6 -0
  38. package/directive/scrollable/scrollable.module.d.ts +10 -0
  39. package/esm2020/component/accordion/accordion/accordion.component.mjs +2 -3
  40. package/esm2020/component/accordion/accordion-head/accordion-head.component.mjs +2 -3
  41. package/esm2020/component/accordion/accordion-item/accordion-item.component.mjs +3 -13
  42. package/esm2020/component/button/button/button.component.mjs +3 -18
  43. package/esm2020/component/checkbox/checkbox/checkbox.component.mjs +3 -6
  44. package/esm2020/component/date-picker/date-picker/date-picker.component.mjs +235 -141
  45. package/esm2020/component/date-picker/date-picker.module.mjs +45 -41
  46. package/esm2020/component/date-picker/day-select/day-select.component.mjs +184 -0
  47. package/esm2020/component/date-picker/model/date-picker-mode.enum.mjs +7 -0
  48. package/esm2020/component/date-picker/month-picker/month-picker.component.mjs +237 -33
  49. package/esm2020/component/date-picker/month-select/month-select.component.mjs +148 -0
  50. package/esm2020/component/date-picker/public-api.mjs +5 -6
  51. package/esm2020/component/date-picker/service/picker-touch.service.mjs +34 -0
  52. package/esm2020/component/date-picker/time-part-control/time-part-control.component.mjs +73 -0
  53. package/esm2020/component/date-picker/util/date-picker-util.mjs +142 -0
  54. package/esm2020/component/date-picker/year-select/year-select.component.mjs +189 -0
  55. package/esm2020/component/dropdown/dropdown/dropdown.component.mjs +2 -3
  56. package/esm2020/component/dropdown/dropdown-base.mjs +2 -6
  57. package/esm2020/component/dropdown/dropdown.directive.mjs +1 -1
  58. package/esm2020/component/expand-card/expand-card/expand-card.component.mjs +1 -1
  59. package/esm2020/component/expand-card/expand-item/expand-item.component.mjs +1 -1
  60. package/esm2020/component/expand-panel/expand-panel/expand-panel.component.mjs +1 -1
  61. package/esm2020/component/file-upload/file-upload-area/file-upload-area.component.mjs +1 -1
  62. package/esm2020/component/filter/date-filter/date-filter.component.mjs +1 -1
  63. package/esm2020/component/filter/filter.module.mjs +7 -3
  64. package/esm2020/component/filter/list-filter/list-filter.component.mjs +4 -3
  65. package/esm2020/component/filter/numeric-filter/numeric-filter.component.mjs +1 -1
  66. package/esm2020/component/filter/string-filter/string-filter.component.mjs +1 -1
  67. package/esm2020/component/icon/icon-file/icon-file.component.mjs +6 -20
  68. package/esm2020/component/icon/icon.module.mjs +6 -1
  69. package/esm2020/component/icon/public-api.mjs +1 -2
  70. package/esm2020/component/input/input/input.component.mjs +3 -6
  71. package/esm2020/component/input/input.module.mjs +1 -1
  72. package/esm2020/component/input/text-field/text-field.component.mjs +3 -3
  73. package/esm2020/component/message/message/message.component.mjs +3 -4
  74. package/esm2020/component/message/message-host/message-host.component.mjs +1 -1
  75. package/esm2020/component/message/model/message.mjs +1 -2
  76. package/esm2020/component/modal/dialog/dialog.component.mjs +1 -1
  77. package/esm2020/component/property-grid/property-grid/property-grid-item/property-grid-item.component.mjs +2 -2
  78. package/esm2020/component/public-api.mjs +1 -4
  79. package/esm2020/component/select/select/select.component.mjs +6 -9
  80. package/esm2020/component/select/select.module.mjs +7 -3
  81. package/esm2020/component/switch/switch/switch.component.mjs +7 -19
  82. package/esm2020/component/table/default/boolean-cell/boolean-cell.component.mjs +1 -1
  83. package/esm2020/component/table/default/date-cell/date-cell.component.mjs +1 -1
  84. package/esm2020/component/table/default/date-time-cell/date-time-cell.component.mjs +1 -1
  85. package/esm2020/component/table/default/default-head-cell/default-head-cell.component.mjs +1 -1
  86. package/esm2020/component/table/default/list-cell/list-cell.component.mjs +1 -1
  87. package/esm2020/component/table/default/string-cell/string-cell.component.mjs +1 -1
  88. package/esm2020/component/table/selection-cell/selection-cell.component.mjs +1 -1
  89. package/esm2020/component/table/selection-head-cell/selection-head-cell.component.mjs +1 -1
  90. package/esm2020/component/table/table-body/table-body.component.mjs +11 -6
  91. package/esm2020/component/table/table-head/filter-dropdown-tab/filter-dropdown-tab.component.mjs +1 -1
  92. package/esm2020/component/table/table-head/visibility-dropdown-tab/visibility-dropdown-tab.component.mjs +4 -3
  93. package/esm2020/component/table/table.module.mjs +7 -3
  94. package/esm2020/component/theme-switch/theme-switch/theme-switch.component.mjs +1 -1
  95. package/esm2020/component/tree/tree/tree.component.mjs +6 -4
  96. package/esm2020/component/tree/tree.module.mjs +5 -4
  97. package/esm2020/directive/hint/hint.directive.mjs +3 -6
  98. package/esm2020/directive/only-number/only-number.directive.mjs +12 -2
  99. package/esm2020/directive/public-api.mjs +2 -1
  100. package/esm2020/directive/scrollable/public-api.mjs +4 -0
  101. package/esm2020/directive/scrollable/scrollable/scrollable.component.mjs +96 -0
  102. package/esm2020/directive/scrollable/scrollable.directive.mjs +19 -0
  103. package/esm2020/directive/scrollable/scrollable.module.mjs +33 -0
  104. package/esm2020/locale/en.mjs +1 -3
  105. package/esm2020/locale/ru.mjs +1 -3
  106. package/esm2020/locale/teta-localisation.mjs +1 -1
  107. package/esm2020/observable/animation-frame.mjs +30 -0
  108. package/esm2020/observable/public-api.mjs +2 -1
  109. package/esm2020/pipe/prepend-zero/prepend-zero.module.mjs +18 -0
  110. package/esm2020/pipe/prepend-zero/prepend-zero.pipe.mjs +21 -0
  111. package/fesm2015/tetacom-ng-components.mjs +5483 -5181
  112. package/fesm2015/tetacom-ng-components.mjs.map +1 -1
  113. package/fesm2020/tetacom-ng-components.mjs +3333 -3025
  114. package/fesm2020/tetacom-ng-components.mjs.map +1 -1
  115. package/locale/teta-localisation.d.ts +0 -2
  116. package/observable/animation-frame.d.ts +4 -0
  117. package/observable/public-api.d.ts +1 -0
  118. package/package.json +2 -3
  119. package/pipe/prepend-zero/prepend-zero.module.d.ts +8 -0
  120. package/pipe/prepend-zero/prepend-zero.pipe.d.ts +7 -0
  121. package/style/accordion.scss +6 -28
  122. package/style/assembly-library.scss +1 -4
  123. package/style/assembly-presets.scss +1 -0
  124. package/style/button.scss +13 -16
  125. package/style/checkbox.scss +13 -26
  126. package/style/chips.scss +10 -10
  127. package/style/color.scss +36 -1
  128. package/style/datepicker.scss +24 -139
  129. package/style/drag.scss +1 -1
  130. package/style/dropdown.scss +4 -6
  131. package/style/hint.scss +5 -5
  132. package/style/icon.scss +1 -2
  133. package/style/input.scss +23 -32
  134. package/style/layout.scss +2 -6
  135. package/style/library.scss +17 -0
  136. package/style/list.scss +8 -11
  137. package/style/loader.scss +2 -2
  138. package/style/message.scss +7 -15
  139. package/style/modal.scss +2 -3
  140. package/style/navigation.scss +1 -4
  141. package/style/presets/color-presets.scss +160 -8
  142. package/style/presets/font-presets.scss +25 -26
  143. package/style/presets/shadow-presets.scss +16 -0
  144. package/style/progress.scss +3 -3
  145. package/style/radio.scss +7 -21
  146. package/style/resize-panel.scss +2 -2
  147. package/style/scroll.scss +21 -17
  148. package/style/select.scss +21 -26
  149. package/style/shadow.scss +20 -0
  150. package/style/sidebar.scss +1 -1
  151. package/style/switch.scss +10 -15
  152. package/style/table.scss +15 -17
  153. package/style/tabs.scss +11 -11
  154. package/style/toggle.scss +18 -20
  155. package/style/tokens/basedark.tokens.css +77 -0
  156. package/style/tokens/baselight.tokens.css +61 -0
  157. package/style/tokens/global.tokens.css +235 -0
  158. package/style/tokens/utility.tokens.css +1119 -0
  159. package/style/toolbar.scss +1 -1
  160. package/style/tooltip.scss +6 -8
  161. package/style/tree.scss +4 -4
  162. package/style/util/button-util.scss +58 -0
  163. package/common/model/view-type.model.d.ts +0 -1
  164. package/component/avatar/avatar/avatar.component.d.ts +0 -17
  165. package/component/avatar/avatar.module.d.ts +0 -9
  166. package/component/avatar/model/avatar-color.enum.d.ts +0 -20
  167. package/component/avatar/public-api.d.ts +0 -2
  168. package/component/date-picker/base-calendar.d.ts +0 -49
  169. package/component/date-picker/base-picker.d.ts +0 -60
  170. package/component/date-picker/date-picker/date-calendar/date-calendar.component.d.ts +0 -20
  171. package/component/date-picker/date-range/date-range.component.d.ts +0 -46
  172. package/component/date-picker/date-range/range-calendar/range-calendar.component.d.ts +0 -39
  173. package/component/date-picker/day-picker/day-item/day-item.component.d.ts +0 -9
  174. package/component/date-picker/day-picker/day-picker.component.d.ts +0 -30
  175. package/component/date-picker/model/from-to.model.d.ts +0 -4
  176. package/component/date-picker/model/min-max-date.model.d.ts +0 -4
  177. package/component/date-picker/year-picker/scroll-to-selected-year.directive.d.ts +0 -11
  178. package/component/date-picker/year-picker/year-picker.component.d.ts +0 -24
  179. package/component/divider/divider/divider.component.d.ts +0 -10
  180. package/component/divider/divider.module.d.ts +0 -8
  181. package/component/divider/public-api.d.ts +0 -2
  182. package/component/icon/icon-file/icon-file.module.d.ts +0 -9
  183. package/esm2020/common/model/view-type.model.mjs +0 -2
  184. package/esm2020/component/avatar/avatar/avatar.component.mjs +0 -57
  185. package/esm2020/component/avatar/avatar.module.mjs +0 -28
  186. package/esm2020/component/avatar/model/avatar-color.enum.mjs +0 -22
  187. package/esm2020/component/avatar/public-api.mjs +0 -3
  188. package/esm2020/component/date-picker/base-calendar.mjs +0 -99
  189. package/esm2020/component/date-picker/base-picker.mjs +0 -102
  190. package/esm2020/component/date-picker/date-picker/date-calendar/date-calendar.component.mjs +0 -49
  191. package/esm2020/component/date-picker/date-range/date-range.component.mjs +0 -211
  192. package/esm2020/component/date-picker/date-range/range-calendar/range-calendar.component.mjs +0 -108
  193. package/esm2020/component/date-picker/day-picker/day-item/day-item.component.mjs +0 -15
  194. package/esm2020/component/date-picker/day-picker/day-picker.component.mjs +0 -113
  195. package/esm2020/component/date-picker/model/from-to.model.mjs +0 -2
  196. package/esm2020/component/date-picker/model/min-max-date.model.mjs +0 -2
  197. package/esm2020/component/date-picker/year-picker/scroll-to-selected-year.directive.mjs +0 -26
  198. package/esm2020/component/date-picker/year-picker/year-picker.component.mjs +0 -48
  199. package/esm2020/component/divider/divider/divider.component.mjs +0 -18
  200. package/esm2020/component/divider/divider.module.mjs +0 -20
  201. package/esm2020/component/divider/public-api.mjs +0 -3
  202. package/esm2020/component/icon/icon-file/icon-file.module.mjs +0 -28
  203. package/style/badge.scss +0 -28
  204. package/style/bottombar.scss +0 -5
  205. package/style/divider.scss +0 -15
  206. package/style/presets/view-types.scss +0 -15
  207. package/style/tag.scss +0 -37
  208. package/style/util/scroll-util.scss +0 -4
package/assets/icons.svg CHANGED
@@ -7,9 +7,8 @@
7
7
  <path fill-rule="evenodd" clip-rule="evenodd"
8
8
  d="M6 10.7935C5.06351 10.5934 4.24175 10.2591 3.59101 9.8408C2.49764 9.13792 2 8.28703 2 7.5C2 6.71297 2.49764 5.86208 3.59101 5.1592C4.67368 4.46319 6.22975 4 8 4C9.77025 4 11.3263 4.46319 12.409 5.1592C12.4773 5.20313 12.5433 5.24764 12.607 5.29267C13.5626 5.96819 14 6.76216 14 7.5C14 8.04357 13.7626 8.6176 13.2555 9.15229C13.0284 9.39178 12.7472 9.62337 12.409 9.8408C12.2793 9.92417 12.1428 10.0042 12 10.0805V11.1934C12.2384 11.0865 12.4659 10.9703 12.6813 10.8457C12.7729 10.7927 12.8624 10.7382 12.9497 10.682C12.9666 10.6712 12.9833 10.6603 13 10.6493C14.2407 9.83545 15 8.72302 15 7.5C15 6.28352 14.2488 5.17645 13.0199 4.36373C12.9967 4.34839 12.9733 4.33315 12.9497 4.31802C11.6831 3.50373 9.9331 3 8 3C6.0669 3 4.31693 3.50373 3.05025 4.31802C1.77988 5.13469 1 6.26055 1 7.5C1 8.14098 1.20847 8.75067 1.5842 9.30256C1.93688 9.82058 2.43692 10.2877 3.05025 10.682C3.86153 11.2035 4.87107 11.5977 6 11.8137C6.3032 11.8717 6.61502 11.9168 6.93392 11.9481C6.95591 11.9503 6.97794 11.9524 7 11.9544V14L10 11.5L7 9V10.9498C6.65472 10.9148 6.32064 10.862 6 10.7935Z"></path>
9
9
  </symbol>
10
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="add">
11
- <path fill-rule="evenodd" clip-rule="evenodd"
12
- d="M7.5 7.5V2.5H8.5V7.5H13.5V8.5H8.5V13.5H7.5V8.5H2.5V7.5H7.5Z"></path>
10
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" id="add">
11
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.5 7.5V2.5H8.5V7.5H13.5V8.5H8.5V13.5H7.5V8.5H2.5V7.5H7.5Z" />
13
12
  </symbol>
14
13
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="addArea">
15
14
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -23,12 +22,6 @@
23
22
  <path fill-rule="evenodd" clip-rule="evenodd"
24
23
  d="M3 11H4V12V13.5858V15L5 14L8 11H9V10H8H7.58579L7.29289 10.2929L5 12.5858V11V10H4H3V3H13V6H14V3V2H13H3H2V3V10V11H3ZM13 8V10H11V11H13V13H14V11H16V10H14V8H13Z"></path>
25
24
  </symbol>
26
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="addVolume">
27
- <path fill-rule="evenodd" clip-rule="evenodd"
28
- d="M11.9961 10.9961V9H12.999V10.9961H14.9951V11.999H12.999V13.9951H11.9961V11.999H10V10.9961H11.9961Z"></path>
29
- <path fill-rule="evenodd" clip-rule="evenodd"
30
- d="M5.46118 13L1.46118 3H2.53821L5.99971 11.6537L9.4612 3H10.5382L6.53824 13H5.46118Z"></path>
31
- </symbol>
32
25
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="arrowDown">
33
26
  <path fill-rule="evenodd" clip-rule="evenodd"
34
27
  d="M12.7072 9.00001L7.8536 13.8536L3.00005 9.00001L3.70715 8.2929L7.3536 11.9393L7.3536 2.14645L8.3536 2.14645L8.3536 11.9393L12 8.2929L12.7072 9.00001Z"></path>
@@ -97,6 +90,7 @@
97
90
  <path fill-rule="evenodd" clip-rule="evenodd"
98
91
  d="M2 4V6H3V4H7V6H8V4H12V6H13V4H14V3H13V1H12V3H8V1H7V3H3V1H2V3H1V4H2ZM2 14V7H13V14H2ZM3 13V8H7V13H3ZM8 13V8H12V13H8Z"></path>
99
92
  </symbol>
93
+
100
94
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="back">
101
95
  <path fill-rule="evenodd" clip-rule="evenodd"
102
96
  d="M3.91421 6.35355L6.56066 9L5.85355 9.70711L2.35355 6.20711L2 5.85355L2.35355 5.5L5.85355 2L6.56066 2.70711L3.91421 5.35355H7.70711C11.2832 5.35355 14.2071 8.27741 14.2071 11.8536L14.2071 13.3536H13.2071L13.2071 11.8536C13.2071 8.8297 10.731 6.35355 7.70711 6.35355H3.91421Z"></path>
@@ -143,30 +137,26 @@
143
137
  d="M15 11.0262V4.9939L12 6.74309V9.27699L15 11.0262ZM14 9.28555V6.73453L13 7.3176V8.70249L14 9.28555Z"></path>
144
138
  <path fill-rule="evenodd" clip-rule="evenodd" d="M10 4H2V12H10V4ZM1 3V13H11V3H1Z"></path>
145
139
  </symbol>
146
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="chart">
147
- <path fill-rule="evenodd" clip-rule="evenodd"
148
- d="M3.5 13L3.5 7L4.5 7L4.5 13L3.5 13ZM7.5 13L7.5 3L8.5 3L8.5 13L7.5 13ZM11.5 5L11.5 13L12.5 13L12.5 5L11.5 5Z"></path>
149
- </symbol>
150
140
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="checkCircle">
151
141
  <path fill-rule="evenodd" clip-rule="evenodd"
152
142
  d="M8 2.5C4.96243 2.5 2.5 4.96243 2.5 8C2.5 11.0376 4.96243 13.5 8 13.5C11.0376 13.5 13.5 11.0376 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5ZM1.5 8C1.5 4.41015 4.41015 1.5 8 1.5C11.5899 1.5 14.5 4.41015 14.5 8C14.5 11.5899 11.5899 14.5 8 14.5C4.41015 14.5 1.5 11.5899 1.5 8ZM7.08154 9.30868L10.4049 6.13822L11.0951 6.86178L7.42639 10.3618C7.23308 10.5462 6.92895 10.5461 6.73581 10.3615L4.90456 8.61148L5.59544 7.88852L7.08154 9.30868Z"></path>
153
143
  </symbol>
154
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="chisel">
144
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 16" id="chart">
155
145
  <path fill-rule="evenodd" clip-rule="evenodd"
156
- d="M4.56908 2H11.4309L12.6538 3.16588V4.04587L14.5 5.80588V12.9075L9.64601 8.28H6.35399L1.5 12.9075V5.80588L3.34615 4.04587V3.16588L4.56908 2ZM4.0463 4.76001L2.5 6.23415V10.5725L5.9537 7.28H10.0463L13.5 10.5725V6.23415L11.9537 4.76001H4.0463ZM11.6538 3.76001V3.59415L11.0306 3H4.96938L4.34615 3.59415V3.76001H11.6538ZM6.15385 9.2892L7.57692 10.6459V14H4.10755L2.66 12.62L6.15385 9.2892ZM9.84615 9.2892L13.34 12.62L11.8925 14H8.42308V10.6459L9.84615 9.2892ZM6.15385 10.6708L4.10924 12.62L4.50784 13H6.57692V11.0741L6.15385 10.6708ZM9.42308 11.0741V13H11.4922L11.8908 12.62L9.84615 10.6708L9.42308 11.0741Z"></path>
146
+ d="M3.5 13L3.5 7L4.5 7L4.5 13L3.5 13ZM7.5 13L7.5 3L8.5 3L8.5 13L7.5 13ZM11.5 5L11.5 13L12.5 13L12.5 5L11.5 5Z"></path>
157
147
  </symbol>
158
148
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="clock">
159
149
  <path fill-rule="evenodd" clip-rule="evenodd"
160
150
  d="M8 2.5C4.96243 2.5 2.5 4.96243 2.5 8C2.5 11.0376 4.96243 13.5 8 13.5C11.0376 13.5 13.5 11.0376 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5ZM1.5 8C1.5 4.41015 4.41015 1.5 8 1.5C11.5899 1.5 14.5 4.41015 14.5 8C14.5 11.5899 11.5899 14.5 8 14.5C4.41015 14.5 1.5 11.5899 1.5 8ZM7.5 8V4.4H8.5V7.69098L10.6236 8.75279L10.1764 9.64721L7.77639 8.44721C7.607 8.36252 7.5 8.18939 7.5 8Z"></path>
161
151
  </symbol>
162
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="clockChange">
163
- <path fill-rule="evenodd" clip-rule="evenodd"
164
- d="M8 2.5C4.96243 2.5 2.5 4.96243 2.5 8C2.5 8.46094 2.5567 8.90863 2.66351 9.33649L1.86037 10.1396C1.62689 9.46959 1.5 8.74962 1.5 8C1.5 4.41015 4.41015 1.5 8 1.5C11.5899 1.5 14.5 4.41015 14.5 8C14.5 8.74962 14.3731 9.46959 14.1396 10.1396L13.3365 9.33649C13.4433 8.90863 13.5 8.46094 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5ZM7.5 8V4.4H8.5V7.19098L9.77639 6.55279L10.2236 7.44721L8.22361 8.44721C8.06861 8.52471 7.88454 8.51643 7.73713 8.42532C7.58973 8.33422 7.5 8.17329 7.5 8ZM4.85355 14.7071L2 11.8536L4.85355 9L5.56066 9.70711L3.91421 11.3536L7.99995 11.3535L7.99995 11.3536L12.0857 11.3536L10.4392 9.70712L11.1464 9.00002L13.9999 11.8536L11.1464 14.7071L10.4392 14L12.0857 12.3536L7.99995 12.3536L7.99995 12.3535L3.91421 12.3536L5.56066 14L4.85355 14.7071Z"></path>
165
- </symbol>
166
152
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="closeBig">
167
153
  <path fill-rule="evenodd" clip-rule="evenodd"
168
154
  d="M8.00002 7.29295L12.6465 2.64648L13.3536 3.35359L8.70713 8.00006L13.3536 12.6465L12.6465 13.3536L8.00002 8.70716L3.35359 13.3536L2.64648 12.6465L7.29291 8.00006L2.64649 3.35367L3.35359 2.64656L8.00002 7.29295Z"></path>
169
155
  </symbol>
156
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="clockChange">
157
+ <path fill-rule="evenodd" clip-rule="evenodd"
158
+ d="M8 2.5C4.96243 2.5 2.5 4.96243 2.5 8C2.5 8.46094 2.5567 8.90863 2.66351 9.33649L1.86037 10.1396C1.62689 9.46959 1.5 8.74962 1.5 8C1.5 4.41015 4.41015 1.5 8 1.5C11.5899 1.5 14.5 4.41015 14.5 8C14.5 8.74962 14.3731 9.46959 14.1396 10.1396L13.3365 9.33649C13.4433 8.90863 13.5 8.46094 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5ZM7.5 8V4.4H8.5V7.19098L9.77639 6.55279L10.2236 7.44721L8.22361 8.44721C8.06861 8.52471 7.88454 8.51643 7.73713 8.42532C7.58973 8.33422 7.5 8.17329 7.5 8ZM4.85355 14.7071L2 11.8536L4.85355 9L5.56066 9.70711L3.91421 11.3536L7.99995 11.3535L7.99995 11.3536L12.0857 11.3536L10.4392 9.70712L11.1464 9.00002L13.9999 11.8536L11.1464 14.7071L10.4392 14L12.0857 12.3536L7.99995 12.3536L7.99995 12.3535L3.91421 12.3536L5.56066 14L4.85355 14.7071Z"></path>
159
+ </symbol>
170
160
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="closeCircle">
171
161
  <path fill-rule="evenodd" clip-rule="evenodd"
172
162
  d="M10.3086 2.48575C9.56823 2.16754 8.79805 2.00595 7.99805 2.00098C7.19804 2.00098 6.42786 2.16008 5.68749 2.47829C4.20177 3.12466 3.13345 4.19364 2.48252 5.68525C2.15954 6.42609 1.99805 7.19923 1.99805 8.00471C1.99805 8.81018 2.15954 9.58084 2.48252 10.3167C3.11855 11.7934 4.18686 12.8599 5.68749 13.5162C6.42786 13.8394 7.19804 14.001 7.99805 14.001C8.79805 14.001 9.56823 13.8394 10.3086 13.5162C11.7943 12.8798 12.8602 11.8133 13.5061 10.3167C13.8341 9.57089 13.998 8.79775 13.998 7.99725C13.998 7.19675 13.8366 6.42609 13.5136 5.68525C13.1906 4.94442 12.7608 4.30552 12.2241 3.76853C11.6875 3.23155 11.049 2.80396 10.3086 2.48575ZM5.17155 5.87868L7.29287 8L5.17155 10.1213L5.87866 10.8284L7.99998 8.70711L10.1213 10.8284L10.8284 10.1213L8.70709 8L10.8284 5.87868L10.1213 5.17157L7.99998 7.29289L5.87866 5.17157L5.17155 5.87868Z"></path>
@@ -175,20 +165,6 @@
175
165
  <path fill-rule="evenodd" clip-rule="evenodd"
176
166
  d="M4 11V15L8 11H14V2H2V11H4ZM3 10H5V12.5858L7.58579 10H13V3H3V10Z"></path>
177
167
  </symbol>
178
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="compare">
179
- <path d="M3 10H4V13H3V10Z"></path>
180
- <path d="M6 3H7V13H6V3Z"></path>
181
- <path d="M9 8H10V13H9V8Z"></path>
182
- <path d="M12 6H13V13H12V6Z"></path>
183
- </symbol>
184
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="constructionWell">
185
- <path fill-rule="evenodd" clip-rule="evenodd"
186
- d="M5.00002 4.83977L4.99979 2.00002L5.99979 1.99994L6.00004 8.99998H2.02844L5.00002 4.83977ZM3.97163 7.99998H5.00004V6.56021L3.97163 7.99998Z"></path>
187
- <path fill-rule="evenodd" clip-rule="evenodd"
188
- d="M9.00004 7.83977V2H10V12H6.02844L9.00004 7.83977ZM9.00004 9.56023L7.97163 11H9.00004V9.56023Z"></path>
189
- <path fill-rule="evenodd" clip-rule="evenodd"
190
- d="M13 9.83977V2H14V14L10.0284 14L13 9.83977ZM13 11.5602L11.9716 13L13 13V11.5602Z"></path>
191
- </symbol>
192
168
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="copy">
193
169
  <path fill-rule="evenodd" clip-rule="evenodd" d="M11 5H4V13H11V5ZM3 4V14H12V4H3Z"></path>
194
170
  <path fill-rule="evenodd" clip-rule="evenodd" d="M14 2V12H13V3H5V2H14Z"></path>
@@ -247,11 +223,9 @@
247
223
  <path fill-rule="evenodd" clip-rule="evenodd"
248
224
  d="M11.0039 0.90979V1.49998V3H14.5H15V3.5V12.5V13H14.5H11.0039V14.5V15.0902L10.4217 14.9932L1.41784 13.4932L1 13.4236V13V2.99998V2.57638L1.41784 2.50678L10.4217 1.00678L11.0039 0.90979ZM2 3.42357V12.5764L10.0039 13.9098V2.09017L2 3.42357ZM11.01 4V12H14V4H11.01ZM2.9533 6.22936L3.86611 10.7707H5.28039L5.99995 7.63897L6.66413 10.7707H8.07386L9.04701 6.22936H8.02431L7.37041 9.28084L6.72324 6.22936H5.29778L4.59132 9.30403L3.9733 6.22936H2.9533Z"></path>
249
225
  </symbol>
250
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="docAndLiquid">
251
- <path fill-rule="evenodd" clip-rule="evenodd"
252
- d="M1 1H6.70711L11 5.29289V6H6V2H2L2 12H7V13H1L1 1ZM7 2.70711L9.2929 5H7V2.70711Z"></path>
253
- <path fill-rule="evenodd" clip-rule="evenodd"
254
- d="M12.5 8V11L15 15H7L9.5 11V8H9V7H13V8H12.5ZM10.3667 11.5H11.6333L13.1958 14H8.80425L10.3667 11.5ZM11.5 8V10.5H10.5V8H11.5Z"></path>
226
+ <symbol viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" id="docAndLiquid">
227
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1 1H6.70711L11 5.29289V6H6V2H2L2 12H7V13H1L1 1ZM7 2.70711L9.2929 5H7V2.70711Z" fill-opacity="0.87"/>
228
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 8V11L15 15H7L9.5 11V8H9V7H13V8H12.5ZM10.3667 11.5H11.6333L13.1958 14H8.80425L10.3667 11.5ZM11.5 8V10.5H10.5V8H11.5Z" fill-opacity="0.87"/>
255
229
  </symbol>
256
230
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="document">
257
231
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -294,6 +268,9 @@
294
268
  <path fill-rule="evenodd" clip-rule="evenodd" d="M15 6.5H1V5.5H15V6.5Z"></path>
295
269
  <path fill-rule="evenodd" clip-rule="evenodd" d="M15 10.5H1V9.5H15V10.5Z"></path>
296
270
  </symbol>
271
+ <symbol width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" id="layers">
272
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15 6.9409L7.99997 10.4409L1 6.94093V8.05896L7.77637 11.4471L7.99997 11.5589L8.22358 11.4471L15 8.05893V6.9409ZM15 9.9409L7.99997 13.4409L1 9.94093V11.059L7.77637 14.4471L7.99997 14.5589L8.22358 14.4471L15 11.0589V9.9409ZM1.87178 5.45773L1 5.01636V5.01039L1.87038 4.56628L7.77272 1.55456L7.99998 1.4386L8.22723 1.55456L14.1218 4.56237L14.9968 5.0089L14.1208 5.45359L8.2263 8.44578L8.00027 8.56051L7.77413 8.44602L1.87178 5.45773ZM3.20113 5.00991L7.99968 7.43935L12.7922 5.00658L7.99997 2.56126L3.20113 5.00991Z" />
273
+ </symbol>
297
274
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="drop">
298
275
  <path fill-rule="evenodd" clip-rule="evenodd"
299
276
  d="M8.00203 2.00195C11.334 5.31097 13 6.96593 13 9.02229C13.0031 10.2971 12.515 11.573 11.5356 12.5456C9.58296 14.4848 6.41717 14.4848 4.46458 12.5456C3.48515 11.573 2.99687 10.2971 3.00002 9.02225L3.00011 9.02225L3.00002 9.02225C3.00001 6.96586 4.66616 5.31093 7.99822 2.00183C7.99865 2.0014 7.99908 2.00097 7.99952 2.00055L8.00006 2C8.00072 2.00065 8.00137 2.0013 8.00203 2.00195ZM8.00006 3.41026C6.67995 4.72627 5.71204 5.71969 5.04304 6.59045C4.27772 7.58658 4.00002 8.30257 4.00002 9.02225V9.02472C3.99751 10.0421 4.38631 11.0586 5.16924 11.8361C6.73187 13.388 9.26826 13.388 10.8309 11.8361C11.6138 11.0586 12.0025 10.0422 12 9.02476L12 9.02229C12 8.30259 11.7223 7.58658 10.957 6.59045C10.288 5.7197 9.32016 4.72627 8.00006 3.41026Z"></path>
@@ -311,55 +288,34 @@
311
288
  <path fill-rule="evenodd" clip-rule="evenodd"
312
289
  d="M4.00098 14L4.00146 7H2V6H4.00146L4.00098 4.31055C4.00098 3.57422 4.19775 3.00505 4.59131 2.60303C4.98486 2.20101 5.45882 2 6.17822 2C6.44906 2 6.71777 2.03597 6.98438 2.10791L6.9209 3.06006C6.722 3.02197 6.51042 3.00293 6.28613 3.00293C5.90527 3.00293 5.5179 3.11507 5.31055 3.33936C5.10319 3.55941 4.99951 3.87679 4.99951 4.2915L5 6H7V7H5L4.99951 14H4.00098ZM11.0085 11.8082L9.28258 14H8.00977L10.3721 11L8.00977 8H9.28258L11.0085 10.1918L12.7344 8H14.0072L11.6449 11L14.0072 14H12.7344L11.0085 11.8082Z"></path>
313
290
  </symbol>
314
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="erase">
315
- <path fill-rule="evenodd" clip-rule="evenodd"
316
- d="M13.7279 6.17162L9.48523 1.92898L2.41416 9.00005L6.6568 13.2427L13.7279 6.17162ZM9.48523 0.514771L0.999948 9.00005L6.6568 14.6569L15.1421 6.17162L9.48523 0.514771Z"></path>
317
- <path d="M9.48535 0.514648L15.1422 6.1715L10.8996 10.4141L5.24271 4.75729L9.48535 0.514648Z"></path>
318
- </symbol>
319
291
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="export">
320
292
  <path fill-rule="evenodd" clip-rule="evenodd"
321
293
  d="M14.5 15H15V14.5V9H14V14H2V2H7V1H1.5H1V1.5V14.5V15H1.5H14.5ZM10.75 4.37501C9.15874 4.37501 7.92622 5.05037 7.07994 6.12233C6.22493 7.20535 5.75 8.71483 5.75 10.375H4.75C4.75 8.53519 5.27507 6.79467 6.29506 5.50269C7.32378 4.19965 8.84126 3.37501 10.75 3.37501H13.0429L11.3964 1.72856L12.1036 1.02146L14.6036 3.52146L14.9571 3.87501L14.6036 4.22856L12.1036 6.72856L11.3964 6.02146L13.0429 4.37501H10.75Z"></path>
322
294
  </symbol>
323
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="eye">
324
- <path fill-rule="evenodd" clip-rule="evenodd"
325
- d="M8.00001 12C5.57254 12 3.35528 10.4594 2.10729 7.99999C3.35528 5.54063 5.57254 4 8 4C10.4275 4 12.6447 5.54064 13.8927 8.00001C12.6447 10.4594 10.4275 12 8.00001 12ZM8 3C11.0364 3 13.6733 5.02638 15 8.00001C13.6733 10.9736 11.0364 13 8.00001 13C4.96361 13 2.32668 10.9736 1 7.99999C2.32668 5.02637 4.96361 3 8 3ZM8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10Z"></path>
326
- </symbol>
327
295
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="eyeCrossed">
328
296
  <path fill-rule="evenodd" clip-rule="evenodd"
329
297
  d="M3.20753 4.91456C2.29581 5.73797 1.53955 6.79064 1 7.99999C2.32668 10.9736 4.96361 13 8.00001 13C8.95686 13 9.87404 12.7988 10.7231 12.4301L9.95186 11.6589C9.3281 11.8819 8.67211 12 8.00001 12C5.57254 12 3.35528 10.4594 2.10729 7.99999C2.58307 7.06239 3.19973 6.25832 3.91521 5.62224L3.20753 4.91456ZM6.01866 7.72569C6.00636 7.81537 6 7.90694 6 8C6 9.10457 6.89543 10 8 10C8.09306 10 8.18463 9.99364 8.27431 9.98134L6.01866 7.72569ZM9.26025 9.55307L6.44693 6.73975C6.81363 6.2884 7.37314 6 8 6C9.10457 6 10 6.89543 10 8C10 8.62686 9.7116 9.18637 9.26025 9.55307ZM10.9211 11.2139C12.1361 10.5256 13.1748 9.41482 13.8927 8.00001C12.6447 5.54064 10.4275 4 8 4C6.82756 4 5.70415 4.3594 4.71531 5.00813L3.99502 4.28783C5.16979 3.46938 6.53863 3 8 3C11.0364 3 13.6733 5.02638 15 8.00001C14.2488 9.68377 13.0775 11.0638 11.6514 11.9443L10.9211 11.2139Z"></path>
330
298
  <path d="M1 1.70715L1.70711 1.00005L15.0218 14.3147L14.3147 15.0218L1 1.70715Z"></path>
331
299
  </symbol>
332
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="filter">
300
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="eye">
333
301
  <path fill-rule="evenodd" clip-rule="evenodd"
334
- d="M10 9L15 4V2H1V4L6 9V14L10 12V9ZM9 11.382V8.58579L14 3.58579V3H2V3.58579L7 8.58579V12.382L9 11.382Z"></path>
302
+ d="M8.00001 12C5.57254 12 3.35528 10.4594 2.10729 7.99999C3.35528 5.54063 5.57254 4 8 4C10.4275 4 12.6447 5.54064 13.8927 8.00001C12.6447 10.4594 10.4275 12 8.00001 12ZM8 3C11.0364 3 13.6733 5.02638 15 8.00001C13.6733 10.9736 11.0364 13 8.00001 13C4.96361 13 2.32668 10.9736 1 7.99999C2.32668 5.02637 4.96361 3 8 3ZM8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10Z"></path>
335
303
  </symbol>
336
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="filterApplied">
304
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="filter">
337
305
  <path fill-rule="evenodd" clip-rule="evenodd"
338
306
  d="M10 9L15 4V2H1V4L6 9V14L10 12V9ZM9 11.382V8.58579L14 3.58579V3H2V3.58579L7 8.58579V12.382L9 11.382Z"></path>
339
- <path
340
- d="M15 4C15 5.65685 13.6569 7 12 7C10.3431 7 9 5.65685 9 4C9 2.34315 10.3431 1 12 1C13.6569 1 15 2.34315 15 4Z"
341
- fill="#DE2C2C"></path>
342
- <path fill-rule="evenodd" clip-rule="evenodd"
343
- d="M16 4C16 6.20914 14.2091 8 12 8C9.79086 8 8 6.20914 8 4C8 1.79086 9.79086 0 12 0C14.2091 0 16 1.79086 16 4ZM12 7C13.6569 7 15 5.65685 15 4C15 2.34315 13.6569 1 12 1C10.3431 1 9 2.34315 9 4C9 5.65685 10.3431 7 12 7Z"
344
- fill="white"></path>
345
307
  </symbol>
308
+ <symbol viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" id="filterApplied">
309
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10 9L15 4V2H1V4L6 9V14L10 12V9ZM9 11.382V8.58579L14 3.58579V3H2V3.58579L7 8.58579V12.382L9 11.382Z" fill-opacity="0.87"/>
310
+ <path d="M15 4C15 5.65685 13.6569 7 12 7C10.3431 7 9 5.65685 9 4C9 2.34315 10.3431 1 12 1C13.6569 1 15 2.34315 15 4Z" fill="#DE2C2C"/>
311
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M16 4C16 6.20914 14.2091 8 12 8C9.79086 8 8 6.20914 8 4C8 1.79086 9.79086 0 12 0C14.2091 0 16 1.79086 16 4ZM12 7C13.6569 7 15 5.65685 15 4C15 2.34315 13.6569 1 12 1C10.3431 1 9 2.34315 9 4C9 5.65685 10.3431 7 12 7Z"/>
312
+ </symbol>
313
+
346
314
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="filterClear">
347
315
  <path fill-rule="evenodd" clip-rule="evenodd"
348
316
  d="M1.58578 2H1V3V4L6 9V12.882V14L7 13.5L10 12V10.4142L9 9.41422V11.382L7 12.382V9V8.58579L6.70711 8.29289L2 3.58579V3H2.58578L1.58578 2ZM9.29289 8.29289L10 9L15 4V3V2H14H3L4 3H14V3.58579L9.29289 8.29289Z"></path>
349
317
  <path d="M2.70703 1.70709L3.41414 0.999986L11.8633 9.44914L11.1562 10.1562L2.70703 1.70709Z"></path>
350
318
  </symbol>
351
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="filterHide">
352
- <path fill-rule="evenodd" clip-rule="evenodd"
353
- d="M8 13L7 13.5L6 14V12.882V9L1 4V3V2H2H14H15V3V4L12 7H10.5858L14 3.58579V3H2V3.58579L6.70711 8.29289L7 8.58579V9V12.382L8 11.882V13Z"></path>
354
- <path fill-rule="evenodd" clip-rule="evenodd"
355
- d="M8.79285 11.5L11.6464 8.64647L12.3535 9.35358L10.7071 11L15.5 11L15.5 12L10.7071 12L12.3535 13.6465L11.6464 14.3536L8.79285 11.5Z"></path>
356
- </symbol>
357
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="filterShow">
358
- <path fill-rule="evenodd" clip-rule="evenodd"
359
- d="M8 13L7 13.5L6 14V12.882V9L1 4V3V2H2H14H15V3V4L12 7H10.5858L14 3.58579V3H2V3.58579L6.70711 8.29289L7 8.58579V9V12.382L8 11.882V13Z"></path>
360
- <path fill-rule="evenodd" clip-rule="evenodd"
361
- d="M15.7072 11.5L12.8536 14.3535L12.1465 13.6464L13.7929 12L9.00005 12L9.00005 11L13.7929 11L12.1465 9.35353L12.8536 8.64642L15.7072 11.5Z"></path>
362
- </symbol>
363
319
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="filterSortDown">
364
320
  <path fill-rule="evenodd" clip-rule="evenodd"
365
321
  d="M4.88889 8.83333V13H8V3H1V4.42578L4.88889 8.83333ZM2 4.04769L5.88889 8.45524V12H7V4H2V4.04769Z"></path>
@@ -391,29 +347,12 @@
391
347
  <path fill-rule="evenodd" clip-rule="evenodd"
392
348
  d="M12.2928 6.35355L9.64637 9L10.3535 9.70711L13.8535 6.20711L14.207 5.85355L13.8535 5.5L10.3535 2L9.64637 2.70711L12.2928 5.35355H8.49992C4.92378 5.35355 1.99992 8.27741 1.99992 11.8536L1.99992 13.3536H2.99992L2.99992 11.8536C2.99992 8.8297 5.47607 6.35355 8.49992 6.35355H12.2928Z"></path>
393
349
  </symbol>
394
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="fullScreen">
395
- <path d="M2 2H2.5H5V3H3V13H13V11H14V13.5V14H13.5H2.5H2V13.5V2.5V2Z"></path>
396
- <path d="M6 10V9.5V5H7V8.29289L12.2929 3H9V2H13.5H14V2.5V7H13V3.70711L7.70711 9H11V10H6.5H6Z"></path>
397
- </symbol>
398
350
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="gantt">
399
351
  <path fill-rule="evenodd" clip-rule="evenodd" d="M5 11H15V12H5V11ZM3 7H13V8H3V7ZM1 3H11V4H1V3Z"></path>
400
352
  </symbol>
401
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="gear">
402
- <path fill-rule="evenodd" clip-rule="evenodd"
403
- d="M9.49988 2.18903V1H6.49988V2.18903C5.94938 2.33072 5.42945 2.54857 4.95201 2.83069L4.11091 1.98959L1.98959 4.11091L2.83066 4.95198C2.5485 5.42946 2.33061 5.94944 2.18891 6.5H1V9.5H2.18891C2.33061 10.0506 2.5485 10.5705 2.83066 11.048L1.98959 11.8891L4.11091 14.0104L4.95201 13.1693C5.42945 13.4514 5.94938 13.6693 6.49988 13.811V15H9.49988V13.811C10.0504 13.6693 10.5704 13.4514 11.0479 13.1692L11.8891 14.0104L14.0104 11.8891L13.1692 11.0479C13.4513 10.5704 13.6692 10.0505 13.8109 9.5H15V6.5H13.8109C13.6692 5.9495 13.4513 5.42957 13.1692 4.95212L14.0104 4.11091L11.8891 1.98959L11.0479 2.83077C10.5704 2.54861 10.0504 2.33073 9.49988 2.18903ZM11.8891 3.40381L11.2067 4.08617L10.5392 3.69169C10.1414 3.45662 9.70859 3.27534 9.25062 3.15746L8.49988 2.96424V2H7.49988V2.96424L6.74914 3.15746C6.29122 3.27532 5.85849 3.45659 5.46072 3.69162L4.79317 4.08606L4.11091 3.40381L3.40381 4.11091L4.08605 4.79316L3.69158 5.46071C3.45651 5.85852 3.27522 6.29129 3.15735 6.74926L2.96412 7.5H2V8.5H2.96412L3.15735 9.25074C3.27522 9.70871 3.45651 10.1415 3.69158 10.5393L4.08605 11.2068L3.40381 11.8891L4.11091 12.5962L4.79317 11.9139L5.46072 12.3084C5.85849 12.5434 6.29122 12.7247 6.74914 12.8425L7.49988 13.0358V14H8.49988V13.0358L9.25062 12.8425C9.70859 12.7247 10.1414 12.5434 10.5392 12.3083L11.2067 11.9138L11.8891 12.5962L12.5962 11.8891L11.9138 11.2067L12.3083 10.5392C12.5433 10.1414 12.7246 9.70866 12.8424 9.25074L13.0356 8.5H14V7.5H13.0356L12.8424 6.74926C12.7246 6.29134 12.5433 5.85861 12.3083 5.46084L11.9138 4.79329L12.5962 4.11091L11.8891 3.40381Z"></path>
404
- <path fill-rule="evenodd" clip-rule="evenodd"
405
- d="M8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10ZM8 11C9.65685 11 11 9.65685 11 8C11 6.34315 9.65685 5 8 5C6.34315 5 5 6.34315 5 8C5 9.65685 6.34315 11 8 11Z"></path>
406
- </symbol>
407
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="grp">
408
- <g clip-path="url(#clip0_8285_15415)">
409
- <path fill-rule="evenodd" clip-rule="evenodd"
410
- d="M-17.4345 5.57318C-18.1912 6.35587 -18.5714 7.17531 -18.5714 8.00001C-18.5714 8.82471 -18.1912 9.64416 -17.4345 10.4268C-16.6759 11.2116 -15.5573 11.9379 -14.1419 12.5571C-11.3124 13.795 -7.37348 14.5714 -3.00002 14.5714C1.37345 14.5714 5.31238 13.795 8.14191 12.5571C9.55731 11.9379 10.6758 11.2116 11.4345 10.4268C12.1912 9.64416 12.5714 8.82471 12.5714 8.00001C12.5714 7.17531 12.1912 6.35587 11.4345 5.57318C10.6758 4.78843 9.55731 4.06214 8.14191 3.4429C5.31238 2.20499 1.37345 1.42858 -3.00002 1.42858C-7.37348 1.42858 -11.3124 2.20499 -14.1419 3.4429C-15.5573 4.06214 -16.6759 4.78843 -17.4345 5.57318ZM-14.4855 2.65763C-11.5242 1.36204 -7.46311 0.571442 -3.00002 0.571442C1.46307 0.571442 5.52414 1.36204 8.48547 2.65763C9.9655 3.30514 11.1901 4.08723 12.0507 4.97741C12.9133 5.86966 13.4286 6.89172 13.4286 8.00001C13.4286 9.10831 12.9133 10.1304 12.0507 11.0226C11.1901 11.9128 9.9655 12.6949 8.48547 13.3424C5.52414 14.638 1.46307 15.4286 -3.00002 15.4286C-7.46311 15.4286 -11.5242 14.638 -14.4855 13.3424C-15.9655 12.6949 -17.1902 11.9128 -18.0508 11.0226C-18.9134 10.1304 -19.4286 9.10831 -19.4286 8.00001C-19.4286 6.89172 -18.9134 5.86966 -18.0508 4.97741C-17.1902 4.08723 -15.9655 3.30514 -14.4855 2.65763ZM-9.74036 4.85142C-11.6031 5.73845 -12.5714 6.88013 -12.5714 8.00001C-12.5714 9.1199 -11.6031 10.2616 -9.74036 11.1486C-7.90955 12.0204 -5.35019 12.5714 -2.49999 12.5714C0.350204 12.5714 2.90956 12.0204 4.74037 11.1486C6.60314 10.2616 7.57143 9.1199 7.57143 8.00001C7.57143 6.88013 6.60314 5.73845 4.74037 4.85142C2.90956 3.97961 0.350204 3.42858 -2.49999 3.42858C-5.35019 3.42858 -7.90955 3.97961 -9.74036 4.85142ZM-10.1089 4.07754C-8.13943 3.13971 -5.44879 2.57144 -2.49999 2.57144C0.448797 2.57144 3.13944 3.13971 5.10888 4.07754C7.04637 5.00015 8.42858 6.35848 8.42858 8.00001C8.42858 9.64155 7.04637 10.9999 5.10888 11.9225C3.13944 12.8603 0.448797 13.4286 -2.49999 13.4286C-5.44879 13.4286 -8.13943 12.8603 -10.1089 11.9225C-12.0464 10.9999 -13.4286 9.64155 -13.4286 8.00001C-13.4286 6.35848 -12.0464 5.00015 -10.1089 4.07754ZM-6.05099 6.26202C-7.09122 6.78213 -7.57145 7.42137 -7.57145 8.00001C-7.57145 8.57866 -7.09122 9.21789 -6.05099 9.73801C-5.0364 10.2453 -3.60476 10.5714 -2.00002 10.5714C-0.395269 10.5714 1.03637 10.2453 2.05096 9.73801C3.09119 9.21789 3.57141 8.57866 3.57141 8.00001C3.57141 7.42137 3.09119 6.78213 2.05096 6.26202C1.03637 5.75472 -0.395269 5.42858 -2.00002 5.42858C-3.60476 5.42858 -5.0364 5.75472 -6.05099 6.26202ZM-6.43432 5.49537C-5.27734 4.91688 -3.70898 4.57144 -2.00002 4.57144C-0.291056 4.57144 1.27731 4.91688 2.43429 5.49537C3.56563 6.06104 4.42855 6.9218 4.42855 8.00001C4.42855 9.07822 3.56563 9.93899 2.43429 10.5047C1.27731 11.0831 -0.291056 11.4286 -2.00002 11.4286C-3.70898 11.4286 -5.27734 11.0831 -6.43432 10.5047C-7.56567 9.93899 -8.42859 9.07822 -8.42859 8.00001C-8.42859 6.9218 -7.56567 6.06104 -6.43432 5.49537Z"></path>
411
- </g>
412
- <defs>
413
- <clipPath id="clip0_8285_15415">
414
- <rect width="15.9999" height="16" fill="white"></rect>
415
- </clipPath>
416
- </defs>
353
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="fullScreen">
354
+ <path d="M2 2H2.5H5V3H3V13H13V11H14V13.5V14H13.5H2.5H2V13.5V2.5V2Z"></path>
355
+ <path d="M6 10V9.5V5H7V8.29289L12.2929 3H9V2H13.5H14V2.5V7H13V3.70711L7.70711 9H11V10H6.5H6Z"></path>
417
356
  </symbol>
418
357
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="handbag">
419
358
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -422,20 +361,6 @@
422
361
  <path fill-rule="evenodd" clip-rule="evenodd"
423
362
  d="M1.67456 5.37962L2.32535 4.62036L5.68492 7.49999H10.315L13.6746 4.62036L14.3254 5.37962L10.6849 8.49999H5.31499L1.67456 5.37962Z"></path>
424
363
  </symbol>
425
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="hierarchy">
426
- <path fill-rule="evenodd" clip-rule="evenodd" d="M9.5 2H6.5V5H9.5V2ZM5.5 1V6H10.5V1H5.5Z"></path>
427
- <path fill-rule="evenodd" clip-rule="evenodd" d="M5 11H2V14H5V11ZM1 10V15H6V10H1Z"></path>
428
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14 11H11V14H14V11ZM10 10V15H15V10H10Z"></path>
429
- <path fill-rule="evenodd" clip-rule="evenodd" d="M7.5 7V6H8.5V7H13V10H12V8H4V10H3V7H7.5Z"></path>
430
- </symbol>
431
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="hierarchyReverse">
432
- <path fill-rule="evenodd" clip-rule="evenodd" d="M5 2L2 2L2 5L5 5L5 2ZM1 1L1 6L6 6L6 1L1 1Z"></path>
433
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14 2L11 2L11 5L14 5L14 2ZM10 1L10 6L15 6L15 1L10 1Z"></path>
434
- <path fill-rule="evenodd" clip-rule="evenodd"
435
- d="M9.5 11L6.5 11L6.5 14L9.5 14L9.5 11ZM5.5 10L5.5 15L10.5 15L10.5 10L5.5 10Z"></path>
436
- <path fill-rule="evenodd" clip-rule="evenodd"
437
- d="M8.5 8.5V10L7.5 10V8.5H3L3 6H4L4 7.5L12 7.5L12 6H13L13 8.5H8.5Z"></path>
438
- </symbol>
439
364
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="home">
440
365
  <path fill-rule="evenodd" clip-rule="evenodd"
441
366
  d="M15.3536 8.6464L8.00004 1.29285L0.646484 8.6464L1.35359 9.35351L3 7.7071V15H4V15H12V15H13V7.70702L14.6465 9.35351L15.3536 8.6464ZM12 6.70702L8.00004 2.70706L4 6.7071V14H12V6.70702Z"></path>
@@ -454,7 +379,8 @@
454
379
  </symbol>
455
380
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="image">
456
381
  <path fill-rule="evenodd" clip-rule="evenodd"
457
- d="M1 11.7071V15H12.2929L5 7.70711L1 11.7071ZM13.7071 15H15V1H1V10.2929L5 6.29289L13.7071 15ZM14 6.5C14 7.88071 12.8807 9 11.5 9C10.1193 9 9 7.88071 9 6.5C9 5.11929 10.1193 4 11.5 4C12.8807 4 14 5.11929 14 6.5ZM11.5 8C12.3284 8 13 7.32843 13 6.5C13 5.67157 12.3284 5 11.5 5C10.6716 5 10 5.67157 10 6.5C10 7.32843 10.6716 8 11.5 8ZM0 0H16V16H0V0Z"></path>
382
+ d="M1 11.7071V15H12.2929L5 7.70711L1 11.7071ZM13.7071 15H15V1H1V10.2929L5 6.29289L13.7071 15ZM14 6.5C14 7.88071 12.8807 9 11.5 9C10.1193 9 9 7.88071 9 6.5C9 5.11929 10.1193 4 11.5 4C12.8807 4 14 5.11929 14 6.5ZM11.5 8C12.3284 8 13 7.32843 13 6.5C13 5.67157 12.3284 5 11.5 5C10.6716 5 10 5.67157 10 6.5C10 7.32843 10.6716 8 11.5 8ZM0 0H16V16H0V0Z"
383
+ fill-opacity="0.8"></path>
458
384
  </symbol>
459
385
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="info">
460
386
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -480,18 +406,14 @@
480
406
  <path fill-rule="evenodd" clip-rule="evenodd"
481
407
  d="M10.283 4.07014C10.496 3.43106 11.0941 3 11.7677 3H13.5001V4H11.7677C11.5245 4 11.3086 4.15563 11.2316 4.38637C11.1511 4.62811 11.2423 4.89387 11.4543 5.03522L13.1005 6.13273C13.6878 6.52422 13.9403 7.26031 13.7172 7.92986C13.5041 8.56894 12.9061 9 12.2324 9H10.5001V8H12.2324C12.4756 8 12.6916 7.84437 12.7685 7.61363C12.849 7.37189 12.7579 7.10613 12.5458 6.96478L10.8996 5.86727C10.3123 5.47578 10.0598 4.73969 10.283 4.07014Z"></path>
482
408
  </symbol>
483
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="layers">
409
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="liquid">
484
410
  <path fill-rule="evenodd" clip-rule="evenodd"
485
- d="M15 6.9409L7.99997 10.4409L1 6.94093V8.05896L7.77637 11.4471L7.99997 11.5589L8.22358 11.4471L15 8.05893V6.9409ZM15 9.9409L7.99997 13.4409L1 9.94093V11.059L7.77637 14.4471L7.99997 14.5589L8.22358 14.4471L15 11.0589V9.9409ZM1.87178 5.45773L1 5.01636V5.01039L1.87038 4.56628L7.77272 1.55456L7.99998 1.4386L8.22723 1.55456L14.1218 4.56237L14.9968 5.0089L14.1208 5.45359L8.2263 8.44578L8.00027 8.56051L7.77413 8.44602L1.87178 5.45773ZM3.20113 5.00991L7.99968 7.43935L12.7922 5.00658L7.99997 2.56126L3.20113 5.00991Z"></path>
411
+ d="M7 8.32047L6.81373 8.58124L2.94319 14H13.0568L9.18627 8.58124L9 8.32047V8V7.5H7V8V8.32047ZM9 2V6.5H7V2H9ZM10 2V8L14.2857 14L15 15H13.7711H2.2289H1L1.71429 14L6 8V2H5V1H6H7H9H10H11V2H10Z"></path>
486
412
  </symbol>
487
413
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="link">
488
414
  <path fill-rule="evenodd" clip-rule="evenodd"
489
415
  d="M5.45926 13.3189L8.11091 10.6673L8.81802 11.3744L6.16637 14.026C4.89717 15.2952 2.83938 15.2952 1.57018 14.026C0.300971 12.7568 0.300971 10.699 1.57018 9.42982L4.22183 6.77817L4.92893 7.48528L2.27728 10.1369C1.3986 11.0156 1.3986 12.4402 2.27728 13.3189C3.15596 14.1976 4.58058 14.1976 5.45926 13.3189ZM11.6464 8.54594L10.9393 7.83883L13.591 5.18718C14.4697 4.3085 14.4697 2.88388 13.591 2.0052C12.7123 1.12652 11.2877 1.12652 10.409 2.0052L7.75736 4.65685L7.05025 3.94975L9.7019 1.2981C10.9711 0.0288935 13.0289 0.0288931 14.2981 1.2981C15.5673 2.5673 15.5673 4.62509 14.2981 5.89429L11.6464 8.54594ZM6.19583 10.1664L10.4385 5.92375L9.67244 5.15772L5.4298 9.40036L6.19583 10.1664Z"></path>
490
416
  </symbol>
491
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="liquid">
492
- <path fill-rule="evenodd" clip-rule="evenodd"
493
- d="M7 8.32047L6.81373 8.58124L2.94319 14H13.0568L9.18627 8.58124L9 8.32047V8V7.5H7V8V8.32047ZM9 2V6.5H7V2H9ZM10 2V8L14.2857 14L15 15H13.7711H2.2289H1L1.71429 14L6 8V2H5V1H6H7H9H10H11V2H10Z"></path>
494
- </symbol>
495
417
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="list">
496
418
  <path fill-rule="evenodd" clip-rule="evenodd" d="M5 8H14V9H5V8Z"></path>
497
419
  <path fill-rule="evenodd" clip-rule="evenodd" d="M5 12H14V13H5V12Z"></path>
@@ -504,24 +426,18 @@
504
426
  <path fill-rule="evenodd" clip-rule="evenodd"
505
427
  d="M4 8V13H12V8H4ZM6.22222 7V4.77778C6.22222 3.79594 7.01816 3 8 3C8.98184 3 9.77778 3.79594 9.77778 4.77778V7H6.22222ZM8 2C9.53412 2 10.7778 3.24365 10.7778 4.77778V7H13V14H3V7H5.22222V4.77778C5.22222 3.24365 6.46588 2 8 2Z"></path>
506
428
  </symbol>
507
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="magicWand">
508
- <path fill-rule="evenodd" clip-rule="evenodd"
509
- d="M2.0041 12.7066C1.61358 12.3161 1.61358 11.6829 2.0041 11.2924L11.2981 1.99837C11.6887 1.60785 12.3218 1.60785 12.7124 1.99837L14.005 3.29105C14.3956 3.68157 14.3956 4.31474 14.005 4.70526L4.711 13.9993C4.32047 14.3898 3.68731 14.3898 3.29678 13.9993L2.0041 12.7066ZM12.0052 2.70548L2.71121 11.9995L4.00389 13.2922L13.2979 3.99816L12.0052 2.70548Z"></path>
510
- <path d="M9.70703 5L11.0078 6.30078L10.3007 7.00789L8.99992 5.70711L9.70703 5Z"></path>
511
- <path
512
- d="M2.00415 3.99835C2.00415 3.72221 2.22801 3.49835 2.50415 3.49835H5.50415C5.78029 3.49835 6.00415 3.72221 6.00415 3.99835C6.00415 4.27449 5.78029 4.49835 5.50415 4.49835H2.50415C2.22801 4.49835 2.00415 4.27449 2.00415 3.99835Z"></path>
513
- <path
514
- d="M4.00415 1.99835C4.28029 1.99835 4.50415 2.22221 4.50415 2.49835V3.49835H3.50415L3.50415 2.49835C3.50415 2.22221 3.72801 1.99835 4.00415 1.99835Z"></path>
515
- <path
516
- d="M4.00415 5.99835C3.72801 5.99835 3.50415 5.77449 3.50415 5.49835L3.50415 4.49835H4.50415V5.49835C4.50415 5.77449 4.28029 5.99835 4.00415 5.99835Z"></path>
517
- <path
518
- d="M11 9C11 8.72386 11.2239 8.5 11.5 8.5H14.5C14.7761 8.5 15 8.72386 15 9C15 9.27614 14.7761 9.5 14.5 9.5H11.5C11.2239 9.5 11 9.27614 11 9Z"></path>
519
- <path d="M13 7C13.2761 7 13.5 7.22386 13.5 7.5V8.5H12.5L12.5 7.5C12.5 7.22386 12.7239 7 13 7Z"></path>
520
- <path d="M13 11C12.7239 11 12.5 10.7761 12.5 10.5L12.5 9.5H13.5V10.5C13.5 10.7761 13.2761 11 13 11Z"></path>
521
- <path
522
- d="M9 12.5C9 12.2239 9.22386 12 9.5 12H11.5C11.7761 12 12 12.2239 12 12.5C12 12.7761 11.7761 13 11.5 13H9.5C9.22386 13 9 12.7761 9 12.5Z"></path>
523
- <path d="M10.5 11C10.7761 11 11 11.2239 11 11.5V12H10V11.5C10 11.2239 10.2239 11 10.5 11Z"></path>
524
- <path d="M11 13V13.5C11 13.7761 10.7761 14 10.5 14C10.2239 14 10 13.7761 10 13.5V13H11Z"></path>
429
+ <symbol viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" id="magicWand">
430
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.0041 12.7066C1.61358 12.3161 1.61358 11.6829 2.0041 11.2924L11.2981 1.99837C11.6887 1.60785 12.3218 1.60785 12.7124 1.99837L14.005 3.29105C14.3956 3.68157 14.3956 4.31474 14.005 4.70526L4.711 13.9993C4.32047 14.3898 3.68731 14.3898 3.29678 13.9993L2.0041 12.7066ZM12.0052 2.70548L2.71121 11.9995L4.00389 13.2922L13.2979 3.99816L12.0052 2.70548Z" fill-opacity="0.87"/>
431
+ <path d="M9.70703 5L11.0078 6.30078L10.3007 7.00789L8.99992 5.70711L9.70703 5Z" fill-opacity="0.87"/>
432
+ <path d="M2.00415 3.99835C2.00415 3.72221 2.22801 3.49835 2.50415 3.49835H5.50415C5.78029 3.49835 6.00415 3.72221 6.00415 3.99835C6.00415 4.27449 5.78029 4.49835 5.50415 4.49835H2.50415C2.22801 4.49835 2.00415 4.27449 2.00415 3.99835Z" fill-opacity="0.87"/>
433
+ <path d="M4.00415 1.99835C4.28029 1.99835 4.50415 2.22221 4.50415 2.49835V3.49835H3.50415L3.50415 2.49835C3.50415 2.22221 3.72801 1.99835 4.00415 1.99835Z" fill-opacity="0.87"/>
434
+ <path d="M4.00415 5.99835C3.72801 5.99835 3.50415 5.77449 3.50415 5.49835L3.50415 4.49835H4.50415V5.49835C4.50415 5.77449 4.28029 5.99835 4.00415 5.99835Z" fill-opacity="0.87"/>
435
+ <path d="M11 9C11 8.72386 11.2239 8.5 11.5 8.5H14.5C14.7761 8.5 15 8.72386 15 9C15 9.27614 14.7761 9.5 14.5 9.5H11.5C11.2239 9.5 11 9.27614 11 9Z" fill-opacity="0.87"/>
436
+ <path d="M13 7C13.2761 7 13.5 7.22386 13.5 7.5V8.5H12.5L12.5 7.5C12.5 7.22386 12.7239 7 13 7Z" fill-opacity="0.87"/>
437
+ <path d="M13 11C12.7239 11 12.5 10.7761 12.5 10.5L12.5 9.5H13.5V10.5C13.5 10.7761 13.2761 11 13 11Z" fill-opacity="0.87"/>
438
+ <path d="M9 12.5C9 12.2239 9.22386 12 9.5 12H11.5C11.7761 12 12 12.2239 12 12.5C12 12.7761 11.7761 13 11.5 13H9.5C9.22386 13 9 12.7761 9 12.5Z" fill-opacity="0.87"/>
439
+ <path d="M10.5 11C10.7761 11 11 11.2239 11 11.5V12H10V11.5C10 11.2239 10.2239 11 10.5 11Z" fill-opacity="0.87"/>
440
+ <path d="M11 13V13.5C11 13.7761 10.7761 14 10.5 14C10.2239 14 10 13.7761 10 13.5V13H11Z" fill-opacity="0.87"/>
525
441
  </symbol>
526
442
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="map">
527
443
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -534,10 +450,11 @@
534
450
  d="M7.99957 2.0769C5.29258 2.0769 3.09033 4.27167 3.09033 6.96829C3.09033 10.3994 7.18064 13.7421 7.99957 13.9202C8.81851 13.7414 12.9088 10.3986 12.9088 6.96829C12.9088 4.27167 10.7066 2.0769 7.99957 2.0769ZM7.99969 15C6.69493 15 1.99951 11.0139 1.99951 6.96831C1.99951 3.67723 4.69123 1 7.99969 1C11.3082 1 13.9999 3.67723 13.9999 6.96831C13.9999 11.0139 9.30446 15 7.99969 15Z"></path>
535
451
  </g>
536
452
  </symbol>
537
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="mapCard">
538
- <path fill-rule="evenodd" clip-rule="evenodd"
539
- d="M14.5 1.19104V12.3091L10 14.5591L6 12.5591L1.5 14.8091V3.69104L6 1.44104L10 3.44104L14.5 1.19104ZM9.5 4.30907L6.5 2.80907V11.691L9.5 13.191V4.30907ZM10.5 13.191L13.5 11.691V2.80907L10.5 4.30907V13.191ZM5.5 11.691V2.80907L2.5 4.30907V13.191L5.5 11.691Z"></path>
453
+ <symbol viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" id="mapCard">
454
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.5 1.19104V12.3091L10 14.5591L6 12.5591L1.5 14.8091V3.69104L6 1.44104L10 3.44104L14.5 1.19104ZM9.5 4.30907L6.5 2.80907V11.691L9.5 13.191V4.30907ZM10.5 13.191L13.5 11.691V2.80907L10.5 4.30907V13.191ZM5.5 11.691V2.80907L2.5 4.30907V13.191L5.5 11.691Z"/>
540
455
  </symbol>
456
+
457
+
541
458
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="menu">
542
459
  <path fill-rule="evenodd" clip-rule="evenodd" d="M2 13H14V14H2V13ZM2 8H14V9H2V8ZM2 3H14V4H2V3Z"></path>
543
460
  </symbol>
@@ -548,28 +465,19 @@
548
465
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="minus">
549
466
  <path d="M2.5 7.5H13.5V8.5H2.5V7.5Z"></path>
550
467
  </symbol>
551
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="monitoringDepth">
552
- <path fill-rule="evenodd" clip-rule="evenodd"
553
- d="M4.11904 3V5V5.31424L4.4295 5.42942L8.84132 7.06618L1.9253 10.5942L1 11.0662L1.97909 11.4294L7.05954 13.3142V15H8.0397V13V12.6858L7.72925 12.5706L3.31743 10.9338L10 7.52491V6.50393L5.09921 4.68576V3H4.11904Z"></path>
554
- <path fill-rule="evenodd" clip-rule="evenodd"
555
- d="M12.5 15L9 11.7428L9.73799 11.056L11.9782 13.1408V7H13.0218V13.1408L15.262 11.056L16 11.7428L12.5 15Z"></path>
556
- <path d="M14 2L14 3L2 3L2 2L14 2Z"></path>
557
- </symbol>
558
468
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="monitoringTime">
469
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.00052 2V4.16667V4.5071L4.31726 4.63187L8.14674 6.14046C8.47856 5.88482 8.84038 5.66621 9.22602 5.49083L5.00052 3.82624V2H4.00052ZM6.22233 8.9485L3.18268 10.595L6.146 11.7623C6.24986 12.2046 6.40708 12.6262 6.6105 13.0201L1.81726 11.1319L0.818359 10.7384L1.76238 10.227L6.94221 7.42128C6.6285 7.88484 6.38365 8.3988 6.22233 8.9485ZM7.00052 13.6632C7.28441 14.0663 7.62109 14.4296 8.00052 14.7429V15H7.00052V13.6632Z" />
470
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.5 14C13.433 14 15 12.433 15 10.5C15 8.567 13.433 7 11.5 7C9.567 7 8 8.567 8 10.5C8 12.433 9.567 14 11.5 14ZM11.5 15C13.9853 15 16 12.9853 16 10.5C16 8.01472 13.9853 6 11.5 6C9.01472 6 7 8.01472 7 10.5C7 12.9853 9.01472 15 11.5 15ZM11 10V8H12V10H14V11H12H11V10Z" />
471
+ <rect x="14" y="2" width="1" height="12" transform="rotate(90 14 2)" />
472
+ </symbol>
473
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="moreVertical">
559
474
  <path fill-rule="evenodd" clip-rule="evenodd"
560
- d="M4.00003 2V4.16667V4.5071L4.31677 4.63187L8.14625 6.14046C8.47807 5.88482 8.8399 5.66621 9.22554 5.49083L5.00003 3.82624V2H4.00003ZM6.22184 8.9485L3.18219 10.595L6.14551 11.7623C6.24937 12.2046 6.40659 12.6262 6.61001 13.0201L1.81677 11.1319L0.817871 10.7384L1.76189 10.227L6.94173 7.42128C6.62801 7.88484 6.38316 8.3988 6.22184 8.9485ZM7.00003 13.6632C7.28392 14.0663 7.62061 14.4296 8.00003 14.7429V15H7.00003V13.6632Z"></path>
561
- <path fill-rule="evenodd" clip-rule="evenodd"
562
- d="M11.5 14C13.433 14 15 12.433 15 10.5C15 8.567 13.433 7 11.5 7C9.567 7 8 8.567 8 10.5C8 12.433 9.567 14 11.5 14ZM11.5 15C13.9853 15 16 12.9853 16 10.5C16 8.01472 13.9853 6 11.5 6C9.01472 6 7 8.01472 7 10.5C7 12.9853 9.01472 15 11.5 15ZM11 10V8H12V10H14V11H12H11V10Z"></path>
563
- <path d="M14 2L14 3L2 3L2 2L14 2Z"></path>
475
+ d="M8 12C8.55228 12 9 12.4477 9 13C9 13.5523 8.55228 14 8 14C7.44772 14 7 13.5523 7 13C7 12.4477 7.44772 12 8 12ZM8 6.75C8.55228 6.75 9 7.19772 9 7.75C9 8.30228 8.55228 8.75 8 8.75C7.44772 8.75 7 8.30228 7 7.75C7 7.19772 7.44772 6.75 8 6.75ZM9 2.75C9 2.19772 8.55228 1.75 8 1.75C7.44772 1.75 7 2.19772 7 2.75C7 3.30229 7.44772 3.75 8 3.75C8.55228 3.75 9 3.30229 9 2.75Z"></path>
564
476
  </symbol>
565
477
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="moreHorizontal">
566
478
  <path fill-rule="evenodd" clip-rule="evenodd"
567
479
  d="M3.875 7.875C3.875 8.42728 3.42728 8.875 2.875 8.875C2.32272 8.875 1.875 8.42728 1.875 7.875C1.875 7.32272 2.32272 6.875 2.875 6.875C3.42728 6.875 3.875 7.32272 3.875 7.875ZM9.125 7.875C9.125 8.42729 8.67728 8.875 8.125 8.875C7.57272 8.875 7.125 8.42729 7.125 7.875C7.125 7.32272 7.57272 6.875 8.125 6.875C8.67728 6.875 9.125 7.32272 9.125 7.875ZM13.125 8.875C13.6773 8.875 14.125 8.42729 14.125 7.875C14.125 7.32272 13.6773 6.875 13.125 6.875C12.5727 6.875 12.125 7.32272 12.125 7.875C12.125 8.42729 12.5727 8.875 13.125 8.875Z"></path>
568
480
  </symbol>
569
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="moreVertical">
570
- <path fill-rule="evenodd" clip-rule="evenodd"
571
- d="M8 12C8.55228 12 9 12.4477 9 13C9 13.5523 8.55228 14 8 14C7.44772 14 7 13.5523 7 13C7 12.4477 7.44772 12 8 12ZM8 6.75C8.55228 6.75 9 7.19772 9 7.75C9 8.30228 8.55228 8.75 8 8.75C7.44772 8.75 7 8.30228 7 7.75C7 7.19772 7.44772 6.75 8 6.75ZM9 2.75C9 2.19772 8.55228 1.75 8 1.75C7.44772 1.75 7 2.19772 7 2.75C7 3.30229 7.44772 3.75 8 3.75C8.55228 3.75 9 3.30229 9 2.75Z"></path>
572
- </symbol>
573
481
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="move">
574
482
  <path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 8.5L2.5 8.5L2.5 7.5L13.5 7.5L13.5 8.5Z"></path>
575
483
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -582,12 +490,14 @@
582
490
  <path fill-rule="evenodd" clip-rule="evenodd"
583
491
  d="M7.99996 14.7071L5.64641 12.3535L6.35352 11.6464L7.99996 13.2929L9.64641 11.6464L10.3535 12.3535L7.99996 14.7071Z"></path>
584
492
  </symbol>
585
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="moveHorizontal">
586
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 8.5L2.5 8.5L2.5 7.5L13.5 7.5L13.5 8.5Z"></path>
587
- <path fill-rule="evenodd" clip-rule="evenodd"
588
- d="M14.7072 8.00001L12.3536 10.3536L11.6465 9.64645L13.2929 8.00001L11.6465 6.35356L12.3536 5.64645L14.7072 8.00001Z"></path>
493
+ <symbol width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" id="monitoring">
589
494
  <path fill-rule="evenodd" clip-rule="evenodd"
590
- d="M1.29285 7.99999L3.6464 5.64644L4.35351 6.35355L2.70706 7.99999L4.35351 9.64644L3.6464 10.3535L1.29285 7.99999Z"></path>
495
+ d="M14 3V2H2V3L6.375 3V4.83333V5.15827L6.67193 5.29024L9.92651 6.73672L4.73927 9.90669L3.92651 10.4034L4.79693 10.7902L8.625 12.4916V14H9.625V12.1667V11.8417L9.32807 11.7098L6.07349 10.2633L11.2607 7.09331L12.0735 6.59662L11.2031 6.20976L7.375 4.5084V3L14 3Z"/>
496
+ </symbol>
497
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="monitoringDepth">
498
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.99965 3V5V5.35021L4.32878 5.4699L8.73633 7.07264L1.77604 10.5528L0.736328 11.0726L1.82878 11.4699L6.99965 13.3502V15H7.99965V13V12.6498L7.67052 12.5301L3.26297 10.9274L9.99965 7.55902V6.46797L4.99965 4.64979V3H3.99965Z" />
499
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 15L9 11.7428L9.73799 11.056L11.9782 13.1408V7H13.0218V13.1408L15.262 11.056L16 11.7428L12.5 15Z" />
500
+ <rect x="14" y="2" width="1" height="12" transform="rotate(90 14 2)" />
591
501
  </symbol>
592
502
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="moveVertical">
593
503
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.5 2.5L8.5 13.5L7.5 13.5L7.5 2.5L8.5 2.5Z"></path>
@@ -596,6 +506,13 @@
596
506
  <path fill-rule="evenodd" clip-rule="evenodd"
597
507
  d="M7.99996 14.7071L5.64641 12.3535L6.35352 11.6464L7.99996 13.2929L9.64641 11.6464L10.3535 12.3535L7.99996 14.7071Z"></path>
598
508
  </symbol>
509
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="moveHorizontal">
510
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 8.5L2.5 8.5L2.5 7.5L13.5 7.5L13.5 8.5Z"></path>
511
+ <path fill-rule="evenodd" clip-rule="evenodd"
512
+ d="M14.7072 8.00001L12.3536 10.3536L11.6465 9.64645L13.2929 8.00001L11.6465 6.35356L12.3536 5.64645L14.7072 8.00001Z"></path>
513
+ <path fill-rule="evenodd" clip-rule="evenodd"
514
+ d="M1.29285 7.99999L3.6464 5.64644L4.35351 6.35355L2.70706 7.99999L4.35351 9.64644L3.6464 10.3535L1.29285 7.99999Z"></path>
515
+ </symbol>
599
516
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="multiCopy">
600
517
  <path fill-rule="evenodd" clip-rule="evenodd" d="M10 6H3V14H10V6ZM2 5V15H11V5H2Z"></path>
601
518
  <path fill-rule="evenodd" clip-rule="evenodd" d="M13 3V13H12V4H4V3H13Z"></path>
@@ -606,9 +523,16 @@
606
523
  <path fill-rule="evenodd" clip-rule="evenodd" d="M7 2H13V6H8V11H7V2ZM12 3H8V5H12V3Z"></path>
607
524
  <path d="M11.9961 11V12.9961H10V13.999H11.9961V15.9951H12.999V13.999H14.9951V12.9961H12.999V11H11.9961Z"></path>
608
525
  </symbol>
609
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 17" id="nolteAnalysis">
610
- <path fill-rule="evenodd" clip-rule="evenodd"
611
- d="M2.5 6C2.69806 6 2.88715 6.03839 3.06024 6.10812L5.23696 3.30949C5.08698 3.07597 5 2.79814 5 2.5C5 1.67157 5.67157 1 6.5 1C7.32843 1 8 1.67157 8 2.5C8 2.73157 7.94753 2.95087 7.85382 3.14669L9.85332 5.14618C10.0491 5.05247 10.2684 5 10.5 5C10.6563 5 10.8071 5.02391 10.9488 5.06828L12.2514 3.3315C12.0926 3.09351 12 2.80757 12 2.5C12 1.67157 12.6716 1 13.5 1C14.3284 1 15 1.67157 15 2.5C15 3.32843 14.3284 4 13.5 4C13.3437 4 13.1929 3.97608 13.0512 3.93171L11.7486 5.66848C11.9074 5.90647 12 6.19242 12 6.5C12 7.32843 11.3284 8 10.5 8C9.67157 8 9 7.32843 9 6.5C9 6.26842 9.05248 6.0491 9.1462 5.85327L7.14673 3.8538C6.95091 3.94752 6.73158 4 6.5 4C6.33441 4 6.1751 3.97317 6.02616 3.92362L3.81137 6.77121C3.93154 6.98698 4 7.2355 4 7.5C4 8.32843 3.32843 9 2.5 9C1.67157 9 1 8.32843 1 7.5C1 6.67157 1.67157 6 2.5 6ZM2.5 7C2.77614 7 3 7.22386 3 7.5C3 7.77614 2.77614 8 2.5 8C2.22386 8 2 7.77614 2 7.5C2 7.22386 2.22386 7 2.5 7ZM6.5 2C6.77614 2 7 2.22386 7 2.5C7 2.77614 6.77614 3 6.5 3C6.22386 3 6 2.77614 6 2.5C6 2.22386 6.22386 2 6.5 2ZM11 6.5C11 6.22386 10.7761 6 10.5 6C10.2239 6 10 6.22386 10 6.5C10 6.77614 10.2239 7 10.5 7C10.7761 7 11 6.77614 11 6.5ZM13.5 2C13.7761 2 14 2.22386 14 2.5C14 2.77614 13.7761 3 13.5 3C13.2239 3 13 2.77614 13 2.5C13 2.22386 13.2239 2 13.5 2ZM14 14.0404L11 9.00627V9H10.9963H10.4987H10V16H11V10.9597L14 16V16.0062L14.0037 16.0063H14.5L15 16V9.00627L14 9V14.0404Z"></path>
526
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="nolteAnalysis">
527
+ <g clip-path="url(#clip0_6052_17545)">
528
+ <path fill-rule="evenodd" clip-rule="evenodd"
529
+ d="M2.5 5C2.69806 5 2.88715 5.03839 3.06024 5.10812L5.23696 2.30949C5.08698 2.07597 5 1.79814 5 1.5C5 0.671573 5.67157 0 6.5 0C7.32843 0 8 0.671573 8 1.5C8 1.73157 7.94753 1.95087 7.85382 2.14669L9.85332 4.14618C10.0491 4.05247 10.2684 4 10.5 4C10.6563 4 10.8071 4.02391 10.9488 4.06828L12.2514 2.3315C12.0926 2.09351 12 1.80757 12 1.5C12 0.671573 12.6716 0 13.5 0C14.3284 0 15 0.671573 15 1.5C15 2.32843 14.3284 3 13.5 3C13.3437 3 13.1929 2.97608 13.0512 2.93171L11.7486 4.66848C11.9074 4.90647 12 5.19242 12 5.5C12 6.32843 11.3284 7 10.5 7C9.67157 7 9 6.32843 9 5.5C9 5.26842 9.05248 5.0491 9.1462 4.85327L7.14673 2.8538C6.95091 2.94752 6.73158 3 6.5 3C6.33441 3 6.1751 2.97317 6.02616 2.92362L3.81137 5.77121C3.93154 5.98698 4 6.2355 4 6.5C4 7.32843 3.32843 8 2.5 8C1.67157 8 1 7.32843 1 6.5C1 5.67157 1.67157 5 2.5 5ZM2.5 6C2.77614 6 3 6.22386 3 6.5C3 6.77614 2.77614 7 2.5 7C2.22386 7 2 6.77614 2 6.5C2 6.22386 2.22386 6 2.5 6ZM6.5 1C6.77614 1 7 1.22386 7 1.5C7 1.77614 6.77614 2 6.5 2C6.22386 2 6 1.77614 6 1.5C6 1.22386 6.22386 1 6.5 1ZM11 5.5C11 5.22386 10.7761 5 10.5 5C10.2239 5 10 5.22386 10 5.5C10 5.77614 10.2239 6 10.5 6C10.7761 6 11 5.77614 11 5.5ZM13.5 1C13.7761 1 14 1.22386 14 1.5C14 1.77614 13.7761 2 13.5 2C13.2239 2 13 1.77614 13 1.5C13 1.22386 13.2239 1 13.5 1ZM14 14.0404L11 9.00627V9H10.9963H10.4987H10V16H11V10.9597L14 15.9938V16L14.0037 16H14.5013L15 16V9H14V14.0404Z"></path>
530
+ </g>
531
+ <defs>
532
+ <clipPath id="clip0_6052_17545">
533
+ <rect width="16" height="16" fill="white"></rect>
534
+ </clipPath>
535
+ </defs>
612
536
  </symbol>
613
537
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="noSignal">
614
538
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -618,6 +542,8 @@
618
542
  <path d="M4.13599 3L12.4172 11.2813L11.7101 11.9884L3.42888 3.70711L4.13599 3Z"></path>
619
543
  </symbol>
620
544
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="paste">
545
+ <path fill-rule="evenodd" clip-rule="evenodd"
546
+ d="M11 2H5V3H4H3V4V13V14H4H12H13V13V4V3H12H11V2ZM5 4V6H11V4H12V13H4V4H5Z" fill="white"></path>
621
547
  <path fill-rule="evenodd" clip-rule="evenodd"
622
548
  d="M11 2H5V3H3V14H13V3H11V2ZM10 3H6V5H10V3ZM5 4H4V13H12V4H11V6H5V4Z"></path>
623
549
  </symbol>
@@ -640,11 +566,6 @@
640
566
  <path fill-rule="evenodd" clip-rule="evenodd"
641
567
  d="M8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10ZM8 11C9.65685 11 11 9.65685 11 8C11 6.34315 9.65685 5 8 5C6.34315 5 5 6.34315 5 8C5 9.65685 6.34315 11 8 11Z"></path>
642
568
  </symbol>
643
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="photoCameraCrossed">
644
- <path fill-rule="evenodd" clip-rule="evenodd"
645
- d="M2.29297 4H1H0V5V13V14H1H12.293L11.293 13H1V5H3H3.29297L2.29297 4ZM3.23573 3.52855L3.98108 4.2739L4.61803 3H11.382L12.1056 4.44721L12.382 5H13H15V13H12.7072L13.7072 14H15H16V13V5V4H15H13L12 2H4L3.23573 3.52855ZM9.96988 10.2627C10.6011 9.71272 11 8.90295 11 8C11 6.34315 9.65685 5 8 5C7.09705 5 6.28728 5.39891 5.7373 6.03012L6.44693 6.73975C6.81363 6.2884 7.37314 6 8 6C9.10457 6 10 6.89543 10 8C10 8.62686 9.7116 9.18637 9.26025 9.55307L9.96988 10.2627ZM6.01866 7.72569C6.00636 7.81537 6 7.90694 6 8C6 9.10457 6.89543 10 8 10C8.09306 10 8.18463 9.99364 8.27431 9.98134L9.08914 10.7962C8.75152 10.9278 8.38419 11 8 11C6.34315 11 5 9.65685 5 8C5 7.61581 5.07222 7.24848 5.20382 6.91086L6.01866 7.72569Z"></path>
646
- <path d="M1.83325 2.14172L2.54036 1.43462L15.855 14.7493L15.1479 15.4564L1.83325 2.14172Z"></path>
647
- </symbol>
648
569
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="pieChart">
649
570
  <path fill-rule="evenodd" clip-rule="evenodd"
650
571
  d="M10.6623 2.43599C12.0374 3.03254 12.9885 3.9874 13.5616 5.33215L10.6623 2.43599ZM13.5616 5.33215L13.565 5.33995L13.5616 5.33215ZM14.4816 4.9401C13.8063 3.35554 12.6657 2.215 11.0599 1.51843C10.5782 1.3097 10.0858 1.16399 9.58281 1.08132C9.25404 1.02729 8.9207 1.00018 8.58281 1V7.41719H15C14.9998 7.07851 14.9729 6.74518 14.9193 6.41719C14.8367 5.91215 14.6908 5.41979 14.4816 4.9401ZM13.565 5.33995C13.7185 5.69189 13.8312 6.05056 13.9033 6.41719L13.565 5.33995ZM13.9033 6.41719H9.58281V2.09744C9.94815 2.16967 10.3078 2.28241 10.6623 2.43599M7.41605 8.58395L7.41263 2.16676C7.41037 2.16676 7.40811 2.16676 7.40586 2.16677C7.06988 2.16712 6.73882 2.19411 6.41267 2.24772C5.91015 2.33033 5.41929 2.47615 4.9401 2.6852C3.35554 3.36581 2.215 4.50901 1.51843 6.11484C1.17281 6.91243 1 7.7366 1 8.58737C1 9.44345 1.17281 10.2676 1.51843 11.0599C2.20437 12.6551 3.34491 13.7983 4.9401 14.4895C5.73238 14.8298 6.55655 15 7.41263 15C8.26872 15 9.09554 14.8298 9.89314 14.4895C11.4777 13.7983 12.6182 12.6551 13.3148 11.0599C13.5244 10.5827 13.6704 10.0918 13.7529 9.58728C13.8057 9.26448 13.8325 8.93608 13.8332 8.60207C13.8332 8.59717 13.8332 8.59227 13.8332 8.58737L10.9163 8.58395H7.41605ZM12.7372 9.58609L6.41658 9.58395L6.41322 3.26376C6.0489 3.33589 5.69155 3.44839 5.33995 3.60178L5.33477 3.60404C3.98849 4.18231 3.03279 5.13682 2.43599 6.51244M12.7372 9.58609C12.6651 9.95183 12.5526 10.3086 12.3992 10.6578L12.3984 10.6597C11.8025 12.0243 10.8467 12.9816 9.49699 13.5713C8.82298 13.8584 8.13073 14 7.41263 14C6.69378 14 6.0043 13.8581 5.33624 13.5713C3.97546 12.9813 3.02197 12.025 2.4371 10.6649L2.43501 10.6601C2.14386 9.99264 2 9.30448 2 8.58737C2 7.87652 2.14364 7.18723 2.43599 6.51244"></path>
@@ -655,6 +576,11 @@
655
576
  <path fill-rule="evenodd" clip-rule="evenodd"
656
577
  d="M1.6466 13.6672L5.18213 10.1317L5.88924 10.8388L2.3537 14.3744L1.6466 13.6672Z"></path>
657
578
  </symbol>
579
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="photoCameraCrossed">
580
+ <path fill-rule="evenodd" clip-rule="evenodd"
581
+ d="M2.29297 4H1H0V5V13V14H1H12.293L11.293 13H1V5H3H3.29297L2.29297 4ZM3.23573 3.52855L3.98108 4.2739L4.61803 3H11.382L12.1056 4.44721L12.382 5H13H15V13H12.7072L13.7072 14H15H16V13V5V4H15H13L12 2H4L3.23573 3.52855ZM9.96988 10.2627C10.6011 9.71272 11 8.90295 11 8C11 6.34315 9.65685 5 8 5C7.09705 5 6.28728 5.39891 5.7373 6.03012L6.44693 6.73975C6.81363 6.2884 7.37314 6 8 6C9.10457 6 10 6.89543 10 8C10 8.62686 9.7116 9.18637 9.26025 9.55307L9.96988 10.2627ZM6.01866 7.72569C6.00636 7.81537 6 7.90694 6 8C6 9.10457 6.89543 10 8 10C8.09306 10 8.18463 9.99364 8.27431 9.98134L9.08914 10.7962C8.75152 10.9278 8.38419 11 8 11C6.34315 11 5 9.65685 5 8C5 7.61581 5.07222 7.24848 5.20382 6.91086L6.01866 7.72569Z"></path>
582
+ <path d="M1.83325 2.14172L2.54036 1.43462L15.855 14.7493L15.1479 15.4564L1.83325 2.14172Z"></path>
583
+ </symbol>
658
584
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="play">
659
585
  <path fill-rule="evenodd" clip-rule="evenodd"
660
586
  d="M3 2.00021L12.4434 7.90234L3 13.8045V2.00021ZM4 3.80446V12.0002L10.5566 7.90234L4 3.80446Z"></path>
@@ -679,13 +605,6 @@
679
605
  <path
680
606
  d="M8.5 11.5C8.5 11.7761 8.27614 12 8 12C7.72386 12 7.5 11.7761 7.5 11.5C7.5 11.2239 7.72386 11 8 11C8.27614 11 8.5 11.2239 8.5 11.5Z"></path>
681
607
  </symbol>
682
- <symbol width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" id="roadmaps">
683
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 13.5L11.5 2.5H12.5L14.5 13.5H13.5Z" fill="white" fill-opacity="0.87"/>
684
- <path d="M8 2.5V13.5" stroke="white" stroke-opacity="0.87"/>
685
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 13.5L4.5 2.5H3.5L1.5 13.5H2.5Z" fill="white" fill-opacity="0.87"/>
686
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6.22727 5.5L6.04545 7.5H5.04545L5.22727 5.5H6.22727ZM4.95455 8.5H5.95455L5.77273 10.5H4.77273L4.95455 8.5ZM4.68182 11.5L4.5 13.5H5.5L5.68182 11.5H4.68182ZM6.31818 4.5L6.5 2.5H5.5L5.31818 4.5H6.31818Z" fill="white" fill-opacity="0.87"/>
687
- <path fill-rule="evenodd" clip-rule="evenodd" d="M9.77273 5.5L9.95455 7.5H10.9545L10.7727 5.5H9.77273ZM10.2273 10.5L10.0455 8.5H11.0455L11.2273 10.5H10.2273ZM10.3182 11.5L10.5 13.5H11.5L11.3182 11.5H10.3182ZM9.68182 4.5H10.6818L10.5 2.5H9.5L9.68182 4.5Z" fill="white" fill-opacity="0.87"/>
688
- </symbol>
689
608
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="redo">
690
609
  <path fill-rule="evenodd" clip-rule="evenodd"
691
610
  d="M9.35072 5.72511L10.4745 4.6013H7.72691V4.59666C5.36707 4.59673 3.45406 6.50978 3.45406 8.86963C3.45406 11.2295 5.36713 13.1426 7.72703 13.1426C10.0869 13.1426 12 11.2295 12 8.86963H13C13 11.7818 10.6392 14.1426 7.72703 14.1426C4.81485 14.1426 2.45406 11.7818 2.45406 8.86963C2.45406 5.95745 4.81485 3.59666 7.72703 3.59666V3.6013H10.4745L9.35072 2.47749L10.0578 1.77039L12.0352 3.74775L12.3887 4.1013L12.0352 4.45486L10.0578 6.43222L9.35072 5.72511Z"></path>
@@ -711,16 +630,23 @@
711
630
  d="M12 6V9C12 9.76835 12.2889 10.4692 12.7639 11H3.23611C3.71115 10.4692 4 9.76835 4 9V6C4 3.79086 5.79086 2 8 2C10.2091 2 12 3.79086 12 6ZM13 6V9C13 10.1046 13.8954 11 15 11V12H14H2H1V11C2.10457 11 3 10.1046 3 9V6C3 3.23858 5.23858 1 8 1C10.7614 1 13 3.23858 13 6ZM8 15C6.89543 15 6 14.1046 6 13H5C5 14.6569 6.34315 16 8 16C9.65685 16 11 14.6569 11 13H10C10 14.1046 9.10457 15 8 15Z"></path>
712
631
  <path
713
632
  d="M15 4C15 5.65685 13.6569 7 12 7C10.3431 7 9 5.65685 9 4C9 2.34315 10.3431 1 12 1C13.6569 1 15 2.34315 15 4Z"
714
- fill="#DE2C2C"></path>
633
+ fill="#E25241"></path>
715
634
  <path fill-rule="evenodd" clip-rule="evenodd"
716
635
  d="M16 4C16 6.20914 14.2091 8 12 8C9.79086 8 8 6.20914 8 4C8 1.79086 9.79086 0 12 0C14.2091 0 16 1.79086 16 4ZM12 7C13.6569 7 15 5.65685 15 4C15 2.34315 13.6569 1 12 1C10.3431 1 9 2.34315 9 4C9 5.65685 10.3431 7 12 7Z"
717
636
  fill="white"></path>
718
637
  </symbol>
719
638
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="ruler">
720
- <path fill-rule="evenodd" clip-rule="evenodd"
721
- d="M6.00009 6L4.00006 6L4.00006 7.99998H3.00006V6L1.00012 6L1.00012 10H15.0001L15.0001 6L13.0001 6V6.99998H12.0001V6H10.0001L10.0001 7.99998L9.00011 7.99998V6H7.00008L7.00009 6.99998L6.00009 6.99998V6ZM0 5V11L16 11V5L0 5Z"></path>
722
- <path fill-rule="evenodd" clip-rule="evenodd"
723
- d="M6.00009 6L4.00006 6L4.00006 7.99998H3.00006V6L1.00012 6L1.00012 10H15.0001L15.0001 6L13.0001 6V6.99998H12.0001V6H10.0001L10.0001 7.99998L9.00011 7.99998V6H7.00008L7.00009 6.99998L6.00009 6.99998V6ZM0 5V11L16 11V5L0 5Z"></path>
639
+ <g clip-path="url(#clip0_5465_17610)">
640
+ <path fill-rule="evenodd" clip-rule="evenodd"
641
+ d="M6.00009 6L4.00006 6L4.00006 7.99998H3.00006V6L1.00012 6L1.00012 10H15.0001L15.0001 6L13.0001 6V6.99998H12.0001V6H10.0001L10.0001 7.99998L9.00011 7.99998V6H7.00008L7.00009 6.99998L6.00009 6.99998V6ZM0.00012207 5V11H16.0001V5H0.00012207Z"></path>
642
+ <path fill-rule="evenodd" clip-rule="evenodd"
643
+ d="M6.00009 6L4.00006 6L4.00006 7.99998H3.00006V6L1.00012 6L1.00012 10H15.0001L15.0001 6L13.0001 6V6.99998H12.0001V6H10.0001L10.0001 7.99998L9.00011 7.99998V6H7.00008L7.00009 6.99998L6.00009 6.99998V6ZM0.00012207 5V11H16.0001V5H0.00012207Z"></path>
644
+ </g>
645
+ <defs>
646
+ <clipPath id="clip0_5465_17610">
647
+ <rect width="16" height="16" fill="white"></rect>
648
+ </clipPath>
649
+ </defs>
724
650
  </symbol>
725
651
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="save">
726
652
  <path fill-rule="evenodd" clip-rule="evenodd" d="M3 13H13V5.41421L10.5858 3H3V13ZM11 2L14 5V14H2V2H11Z"></path>
@@ -750,7 +676,8 @@
750
676
  </symbol>
751
677
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="sigma">
752
678
  <path fill-rule="evenodd" clip-rule="evenodd"
753
- d="M7 13C9.76142 13 12 10.7614 12 8C12 5.23858 9.76142 3 7 3C4.23858 3 2 5.23858 2 8C2 10.7614 4.23858 13 7 13ZM7 14C10.3137 14 13 11.3137 13 8C13 4.68629 10.3137 2 7 2C3.68629 2 1 4.68629 1 8C1 11.3137 3.68629 14 7 14Z"></path>
679
+ d="M7 13C9.76142 13 12 10.7614 12 8C12 5.23858 9.76142 3 7 3C4.23858 3 2 5.23858 2 8C2 10.7614 4.23858 13 7 13ZM7 14C10.3137 14 13 11.3137 13 8C13 4.68629 10.3137 2 7 2C3.68629 2 1 4.68629 1 8C1 11.3137 3.68629 14 7 14Z"
680
+ ></path>
754
681
  <path d="M7 2H15V3H7V2Z"></path>
755
682
  </symbol>
756
683
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="signal">
@@ -823,37 +750,32 @@
823
750
  <path fill-rule="evenodd" clip-rule="evenodd" d="M13 3H10V6H13V3ZM9 2V7H14V2H9Z"></path>
824
751
  <path fill-rule="evenodd" clip-rule="evenodd" d="M13 10H10V13H13V10ZM9 9V14H14V9H9Z"></path>
825
752
  </symbol>
826
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="timeOut">
827
- <path d="M3 2H13V3H3V2Z"></path>
828
- <path d="M3 13H13V14H3V13Z"></path>
829
- <path fill-rule="evenodd" clip-rule="evenodd"
830
- d="M11.5 3V6.26759L5.5 10.2676V13H4.5V9.73241L10.5 5.73241V3H11.5Z"></path>
831
- <path fill-rule="evenodd" clip-rule="evenodd"
832
- d="M4.5 3H5.5V5.73241L11.5 9.73241V13H10.5V10.2676L4.5 6.26759V3Z"></path>
833
- </symbol>
834
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="timePeriod">
835
- <path
836
- d="M9.39186 12.3919C8.68138 12.7796 7.86643 13 7 13C4.23858 13 2 10.7614 2 8C2 5.23858 4.23858 3 7 3C7.86643 3 8.68138 3.22038 9.39186 3.60814L10.1237 2.87627C9.21384 2.32035 8.14433 2 7 2C3.68629 2 1 4.68629 1 8C1 11.3137 3.68629 14 7 14C8.14433 14 9.21384 13.6796 10.1237 13.1237L9.39186 12.3919Z"></path>
753
+ <symbol width="16" height="16" viewBox="0 0 15 16" xmlns="http://www.w3.org/2000/svg" id="timePeriod">
837
754
  <path
838
- d="M6.5 5V8C6.5 8.18939 6.607 8.36252 6.77639 8.44721L8.97639 9.54721L9.42361 8.65279L7.5 7.69098V5H6.5Z"></path>
755
+ d="M9.39186 12.3919C8.68138 12.7796 7.86643 13 7 13C4.23858 13 2 10.7614 2 8C2 5.23858 4.23858 3 7 3C7.86643 3 8.68138 3.22038 9.39186 3.60814L10.1237 2.87627C9.21384 2.32035 8.14433 2 7 2C3.68629 2 1 4.68629 1 8C1 11.3137 3.68629 14 7 14C8.14433 14 9.21384 13.6796 10.1237 13.1237L9.39186 12.3919Z"
756
+ />
757
+ <path d="M6.5 5V8C6.5 8.18939 6.607 8.36252 6.77639 8.44721L8.97639 9.54721L9.42361 8.65279L7.5 7.69098V5H6.5Z"
758
+ />
839
759
  <path fill-rule="evenodd" clip-rule="evenodd"
840
- d="M13 14.0011L15.6475 11.3536L14.9404 10.6465L13.5 12.0869V7.50003H12.5V12.0869L11.0596 10.6465L10.3525 11.3536L13 14.0011Z"></path>
760
+ d="M13 14.0011L15.6475 11.3536L14.9404 10.6465L13.5 12.0869V7.50003H12.5V12.0869L11.0596 10.6465L10.3525 11.3536L13 14.0011Z"
761
+ />
841
762
  <path fill-rule="evenodd" clip-rule="evenodd"
842
- d="M12.9999 2.02161L10.3751 4.64647L11.0822 5.35356L12.4999 3.93584L12.4999 9.00003L13.4999 9.00002L13.4999 3.9358L14.9177 5.35357L15.6248 4.64646L12.9999 2.02161Z"></path>
763
+ d="M12.9999 2.02161L10.3751 4.64647L11.0822 5.35356L12.4999 3.93584L12.4999 9.00003L13.4999 9.00002L13.4999 3.9358L14.9177 5.35357L15.6248 4.64646L12.9999 2.02161Z"
764
+ />
843
765
  </symbol>
844
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="track">
845
- <path d="M14 2L14 3L2 3L2 2L14 2Z"></path>
846
- <path fill-rule="evenodd" clip-rule="evenodd"
847
- d="M6.37501 3H7.37501V4.5084L12.0735 6.59662L6.0735 10.2633L9.62501 11.8417V14H8.62501V12.4916L3.92651 10.4034L9.92651 6.73672L6.37501 5.15827V3Z"></path>
766
+ <symbol width="16" height="16" viewBox="0 0 15 16" xmlns="http://www.w3.org/2000/svg" id="trackPeriod">
767
+ <path d="M11.0001 2L10 3.00002L1.32677 3.00002L1.32677 2.00002L11.0001 2Z" />
768
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13 14.001L15.6475 11.3535L14.9404 10.6464L13.5 12.0868V7.5H12.5V12.0868L11.0596 10.6464L10.3525 11.3535L13 14.001Z" />
769
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.9998 2.02161L10.375 4.64647L11.0822 5.35356L12.4998 3.93584L12.4999 9.00003L13.4999 9.00002L13.4998 3.9358L14.9177 5.35357L15.6248 4.64646L12.9998 2.02161Z" />
770
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.37501 3V4.83333V5.15827L6.67194 5.29024L9.92651 6.73672L4.73928 9.90669L3.92651 10.4034L4.79694 10.7902L8.62501 12.4916V14H9.62501V12.1667V11.8417L9.32808 11.7098L6.0735 10.2633L10 7.86375V5.67506L7.37501 4.5084V3H6.37501Z" />
848
771
  </symbol>
849
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="trackPeriod">
850
- <path d="M11.0001 2L10 3.00002L1.32677 3.00002L1.32677 2.00002L11.0001 2Z"></path>
851
- <path fill-rule="evenodd" clip-rule="evenodd"
852
- d="M13 14.001L15.6475 11.3535L14.9404 10.6464L13.5 12.0868V7.5H12.5V12.0868L11.0596 10.6464L10.3525 11.3535L13 14.001Z"></path>
772
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="timeOut">
773
+ <path d="M3 2H13V3H3V2Z"></path>
774
+ <path d="M3 13H13V14H3V13Z"></path>
853
775
  <path fill-rule="evenodd" clip-rule="evenodd"
854
- d="M12.9998 2.02161L10.375 4.64647L11.0822 5.35356L12.4998 3.93584L12.4999 9.00003L13.4999 9.00002L13.4998 3.9358L14.9177 5.35357L15.6248 4.64646L12.9998 2.02161Z"></path>
776
+ d="M11.5 3V6.26759L5.5 10.2676V13H4.5V9.73241L10.5 5.73241V3H11.5Z"></path>
855
777
  <path fill-rule="evenodd" clip-rule="evenodd"
856
- d="M6.37501 3V4.83333V5.15827L6.67194 5.29024L9.92651 6.73672L4.73928 9.90669L3.92651 10.4034L4.79694 10.7902L8.62501 12.4916V14H9.62501V12.1667V11.8417L9.32808 11.7098L6.0735 10.2633L10 7.86375V5.67506L7.37501 4.5084V3H6.37501Z"></path>
778
+ d="M4.5 3H5.5V5.73241L11.5 9.73241V13H10.5V10.2676L4.5 6.26759V3Z"></path>
857
779
  </symbol>
858
780
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="txt">
859
781
  <path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 3H1V2H5V3H3.5V8H2.5V3Z"></path>
@@ -889,7 +811,16 @@
889
811
  </symbol>
890
812
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="user">
891
813
  <path fill-rule="evenodd" clip-rule="evenodd"
892
- d="M7.99998 9C9.65683 9 11 7.65685 11 6C11 4.34315 9.65683 3 7.99998 3C6.34312 3 4.99998 4.34315 4.99998 6C4.99998 7.65685 6.34312 9 7.99998 9ZM12 6C12 7.65801 10.9912 9.08041 9.55395 9.68693C11.7447 10.2243 13.4991 11.8723 14.1865 14H13.125C12.325 11.9513 10.332 10.5 7.99998 10.5C5.66799 10.5 3.67499 11.9513 2.87492 14H1.81348C2.50081 11.8723 4.25527 10.2244 6.446 9.68693C5.00874 9.08041 3.99998 7.65801 3.99998 6C3.99998 3.79086 5.79084 2 7.99998 2C10.2091 2 12 3.79086 12 6Z"></path>
814
+ d="M8 9C9.65685 9 11 7.65685 11 6C11 4.34315 9.65685 3 8 3C6.34315 3 5 4.34315 5 6C5 7.65685 6.34315 9 8 9ZM8 10C10.2091 10 12 8.20914 12 6C12 3.79086 10.2091 2 8 2C5.79086 2 4 3.79086 4 6C4 8.20914 5.79086 10 8 10Z"></path>
815
+ <g clip-path="url(#clip0_5465_18557)">
816
+ <path fill-rule="evenodd" clip-rule="evenodd"
817
+ d="M8 10.5C4.96243 10.5 2.5 12.9624 2.5 16C2.5 19.0376 4.96243 21.5 8 21.5C11.0376 21.5 13.5 19.0376 13.5 16C13.5 12.9624 11.0376 10.5 8 10.5ZM1.5 16C1.5 12.4101 4.41015 9.5 8 9.5C11.5899 9.5 14.5 12.4101 14.5 16C14.5 19.5899 11.5899 22.5 8 22.5C4.41015 22.5 1.5 19.5899 1.5 16Z"></path>
818
+ </g>
819
+ <defs>
820
+ <clipPath id="clip0_5465_18557">
821
+ <rect width="14" height="7" fill="white" transform="translate(1 7)"></rect>
822
+ </clipPath>
823
+ </defs>
893
824
  </symbol>
894
825
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="warningFill">
895
826
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -922,7 +853,8 @@
922
853
  </symbol>
923
854
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="x">
924
855
  <path fill-rule="evenodd" clip-rule="evenodd"
925
- d="M10.6667 3H11.8685L8.53519 8.00001L11.8685 13H10.6667L7.93426 8.90139L5.20186 13H4.00001L7.33334 8.00001L4 3H5.20185L7.93426 7.09862L10.6667 3Z"></path>
856
+ d="M10.6667 3H11.8685L8.53519 8.00001L11.8685 13H10.6667L7.93426 8.90139L5.20186 13H4.00001L7.33334 8.00001L4 3H5.20185L7.93426 7.09862L10.6667 3Z"
857
+ ></path>
926
858
  </symbol>
927
859
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="xls">
928
860
  <path fill-rule="evenodd" clip-rule="evenodd"
@@ -937,15 +869,16 @@
937
869
  </symbol>
938
870
  <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="y">
939
871
  <path fill-rule="evenodd" clip-rule="evenodd"
940
- d="M10.6807 3H11.8765L8.49998 8.1493L8.5002 13H7.49997V8.15345L4.00793 3H5.21589L7.99314 7.09859L10.6807 3Z"></path>
872
+ d="M10.6807 3H11.8765L8.49998 8.1493L8.5002 13H7.49997V8.15345L4.00793 3H5.21589L7.99314 7.09859L10.6807 3Z"
873
+ ></path>
941
874
  </symbol>
942
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="zoom">
943
- <path fill-rule="evenodd" clip-rule="evenodd"
944
- d="M10.3346 11.0421C9.44987 11.8345 8.28121 12.3164 7 12.3164C4.23858 12.3164 2 10.0778 2 7.31641C2 4.55498 4.23858 2.31641 7 2.31641C9.76142 2.31641 12 4.55498 12 7.31641C12 8.43617 11.6319 9.46996 11.0101 10.3034L13.9797 13.273L13.2726 13.9801L10.3346 11.0421ZM11 7.31641C11 9.52555 9.20914 11.3164 7 11.3164C4.79086 11.3164 3 9.52555 3 7.31641C3 5.10727 4.79086 3.31641 7 3.31641C9.20914 3.31641 11 5.10727 11 7.31641Z"></path>
945
- <path fill-rule="evenodd" clip-rule="evenodd"
946
- d="M6.50005 9.81641L6.50005 4.81641L7.50005 4.81641L7.50005 9.81641H6.50005Z"></path>
947
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6.5 7.81646H4.46094V6.81646H6.5V7.81646Z"></path>
948
- <path fill-rule="evenodd" clip-rule="evenodd" d="M9.53906 7.81646H7.5V6.81646H9.53906V7.81646Z"></path>
875
+ <symbol viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" id="zoom">
876
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.3346 11.0421C9.44987 11.8345 8.28121 12.3164 7 12.3164C4.23858 12.3164 2 10.0778 2 7.31641C2 4.55498 4.23858 2.31641 7 2.31641C9.76142 2.31641 12 4.55498 12 7.31641C12 8.43617 11.6319 9.46996 11.0101 10.3034L13.9797 13.273L13.2726 13.9801L10.3346 11.0421ZM11 7.31641C11 9.52555 9.20914 11.3164 7 11.3164C4.79086 11.3164 3 9.52555 3 7.31641C3 5.10727 4.79086 3.31641 7 3.31641C9.20914 3.31641 11 5.10727 11 7.31641Z" fill-opacity="0.87"/>
877
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.50005 9.81641L6.50005 4.81641L7.50005 4.81641L7.50005 9.81641H6.50005Z" fill-opacity="0.87"/>
878
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.5 7.81646H4.46094V6.81646H6.5V7.81646Z" fill-opacity="0.87"/>
879
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.53906 7.81646H7.5V6.81646H9.53906V7.81646Z" fill-opacity="0.87"/>
949
880
  </symbol>
881
+
882
+
950
883
  </defs>
951
884
  </svg>