-
Notifications
You must be signed in to change notification settings - Fork 132
/
index.html
1122 lines (1060 loc) · 96.6 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
<!--
Material You NewTab
Copyright (c) 2023-2024 XengShi
Licensed under the GNU General Public License v3.0 (GPL-3.0)
You should have received a copy of the GNU General Public License along with this program.
If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta name="google-site-verification" content="f80bboVVkBBgR-pRl_jZR6dnG7tuaYD4Fv4fSr3IhZE" />
<title>New Tab</title>
<link href="style.css" rel="stylesheet">
<link href="./favicon/icon.ico" rel="icon" type="image/x-icon">
<style id="iconStyle"></style>
<script defer src="languages.js"></script>
<script defer src="script.js"></script>
</head>
<body>
<!----------------------- Google App Menu Setup Starting ----------------------->
<!-- 9 Dot Icon -->
<div class="googleAppsCont" id="googleAppsCont">
<svg class="dot-icon" xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24">
<path
d="M8 6a2 2 0 1 1-4 0 2 2 0 0 1 4 0m0 6a2 2 0 1 1-4 0 2 2 0 0 1 4 0m-2 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4m8-14a2 2 0 1 1-4 0 2 2 0 0 1 4 0m-2 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4m2 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4-10a2 2 0 1 0 0-4 2 2 0 0 0 0 4m2 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0m-2 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4" />
</svg>
<!-- Text to appear on hover -->
<span class="tooltip-text" id="googleAppsHover">Google Apps</span>
</div>
<!-- Centered Icon Container -->
<div id="iconContainer" class="icon-container" style="display: none;">
<a href="https://myaccount.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="46" height="46" viewBox="0 0 24 24">
<path fill="currentColor"
d="M12 4c-4.42 0-8 3.58-8 8c0 1.95.7 3.73 1.86 5.12a9.95 9.95 0 0 1 12.28 0A7.96 7.96 0 0 0 20 12c0-4.42-3.58-8-8-8m0 9c-1.93 0-3.5-1.57-3.5-3.5S10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13"
opacity="0.3" />
<path fill="currentColor"
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2m0 18c-1.74 0-3.34-.56-4.65-1.5C8.66 17.56 10.26 17 12 17s3.34.56 4.65 1.5c-1.31.94-2.91 1.5-4.65 1.5m6.14-2.88a9.95 9.95 0 0 0-12.28 0A7.96 7.96 0 0 1 4 12c0-4.42 3.58-8 8-8s8 3.58 8 8c0 1.95-.7 3.73-1.86 5.12" />
<path fill="currentColor"
d="M12 5.93c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5s-1.57-3.5-3.5-3.5m0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5s1.5.67 1.5 1.5s-.67 1.5-1.5 1.5" />
</svg>
</div>
<div class="label short">Account</div>
</a>
<a href="https://google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="-2 -2 24 24">
<path fill="currentColor"
d="M4.376 8.068A6 6 0 0 0 4.056 10c0 .734.132 1.437.376 2.086a5.946 5.946 0 0 0 8.57 3.045h.001a5.96 5.96 0 0 0 2.564-3.043H10.22V8.132h9.605a10 10 0 0 1-.044 3.956a10 10 0 0 1-3.52 5.71A9.96 9.96 0 0 1 10 20A9.998 9.998 0 0 1 1.118 5.401A10 10 0 0 1 10 0c2.426 0 4.651.864 6.383 2.302l-3.24 2.652a5.948 5.948 0 0 0-8.767 3.114" />
</svg>
</div>
<div class="label short">Search</div>
</a>
<a href="https://maps.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 24 24">
<path fill="currentColor"
d="M19.527 4.799c1.212 2.608.937 5.678-.405 8.173-1.101 2.047-2.744 3.74-4.098 5.614-.619.858-1.244 1.75-1.669 2.727-.141.325-.263.658-.383.992-.121.333-.224.673-.34 1.008-.109.314-.236.684-.627.687h-.007c-.466-.001-.579-.53-.695-.887-.284-.874-.581-1.713-1.019-2.525-.51-.944-1.145-1.817-1.79-2.671zM8.545 7.705l-3.959 4.707c.724 1.54 1.821 2.863 2.871 4.18q.371.465.737.936l4.984-5.925-.029.01c-1.741.601-3.691-.291-4.392-1.987a3.4 3.4 0 0 1-.209-.716c-.063-.437-.077-.761-.004-1.198zM5.492 3.149l-.003.004c-1.947 2.466-2.281 5.88-1.117 8.77l4.785-5.689-.058-.05zM14.661.436l-3.838 4.563.027-.01c1.6-.551 3.403.15 4.22 1.626.176.319.323.683.377 1.045.068.446.085.773.012 1.22l-.003.016 3.836-4.561A8.38 8.38 0 0 0 14.67.439zM9.466 5.868 14.162.285l-.047-.012A8.3 8.3 0 0 0 11.986 0a8.44 8.44 0 0 0-6.169 2.766l-.016.018z" />
</svg>
</div>
<div class="label short">Maps</div>
</a>
<a href="https://mail.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 24 24">
<path fill="currentColor"
d="M24 5.457v13.909c0 .904-.732 1.636-1.636 1.636h-3.819V11.73L12 16.64l-6.545-4.91v9.273H1.636A1.636 1.636 0 0 1 0 19.366V5.457c0-2.023 2.309-3.178 3.927-1.964L5.455 4.64L12 9.548l6.545-4.91l1.528-1.145C21.69 2.28 24 3.434 24 5.457" />
</svg>
</div>
<div class="label short">Gmail</div>
</a>
<a href="https://play.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="38" height="38" viewBox="0 0 16 16">
<path fill="currentColor"
d="M14.222 9.374c1.037-.61 1.037-2.137 0-2.748L11.528 5.04 8.32 8l3.207 2.96zm-3.595 2.116L7.583 8.68 1.03 14.73c.201 1.029 1.36 1.61 2.303 1.055zM1 13.396V2.603L6.846 8zM1.03 1.27l6.553 6.05 3.044-2.81L3.333.215C2.39-.341 1.231.24 1.03 1.27" />
</svg>
</div>
<div class="label short">Play</div>
</a>
<a href="https://drive.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<path fill="currentColor"
d="M12.01 1.485c-2.082 0-3.754.02-3.743.047.01.02 1.708 3.001 3.774 6.62l3.76 6.574h3.76c2.081 0 3.753-.02 3.742-.047-.005-.02-1.708-3.001-3.775-6.62l-3.76-6.574zm-4.76 1.73a789.828 789.861 0 0 0-3.63 6.319L0 15.868l1.89 3.298 1.885 3.297 3.62-6.335 3.618-6.33-1.88-3.287C8.1 4.704 7.255 3.22 7.25 3.214zm2.259 12.653-.203.348c-.114.198-.96 1.672-1.88 3.287a423.93 423.948 0 0 1-1.698 2.97c-.01.026 3.24.042 7.222.042h7.244l1.796-3.157c.992-1.734 1.85-3.23 1.906-3.323l.104-.167h-7.249z" />
</svg>
</div>
<div class="label short">Drive</div>
</a>
<a href="https://photos.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="41" viewBox="0 0 256 256">
<g fill="currentColor">
<path
d="M192 88a63.7 63.7 0 0 1-14 40h-50V24a64 64 0 0 1 64 64M64 168a64 64 0 0 0 64 64V128H78a63.7 63.7 0 0 0-14 40"
opacity=".2" />
<path
d="M232 120h-39.51A72 72 0 0 0 128 16a8 8 0 0 0-8 8v39.51A72 72 0 0 0 16 128a8 8 0 0 0 8 8h39.51A72 72 0 0 0 128 240a8 8 0 0 0 8-8v-39.51A72 72 0 0 0 240 128a8 8 0 0 0-8-8M120 223.43A56.09 56.09 0 0 1 72 168a55.3 55.3 0 0 1 10-32h38ZM120 120H32.57A56.09 56.09 0 0 1 88 72a55.3 55.3 0 0 1 32 10Zm16-87.43A56.09 56.09 0 0 1 184 88a55.3 55.3 0 0 1-10 32h-38ZM168 184a55.3 55.3 0 0 1-32-10v-38h87.43A56.09 56.09 0 0 1 168 184" />
</g>
</svg>
</div>
<div class="label short">Photos</div>
</a>
<a href="https://translate.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<path fill="currentColor"
d="m12 22-1-3H4q-.825 0-1.412-.587T2 17V4q0-.825.588-1.412T4 2h6l.875 3H20q.875 0 1.438.563T22 7v13q0 .825-.562 1.413T20 22zm-4.85-7.4q1.725 0 2.838-1.112T11.1 10.6q0-.2-.012-.362t-.063-.338h-3.95v1.55H9.3q-.2.7-.763 1.088t-1.362.387q-.975 0-1.675-.7T4.8 10.5t.7-1.725 1.675-.7q.45 0 .85.163t.725.487L9.975 7.55Q9.45 7 8.712 6.7T7.15 6.4q-1.675 0-2.863 1.188T3.1 10.5t1.188 2.913T7.15 14.6m6.7.5.55-.525q-.35-.425-.637-.825t-.563-.85zm1.25-1.275q.7-.825 1.063-1.575t.487-1.175h-3.975l.3 1.05h1q.2.375.475.813t.65.887M13 21h7q.45 0 .725-.288T21 20V7q0-.45-.275-.725T20 6h-8.825l1.175 4.05h1.975V9h1.025v1.05H19v1.025h-1.275q-.25.95-.75 1.85T15.8 14.6l2.725 2.675L17.8 18l-2.7-2.7-.9.925L15 19z" />
</svg>
</div>
<div class="label short">Translate</div>
</a>
<a href="https://calendar.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24">
<path fill="currentColor"
d="M18.316 5.684H24v12.632h-5.684zM5.684 24h12.632v-5.684H5.684zM18.316 5.684V0H1.895A1.894 1.894 0 0 0 0 1.895v16.421h5.684V5.684zm-7.207 6.25v-.065q.407-.216.687-.617c.28-.401.279-.595.279-.982q0-.568-.3-1.025a2.05 2.05 0 0 0-.832-.714 2.7 2.7 0 0 0-1.197-.257q-.9 0-1.481.467-.579.467-.793 1.078l1.085.452q.13-.374.413-.633.284-.258.767-.257.495 0 .816.264a.86.86 0 0 1 .322.703q0 .495-.36.778t-.886.284h-.567v1.085h.633q.611 0 1.02.327.407.327.407.843 0 .505-.387.832c-.387.327-.565.327-.924.327q-.527 0-.897-.311-.372-.312-.521-.881l-1.096.452q.268.923.977 1.401.707.479 1.538.477a2.84 2.84 0 0 0 1.293-.291q.574-.29.902-.794.327-.505.327-1.149 0-.643-.344-1.105a2.07 2.07 0 0 0-.881-.689m2.093-1.931.602.913L15 10.045v5.744h1.187V8.446h-.827zM22.105 0h-3.289v5.184H24V1.895A1.894 1.894 0 0 0 22.105 0m-3.289 23.5 4.684-4.684h-4.684zM0 22.105C0 23.152.848 24 1.895 24h3.289v-5.184H0z" />
</svg>
</div>
<div class="label short">Calendar</div>
</a>
<a href="https://meet.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="46" height="46" viewBox="0 0 24 24">
<path fill="currentColor" fill-rule="evenodd"
d="M6.685 3.724L2 8.436h11.313v7.127H6.685V8.436H2v10.46c0 .762.614 1.38 1.371 1.38h13.142c.757 0 1.37-.618 1.37-1.38v-2.97l3.009 2.48A.686.686 0 0 0 22 17.863V6.252a.686.686 0 0 0-1.122-.533l-2.994 2.469V5.103c0-.762-.614-1.38-1.371-1.38z"
clip-rule="evenodd" />
</svg>
</div>
<div class="label short">Meet</div>
</a>
<a href="https://chat.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24">
<path fill="currentColor"
d="M1.637 0C.733 0 0 .733 0 1.637v16.5c0 .904.733 1.636 1.637 1.636h3.955v3.323c0 .804.97 1.207 1.539.638l3.963-3.96h11.27c.903 0 1.636-.733 1.636-1.637V5.592L18.408 0Zm3.955 5.592h12.816v8.59H8.455l-2.863 2.863Z" />
</svg>
</div>
<div class="label short">Chat</div>
</a>
<a href="https://news.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<path fill="currentColor"
d="M21.267 21.2a.614.614 0 0 1-.613.613H3.344a.614.614 0 0 1-.612-.613V8.115a.614.614 0 0 1 .613-.613h17.309a.614.614 0 0 1 .613.613zm-3.032-3.42v-1.195a.08.08 0 0 0-.08-.08h-5.373v1.361h5.373a.08.08 0 0 0 .08-.083zm.817-2.587v-1.201a.08.08 0 0 0-.079-.082h-6.19v1.362h6.189a.08.08 0 0 0 .08-.078v-.004zm-.817-2.588V11.4a.08.08 0 0 0-.08-.08h-5.373v1.361h5.373a.08.08 0 0 0 .08-.079zM8.15 14.045v1.226h1.77c-.145.748-.804 1.292-1.77 1.292a1.976 1.976 0 0 1 0-3.95 1.77 1.77 0 0 1 1.253.49l.934-.932a3.14 3.14 0 0 0-2.187-.853 3.268 3.268 0 1 0 0 6.537c1.89 0 3.133-1.328 3.133-3.197a4 4 0 0 0-.052-.619zM2.27 7.654a.616.616 0 0 1 .613-.613h12.154l-1.269-3.49a.595.595 0 0 0-.743-.383L.368 7.775a.594.594 0 0 0-.323.775l2.225 6.112za.616.616 0 0 1 .613-.613h12.154l-1.269-3.49a.595.595 0 0 0-.743-.383L.368 7.775a.594.594 0 0 0-.323.775l2.225 6.112zm21.312-.31-8.803-2.37.751 2.067h5.584a.614.614 0 0 1 .613.613v8.794l2.247-8.365a.59.59 0 0 0-.392-.74m-4.496-1.675V2.795a.61.61 0 0 0-.611-.608H5.524a.61.61 0 0 0-.616.605v2.837l8.39-3.052a.594.594 0 0 1 .743.39l.544 1.497z" />
</svg>
</div>
<div class="label short">News</div>
</a>
<a href="https://contacts.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<path fill="currentColor"
d="M4.625 22q-.4 0-.725-.325t-.325-.725v-2.625q0-2.25 1.4-3.975t3.6-2.2q-1 .7-1.55 1.762t-.55 2.288v4.75q0 .275.075.55t.25.5zM8.3 22q-.425 0-.737-.312t-.313-.738V16.2q0-1.75 1.238-2.975T11.475 12H16.2q1.75 0 2.975 1.225T20.4 16.2v1.6q0 1.75-1.225 2.975T16.2 22zM12 9.9q-1.65 0-2.8-1.15t-1.15-2.8 1.15-2.8T12 2t2.8 1.15 1.15 2.8-1.15 2.8T12 9.9" />
</svg>
</div>
<div class="label short">Contacts</div>
</a>
<a href="https://myadcenter.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<path fill="currentColor"
d="M10.275 12q-.7 0-1.15-.525T8.8 10.25l.3-1.8q.2-1.075 1.013-1.763T12 6q1.1 0 1.913.688t1.012 1.762l.3 1.8q.125.7-.325 1.225T13.75 12zm.6-2h2.275l-.2-1.225q-.05-.35-.325-.562T12 8t-.612.213-.313.562zM3.1 12.975q-.575.025-.988-.225t-.537-.775q-.05-.225-.025-.45t.125-.425q0 .025-.025-.1-.05-.05-.25-.6-.05-.3.075-.575T1.8 9.35l.05-.05q.05-.475.388-.8t.837-.325q.075 0 .475.1l.075-.025q.125-.125.325-.187T4.375 8q.275 0 .488.088t.337.262q.025 0 .038.013t.037.012q.35.025.612.212t.388.513q.05.175.038.338t-.063.312q0 .025.025.1.175.175.275.388t.1.437q0 .1-.15.525-.025.05 0 .1l.05.4q0 .525-.437.9t-1.063.375zM20 13q-.825 0-1.412-.587T18 11q0-.3.088-.562t.237-.513l-.7-.625q-.25-.2-.088-.5T18 8.5h2q.825 0 1.413.588T22 10.5v.5q0 .825-.587 1.413T20 13M0 17v-.575q0-1.1 1.113-1.763T4 14q.325 0 .625.013t.575.062q-.35.5-.525 1.075T4.5 16.375V18H1q-.425 0-.712-.288T0 17m6 0v-.625q0-1.625 1.663-2.625t4.337-1q2.7 0 4.35 1T18 16.375V17q0 .425-.288.713T17 18H7q-.425 0-.712-.288T6 17m14-3q1.8 0 2.9.663t1.1 1.762V17q0 .425-.288.713T23 18h-3.5v-1.625q0-.65-.162-1.225t-.488-1.075q.275-.05.563-.062T20 14m-8 .75q-1.425 0-2.55.375T8.125 16H15.9q-.225-.5-1.338-.875T12 14.75M12.025 9" />
</svg>
</div>
<div class="label short one">My Ad Ce...</div>
<div class="label full">My Ad<br>Center</div>
</a>
<a href="https://business.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<path fill="currentColor"
d="M22 8.5c0 1.37-1.12 2.5-2.5 2.5S17 9.87 17 8.5c0 1.37-1.12 2.5-2.5 2.5S12 9.87 12 8.5c0 1.37-1.12 2.5-2.5 2.5S7 9.87 7 8.5C7 9.87 5.88 11 4.5 11S2 9.87 2 8.5l1.39-5.42S3.68 2 4.7 2h14.6c1.02 0 1.31 1.08 1.31 1.08zm-1 3.7V20c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-7.8a3.96 3.96 0 0 0 4-.58c.69.55 1.56.88 2.5.88.95 0 1.82-.33 2.5-.88.69.55 1.56.88 2.5.88.95 0 1.82-.33 2.5-.88.68.55 1.56.88 2.5.88.53 0 1.04-.11 1.5-.3m-2 5.13c0-.2 0-.41-.05-.63l-.03-.16h-2.97v1.17h1.81c-.06.22-.14.44-.31.62-.33.33-.78.51-1.26.51-.5 0-.99-.21-1.35-.56-.69-.71-.69-1.86.02-2.58.69-.7 1.83-.7 2.55-.03l.14.13.84-.85-.16-.14c-.56-.52-1.3-.81-2.08-.81h-.01c-.81 0-1.57.31-2.14.87-.59.58-.92 1.34-.92 2.13 0 .8.31 1.54.88 2.09a3.2 3.2 0 0 0 2.22.91h.02c.8 0 1.51-.29 2.03-.8.47-.48.77-1.2.77-1.87" />
</svg>
</div>
<div class="label short one">Business ...</div>
<div class="label full">Business<br>Profile</div>
</a>
<a href="https://google.com/shopping/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<path fill="currentColor"
d="M11.15 22q-.375 0-.75-.15t-.675-.45l-7.15-7.15q-.3-.3-.437-.663T2 12.85t.138-.75.437-.675l8.8-8.825q.275-.275.65-.438T12.8 2h7.175q.825 0 1.413.587T21.975 4v7.175q0 .4-.15.763t-.425.637L12.575 21.4q-.3.3-.675.45t-.75.15m0-2 8.825-8.85V4h-7.15L4 12.85zm6.325-12q.625 0 1.063-.437t.437-1.063-.437-1.062T17.475 5t-1.062.438-.438 1.062.438 1.063T17.475 8M12 12" />
</svg>
</div>
<div class="label short">Shopping</div>
</a>
<div class="separator"></div>
<a href="https://docs.google.com/document/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 24 24">
<path fill="currentColor"
d="M14.727 6.727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727zm-.545 10.455H7.09v-1.364h7.09v1.364zm2.727-3.273H7.091v-1.364h9.818zm0-3.273H7.091V9.273h9.818zM14.727 6h6l-6-6z" />
</svg>
</div>
<div class="label short">Docs</div>
</a>
<a href="https://docs.google.com/spreadsheets/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 24 24">
<path fill="currentColor"
d="M11.318 12.545H7.91v-1.909h3.41v1.91zM14.728 0v6h6zm1.363 10.636h-3.41v1.91h3.41zm0 3.273h-3.41v1.91h3.41zM20.727 6.5v15.864c0 .904-.732 1.636-1.636 1.636H4.909a1.636 1.636 0 0 1-1.636-1.636V1.636C3.273.732 4.005 0 4.909 0h9.318v6.5zm-3.273 2.773H6.545v7.909h10.91v-7.91zm-6.136 4.636H7.91v1.91h3.41v-1.91z" />
</svg>
</div>
<div class="label short">Sheets</div>
</a>
<a href="https://docs.google.com/presentation/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 24 24">
<path fill="currentColor"
d="M16.09 15.273H7.91v-4.637h8.18zm1.728-8.523h2.91v15.614c0 .904-.733 1.636-1.637 1.636H4.909a1.636 1.636 0 0 1-1.636-1.636V1.636C3.273.732 4.005 0 4.909 0h9.068v6.75zm-.363 2.523H6.545v7.363h10.91zm-2.728-5.979V6h6.001l-6-6v3.294z" />
</svg>
</div>
<div class="label short">Slides</div>
</a>
<a href="https://docs.google.com/forms/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 24 24">
<path fill="currentColor"
d="M14.727 6h6l-6-6zm0 .727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727zM7.91 17.318a.819.819 0 1 1 .001-1.638.819.819 0 0 1 0 1.638zm0-3.273a.819.819 0 1 1 .001-1.637.819.819 0 0 1 0 1.637zm0-3.272a.819.819 0 1 1 .001-1.638.819.819 0 0 1 0 1.638zm9 6.409h-6.818v-1.364h6.818zm0-3.273h-6.818v-1.364h6.818zm0-3.273h-6.818V9.273h6.818z" />
</svg>
</div>
<div class="label short">Forms</div>
</a>
<a href="https://keep.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 24 24">
<path fill="currentColor"
d="M4.908 0c-.904 0-1.635.733-1.635 1.637v20.726c0 .904.732 1.637 1.635 1.637H19.09c.904 0 1.637-.733 1.637-1.637V6.5h-6.5V0zm9.819 0v6h6zM11.97 8.229c.224 0 .571.031.765.072.2.04.576.185.842.312.828.414 1.467 1.164 1.774 2.088.168.511.188 1.34.05 1.865a3.75 3.75 0 0 1-1.277 1.952l-.25.193h-1.87c-2.134 0-1.931.042-2.478-.494a3.35 3.35 0 0 1-.984-1.844c-.148-.766-.053-1.437.32-2.203.19-.399.303-.556.65-.899.68-.679 1.513-1.037 2.458-1.042m-1.866 7.863h3.781v1.328h-3.779v-1.328z" />
</svg>
</div>
<div class="label short">Keep</div>
</a>
<a href="https://google.com/finance/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<path fill="currentColor"
d="M8 11.75V7.5q0-.625.438-1.062T9.5 6t1.063.438T11 7.5v4.25q0 .625-.437 1.063T9.5 13.25t-1.062-.437T8 11.75m5-.225V3.5q0-.625.438-1.062T14.5 2t1.063.438T16 3.5v8.025q0 .75-.462 1.125t-1.038.375-1.037-.375T13 11.525m-10 3.45V11.5q0-.625.438-1.062T4.5 10t1.063.438T6 11.5v3.475q0 .75-.462 1.125t-1.038.375-1.037-.375T3 14.975m2.4 6.075q-.65 0-.913-.612T4.7 19.35l4.1-4.1q.275-.275.663-.3t.687.25L13 17.65l5.6-5.6H18q-.425 0-.712-.288T17 11.05t.288-.712.712-.288h3q.425 0 .713.288t.287.712v3q0 .425-.288.713T21 15.05t-.712-.288T20 14.05v-.6l-6.25 6.25q-.275.275-.663.3t-.687-.25L9.55 17.3 6.1 20.75q-.125.125-.312.213t-.388.087" />
</svg>
</div>
<div class="label short">Finance</div>
</a>
<a href="https://ads.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 48 48">
<defs>
<mask id="ipTGoogleAds0">
<g fill="none" stroke="#fff" stroke-width="4">
<path fill="#555"
d="M41.355 34.153L29.522 8.776a6 6 0 0 0-10.876 5.072L30.48 39.224a6 6 0 1 0 10.876-5.071Z" />
<path stroke-linecap="round"
d="M23.438 26.536L17.52 39.224a6 6 0 0 1-7.974 2.902v0a6 6 0 0 1-2.902-7.973L18.374 9" />
<circle cx="12.083" cy="36.688" r="6" fill="#555"
transform="rotate(25 12.083 36.688)" />
</g>
</mask>
</defs>
<path fill="currentColor" d="M0 0h48v48H0z" mask="url(#ipTGoogleAds0)" />
</svg>
</div>
<div class="label short">Google Ads</div>
</a>
<a href="https://analytics.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="38" height="38" viewBox="0 0 24 24">
<path fill="currentColor"
d="M22.84 2.998v17.999a2.983 2.983 0 0 1-2.967 2.998 3 3 0 0 1-.368-.02 3.06 3.06 0 0 1-2.61-3.1V3.12A3.06 3.06 0 0 1 19.51.02a2.983 2.983 0 0 1 3.329 2.978zM4.133 18.055a2.973 2.973 0 1 0 0 5.945 2.973 2.973 0 0 0 0-5.945m7.872-9.01h-.05a3.06 3.06 0 0 0-2.892 3.126v7.985c0 2.167.954 3.482 2.35 3.763a2.978 2.978 0 0 0 3.57-2.927v-8.959a2.983 2.983 0 0 0-2.978-2.988" />
</svg>
</div>
<div class="label short one">Google A...</div>
<div class="label full">Google<br>Analytics</div>
</a>
<a href="https://passwords.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24">
<path fill="currentColor"
d="M11.71 10.33C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4h2v-4h2v-2H11.94zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3"
opacity=".3" />
<path fill="currentColor"
d="M7 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c2.72 0 5.17-1.58 6.32-4H16v4h6v-4h2V9H13.32C12.17 6.58 9.72 5 7 5m15 8h-2v4h-2v-4h-6.06l-.23.67C11.01 15.66 9.11 17 7 17c-2.76 0-5-2.24-5-5s2.24-5 5-5c2.11 0 4.01 1.34 4.71 3.33l.23.67H22zM7 9c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3m0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1" />
</svg>
</div>
<div class="label short one">Password ...</div>
<div class="label full">Password<br>Manager</div>
</a>
<a href="https://one.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="0 0 24 24">
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2">
<path d="M11 5v13.982a2 2 0 0 0 4 0V5a2 2 0 1 0-4 0" />
<path
d="M6.63 8.407a2.125 2.125 0 0 0-.074 2.944c.77.834 2.051.869 2.862.077l4.95-4.834c.812-.792.846-2.11.076-2.945a1.984 1.984 0 0 0-2.861-.077z" />
</g>
</svg>
</div>
<div class="label short one">Google O...</div>
<div class="label full">Google<br>One</div>
</a>
<a href="https://google.com/travel/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="0 0 24 24">
<path fill="currentColor"
d="M11 6h2V4h-2zm1 6q-1.9 0-3.625-.788T5 9.45V8q0-.825.588-1.412T7 6h2V3q0-.425.288-.712T10 2h4q.425 0 .713.288T15 3v3h2q.825 0 1.413.588T19 8v1.45q-1.65.975-3.375 1.763T12 12m-5 9q-.825 0-1.412-.587T5 19v-7.3q1.4.85 2.888 1.45t3.112.8V14q0 .425.288.713T12 15t.713-.288T13 14v-.05q1.625-.2 3.113-.8T19 11.7V19q0 .825-.587 1.413T17 21q0 .425-.288.713T16 22q-.4 0-.562-.363T15 21H9q0 .425-.288.713T8 22q-.4 0-.562-.363T7 21" />
</svg>
</div>
<div class="label short">Travel</div>
</a>
<a href="https://classroom.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24">
<path fill="currentColor"
d="M1.637 1.637C.732 1.637 0 2.369 0 3.273v17.454c0 .904.732 1.636 1.637 1.636h20.726c.905 0 1.637-.732 1.637-1.636V3.273c0-.904-.732-1.636-1.637-1.636zm.545 2.181h19.636v16.364h-2.726v-1.09h-4.91v1.09h-12zM12 8.182a1.636 1.636 0 1 0 0 3.273 1.636 1.636 0 1 0 0-3.273m-4.363 1.91c-.678 0-1.229.55-1.229 1.226a1.228 1.228 0 0 0 2.455 0c0-.677-.549-1.226-1.226-1.226m8.726 0a1.227 1.227 0 1 0 0 2.453 1.227 1.227 0 0 0 0-2.453M12 12.545c-1.179 0-2.413.401-3.148 1.006a4.1 4.1 0 0 0-1.215-.188c-1.314 0-2.729.695-2.729 1.559v.896h14.184v-.896c0-.864-1.415-1.559-2.729-1.559-.41 0-.83.068-1.215.188-.735-.605-1.969-1.006-3.148-1.006" />
</svg>
</div>
<div class="label short">Classroom</div>
</a>
<a href="https://books.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="41" height="41" viewBox="0 0 24 24">
<path fill="currentColor"
d="M18 22a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-6v7L9.5 7.5 7 9V2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2z" />
</svg>
</div>
<div class="label short">Books</div>
</a>
<a href="https://blogger.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="37" height="37" viewBox="0 0 24 24">
<path fill="currentColor"
d="M21.976 24H2.026C.9 24 0 23.1 0 21.976V2.026C0 .9.9 0 2.025 0H22.05C23.1 0 24 .9 24 2.025v19.95C24 23.1 23.1 24 21.976 24M12 3.975H9A5.025 5.025 0 0 0 3.975 9v6A5.025 5.025 0 0 0 9 20.024h6A5.025 5.025 0 0 0 20.024 15v-3.975c0-.6-.45-1.05-1.05-1.05H18a.995.995 0 0 1-.976-.976A5.025 5.025 0 0 0 12 3.973zm3.074 12H9c-.525 0-.975-.45-.975-.975s.45-.976.975-.976h6.074c.526 0 .977.45.977.976s-.45.976-.975.976zm-2.55-7.95c.527 0 .976.45.976.975s-.45.975-.975.975h-3.6c-.525 0-.976-.45-.976-.975s.45-.975.975-.975z" />
</svg>
</div>
<div class="label short">Blogger</div>
</a>
<a href="https://earth.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="0 0 24 24">
<path fill="currentColor"
d="M12 12.14c-.91-1.37-1.86-2.36-2.86-2.95-1-.6-1.87-.81-2.64-.64-.73.18-1.36.59-1.86 1.25-.44.59-.64 1.26-.64 2.01V12c0 .78.11 1.58.36 2.39.09.25.14.25.19 0 .12-.62.41-1.08.86-1.36.46-.28 1.06-.27 1.81.02.75.3 1.48.95 2.2 1.9 1.28 1.72 2.78 2.77 4.5 3.14 2.22.32 3.89-.39 5.02-2.09.31-.61.56-1.14.7-1.61.09-.31.05-.34-.14-.09-.47.62-1.1 1.03-1.9 1.2-.8.2-1.71 0-2.74-.5-1.03-.57-1.98-1.5-2.86-2.86m4.97-3.98c-1.56-2.35-3.25-3.66-5.06-3.99-1.44-.22-3 .28-4.69 1.5-.22.16-.32.24-.31.26.02.02.15-.04.4-.16 2.5-1.22 4.91.06 7.22 3.84.5.84 1.02 1.5 1.57 1.97s1.06.75 1.55.84c.48.08.92.08 1.31-.04.39-.13.74-.33 1.04-.61 0-.6-.09-1.27-.31-1.97-.5.12-.95.08-1.34-.12-.39-.18-.85-.71-1.38-1.52M12 2c2.75 0 5.1 1 7.05 2.95S22 9.25 22 12s-1 5.1-2.95 7.05S14.75 22 12 22s-5.1-1-7.05-2.95S2 14.75 2 12s1-5.1 2.95-7.05S9.25 2 12 2" />
</svg>
</div>
<div class="label short">Earth</div>
</a>
<a href="https://artsandculture.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="0 0 24 24">
<path fill="currentColor"
d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m5 15H7v-2h10zm-9-3v-3h2v3zm3 0v-3h2v3zm3 0v-3h2v3zm3-4H7V8.5L12 6l5 2.5z" />
</svg>
</div>
<div class="label short one">Arts and ...</div>
<div class="label full">Arts and<br>Culture</div>
</a>
<a href="https://google.com/save/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 24 24">
<path fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
d="M6 6.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C7.52 3 8.08 3 9.2 3h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C18 4.52 18 5.08 18 6.2v13.305c0 .486 0 .729-.101.862a.5.5 0 0 1-.37.198c-.167.01-.369-.125-.773-.394L12 17l-4.756 3.17c-.404.27-.606.405-.774.395a.5.5 0 0 1-.369-.198C6 20.234 6 19.991 6 19.505z" />
</svg>
</div>
<div class="label short">Saved</div>
</a>
<a href="https://chromewebstore.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 24 24">
<path fill="currentColor"
d="M0 1.637v19.09c0 .9.736 1.636 1.636 1.636h.131a10.4 10.4 0 0 1-.13-1.636 10.3 10.3 0 0 1 1.667-5.64l4.202 7.276h1.128A3.77 3.77 0 0 1 12 16.958a3.77 3.77 0 0 1 3.366 5.406h1.048a4.7 4.7 0 0 0-1.587-5.406h6.83a10.34 10.34 0 0 1 .577 5.406h.13c.9 0 1.636-.737 1.636-1.637V1.637Zm9.273 2.181h5.454a1.09 1.09 0 1 1 0 2.182H9.273a1.09 1.09 0 1 1 0-2.182M12 10.364a10.36 10.36 0 0 1 9.233 5.652H12a4.71 4.71 0 0 0-4.677 4.149L3.91 14.25A10.34 10.34 0 0 1 12 10.364" />
</svg>
</div>
<div class="label short one">Chrome ...</div>
<div class="label full">Chrome<br>Web Store</div>
</a>
</div>
<!-- ________________ End of Google App Menu ________________ -->
<div class="centerDiv">
<div class="leftDiv">
<!-- ____________clock___________ -->
<div class="clock" id="analogClock">
<svg fill="none" height="100%" viewBox="0 0 461 461" width="100%" xmlns="http://www.w3.org/2000/svg">
<path class="bgLightTint" clip-rule="evenodd"
d="M93.6379 63.9405C89.7543 78.4344 78.4333 89.7554 63.9394 93.639L56.4989 95.6327C34.0934 101.636 20.7969 124.666 26.8005 147.072L28.7201 154.236C32.6038 168.73 28.46 184.195 17.8497 194.805L12.3015 200.353C-4.1005 216.755 -4.10051 243.348 12.3015 259.75L17.9236 265.372C28.5338 275.983 32.6776 291.447 28.794 305.941L26.8004 313.382C20.7968 335.787 34.0933 358.817 56.4989 364.821L63.9395 366.815C78.4334 370.698 89.7544 382.019 93.638 396.513L95.6322 403.956C101.636 426.361 124.666 439.658 147.071 433.654L154.513 431.66C169.007 427.777 184.472 431.92 195.082 442.531L200.353 447.802C216.755 464.204 243.348 464.204 259.75 447.802L265.097 442.455C275.707 431.845 291.172 427.701 305.666 431.585L313.383 433.653C335.788 439.656 358.818 426.36 364.822 403.954L366.815 396.515C370.699 382.021 382.02 370.7 396.514 366.816L403.955 364.822C426.361 358.819 439.657 335.789 433.654 313.383L431.586 305.665C427.702 291.172 431.846 275.707 442.456 265.096L447.802 259.75C464.204 243.348 464.204 216.755 447.802 200.353L442.53 195.081C431.92 184.471 427.776 169.006 431.66 154.512L433.654 147.071C439.657 124.665 426.361 101.635 403.955 95.6312L396.514 93.6373C382.02 89.7537 370.699 78.4327 366.815 63.9389L364.822 56.4994C358.818 34.0938 335.788 20.7974 313.383 26.8009L305.942 28.7946C291.448 32.6782 275.983 28.5345 265.373 17.9242L259.75 12.3015C243.348 -4.10051 216.755 -4.1005 200.353 12.3015L194.806 17.8491C184.196 28.4593 168.731 32.6031 154.237 28.7195L147.071 26.7995C124.666 20.7959 101.636 34.0924 95.6322 56.498L93.6379 63.9405Z"
fill="#FFF" fill-rule="evenodd" />
</svg>
<div class="centerPoint">
<div class="sui" id="hour"></div>
<div class="sui" id="second"></div>
<div class="sui" id="minute"></div>
</div>
</div>
<div class="clock" id="digitalClock">
<svg fill="none" height="100%" viewBox="60 0 460 450" width="100%" xmlns="http://www.w3.org/2000/svg">
<!-- Background oval shape -->
<rect class="bgLightTint" height="350" rx="180" width="460" x="60" y="40"></rect>
<!-- Date Text -->
<text id="digidate" x="290" y="120" text-anchor="middle" fill="#E2EEFF" font-size="28"
font-family="Arial" class="digidate">Thu 9</text>
<!-- Full Time Text (Hour:Minute) -->
<text x="290" y="260" id="digiclock" class="digiclock" font-family="Arial">
<tspan id="digihours">6</tspan>
<tspan id="digicolon" dx="-34">:</tspan>
<tspan id="digiminutes" dx="-34">28</tspan>
</text>
<!-- AM/PM Text -->
<text id="amPm" x="290" y="330" text-anchor="middle" fill="#E2EEFF" font-size="28"
font-family="Arial" class="amPm">AM</text>
</svg>
</div>
<!-- ____________end of clock______________ -->
<div class="ttteexxtt">
<div id="userText" contenteditable="true" spellcheck="false">Click here to edit</div>
<div id="date"></div>
</div>
</div>
<!-- ---------end of leftDiv--------------- -->
<div class="rightDiv">
<!-- ---weather stuff--------- -->
<div class="topDiv">
<div class="lrectangle bgLightTint">
<div id="conditionText">Hello! How are you today?</div>
<div class="cconnt">
<div class="humidityBar">
<div class="thinLine"></div>
<div class="slider" id="slider">
<div id="humidityLevel">Humidity</div>
</div>
</div>
<div class="tilesContainer">
<div class="tiles">
<div class="icon">
<!-- <img src="./svgs/feels.svg" alt=""> -->
<svg fill="none" height="24" viewBox="0 0 24 24" width="24"
xmlns="http://www.w3.org/2000/svg">
<path id="darkFeelsLikeIcon" class="accentColor"
d="M8 10.255V5C8 3.93913 8.42143 2.92172 9.17157 2.17157C9.92172 1.42143 10.9391 1 12 1C13.0609 1 14.0783 1.42143 14.8284 2.17157C15.5786 2.92172 16 3.93913 16 5V10.255C17.223 11.1066 18.1423 12.3262 18.6241 13.7365C19.1059 15.1467 19.125 16.6739 18.6788 18.0958C18.2325 19.5176 17.3441 20.76 16.1429 21.642C14.9416 22.524 13.4903 22.9996 12 22.9996C10.5097 22.9996 9.05837 22.524 7.85714 21.642C6.6559 20.76 5.7675 19.5176 5.32123 18.0958C4.87496 16.6739 4.89412 15.1467 5.37592 13.7365C5.85772 12.3262 6.77702 11.1066 8 10.255ZM8 16C8 17.0609 8.42143 18.0783 9.17157 18.8284C9.92172 19.5786 10.9391 20 12 20C13.0609 20 14.0783 19.5786 14.8284 18.8284C15.5786 18.0783 16 17.0609 16 16H8Z" />
</svg>
</div>
<span id="feelsLike" style="padding-inline-end: 12px;">Seems</span>
</div>
<div class="tiles location">
<div class="icon">
<svg fill="none" height="24" viewBox="0 0 29 29" width="24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M14.5 2C18.4306 2 21.625 5.29333 21.625 9.36667C21.625 14.8886 14.5 23.0476 14.5 23.0476C14.5 23.0476 7.375 14.8886 7.375 9.36667C7.375 5.29333 10.5694 2 14.5 2ZM14.5 6.95238C13.8701 6.95238 13.266 7.21326 12.8206 7.67764C12.3752 8.14202 12.125 8.77185 12.125 9.42857C12.125 10.0853 12.3752 10.7151 12.8206 11.1795C13.266 11.6439 13.8701 11.9048 14.5 11.9048C15.1299 11.9048 15.734 11.6439 16.1794 11.1795C16.6248 10.7151 16.875 10.0853 16.875 9.42857C16.875 8.77185 16.6248 8.14202 16.1794 7.67764C15.734 7.21326 15.1299 6.95238 14.5 6.95238ZM24 23.0476C24 25.7838 19.7488 28 14.5 28C9.25125 28 5 25.7838 5 23.0476C5 21.4505 6.44875 20.0267 8.69313 19.1229L9.45312 20.2495C8.17062 20.8067 7.375 21.5743 7.375 22.4286C7.375 24.1371 10.5694 25.5238 14.5 25.5238C18.4306 25.5238 21.625 24.1371 21.625 22.4286C21.625 21.5743 20.8294 20.8067 19.5469 20.2495L20.3069 19.1229C22.5512 20.0267 24 21.4505 24 23.0476Z"
fill="#fff" />
</svg>
</div>
<span class="location_spn" id="location">Earth</span>
</div>
</div>
<!-- end of tilesContainer -->
</div>
</div>
<!-- -----rAndakar-------- -->
<div class="rAndakar">
<!-- <img src="./svgs/andakar.svg" alt=""> this is below svg -->
<svg fill="none" height="100%" viewBox="0 0 288 288" width="100%"
xmlns="http://www.w3.org/2000/svg">
<rect class="bgLightTint" fill="#E2EEFF" height="304.742" rx="123.401"
transform="rotate(45 164.485 -51)" width="246.801" x="164.485" y="-51" />
</svg>
<div class="wInfo">
<div id="temp">?</div>
<img alt="wq" id="wIcon" src="./svgs/defaultWeather.svg">
</div>
</div>
</div>
<!-- ------end of weather stuff------------ -->
<!-- ----------searchbar-------------- -->
<div class="searchbar bgLightTint" id="searchbar">
<div class="searchIcon">
<svg fill="none" height="100%" viewBox="0 0 45 45" width="100%" xmlns="http://www.w3.org/2000/svg">
<path id="searchIconDark" class="accentColor" clip-rule="evenodd"
d="M5.00087 20.0137C5.00087 18.0425 5.38915 16.0906 6.14353 14.2695C6.89791 12.4484 8.00363 10.7936 9.39755 9.39981C10.7915 8.00598 12.4463 6.90034 14.2675 6.146C16.0888 5.39167 18.0408 5.00342 20.0121 5.00342C21.9834 5.00342 23.9354 5.39167 25.7566 6.146C27.5779 6.90034 29.2327 8.00598 30.6266 9.39981C32.0205 10.7936 33.1262 12.4484 33.8806 14.2695C34.635 16.0906 35.0233 18.0425 35.0233 20.0137C35.0233 23.9946 33.4417 27.8125 30.6266 30.6275C27.8114 33.4425 23.9933 35.0239 20.0121 35.0239C16.0309 35.0239 12.2127 33.4425 9.39755 30.6275C6.5824 27.8125 5.00087 23.9946 5.00087 20.0137ZM20.0121 1.23625e-07C16.8268 0.000456127 13.6877 0.761065 10.8556 2.21861C8.02347 3.67616 5.58012 5.78855 3.72863 8.38023C1.87714 10.9719 0.670974 13.968 0.210373 17.1196C-0.250229 20.2711 0.0480379 23.4871 1.08039 26.5002C2.11273 29.5133 3.84934 32.2365 6.14589 34.4435C8.44244 36.6505 11.2326 38.2776 14.2845 39.1895C17.3364 40.1014 20.5618 40.2718 23.6928 39.6865C26.8238 39.1013 29.7699 37.7772 32.2862 35.8245L40.7601 44.2977C41.2319 44.7534 41.8639 45.0056 42.5199 44.9999C43.1758 44.9942 43.8033 44.7311 44.2672 44.2673C44.7311 43.8034 44.9942 43.176 44.9999 42.52C45.0056 41.8641 44.7534 41.2322 44.2977 40.7603L35.8239 32.287C38.1208 29.3287 39.5415 25.7852 39.9244 22.0595C40.3073 18.3338 39.637 14.5754 37.9897 11.2118C36.3424 7.84812 33.7843 5.01415 30.6062 3.03213C27.4281 1.05011 23.7576 -0.000416085 20.0121 1.23625e-07ZM20.0121 30.0205C22.6662 30.0205 25.2117 28.9662 27.0884 27.0896C28.9652 25.2129 30.0195 22.6676 30.0195 20.0137C30.0195 17.3597 28.9652 14.8144 27.0884 12.9378C25.2117 11.0611 22.6662 10.0068 20.0121 10.0068C17.3579 10.0068 14.8125 11.0611 12.9357 12.9378C11.059 14.8144 10.0046 17.3597 10.0046 20.0137C10.0046 22.6676 11.059 25.2129 12.9357 27.0896C14.8125 28.9662 17.3579 30.0205 20.0121 30.0205Z"
fill-rule="evenodd" />
</svg>
</div>
<div class="searchbar-content">
<input id="searchQ" placeholder="Type here..." type="text" autocomplete="off">
<div class="searchControls">
<!-- Mic Icon -->
<div class="micIcon" id="micIcon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path fill="currentColor"
d="M12 14q-1.25 0-2.125-.875T9 11V5q0-1.25.875-2.125T12 2t2.125.875T15 5v6q0 1.25-.875 2.125T12 14m-1 7v-3.075q-2.6-.35-4.3-2.325T5 11h2q0 2.075 1.463 3.538T12 16t3.538-1.463T17 11h2q0 2.625-1.7 4.6T13 17.925V21z" />
</svg>
</div>
<!-- Search Button -->
<button id="enterBtn">Search</button>
</div>
</div>
</div>
<div id="resultBox" class="resultBox bgLightTint" style="display: none;"></div>
<!-- ----------end of searchbar-------------- -->
<!-- ----------search with------------------- -->
<div class="searchWithCont">
<div class="hint bgLightTint" id="searchWithHint">Search With</div>
<div class="searchEnginesContainer">
<div class="search-engine bgLightTint">
<!-- <img src="./svgs/google.svg" alt="G" class="logo"> -->
<svg fill="none" height="28" viewBox="0 0 28 28" width="28" xmlns="http://www.w3.org/2000/svg">
<rect class="accentColor" fill="#FF000F" height="28" rx="14" width="28" />
<path class="darkIconForDarkTheme"
d="M24.805 12.0177C24.9359 12.756 25.0011 13.504 25 14.2534C25 17.6 23.7796 20.4297 21.6559 22.345H21.6587C19.8016 24.0265 17.2487 25 14.2216 25C11.2455 25 8.3912 23.8411 6.28674 21.7783C4.18227 19.7154 3 16.9176 3 14.0004C3 11.0831 4.18227 8.28528 6.28674 6.22244C8.3912 4.15961 11.2455 3.00073 14.2216 3.00073C17.0073 2.96875 19.6976 3.99459 21.7289 5.86338L18.5251 9.00378C17.367 7.92165 15.8214 7.32907 14.2216 7.35383C11.2942 7.35383 8.80719 9.28977 7.92068 11.8967C7.45064 13.2627 7.45064 14.7421 7.92068 16.1082H7.92489C8.8156 18.711 11.2984 20.6469 14.2258 20.6469C15.7379 20.6469 17.0368 20.2674 18.044 19.5964H18.0398C18.6246 19.2167 19.1248 18.7247 19.5103 18.1502C19.8958 17.5758 20.1585 16.9307 20.2827 16.2539H14.2216V12.0191L24.805 12.0177Z"
fill="white" />
</svg>
<label class="engine-name" id="googleEngine">Google</label>
<input checked class="radio-button" name="search-engine" type="radio" value="engine1">
</div>
<div class="search-engine bgLightTint">
<!-- <img src="./svgs/duck.svg" alt="D" class="logo"> -->
<svg fill="none" height="28" viewBox="0 0 28 28" width="28" xmlns="http://www.w3.org/2000/svg">
<rect class="accentColor" fill="#FF00ff" height="28" rx="14" width="28" />
<path class="darkIconForDarkTheme"
d="M10.5 7C10.1022 7 9.72064 7.15804 9.43934 7.43934C9.15804 7.72064 9 8.10218 9 8.5C9 8.89782 9.15804 9.27936 9.43934 9.56066C9.72064 9.84196 10.1022 10 10.5 10C10.8978 10 11.2794 9.84196 11.5607 9.56066C11.842 9.27936 12 8.89782 12 8.5C12 8.10218 11.842 7.72064 11.5607 7.43934C11.2794 7.15804 10.8978 7 10.5 7ZM12 4C13.3261 4 14.5979 4.52678 15.5355 5.46447C16.4732 6.40215 17 7.67392 17 9C17 10.7 16.15 12.2 14.86 13.1C16.44 13.25 18.22 13.61 20 14.5C23 16 24 14 24 14C24 14 23 23 17 23H11C11 23 6 23 6 18C6 15 9 14 8 12C4 12 4 8.5 4 8.5C5 9 6.24 9 7 8.65C7.09333 7.3872 7.66043 6.20632 8.58766 5.34399C9.5149 4.48166 10.7338 4.0016 12 4Z"
fill="white" />
</svg>
<label class="engine-name" id="duckEngine">Duck</label>
<input class="radio-button" name="search-engine" type="radio" value="engine2">
</div>
<div class="search-engine bgLightTint">
<!-- <img src="./svgs/bing.svg" alt="B" class="logo"> -->
<svg fill="none" height="28" viewBox="0 0 28 28" width="28" xmlns="http://www.w3.org/2000/svg">
<rect class="accentColor" fill="#FF000F" height="28" rx="14" width="28" />
<path class="darkIconForDarkTheme"
d="M22.9991 13.1645C22.9954 13.0734 22.9651 12.9855 22.9119 12.9118C22.8588 12.8382 22.7853 12.7822 22.7007 12.751L13.8694 9.98251C13.7046 9.93107 13.6294 10.0197 13.7018 10.1788L15.3442 13.8304C15.4167 13.9904 15.604 14.18 15.7602 14.2524L18.0135 15.2966C18.1697 15.369 18.1735 15.4957 18.021 15.5776L8.40754 20.7525C8.25601 20.8345 8.23624 20.8059 8.36425 20.6887L12.0575 17.3219C12.197 17.1796 12.28 16.9905 12.291 16.7904L12.2947 6.58526C12.291 6.49394 12.2606 6.40578 12.2073 6.33199C12.154 6.25821 12.0803 6.20212 11.9954 6.17084L8.2993 5.01334C8.13459 4.9619 8 5.06383 8 5.24008V20.7211C8 20.8974 8.11483 21.1241 8.25601 21.2251L12.0114 23.9183C12.1526 24.0193 12.3879 24.0279 12.5357 23.9373L22.7308 17.723C22.8093 17.6688 22.8744 17.597 22.921 17.5133C22.9677 17.4295 22.9947 17.336 23 17.24V13.1645H22.9991Z"
fill="white" />
</svg>
<label class="engine-name" id="bingEngine">Bing</label>
<input class="radio-button" name="search-engine" type="radio" value="engine3">
</div>
<div class="search-engine bgLightTint">
<!-- <img src="./svgs/brave.svg" alt="B" class="logo"> -->
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="300.000000pt" height="300.000000pt"
viewBox="0 0 300.000000 300.000000" preserveAspectRatio="xMidYMid meet">
<g class="accentColor"
transform="translate(-75.000000,380.000000) scale(0.150000,-0.150000)" fill="#FF000F"
stroke="none">
<rect class="accentColor" fill="#FF000F" height="28" rx="14" width="28" />
<path class="darkIconForDarkTheme" d="M1238 2301 c-1 -5 -31 -40 -65 -78 l-62 -69 -59 4 c-73 5 -99 -7
-174 -84 l-56 -57 19 -44 19 -45 -26 -73 c-22 -62 -24 -79 -15 -107 6 -18 46
-171 91 -340 44 -170 89 -328 101 -353 12 -25 42 -64 68 -86 70 -62 397 -279
420 -279 22 0 349 215 419 275 58 50 83 105 127 275 20 80 47 183 60 230 12
47 37 137 54 201 l31 116 -26 68 -25 69 19 46 19 46 -42 45 c-89 94 -100 100
-178 98 l-71 -2 -70 77 -71 76 -252 0 c-143 0 -253 -4 -255 -9z m357 -252 c61
-21 84 -22 216 -3 l46 6 70 -94 c88 -116 117 -170 108 -199 -4 -12 -52 -69
-107 -128 -95 -101 -99 -107 -94 -141 22 -128 21 -134 -21 -178 -29 -31 -48
-42 -69 -42 -47 0 -162 73 -217 137 -27 31 -12 49 82 108 51 31 81 56 81 67 0
10 -16 49 -36 88 -24 47 -33 77 -29 91 7 22 84 62 185 95 53 18 54 19 25 25
-55 12 -131 9 -186 -7 -82 -24 -82 -23 -58 -144 11 -58 19 -118 17 -135 -3
-27 -8 -31 -53 -43 -40 -10 -62 -10 -108 -1 -33 7 -61 18 -64 26 -3 8 5 67 17
133 12 66 20 125 17 133 -3 7 -38 21 -79 32 -60 15 -87 16 -139 9 l-64 -9 55
-19 c104 -34 177 -72 183 -95 3 -13 -8 -47 -29 -90 -19 -38 -34 -78 -34 -88 0
-11 23 -32 63 -57 79 -50 107 -75 107 -96 0 -23 -76 -93 -141 -129 -86 -48
-134 -39 -178 33 -25 40 -26 72 -5 126 11 27 14 47 8 59 -5 10 -53 65 -106
122 -109 114 -115 132 -76 198 48 82 162 222 175 217 8 -3 53 -11 101 -17 79
-10 92 -9 142 9 72 27 122 27 195 1z m-59 -754 c72 -28 184 -90 184 -101 0
-15 -205 -174 -224 -174 -9 0 -53 30 -98 66 -125 100 -129 104 -123 115 7 11
132 75 185 95 19 7 36 13 36 13 1 1 19 -6 40 -14z" fill="white" />
</g>
</svg>
<label class="engine-name" id="braveEngine">Brave</label>
<input class="radio-button" name="search-engine" type="radio" value="engine4">
</div>
<div class="search-engine bgLightTint">
<!-- <img src="./svgs/youtube.svg" alt="Y" class="logo"> -->
<svg fill="none" height="28" viewBox="0 0 28 28" width="28" xmlns="http://www.w3.org/2000/svg">
<rect class="accentColor" fill="#FF000F" height="28" rx="14" width="28" />
<path class="darkIconForDarkTheme"
d="M12 17L17.19 14L12 11V17ZM23.56 9.17C23.69 9.64 23.78 10.27 23.84 11.07C23.91 11.87 23.94 12.56 23.94 13.16L24 14C24 16.19 23.84 17.8 23.56 18.83C23.31 19.73 22.73 20.31 21.83 20.56C21.36 20.69 20.5 20.78 19.18 20.84C17.88 20.91 16.69 20.94 15.59 20.94L14 21C9.81 21 7.2 20.84 6.17 20.56C5.27 20.31 4.69 19.73 4.44 18.83C4.31 18.36 4.22 17.73 4.16 16.93C4.09 16.13 4.06 15.44 4.06 14.84L4 14C4 11.81 4.16 10.2 4.44 9.17C4.69 8.27 5.27 7.69 6.17 7.44C6.64 7.31 7.5 7.22 8.82 7.16C10.12 7.09 11.31 7.06 12.41 7.06L14 7C18.19 7 20.8 7.16 21.83 7.44C22.73 7.69 23.31 8.27 23.56 9.17Z"
fill="white" />
</svg>
<label class="engine-name" id="youtubeEngine">YouTube</label>
<input class="radio-button" name="search-engine" type="radio" value="engine5">
</div>
</div>
</div>
<!-- ----------end of search with------------- -->
</div>
<!-- --------end of rightDiv---------------------- -->
</div>
<!---End of centerDiv--->
<!-- ------shortcuts------------------ -->
<div id="shortcuts-section">
<div class="unfoldContainer">
<button id="unfoldShortcutsBtn">
<svg xmlns="http://www.w3.org/2000/svg" height="20px" viewBox="220 -710 520 710" width="20px">
<path
d="M480-525 316-361q-11 11-25.5 11T265-361q-11-11-11-25.5t11-25.5l190-190q11-11 25-11t25 11l190 190q11 11 11 25t-11 25q-11 11-25.5 11T644-362L480-525Z" />
</svg>
</button>
</div>
<div class="wrapper">
<div id="flexMonitor"></div>
<div id="defaultMonitor"></div>
<div class="shortcutsContainer" id="shortcutsContainer"></div>
</div>
</div>
<!-- --------end of shortcuts------------------ -->
<!-- -----------AI-Tools------------------ -->
<div class="aiToolsCont" id="aiToolsCont">
<div class="hangno" id="0NIHK">
<div class="icon">
<svg fill="none" height="100%" viewBox="0 0 280 280" width="100%" xmlns="http://www.w3.org/2000/svg">
<path id="HangNoAlive" class="accentColor" clip-rule="evenodd"
d="M152 178C152 163.641 163.641 152 178 152H254C268.359 152 280.275 163.76 277.393 177.827C267.155 227.797 227.797 267.155 177.827 277.393C163.76 280.275 152 268.359 152 254V178ZM128 183.26C128 206.423 99.9943 218.024 83.6152 201.645L8.78205 126.811C3.43206 121.461 0.529946 114.017 1.78833 106.556C10.5659 54.5162 50.7487 13.1442 102.17 2.60743C116.237 -0.275091 128 11.6406 128 26V183.26ZM0 214.74C0 191.577 28.0057 179.976 44.3847 196.355L127.994 279.964C127.998 279.968 128 279.974 128 279.979V279.979C128 279.991 127.991 280 127.979 280H26C11.6406 280 0 268.359 0 254V214.74ZM152 26C152 11.6406 163.641 0 178 0H254C268.359 0 280 11.6406 280 26V102C280 116.359 268.359 128 254 128H178C163.641 128 152 116.359 152 102V26Z"
fill="white" fill-rule="evenodd" />
</svg>
</div>
<div class="label" id="ai_tools">AI-Tools</div>
</div>
<!-- --------tools-------- -->
<div class="toolsCont" id="toolsCont">
<!-- ---------------- -->
<a href="https://chatgpt.com/">
<div class="tIcon">
<!-- <img src="./shortcuts_icons/chatgpt.svg" alt=""> -->
<svg fill="none" height="100%" viewBox="0 0 32 32" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="accentColor aiDarkIcons" height="32" rx="16" width="32" />
<path class="bgLightTint"
d="M14.7787 6.39973C15.5709 6.39973 16.3046 6.64694 16.9039 7.06695C15.3268 7.87457 13.8766 8.891 12.3373 9.76462L13.558 11.8431C15.4806 10.7511 17.2836 9.38301 19.3685 8.59579C19.9508 8.37739 20.5802 8.30867 21.1971 8.39613C21.814 8.4836 22.398 8.72435 22.8939 9.09561C23.3897 9.46687 23.781 9.95637 24.0307 10.5178C24.2804 11.0792 24.3803 11.694 24.3209 12.3039C22.8206 11.3643 21.1995 10.637 19.6615 9.76462L18.4408 11.8431C20.3634 12.9351 22.4715 13.7847 24.2061 15.1672C24.6895 15.5538 25.0646 16.0553 25.2959 16.6242C25.5272 17.1931 25.607 17.8106 25.5278 18.4183C25.4486 19.026 25.213 19.6038 24.8433 20.097C24.4736 20.5902 23.9821 20.9826 23.4151 21.2369C23.4944 19.4897 23.3235 17.746 23.3235 16H20.8822C20.8822 18.1817 21.1873 20.4017 20.837 22.5714C20.738 23.1763 20.4837 23.7464 20.098 24.2278C19.7124 24.7091 19.2082 25.0858 18.6332 25.3221C18.0581 25.5584 17.4313 25.6466 16.8119 25.5783C16.1925 25.51 15.6011 25.2875 15.0936 24.9319C16.672 24.1242 18.1234 23.1078 19.6615 22.2354L18.4408 20.1569C16.5182 21.2489 14.7152 22.617 12.6303 23.4042C12.0479 23.6226 11.4185 23.6913 10.8016 23.6039C10.1847 23.5164 9.60073 23.2757 9.10489 22.9044C8.60905 22.5331 8.21777 22.0436 7.96807 21.4822C7.71837 20.9208 7.6185 20.306 7.67792 19.6961C9.17938 20.6345 10.7992 21.3617 12.3373 22.2354L13.558 20.1569C11.6354 19.0649 9.52727 18.2153 7.79145 16.8328C7.30807 16.4461 6.93305 15.9445 6.70187 15.3755C6.47069 14.8066 6.39098 14.189 6.4703 13.5813C6.54962 12.9736 6.78533 12.3959 7.15515 11.9027C7.52496 11.4095 8.01664 11.0173 8.58368 10.7631C8.50433 12.5103 8.67523 14.254 8.67523 16H11.1166C11.1166 13.8183 10.8114 11.5971 11.1618 9.42862C11.3002 8.58356 11.7402 7.81459 12.403 7.25955C13.0658 6.70451 13.908 6.39969 14.7787 6.39973ZM19.4088 6.09012C18.7029 5.28249 17.791 4.67405 16.7669 4.32723C15.7428 3.98042 14.6433 3.90772 13.5812 4.1166C12.519 4.32548 11.5326 4.80841 10.723 5.51584C9.9134 6.22327 9.30986 7.12973 8.9743 8.14218C7.90982 8.33936 6.91788 8.81143 6.10028 9.50994C5.28267 10.2085 4.66885 11.1083 4.3218 12.117C3.97475 13.1257 3.90698 14.2071 4.12544 15.2501C4.34389 16.2931 4.84071 17.2602 5.5649 18.0521C5.20623 19.057 5.12606 20.1377 5.33261 21.1832C5.53917 22.2287 6.02502 23.2013 6.74028 24.0012C7.45554 24.8011 8.37444 25.3995 9.40267 25.7349C10.4309 26.0703 11.5314 26.1307 12.5912 25.9099C13.2971 26.7175 14.209 27.326 15.2331 27.6728C16.2572 28.0196 17.3567 28.0923 18.4188 27.8834C19.481 27.6745 20.4674 27.1916 21.277 26.4842C22.0866 25.7767 22.6901 24.8703 23.0257 23.8578C24.0902 23.6606 25.0821 23.1886 25.8997 22.4901C26.7173 21.7915 27.3311 20.8917 27.6782 19.883C28.0252 18.8743 28.093 17.7929 27.8746 16.7499C27.6561 15.7069 27.1593 14.7398 26.4351 13.9479C26.7938 12.943 26.8739 11.8623 26.6674 10.8168C26.4608 9.77131 25.975 8.7987 25.2597 7.99879C24.5445 7.19889 23.6256 6.60051 22.5973 6.26508C21.5691 5.92966 20.4686 5.86927 19.4088 6.09012Z"
fill="white" />
</svg>
</div>
<div class="tLabel" id="chatGPT">ChatGPT</div>
</a>
<!-- ---------------- -->
<!-- ---------------- -->
<a href="https://gemini.google.com/app">
<div class="tIcon">
<!-- <img src="./shortcuts_icons/bard.svg" alt=""> -->
<svg fill="none" height="100%" viewBox="0 0 32 32" width="100%" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_208_3)">
<rect class="accentColor aiDarkIcons" fill="#FF4545" height="32" rx="16" width="32" />
<path class="bgLightTint"
d="M14.6069 21.7907L15.4899 19.7789C16.2624 18.0009 17.676 16.5754 19.4521 15.7832L21.8818 14.7102C22.6541 14.3689 22.6541 13.2509 21.8818 12.9086L19.5286 11.8696C17.7067 11.0568 16.2678 9.57889 15.509 7.74084L14.614 5.59687C14.5436 5.42075 14.4217 5.26971 14.2641 5.1633C14.1065 5.05689 13.9204 5 13.73 5C13.5396 5 13.3535 5.05689 13.1959 5.1633C13.0383 5.26971 12.9164 5.42075 12.846 5.59687L11.952 7.74084C11.1932 9.57889 9.75436 11.0568 7.93246 11.8696L5.57925 12.9096C4.80692 13.2499 4.80692 14.3689 5.57925 14.7102L8.00788 15.7832C9.7838 16.5751 11.1974 18.0003 11.9701 19.7779L12.8531 21.7897C12.9257 21.9615 13.0476 22.1082 13.2036 22.2113C13.3596 22.3145 13.5427 22.3695 13.73 22.3695C13.9173 22.3695 14.1004 22.3145 14.2564 22.2113C14.4124 22.1082 14.5343 21.9625 14.6069 21.7907ZM23.4435 26.6892L23.6919 26.1227C24.1275 25.1206 24.9244 24.3172 25.9255 23.8706L26.6897 23.5313C26.7823 23.4889 26.8608 23.421 26.9158 23.3356C26.9708 23.2501 27 23.1508 27 23.0494C27 22.9479 26.9708 22.8486 26.9158 22.7632C26.8608 22.6778 26.7823 22.6098 26.6897 22.5674L25.9687 22.2481C24.9417 21.7897 24.1306 20.9563 23.703 19.92L23.4476 19.3084C23.4098 19.2141 23.3445 19.1332 23.26 19.0762C23.1756 19.0193 23.0759 18.9888 22.9739 18.9888C22.8719 18.9888 22.7722 19.0193 22.6878 19.0762C22.6033 19.1332 22.538 19.2141 22.5002 19.3084L22.2448 19.919C21.8174 20.9557 21.0063 21.7894 19.9791 22.2481L19.257 22.5684C19.1647 22.611 19.0865 22.6789 19.0318 22.7642C18.977 22.8495 18.9479 22.9486 18.9479 23.0499C18.9479 23.1511 18.977 23.2503 19.0318 23.3356C19.0865 23.4209 19.1647 23.4888 19.257 23.5313L20.0213 23.8696C21.023 24.3162 21.8202 25.12 22.2559 26.1227L22.5043 26.6892C22.6853 27.1036 23.2625 27.1036 23.4435 26.6892Z"
fill="yellow" />
</g>
<defs>
<clipPath id="clip0_208_3">
<rect fill="green" height="32" rx="16" width="32" />
</clipPath>
</defs>
</svg>
</div>
<div class="tLabel" id="gemini">Gemini</div>
</a>
<!-- ---------------- -->
<!-- ---------------- -->
<a href="https://copilot.microsoft.com/">
<div class="tIcon">
<svg style="border-radius: 100%;" width="30" height="30" viewBox="0 0 30 30" fill="none"
xmlns="http://www.w3.org/2000/svg">
<rect class="accentColor aiDarkIcons" width="30" height="30" fill="white" />
<rect class="accentColor aiDarkIcons" width="24" height="24" fill="white" />
<path class="lessDark"
d="M19.6119 7.4202C19.4846 6.98367 19.219 6.60026 18.8551 6.3276C18.4912 6.05495 18.0487 5.90777 17.5939 5.9082H16.9799C16.4874 5.90803 16.0103 6.08052 15.6317 6.39569C15.2532 6.71085 14.9971 7.14875 14.9079 7.6332L13.8549 13.3692L14.1169 12.4752C14.2443 12.0383 14.5097 11.6545 14.8735 11.3812C15.2373 11.1079 15.6799 10.9598 16.1349 10.9592H19.7049L21.2039 11.5412L22.6489 10.9592H22.2259C21.7712 10.9596 21.3286 10.8125 20.9647 10.5398C20.6008 10.2671 20.3353 9.88374 20.2079 9.4472L19.6119 7.4202ZM10.6049 22.5762C10.7318 23.0146 10.9977 23.3999 11.3626 23.6741C11.7274 23.9483 12.1715 24.0964 12.6279 24.0962H13.9349C14.4839 24.0971 15.0113 23.8831 15.4044 23.5C15.7975 23.1168 16.0249 22.595 16.0379 22.0462L16.1799 16.5162L15.8819 17.5292C15.7546 17.9657 15.489 18.3491 15.1251 18.6218C14.7612 18.8945 14.3187 19.0416 13.8639 19.0412H10.2619L8.97794 18.3432L7.58594 19.0412H7.99894C8.93794 19.0412 9.75994 19.6592 10.0219 20.5612L10.6049 22.5762Z"
fill="black" />
<path class="lessDark"
d="M17.5051 5.90252H10.2141C8.12813 5.90252 6.87913 8.65452 6.04813 11.4115C5.05613 14.6745 3.76213 19.0415 7.50113 19.0415H10.6501C11.108 19.0416 11.5534 18.8928 11.9192 18.6175C12.285 18.3423 12.5514 17.9555 12.6781 17.5155C13.4205 14.9114 14.1748 12.3107 14.9411 9.71352C15.3231 8.41952 15.6431 7.31252 16.1321 6.61852C16.2838 6.39455 16.4888 6.21183 16.7286 6.08684C16.9685 5.96184 17.2347 5.8985 17.5051 5.90252Z"
fill="black" />
<path class="bgLightTint"
d="M17.5051 5.90252H10.2141C8.12813 5.90252 6.87913 8.65452 6.04813 11.4115C5.05613 14.6745 3.76213 19.0415 7.50113 19.0415H10.6501C11.108 19.0416 11.5534 18.8928 11.9192 18.6175C12.285 18.3423 12.5514 17.9555 12.6781 17.5155C13.4205 14.9114 14.1748 12.3107 14.9411 9.71352C15.3231 8.41952 15.6431 7.31252 16.1321 6.61852C16.2838 6.39455 16.4888 6.21183 16.7286 6.08684C16.9685 5.96184 17.2347 5.8985 17.5051 5.90252ZM12.4991 24.0965H19.7911C21.8761 24.0965 23.1251 21.3395 23.9561 18.5875C24.9441 15.3245 26.2371 10.9585 22.4981 10.9585H19.3501C18.4081 10.9585 17.5801 11.5805 17.3231 12.4885C16.5813 15.0928 15.827 17.6935 15.0601 20.2905C14.6781 21.5845 14.3571 22.6965 13.8681 23.3855C13.717 23.6085 13.5127 23.7903 13.2737 23.9144C13.0347 24.0386 12.7684 24.1012 12.4991 24.0965Z"
fill="#252525" />
<path class="bgLightTint"
d="M12.499 24.097H19.791C21.876 24.097 23.125 21.34 23.956 18.588C24.944 15.325 26.237 10.959 22.498 10.959H19.35C18.408 10.959 17.58 11.581 17.323 12.489C16.5812 15.0933 15.8269 17.694 15.06 20.291C14.678 21.585 14.357 22.697 13.868 23.386C13.7169 23.609 13.5126 23.7907 13.2736 23.9149C13.0346 24.039 12.7683 24.1016 12.499 24.097Z"
fill="#252525" />
</svg>
</div>
<div class="tLabel" id="copilot">Copilot</div>
</a>
<!-- ---------------- -->
<!-- ---------------- -->
<a href="https://firefly.adobe.com/">
<div class="tIcon">
<!-- <img src="./shortcuts_icons/adobe-firefly.svg" alt=""> -->
<svg fill="none" height="100%" viewBox="0 0 32 32" width="100%" xmlns="http://www.w3.org/2000/svg">
<rect class="accentColor aiDarkIcons" fill="#FF4545" height="32" rx="16" width="32" />
<path class="bgLightTint"
d="M18.3372 8L25 24V8H18.3372ZM7 8V24L13.6628 8H7ZM16.0113 13.8908L20.258 24H17.4743L16.2064 20.7759H13.0926L16.0113 13.8908H16.0113Z"
fill="white" />
</svg>
</div>
<div class="tLabel" id="firefly">Adobe Firefly</div>
</a>
<!-- ---------------- -->
</div>
</div>
<!-- -----------end of AI-Tools------------------ -->
<!-- ------Menu-bar----------- -->
<div class="menuBar" id="menuBar" style="display: none;">
<div class="menuCont" id="menuCont">
<div class="topRounder">
<!-- <img src="./svgs/rounder.svg" alt=""> -->
<svg fill="none" height="100%" viewBox="0 0 30 30" width="100%" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_208_15)">
<path class="lessDark" clip-rule="evenodd" d="M30 0L0 0C16.5685 0 30 13.4315 30 30L30 0Z"
fill="#FF429D" fill-rule="evenodd" />
</g>
<defs>
<clipPath id="clip0_208_15">
<rect fill="white" height="30" width="30" />
</clipPath>
</defs>
</svg>
</div>
<!-- ---end of rounder--- -->
<div class="topDiv">
<h1>Material You NewTab</h1>
</div>
<div class="optCont" id="optCont">
<div class="page" id="overviewPage">
<div class="tilesCont">
<!-- ----tiles----------- -->
<a class="tiles" href="https://github.com/XengShi/materialYouNewTab">
<div class="icon">
<!-- <img src="./shortcuts_icons/github.svg" alt=""> -->
<svg fill="none" height="100%" viewBox="0 0 20 20" width="100%"
xmlns="http://www.w3.org/2000/svg">
<path id="githab" class="bgLightTint"
d="M10 0C4.475 0 0 4.58819 0 10.2529C0 14.7899 2.8625 18.6219 6.8375 19.9804C7.3375 20.0701 7.525 19.7625 7.525 19.4934C7.525 19.2499 7.5125 18.4425 7.5125 17.5838C5 18.058 4.35 16.9558 4.15 16.3791C4.0375 16.0843 3.55 15.1743 3.125 14.9308C2.775 14.7386 2.275 14.2644 3.1125 14.2516C3.9 14.2388 4.4625 14.9949 4.65 15.3025C5.55 16.8533 6.9875 16.4175 7.5625 16.1484C7.65 15.4819 7.9125 15.0334 8.2 14.777C5.975 14.5207 3.65 13.6364 3.65 9.71466C3.65 8.59965 4.0375 7.67689 4.675 6.95918C4.575 6.70286 4.225 5.65193 4.775 4.24215C4.775 4.24215 5.6125 3.97301 7.525 5.29308C8.325 5.06239 9.175 4.94704 10.025 4.94704C10.875 4.94704 11.725 5.06239 12.525 5.29308C14.4375 3.9602 15.275 4.24215 15.275 4.24215C15.825 5.65193 15.475 6.70286 15.375 6.95918C16.0125 7.67689 16.4 8.58684 16.4 9.71466C16.4 13.6492 14.0625 14.5207 11.8375 14.777C12.2 15.0975 12.5125 15.7126 12.5125 16.6738C12.5125 18.0452 12.5 19.1474 12.5 19.4934C12.5 19.7625 12.6875 20.0829 13.1875 19.9804C15.1728 19.2935 16.8979 17.9854 18.12 16.2403C19.3421 14.4953 19.9997 12.4012 20 10.2529C20 4.58819 15.525 0 10 0Z"
fill="#617859" />
</svg>
</div>
<span id="github">Github</span>
</a>
<!-- -----end of tiles-------- -->
<!-- ----tiles----------- -->
<a class="tiles" href="https://xengshi.github.io/materialYouNewTab/feedback.html">
<div class="icon">
<!-- <img src="./shortcuts_icons/feedback.svg" alt=""> -->
<svg fill="none" height="100%" viewBox="0 0 18 17" width="100%"
xmlns="http://www.w3.org/2000/svg">
<path id="sujhaw" class="bgLightTint" clip-rule="evenodd"
d="M10.35 0C12.3789 0 14.3247 0.801267 15.7594 2.22753C17.194 3.65379 18 5.58822 18 7.60526C18 9.6223 17.194 11.5567 15.7594 12.983C14.3247 14.4093 12.3789 15.2105 10.35 15.2105H9.9V16.0963C9.9 16.2151 9.87646 16.3326 9.83072 16.4423C9.78498 16.552 9.71795 16.6517 9.63344 16.7356C9.54894 16.8196 9.44862 16.8861 9.33824 16.9315C9.22785 16.9768 9.10955 17.0001 8.9901 17C6.7761 16.9982 4.5333 16.2636 2.8314 14.7596C1.1142 13.2403 0.0018 10.9829 0 8.06068V7.60526C0 5.58822 0.80598 3.65379 2.24063 2.22753C3.67529 0.801267 5.62109 0 7.65 0H10.35ZM5.85 6.26316C5.49196 6.26316 5.14858 6.40456 4.89541 6.65625C4.64223 6.90794 4.5 7.24931 4.5 7.60526C4.5 7.96121 4.64223 8.30258 4.89541 8.55427C5.14858 8.80597 5.49196 8.94737 5.85 8.94737C6.20804 8.94737 6.55142 8.80597 6.80459 8.55427C7.05777 8.30258 7.2 7.96121 7.2 7.60526C7.2 7.24931 7.05777 6.90794 6.80459 6.65625C6.55142 6.40456 6.20804 6.26316 5.85 6.26316ZM12.15 6.26316C11.792 6.26316 11.4486 6.40456 11.1954 6.65625C10.9422 6.90794 10.8 7.24931 10.8 7.60526C10.8 7.96121 10.9422 8.30258 11.1954 8.55427C11.4486 8.80597 11.792 8.94737 12.15 8.94737C12.508 8.94737 12.8514 8.80597 13.1046 8.55427C13.3578 8.30258 13.5 7.96121 13.5 7.60526C13.5 7.24931 13.3578 6.90794 13.1046 6.65625C12.8514 6.40456 12.508 6.26316 12.15 6.26316Z"
fill="#0038FF" fill-rule="evenodd" />
</svg>
</div>
<span id="feedback">Feedback</span>
</a>
<!-- -----end of tiles-------- -->
</div>
<!-- end of tilesCont -->
<div class="divider"></div>
<div class="toggleTextsCont">
<div class="ttcont">
<div class="texts">
<div class="bigText" id="shortcutsText">Shortcuts</div>
<div class="infoText" id="enableShortcutsText">Show saved shortcuts</div>
</div>
<label class="switch">
<input id="shortcutsCheckbox" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<div class="ttcont" id="shortcutEditField">
<div class="texts">
<div class="bigText" id="editShortcutsText">Edit Shortcuts</div>
<div class="infoText" id="shortcutsInfoText">Choose which shortcuts get shown</div>
</div>
<label class="switch">
<button id="shortcutEditButton">
<svg height="20px" viewBox="140 -820 680 820" width="20px"
xmlns="http://www.w3.org/2000/svg">
<path
d="M492.21-144q-15.21 0-25.71-10.35T456-180v-168q0-15.3 10.29-25.65Q476.58-384 491.79-384t25.71 10.35Q528-363.3 528-348v48h251.72q15.28 0 25.78 10.29 10.5 10.29 10.5 25.5t-10.35 25.71Q795.3-228 780-228H528v48q0 15.3-10.29 25.65Q507.42-144 492.21-144ZM180-228q-15.3 0-25.65-10.29Q144-248.58 144-263.79t10.35-25.71Q164.7-300 180-300h168q15.3 0 25.65 10.29Q384-279.42 384-264.21t-10.35 25.71Q363.3-228 348-228H180Zm144.21-132q-15.21 0-25.71-10.35T288-396v-48H180.26q-15.26 0-25.76-10.29-10.5-10.29-10.5-25.5t10.35-25.71Q164.7-516 180-516h108v-48q0-15.3 10.29-25.65Q308.58-600 323.79-600t25.71 10.35Q360-579.3 360-564v168q0 15.3-10.29 25.65Q339.42-360 324.21-360ZM468-444q-15.3 0-25.65-10.29Q432-464.58 432-479.79t10.35-25.71Q452.7-516 468-516h312q15.3 0 25.65 10.29Q816-495.42 816-480.21t-10.35 25.71Q795.3-444 780-444H468Zm144.21-132q-15.21 0-25.71-10.35T576-612v-168q0-15.3 10.29-25.65Q596.58-816 611.79-816t25.71 10.35Q648-795.3 648-780v48h132q15.3 0 25.65 10.29Q816-711.42 816-696.21t-10.35 25.71Q795.3-660 780-660H648v48q0 15.3-10.29 25.65Q627.42-576 612.21-576ZM180-660q-15.3 0-25.65-10.29Q144-680.58 144-695.79t10.35-25.71Q164.7-732 180-732h312q15.3 0 25.65 10.29Q528-711.42 528-696.21t-10.35 25.71Q507.3-660 492-660H180Z" />
</svg>
</button>
</label>
</div>
<div class="ttcont" id="adaptiveIconField">
<div class="texts">
<div class="bigText" id="adaptiveIconText">Adaptive Icon Shapes</div>
<div class="infoText" id="adaptiveIconInfoText">Shortcut icons will appear smaller
</div>
</div>
<label class="switch">
<input id="adaptiveIconToggle" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<div class="ttcont">
<div class="texts">
<div class="bigText" id="ai_tools_button">AI-Tools</div>
<div class="infoText" id="enable_ai_tools">Show shortcuts for AI tools</div>
</div>
<label class="switch">
<input id="aiToolsCheckbox" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<div class="ttcont">
<div class="texts">
<div class="bigText" id="googleAppsMenuText">Google Apps</div>
<div class="infoText" id="googleAppsMenuInfo">Show shortcuts for Google Apps</div>
</div>
<label class="switch">
<input id="googleAppsCheckbox" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<!-- ---🟡--- -->
<div class="ttcont">
<div class="texts">
<div class="bigText" id="digitalclocktittle">Digital Clock</div>
<div class="infoText" id="digitalclockinfo">Switch to the digital clock</div>
</div>
<label class="switch">
<input id="digitalCheckbox" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<div class="ttcont" id="timeformatField">
<div class="texts">
<div class="bigText" id="timeformattittle">12-Hour Format</div>
<div class="infoText" id="timeformatinfo">Use 12-hour time format</div>
</div>
<label class="switch">
<input id="12hourcheckbox" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<div class="ttcont" id="greetingField">
<div class="texts">
<div class="bigText" id="greetingtittle">Greeting</div>
<div class="infoText" id="greetinginfo">Show greeting below custom text</div>
</div>
<label class="switch">
<input id="greetingcheckbox" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<!-- ---🟡--- -->
<div class="ttcont">
<div class="texts">
<div class="bigText" id="userTextTitle">Customizable Text</div>
<div class="infoText" id="userTextInfo">Show custom text below the clock
</div>
</div>
<label class="switch">
<input id="userTextCheckbox" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<!-- ---🟡--- -->
<div class="ttcont">
<div class="texts">
<div class="bigText" id="fahrenheitCelsiusCheckbox">Switch to Fahrenheit</div>
<div class="infoText" id="fahrenheitCelsiusText">Refresh the page to apply changes
</div>
</div>
<label class="switch">
<input id="fahrenheitCheckbox" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<!-- ---🟡--- -->
<div class="ttcont">
<div class="texts">
<div class="bigText" id="micIconTitle">Hide Microphone Icon</div>
<div class="infoText" id="micIconInfo">If voice typing is not working
</div>
</div>
<label class="switch">
<input id="micIconCheckbox" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<!-- ---🟡--- -->
<div class="ttcont">
<div class="texts">
<div class="bigText" id="search_suggestions_button">Search Suggestions</div>
<div class="infoText" id="search_suggestions_text">Enable search suggestions
</div>
</div>
<label class="switch">
<input id="searchsuggestionscheckbox" type="checkbox" checked>
<span class="toggle"></span>
</label>
</div>
<div class="ttcont" id="proxybypassField">
<div class="texts">
<div class="bigText" id="useproxytitletext">Proxy Bypass</div>
<div class="infoText" id="useproxyText">If search suggestions aren't working</div>
</div>
<label class="switch">
<input id="useproxyCheckbox" type="checkbox">
<span class="toggle"></span>
</label>
</div>
<!-- ---🟡--- -->
<div class="ttcont unflex" id="proxyField">
<div class="texts">
<div class="bigText" id="ProxyText">CORS Bypass Proxy</div>
<div class="infoText" id="ProxySubtext">Add your own CORS bypass proxy
</div>
</div>
<input id="userproxy" placeholder="https://mynt-proxy.rhythmcorehq.com" type="text">
<div class="bottom">
<a href="https://github.com/Minuga-RC/MYNT-CORS-Bypass-Proxy" id="HostproxyButton"
target="_blank">Host
your own proxy</a>
<button id="saveproxy">Save</button>
</div>
</div>
<div class="ttcont unflex" style="margin-top: 100px;">
<div class="texts">
<div class="bigText" id="UserLocText">Enter your Location</div>
<div class="infoText" id="UserLocSubtext">If the weather location isn't correct
</div>
</div>
<input id="userLoc" placeholder="Your City or Coordinates (Latitude, Longitude)"
type="text">
<div class="bottom">
<a href="https://www.weatherapi.com/docs/#intro-request-param" id="InputOptionsButton"
target="_blank">Input options</a>
<button id="saveLoc">Save</button>
</div>
</div>
<div class="ttcont unflex" style="margin-top: 100px;">
<div class="texts">
<div class="bigText" id="WeatherApiText">Enter your WeatherAPI key</div>
<div class="infoText" id="WeatherApiSubtext">If the weather functionality isn't working
</div>
</div>
<input id="userAPI" placeholder="Your weatherAPI key" type="text">
<div class="bottom">
<a href="https://www.weatherapi.com" id="LearnMoreButton" target="_blank">Learn more</a>
<button id="saveAPI">Save</button>
</div>
</div>
<!-- ---🟡--- -->
</div>
<br>
<div class="divider" style="margin-top: 90px;"></div>
<!-- start of languageSelector -->
<div class="languageSection">
<div class="languageIcon">
<!-- <svg fill="none" height="100%" viewBox="0 -960 960 960" width="24px"
xmlns="http://www.w3.org/2000/svg">
fill="#e8eaed">