vcomply-design-system 1.0.50 → 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 (35) hide show
  1. package/css-build/css/forms/check-box.css +4 -4
  2. package/css-build/css/forms/forms.css +0 -2
  3. package/css-build/css/forms/index.css +8 -10
  4. package/css-build/css/index2.css +3 -2
  5. package/css-build/css/popover/popover.css +8 -8
  6. package/css-build/css/vx.css +14 -16
  7. package/css-build/images/no-data.svg +66 -267
  8. package/css-build/index.html +27 -20
  9. package/css-build/less/avatars/avatars.less +234 -19
  10. package/css-build/less/badge/badge.less +367 -0
  11. package/css-build/less/banner/banner.less +240 -0
  12. package/css-build/less/breadcrumb/breadcrumb.less +82 -0
  13. package/css-build/less/button/button.less +627 -0
  14. package/css-build/less/card/card.less +160 -0
  15. package/css-build/less/chip/chip.less +80 -0
  16. package/css-build/less/color/color.less +256 -61
  17. package/css-build/less/forms/check-box.less +71 -8
  18. package/css-build/less/forms/forms.less +1 -2
  19. package/css-build/less/index.less +99 -0
  20. package/css-build/less/index2.less +51 -3
  21. package/css-build/less/no-data/no-data.less +50 -34
  22. package/css-build/less/popover/popover.less +27 -20
  23. package/css-build/less/text/text.less +23 -21
  24. package/css-build/pages/avatars.html +599 -134
  25. package/css-build/pages/badge.html +694 -0
  26. package/css-build/pages/banner.html +404 -0
  27. package/css-build/pages/breadcrumb.html +200 -0
  28. package/css-build/pages/button.html +901 -695
  29. package/css-build/pages/card.html +415 -0
  30. package/css-build/pages/checkbox.html +248 -297
  31. package/css-build/pages/chip.html +228 -0
  32. package/css-build/pages/color-palette.html +542 -106
  33. package/css-build/pages/font-family.html +263 -98
  34. package/css-build/pages/no-data.html +27 -102
  35. package/package.json +1 -1
@@ -21,11 +21,11 @@ label.vx-checkbox-item span.checkbox {
21
21
  margin-top: 0px;
22
22
  }
23
23
  label.vx-checkbox-item span.value {
24
- color: #4E4E4E;
25
- font-size: 14px;
26
- line-height: 16px;
24
+ color: #000;
25
+ font-size: 11px;
27
26
  font-weight: 400;
28
- margin-left: 10px;
27
+ line-height: 16px;
28
+ margin-left: 8px;
29
29
  max-width: calc(100% - 26px);
30
30
  }
31
31
  label.vx-checkbox-item span.value:empty {
@@ -8,7 +8,6 @@ button {
8
8
  .vx-form-group {
9
9
  display: block;
10
10
  position: relative;
11
- margin-bottom: 16px;
12
11
  }
13
12
  .vx-form-group .select {
14
13
  position: relative;
@@ -200,7 +199,6 @@ button {
200
199
  .vx-form-group .checkbox-group li {
201
200
  list-style: none;
202
201
  display: block;
203
- padding: 4px 8px;
204
202
  }
205
203
  .vx-form-group .checkbox-group.ver {
206
204
  display: flex;
@@ -21,11 +21,11 @@ label.vx-checkbox-item span.checkbox {
21
21
  margin-top: 0px;
22
22
  }
23
23
  label.vx-checkbox-item span.value {
24
- color: #4E4E4E;
25
- font-size: 14px;
26
- line-height: 16px;
24
+ color: #000;
25
+ font-size: 11px;
27
26
  font-weight: 400;
28
- margin-left: 10px;
27
+ line-height: 16px;
28
+ margin-left: 8px;
29
29
  max-width: calc(100% - 26px);
30
30
  }
31
31
  label.vx-checkbox-item span.value:empty {
@@ -105,7 +105,6 @@ button {
105
105
  .vx-form-group {
106
106
  display: block;
107
107
  position: relative;
108
- margin-bottom: 16px;
109
108
  }
110
109
  .vx-form-group .select {
111
110
  position: relative;
@@ -297,7 +296,6 @@ button {
297
296
  .vx-form-group .checkbox-group li {
298
297
  list-style: none;
299
298
  display: block;
300
- padding: 4px 8px;
301
299
  }
302
300
  .vx-form-group .checkbox-group.ver {
303
301
  display: flex;
@@ -467,11 +465,11 @@ label.vx-radio-item span.radio .inner {
467
465
  display: none;
468
466
  }
469
467
  label.vx-radio-item span.value {
470
- color: #4E4E4E;
471
- font-size: 14px;
472
- line-height: 16px;
468
+ color: #000;
469
+ font-size: 11px;
473
470
  font-weight: 400;
474
- margin-left: 10px;
471
+ line-height: 16px;
472
+ margin-left: 8px;
475
473
  max-width: calc(100% - 26px);
476
474
  }
477
475
  label.vx-radio-item span.value:empty {
@@ -216,7 +216,7 @@ section .font-wrapper .content {
216
216
  color: #747576;
217
217
  }
218
218
  section .font-wrapper .content p {
219
- font-size: 20px;
219
+ font-size: 16px;
220
220
  word-spacing: 10px;
221
221
  }
222
222
  section .font-wrapper.light {
@@ -251,7 +251,7 @@ section .page-quick-menu {
251
251
  }
252
252
  section .preview-block {
253
253
  background: #f1f1f1;
254
- padding: 47px 15px 15px;
254
+ padding: 34px 5px 5px;
255
255
  border-radius: 4px;
256
256
  margin-bottom: 20px;
257
257
  position: relative;
@@ -263,6 +263,7 @@ section .preview-block .action-buttons {
263
263
  right: 1px;
264
264
  left: 1px;
265
265
  background: #FFFFFF;
266
+ border-radius: 4px 4px 0 0;
266
267
  position: absolute;
267
268
  }
268
269
  section .preview-block .action-buttons button {
@@ -36,12 +36,12 @@ button {
36
36
  box-shadow: none;
37
37
  }
38
38
  .vx-popover ul.popover-items li button {
39
- color: #747576;
39
+ color: #000;
40
40
  text-align: left;
41
41
  text-decoration: none;
42
42
  cursor: pointer;
43
43
  background: transparent;
44
- font-size: 12px;
44
+ font-size: 11px;
45
45
  text-transform: capitalize;
46
46
  display: flex;
47
47
  width: 100%;
@@ -50,12 +50,12 @@ button {
50
50
  margin: 0;
51
51
  }
52
52
  .vx-popover ul.popover-items li button i {
53
- font-size: 17px;
54
- margin-right: 10px;
55
- color: #1E5DD3;
53
+ font-size: 16px;
54
+ margin-right: 8px;
55
+ color: #565a6f;
56
56
  }
57
57
  .vx-popover ul.popover-items li button:hover {
58
- background: #F1F1F1;
58
+ background: #F2F2F5;
59
59
  }
60
60
  .vx-popover ul.popover-items li .avatar-card {
61
61
  display: flex;
@@ -88,10 +88,10 @@ button {
88
88
  }
89
89
  .vx-popover ul.popover-items li .avatar-card span.value {
90
90
  width: 100%;
91
- color: #6E717E;
91
+ color: #000;
92
92
  text-decoration: none;
93
93
  background: transparent;
94
- font-size: 12px;
94
+ font-size: 11px;
95
95
  text-transform: capitalize;
96
96
  display: block;
97
97
  font-weight: 400;
@@ -1215,11 +1215,11 @@ label.vx-checkbox-item span.checkbox {
1215
1215
  margin-top: 0px;
1216
1216
  }
1217
1217
  label.vx-checkbox-item span.value {
1218
- color: #4E4E4E;
1219
- font-size: 14px;
1220
- line-height: 16px;
1218
+ color: #000;
1219
+ font-size: 11px;
1221
1220
  font-weight: 400;
1222
- margin-left: 10px;
1221
+ line-height: 16px;
1222
+ margin-left: 8px;
1223
1223
  max-width: calc(100% - 26px);
1224
1224
  }
1225
1225
  label.vx-checkbox-item span.value:empty {
@@ -1292,7 +1292,6 @@ label.vx-checkbox-item input[type=checkbox]:disabled ~ * {
1292
1292
  .vx-form-group {
1293
1293
  display: block;
1294
1294
  position: relative;
1295
- margin-bottom: 16px;
1296
1295
  }
1297
1296
  .vx-form-group .select {
1298
1297
  position: relative;
@@ -1484,7 +1483,6 @@ label.vx-checkbox-item input[type=checkbox]:disabled ~ * {
1484
1483
  .vx-form-group .checkbox-group li {
1485
1484
  list-style: none;
1486
1485
  display: block;
1487
- padding: 4px 8px;
1488
1486
  }
1489
1487
  .vx-form-group .checkbox-group.ver {
1490
1488
  display: flex;
@@ -1654,11 +1652,11 @@ label.vx-radio-item span.radio .inner {
1654
1652
  display: none;
1655
1653
  }
1656
1654
  label.vx-radio-item span.value {
1657
- color: #4E4E4E;
1658
- font-size: 14px;
1659
- line-height: 16px;
1655
+ color: #000;
1656
+ font-size: 11px;
1660
1657
  font-weight: 400;
1661
- margin-left: 10px;
1658
+ line-height: 16px;
1659
+ margin-left: 8px;
1662
1660
  max-width: calc(100% - 26px);
1663
1661
  }
1664
1662
  label.vx-radio-item span.value:empty {
@@ -3086,12 +3084,12 @@ ul.vx-pagination li button i {
3086
3084
  box-shadow: none;
3087
3085
  }
3088
3086
  .vx-popover ul.popover-items li button {
3089
- color: #747576;
3087
+ color: #000;
3090
3088
  text-align: left;
3091
3089
  text-decoration: none;
3092
3090
  cursor: pointer;
3093
3091
  background: transparent;
3094
- font-size: 12px;
3092
+ font-size: 11px;
3095
3093
  text-transform: capitalize;
3096
3094
  display: flex;
3097
3095
  width: 100%;
@@ -3100,12 +3098,12 @@ ul.vx-pagination li button i {
3100
3098
  margin: 0;
3101
3099
  }
3102
3100
  .vx-popover ul.popover-items li button i {
3103
- font-size: 17px;
3104
- margin-right: 10px;
3105
- color: #1E5DD3;
3101
+ font-size: 16px;
3102
+ margin-right: 8px;
3103
+ color: #565a6f;
3106
3104
  }
3107
3105
  .vx-popover ul.popover-items li button:hover {
3108
- background: #F1F1F1;
3106
+ background: #F2F2F5;
3109
3107
  }
3110
3108
  .vx-popover ul.popover-items li .avatar-card {
3111
3109
  display: flex;
@@ -1,268 +1,67 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 24.1.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 256 192" style="enable-background:new 0 0 256 192;" xml:space="preserve">
5
- <style type="text/css">
6
- .st0{display:none;}
7
- .st1{display:inline;}
8
- .st2{fill:#FFFFFF;}
9
- .st3{fill:#BDBDBD;}
10
- .st4{display:inline;fill:#F1F1F1;}
11
- .st5{display:inline;fill:#BDBDBD;}
12
- .st6{fill:#EDF6FF;}
13
- .st7{fill:#1E5DD3;}
14
- .st8{fill:#F1F1F1;}
15
- .st9{fill:#66BF72;}
16
- .st10{fill:#E4B700;}
17
- .st11{fill:#C7381B;}
18
- .st12{fill:#161B2F;stroke:#161B2F;stroke-miterlimit:10;}
19
- .st13{fill:none;stroke:#1E5DD3;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;}
20
- .st14{fill:#747576;}
21
- .st15{fill:#BCBCBC;stroke:#FFFFFF;stroke-miterlimit:10;}
22
- .st16{fill:#BCBCBC;}
23
- .st17{fill:#FFFFFF;stroke:#DCDCDC;stroke-width:0.5;stroke-miterlimit:10;}
24
- .st18{fill:none;stroke:#DCDCDC;stroke-width:0.5;stroke-miterlimit:10;}
25
- .st19{fill:none;stroke:#BCBCBC;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
26
- .st20{fill-rule:evenodd;clip-rule:evenodd;fill:#66BF72;}
27
- .st21{fill:#57A4FF;}
28
- .st22{fill:#033187;}
29
- .st23{fill:#004FAC;}
30
- .st24{fill:none;stroke:#747576;stroke-width:0.5;stroke-miterlimit:10;}
31
- .st25{fill:none;stroke:#F1F1F1;stroke-width:0.25;stroke-linecap:round;stroke-miterlimit:10;}
32
- .st26{fill:#D3A111;}
33
- </style>
34
- <g id="Layer_1_1_">
35
- <g class="st0">
36
- <g class="st1">
37
- <path class="st2" d="M26.4,170.9c-2.6,0-4.8-2.1-4.8-4.8v-122c0-2.6,2.1-4.8,4.8-4.8h185c2.6,0,4.8,2.1,4.8,4.8v122
38
- c0,2.6-2.1,4.8-4.8,4.8H26.4z"/>
39
- <path class="st3" d="M211.4,40.1c2.2,0,4,1.8,4,4v122c0,2.2-1.8,4-4,4h-185c-2.2,0-4-1.8-4-4v-122c0-2.2,1.8-4,4-4L211.4,40.1
40
- M211.4,38.6h-185c-3,0-5.5,2.5-5.5,5.5v122c0,3,2.5,5.5,5.5,5.5h185c3,0,5.5-2.5,5.5-5.5v-122C216.9,41.1,214.4,38.6,211.4,38.6
41
- L211.4,38.6z"/>
42
- </g>
43
- <path class="st4" d="M211.4,170.1h-185c-2.2,0-4-1.8-4-4V166h193v0.1C215.4,168.3,213.6,170.1,211.4,170.1z"/>
44
- <path class="st5" d="M22.4,51.1v-7c0-2.2,1.8-4,4-4h185c2.2,0,4,1.8,4,4v7H22.4z"/>
45
- </g>
46
- <g>
47
- <path class="st6" d="M247,99c23.5,20.5-28.9,57.6-56,73c-62.8,35.7-169,7-180-52C-1.5,53.1,76,10,125.5,10C194,10,216,72,247,99z"
48
- />
49
- </g>
50
- <g>
51
- <path class="st2" d="M39.4,167.9c-2.6,0-4.8-2.1-4.8-4.8v-122c0-2.6,2.1-4.8,4.8-4.8h185c2.6,0,4.8,2.1,4.8,4.8v122
52
- c0,2.6-2.1,4.8-4.8,4.8H39.4z"/>
53
- <path class="st7" d="M224.4,37.1c2.2,0,4,1.8,4,4v122c0,2.2-1.8,4-4,4h-185c-2.2,0-4-1.8-4-4v-122c0-2.2,1.8-4,4-4L224.4,37.1
54
- M224.4,35.6h-185c-3,0-5.5,2.5-5.5,5.5v122c0,3,2.5,5.5,5.5,5.5h185c3,0,5.5-2.5,5.5-5.5v-122C229.9,38.1,227.4,35.6,224.4,35.6
55
- L224.4,35.6z"/>
56
- </g>
57
- <g>
58
- <path class="st2" d="M39.4,162.9c-2.6,0-4.8-2.1-4.8-4.8v-122c0-2.6,2.1-4.8,4.8-4.8h185c2.6,0,4.8,2.1,4.8,4.8v122
59
- c0,2.6-2.1,4.8-4.8,4.8H39.4z"/>
60
- <path class="st7" d="M224.4,32.1c2.2,0,4,1.8,4,4v122c0,2.2-1.8,4-4,4h-185c-2.2,0-4-1.8-4-4v-122c0-2.2,1.8-4,4-4L224.4,32.1
61
- M224.4,30.6h-185c-3,0-5.5,2.5-5.5,5.5v122c0,3,2.5,5.5,5.5,5.5h185c3,0,5.5-2.5,5.5-5.5v-122C229.9,33.1,227.4,30.6,224.4,30.6
62
- L224.4,30.6z"/>
63
- </g>
64
- <path class="st8" d="M224.4,162.1h-185c-2.2,0-4-1.8-4-4V158h193v0.1C228.4,160.3,226.6,162.1,224.4,162.1z"/>
65
- <path class="st8" d="M35.4,43.1v-7c0-2.2,1.8-4,4-4h185c2.2,0,4,1.8,4,4v7H35.4z"/>
66
- <circle class="st9" cx="45.7" cy="37.8" r="1.8"/>
67
- <circle class="st10" cx="51.7" cy="37.8" r="1.8"/>
68
- <circle class="st11" cx="57.7" cy="37.8" r="1.8"/>
69
- <path class="st12" d="M35.4,55.1v-19c0-2.2,1.8-4,4-4h185c2.2,0,4,1.8,4,4v19H35.4z"/>
70
- <circle class="st9" cx="45.7" cy="37.8" r="1.8"/>
71
- <circle class="st10" cx="51.7" cy="37.8" r="1.8"/>
72
- <circle class="st11" cx="57.7" cy="37.8" r="1.8"/>
73
- </g>
74
- <g id="Layer_3">
75
- <line class="st13" x1="251.3" y1="168" x2="253" y2="168"/>
76
- <line class="st13" x1="30.7" y1="168" x2="247" y2="168"/>
77
- <line class="st13" x1="7" y1="168" x2="18.3" y2="168"/>
78
- <line class="st13" x1="21" y1="168" x2="22.3" y2="168"/>
79
- <g>
80
- <g>
81
- <rect x="44.2" y="50.5" class="st2" width="115.3" height="23.6"/>
82
- <g>
83
- <path class="st14" d="M159.4,50.6V74h-115V50.6H159.4 M159.6,50.3h-0.3h-115H44v0.3V74v0.3h0.3h115h0.3V74V50.6V50.3L159.6,50.3
84
- z"/>
85
- </g>
86
- </g>
87
- <circle class="st15" cx="52" cy="57.4" r="3.7"/>
88
- <circle class="st15" cx="57.5" cy="57.4" r="3.7"/>
89
- </g>
90
- <g>
91
- <g>
92
- <rect x="44.1" y="131.4" class="st2" width="115.3" height="22.6"/>
93
- <g>
94
- <path class="st14" d="M159.3,131.5v22.4h-115v-22.4H159.3 M159.5,131.2h-0.3h-115H44v0.3v22.4v0.3h0.3h115h0.3v-0.3v-22.4v-0.3
95
- H159.5z"/>
96
- </g>
97
- </g>
98
- <g>
99
- <path class="st2" d="M50,143.9c-0.6,0-1.1-0.5-1.1-1.1v-7.1c0-0.6,0.5-1.1,1.1-1.1h103.8c0.6,0,1.1,0.5,1.1,1.1v7.1
100
- c0,0.6-0.5,1.1-1.1,1.1H50z"/>
101
- <g>
102
- <path class="st14" d="M153.9,134.6c0.6,0,1,0.4,1,1v7.1c0,0.6-0.4,1-1,1H50c-0.6,0-1-0.4-1-1v-7.1c0-0.6,0.4-1,1-1H153.9
103
- M153.9,134.4H50c-0.7,0-1.3,0.6-1.3,1.3v7.1c0,0.7,0.6,1.3,1.3,1.3h103.8c0.7,0,1.3-0.6,1.3-1.3v-7.1
104
- C155.1,134.9,154.6,134.4,153.9,134.4L153.9,134.4z"/>
105
- </g>
106
- </g>
107
- <circle class="st16" cx="52.8" cy="149.1" r="3"/>
108
- <circle class="st16" cx="60.4" cy="149.1" r="3"/>
109
- <circle class="st16" cx="68.1" cy="149.1" r="3"/>
110
- </g>
111
- <rect x="44.3" y="75.7" class="st17" width="115.3" height="7.2"/>
112
- <line class="st18" x1="48.7" y1="85" x2="48.7" y2="89.9"/>
113
- <line class="st18" x1="48.7" y1="98.3" x2="48.7" y2="121.9"/>
114
- <g>
115
- <path class="st8" d="M127.2,100.9H55.9c-0.8,0-1.5-0.7-1.5-1.5v-8.2c0-0.8,0.7-1.5,1.5-1.5h71.2c0.8,0,1.5,0.7,1.5,1.5v8.2
116
- C128.7,100.2,128,100.9,127.2,100.9z"/>
117
- <g>
118
- <path class="st16" d="M122.9,94.6H59.8c-0.6,0-1-0.5-1-1v0.1c0-0.6,0.5-1,1-1h63.1c0.6,0,1,0.5,1,1v-0.1
119
- C123.9,94.1,123.5,94.6,122.9,94.6z"/>
120
- </g>
121
- <g>
122
- <path class="st16" d="M107.6,98.2H59.8c-0.6,0-1-0.5-1-1v0.1c0-0.6,0.5-1,1-1h47.8c0.6,0,1,0.5,1,1v-0.1
123
- C108.7,97.7,108.2,98.2,107.6,98.2z"/>
124
- </g>
125
- <circle class="st7" cx="48.7" cy="93.8" r="3.3"/>
126
- </g>
127
- <g>
128
- <path class="st8" d="M117.2,117.1H66.1c-0.8,0-1.5-0.7-1.5-1.5v-8.2c0-0.8,0.7-1.5,1.5-1.5h51.1c0.8,0,1.5,0.7,1.5,1.5v8.2
129
- C118.7,116.5,118,117.1,117.2,117.1z"/>
130
- <g>
131
- <path class="st16" d="M112.9,110.8H70c-0.6,0-1-0.5-1-1v0.1c0-0.6,0.5-1,1-1h42.9c0.6,0,1,0.5,1,1v-0.1
132
- C113.9,110.3,113.5,110.8,112.9,110.8z"/>
133
- </g>
134
- <g>
135
- <path class="st16" d="M98.2,114.4H70c-0.6,0-1-0.5-1-1v0.1c0-0.6,0.5-1,1-1h28.1c0.6,0,1,0.5,1,1v-0.1
136
- C99.2,113.9,98.7,114.4,98.2,114.4z"/>
137
- </g>
138
- <circle class="st9" cx="58.9" cy="110" r="3.3"/>
139
- </g>
140
- <g>
141
- <path class="st8" d="M124.2,130H55.9c-0.8,0-1.5-0.7-1.5-1.5v-4.9c0-0.8,0.7-1.5,1.5-1.5h68.2c0.8,0,1.5,0.7,1.5,1.5v4.9
142
- C125.7,129.4,125,130,124.2,130z"/>
143
- <g>
144
- <path class="st16" d="M119.9,127H59.8c-0.6,0-1-0.5-1-1v0.1c0-0.6,0.5-1,1-1h60.1c0.6,0,1,0.5,1,1V126
145
- C120.9,126.6,120.5,127,119.9,127z"/>
146
- </g>
147
- <circle class="st7" cx="48.7" cy="126.2" r="3.3"/>
148
- </g>
149
- <g>
150
- <line class="st19" x1="67" y1="57.4" x2="127" y2="57.4"/>
151
- </g>
152
- <g>
153
- <line class="st19" x1="48.9" y1="66.2" x2="62.9" y2="66.2"/>
154
- </g>
155
- <g>
156
- <line class="st19" x1="48.9" y1="68.8" x2="58.9" y2="68.8"/>
157
- </g>
158
- <g>
159
- <line class="st19" x1="77.9" y1="66.2" x2="91.9" y2="66.2"/>
160
- </g>
161
- <g>
162
- <line class="st19" x1="77.9" y1="68.8" x2="87.9" y2="68.8"/>
163
- </g>
164
- <g>
165
- <line class="st19" x1="108.9" y1="66.2" x2="122.9" y2="66.2"/>
166
- </g>
167
- <g>
168
- <line class="st19" x1="108.9" y1="68.8" x2="118.9" y2="68.8"/>
169
- </g>
170
- <g>
171
- <line class="st19" x1="138.9" y1="66.2" x2="152.9" y2="66.2"/>
172
- </g>
173
- <g>
174
- <line class="st19" x1="138.9" y1="68.8" x2="148.9" y2="68.8"/>
175
- </g>
176
- </g>
177
- <g id="Layer_4">
178
- <g>
179
- <g>
180
- <rect x="164" y="50.3" class="st8" width="55" height="28.9"/>
181
- </g>
182
- <g>
183
- <line class="st19" x1="169.9" y1="55.6" x2="209.9" y2="55.6"/>
184
- </g>
185
- <g>
186
- <line class="st19" x1="169.9" y1="59.6" x2="202.9" y2="59.6"/>
187
- </g>
188
- <g>
189
- <line class="st19" x1="169.9" y1="68" x2="188.9" y2="68"/>
190
- </g>
191
- <g>
192
- <line class="st19" x1="169.9" y1="72" x2="194.9" y2="72"/>
193
- </g>
194
- </g>
195
- <circle class="st20" cx="21.3" cy="152.6" r="3.9"/>
196
- <path class="st21" d="M21,126.8v9.9h-1.7v3l-3-3H5v-9.9H21z"/>
197
- <path class="st22" d="M23.5,150.9h-4.3c-0.1,0-0.1,0.1-0.1,0.1v2.6c0,0.1,0.1,0.1,0.1,0.1h2.9l0.8,0.8c0,0,0.1,0,0.2,0v-0.1v-0.7
198
- h0.3c0.1,0,0.1-0.1,0.1-0.1V151C23.6,150.9,23.5,150.9,23.5,150.9L23.5,150.9z M23.3,153.5H23c-0.1,0-0.1,0.1-0.1,0.1v0.5l-0.6-0.6
199
- h-0.1h-2.9v-2.4h4V153.5z"/>
200
- <path class="st23" d="M8.5,130.2h8.7c0.2,0,0.4-0.2,0.4-0.4s-0.2-0.4-0.4-0.4H8.5c-0.2,0-0.4,0.2-0.4,0.4S8.3,130.2,8.5,130.2z"/>
201
- <path class="st23" d="M8.5,132h8.7c0.2,0,0.4-0.2,0.4-0.4s-0.2-0.4-0.4-0.4H8.5c-0.2,0-0.4,0.2-0.4,0.4S8.3,132,8.5,132z"/>
202
- <path class="st23" d="M8.5,133.7h4.3c0.2,0,0.4-0.2,0.4-0.4s-0.2-0.4-0.4-0.4H8.5c-0.2,0-0.4,0.2-0.4,0.4S8.3,133.7,8.5,133.7z"/>
203
- <path class="st23" d="M14.6,132.8h-0.4c-0.2,0-0.4,0.2-0.4,0.4s0.2,0.4,0.4,0.4h0.4c0.2,0,0.4-0.2,0.4-0.4S14.8,132.8,14.6,132.8z"
204
- />
205
- <path class="st24" d="M235.8,12.3h16c0.2,0,0.4,0.2,0.4,0.4v9.9c0,0.2-0.2,0.4-0.4,0.4h-11.1l-2.9,2.9c-0.2,0.2-0.4,0.2-0.6,0
206
- c-0.1-0.1-0.1-0.2-0.1-0.3V23h-1.3c-0.2,0-0.4-0.2-0.4-0.4v-9.9C235.4,12.5,235.5,12.3,235.8,12.3L235.8,12.3z"/>
207
- <circle class="st24" cx="239.4" cy="17.9" r="1.4"/>
208
- <circle class="st24" cx="243.9" cy="17.9" r="1.4"/>
209
- <circle class="st24" cx="248.3" cy="17.9" r="1.4"/>
210
- <g>
211
- <g>
212
- <path class="st16" d="M191.3,94.8h-15c-0.5,0-0.9-0.4-0.9-0.9V94c0-0.5,0.4-0.9,0.9-0.9h15c0.5,0,0.9,0.4,0.9,0.9v-0.1
213
- C192.2,94.4,191.8,94.8,191.3,94.8z"/>
214
- </g>
215
- <g>
216
- <path class="st16" d="M211.4,94.8h-2c-0.5,0-0.9-0.4-0.9-0.9V94c0-0.5,0.4-0.9,0.9-0.9h2c0.5,0,0.9,0.4,0.9,0.9v-0.1
217
- C212.4,94.4,211.9,94.8,211.4,94.8z"/>
218
- </g>
219
- <g>
220
- <path class="st16" d="M217.8,94.8h-2c-0.5,0-0.9-0.4-0.9-0.9V94c0-0.5,0.4-0.9,0.9-0.9h2c0.5,0,0.9,0.4,0.9,0.9v-0.1
221
- C218.8,94.4,218.4,94.8,217.8,94.8z"/>
222
- </g>
223
- <line class="st25" x1="165" y1="88.7" x2="219" y2="88.7"/>
224
- <line class="st25" x1="165" y1="98.7" x2="219" y2="98.7"/>
225
- <path class="st10" d="M172.1,96.7H166c-0.1,0-0.2-0.1-0.2-0.2v-3.4h6.6v3.4C172.3,96.6,172.2,96.7,172.1,96.7z"/>
226
- <path class="st26" d="M168.7,92.1v-0.7c0-0.1-0.1-0.2-0.2-0.2H166c-0.1,0-0.2,0.1-0.2,0.2V92v0.8h6.6v-0.5c0-0.1-0.1-0.2-0.2-0.2
227
- C172.2,92.1,168.7,92.1,168.7,92.1z"/>
228
- </g>
229
- <g>
230
- <g>
231
- <path class="st16" d="M191.3,104.8h-15c-0.5,0-0.9-0.4-0.9-0.9v0.1c0-0.5,0.4-0.9,0.9-0.9h15c0.5,0,0.9,0.4,0.9,0.9v-0.1
232
- C192.2,104.4,191.8,104.8,191.3,104.8z"/>
233
- </g>
234
- <g>
235
- <path class="st16" d="M211.4,104.8h-2c-0.5,0-0.9-0.4-0.9-0.9v0.1c0-0.5,0.4-0.9,0.9-0.9h2c0.5,0,0.9,0.4,0.9,0.9v-0.1
236
- C212.4,104.4,211.9,104.8,211.4,104.8z"/>
237
- </g>
238
- <g>
239
- <path class="st16" d="M217.8,104.8h-2c-0.5,0-0.9-0.4-0.9-0.9v0.1c0-0.5,0.4-0.9,0.9-0.9h2c0.5,0,0.9,0.4,0.9,0.9v-0.1
240
- C218.8,104.4,218.4,104.8,217.8,104.8z"/>
241
- </g>
242
- <line class="st25" x1="165" y1="98.7" x2="219" y2="98.7"/>
243
- <line class="st25" x1="165" y1="108.7" x2="219" y2="108.7"/>
244
- <path class="st10" d="M172.1,106.6H166c-0.1,0-0.2-0.1-0.2-0.2V103h6.6v3.4C172.3,106.5,172.2,106.6,172.1,106.6z"/>
245
- <path class="st26" d="M168.7,102.1v-0.7c0-0.1-0.1-0.2-0.2-0.2H166c-0.1,0-0.2,0.1-0.2,0.2v0.6v0.8h6.6v-0.5
246
- c0-0.1-0.1-0.2-0.2-0.2C172.2,102.1,168.7,102.1,168.7,102.1z"/>
247
- </g>
248
- <g>
249
- <g>
250
- <path class="st16" d="M191.3,114.8h-15c-0.5,0-0.9-0.4-0.9-0.9v0.1c0-0.5,0.4-0.9,0.9-0.9h15c0.5,0,0.9,0.4,0.9,0.9v-0.1
251
- C192.2,114.4,191.8,114.8,191.3,114.8z"/>
252
- </g>
253
- <g>
254
- <path class="st16" d="M211.4,114.8h-2c-0.5,0-0.9-0.4-0.9-0.9v0.1c0-0.5,0.4-0.9,0.9-0.9h2c0.5,0,0.9,0.4,0.9,0.9v-0.1
255
- C212.4,114.4,211.9,114.8,211.4,114.8z"/>
256
- </g>
257
- <g>
258
- <path class="st16" d="M217.8,114.8h-2c-0.5,0-0.9-0.4-0.9-0.9v0.1c0-0.5,0.4-0.9,0.9-0.9h2c0.5,0,0.9,0.4,0.9,0.9v-0.1
259
- C218.8,114.4,218.4,114.8,217.8,114.8z"/>
260
- </g>
261
- <line class="st25" x1="165" y1="108.7" x2="219" y2="108.7"/>
262
- <line class="st25" x1="165" y1="118.7" x2="219" y2="118.7"/>
263
- <path class="st10" d="M172.1,116.6H166c-0.1,0-0.2-0.1-0.2-0.2V113h6.6v3.4C172.3,116.5,172.2,116.6,172.1,116.6z"/>
264
- <path class="st26" d="M168.7,112.1v-0.7c0-0.1-0.1-0.2-0.2-0.2H166c-0.1,0-0.2,0.1-0.2,0.2v0.6v0.8h6.6v-0.5
265
- c0-0.1-0.1-0.2-0.2-0.2L168.7,112.1L168.7,112.1z"/>
266
- </g>
267
- </g>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="304.337" height="191.816" viewBox="0 0 304.337 191.816">
2
+ <g id="infographic" transform="translate(0 0.25)">
3
+ <g id="infographic_1" data-name="infographic 1">
4
+ <path id="Path_4127" data-name="Path 4127" d="M367.116,17.308a9.063,9.063,0,0,1,8.408-9.218,4.28,4.28,0,0,1,3.547-2.572A6.679,6.679,0,0,1,385.495.251a6.765,6.765,0,0,1,6.614,6.907c0,.213-.01.424-.028.633a6.373,6.373,0,0,1,1.327-.139,6.728,6.728,0,0,1,6.575,6.162,4.026,4.026,0,0,1,.431-.023,4.343,4.343,0,0,1,0,8.677" transform="translate(-171.473 -0.251)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
5
+ <line id="Line_331" data-name="Line 331" x2="9.09" transform="translate(295.247 189.933)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
6
+ <line id="Line_332" data-name="Line 332" x2="177.132" transform="translate(113.189 189.933)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
7
+ <line id="Line_333" data-name="Line 333" x2="27.614" transform="translate(0 189.933)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
8
+ <line id="Line_334" data-name="Line 334" x2="3.36" transform="translate(32.176 189.933)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
9
+ <line id="Line_337" data-name="Line 337" x2="69.067" transform="translate(41.136 189.933)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
10
+ <path id="Path_4073" data-name="Path 4073" d="M104.6,191.81V45.821a8.96,8.96,0,0,1,8.96-8.96h202a8.96,8.96,0,0,1,8.96,8.96V182.85a8.96,8.96,0,0,1-8.96,8.96Z" transform="translate(-54.086 -8.084)" fill="#1e5dd3"/>
11
+ <path id="Path_4074" data-name="Path 4074" d="M104.6,191.81V45.821a8.96,8.96,0,0,1,8.96-8.96h202a8.96,8.96,0,0,1,8.96,8.96V182.85a8.96,8.96,0,0,1-8.96,8.96Z" transform="translate(-54.086 -8.084)" fill="none" stroke="#000" stroke-width="0.5"/>
12
+ <rect id="Rectangle_5102" data-name="Rectangle 5102" width="222.529" height="150.096" rx="7.75" transform="translate(43.002 33.692)" fill="#fff"/>
13
+ <path id="Path_4075" data-name="Path 4075" d="M311.863,43.567a5.607,5.607,0,0,1,5.6,5.6V187.69a5.607,5.607,0,0,1-5.6,5.6H100.907a5.607,5.607,0,0,1-5.6-5.6V49.167a5.607,5.607,0,0,1,5.6-5.6Zm0-.373H100.907a5.974,5.974,0,0,0-5.973,5.973V187.69a5.974,5.974,0,0,0,5.973,5.973H311.863a5.974,5.974,0,0,0,5.973-5.973V49.167a5.974,5.974,0,0,0-5.973-5.973" transform="translate(-51.637 -9.689)" fill="#161b2f"/>
14
+ <path id="Path_4076" data-name="Path 4076" d="M94.934,62.065v-12.9a5.974,5.974,0,0,1,5.973-5.973H311.863a5.974,5.974,0,0,1,5.973,5.973v12.9Z" transform="translate(-51.637 -9.689)" fill="#161b2f"/>
15
+ <path id="Path_4077" data-name="Path 4077" d="M311.783,242.293H101.323a5.826,5.826,0,0,1-5.826-5.827H317.61a5.827,5.827,0,0,1-5.827,5.827" transform="translate(-51.779 -58.65)" fill="#f1f1f1"/>
16
+ <path id="Path_4078" data-name="Path 4078" d="M108.195,53.266a2.062,2.062,0,1,1-2.062,2.062,2.061,2.061,0,0,1,2.062-2.062" transform="translate(-54.474 -12.24)" fill="#66bf72"/>
17
+ <path id="Path_4079" data-name="Path 4079" d="M117.4,53.266a2.062,2.062,0,1,1-2.062,2.062,2.061,2.061,0,0,1,2.062-2.062" transform="translate(-56.806 -12.24)" fill="#e4b700"/>
18
+ <path id="Path_4080" data-name="Path 4080" d="M126.6,53.266a2.062,2.062,0,1,1-2.062,2.062,2.061,2.061,0,0,1,2.062-2.062" transform="translate(-59.137 -12.24)" fill="#c7381b"/>
19
+ <g id="BG" transform="translate(53.555 62.812)">
20
+ <path id="Path_4081" data-name="Path 4081" d="M108.672,100.426V83.59a1.145,1.145,0,0,1,1.145-1.145h45.642A1.146,1.146,0,0,1,156.6,83.59v16.836a1.146,1.146,0,0,1-1.145,1.145H109.817a1.145,1.145,0,0,1-1.145-1.145" transform="translate(-108.672 -82.445)" fill="#f1f1f1"/>
21
+ <path id="Path_4082" data-name="Path 4082" d="M177.026,100.426V83.59a1.146,1.146,0,0,1,1.145-1.145h45.642a1.146,1.146,0,0,1,1.145,1.145v16.836a1.146,1.146,0,0,1-1.145,1.145H178.171a1.146,1.146,0,0,1-1.145-1.145" transform="translate(-125.988 -82.445)" fill="#f1f1f1"/>
22
+ <path id="Path_4083" data-name="Path 4083" d="M245.381,100.426V83.59a1.146,1.146,0,0,1,1.145-1.145h45.642a1.146,1.146,0,0,1,1.145,1.145v16.836a1.146,1.146,0,0,1-1.145,1.145H246.526a1.146,1.146,0,0,1-1.145-1.145" transform="translate(-143.305 -82.445)" fill="#f1f1f1"/>
23
+ <path id="Path_4084" data-name="Path 4084" d="M313.736,100.426V83.59a1.146,1.146,0,0,1,1.145-1.145h45.642a1.146,1.146,0,0,1,1.145,1.145v16.836a1.146,1.146,0,0,1-1.145,1.145H314.881a1.146,1.146,0,0,1-1.145-1.145" transform="translate(-160.621 -82.445)" fill="#f1f1f1"/>
24
+ <path id="Path_4085" data-name="Path 4085" d="M126.526,121.94h0a1.247,1.247,0,0,1,1.247-1.247H200.7a1.247,1.247,0,0,1,0,2.494H127.773a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-113.195 -92.134)" fill="#dbdbdb"/>
25
+ <path id="Path_4086" data-name="Path 4086" d="M340.128,121.94h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,1,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-167.307 -92.134)" fill="#dbdbdb"/>
26
+ <path id="Path_4087" data-name="Path 4087" d="M363.139,121.94h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,0,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-173.137 -92.134)" fill="#dbdbdb"/>
27
+ <path id="Path_4088" data-name="Path 4088" d="M108.672,120.872h0a4.581,4.581,0,1,1,4.581,4.582,4.581,4.581,0,0,1-4.581-4.582" transform="translate(-108.672 -91.019)" fill="#dbdbdb"/>
28
+ <path id="Path_4089" data-name="Path 4089" d="M144.7,137.28h0a1.247,1.247,0,0,1,1.247-1.247h38.562a1.247,1.247,0,0,1,0,2.494H145.945a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-117.799 -96.019)" fill="#f1f1f1"/>
29
+ <path id="Path_4090" data-name="Path 4090" d="M342.96,137.28h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,1,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-168.026 -96.019)" fill="#dbdbdb"/>
30
+ <path id="Path_4091" data-name="Path 4091" d="M365.971,137.28h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,0,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-173.854 -96.019)" fill="#dbdbdb"/>
31
+ <path id="Path_4092" data-name="Path 4092" d="M126.843,136.212h0a4.582,4.582,0,1,1,4.582,4.582,4.581,4.581,0,0,1-4.582-4.582" transform="translate(-113.276 -94.904)" fill="#f1f1f1"/>
32
+ <path id="Path_4093" data-name="Path 4093" d="M144.7,152.621h0a1.247,1.247,0,0,1,1.247-1.247h50.016a1.247,1.247,0,0,1,0,2.494H145.945a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-117.799 -99.906)" fill="#f1f1f1"/>
33
+ <path id="Path_4094" data-name="Path 4094" d="M342.96,152.621h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,0,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-168.026 -99.906)" fill="#dbdbdb"/>
34
+ <path id="Path_4095" data-name="Path 4095" d="M365.971,152.621h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,0,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-173.854 -99.906)" fill="#dbdbdb"/>
35
+ <path id="Path_4096" data-name="Path 4096" d="M126.843,151.553h0a4.582,4.582,0,1,1,4.582,4.582,4.581,4.581,0,0,1-4.582-4.582" transform="translate(-113.276 -98.791)" fill="#f1f1f1"/>
36
+ <path id="Path_4097" data-name="Path 4097" d="M126.526,167.961h0a1.247,1.247,0,0,1,1.247-1.247h84.38a1.247,1.247,0,0,1,0,2.494h-84.38a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-113.195 -103.793)" fill="#dbdbdb"/>
37
+ <path id="Path_4098" data-name="Path 4098" d="M340.128,167.961h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,1,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-167.307 -103.793)" fill="#dbdbdb"/>
38
+ <path id="Path_4099" data-name="Path 4099" d="M363.139,167.961h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,0,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-173.137 -103.793)" fill="#dbdbdb"/>
39
+ <path id="Path_4100" data-name="Path 4100" d="M108.672,166.894h0a4.581,4.581,0,1,1,4.581,4.582,4.581,4.581,0,0,1-4.581-4.582" transform="translate(-108.672 -102.677)" fill="#dbdbdb"/>
40
+ <path id="Path_4101" data-name="Path 4101" d="M126.526,183.3h0a1.247,1.247,0,0,1,1.247-1.247h95.834a1.247,1.247,0,0,1,0,2.494H127.773a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-113.195 -107.679)" fill="#dbdbdb"/>
41
+ <path id="Path_4102" data-name="Path 4102" d="M340.128,183.3h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,1,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-167.307 -107.679)" fill="#dbdbdb"/>
42
+ <path id="Path_4103" data-name="Path 4103" d="M363.139,183.3h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,0,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-173.137 -107.679)" fill="#dbdbdb"/>
43
+ <path id="Path_4104" data-name="Path 4104" d="M108.672,182.234h0a4.581,4.581,0,1,1,4.581,4.582,4.581,4.581,0,0,1-4.581-4.582" transform="translate(-108.672 -106.562)" fill="#dbdbdb"/>
44
+ <path id="Path_4105" data-name="Path 4105" d="M126.526,198.643h0a1.247,1.247,0,0,1,1.247-1.247h38.562a1.247,1.247,0,0,1,0,2.494H127.773a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-113.195 -111.564)" fill="#dbdbdb"/>
45
+ <path id="Path_4106" data-name="Path 4106" d="M340.128,198.643h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,1,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-167.307 -111.564)" fill="#dbdbdb"/>
46
+ <path id="Path_4107" data-name="Path 4107" d="M363.139,198.643h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,0,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-173.137 -111.564)" fill="#dbdbdb"/>
47
+ <path id="Path_4108" data-name="Path 4108" d="M108.672,197.575h0a4.581,4.581,0,1,1,4.581,4.582,4.581,4.581,0,0,1-4.581-4.582" transform="translate(-108.672 -110.449)" fill="#dbdbdb"/>
48
+ <path id="Path_4109" data-name="Path 4109" d="M126.526,213.983h0a1.247,1.247,0,0,1,1.247-1.247h84.38a1.247,1.247,0,0,1,0,2.494h-84.38a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-113.195 -115.451)" fill="#dbdbdb"/>
49
+ <path id="Path_4110" data-name="Path 4110" d="M340.128,213.983h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,0,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-167.307 -115.451)" fill="#dbdbdb"/>
50
+ <path id="Path_4111" data-name="Path 4111" d="M363.139,213.983h0a1.247,1.247,0,0,1,1.247-1.247h7.635a1.247,1.247,0,0,1,0,2.494h-7.635a1.247,1.247,0,0,1-1.247-1.247" transform="translate(-173.137 -115.451)" fill="#dbdbdb"/>
51
+ <path id="Path_4112" data-name="Path 4112" d="M108.672,212.915h0a4.581,4.581,0,1,1,4.581,4.582,4.581,4.581,0,0,1-4.581-4.582" transform="translate(-108.672 -114.336)" fill="#dbdbdb"/>
52
+ </g>
53
+ <path id="Path_4128" data-name="Path 4128" d="M48.157,90.781a3.764,3.764,0,1,0-1.034-7.364A9.37,9.37,0,0,0,29.5,83.3a5.3,5.3,0,1,0-1.168,10.461" transform="translate(-15.782 -7.393)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
54
+ <path id="play_circle_filled" d="M12.77,23.208,22.384,16,12.77,8.786ZM16,0a15.41,15.41,0,0,1,11.305,4.7A15.41,15.41,0,0,1,32,16,15.41,15.41,0,0,1,27.305,27.3,15.41,15.41,0,0,1,16,32,15.41,15.41,0,0,1,4.695,27.3,15.41,15.41,0,0,1,0,16a15.41,15.41,0,0,1,4.7-11.305A15.41,15.41,0,0,1,16,0Z" transform="translate(139.001 96.002)" fill="#1e5dd3"/>
55
+ </g>
56
+ <g id="infographic_1-2" data-name="infographic 1" transform="translate(24.813 15.93)">
57
+ <path id="Path_4129" data-name="Path 4129" d="M420.46,218.939a9.732,9.732,0,0,0-2.883.45l-.02.006-.027.009a.571.571,0,0,0-.072,1.043l12.07,6.345a.3.3,0,0,0,.138.034.288.288,0,0,0,.288-.288.292.292,0,0,0-.007-.057c0-.025-.01-.049-.016-.073a9.641,9.641,0,0,0-9.422-7.467h-.051" transform="translate(-163.248 -70.14)" fill="#1e5dd3"/>
58
+ <path id="Path_4130" data-name="Path 4130" d="M65.645,31.42a15.581,15.581,0,0,0-.441,4.654c0,.012,0,.022,0,.034l0,.046a.916.916,0,0,0,1.591.523L81.424,20.438a.463.463,0,0,0-.226-.761.5.5,0,0,0-.092-.013l-.119,0c-.136,0-.271-.005-.406-.005A15.457,15.457,0,0,0,65.645,31.42" transform="translate(-65.179 -19.655)" fill="#1e5dd3"/>
59
+ </g>
60
+ <g id="infographic_1-3" data-name="infographic 1" transform="translate(27.685 16.321)">
61
+ <path id="Path_4131" data-name="Path 4131" d="M71.776,252.236A1.376,1.376,0,1,1,70.4,250.86,1.376,1.376,0,0,1,71.776,252.236Z" transform="translate(-69.024 -78.617)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
62
+ <path id="Path_4132" data-name="Path 4132" d="M423.314,252.236a1.376,1.376,0,1,1-1.376-1.376A1.376,1.376,0,0,1,423.314,252.236Z" transform="translate(-158.079 -78.617)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
63
+ <path id="Path_4133" data-name="Path 4133" d="M409.569,114.556a1.376,1.376,0,1,1-1.376-1.376A1.376,1.376,0,0,1,409.569,114.556Z" transform="translate(-154.597 -43.739)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
64
+ <path id="Path_4134" data-name="Path 4134" d="M106.012,21.555a1.376,1.376,0,1,1-1.376-1.376A1.376,1.376,0,0,1,106.012,21.555Z" transform="translate(-77.697 -20.179)" fill="none" stroke="#161b2f" stroke-width="0.5"/>
65
+ </g>
66
+ </g>
268
67
  </svg>