-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1995 lines (1973 loc) · 230 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>Unit Converter</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<meta name="description" content="This free online tool converts common length, temperature, area, volume, weight, and time units.">
<link rel="preload" href="./assets/fonts/inter-v12-latin-regular.woff2" as="font" crossorigin type="font/woff2">
<link rel="preload" href="./assets/fonts/inter-v12-latin-500.woff2" as="font" crossorigin type="font/woff2">
<link rel="preload" href="./assets/fonts/inter-v12-latin-600.woff2" as="font" crossorigin type="font/woff2">
<link rel="preload" href="./assets/fonts/inter-v12-latin-800.woff2" as="font" crossorigin type="font/woff2">
<script type="text/javascript">
window._ = document.getElementById.bind(document);
window.$ = document.querySelector.bind(document);
window.$$ = document.querySelectorAll.bind(document);
window.defaultSystem = "imperial";
localStorage.setItem("theme", "light");
</script>
<link rel="stylesheet" href="./assets/css/main.min.css" />
<script src="./assets/js/all-calculators.js" defer></script>
</head>
<body style="background-color: transparent !important; min-height: 0 !important">
<div style="width: 100%;">
<div style="width:350px;float:left;padding: 15px;">
<div class="calculator-settings">
<div class="calculator-setting" id="calculator_form">
<div class="calculator-content col">
<div class="input-wrapper row">
<label class="input col dropdown-icon">
<p class="input__title">Units to Convert</p>
<div class="dropdown-wrapper">
<button class="input-field row" tabindex="0">
<span id="units_converter" class="input-field__text input-field__text--icon">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<defs>
<!-- LENGTH -->
<g id="iconLength">
<path d="M12.6805 2.31574L2.31694 12.6793C2.07286 12.9234 2.07286 13.3191 2.31694 13.5632L6.43308 17.6793C6.67715 17.9234 7.07288 17.9234 7.31696 17.6793L17.6805 7.31576C17.9246 7.07168 17.9246 6.67595 17.6805 6.43188L13.5644 2.31574C13.3203 2.07166 12.9246 2.07166 12.6805 2.31574Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10.3125 4.6875L12.8125 7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M7.5 7.5L10 10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.6875 10.3125L7.1875 12.8125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TEMPERATURE -->
<g id="iconTemperature">
<path d="M16.875 7.8125C17.7379 7.8125 18.4375 7.11294 18.4375 6.25C18.4375 5.38706 17.7379 4.6875 16.875 4.6875C16.0121 4.6875 15.3125 5.38706 15.3125 6.25C15.3125 7.11294 16.0121 7.8125 16.875 7.8125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 15.625C8.95527 15.625 9.375 15.2053 9.375 14.6875C9.375 14.1697 8.95527 13.75 8.4375 13.75C7.91973 13.75 7.5 14.1697 7.5 14.6875C7.5 15.2053 7.91973 15.625 8.4375 15.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 13.125V7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5.3125 12.0938V4.375C5.3125 3.5462 5.64174 2.75134 6.22779 2.16529C6.81384 1.57924 7.6087 1.25 8.4375 1.25C9.2663 1.25 10.0612 1.57924 10.6472 2.16529C11.2333 2.75134 11.5625 3.5462 11.5625 4.375V12.0938C12.0555 12.6873 12.3693 13.409 12.4672 14.1743C12.5651 14.9397 12.4429 15.7171 12.1151 16.4156C11.7873 17.1141 11.2673 17.7048 10.616 18.1186C9.96475 18.5323 9.2091 18.7521 8.4375 18.7521C7.6659 18.7521 6.91026 18.5323 6.25898 18.1186C5.60771 17.7048 5.08774 17.1141 4.75991 16.4156C4.43208 15.7171 4.30995 14.9397 4.40781 14.1743C4.50567 13.409 4.81947 12.6873 5.3125 12.0938V12.0938Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- AREA -->
<g id="iconArea">
<path d="M3.125 1.17417L5.66291 3.71208C6.02903 4.0782 6.02903 4.67179 5.66291 5.03791C5.2968 5.40403 4.7032 5.40403 4.33709 5.03791L4.0625 4.76332V15.9375H15.2367L14.9621 15.6629C14.596 15.2968 14.596 14.7032 14.9621 14.3371C15.3282 13.971 15.9218 13.971 16.2879 14.3371L18.8258 16.875L16.2879 19.4129C15.9218 19.779 15.3282 19.779 14.9621 19.4129C14.596 19.0468 14.596 18.4532 14.9621 18.0871L15.2367 17.8125H2.1875V4.76332L1.91291 5.03791C1.5468 5.40403 0.953204 5.40403 0.587087 5.03791C0.220971 4.67179 0.220971 4.0782 0.587087 3.71208L3.125 1.17417Z" fill="#9CA3AF"></path>
<path d="M8.125 1.5625H9.375V3.4375H8.125C7.60723 3.4375 7.1875 3.01776 7.1875 2.5C7.1875 1.98223 7.60723 1.5625 8.125 1.5625Z" fill="#9CA3AF"></path>
<path d="M14.375 3.4375H11.875V1.5625H14.375V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 3.4375V1.5625H19.0625V3.75H17.1875V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 8.75V6.25H19.0625V8.75H17.1875Z" fill="#9CA3AF"></path>
<path d="M17.1875 12.5V11.25H19.0625V12.5C19.0625 13.0178 18.6428 13.4375 18.125 13.4375C17.6072 13.4375 17.1875 13.0178 17.1875 12.5Z" fill="#9CA3AF"></path>
<path d="M14.4129 6.91291C14.779 6.54679 14.779 5.9532 14.4129 5.58708C14.0468 5.22097 13.4532 5.22097 13.0871 5.58708L6.21209 12.4621C5.84597 12.8282 5.84597 13.4218 6.21209 13.7879C6.5782 14.154 7.1718 14.154 7.53791 13.7879L14.4129 6.91291Z" fill="#9CA3AF"></path>
<path d="M10.0379 4.96208C10.404 5.3282 10.404 5.92179 10.0379 6.28791L6.91291 9.41291C6.5468 9.77903 5.9532 9.77903 5.58709 9.41291C5.22097 9.04679 5.22097 8.4532 5.58709 8.08708L8.71209 4.96208C9.0782 4.59597 9.6718 4.59597 10.0379 4.96208Z" fill="#9CA3AF"></path>
<path d="M15.0379 11.2879C15.404 10.9218 15.404 10.3282 15.0379 9.96208C14.6718 9.59597 14.0782 9.59597 13.7121 9.96208L10.5871 13.0871C10.221 13.4532 10.221 14.0468 10.5871 14.4129C10.9532 14.779 11.5468 14.779 11.9129 14.4129L15.0379 11.2879Z" fill="#9CA3AF"></path>
</g>
<!-- VOLUME -->
<g id="iconVolume">
<path d="M10 7.1875C12.7614 7.1875 15 5.99826 15 4.53125C15 3.06424 12.7614 1.875 10 1.875C7.23858 1.875 5 3.06424 5 4.53125C5 5.99826 7.23858 7.1875 10 7.1875Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5 4.53125V15.4688C5 16.9375 7.24219 18.125 10 18.125C12.7578 18.125 15 16.9375 15 15.4688V4.53125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- MASS -->
<g id="iconMass">
<path d="M10 3.125V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.125 16.875H11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.375 6.875L15.625 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M1.875 13.125C1.875 14.5078 3.4375 15 4.375 15C5.3125 15 6.875 14.5078 6.875 13.125L4.375 6.875L1.875 13.125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 10.625C13.125 12.0078 14.6875 12.5 15.625 12.5C16.5625 12.5 18.125 12.0078 18.125 10.625L15.625 4.375L13.125 10.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA TRANSFER RATE -->
<g id="iconData Transfer Rate">
<path d="M7.5 16.25H5.625C4.46468 16.25 3.35188 15.7891 2.53141 14.9686C1.71094 14.1481 1.25 13.0353 1.25 11.875C1.25 10.7147 1.71094 9.60188 2.53141 8.78141C3.35188 7.96094 4.46468 7.5 5.625 7.5C5.99104 7.49986 6.35572 7.54446 6.71094 7.63281" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M6.25 10C6.25 9.00968 6.48533 8.03353 6.9366 7.152C7.38788 6.27047 8.04217 5.50879 8.84556 4.92974C9.64895 4.35068 10.5784 3.97083 11.5574 3.82148C12.5364 3.67213 13.5369 3.75756 14.4764 4.07073C15.4159 4.3839 16.2676 4.91584 16.9612 5.62272C17.6547 6.3296 18.1704 7.19118 18.4657 8.13645C18.761 9.08173 18.8274 10.0836 18.6595 11.0596C18.4916 12.0356 18.0942 12.9577 17.5 13.75" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M9.22656 12.6484L11.875 10L14.5234 12.6484" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.875 16.25V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA STORAGE -->
<g id="iconDigital Storage">
<path d="M10 10C13.797 10 16.875 8.32107 16.875 6.25C16.875 4.17893 13.797 2.5 10 2.5C6.20304 2.5 3.125 4.17893 3.125 6.25C3.125 8.32107 6.20304 10 10 10Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 6.25V10C3.125 12.0703 6.20313 13.75 10 13.75C13.7969 13.75 16.875 12.0703 16.875 10V6.25" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 10V13.75C3.125 15.8203 6.20313 17.5 10 17.5C13.7969 17.5 16.875 15.8203 16.875 13.75V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- ENERGY -->
<g id="iconEnergy">
<path d="M7.5 18.75L8.75 12.5L3.75 10.625L12.5 1.25L11.25 7.5L16.25 9.375L7.5 18.75Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL ECONOMY -->
<g id="iconFuel Economy">
<path d="M4.375 16.875V4.375C4.375 4.04348 4.5067 3.72554 4.74112 3.49112C4.97554 3.2567 5.29348 3.125 5.625 3.125H11.875C12.2065 3.125 12.5245 3.2567 12.7589 3.49112C12.9933 3.72554 13.125 4.04348 13.125 4.375V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.5 16.875H15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 8.75H15C15.3315 8.75 15.6495 8.8817 15.8839 9.11612C16.1183 9.35054 16.25 9.66848 16.25 10V13.125C16.25 13.4565 16.3817 13.7745 16.6161 14.0089C16.8505 14.2433 17.1685 14.375 17.5 14.375H17.8125C18.144 14.375 18.462 14.2433 18.6964 14.0089C18.9308 13.7745 19.0625 13.4565 19.0625 13.125V6.76562C19.0611 6.43449 18.9291 6.11728 18.6953 5.88281L17.1875 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 8.75H7.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL FREQUENCY -->
<g id="iconFrequency">
<path d="M1.875 10H4.375L7.5 3.125L12.5 16.25L15.625 10H18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- PRESSURE -->
<g id="iconPressure">
<g clip-path="url(#clip0_3838_57191)">
<path d="M10 1.875V8.75M10 8.75L8.125 6.875M10 8.75L11.875 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M3.125 1.875V8.75M3.125 8.75L1.25 6.875M3.125 8.75L5 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M16.875 1.875V8.75M16.875 8.75L15 6.875M16.875 8.75L18.75 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 15C1.25 15 6.57421 15.625 10 15.625C13.4258 15.625 18.75 15 18.75 15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 11.875C1.25 11.875 6.57421 12.5 10 12.5C13.4258 12.5 18.75 11.875 18.75 11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 18.125C1.25 18.125 6.57421 18.75 10 18.75C13.4258 18.75 18.75 18.125 18.75 18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
</g>
<defs>
<clipPath id="clip0_3838_57191">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- PLANE ANGLE -->
<g id="iconPlane Angle">
<g clip-path="url(#clip0_3838_57190)">
<path d="M2.5 17.5L10.625 9.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M13.125 6.875L15 5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M2.5 2.5V17.5H17.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<mask id="path-4-inside-1_3838_57190" fill="white">
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z"></path>
</mask>
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z" stroke="#9CA3AF" stroke-width="4" mask="url(#path-4-inside-1_3838_57190)"></path>
</g>
<defs>
<clipPath id="clip0_3838_57190">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- SPEED -->
<g id="iconSpeed">
<path d="M1.875 14.375V12.5859C1.875 8.09375 5.48437 4.39062 9.96875 4.375C11.0384 4.37089 12.0983 4.57801 13.0877 4.98449C14.077 5.39096 14.9764 5.98879 15.7342 6.74368C16.492 7.49857 17.0933 8.39565 17.5035 9.38346C17.9138 10.3713 18.125 11.4304 18.125 12.5V14.375C18.125 14.5408 18.0592 14.6997 17.9419 14.8169C17.8247 14.9342 17.6658 15 17.5 15H2.5C2.33424 15 2.17527 14.9342 2.05806 14.8169C1.94085 14.6997 1.875 14.5408 1.875 14.375Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 4.375V6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.14844 10.3984L4.57031 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M17.8516 10.3984L15.4297 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.07812 15L13.4219 8.03906" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TIME -->
<g id="iconTime">
<path d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 5.625V10H14.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</defs>
</defs>
<use href="#iconLength"></use>
</svg>
Length
</span>
</button>
<ul class="dropdown-content">
<button
class="dropdown-select"
tabindex="-1"
value="Area"
onclick="unitsChange(this)"
>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- LENGTH -->
<g id="iconLength">
<path d="M12.6805 2.31574L2.31694 12.6793C2.07286 12.9234 2.07286 13.3191 2.31694 13.5632L6.43308 17.6793C6.67715 17.9234 7.07288 17.9234 7.31696 17.6793L17.6805 7.31576C17.9246 7.07168 17.9246 6.67595 17.6805 6.43188L13.5644 2.31574C13.3203 2.07166 12.9246 2.07166 12.6805 2.31574Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10.3125 4.6875L12.8125 7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M7.5 7.5L10 10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.6875 10.3125L7.1875 12.8125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TEMPERATURE -->
<g id="iconTemperature">
<path d="M16.875 7.8125C17.7379 7.8125 18.4375 7.11294 18.4375 6.25C18.4375 5.38706 17.7379 4.6875 16.875 4.6875C16.0121 4.6875 15.3125 5.38706 15.3125 6.25C15.3125 7.11294 16.0121 7.8125 16.875 7.8125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 15.625C8.95527 15.625 9.375 15.2053 9.375 14.6875C9.375 14.1697 8.95527 13.75 8.4375 13.75C7.91973 13.75 7.5 14.1697 7.5 14.6875C7.5 15.2053 7.91973 15.625 8.4375 15.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 13.125V7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5.3125 12.0938V4.375C5.3125 3.5462 5.64174 2.75134 6.22779 2.16529C6.81384 1.57924 7.6087 1.25 8.4375 1.25C9.2663 1.25 10.0612 1.57924 10.6472 2.16529C11.2333 2.75134 11.5625 3.5462 11.5625 4.375V12.0938C12.0555 12.6873 12.3693 13.409 12.4672 14.1743C12.5651 14.9397 12.4429 15.7171 12.1151 16.4156C11.7873 17.1141 11.2673 17.7048 10.616 18.1186C9.96475 18.5323 9.2091 18.7521 8.4375 18.7521C7.6659 18.7521 6.91026 18.5323 6.25898 18.1186C5.60771 17.7048 5.08774 17.1141 4.75991 16.4156C4.43208 15.7171 4.30995 14.9397 4.40781 14.1743C4.50567 13.409 4.81947 12.6873 5.3125 12.0938V12.0938Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- AREA -->
<g id="iconArea">
<path d="M3.125 1.17417L5.66291 3.71208C6.02903 4.0782 6.02903 4.67179 5.66291 5.03791C5.2968 5.40403 4.7032 5.40403 4.33709 5.03791L4.0625 4.76332V15.9375H15.2367L14.9621 15.6629C14.596 15.2968 14.596 14.7032 14.9621 14.3371C15.3282 13.971 15.9218 13.971 16.2879 14.3371L18.8258 16.875L16.2879 19.4129C15.9218 19.779 15.3282 19.779 14.9621 19.4129C14.596 19.0468 14.596 18.4532 14.9621 18.0871L15.2367 17.8125H2.1875V4.76332L1.91291 5.03791C1.5468 5.40403 0.953204 5.40403 0.587087 5.03791C0.220971 4.67179 0.220971 4.0782 0.587087 3.71208L3.125 1.17417Z" fill="#9CA3AF"></path>
<path d="M8.125 1.5625H9.375V3.4375H8.125C7.60723 3.4375 7.1875 3.01776 7.1875 2.5C7.1875 1.98223 7.60723 1.5625 8.125 1.5625Z" fill="#9CA3AF"></path>
<path d="M14.375 3.4375H11.875V1.5625H14.375V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 3.4375V1.5625H19.0625V3.75H17.1875V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 8.75V6.25H19.0625V8.75H17.1875Z" fill="#9CA3AF"></path>
<path d="M17.1875 12.5V11.25H19.0625V12.5C19.0625 13.0178 18.6428 13.4375 18.125 13.4375C17.6072 13.4375 17.1875 13.0178 17.1875 12.5Z" fill="#9CA3AF"></path>
<path d="M14.4129 6.91291C14.779 6.54679 14.779 5.9532 14.4129 5.58708C14.0468 5.22097 13.4532 5.22097 13.0871 5.58708L6.21209 12.4621C5.84597 12.8282 5.84597 13.4218 6.21209 13.7879C6.5782 14.154 7.1718 14.154 7.53791 13.7879L14.4129 6.91291Z" fill="#9CA3AF"></path>
<path d="M10.0379 4.96208C10.404 5.3282 10.404 5.92179 10.0379 6.28791L6.91291 9.41291C6.5468 9.77903 5.9532 9.77903 5.58709 9.41291C5.22097 9.04679 5.22097 8.4532 5.58709 8.08708L8.71209 4.96208C9.0782 4.59597 9.6718 4.59597 10.0379 4.96208Z" fill="#9CA3AF"></path>
<path d="M15.0379 11.2879C15.404 10.9218 15.404 10.3282 15.0379 9.96208C14.6718 9.59597 14.0782 9.59597 13.7121 9.96208L10.5871 13.0871C10.221 13.4532 10.221 14.0468 10.5871 14.4129C10.9532 14.779 11.5468 14.779 11.9129 14.4129L15.0379 11.2879Z" fill="#9CA3AF"></path>
</g>
<!-- VOLUME -->
<g id="iconVolume">
<path d="M10 7.1875C12.7614 7.1875 15 5.99826 15 4.53125C15 3.06424 12.7614 1.875 10 1.875C7.23858 1.875 5 3.06424 5 4.53125C5 5.99826 7.23858 7.1875 10 7.1875Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5 4.53125V15.4688C5 16.9375 7.24219 18.125 10 18.125C12.7578 18.125 15 16.9375 15 15.4688V4.53125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- MASS -->
<g id="iconMass">
<path d="M10 3.125V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.125 16.875H11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.375 6.875L15.625 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M1.875 13.125C1.875 14.5078 3.4375 15 4.375 15C5.3125 15 6.875 14.5078 6.875 13.125L4.375 6.875L1.875 13.125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 10.625C13.125 12.0078 14.6875 12.5 15.625 12.5C16.5625 12.5 18.125 12.0078 18.125 10.625L15.625 4.375L13.125 10.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA TRANSFER RATE -->
<g id="iconData Transfer Rate">
<path d="M7.5 16.25H5.625C4.46468 16.25 3.35188 15.7891 2.53141 14.9686C1.71094 14.1481 1.25 13.0353 1.25 11.875C1.25 10.7147 1.71094 9.60188 2.53141 8.78141C3.35188 7.96094 4.46468 7.5 5.625 7.5C5.99104 7.49986 6.35572 7.54446 6.71094 7.63281" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M6.25 10C6.25 9.00968 6.48533 8.03353 6.9366 7.152C7.38788 6.27047 8.04217 5.50879 8.84556 4.92974C9.64895 4.35068 10.5784 3.97083 11.5574 3.82148C12.5364 3.67213 13.5369 3.75756 14.4764 4.07073C15.4159 4.3839 16.2676 4.91584 16.9612 5.62272C17.6547 6.3296 18.1704 7.19118 18.4657 8.13645C18.761 9.08173 18.8274 10.0836 18.6595 11.0596C18.4916 12.0356 18.0942 12.9577 17.5 13.75" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M9.22656 12.6484L11.875 10L14.5234 12.6484" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.875 16.25V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA STORAGE -->
<g id="iconDigital Storage">
<path d="M10 10C13.797 10 16.875 8.32107 16.875 6.25C16.875 4.17893 13.797 2.5 10 2.5C6.20304 2.5 3.125 4.17893 3.125 6.25C3.125 8.32107 6.20304 10 10 10Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 6.25V10C3.125 12.0703 6.20313 13.75 10 13.75C13.7969 13.75 16.875 12.0703 16.875 10V6.25" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 10V13.75C3.125 15.8203 6.20313 17.5 10 17.5C13.7969 17.5 16.875 15.8203 16.875 13.75V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- ENERGY -->
<g id="iconEnergy">
<path d="M7.5 18.75L8.75 12.5L3.75 10.625L12.5 1.25L11.25 7.5L16.25 9.375L7.5 18.75Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL ECONOMY -->
<g id="iconFuel Economy">
<path d="M4.375 16.875V4.375C4.375 4.04348 4.5067 3.72554 4.74112 3.49112C4.97554 3.2567 5.29348 3.125 5.625 3.125H11.875C12.2065 3.125 12.5245 3.2567 12.7589 3.49112C12.9933 3.72554 13.125 4.04348 13.125 4.375V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.5 16.875H15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 8.75H15C15.3315 8.75 15.6495 8.8817 15.8839 9.11612C16.1183 9.35054 16.25 9.66848 16.25 10V13.125C16.25 13.4565 16.3817 13.7745 16.6161 14.0089C16.8505 14.2433 17.1685 14.375 17.5 14.375H17.8125C18.144 14.375 18.462 14.2433 18.6964 14.0089C18.9308 13.7745 19.0625 13.4565 19.0625 13.125V6.76562C19.0611 6.43449 18.9291 6.11728 18.6953 5.88281L17.1875 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 8.75H7.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL FREQUENCY -->
<g id="iconFrequency">
<path d="M1.875 10H4.375L7.5 3.125L12.5 16.25L15.625 10H18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- PRESSURE -->
<g id="iconPressure">
<g clip-path="url(#clip0_3838_57191)">
<path d="M10 1.875V8.75M10 8.75L8.125 6.875M10 8.75L11.875 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M3.125 1.875V8.75M3.125 8.75L1.25 6.875M3.125 8.75L5 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M16.875 1.875V8.75M16.875 8.75L15 6.875M16.875 8.75L18.75 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 15C1.25 15 6.57421 15.625 10 15.625C13.4258 15.625 18.75 15 18.75 15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 11.875C1.25 11.875 6.57421 12.5 10 12.5C13.4258 12.5 18.75 11.875 18.75 11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 18.125C1.25 18.125 6.57421 18.75 10 18.75C13.4258 18.75 18.75 18.125 18.75 18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
</g>
<defs>
<clipPath id="clip0_3838_57191">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- PLANE ANGLE -->
<g id="iconPlane Angle">
<g clip-path="url(#clip0_3838_57190)">
<path d="M2.5 17.5L10.625 9.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M13.125 6.875L15 5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M2.5 2.5V17.5H17.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<mask id="path-4-inside-1_3838_57190" fill="white">
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z"></path>
</mask>
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z" stroke="#9CA3AF" stroke-width="4" mask="url(#path-4-inside-1_3838_57190)"></path>
</g>
<defs>
<clipPath id="clip0_3838_57190">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- SPEED -->
<g id="iconSpeed">
<path d="M1.875 14.375V12.5859C1.875 8.09375 5.48437 4.39062 9.96875 4.375C11.0384 4.37089 12.0983 4.57801 13.0877 4.98449C14.077 5.39096 14.9764 5.98879 15.7342 6.74368C16.492 7.49857 17.0933 8.39565 17.5035 9.38346C17.9138 10.3713 18.125 11.4304 18.125 12.5V14.375C18.125 14.5408 18.0592 14.6997 17.9419 14.8169C17.8247 14.9342 17.6658 15 17.5 15H2.5C2.33424 15 2.17527 14.9342 2.05806 14.8169C1.94085 14.6997 1.875 14.5408 1.875 14.375Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 4.375V6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.14844 10.3984L4.57031 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M17.8516 10.3984L15.4297 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.07812 15L13.4219 8.03906" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TIME -->
<g id="iconTime">
<path d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 5.625V10H14.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</defs>
<use href="#iconArea"></use>
</svg>
Area</button>
<button
class="dropdown-select"
tabindex="-1"
value="Data Transfer Rate"
onclick="unitsChange(this)"
>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- LENGTH -->
<g id="iconLength">
<path d="M12.6805 2.31574L2.31694 12.6793C2.07286 12.9234 2.07286 13.3191 2.31694 13.5632L6.43308 17.6793C6.67715 17.9234 7.07288 17.9234 7.31696 17.6793L17.6805 7.31576C17.9246 7.07168 17.9246 6.67595 17.6805 6.43188L13.5644 2.31574C13.3203 2.07166 12.9246 2.07166 12.6805 2.31574Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10.3125 4.6875L12.8125 7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M7.5 7.5L10 10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.6875 10.3125L7.1875 12.8125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TEMPERATURE -->
<g id="iconTemperature">
<path d="M16.875 7.8125C17.7379 7.8125 18.4375 7.11294 18.4375 6.25C18.4375 5.38706 17.7379 4.6875 16.875 4.6875C16.0121 4.6875 15.3125 5.38706 15.3125 6.25C15.3125 7.11294 16.0121 7.8125 16.875 7.8125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 15.625C8.95527 15.625 9.375 15.2053 9.375 14.6875C9.375 14.1697 8.95527 13.75 8.4375 13.75C7.91973 13.75 7.5 14.1697 7.5 14.6875C7.5 15.2053 7.91973 15.625 8.4375 15.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 13.125V7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5.3125 12.0938V4.375C5.3125 3.5462 5.64174 2.75134 6.22779 2.16529C6.81384 1.57924 7.6087 1.25 8.4375 1.25C9.2663 1.25 10.0612 1.57924 10.6472 2.16529C11.2333 2.75134 11.5625 3.5462 11.5625 4.375V12.0938C12.0555 12.6873 12.3693 13.409 12.4672 14.1743C12.5651 14.9397 12.4429 15.7171 12.1151 16.4156C11.7873 17.1141 11.2673 17.7048 10.616 18.1186C9.96475 18.5323 9.2091 18.7521 8.4375 18.7521C7.6659 18.7521 6.91026 18.5323 6.25898 18.1186C5.60771 17.7048 5.08774 17.1141 4.75991 16.4156C4.43208 15.7171 4.30995 14.9397 4.40781 14.1743C4.50567 13.409 4.81947 12.6873 5.3125 12.0938V12.0938Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- AREA -->
<g id="iconArea">
<path d="M3.125 1.17417L5.66291 3.71208C6.02903 4.0782 6.02903 4.67179 5.66291 5.03791C5.2968 5.40403 4.7032 5.40403 4.33709 5.03791L4.0625 4.76332V15.9375H15.2367L14.9621 15.6629C14.596 15.2968 14.596 14.7032 14.9621 14.3371C15.3282 13.971 15.9218 13.971 16.2879 14.3371L18.8258 16.875L16.2879 19.4129C15.9218 19.779 15.3282 19.779 14.9621 19.4129C14.596 19.0468 14.596 18.4532 14.9621 18.0871L15.2367 17.8125H2.1875V4.76332L1.91291 5.03791C1.5468 5.40403 0.953204 5.40403 0.587087 5.03791C0.220971 4.67179 0.220971 4.0782 0.587087 3.71208L3.125 1.17417Z" fill="#9CA3AF"></path>
<path d="M8.125 1.5625H9.375V3.4375H8.125C7.60723 3.4375 7.1875 3.01776 7.1875 2.5C7.1875 1.98223 7.60723 1.5625 8.125 1.5625Z" fill="#9CA3AF"></path>
<path d="M14.375 3.4375H11.875V1.5625H14.375V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 3.4375V1.5625H19.0625V3.75H17.1875V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 8.75V6.25H19.0625V8.75H17.1875Z" fill="#9CA3AF"></path>
<path d="M17.1875 12.5V11.25H19.0625V12.5C19.0625 13.0178 18.6428 13.4375 18.125 13.4375C17.6072 13.4375 17.1875 13.0178 17.1875 12.5Z" fill="#9CA3AF"></path>
<path d="M14.4129 6.91291C14.779 6.54679 14.779 5.9532 14.4129 5.58708C14.0468 5.22097 13.4532 5.22097 13.0871 5.58708L6.21209 12.4621C5.84597 12.8282 5.84597 13.4218 6.21209 13.7879C6.5782 14.154 7.1718 14.154 7.53791 13.7879L14.4129 6.91291Z" fill="#9CA3AF"></path>
<path d="M10.0379 4.96208C10.404 5.3282 10.404 5.92179 10.0379 6.28791L6.91291 9.41291C6.5468 9.77903 5.9532 9.77903 5.58709 9.41291C5.22097 9.04679 5.22097 8.4532 5.58709 8.08708L8.71209 4.96208C9.0782 4.59597 9.6718 4.59597 10.0379 4.96208Z" fill="#9CA3AF"></path>
<path d="M15.0379 11.2879C15.404 10.9218 15.404 10.3282 15.0379 9.96208C14.6718 9.59597 14.0782 9.59597 13.7121 9.96208L10.5871 13.0871C10.221 13.4532 10.221 14.0468 10.5871 14.4129C10.9532 14.779 11.5468 14.779 11.9129 14.4129L15.0379 11.2879Z" fill="#9CA3AF"></path>
</g>
<!-- VOLUME -->
<g id="iconVolume">
<path d="M10 7.1875C12.7614 7.1875 15 5.99826 15 4.53125C15 3.06424 12.7614 1.875 10 1.875C7.23858 1.875 5 3.06424 5 4.53125C5 5.99826 7.23858 7.1875 10 7.1875Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5 4.53125V15.4688C5 16.9375 7.24219 18.125 10 18.125C12.7578 18.125 15 16.9375 15 15.4688V4.53125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- MASS -->
<g id="iconMass">
<path d="M10 3.125V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.125 16.875H11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.375 6.875L15.625 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M1.875 13.125C1.875 14.5078 3.4375 15 4.375 15C5.3125 15 6.875 14.5078 6.875 13.125L4.375 6.875L1.875 13.125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 10.625C13.125 12.0078 14.6875 12.5 15.625 12.5C16.5625 12.5 18.125 12.0078 18.125 10.625L15.625 4.375L13.125 10.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA TRANSFER RATE -->
<g id="iconData Transfer Rate">
<path d="M7.5 16.25H5.625C4.46468 16.25 3.35188 15.7891 2.53141 14.9686C1.71094 14.1481 1.25 13.0353 1.25 11.875C1.25 10.7147 1.71094 9.60188 2.53141 8.78141C3.35188 7.96094 4.46468 7.5 5.625 7.5C5.99104 7.49986 6.35572 7.54446 6.71094 7.63281" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M6.25 10C6.25 9.00968 6.48533 8.03353 6.9366 7.152C7.38788 6.27047 8.04217 5.50879 8.84556 4.92974C9.64895 4.35068 10.5784 3.97083 11.5574 3.82148C12.5364 3.67213 13.5369 3.75756 14.4764 4.07073C15.4159 4.3839 16.2676 4.91584 16.9612 5.62272C17.6547 6.3296 18.1704 7.19118 18.4657 8.13645C18.761 9.08173 18.8274 10.0836 18.6595 11.0596C18.4916 12.0356 18.0942 12.9577 17.5 13.75" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M9.22656 12.6484L11.875 10L14.5234 12.6484" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.875 16.25V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA STORAGE -->
<g id="iconDigital Storage">
<path d="M10 10C13.797 10 16.875 8.32107 16.875 6.25C16.875 4.17893 13.797 2.5 10 2.5C6.20304 2.5 3.125 4.17893 3.125 6.25C3.125 8.32107 6.20304 10 10 10Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 6.25V10C3.125 12.0703 6.20313 13.75 10 13.75C13.7969 13.75 16.875 12.0703 16.875 10V6.25" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 10V13.75C3.125 15.8203 6.20313 17.5 10 17.5C13.7969 17.5 16.875 15.8203 16.875 13.75V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- ENERGY -->
<g id="iconEnergy">
<path d="M7.5 18.75L8.75 12.5L3.75 10.625L12.5 1.25L11.25 7.5L16.25 9.375L7.5 18.75Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL ECONOMY -->
<g id="iconFuel Economy">
<path d="M4.375 16.875V4.375C4.375 4.04348 4.5067 3.72554 4.74112 3.49112C4.97554 3.2567 5.29348 3.125 5.625 3.125H11.875C12.2065 3.125 12.5245 3.2567 12.7589 3.49112C12.9933 3.72554 13.125 4.04348 13.125 4.375V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.5 16.875H15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 8.75H15C15.3315 8.75 15.6495 8.8817 15.8839 9.11612C16.1183 9.35054 16.25 9.66848 16.25 10V13.125C16.25 13.4565 16.3817 13.7745 16.6161 14.0089C16.8505 14.2433 17.1685 14.375 17.5 14.375H17.8125C18.144 14.375 18.462 14.2433 18.6964 14.0089C18.9308 13.7745 19.0625 13.4565 19.0625 13.125V6.76562C19.0611 6.43449 18.9291 6.11728 18.6953 5.88281L17.1875 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 8.75H7.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL FREQUENCY -->
<g id="iconFrequency">
<path d="M1.875 10H4.375L7.5 3.125L12.5 16.25L15.625 10H18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- PRESSURE -->
<g id="iconPressure">
<g clip-path="url(#clip0_3838_57191)">
<path d="M10 1.875V8.75M10 8.75L8.125 6.875M10 8.75L11.875 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M3.125 1.875V8.75M3.125 8.75L1.25 6.875M3.125 8.75L5 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M16.875 1.875V8.75M16.875 8.75L15 6.875M16.875 8.75L18.75 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 15C1.25 15 6.57421 15.625 10 15.625C13.4258 15.625 18.75 15 18.75 15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 11.875C1.25 11.875 6.57421 12.5 10 12.5C13.4258 12.5 18.75 11.875 18.75 11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 18.125C1.25 18.125 6.57421 18.75 10 18.75C13.4258 18.75 18.75 18.125 18.75 18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
</g>
<defs>
<clipPath id="clip0_3838_57191">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- PLANE ANGLE -->
<g id="iconPlane Angle">
<g clip-path="url(#clip0_3838_57190)">
<path d="M2.5 17.5L10.625 9.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M13.125 6.875L15 5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M2.5 2.5V17.5H17.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<mask id="path-4-inside-1_3838_57190" fill="white">
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z"></path>
</mask>
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z" stroke="#9CA3AF" stroke-width="4" mask="url(#path-4-inside-1_3838_57190)"></path>
</g>
<defs>
<clipPath id="clip0_3838_57190">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- SPEED -->
<g id="iconSpeed">
<path d="M1.875 14.375V12.5859C1.875 8.09375 5.48437 4.39062 9.96875 4.375C11.0384 4.37089 12.0983 4.57801 13.0877 4.98449C14.077 5.39096 14.9764 5.98879 15.7342 6.74368C16.492 7.49857 17.0933 8.39565 17.5035 9.38346C17.9138 10.3713 18.125 11.4304 18.125 12.5V14.375C18.125 14.5408 18.0592 14.6997 17.9419 14.8169C17.8247 14.9342 17.6658 15 17.5 15H2.5C2.33424 15 2.17527 14.9342 2.05806 14.8169C1.94085 14.6997 1.875 14.5408 1.875 14.375Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 4.375V6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.14844 10.3984L4.57031 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M17.8516 10.3984L15.4297 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.07812 15L13.4219 8.03906" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TIME -->
<g id="iconTime">
<path d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 5.625V10H14.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</defs>
<use href="#iconData Transfer Rate"></use>
</svg>
Data Transfer Rate</button>
<button
class="dropdown-select"
tabindex="-1"
value="Digital Storage"
onclick="unitsChange(this)"
>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- LENGTH -->
<g id="iconLength">
<path d="M12.6805 2.31574L2.31694 12.6793C2.07286 12.9234 2.07286 13.3191 2.31694 13.5632L6.43308 17.6793C6.67715 17.9234 7.07288 17.9234 7.31696 17.6793L17.6805 7.31576C17.9246 7.07168 17.9246 6.67595 17.6805 6.43188L13.5644 2.31574C13.3203 2.07166 12.9246 2.07166 12.6805 2.31574Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10.3125 4.6875L12.8125 7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M7.5 7.5L10 10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.6875 10.3125L7.1875 12.8125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TEMPERATURE -->
<g id="iconTemperature">
<path d="M16.875 7.8125C17.7379 7.8125 18.4375 7.11294 18.4375 6.25C18.4375 5.38706 17.7379 4.6875 16.875 4.6875C16.0121 4.6875 15.3125 5.38706 15.3125 6.25C15.3125 7.11294 16.0121 7.8125 16.875 7.8125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 15.625C8.95527 15.625 9.375 15.2053 9.375 14.6875C9.375 14.1697 8.95527 13.75 8.4375 13.75C7.91973 13.75 7.5 14.1697 7.5 14.6875C7.5 15.2053 7.91973 15.625 8.4375 15.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 13.125V7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5.3125 12.0938V4.375C5.3125 3.5462 5.64174 2.75134 6.22779 2.16529C6.81384 1.57924 7.6087 1.25 8.4375 1.25C9.2663 1.25 10.0612 1.57924 10.6472 2.16529C11.2333 2.75134 11.5625 3.5462 11.5625 4.375V12.0938C12.0555 12.6873 12.3693 13.409 12.4672 14.1743C12.5651 14.9397 12.4429 15.7171 12.1151 16.4156C11.7873 17.1141 11.2673 17.7048 10.616 18.1186C9.96475 18.5323 9.2091 18.7521 8.4375 18.7521C7.6659 18.7521 6.91026 18.5323 6.25898 18.1186C5.60771 17.7048 5.08774 17.1141 4.75991 16.4156C4.43208 15.7171 4.30995 14.9397 4.40781 14.1743C4.50567 13.409 4.81947 12.6873 5.3125 12.0938V12.0938Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- AREA -->
<g id="iconArea">
<path d="M3.125 1.17417L5.66291 3.71208C6.02903 4.0782 6.02903 4.67179 5.66291 5.03791C5.2968 5.40403 4.7032 5.40403 4.33709 5.03791L4.0625 4.76332V15.9375H15.2367L14.9621 15.6629C14.596 15.2968 14.596 14.7032 14.9621 14.3371C15.3282 13.971 15.9218 13.971 16.2879 14.3371L18.8258 16.875L16.2879 19.4129C15.9218 19.779 15.3282 19.779 14.9621 19.4129C14.596 19.0468 14.596 18.4532 14.9621 18.0871L15.2367 17.8125H2.1875V4.76332L1.91291 5.03791C1.5468 5.40403 0.953204 5.40403 0.587087 5.03791C0.220971 4.67179 0.220971 4.0782 0.587087 3.71208L3.125 1.17417Z" fill="#9CA3AF"></path>
<path d="M8.125 1.5625H9.375V3.4375H8.125C7.60723 3.4375 7.1875 3.01776 7.1875 2.5C7.1875 1.98223 7.60723 1.5625 8.125 1.5625Z" fill="#9CA3AF"></path>
<path d="M14.375 3.4375H11.875V1.5625H14.375V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 3.4375V1.5625H19.0625V3.75H17.1875V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 8.75V6.25H19.0625V8.75H17.1875Z" fill="#9CA3AF"></path>
<path d="M17.1875 12.5V11.25H19.0625V12.5C19.0625 13.0178 18.6428 13.4375 18.125 13.4375C17.6072 13.4375 17.1875 13.0178 17.1875 12.5Z" fill="#9CA3AF"></path>
<path d="M14.4129 6.91291C14.779 6.54679 14.779 5.9532 14.4129 5.58708C14.0468 5.22097 13.4532 5.22097 13.0871 5.58708L6.21209 12.4621C5.84597 12.8282 5.84597 13.4218 6.21209 13.7879C6.5782 14.154 7.1718 14.154 7.53791 13.7879L14.4129 6.91291Z" fill="#9CA3AF"></path>
<path d="M10.0379 4.96208C10.404 5.3282 10.404 5.92179 10.0379 6.28791L6.91291 9.41291C6.5468 9.77903 5.9532 9.77903 5.58709 9.41291C5.22097 9.04679 5.22097 8.4532 5.58709 8.08708L8.71209 4.96208C9.0782 4.59597 9.6718 4.59597 10.0379 4.96208Z" fill="#9CA3AF"></path>
<path d="M15.0379 11.2879C15.404 10.9218 15.404 10.3282 15.0379 9.96208C14.6718 9.59597 14.0782 9.59597 13.7121 9.96208L10.5871 13.0871C10.221 13.4532 10.221 14.0468 10.5871 14.4129C10.9532 14.779 11.5468 14.779 11.9129 14.4129L15.0379 11.2879Z" fill="#9CA3AF"></path>
</g>
<!-- VOLUME -->
<g id="iconVolume">
<path d="M10 7.1875C12.7614 7.1875 15 5.99826 15 4.53125C15 3.06424 12.7614 1.875 10 1.875C7.23858 1.875 5 3.06424 5 4.53125C5 5.99826 7.23858 7.1875 10 7.1875Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5 4.53125V15.4688C5 16.9375 7.24219 18.125 10 18.125C12.7578 18.125 15 16.9375 15 15.4688V4.53125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- MASS -->
<g id="iconMass">
<path d="M10 3.125V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.125 16.875H11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.375 6.875L15.625 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M1.875 13.125C1.875 14.5078 3.4375 15 4.375 15C5.3125 15 6.875 14.5078 6.875 13.125L4.375 6.875L1.875 13.125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 10.625C13.125 12.0078 14.6875 12.5 15.625 12.5C16.5625 12.5 18.125 12.0078 18.125 10.625L15.625 4.375L13.125 10.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA TRANSFER RATE -->
<g id="iconData Transfer Rate">
<path d="M7.5 16.25H5.625C4.46468 16.25 3.35188 15.7891 2.53141 14.9686C1.71094 14.1481 1.25 13.0353 1.25 11.875C1.25 10.7147 1.71094 9.60188 2.53141 8.78141C3.35188 7.96094 4.46468 7.5 5.625 7.5C5.99104 7.49986 6.35572 7.54446 6.71094 7.63281" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M6.25 10C6.25 9.00968 6.48533 8.03353 6.9366 7.152C7.38788 6.27047 8.04217 5.50879 8.84556 4.92974C9.64895 4.35068 10.5784 3.97083 11.5574 3.82148C12.5364 3.67213 13.5369 3.75756 14.4764 4.07073C15.4159 4.3839 16.2676 4.91584 16.9612 5.62272C17.6547 6.3296 18.1704 7.19118 18.4657 8.13645C18.761 9.08173 18.8274 10.0836 18.6595 11.0596C18.4916 12.0356 18.0942 12.9577 17.5 13.75" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M9.22656 12.6484L11.875 10L14.5234 12.6484" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.875 16.25V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA STORAGE -->
<g id="iconDigital Storage">
<path d="M10 10C13.797 10 16.875 8.32107 16.875 6.25C16.875 4.17893 13.797 2.5 10 2.5C6.20304 2.5 3.125 4.17893 3.125 6.25C3.125 8.32107 6.20304 10 10 10Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 6.25V10C3.125 12.0703 6.20313 13.75 10 13.75C13.7969 13.75 16.875 12.0703 16.875 10V6.25" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 10V13.75C3.125 15.8203 6.20313 17.5 10 17.5C13.7969 17.5 16.875 15.8203 16.875 13.75V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- ENERGY -->
<g id="iconEnergy">
<path d="M7.5 18.75L8.75 12.5L3.75 10.625L12.5 1.25L11.25 7.5L16.25 9.375L7.5 18.75Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL ECONOMY -->
<g id="iconFuel Economy">
<path d="M4.375 16.875V4.375C4.375 4.04348 4.5067 3.72554 4.74112 3.49112C4.97554 3.2567 5.29348 3.125 5.625 3.125H11.875C12.2065 3.125 12.5245 3.2567 12.7589 3.49112C12.9933 3.72554 13.125 4.04348 13.125 4.375V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.5 16.875H15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 8.75H15C15.3315 8.75 15.6495 8.8817 15.8839 9.11612C16.1183 9.35054 16.25 9.66848 16.25 10V13.125C16.25 13.4565 16.3817 13.7745 16.6161 14.0089C16.8505 14.2433 17.1685 14.375 17.5 14.375H17.8125C18.144 14.375 18.462 14.2433 18.6964 14.0089C18.9308 13.7745 19.0625 13.4565 19.0625 13.125V6.76562C19.0611 6.43449 18.9291 6.11728 18.6953 5.88281L17.1875 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 8.75H7.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL FREQUENCY -->
<g id="iconFrequency">
<path d="M1.875 10H4.375L7.5 3.125L12.5 16.25L15.625 10H18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- PRESSURE -->
<g id="iconPressure">
<g clip-path="url(#clip0_3838_57191)">
<path d="M10 1.875V8.75M10 8.75L8.125 6.875M10 8.75L11.875 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M3.125 1.875V8.75M3.125 8.75L1.25 6.875M3.125 8.75L5 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M16.875 1.875V8.75M16.875 8.75L15 6.875M16.875 8.75L18.75 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 15C1.25 15 6.57421 15.625 10 15.625C13.4258 15.625 18.75 15 18.75 15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 11.875C1.25 11.875 6.57421 12.5 10 12.5C13.4258 12.5 18.75 11.875 18.75 11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 18.125C1.25 18.125 6.57421 18.75 10 18.75C13.4258 18.75 18.75 18.125 18.75 18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
</g>
<defs>
<clipPath id="clip0_3838_57191">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- PLANE ANGLE -->
<g id="iconPlane Angle">
<g clip-path="url(#clip0_3838_57190)">
<path d="M2.5 17.5L10.625 9.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M13.125 6.875L15 5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M2.5 2.5V17.5H17.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<mask id="path-4-inside-1_3838_57190" fill="white">
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z"></path>
</mask>
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z" stroke="#9CA3AF" stroke-width="4" mask="url(#path-4-inside-1_3838_57190)"></path>
</g>
<defs>
<clipPath id="clip0_3838_57190">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- SPEED -->
<g id="iconSpeed">
<path d="M1.875 14.375V12.5859C1.875 8.09375 5.48437 4.39062 9.96875 4.375C11.0384 4.37089 12.0983 4.57801 13.0877 4.98449C14.077 5.39096 14.9764 5.98879 15.7342 6.74368C16.492 7.49857 17.0933 8.39565 17.5035 9.38346C17.9138 10.3713 18.125 11.4304 18.125 12.5V14.375C18.125 14.5408 18.0592 14.6997 17.9419 14.8169C17.8247 14.9342 17.6658 15 17.5 15H2.5C2.33424 15 2.17527 14.9342 2.05806 14.8169C1.94085 14.6997 1.875 14.5408 1.875 14.375Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 4.375V6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.14844 10.3984L4.57031 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M17.8516 10.3984L15.4297 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.07812 15L13.4219 8.03906" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TIME -->
<g id="iconTime">
<path d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 5.625V10H14.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</defs>
<use href="#iconDigital Storage"></use>
</svg>
Digital Storage</button>
<button
class="dropdown-select"
tabindex="-1"
value="Energy"
onclick="unitsChange(this)"
>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- LENGTH -->
<g id="iconLength">
<path d="M12.6805 2.31574L2.31694 12.6793C2.07286 12.9234 2.07286 13.3191 2.31694 13.5632L6.43308 17.6793C6.67715 17.9234 7.07288 17.9234 7.31696 17.6793L17.6805 7.31576C17.9246 7.07168 17.9246 6.67595 17.6805 6.43188L13.5644 2.31574C13.3203 2.07166 12.9246 2.07166 12.6805 2.31574Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10.3125 4.6875L12.8125 7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M7.5 7.5L10 10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.6875 10.3125L7.1875 12.8125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TEMPERATURE -->
<g id="iconTemperature">
<path d="M16.875 7.8125C17.7379 7.8125 18.4375 7.11294 18.4375 6.25C18.4375 5.38706 17.7379 4.6875 16.875 4.6875C16.0121 4.6875 15.3125 5.38706 15.3125 6.25C15.3125 7.11294 16.0121 7.8125 16.875 7.8125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 15.625C8.95527 15.625 9.375 15.2053 9.375 14.6875C9.375 14.1697 8.95527 13.75 8.4375 13.75C7.91973 13.75 7.5 14.1697 7.5 14.6875C7.5 15.2053 7.91973 15.625 8.4375 15.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 13.125V7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5.3125 12.0938V4.375C5.3125 3.5462 5.64174 2.75134 6.22779 2.16529C6.81384 1.57924 7.6087 1.25 8.4375 1.25C9.2663 1.25 10.0612 1.57924 10.6472 2.16529C11.2333 2.75134 11.5625 3.5462 11.5625 4.375V12.0938C12.0555 12.6873 12.3693 13.409 12.4672 14.1743C12.5651 14.9397 12.4429 15.7171 12.1151 16.4156C11.7873 17.1141 11.2673 17.7048 10.616 18.1186C9.96475 18.5323 9.2091 18.7521 8.4375 18.7521C7.6659 18.7521 6.91026 18.5323 6.25898 18.1186C5.60771 17.7048 5.08774 17.1141 4.75991 16.4156C4.43208 15.7171 4.30995 14.9397 4.40781 14.1743C4.50567 13.409 4.81947 12.6873 5.3125 12.0938V12.0938Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- AREA -->
<g id="iconArea">
<path d="M3.125 1.17417L5.66291 3.71208C6.02903 4.0782 6.02903 4.67179 5.66291 5.03791C5.2968 5.40403 4.7032 5.40403 4.33709 5.03791L4.0625 4.76332V15.9375H15.2367L14.9621 15.6629C14.596 15.2968 14.596 14.7032 14.9621 14.3371C15.3282 13.971 15.9218 13.971 16.2879 14.3371L18.8258 16.875L16.2879 19.4129C15.9218 19.779 15.3282 19.779 14.9621 19.4129C14.596 19.0468 14.596 18.4532 14.9621 18.0871L15.2367 17.8125H2.1875V4.76332L1.91291 5.03791C1.5468 5.40403 0.953204 5.40403 0.587087 5.03791C0.220971 4.67179 0.220971 4.0782 0.587087 3.71208L3.125 1.17417Z" fill="#9CA3AF"></path>
<path d="M8.125 1.5625H9.375V3.4375H8.125C7.60723 3.4375 7.1875 3.01776 7.1875 2.5C7.1875 1.98223 7.60723 1.5625 8.125 1.5625Z" fill="#9CA3AF"></path>
<path d="M14.375 3.4375H11.875V1.5625H14.375V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 3.4375V1.5625H19.0625V3.75H17.1875V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 8.75V6.25H19.0625V8.75H17.1875Z" fill="#9CA3AF"></path>
<path d="M17.1875 12.5V11.25H19.0625V12.5C19.0625 13.0178 18.6428 13.4375 18.125 13.4375C17.6072 13.4375 17.1875 13.0178 17.1875 12.5Z" fill="#9CA3AF"></path>
<path d="M14.4129 6.91291C14.779 6.54679 14.779 5.9532 14.4129 5.58708C14.0468 5.22097 13.4532 5.22097 13.0871 5.58708L6.21209 12.4621C5.84597 12.8282 5.84597 13.4218 6.21209 13.7879C6.5782 14.154 7.1718 14.154 7.53791 13.7879L14.4129 6.91291Z" fill="#9CA3AF"></path>
<path d="M10.0379 4.96208C10.404 5.3282 10.404 5.92179 10.0379 6.28791L6.91291 9.41291C6.5468 9.77903 5.9532 9.77903 5.58709 9.41291C5.22097 9.04679 5.22097 8.4532 5.58709 8.08708L8.71209 4.96208C9.0782 4.59597 9.6718 4.59597 10.0379 4.96208Z" fill="#9CA3AF"></path>
<path d="M15.0379 11.2879C15.404 10.9218 15.404 10.3282 15.0379 9.96208C14.6718 9.59597 14.0782 9.59597 13.7121 9.96208L10.5871 13.0871C10.221 13.4532 10.221 14.0468 10.5871 14.4129C10.9532 14.779 11.5468 14.779 11.9129 14.4129L15.0379 11.2879Z" fill="#9CA3AF"></path>
</g>
<!-- VOLUME -->
<g id="iconVolume">
<path d="M10 7.1875C12.7614 7.1875 15 5.99826 15 4.53125C15 3.06424 12.7614 1.875 10 1.875C7.23858 1.875 5 3.06424 5 4.53125C5 5.99826 7.23858 7.1875 10 7.1875Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5 4.53125V15.4688C5 16.9375 7.24219 18.125 10 18.125C12.7578 18.125 15 16.9375 15 15.4688V4.53125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- MASS -->
<g id="iconMass">
<path d="M10 3.125V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.125 16.875H11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.375 6.875L15.625 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M1.875 13.125C1.875 14.5078 3.4375 15 4.375 15C5.3125 15 6.875 14.5078 6.875 13.125L4.375 6.875L1.875 13.125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 10.625C13.125 12.0078 14.6875 12.5 15.625 12.5C16.5625 12.5 18.125 12.0078 18.125 10.625L15.625 4.375L13.125 10.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA TRANSFER RATE -->
<g id="iconData Transfer Rate">
<path d="M7.5 16.25H5.625C4.46468 16.25 3.35188 15.7891 2.53141 14.9686C1.71094 14.1481 1.25 13.0353 1.25 11.875C1.25 10.7147 1.71094 9.60188 2.53141 8.78141C3.35188 7.96094 4.46468 7.5 5.625 7.5C5.99104 7.49986 6.35572 7.54446 6.71094 7.63281" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M6.25 10C6.25 9.00968 6.48533 8.03353 6.9366 7.152C7.38788 6.27047 8.04217 5.50879 8.84556 4.92974C9.64895 4.35068 10.5784 3.97083 11.5574 3.82148C12.5364 3.67213 13.5369 3.75756 14.4764 4.07073C15.4159 4.3839 16.2676 4.91584 16.9612 5.62272C17.6547 6.3296 18.1704 7.19118 18.4657 8.13645C18.761 9.08173 18.8274 10.0836 18.6595 11.0596C18.4916 12.0356 18.0942 12.9577 17.5 13.75" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M9.22656 12.6484L11.875 10L14.5234 12.6484" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.875 16.25V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA STORAGE -->
<g id="iconDigital Storage">
<path d="M10 10C13.797 10 16.875 8.32107 16.875 6.25C16.875 4.17893 13.797 2.5 10 2.5C6.20304 2.5 3.125 4.17893 3.125 6.25C3.125 8.32107 6.20304 10 10 10Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 6.25V10C3.125 12.0703 6.20313 13.75 10 13.75C13.7969 13.75 16.875 12.0703 16.875 10V6.25" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 10V13.75C3.125 15.8203 6.20313 17.5 10 17.5C13.7969 17.5 16.875 15.8203 16.875 13.75V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- ENERGY -->
<g id="iconEnergy">
<path d="M7.5 18.75L8.75 12.5L3.75 10.625L12.5 1.25L11.25 7.5L16.25 9.375L7.5 18.75Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL ECONOMY -->
<g id="iconFuel Economy">
<path d="M4.375 16.875V4.375C4.375 4.04348 4.5067 3.72554 4.74112 3.49112C4.97554 3.2567 5.29348 3.125 5.625 3.125H11.875C12.2065 3.125 12.5245 3.2567 12.7589 3.49112C12.9933 3.72554 13.125 4.04348 13.125 4.375V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.5 16.875H15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 8.75H15C15.3315 8.75 15.6495 8.8817 15.8839 9.11612C16.1183 9.35054 16.25 9.66848 16.25 10V13.125C16.25 13.4565 16.3817 13.7745 16.6161 14.0089C16.8505 14.2433 17.1685 14.375 17.5 14.375H17.8125C18.144 14.375 18.462 14.2433 18.6964 14.0089C18.9308 13.7745 19.0625 13.4565 19.0625 13.125V6.76562C19.0611 6.43449 18.9291 6.11728 18.6953 5.88281L17.1875 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 8.75H7.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL FREQUENCY -->
<g id="iconFrequency">
<path d="M1.875 10H4.375L7.5 3.125L12.5 16.25L15.625 10H18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- PRESSURE -->
<g id="iconPressure">
<g clip-path="url(#clip0_3838_57191)">
<path d="M10 1.875V8.75M10 8.75L8.125 6.875M10 8.75L11.875 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M3.125 1.875V8.75M3.125 8.75L1.25 6.875M3.125 8.75L5 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M16.875 1.875V8.75M16.875 8.75L15 6.875M16.875 8.75L18.75 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 15C1.25 15 6.57421 15.625 10 15.625C13.4258 15.625 18.75 15 18.75 15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 11.875C1.25 11.875 6.57421 12.5 10 12.5C13.4258 12.5 18.75 11.875 18.75 11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 18.125C1.25 18.125 6.57421 18.75 10 18.75C13.4258 18.75 18.75 18.125 18.75 18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
</g>
<defs>
<clipPath id="clip0_3838_57191">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- PLANE ANGLE -->
<g id="iconPlane Angle">
<g clip-path="url(#clip0_3838_57190)">
<path d="M2.5 17.5L10.625 9.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M13.125 6.875L15 5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M2.5 2.5V17.5H17.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<mask id="path-4-inside-1_3838_57190" fill="white">
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z"></path>
</mask>
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z" stroke="#9CA3AF" stroke-width="4" mask="url(#path-4-inside-1_3838_57190)"></path>
</g>
<defs>
<clipPath id="clip0_3838_57190">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- SPEED -->
<g id="iconSpeed">
<path d="M1.875 14.375V12.5859C1.875 8.09375 5.48437 4.39062 9.96875 4.375C11.0384 4.37089 12.0983 4.57801 13.0877 4.98449C14.077 5.39096 14.9764 5.98879 15.7342 6.74368C16.492 7.49857 17.0933 8.39565 17.5035 9.38346C17.9138 10.3713 18.125 11.4304 18.125 12.5V14.375C18.125 14.5408 18.0592 14.6997 17.9419 14.8169C17.8247 14.9342 17.6658 15 17.5 15H2.5C2.33424 15 2.17527 14.9342 2.05806 14.8169C1.94085 14.6997 1.875 14.5408 1.875 14.375Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 4.375V6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.14844 10.3984L4.57031 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M17.8516 10.3984L15.4297 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.07812 15L13.4219 8.03906" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TIME -->
<g id="iconTime">
<path d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 5.625V10H14.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</defs>
<use href="#iconEnergy"></use>
</svg>
Energy</button>
<button
class="dropdown-select"
tabindex="-1"
value="Frequency"
onclick="unitsChange(this)"
>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- LENGTH -->
<g id="iconLength">
<path d="M12.6805 2.31574L2.31694 12.6793C2.07286 12.9234 2.07286 13.3191 2.31694 13.5632L6.43308 17.6793C6.67715 17.9234 7.07288 17.9234 7.31696 17.6793L17.6805 7.31576C17.9246 7.07168 17.9246 6.67595 17.6805 6.43188L13.5644 2.31574C13.3203 2.07166 12.9246 2.07166 12.6805 2.31574Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10.3125 4.6875L12.8125 7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M7.5 7.5L10 10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.6875 10.3125L7.1875 12.8125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TEMPERATURE -->
<g id="iconTemperature">
<path d="M16.875 7.8125C17.7379 7.8125 18.4375 7.11294 18.4375 6.25C18.4375 5.38706 17.7379 4.6875 16.875 4.6875C16.0121 4.6875 15.3125 5.38706 15.3125 6.25C15.3125 7.11294 16.0121 7.8125 16.875 7.8125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 15.625C8.95527 15.625 9.375 15.2053 9.375 14.6875C9.375 14.1697 8.95527 13.75 8.4375 13.75C7.91973 13.75 7.5 14.1697 7.5 14.6875C7.5 15.2053 7.91973 15.625 8.4375 15.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 13.125V7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5.3125 12.0938V4.375C5.3125 3.5462 5.64174 2.75134 6.22779 2.16529C6.81384 1.57924 7.6087 1.25 8.4375 1.25C9.2663 1.25 10.0612 1.57924 10.6472 2.16529C11.2333 2.75134 11.5625 3.5462 11.5625 4.375V12.0938C12.0555 12.6873 12.3693 13.409 12.4672 14.1743C12.5651 14.9397 12.4429 15.7171 12.1151 16.4156C11.7873 17.1141 11.2673 17.7048 10.616 18.1186C9.96475 18.5323 9.2091 18.7521 8.4375 18.7521C7.6659 18.7521 6.91026 18.5323 6.25898 18.1186C5.60771 17.7048 5.08774 17.1141 4.75991 16.4156C4.43208 15.7171 4.30995 14.9397 4.40781 14.1743C4.50567 13.409 4.81947 12.6873 5.3125 12.0938V12.0938Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- AREA -->
<g id="iconArea">
<path d="M3.125 1.17417L5.66291 3.71208C6.02903 4.0782 6.02903 4.67179 5.66291 5.03791C5.2968 5.40403 4.7032 5.40403 4.33709 5.03791L4.0625 4.76332V15.9375H15.2367L14.9621 15.6629C14.596 15.2968 14.596 14.7032 14.9621 14.3371C15.3282 13.971 15.9218 13.971 16.2879 14.3371L18.8258 16.875L16.2879 19.4129C15.9218 19.779 15.3282 19.779 14.9621 19.4129C14.596 19.0468 14.596 18.4532 14.9621 18.0871L15.2367 17.8125H2.1875V4.76332L1.91291 5.03791C1.5468 5.40403 0.953204 5.40403 0.587087 5.03791C0.220971 4.67179 0.220971 4.0782 0.587087 3.71208L3.125 1.17417Z" fill="#9CA3AF"></path>
<path d="M8.125 1.5625H9.375V3.4375H8.125C7.60723 3.4375 7.1875 3.01776 7.1875 2.5C7.1875 1.98223 7.60723 1.5625 8.125 1.5625Z" fill="#9CA3AF"></path>
<path d="M14.375 3.4375H11.875V1.5625H14.375V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 3.4375V1.5625H19.0625V3.75H17.1875V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 8.75V6.25H19.0625V8.75H17.1875Z" fill="#9CA3AF"></path>
<path d="M17.1875 12.5V11.25H19.0625V12.5C19.0625 13.0178 18.6428 13.4375 18.125 13.4375C17.6072 13.4375 17.1875 13.0178 17.1875 12.5Z" fill="#9CA3AF"></path>
<path d="M14.4129 6.91291C14.779 6.54679 14.779 5.9532 14.4129 5.58708C14.0468 5.22097 13.4532 5.22097 13.0871 5.58708L6.21209 12.4621C5.84597 12.8282 5.84597 13.4218 6.21209 13.7879C6.5782 14.154 7.1718 14.154 7.53791 13.7879L14.4129 6.91291Z" fill="#9CA3AF"></path>
<path d="M10.0379 4.96208C10.404 5.3282 10.404 5.92179 10.0379 6.28791L6.91291 9.41291C6.5468 9.77903 5.9532 9.77903 5.58709 9.41291C5.22097 9.04679 5.22097 8.4532 5.58709 8.08708L8.71209 4.96208C9.0782 4.59597 9.6718 4.59597 10.0379 4.96208Z" fill="#9CA3AF"></path>
<path d="M15.0379 11.2879C15.404 10.9218 15.404 10.3282 15.0379 9.96208C14.6718 9.59597 14.0782 9.59597 13.7121 9.96208L10.5871 13.0871C10.221 13.4532 10.221 14.0468 10.5871 14.4129C10.9532 14.779 11.5468 14.779 11.9129 14.4129L15.0379 11.2879Z" fill="#9CA3AF"></path>
</g>
<!-- VOLUME -->
<g id="iconVolume">
<path d="M10 7.1875C12.7614 7.1875 15 5.99826 15 4.53125C15 3.06424 12.7614 1.875 10 1.875C7.23858 1.875 5 3.06424 5 4.53125C5 5.99826 7.23858 7.1875 10 7.1875Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5 4.53125V15.4688C5 16.9375 7.24219 18.125 10 18.125C12.7578 18.125 15 16.9375 15 15.4688V4.53125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- MASS -->
<g id="iconMass">
<path d="M10 3.125V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.125 16.875H11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.375 6.875L15.625 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M1.875 13.125C1.875 14.5078 3.4375 15 4.375 15C5.3125 15 6.875 14.5078 6.875 13.125L4.375 6.875L1.875 13.125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 10.625C13.125 12.0078 14.6875 12.5 15.625 12.5C16.5625 12.5 18.125 12.0078 18.125 10.625L15.625 4.375L13.125 10.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA TRANSFER RATE -->
<g id="iconData Transfer Rate">
<path d="M7.5 16.25H5.625C4.46468 16.25 3.35188 15.7891 2.53141 14.9686C1.71094 14.1481 1.25 13.0353 1.25 11.875C1.25 10.7147 1.71094 9.60188 2.53141 8.78141C3.35188 7.96094 4.46468 7.5 5.625 7.5C5.99104 7.49986 6.35572 7.54446 6.71094 7.63281" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M6.25 10C6.25 9.00968 6.48533 8.03353 6.9366 7.152C7.38788 6.27047 8.04217 5.50879 8.84556 4.92974C9.64895 4.35068 10.5784 3.97083 11.5574 3.82148C12.5364 3.67213 13.5369 3.75756 14.4764 4.07073C15.4159 4.3839 16.2676 4.91584 16.9612 5.62272C17.6547 6.3296 18.1704 7.19118 18.4657 8.13645C18.761 9.08173 18.8274 10.0836 18.6595 11.0596C18.4916 12.0356 18.0942 12.9577 17.5 13.75" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M9.22656 12.6484L11.875 10L14.5234 12.6484" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.875 16.25V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA STORAGE -->
<g id="iconDigital Storage">
<path d="M10 10C13.797 10 16.875 8.32107 16.875 6.25C16.875 4.17893 13.797 2.5 10 2.5C6.20304 2.5 3.125 4.17893 3.125 6.25C3.125 8.32107 6.20304 10 10 10Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 6.25V10C3.125 12.0703 6.20313 13.75 10 13.75C13.7969 13.75 16.875 12.0703 16.875 10V6.25" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 10V13.75C3.125 15.8203 6.20313 17.5 10 17.5C13.7969 17.5 16.875 15.8203 16.875 13.75V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- ENERGY -->
<g id="iconEnergy">
<path d="M7.5 18.75L8.75 12.5L3.75 10.625L12.5 1.25L11.25 7.5L16.25 9.375L7.5 18.75Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL ECONOMY -->
<g id="iconFuel Economy">
<path d="M4.375 16.875V4.375C4.375 4.04348 4.5067 3.72554 4.74112 3.49112C4.97554 3.2567 5.29348 3.125 5.625 3.125H11.875C12.2065 3.125 12.5245 3.2567 12.7589 3.49112C12.9933 3.72554 13.125 4.04348 13.125 4.375V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.5 16.875H15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 8.75H15C15.3315 8.75 15.6495 8.8817 15.8839 9.11612C16.1183 9.35054 16.25 9.66848 16.25 10V13.125C16.25 13.4565 16.3817 13.7745 16.6161 14.0089C16.8505 14.2433 17.1685 14.375 17.5 14.375H17.8125C18.144 14.375 18.462 14.2433 18.6964 14.0089C18.9308 13.7745 19.0625 13.4565 19.0625 13.125V6.76562C19.0611 6.43449 18.9291 6.11728 18.6953 5.88281L17.1875 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 8.75H7.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL FREQUENCY -->
<g id="iconFrequency">
<path d="M1.875 10H4.375L7.5 3.125L12.5 16.25L15.625 10H18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- PRESSURE -->
<g id="iconPressure">
<g clip-path="url(#clip0_3838_57191)">
<path d="M10 1.875V8.75M10 8.75L8.125 6.875M10 8.75L11.875 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M3.125 1.875V8.75M3.125 8.75L1.25 6.875M3.125 8.75L5 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M16.875 1.875V8.75M16.875 8.75L15 6.875M16.875 8.75L18.75 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 15C1.25 15 6.57421 15.625 10 15.625C13.4258 15.625 18.75 15 18.75 15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 11.875C1.25 11.875 6.57421 12.5 10 12.5C13.4258 12.5 18.75 11.875 18.75 11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 18.125C1.25 18.125 6.57421 18.75 10 18.75C13.4258 18.75 18.75 18.125 18.75 18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
</g>
<defs>
<clipPath id="clip0_3838_57191">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- PLANE ANGLE -->
<g id="iconPlane Angle">
<g clip-path="url(#clip0_3838_57190)">
<path d="M2.5 17.5L10.625 9.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M13.125 6.875L15 5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M2.5 2.5V17.5H17.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<mask id="path-4-inside-1_3838_57190" fill="white">
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z"></path>
</mask>
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z" stroke="#9CA3AF" stroke-width="4" mask="url(#path-4-inside-1_3838_57190)"></path>
</g>
<defs>
<clipPath id="clip0_3838_57190">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- SPEED -->
<g id="iconSpeed">
<path d="M1.875 14.375V12.5859C1.875 8.09375 5.48437 4.39062 9.96875 4.375C11.0384 4.37089 12.0983 4.57801 13.0877 4.98449C14.077 5.39096 14.9764 5.98879 15.7342 6.74368C16.492 7.49857 17.0933 8.39565 17.5035 9.38346C17.9138 10.3713 18.125 11.4304 18.125 12.5V14.375C18.125 14.5408 18.0592 14.6997 17.9419 14.8169C17.8247 14.9342 17.6658 15 17.5 15H2.5C2.33424 15 2.17527 14.9342 2.05806 14.8169C1.94085 14.6997 1.875 14.5408 1.875 14.375Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 4.375V6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.14844 10.3984L4.57031 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M17.8516 10.3984L15.4297 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.07812 15L13.4219 8.03906" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TIME -->
<g id="iconTime">
<path d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 5.625V10H14.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</defs>
<use href="#iconFrequency"></use>
</svg>
Frequency</button>
<button
class="dropdown-select"
tabindex="-1"
value="Fuel Economy"
onclick="unitsChange(this)"
>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- LENGTH -->
<g id="iconLength">
<path d="M12.6805 2.31574L2.31694 12.6793C2.07286 12.9234 2.07286 13.3191 2.31694 13.5632L6.43308 17.6793C6.67715 17.9234 7.07288 17.9234 7.31696 17.6793L17.6805 7.31576C17.9246 7.07168 17.9246 6.67595 17.6805 6.43188L13.5644 2.31574C13.3203 2.07166 12.9246 2.07166 12.6805 2.31574Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10.3125 4.6875L12.8125 7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M7.5 7.5L10 10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.6875 10.3125L7.1875 12.8125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TEMPERATURE -->
<g id="iconTemperature">
<path d="M16.875 7.8125C17.7379 7.8125 18.4375 7.11294 18.4375 6.25C18.4375 5.38706 17.7379 4.6875 16.875 4.6875C16.0121 4.6875 15.3125 5.38706 15.3125 6.25C15.3125 7.11294 16.0121 7.8125 16.875 7.8125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 15.625C8.95527 15.625 9.375 15.2053 9.375 14.6875C9.375 14.1697 8.95527 13.75 8.4375 13.75C7.91973 13.75 7.5 14.1697 7.5 14.6875C7.5 15.2053 7.91973 15.625 8.4375 15.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 13.125V7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5.3125 12.0938V4.375C5.3125 3.5462 5.64174 2.75134 6.22779 2.16529C6.81384 1.57924 7.6087 1.25 8.4375 1.25C9.2663 1.25 10.0612 1.57924 10.6472 2.16529C11.2333 2.75134 11.5625 3.5462 11.5625 4.375V12.0938C12.0555 12.6873 12.3693 13.409 12.4672 14.1743C12.5651 14.9397 12.4429 15.7171 12.1151 16.4156C11.7873 17.1141 11.2673 17.7048 10.616 18.1186C9.96475 18.5323 9.2091 18.7521 8.4375 18.7521C7.6659 18.7521 6.91026 18.5323 6.25898 18.1186C5.60771 17.7048 5.08774 17.1141 4.75991 16.4156C4.43208 15.7171 4.30995 14.9397 4.40781 14.1743C4.50567 13.409 4.81947 12.6873 5.3125 12.0938V12.0938Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- AREA -->
<g id="iconArea">
<path d="M3.125 1.17417L5.66291 3.71208C6.02903 4.0782 6.02903 4.67179 5.66291 5.03791C5.2968 5.40403 4.7032 5.40403 4.33709 5.03791L4.0625 4.76332V15.9375H15.2367L14.9621 15.6629C14.596 15.2968 14.596 14.7032 14.9621 14.3371C15.3282 13.971 15.9218 13.971 16.2879 14.3371L18.8258 16.875L16.2879 19.4129C15.9218 19.779 15.3282 19.779 14.9621 19.4129C14.596 19.0468 14.596 18.4532 14.9621 18.0871L15.2367 17.8125H2.1875V4.76332L1.91291 5.03791C1.5468 5.40403 0.953204 5.40403 0.587087 5.03791C0.220971 4.67179 0.220971 4.0782 0.587087 3.71208L3.125 1.17417Z" fill="#9CA3AF"></path>
<path d="M8.125 1.5625H9.375V3.4375H8.125C7.60723 3.4375 7.1875 3.01776 7.1875 2.5C7.1875 1.98223 7.60723 1.5625 8.125 1.5625Z" fill="#9CA3AF"></path>
<path d="M14.375 3.4375H11.875V1.5625H14.375V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 3.4375V1.5625H19.0625V3.75H17.1875V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 8.75V6.25H19.0625V8.75H17.1875Z" fill="#9CA3AF"></path>
<path d="M17.1875 12.5V11.25H19.0625V12.5C19.0625 13.0178 18.6428 13.4375 18.125 13.4375C17.6072 13.4375 17.1875 13.0178 17.1875 12.5Z" fill="#9CA3AF"></path>
<path d="M14.4129 6.91291C14.779 6.54679 14.779 5.9532 14.4129 5.58708C14.0468 5.22097 13.4532 5.22097 13.0871 5.58708L6.21209 12.4621C5.84597 12.8282 5.84597 13.4218 6.21209 13.7879C6.5782 14.154 7.1718 14.154 7.53791 13.7879L14.4129 6.91291Z" fill="#9CA3AF"></path>
<path d="M10.0379 4.96208C10.404 5.3282 10.404 5.92179 10.0379 6.28791L6.91291 9.41291C6.5468 9.77903 5.9532 9.77903 5.58709 9.41291C5.22097 9.04679 5.22097 8.4532 5.58709 8.08708L8.71209 4.96208C9.0782 4.59597 9.6718 4.59597 10.0379 4.96208Z" fill="#9CA3AF"></path>
<path d="M15.0379 11.2879C15.404 10.9218 15.404 10.3282 15.0379 9.96208C14.6718 9.59597 14.0782 9.59597 13.7121 9.96208L10.5871 13.0871C10.221 13.4532 10.221 14.0468 10.5871 14.4129C10.9532 14.779 11.5468 14.779 11.9129 14.4129L15.0379 11.2879Z" fill="#9CA3AF"></path>
</g>
<!-- VOLUME -->
<g id="iconVolume">
<path d="M10 7.1875C12.7614 7.1875 15 5.99826 15 4.53125C15 3.06424 12.7614 1.875 10 1.875C7.23858 1.875 5 3.06424 5 4.53125C5 5.99826 7.23858 7.1875 10 7.1875Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5 4.53125V15.4688C5 16.9375 7.24219 18.125 10 18.125C12.7578 18.125 15 16.9375 15 15.4688V4.53125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- MASS -->
<g id="iconMass">
<path d="M10 3.125V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.125 16.875H11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.375 6.875L15.625 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M1.875 13.125C1.875 14.5078 3.4375 15 4.375 15C5.3125 15 6.875 14.5078 6.875 13.125L4.375 6.875L1.875 13.125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 10.625C13.125 12.0078 14.6875 12.5 15.625 12.5C16.5625 12.5 18.125 12.0078 18.125 10.625L15.625 4.375L13.125 10.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA TRANSFER RATE -->
<g id="iconData Transfer Rate">
<path d="M7.5 16.25H5.625C4.46468 16.25 3.35188 15.7891 2.53141 14.9686C1.71094 14.1481 1.25 13.0353 1.25 11.875C1.25 10.7147 1.71094 9.60188 2.53141 8.78141C3.35188 7.96094 4.46468 7.5 5.625 7.5C5.99104 7.49986 6.35572 7.54446 6.71094 7.63281" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M6.25 10C6.25 9.00968 6.48533 8.03353 6.9366 7.152C7.38788 6.27047 8.04217 5.50879 8.84556 4.92974C9.64895 4.35068 10.5784 3.97083 11.5574 3.82148C12.5364 3.67213 13.5369 3.75756 14.4764 4.07073C15.4159 4.3839 16.2676 4.91584 16.9612 5.62272C17.6547 6.3296 18.1704 7.19118 18.4657 8.13645C18.761 9.08173 18.8274 10.0836 18.6595 11.0596C18.4916 12.0356 18.0942 12.9577 17.5 13.75" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M9.22656 12.6484L11.875 10L14.5234 12.6484" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.875 16.25V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA STORAGE -->
<g id="iconDigital Storage">
<path d="M10 10C13.797 10 16.875 8.32107 16.875 6.25C16.875 4.17893 13.797 2.5 10 2.5C6.20304 2.5 3.125 4.17893 3.125 6.25C3.125 8.32107 6.20304 10 10 10Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 6.25V10C3.125 12.0703 6.20313 13.75 10 13.75C13.7969 13.75 16.875 12.0703 16.875 10V6.25" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 10V13.75C3.125 15.8203 6.20313 17.5 10 17.5C13.7969 17.5 16.875 15.8203 16.875 13.75V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- ENERGY -->
<g id="iconEnergy">
<path d="M7.5 18.75L8.75 12.5L3.75 10.625L12.5 1.25L11.25 7.5L16.25 9.375L7.5 18.75Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL ECONOMY -->
<g id="iconFuel Economy">
<path d="M4.375 16.875V4.375C4.375 4.04348 4.5067 3.72554 4.74112 3.49112C4.97554 3.2567 5.29348 3.125 5.625 3.125H11.875C12.2065 3.125 12.5245 3.2567 12.7589 3.49112C12.9933 3.72554 13.125 4.04348 13.125 4.375V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.5 16.875H15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 8.75H15C15.3315 8.75 15.6495 8.8817 15.8839 9.11612C16.1183 9.35054 16.25 9.66848 16.25 10V13.125C16.25 13.4565 16.3817 13.7745 16.6161 14.0089C16.8505 14.2433 17.1685 14.375 17.5 14.375H17.8125C18.144 14.375 18.462 14.2433 18.6964 14.0089C18.9308 13.7745 19.0625 13.4565 19.0625 13.125V6.76562C19.0611 6.43449 18.9291 6.11728 18.6953 5.88281L17.1875 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 8.75H7.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL FREQUENCY -->
<g id="iconFrequency">
<path d="M1.875 10H4.375L7.5 3.125L12.5 16.25L15.625 10H18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- PRESSURE -->
<g id="iconPressure">
<g clip-path="url(#clip0_3838_57191)">
<path d="M10 1.875V8.75M10 8.75L8.125 6.875M10 8.75L11.875 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M3.125 1.875V8.75M3.125 8.75L1.25 6.875M3.125 8.75L5 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M16.875 1.875V8.75M16.875 8.75L15 6.875M16.875 8.75L18.75 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 15C1.25 15 6.57421 15.625 10 15.625C13.4258 15.625 18.75 15 18.75 15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 11.875C1.25 11.875 6.57421 12.5 10 12.5C13.4258 12.5 18.75 11.875 18.75 11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 18.125C1.25 18.125 6.57421 18.75 10 18.75C13.4258 18.75 18.75 18.125 18.75 18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
</g>
<defs>
<clipPath id="clip0_3838_57191">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- PLANE ANGLE -->
<g id="iconPlane Angle">
<g clip-path="url(#clip0_3838_57190)">
<path d="M2.5 17.5L10.625 9.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M13.125 6.875L15 5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M2.5 2.5V17.5H17.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<mask id="path-4-inside-1_3838_57190" fill="white">
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z"></path>
</mask>
<path d="M12.5 18.4375C12.5 17.0012 12.2171 15.5789 11.6674 14.2519C11.1178 12.9249 10.3121 11.7192 9.29648 10.7035C8.28084 9.68788 7.0751 8.88223 5.7481 8.33257C4.4211 7.78291 2.99883 7.5 1.5625 7.5L1.5625 18.4375H12.5Z" stroke="#9CA3AF" stroke-width="4" mask="url(#path-4-inside-1_3838_57190)"></path>
</g>
<defs>
<clipPath id="clip0_3838_57190">
<rect width="20" height="20" fill="white"></rect>
</clipPath>
</defs>
</g>
<!-- SPEED -->
<g id="iconSpeed">
<path d="M1.875 14.375V12.5859C1.875 8.09375 5.48437 4.39062 9.96875 4.375C11.0384 4.37089 12.0983 4.57801 13.0877 4.98449C14.077 5.39096 14.9764 5.98879 15.7342 6.74368C16.492 7.49857 17.0933 8.39565 17.5035 9.38346C17.9138 10.3713 18.125 11.4304 18.125 12.5V14.375C18.125 14.5408 18.0592 14.6997 17.9419 14.8169C17.8247 14.9342 17.6658 15 17.5 15H2.5C2.33424 15 2.17527 14.9342 2.05806 14.8169C1.94085 14.6997 1.875 14.5408 1.875 14.375Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 4.375V6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.14844 10.3984L4.57031 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M17.8516 10.3984L15.4297 11.0469" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.07812 15L13.4219 8.03906" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TIME -->
<g id="iconTime">
<path d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 5.625V10H14.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</defs>
<use href="#iconFuel Economy"></use>
</svg>
Fuel Economy</button>
<button
class="dropdown-select dropdown-select--selected"
tabindex="-1"
value="Length"
onclick="unitsChange(this)"
>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- LENGTH -->
<g id="iconLength">
<path d="M12.6805 2.31574L2.31694 12.6793C2.07286 12.9234 2.07286 13.3191 2.31694 13.5632L6.43308 17.6793C6.67715 17.9234 7.07288 17.9234 7.31696 17.6793L17.6805 7.31576C17.9246 7.07168 17.9246 6.67595 17.6805 6.43188L13.5644 2.31574C13.3203 2.07166 12.9246 2.07166 12.6805 2.31574Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10.3125 4.6875L12.8125 7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M7.5 7.5L10 10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.6875 10.3125L7.1875 12.8125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- TEMPERATURE -->
<g id="iconTemperature">
<path d="M16.875 7.8125C17.7379 7.8125 18.4375 7.11294 18.4375 6.25C18.4375 5.38706 17.7379 4.6875 16.875 4.6875C16.0121 4.6875 15.3125 5.38706 15.3125 6.25C15.3125 7.11294 16.0121 7.8125 16.875 7.8125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 15.625C8.95527 15.625 9.375 15.2053 9.375 14.6875C9.375 14.1697 8.95527 13.75 8.4375 13.75C7.91973 13.75 7.5 14.1697 7.5 14.6875C7.5 15.2053 7.91973 15.625 8.4375 15.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.4375 13.125V7.1875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5.3125 12.0938V4.375C5.3125 3.5462 5.64174 2.75134 6.22779 2.16529C6.81384 1.57924 7.6087 1.25 8.4375 1.25C9.2663 1.25 10.0612 1.57924 10.6472 2.16529C11.2333 2.75134 11.5625 3.5462 11.5625 4.375V12.0938C12.0555 12.6873 12.3693 13.409 12.4672 14.1743C12.5651 14.9397 12.4429 15.7171 12.1151 16.4156C11.7873 17.1141 11.2673 17.7048 10.616 18.1186C9.96475 18.5323 9.2091 18.7521 8.4375 18.7521C7.6659 18.7521 6.91026 18.5323 6.25898 18.1186C5.60771 17.7048 5.08774 17.1141 4.75991 16.4156C4.43208 15.7171 4.30995 14.9397 4.40781 14.1743C4.50567 13.409 4.81947 12.6873 5.3125 12.0938V12.0938Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- AREA -->
<g id="iconArea">
<path d="M3.125 1.17417L5.66291 3.71208C6.02903 4.0782 6.02903 4.67179 5.66291 5.03791C5.2968 5.40403 4.7032 5.40403 4.33709 5.03791L4.0625 4.76332V15.9375H15.2367L14.9621 15.6629C14.596 15.2968 14.596 14.7032 14.9621 14.3371C15.3282 13.971 15.9218 13.971 16.2879 14.3371L18.8258 16.875L16.2879 19.4129C15.9218 19.779 15.3282 19.779 14.9621 19.4129C14.596 19.0468 14.596 18.4532 14.9621 18.0871L15.2367 17.8125H2.1875V4.76332L1.91291 5.03791C1.5468 5.40403 0.953204 5.40403 0.587087 5.03791C0.220971 4.67179 0.220971 4.0782 0.587087 3.71208L3.125 1.17417Z" fill="#9CA3AF"></path>
<path d="M8.125 1.5625H9.375V3.4375H8.125C7.60723 3.4375 7.1875 3.01776 7.1875 2.5C7.1875 1.98223 7.60723 1.5625 8.125 1.5625Z" fill="#9CA3AF"></path>
<path d="M14.375 3.4375H11.875V1.5625H14.375V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 3.4375V1.5625H19.0625V3.75H17.1875V3.4375Z" fill="#9CA3AF"></path>
<path d="M17.1875 8.75V6.25H19.0625V8.75H17.1875Z" fill="#9CA3AF"></path>
<path d="M17.1875 12.5V11.25H19.0625V12.5C19.0625 13.0178 18.6428 13.4375 18.125 13.4375C17.6072 13.4375 17.1875 13.0178 17.1875 12.5Z" fill="#9CA3AF"></path>
<path d="M14.4129 6.91291C14.779 6.54679 14.779 5.9532 14.4129 5.58708C14.0468 5.22097 13.4532 5.22097 13.0871 5.58708L6.21209 12.4621C5.84597 12.8282 5.84597 13.4218 6.21209 13.7879C6.5782 14.154 7.1718 14.154 7.53791 13.7879L14.4129 6.91291Z" fill="#9CA3AF"></path>
<path d="M10.0379 4.96208C10.404 5.3282 10.404 5.92179 10.0379 6.28791L6.91291 9.41291C6.5468 9.77903 5.9532 9.77903 5.58709 9.41291C5.22097 9.04679 5.22097 8.4532 5.58709 8.08708L8.71209 4.96208C9.0782 4.59597 9.6718 4.59597 10.0379 4.96208Z" fill="#9CA3AF"></path>
<path d="M15.0379 11.2879C15.404 10.9218 15.404 10.3282 15.0379 9.96208C14.6718 9.59597 14.0782 9.59597 13.7121 9.96208L10.5871 13.0871C10.221 13.4532 10.221 14.0468 10.5871 14.4129C10.9532 14.779 11.5468 14.779 11.9129 14.4129L15.0379 11.2879Z" fill="#9CA3AF"></path>
</g>
<!-- VOLUME -->
<g id="iconVolume">
<path d="M10 7.1875C12.7614 7.1875 15 5.99826 15 4.53125C15 3.06424 12.7614 1.875 10 1.875C7.23858 1.875 5 3.06424 5 4.53125C5 5.99826 7.23858 7.1875 10 7.1875Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M5 4.53125V15.4688C5 16.9375 7.24219 18.125 10 18.125C12.7578 18.125 15 16.9375 15 15.4688V4.53125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- MASS -->
<g id="iconMass">
<path d="M10 3.125V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M8.125 16.875H11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M4.375 6.875L15.625 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M1.875 13.125C1.875 14.5078 3.4375 15 4.375 15C5.3125 15 6.875 14.5078 6.875 13.125L4.375 6.875L1.875 13.125Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 10.625C13.125 12.0078 14.6875 12.5 15.625 12.5C16.5625 12.5 18.125 12.0078 18.125 10.625L15.625 4.375L13.125 10.625Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA TRANSFER RATE -->
<g id="iconData Transfer Rate">
<path d="M7.5 16.25H5.625C4.46468 16.25 3.35188 15.7891 2.53141 14.9686C1.71094 14.1481 1.25 13.0353 1.25 11.875C1.25 10.7147 1.71094 9.60188 2.53141 8.78141C3.35188 7.96094 4.46468 7.5 5.625 7.5C5.99104 7.49986 6.35572 7.54446 6.71094 7.63281" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M6.25 10C6.25 9.00968 6.48533 8.03353 6.9366 7.152C7.38788 6.27047 8.04217 5.50879 8.84556 4.92974C9.64895 4.35068 10.5784 3.97083 11.5574 3.82148C12.5364 3.67213 13.5369 3.75756 14.4764 4.07073C15.4159 4.3839 16.2676 4.91584 16.9612 5.62272C17.6547 6.3296 18.1704 7.19118 18.4657 8.13645C18.761 9.08173 18.8274 10.0836 18.6595 11.0596C18.4916 12.0356 18.0942 12.9577 17.5 13.75" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M9.22656 12.6484L11.875 10L14.5234 12.6484" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.875 16.25V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- DATA STORAGE -->
<g id="iconDigital Storage">
<path d="M10 10C13.797 10 16.875 8.32107 16.875 6.25C16.875 4.17893 13.797 2.5 10 2.5C6.20304 2.5 3.125 4.17893 3.125 6.25C3.125 8.32107 6.20304 10 10 10Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 6.25V10C3.125 12.0703 6.20313 13.75 10 13.75C13.7969 13.75 16.875 12.0703 16.875 10V6.25" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 10V13.75C3.125 15.8203 6.20313 17.5 10 17.5C13.7969 17.5 16.875 15.8203 16.875 13.75V10" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- ENERGY -->
<g id="iconEnergy">
<path d="M7.5 18.75L8.75 12.5L3.75 10.625L12.5 1.25L11.25 7.5L16.25 9.375L7.5 18.75Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL ECONOMY -->
<g id="iconFuel Economy">
<path d="M4.375 16.875V4.375C4.375 4.04348 4.5067 3.72554 4.74112 3.49112C4.97554 3.2567 5.29348 3.125 5.625 3.125H11.875C12.2065 3.125 12.5245 3.2567 12.7589 3.49112C12.9933 3.72554 13.125 4.04348 13.125 4.375V16.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M2.5 16.875H15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.125 8.75H15C15.3315 8.75 15.6495 8.8817 15.8839 9.11612C16.1183 9.35054 16.25 9.66848 16.25 10V13.125C16.25 13.4565 16.3817 13.7745 16.6161 14.0089C16.8505 14.2433 17.1685 14.375 17.5 14.375H17.8125C18.144 14.375 18.462 14.2433 18.6964 14.0089C18.9308 13.7745 19.0625 13.4565 19.0625 13.125V6.76562C19.0611 6.43449 18.9291 6.11728 18.6953 5.88281L17.1875 4.375" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M10 8.75H7.5" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- FUEL FREQUENCY -->
<g id="iconFrequency">
<path d="M1.875 10H4.375L7.5 3.125L12.5 16.25L15.625 10H18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
<!-- PRESSURE -->
<g id="iconPressure">
<g clip-path="url(#clip0_3838_57191)">
<path d="M10 1.875V8.75M10 8.75L8.125 6.875M10 8.75L11.875 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M3.125 1.875V8.75M3.125 8.75L1.25 6.875M3.125 8.75L5 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M16.875 1.875V8.75M16.875 8.75L15 6.875M16.875 8.75L18.75 6.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 15C1.25 15 6.57421 15.625 10 15.625C13.4258 15.625 18.75 15 18.75 15" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 11.875C1.25 11.875 6.57421 12.5 10 12.5C13.4258 12.5 18.75 11.875 18.75 11.875" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
<path d="M1.25 18.125C1.25 18.125 6.57421 18.75 10 18.75C13.4258 18.75 18.75 18.125 18.75 18.125" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round"></path>
</g>
<defs>
<clipPath id="clip0_3838_57191">
<rect width="20" height="20" fill="white"></rect>
</clipPath>